Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Nov 2015 23:50:57 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r402500 - in head/devel: . libmill
Message-ID:  <201511272350.tARNovuL017514@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Fri Nov 27 23:50:56 2015
New Revision: 402500
URL: https://svnweb.freebsd.org/changeset/ports/402500

Log:
  add libmill 1.1
  
  Libmill is a library that introduces Go-style concurrency to C.
  
  It can execute up to 20 million coroutines and 50 million context switches per
  second.
  
  WWW: http://libmill.org

Added:
  head/devel/libmill/
  head/devel/libmill/Makefile   (contents, props changed)
  head/devel/libmill/distinfo   (contents, props changed)
  head/devel/libmill/pkg-descr   (contents, props changed)
  head/devel/libmill/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Nov 27 23:30:32 2015	(r402499)
+++ head/devel/Makefile	Fri Nov 27 23:50:56 2015	(r402500)
@@ -1233,6 +1233,7 @@
     SUBDIR += libmatheval
     SUBDIR += libmba
     SUBDIR += libmcs
+    SUBDIR += libmill
     SUBDIR += libmimedir
     SUBDIR += libmonetra
     SUBDIR += libmowgli

Added: head/devel/libmill/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libmill/Makefile	Fri Nov 27 23:50:56 2015	(r402500)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME=	libmill
+PORTVERSION=	1.1
+CATEGORIES=	devel
+MASTER_SITES=	http://libmill.org/
+
+MAINTAINER=	bapt@FreeBSD.org
+COMMENT=	Go-style concurrency in CGo-style concurrency in C
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+USES=		libtool pathfix
+GNU_CONFIGURE=	yes
+USE_LDCONFIG=	yes
+
+.include <bsd.port.mk>

Added: head/devel/libmill/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libmill/distinfo	Fri Nov 27 23:50:56 2015	(r402500)
@@ -0,0 +1,2 @@
+SHA256 (libmill-1.1.tar.gz) = 146add8283cb88f3d42418e4666211d4a085f57c317a24a56e9afab8167db77d
+SIZE (libmill-1.1.tar.gz) = 394658

Added: head/devel/libmill/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libmill/pkg-descr	Fri Nov 27 23:50:56 2015	(r402500)
@@ -0,0 +1,6 @@
+Libmill is a library that introduces Go-style concurrency to C.
+
+It can execute up to 20 million coroutines and 50 million context switches per
+second.
+
+WWW: http://libmill.org

Added: head/devel/libmill/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libmill/pkg-plist	Fri Nov 27 23:50:56 2015	(r402500)
@@ -0,0 +1,6 @@
+include/libmill.h
+lib/libmill.a
+lib/libmill.so
+lib/libmill.so.10
+lib/libmill.so.10.1.0
+libdata/pkgconfig/libmill.pc



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511272350.tARNovuL017514>