[arch-commits] Commit in docker-compose/repos/community-x86_64 (4 files)

Felix Yan fyan at archlinux.org
Tue Jan 12 06:12:10 UTC 2016


    Date: Tuesday, January 12, 2016 @ 07:12:10
  Author: fyan
Revision: 156045

archrelease: copy trunk to community-x86_64

Added:
  docker-compose/repos/community-x86_64/PKGBUILD
    (from rev 156044, docker-compose/trunk/PKGBUILD)
  docker-compose/repos/community-x86_64/remove-requires-upper-bound.patch
    (from rev 156044, docker-compose/trunk/remove-requires-upper-bound.patch)
Deleted:
  docker-compose/repos/community-x86_64/PKGBUILD
  docker-compose/repos/community-x86_64/remove-requires-upper-bound.patch

-----------------------------------+
 PKGBUILD                          |   86 ++++++++++++++++++------------------
 remove-requires-upper-bound.patch |   54 +++++++++++-----------
 2 files changed, 70 insertions(+), 70 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2016-01-12 06:10:06 UTC (rev 156044)
+++ PKGBUILD	2016-01-12 06:12:10 UTC (rev 156045)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Iwan Timmer <irtimmer at gmail.com>
-# Contributor: Vincent Demeester <vincent at sbr.io>
-# Contributor: Josh VanderLinden <arch at cloudlery.com>
-
-pkgname=docker-compose
-pkgver=1.5.2
-pkgrel=1
-pkgdesc="Fast, isolated development environments using Docker"
-arch=('i686' 'x86_64')
-url="https://www.docker.com/"
-depends=('python-docopt' 'python-yaml' 'python-requests' 'python-six' 'python-texttable'
-         'python-websocket-client' 'python-docker-py' 'python-dockerpty' 'python-setuptools'
-         'python-jsonschema')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/compose/archive/$pkgver.tar.gz"
-        "remove-requires-upper-bound.patch")
-license=("BSD")
-sha256sums=('8f0851b417d89bc5023e72918233449a0fa72d9952ac66494c1b37434516583d'
-            '06bd229e1d62632dc199d3b2de82571dff73631865fe6108e3a62c8441c281bf')
-
-[[ "$CARCH" == "x86_64" ]] && depends+=('docker')
-
-prepare() {
-  cd "$srcdir/compose-$pkgver"
-
-  # Remove upper bound on requires
-  patch -p1 -i "$srcdir/remove-requires-upper-bound.patch"
-  sed -i 's/==/>=/g' requirements.txt
-}
-
-build() {
-  cd "$srcdir/compose-$pkgver"
-  python setup.py build
-}
-
-package() {
-  cd "$srcdir/compose-$pkgver"
-
-  python setup.py install -O1 --root="$pkgdir"
-  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  install -Dm644 contrib/completion/bash/docker-compose "$pkgdir/etc/bash_completion.d/docker-compose"
-}

Copied: docker-compose/repos/community-x86_64/PKGBUILD (from rev 156044, docker-compose/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2016-01-12 06:12:10 UTC (rev 156045)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Iwan Timmer <irtimmer at gmail.com>
+# Contributor: Vincent Demeester <vincent at sbr.io>
+# Contributor: Josh VanderLinden <arch at cloudlery.com>
+
+pkgname=docker-compose
+pkgver=1.5.2
+pkgrel=2
+pkgdesc="Fast, isolated development environments using Docker"
+arch=('i686' 'x86_64')
+url="https://www.docker.com/"
+depends=('python-docopt' 'python-yaml' 'python-requests' 'python-six' 'python-texttable'
+         'python-websocket-client' 'python-docker-py' 'python-dockerpty' 'python-setuptools'
+         'python-jsonschema')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/compose/archive/$pkgver.tar.gz"
+        "remove-requires-upper-bound.patch")
+license=("BSD")
+sha256sums=('8f0851b417d89bc5023e72918233449a0fa72d9952ac66494c1b37434516583d'
+            '06bd229e1d62632dc199d3b2de82571dff73631865fe6108e3a62c8441c281bf')
+
+[[ "$CARCH" == "x86_64" ]] && depends+=('docker')
+
+prepare() {
+  cd "$srcdir/compose-$pkgver"
+
+  # Remove upper bound on requires
+  patch -p1 -i "$srcdir/remove-requires-upper-bound.patch"
+  sed -i 's/==/>=/g' requirements.txt
+}
+
+build() {
+  cd "$srcdir/compose-$pkgver"
+  python setup.py build
+}
+
+package() {
+  cd "$srcdir/compose-$pkgver"
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -Dm644 contrib/completion/bash/docker-compose "$pkgdir/usr/share/bash-completion/completions/docker-compose"
+}

Deleted: remove-requires-upper-bound.patch
===================================================================
--- remove-requires-upper-bound.patch	2016-01-12 06:10:06 UTC (rev 156044)
+++ remove-requires-upper-bound.patch	2016-01-12 06:12:10 UTC (rev 156045)
@@ -1,27 +0,0 @@
---- compose-1.3.0/setup.py.orig	2015-06-18 20:25:10.000000000 +0200
-+++ compose-1.3.0/setup.py	2015-06-21 17:27:42.319085182 +0200
-@@ -25,15 +25,15 @@
- 
- 
- install_requires = [
--    'docopt >= 0.6.1, < 0.7',
--    'PyYAML >= 3.10, < 4',
--    'requests >= 2.6.1, < 2.8',
--    'texttable >= 0.8.1, < 0.9',
--    'websocket-client >= 0.32.0, < 1.0',
--    'docker-py >= 1.5.0, < 2',
--    'dockerpty >= 0.3.4, < 0.4',
--    'six >= 1.3.0, < 2',
--    'jsonschema >= 2.5.1, < 3',
-+    'docopt >= 0.6.1',
-+    'PyYAML >= 3.10',
-+    'requests >= 2.6.1',
-+    'texttable >= 0.8.1',
-+    'websocket-client >= 0.32.0',
-+    'docker-py >= 1.3.1',
-+    'dockerpty >= 0.3.4',
-+    'six >= 1.3.0',
-+    'jsonschema >= 2.5.1',
- ]
- 
- 

Copied: docker-compose/repos/community-x86_64/remove-requires-upper-bound.patch (from rev 156044, docker-compose/trunk/remove-requires-upper-bound.patch)
===================================================================
--- remove-requires-upper-bound.patch	                        (rev 0)
+++ remove-requires-upper-bound.patch	2016-01-12 06:12:10 UTC (rev 156045)
@@ -0,0 +1,27 @@
+--- compose-1.3.0/setup.py.orig	2015-06-18 20:25:10.000000000 +0200
++++ compose-1.3.0/setup.py	2015-06-21 17:27:42.319085182 +0200
+@@ -25,15 +25,15 @@
+ 
+ 
+ install_requires = [
+-    'docopt >= 0.6.1, < 0.7',
+-    'PyYAML >= 3.10, < 4',
+-    'requests >= 2.6.1, < 2.8',
+-    'texttable >= 0.8.1, < 0.9',
+-    'websocket-client >= 0.32.0, < 1.0',
+-    'docker-py >= 1.5.0, < 2',
+-    'dockerpty >= 0.3.4, < 0.4',
+-    'six >= 1.3.0, < 2',
+-    'jsonschema >= 2.5.1, < 3',
++    'docopt >= 0.6.1',
++    'PyYAML >= 3.10',
++    'requests >= 2.6.1',
++    'texttable >= 0.8.1',
++    'websocket-client >= 0.32.0',
++    'docker-py >= 1.3.1',
++    'dockerpty >= 0.3.4',
++    'six >= 1.3.0',
++    'jsonschema >= 2.5.1',
+ ]
+ 
+ 



More information about the arch-commits mailing list