From owner-svn-ports-all@freebsd.org Thu Nov 3 00:18:15 2016 Return-Path: Delivered-To: svn-ports-all@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 3862BC2CE3E; Thu, 3 Nov 2016 00:18:15 +0000 (UTC) (envelope-from feld@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 CE1F11656; Thu, 3 Nov 2016 00:18:14 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA30IDt1073133; Thu, 3 Nov 2016 00:18:13 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA30IDPd073129; Thu, 3 Nov 2016 00:18:13 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201611030018.uA30IDPd073129@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 3 Nov 2016 00:18:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425178 - in head/devel: . py-fabric3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Nov 2016 00:18:15 -0000 Author: feld Date: Thu Nov 3 00:18:13 2016 New Revision: 425178 URL: https://svnweb.freebsd.org/changeset/ports/425178 Log: Fabric3 is a fork of Fabric to provide compatability with Python 3.4+. The port still works with Python 2.7. WWW: https://github.com/mathiasertl/fabric/ Added: head/devel/py-fabric3/ head/devel/py-fabric3/Makefile (contents, props changed) head/devel/py-fabric3/distinfo (contents, props changed) head/devel/py-fabric3/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Nov 3 00:05:46 2016 (r425177) +++ head/devel/Makefile Thu Nov 3 00:18:13 2016 (r425178) @@ -4138,6 +4138,7 @@ SUBDIR += py-extremes SUBDIR += py-ezpyinline SUBDIR += py-fabric + SUBDIR += py-fabric3 SUBDIR += py-fake-factory SUBDIR += py-fam SUBDIR += py-fasteners Added: head/devel/py-fabric3/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fabric3/Makefile Thu Nov 3 00:18:13 2016 (r425178) @@ -0,0 +1,21 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= fabric3 +DISTVERSION= 1.12.post1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Fabric3-${DISTVERSION} + +MAINTAINER= feld@FreeBSD.org +COMMENT= Python tool for remote execution and deployment + +LICENSE= BSD3CLAUSE + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/devel/py-fabric3/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fabric3/distinfo Thu Nov 3 00:18:13 2016 (r425178) @@ -0,0 +1,3 @@ +TIMESTAMP = 1478132139 +SHA256 (Fabric3-1.12.post1.tar.gz) = 9b868ba64bd4bd7d6beac9dea0911de65f278628ab93ef7bee7f7ff32a8892ba +SIZE (Fabric3-1.12.post1.tar.gz) = 218077 Added: head/devel/py-fabric3/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-fabric3/pkg-descr Thu Nov 3 00:18:13 2016 (r425178) @@ -0,0 +1,4 @@ +Fabric3 is a fork of Fabric to provide compatability with Python 3.4+. +The port still works with Python 2.7. + +WWW: https://github.com/mathiasertl/fabric/