svn commit: r517132 - in head/devel: . py-jail

Alexander Leidinger netchild at FreeBSD.org
Sat Nov 9 15:54:17 UTC 2019


Author: netchild
Date: Sat Nov  9 15:54:15 2019
New Revision: 517132
URL: https://svnweb.freebsd.org/changeset/ports/517132

Log:
  Native Python wrapper for FreeBSD jails using libc
  
  WWW: https://github.com/gronke/py-jail
  
  PR:		240921
  Submitted by:	stefan at gronke.net

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Nov  9 15:53:39 2019	(r517131)
+++ head/devel/Makefile	Sat Nov  9 15:54:15 2019	(r517132)
@@ -4555,6 +4555,7 @@
     SUBDIR += py-isort
     SUBDIR += py-iterpipes
     SUBDIR += py-itypes
+    SUBDIR += py-jail
     SUBDIR += py-jaraco
     SUBDIR += py-jaraco.classes
     SUBDIR += py-jaraco.context

Added: head/devel/py-jail/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jail/Makefile	Sat Nov  9 15:54:15 2019	(r517132)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=		jail
+PORTVERSION=	0.0.9
+CATEGORIES=		devel python sysutils
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=		stefan at gronke.net
+COMMENT=		Native Python wrapper for FreeBSD jails using libc
+
+LICENSE=		BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}freebsd-sysctl>0:devel/py-freebsd-sysctl@${PY_FLAVOR}
+
+USES=			python:3.6+
+
+USE_GITHUB=		yes
+GH_ACCOUNT=		gronke
+GH_PROJECT=		py-jail
+
+NO_ARCH=		yes
+USE_PYTHON=		distutils autoplist
+
+PLIST_SUB+=		PORTVERSION=${PORTVERSION}
+
+.include <bsd.port.mk>

Added: head/devel/py-jail/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jail/distinfo	Sat Nov  9 15:54:15 2019	(r517132)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1570029792
+SHA256 (gronke-py-jail-0.0.9_GH0.tar.gz) = c5d1e00e54947c7a93479c97088903e10ed86af3a4850bb5d10aaf1aa1e06ed4
+SIZE (gronke-py-jail-0.0.9_GH0.tar.gz) = 6845

Added: head/devel/py-jail/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-jail/pkg-descr	Sat Nov  9 15:54:15 2019	(r517132)
@@ -0,0 +1,3 @@
+Native Python wrapper for FreeBSD jails using libc
+
+WWW: https://github.com/gronke/py-jail


More information about the svn-ports-all mailing list