Page MenuHomeFreeBSD

D21304.diff
No OneTemporary

D21304.diff

Index: head/devel/Makefile
===================================================================
--- head/devel/Makefile
+++ head/devel/Makefile
@@ -4396,6 +4396,7 @@
SUBDIR += py-extremes
SUBDIR += py-ezpyinline
SUBDIR += py-fabric
+ SUBDIR += py-fabric1
SUBDIR += py-fabric3
SUBDIR += py-fam
SUBDIR += py-fastcache
Index: head/devel/py-cuisine/Makefile
===================================================================
--- head/devel/py-cuisine/Makefile
+++ head/devel/py-cuisine/Makefile
@@ -2,6 +2,7 @@
PORTNAME= cuisine
PORTVERSION= 0.7.13
+PORTREVISION= 1
#PORTEPOCH= 0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
@@ -12,7 +13,7 @@
LICENSE= BSD3CLAUSE
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fabric>=1.7,1:devel/py-fabric@${PY_FLAVOR}
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fabric1>=1.7,1:devel/py-fabric1@${PY_FLAVOR}
USES= python:2.7
USE_PYTHON= distutils autoplist
Index: head/devel/py-fabric1/Makefile
===================================================================
--- head/devel/py-fabric1/Makefile
+++ head/devel/py-fabric1/Makefile
@@ -0,0 +1,35 @@
+# Created by: Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
+# $FreeBSD$
+
+PORTNAME= fabric
+PORTVERSION= 1.14.1
+PORTEPOCH= 1
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+PKGNAMESUFFIX= 1
+DISTNAME= Fabric-${DISTVERSION}
+
+MAINTAINER= koobs@FreeBSD.org
+COMMENT= High level SSH command execution
+
+LICENSE= BSD2CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}paramiko>=1.10:security/py-paramiko@${PY_FLAVOR} # <3.0
+TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}fudge>0:devel/py-fudge@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR}
+
+USES= python:2.7
+USE_PYTHON= distutils concurrent autoplist
+
+CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}fabric
+
+NO_ARCH= yes
+
+do-test:
+ @cd ${WRKSRC} && ${PYTHON_CMD} -m nose -v \
+ --exclude=test_nested_execution_with_explicit_ports
+
+.include <bsd.port.mk>
Index: head/devel/py-fabric1/distinfo
===================================================================
--- head/devel/py-fabric1/distinfo
+++ head/devel/py-fabric1/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1554010618
+SHA256 (Fabric-1.14.1.tar.gz) = 66097883bb3e5beecacae92b82b2bd489d10a8fd4f06ce1cb27019de2e6d76a8
+SIZE (Fabric-1.14.1.tar.gz) = 220463
Index: head/devel/py-fabric1/files/patch-setup.py
===================================================================
--- head/devel/py-fabric1/files/patch-setup.py
+++ head/devel/py-fabric1/files/patch-setup.py
@@ -0,0 +1,11 @@
+--- setup.py.orig 2016-05-08 21:11:49 UTC
++++ setup.py
+@@ -45,7 +45,7 @@ setup(
+ url='http://fabfile.org',
+ packages=find_packages(),
+ test_suite='nose.collector',
+- tests_require=['nose<2.0', 'fudge<1.0', 'jinja2<3.0'],
++ tests_require=['nose', 'fudge', 'jinja2'],
+ install_requires=install_requires,
+ entry_points={
+ 'console_scripts': [
Index: head/devel/py-fabric1/pkg-descr
===================================================================
--- head/devel/py-fabric1/pkg-descr
+++ head/devel/py-fabric1/pkg-descr
@@ -0,0 +1,8 @@
+Fabric is a high level Python library designed to execute shell commands
+remotely over SSH, yielding useful Python objects in return.
+
+It builds on top of Invoke (subprocess command execution and command-line
+features) and Paramiko (SSH protocol implementation), extending their APIs
+to complement one another and provide additional functionality.
+
+WWW: https://www.fabfile.org
Index: head/sysutils/py-ezjailremote/Makefile
===================================================================
--- head/sysutils/py-ezjailremote/Makefile
+++ head/sysutils/py-ezjailremote/Makefile
@@ -3,7 +3,7 @@
PORTNAME= ezjailremote
PORTVERSION= 0.2.2
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= sysutils python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -13,13 +13,15 @@
LICENSE= BSD2CLAUSE
RUN_DEPENDS= ezjail-admin:sysutils/ezjail \
- ${PYTHON_PKGNAMEPREFIX}fabric>0:devel/py-fabric@${PY_FLAVOR}
+ ${PYTHON_PKGNAMEPREFIX}fabric1>0:devel/py-fabric1@${PY_FLAVOR}
+USES= python:2.7
+USE_PYTHON= distutils autoplist
+
USE_GITHUB= yes
GH_ACCOUNT= tomster
GH_PROJECT= ezjail-remote
-USES= python:2.7
-USE_PYTHON= distutils autoplist
+NO_ARCH= yes
.include <bsd.port.mk>
Index: head/sysutils/py-ploy_fabric/Makefile
===================================================================
--- head/sysutils/py-ploy_fabric/Makefile
+++ head/sysutils/py-ploy_fabric/Makefile
@@ -3,6 +3,7 @@
PORTNAME= ploy_fabric
DISTVERSION= 1.1.0
+PORTREVISION= 1
CATEGORIES= sysutils python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -14,9 +15,11 @@
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ploy>=1.0.0:sysutils/py-ploy@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}fabric>=1.4.0,1:devel/py-fabric@${PY_FLAVOR}
+ ${PYTHON_PKGNAMEPREFIX}fabric1>=1.4.0,1:devel/py-fabric1@${PY_FLAVOR}
USES= python:-2.7 zip
USE_PYTHON= autoplist distutils
+
+NO_ARCH= yes
.include <bsd.port.mk>

File Metadata

Mime Type
text/plain
Expires
Tue, Aug 18, 3:43 AM (5 h, 17 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
36883932
Default Alt Text
D21304.diff (5 KB)

Event Timeline