[arch-commits] Commit in fabric/trunk (PKGBUILD paramiko.patch)

Sven-Hendrik Haase svenstaro at archlinux.org
Fri Dec 23 20:26:35 UTC 2016


    Date: Friday, December 23, 2016 @ 20:26:34
  Author: svenstaro
Revision: 201287

upgpkg: fabric 1.13.1-1

upstream release 1.13.1

Modified:
  fabric/trunk/PKGBUILD
Deleted:
  fabric/trunk/paramiko.patch

----------------+
 PKGBUILD       |   12 ++++++------
 paramiko.patch |   24 ------------------------
 2 files changed, 6 insertions(+), 30 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2016-12-23 20:21:00 UTC (rev 201286)
+++ PKGBUILD	2016-12-23 20:26:34 UTC (rev 201287)
@@ -2,18 +2,18 @@
 # Contributor: Francois Boulogne <fboulogne at april dot org>
 
 pkgname=fabric
-pkgver=1.11.1
-pkgrel=2
+pkgver=1.13.1
+pkgrel=1
 pkgdesc="Python library and command-line tool designed to streamline deploying applications or performing system administration tasks via the SSH protocol"
 url="http://fabfile.org/"
 license=('BSD')
 arch=('any')
-depends=('python2' 'pycrypto' 'python2-paramiko1' 'python2-setuptools')
-source=("https://pypi.python.org/packages/source/F/Fabric/Fabric-${pkgver}.tar.gz")
-sha512sums=('ab5f10f233d4a37ae74fd166d5b634f1eb4166525a2530b28d3d3a8a28ac792ee7eaa5a7c31379abd065c0e975c17e995707ffcc8e75d6f7e6bf90cd72ee50ad')
+depends=('python2' 'pycrypto' 'python2-paramiko' 'python2-setuptools')
+source=("https://github.com/fabric/fabric/archive/${pkgver}.tar.gz")
+sha512sums=('70b29824a8edc3cd0e34ef447ec355a18a8805160229655e7046c1d8a1a7131bc7dcd547833752cfa4cb6fbd01bc1cfb3e94d64f13fa94eaefb77677d74ed5be')
 
 package() {
-  cd ${srcdir}/Fabric-${pkgver}
+  cd ${srcdir}/fabric-${pkgver}
   python2 setup.py install --root=${pkgdir} --optimize=1
 
   install -D -m644 README.rst ${pkgdir}/usr/share/doc/${pkgname}/README.rst

Deleted: paramiko.patch
===================================================================
--- paramiko.patch	2016-12-23 20:21:00 UTC (rev 201286)
+++ paramiko.patch	2016-12-23 20:26:34 UTC (rev 201287)
@@ -1,24 +0,0 @@
---- setup.py
-+++ setup.py
-@@ -26,6 +26,11 @@ pip, with `pip install fabric==dev`.
- For more information, please see the Fabric website or execute ``fab --help``.
- """ % (get_version('branch'), readme)
-
-+if sys.version_info[:2] < (2, 6):
-+    install_requires=['paramiko>=1.10,<1.13']
-+else:
-+    install_requires=['paramiko>=1.10']
-+
- setup(
-     name='Fabric',
-     version=get_version('short'),
-@@ -37,7 +42,7 @@ setup(
-     packages=find_packages(),
-     test_suite='nose.collector',
-     tests_require=['nose', 'fudge<1.0'],
--    install_requires=['paramiko>=1.10,<1.13'],
-+    install_requires=install_requires,
-     entry_points={
-         'console_scripts': [
-             'fab = fabric.main:main',
-



More information about the arch-commits mailing list