svn commit: r503028 - in head/security: . p5-Unix-setuid

Steve Wills swills at FreeBSD.org
Thu May 30 02:00:45 UTC 2019


Author: swills
Date: Thu May 30 02:00:42 2019
New Revision: 503028
URL: https://svnweb.freebsd.org/changeset/ports/503028

Log:
  security/p5-Unix-setuid: create port
  
  This module is inspired by File::chdir and File::umask, using a tied
  scalar variable to get/set stuffs. One benefit of this is being able to
  use Perl's "local" with it, effectively setting something locally.
  
  WWW: https://metacpan.org/release/Unix-setuid
  
  PR:		235732
  Submitted by:	Zane C. Bowers-Hadley <vvelox at vvelox.net>

Added:
  head/security/p5-Unix-setuid/
  head/security/p5-Unix-setuid/Makefile   (contents, props changed)
  head/security/p5-Unix-setuid/distinfo   (contents, props changed)
  head/security/p5-Unix-setuid/pkg-descr   (contents, props changed)
  head/security/p5-Unix-setuid/pkg-plist   (contents, props changed)
Modified:
  head/security/Makefile   (contents, props changed)

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Thu May 30 01:55:11 2019	(r503027)
+++ head/security/Makefile	Thu May 30 02:00:42 2019	(r503028)
@@ -710,6 +710,7 @@
     SUBDIR += p5-Tie-EncryptedHash
     SUBDIR += p5-Tree-Authz
     SUBDIR += p5-Unix-Passwd-File
+    SUBDIR += p5-Unix-setuid
     SUBDIR += p5-Yahoo-BBAuth
     SUBDIR += p5-dicewaregen
     SUBDIR += p5-openxpki

Added: head/security/p5-Unix-setuid/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Unix-setuid/Makefile	Thu May 30 02:00:42 2019	(r503028)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	Unix-setuid
+PORTVERSION=	0.02
+CATEGORIES=	security perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	vvelox at vvelox.net
+COMMENT=	Get/set real/effective UID/username via (localizeable) variable
+
+LICENSE=	ART10 GPLv1+
+LICENSE_COMB=	dual
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		perl5
+USE_PERL5=	configure
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/security/p5-Unix-setuid/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Unix-setuid/distinfo	Thu May 30 02:00:42 2019	(r503028)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1550123935
+SHA256 (Unix-setuid-0.02.tar.gz) = 5658f5b993e9f0f8d8788c41713000541b07838a6d3543b7800a93e96eb67a4e
+SIZE (Unix-setuid-0.02.tar.gz) = 12738

Added: head/security/p5-Unix-setuid/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Unix-setuid/pkg-descr	Thu May 30 02:00:42 2019	(r503028)
@@ -0,0 +1,5 @@
+This module is inspired by File::chdir and File::umask, using a tied
+scalar variable to get/set stuffs. One benefit of this is being able to
+use Perl's "local" with it, effectively setting something locally.
+
+WWW: https://metacpan.org/release/Unix-setuid

Added: head/security/p5-Unix-setuid/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/p5-Unix-setuid/pkg-plist	Thu May 30 02:00:42 2019	(r503028)
@@ -0,0 +1,2 @@
+%%SITE_PERL%%/Unix/setuid.pm
+%%PERL5_MAN3%%/Unix::setuid.3.gz


More information about the svn-ports-all mailing list