Date: Sat, 9 Nov 2019 15:54:16 +0000 (UTC) From: Alexander Leidinger <netchild@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r517132 - in head/devel: . py-jail Message-ID: <201911091554.xA9FsGFx038596@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911091554.xA9FsGFx038596>