From owner-svn-ports-head@freebsd.org Tue Jun 14 08:29:34 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A66AAF070A; Tue, 14 Jun 2016 08:29:34 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CEF7D2D42; Tue, 14 Jun 2016 08:29:33 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5E8TXBL035658; Tue, 14 Jun 2016 08:29:33 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5E8TW8C035653; Tue, 14 Jun 2016 08:29:32 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201606140829.u5E8TW8C035653@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Tue, 14 Jun 2016 08:29:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416881 - in head/devel: . py-cuisine py-cuisine/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jun 2016 08:29:34 -0000 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@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 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