From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 10 14:40:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 299A0E5D for ; Sun, 10 Feb 2013 14:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 1A0FC100 for ; Sun, 10 Feb 2013 14:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r1AEe0fl047715 for ; Sun, 10 Feb 2013 14:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r1AEe0Ad047710; Sun, 10 Feb 2013 14:40:00 GMT (envelope-from gnats) Date: Sun, 10 Feb 2013 14:40:00 GMT Message-Id: <201302101440.r1AEe0Ad047710@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/174794: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Feb 2013 14:40:01 -0000 The following reply was made to PR ports/174794; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/174794: commit references a PR Date: Sun, 10 Feb 2013 14:31:36 +0000 (UTC) Author: miwi Date: Sun Feb 10 14:31:22 2013 New Revision: 312030 URL: http://svnweb.freebsd.org/changeset/ports/312030 Log: This is a library that includes all the code I tend to carry from project to project for wrapping POSIX APIs for C++. Where possible, things are implemented inline so that there is minimal to no cost above and beyond using the good old C APIs. WWW: https://github.com/rescrv/po6 PR: ports/174794 Submitted by: Gvozdikov Veniamin Added: head/devel/libpo6/ head/devel/libpo6/Makefile (contents, props changed) head/devel/libpo6/distinfo (contents, props changed) head/devel/libpo6/pkg-descr (contents, props changed) head/devel/libpo6/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Feb 10 14:30:35 2013 (r312029) +++ head/devel/Makefile Sun Feb 10 14:31:22 2013 (r312030) @@ -1053,6 +1053,7 @@ SUBDIR += libphish SUBDIR += libphk SUBDIR += libplist + SUBDIR += libpo6 SUBDIR += libpthread-stubs SUBDIR += librcc SUBDIR += librcd Added: head/devel/libpo6/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libpo6/Makefile Sun Feb 10 14:31:22 2013 (r312030) @@ -0,0 +1,17 @@ +# Created by: Gvozdikov Veniamin +# $FreeBSD$ + +PORTNAME= libpo6 +PORTVERSION= 0.2.3 +CATEGORIES= devel +MASTER_SITES= http://hyperdex.org/src/ + +MAINTAINER= g.veniamin@googlemail.com +COMMENT= POSIX wrappers for C++ + +LICENSE= BSD + +GNU_CONFIGURE= yes +USE_GNOME= gnomehack + +.include Added: head/devel/libpo6/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libpo6/distinfo Sun Feb 10 14:31:22 2013 (r312030) @@ -0,0 +1,2 @@ +SHA256 (libpo6-0.2.3.tar.gz) = f3cfe664515643a36e7abe96fcba9a111c5e5a9544fc649da58328c395ca08fb +SIZE (libpo6-0.2.3.tar.gz) = 110849 Added: head/devel/libpo6/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libpo6/pkg-descr Sun Feb 10 14:31:22 2013 (r312030) @@ -0,0 +1,6 @@ +This is a library that includes all the code I tend to carry from project to +project for wrapping POSIX APIs for C++. Where possible, things are +implemented inline so that there is minimal to no cost above and beyond using +the good old C APIs. + +WWW: https://github.com/rescrv/po6 Added: head/devel/libpo6/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libpo6/pkg-plist Sun Feb 10 14:31:22 2013 (r312030) @@ -0,0 +1,18 @@ +include/po6/error.h +include/po6/io/fd.h +include/po6/net/ipaddr.h +include/po6/net/location.h +include/po6/net/socket.h +include/po6/noncopyable.h +include/po6/pathname.h +include/po6/threads/barrier.h +include/po6/threads/cond.h +include/po6/threads/mutex.h +include/po6/threads/rwlock.h +include/po6/threads/spinlock.h +include/po6/threads/thread.h +libdata/pkgconfig/libpo6.pc +@dirrm include/po6/io +@dirrm include/po6/net +@dirrm include/po6/threads +@dirrm include/po6 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"