svn commit: r416881 - in head/devel: . py-cuisine py-cuisine/files
Hajimu UMEMOTO
ume at FreeBSD.org
Tue Jun 14 08:29:34 UTC 2016
Author: ume
Date: Tue Jun 14 08:29:32 2016
New Revision: 416881
URL: https://svnweb.freebsd.org/changeset/ports/416881
Log:
Add new port -- Chef-like functionality for Fabric
Added:
head/devel/py-cuisine/
head/devel/py-cuisine/Makefile (contents, props changed)
head/devel/py-cuisine/distinfo (contents, props changed)
head/devel/py-cuisine/files/
head/devel/py-cuisine/files/patch-src_cuisine.py (contents, props changed)
head/devel/py-cuisine/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Tue Jun 14 08:25:47 2016 (r416880)
+++ head/devel/Makefile Tue Jun 14 08:29:32 2016 (r416881)
@@ -4041,6 +4041,7 @@
SUBDIR += py-coverage
SUBDIR += py-crcmod
SUBDIR += py-ctags
+ SUBDIR += py-cuisine
SUBDIR += py-curtsies
SUBDIR += py-cxx
SUBDIR += py-cycler
Added: head/devel/py-cuisine/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-cuisine/Makefile Tue Jun 14 08:29:32 2016 (r416881)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME= cuisine
+PORTVERSION= 0.7.12
+#PORTEPOCH= 0
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= ume at FreeBSD.org
+COMMENT= Chef-like functionality for Fabric
+
+LICENSE= BSD3CLAUSE
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fabric>=1.7:devel/py-fabric
+
+USES= python:2.7
+USE_PYTHON= distutils autoplist
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/py-cuisine/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-cuisine/distinfo Tue Jun 14 08:29:32 2016 (r416881)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1465879312
+SHA256 (cuisine-0.7.12.tar.gz) = 1afc6de0955960928aa345f9d5e2c2b09bf3a3d7f1f8e3661cb0262895d5489b
+SIZE (cuisine-0.7.12.tar.gz) = 21282
Added: head/devel/py-cuisine/files/patch-src_cuisine.py
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-cuisine/files/patch-src_cuisine.py Tue Jun 14 08:29:32 2016 (r416881)
@@ -0,0 +1,11 @@
+--- src/cuisine.py.orig 2016-06-14 07:05:16 UTC
++++ src/cuisine.py
+@@ -1315,7 +1315,7 @@ def package_install_pkgng(package, updat
+ def package_ensure_pkgng(package, update=False):
+ # I am gonna have to do something different here
+ status = run("pkg info %s ; true" % package)
+- if status.stderr.find("No package(s) matching") != -1 or status.find(package) == -1:
++ if status.find("No package(s) matching") != -1 or status.find(package) == -1:
+ package_install_pkgng(package, update)
+ return False
+ else:
Added: head/devel/py-cuisine/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-cuisine/pkg-descr Tue Jun 14 08:29:32 2016 (r416881)
@@ -0,0 +1,6 @@
+Cuisine is a small set of functions that sit on top of Fabric, to
+abstract common administration operations such as file/dir operations,
+user/group creation, package install/upgrade, making it easier to
+write portable administration and deployment scripts.
+
+WWW: https://github.com/sebastien/cuisine
More information about the svn-ports-head
mailing list