Mon Oct 21 18:09:30 2013 UTC ()
Updated sysutils/fabric to 1.8.0

pkgsrc changes:
---------------
FETCH_USING=curl, pypi serves files over https now.

upstream changes:
-----------------

1.8.0 2013-09-20
[Feature] #910: Added a keyword argument to rsync_project to configure the
 default options. Thanks to @moorepants for the patch.
[Support] #984: Make this changelog easier to read! Now with per-release
 sections, generated automatically from the old timeline source format.
[Feature] #931: Allow overriding of abort behavior via a custom
 exception-returning callable set as env.abort_exception.
 Thanks to Chris Rose for the patch.


(gls)
diff -r1.30 -r1.31 pkgsrc/sysutils/fabric/Makefile
diff -r1.13 -r1.14 pkgsrc/sysutils/fabric/PLIST
diff -r1.22 -r1.23 pkgsrc/sysutils/fabric/distinfo

cvs diff -r1.30 -r1.31 pkgsrc/sysutils/fabric/Makefile (expand / switch to unified diff)

--- pkgsrc/sysutils/fabric/Makefile 2013/08/06 20:13:01 1.30
+++ pkgsrc/sysutils/fabric/Makefile 2013/10/21 18:09:30 1.31
@@ -1,20 +1,21 @@ @@ -1,20 +1,21 @@
1# $NetBSD: Makefile,v 1.30 2013/08/06 20:13:01 wiz Exp $ 1# $NetBSD: Makefile,v 1.31 2013/10/21 18:09:30 gls Exp $
2 2
3VERSION= 1.7.0 3VERSION= 1.8.0
4DISTNAME= Fabric-${VERSION} 4DISTNAME= Fabric-${VERSION}
5PKGNAME= ${DISTNAME:S/F/f/} 5PKGNAME= ${DISTNAME:S/F/f/}
6CATEGORIES= sysutils net 6CATEGORIES= sysutils net
7MASTER_SITES= http://pypi.python.org/packages/source/F/Fabric/ 7MASTER_SITES= http://pypi.python.org/packages/source/F/Fabric/
 8FETCH_USING= curl
8 9
9MAINTAINER= gls@NetBSD.org 10MAINTAINER= gls@NetBSD.org
10HOMEPAGE= http://fabfile.org/ 11HOMEPAGE= http://fabfile.org/
11COMMENT= Simple Pythonic remote deployment tool 12COMMENT= Simple Pythonic remote deployment tool
12LICENSE= 2-clause-bsd 13LICENSE= 2-clause-bsd
13 14
14DEPENDS+= ${PYPKGPREFIX}-paramiko>=1.10.0:../../security/py-paramiko 15DEPENDS+= ${PYPKGPREFIX}-paramiko>=1.10.0:../../security/py-paramiko
15 16
16USE_TOOLS+= pax 17USE_TOOLS+= pax
17 18
18INSTALLATION_DIRS+= ${PKGMANDIR}/man1 19INSTALLATION_DIRS+= ${PKGMANDIR}/man1
19INSTALLATION_DIRS+= share/doc/fabric 20INSTALLATION_DIRS+= share/doc/fabric
20INSTALLATION_DIRS+= share/doc/fabric/api 21INSTALLATION_DIRS+= share/doc/fabric/api

cvs diff -r1.13 -r1.14 pkgsrc/sysutils/fabric/PLIST (expand / switch to unified diff)

--- pkgsrc/sysutils/fabric/PLIST 2012/11/28 17:48:45 1.13
+++ pkgsrc/sysutils/fabric/PLIST 2013/10/21 18:09:30 1.14
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.13 2012/11/28 17:48:45 gls Exp $ 1@comment $NetBSD: PLIST,v 1.14 2013/10/21 18:09:30 gls Exp $
2bin/fab 2bin/fab
3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt 6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
7${PYSITELIB}/${EGG_INFODIR}/requires.txt 7${PYSITELIB}/${EGG_INFODIR}/requires.txt
8${PYSITELIB}/${EGG_INFODIR}/top_level.txt 8${PYSITELIB}/${EGG_INFODIR}/top_level.txt
9${PYSITELIB}/fabfile/__init__.py 9${PYSITELIB}/fabfile/__init__.py
10${PYSITELIB}/fabfile/__init__.pyc 10${PYSITELIB}/fabfile/__init__.pyc
11${PYSITELIB}/fabfile/__init__.pyo 11${PYSITELIB}/fabfile/__init__.pyo
12${PYSITELIB}/fabfile/docs.py 12${PYSITELIB}/fabfile/docs.py
13${PYSITELIB}/fabfile/docs.pyc 13${PYSITELIB}/fabfile/docs.pyc
14${PYSITELIB}/fabfile/docs.pyo 14${PYSITELIB}/fabfile/docs.pyo
@@ -102,25 +102,26 @@ share/doc/fabric/api/core/colors.rst @@ -102,25 +102,26 @@ share/doc/fabric/api/core/colors.rst
102share/doc/fabric/api/core/context_managers.rst 102share/doc/fabric/api/core/context_managers.rst
103share/doc/fabric/api/core/decorators.rst 103share/doc/fabric/api/core/decorators.rst
104share/doc/fabric/api/core/docs.rst 104share/doc/fabric/api/core/docs.rst
105share/doc/fabric/api/core/network.rst 105share/doc/fabric/api/core/network.rst
106share/doc/fabric/api/core/operations.rst 106share/doc/fabric/api/core/operations.rst
107share/doc/fabric/api/core/tasks.rst 107share/doc/fabric/api/core/tasks.rst
108share/doc/fabric/api/core/utils.rst 108share/doc/fabric/api/core/utils.rst
109share/doc/fabric/changelog.rst 109share/doc/fabric/changelog.rst
110share/doc/fabric/development.rst 110share/doc/fabric/development.rst
111share/doc/fabric/faq.rst 111share/doc/fabric/faq.rst
112share/doc/fabric/index.rst 112share/doc/fabric/index.rst
113share/doc/fabric/installation.rst 113share/doc/fabric/installation.rst
114share/doc/fabric/roadmap.rst 114share/doc/fabric/roadmap.rst
 115share/doc/fabric/troubleshooting.rst
115share/doc/fabric/tutorial.rst 116share/doc/fabric/tutorial.rst
116share/doc/fabric/usage/env.rst 117share/doc/fabric/usage/env.rst
117share/doc/fabric/usage/execution.rst 118share/doc/fabric/usage/execution.rst
118share/doc/fabric/usage/fab.rst 119share/doc/fabric/usage/fab.rst
119share/doc/fabric/usage/fabfiles.rst 120share/doc/fabric/usage/fabfiles.rst
120share/doc/fabric/usage/interactivity.rst 121share/doc/fabric/usage/interactivity.rst
121share/doc/fabric/usage/library.rst 122share/doc/fabric/usage/library.rst
122share/doc/fabric/usage/output_controls.rst 123share/doc/fabric/usage/output_controls.rst
123share/doc/fabric/usage/parallel.rst 124share/doc/fabric/usage/parallel.rst
124share/doc/fabric/usage/ssh.rst 125share/doc/fabric/usage/ssh.rst
125share/doc/fabric/usage/tasks.rst 126share/doc/fabric/usage/tasks.rst
126@pkgdir share/doc/fabric/changes 127@pkgdir share/doc/fabric/changes

cvs diff -r1.22 -r1.23 pkgsrc/sysutils/fabric/distinfo (expand / switch to unified diff)

--- pkgsrc/sysutils/fabric/distinfo 2013/08/06 18:28:30 1.22
+++ pkgsrc/sysutils/fabric/distinfo 2013/10/21 18:09:30 1.23
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.22 2013/08/06 18:28:30 gls Exp $ 1$NetBSD: distinfo,v 1.23 2013/10/21 18:09:30 gls Exp $
2 2
3SHA1 (Fabric-1.7.0.tar.gz) = 8ed1b7dc3e01a3d2ac9ecb5824411e742313ad6f 3SHA1 (Fabric-1.8.0.tar.gz) = 3c999323be3b7512e634dce3ae02c8fedab1ea87
4RMD160 (Fabric-1.7.0.tar.gz) = 70a392871d6aaa40db6f7d5dda106e739f07dcd9 4RMD160 (Fabric-1.8.0.tar.gz) = c670cc03a5e10d6d8a43b15deb98e75e23c20c4e
5Size (Fabric-1.7.0.tar.gz) = 219360 bytes 5Size (Fabric-1.8.0.tar.gz) = 219420 bytes