From owner-svn-ports-head@freebsd.org Mon Oct 29 00:37:54 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2128E10EADAA; Mon, 29 Oct 2018 00:37:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CB50F76CFC; Mon, 29 Oct 2018 00:37:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9246826D55; Mon, 29 Oct 2018 00:37:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9T0brN7011284; Mon, 29 Oct 2018 00:37:53 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9T0bq8m011280; Mon, 29 Oct 2018 00:37:52 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810290037.w9T0bq8m011280@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 29 Oct 2018 00:37:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483361 - in head/devel: . libpcl X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . libpcl X-SVN-Commit-Revision: 483361 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Oct 2018 00:37:54 -0000 Author: yuri Date: Mon Oct 29 00:37:52 2018 New Revision: 483361 URL: https://svnweb.freebsd.org/changeset/ports/483361 Log: New port: devel/libpcl: Portable Coroutine Library for low level functionality for coroutines Added: head/devel/libpcl/ head/devel/libpcl/Makefile (contents, props changed) head/devel/libpcl/distinfo (contents, props changed) head/devel/libpcl/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Oct 29 00:04:39 2018 (r483360) +++ head/devel/Makefile Mon Oct 29 00:37:52 2018 (r483361) @@ -1537,6 +1537,7 @@ SUBDIR += libpasori SUBDIR += libpci SUBDIR += libpciaccess + SUBDIR += libpcl SUBDIR += libpdel SUBDIR += libpeak SUBDIR += libpeas Added: head/devel/libpcl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libpcl/Makefile Mon Oct 29 00:37:52 2018 (r483361) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= libpcl +DISTVERSION= 1.12 +CATEGORIES= devel +MASTER_SITES= http://xmailserver.org/ +DISTNAME= pcl-${DISTVERSION} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Portable Coroutine Library for low level functionality for coroutines + +LICENSE= MIT +xLICENSE_FILE= ${WRKSRC}/COPYING.SLIBTOOL + +USES= gmake libtool +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-static +USE_LDCONFIG= yes + +PLIST_FILES= include/pcl.h \ + lib/libpcl.so \ + lib/libpcl.so.1 \ + lib/libpcl.so.1.0.11 \ + man/man3/pcl.3.gz + +.include Added: head/devel/libpcl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libpcl/distinfo Mon Oct 29 00:37:52 2018 (r483361) @@ -0,0 +1,3 @@ +TIMESTAMP = 1540773095 +SHA256 (pcl-1.12.tar.gz) = e7b30546765011575d54ae6b44f9d52f138f5809221270c815d2478273319e1a +SIZE (pcl-1.12.tar.gz) = 384986 Added: head/devel/libpcl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libpcl/pkg-descr Mon Oct 29 00:37:52 2018 (r483361) @@ -0,0 +1,9 @@ +The Portable Coroutine Library (PCL) implements the low level functionality +for coroutines. For a definition of the term coroutine see The Art of Computer +Programming by Donald E. Knuth. Coroutines are a very simple cooperative +multitasking environment where the switch from one task to another is done +explicitly by a function call. Coroutines are a lot faster than processes or +threads switch, since there is no OS kernel involvement for the operation. Also +coroutines require much less OS resources than processes of threads. + +WWW: http://xmailserver.org/libpcl.html