From owner-svn-ports-all@freebsd.org Tue Feb 20 20:25:12 2018 Return-Path: Delivered-To: svn-ports-all@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 8EECAF28155; Tue, 20 Feb 2018 20:25:12 +0000 (UTC) (envelope-from sunpoet@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 CBD1A6BE18; Tue, 20 Feb 2018 20:25:11 +0000 (UTC) (envelope-from sunpoet@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 C6DCA68E0; Tue, 20 Feb 2018 20:25:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1KKPBTL049902; Tue, 20 Feb 2018 20:25:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1KKPBvP049896; Tue, 20 Feb 2018 20:25:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802202025.w1KKPBvP049896@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 20 Feb 2018 20:25:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462427 - in head/devel: . p5-Unix-Groups-FFI X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . p5-Unix-Groups-FFI X-SVN-Commit-Revision: 462427 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Feb 2018 20:25:12 -0000 Author: sunpoet Date: Tue Feb 20 20:25:11 2018 New Revision: 462427 URL: https://svnweb.freebsd.org/changeset/ports/462427 Log: Add p5-Unix-Groups-FFI 0.002 Unix::Groups::FFI provides a FFI interface to several syscalls related to Unix groups, including getgroups(2), setgroups(2), getgrouplist(3), and initgroups(3). As such it will only work on Unix-like operating systems. WWW: http://search.cpan.org/dist/Unix-Groups-FFI/ Added: head/devel/p5-Unix-Groups-FFI/ head/devel/p5-Unix-Groups-FFI/Makefile (contents, props changed) head/devel/p5-Unix-Groups-FFI/distinfo (contents, props changed) head/devel/p5-Unix-Groups-FFI/pkg-descr (contents, props changed) head/devel/p5-Unix-Groups-FFI/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Feb 20 20:24:47 2018 (r462426) +++ head/devel/Makefile Tue Feb 20 20:25:11 2018 (r462427) @@ -3679,6 +3679,7 @@ SUBDIR += p5-UUID-Tiny SUBDIR += p5-Uniq SUBDIR += p5-Unix-Groups + SUBDIR += p5-Unix-Groups-FFI SUBDIR += p5-Unix-Statgrab SUBDIR += p5-Unix-Uptime SUBDIR += p5-User-Identity Added: head/devel/p5-Unix-Groups-FFI/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Unix-Groups-FFI/Makefile Tue Feb 20 20:25:11 2018 (r462427) @@ -0,0 +1,23 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Unix-Groups-FFI +PORTVERSION= 0.002 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Interface to Unix group syscalls + +LICENSE= ART20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= p5-FFI-Platypus>=0.20:devel/p5-FFI-Platypus +RUN_DEPENDS:= ${BUILD_DEPENDS} + +NO_ARCH= yes +USE_PERL5= configure +USES= perl5 + +.include Added: head/devel/p5-Unix-Groups-FFI/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Unix-Groups-FFI/distinfo Tue Feb 20 20:25:11 2018 (r462427) @@ -0,0 +1,3 @@ +TIMESTAMP = 1519141847 +SHA256 (Unix-Groups-FFI-0.002.tar.gz) = 81fef789dca2c9a5675fb4d3a8ed0008ecb533941a01c6e2bae3709a79c44560 +SIZE (Unix-Groups-FFI-0.002.tar.gz) = 17090 Added: head/devel/p5-Unix-Groups-FFI/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Unix-Groups-FFI/pkg-descr Tue Feb 20 20:25:11 2018 (r462427) @@ -0,0 +1,5 @@ +Unix::Groups::FFI provides a FFI interface to several syscalls related to Unix +groups, including getgroups(2), setgroups(2), getgrouplist(3), and +initgroups(3). As such it will only work on Unix-like operating systems. + +WWW: http://search.cpan.org/dist/Unix-Groups-FFI/ Added: head/devel/p5-Unix-Groups-FFI/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Unix-Groups-FFI/pkg-plist Tue Feb 20 20:25:11 2018 (r462427) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Unix/Groups/FFI.pm +%%PERL5_MAN3%%/Unix::Groups::FFI.3.gz