diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2020-07-14 17:09:02 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2020-07-14 17:09:02 +0000 |
commit | 955918c8646a8c1cd7dd0b63c0bf7d44f7d8b55a (patch) | |
tree | d7127a24ba97fdb2829b73f9a0fbd374fd9f01a9 | |
parent | security/libssh2: bump PORTREVISION after r542223 (diff) |
New port: devel/py-jailconf
Parse and edit your FreeBSD jail.conf with python.
WWW: https://github.com/leforestier/jailconf
PR: 246001
Submitted by: s.adaszewski@gmail.com
Notes
Notes:
svn path=/head/; revision=542225
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-jailconf/Makefile | 23 | ||||
-rw-r--r-- | devel/py-jailconf/distinfo | 3 | ||||
-rw-r--r-- | devel/py-jailconf/pkg-descr | 3 |
4 files changed, 30 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 51c01183b615..1e9224df545e 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4516,6 +4516,7 @@ SUBDIR += py-itanium_demangler SUBDIR += py-iterpipes SUBDIR += py-itypes + SUBDIR += py-jailconf SUBDIR += py-jaraco SUBDIR += py-jaraco.classes SUBDIR += py-jaraco.context diff --git a/devel/py-jailconf/Makefile b/devel/py-jailconf/Makefile new file mode 100644 index 000000000000..0c7da79490a8 --- /dev/null +++ b/devel/py-jailconf/Makefile @@ -0,0 +1,23 @@ +# Created by: s.adaszewski@gmail.com +# $FreeBSD$ + +PORTNAME= jailconf +PORTVERSION= 0.2.1 +DISTVERSIONPREFIX=v +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= s.adaszewski@gmail.com +COMMENT= Parse and edit your FreeBSD jail.conf with python + +LICENSE= BSD + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ply>0:devel/py-ply@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +USE_GITHUB= yes +GH_ACCOUNT= leforestier +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-jailconf/distinfo b/devel/py-jailconf/distinfo new file mode 100644 index 000000000000..7907bf6f1dfe --- /dev/null +++ b/devel/py-jailconf/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1594745760 +SHA256 (leforestier-jailconf-v0.2.1_GH0.tar.gz) = b2eef97da86da5b761cdb9fa09d17abfe199b9918451494264aaddc5cfba522e +SIZE (leforestier-jailconf-v0.2.1_GH0.tar.gz) = 5191 diff --git a/devel/py-jailconf/pkg-descr b/devel/py-jailconf/pkg-descr new file mode 100644 index 000000000000..95f1d9842c39 --- /dev/null +++ b/devel/py-jailconf/pkg-descr @@ -0,0 +1,3 @@ +Parse and edit your FreeBSD jail.conf with python. + +WWW: https://github.com/leforestier/jailconf |