From owner-svn-ports-head@freebsd.org Wed Jul 12 17:10:22 2017 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 00529D9E031; Wed, 12 Jul 2017 17:10:22 +0000 (UTC) (envelope-from swills@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 CFF2A6F00D; Wed, 12 Jul 2017 17:10:21 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6CHALWG079314; Wed, 12 Jul 2017 17:10:21 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6CHAK1S079309; Wed, 12 Jul 2017 17:10:20 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201707121710.v6CHAK1S079309@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 12 Jul 2017 17:10:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445593 - in head/devel: . py-easyprocess X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel: . py-easyprocess X-SVN-Commit-Revision: 445593 X-SVN-Commit-Repository: ports 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.23 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: Wed, 12 Jul 2017 17:10:22 -0000 Author: swills Date: Wed Jul 12 17:10:20 2017 New Revision: 445593 URL: https://svnweb.freebsd.org/changeset/ports/445593 Log: devel/py-easyprocess: create port EasyProcess is an easy to use python subprocess interface. WWW: https://github.com/ponty/EasyProcess PR: 219839 Submitted by: Daniel Ylitalo Added: head/devel/py-easyprocess/ head/devel/py-easyprocess/Makefile (contents, props changed) head/devel/py-easyprocess/distinfo (contents, props changed) head/devel/py-easyprocess/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jul 12 16:19:38 2017 (r445592) +++ head/devel/Makefile Wed Jul 12 17:10:20 2017 (r445593) @@ -4274,6 +4274,7 @@ SUBDIR += py-doit SUBDIR += py-durus SUBDIR += py-dynrules + SUBDIR += py-easyprocess SUBDIR += py-editdistance SUBDIR += py-efilter SUBDIR += py-efl Added: head/devel/py-easyprocess/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-easyprocess/Makefile Wed Jul 12 17:10:20 2017 (r445593) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= easyprocess +PORTVERSION= 0.2.3 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= EasyProcess-${PORTVERSION} + +MAINTAINER= daniel@blodan.se +COMMENT= Easy to use python subprocess interface + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}paver>0:devel/py-paver \ + ${PYTHON_PKGNAMEPREFIX}cog>=2.3:devel/py-cog \ + ${PYTHON_PKGNAMEPREFIX}sphinx>0:textproc/py-sphinx + +NO_ARCH= YES +USE_PYTHON= autoplist distutils +USES= python + +.include Added: head/devel/py-easyprocess/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-easyprocess/distinfo Wed Jul 12 17:10:20 2017 (r445593) @@ -0,0 +1,3 @@ +TIMESTAMP = 1496826788 +SHA256 (EasyProcess-0.2.3.tar.gz) = 94e241cadc9a46f55b5c06000df85618849602e7e1865b8de87576b90a22e61f +SIZE (EasyProcess-0.2.3.tar.gz) = 10402 Added: head/devel/py-easyprocess/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-easyprocess/pkg-descr Wed Jul 12 17:10:20 2017 (r445593) @@ -0,0 +1,3 @@ +EasyProcess is an easy to use python subprocess interface. + +WWW: https://github.com/ponty/EasyProcess