[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2017-07-06 Thread Felix Yan
Date: Friday, July 7, 2017 @ 02:04:26
  Author: felixonmars
Revision: 242607

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 242606, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-07 02:04:10 UTC (rev 242606)
+++ PKGBUILD2017-07-07 02:04:26 UTC (rev 242607)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Kaiting Chen 
-# Contributor: Aaron Schaefer 
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.47.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
-  python tests/test.py default || warning 'Tests failed'
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r "$pkgdir/usr/bin"
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto<2.32.1-1')
-  replaces=('python-boto<2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 242606, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-07 02:04:26 UTC (rev 242607)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Kaiting Chen 
+# Contributor: Aaron Schaefer 
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.48.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/boto/boto/archive/$pkgver.tar.gz;)
+sha512sums=('aabef7622927884549fbc1cb3b39d307aadcab0ac5bff65778f87c881a8df76ee819aab20c34d5aceb62fe1365629f9186b8e10f3216b62d9a339a93e9b5f12a')
+
+prepare() {
+  cp -a boto-$pkgver{,-py2}
+
+  cd boto-$pkgver-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd "$srcdir"/boto-$pkgver
+  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
+  python tests/test.py default || warning 'Tests failed'
+
+  cd "$srcdir"/boto-$pkgver-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto-$pkgver
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r "$pkgdir"/usr/bin
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto<2.32.1-1')
+  replaces=('python-boto<2.32.1-1')
+
+  cd boto-$pkgver-py2
+
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2017-05-25 Thread Felix Yan
Date: Thursday, May 25, 2017 @ 07:00:17
  Author: felixonmars
Revision: 230013

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 230012, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-05-25 06:59:44 UTC (rev 230012)
+++ PKGBUILD2017-05-25 07:00:17 UTC (rev 230013)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Kaiting Chen 
-# Contributor: Aaron Schaefer 
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.46.1
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
-  python tests/test.py default || warning 'Tests failed'
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r "$pkgdir/usr/bin"
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto<2.32.1-1')
-  replaces=('python-boto<2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 230012, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-05-25 07:00:17 UTC (rev 230013)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Kaiting Chen 
+# Contributor: Aaron Schaefer 
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.47.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
+  python tests/test.py default || warning 'Tests failed'
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r "$pkgdir/usr/bin"
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto<2.32.1-1')
+  replaces=('python-boto<2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2017-02-20 Thread Felix Yan
Date: Tuesday, February 21, 2017 @ 07:48:53
  Author: felixonmars
Revision: 213263

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 213262, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-02-21 07:48:29 UTC (rev 213262)
+++ PKGBUILD2017-02-21 07:48:53 UTC (rev 213263)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Kaiting Chen 
-# Contributor: Aaron Schaefer 
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.45.0
-pkgrel=2
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
-  python tests/test.py default || warning 'Tests failed'
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r "$pkgdir/usr/bin"
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto<2.32.1-1')
-  replaces=('python-boto<2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 213262, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-02-21 07:48:53 UTC (rev 213263)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Kaiting Chen 
+# Contributor: Aaron Schaefer 
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.46.1
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
+  python tests/test.py default || warning 'Tests failed'
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r "$pkgdir/usr/bin"
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto<2.32.1-1')
+  replaces=('python-boto<2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2016-12-15 Thread Felix Yan
Date: Thursday, December 15, 2016 @ 08:40:02
  Author: felixonmars
Revision: 199451

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 199450, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-15 08:39:48 UTC (rev 199450)
+++ PKGBUILD2016-12-15 08:40:02 UTC (rev 199451)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Kaiting Chen 
-# Contributor: Aaron Schaefer 
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.44.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
-  python tests/test.py default || warning 'Tests failed'
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r "$pkgdir/usr/bin"
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto<2.32.1-1')
-  replaces=('python-boto<2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 199450, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-15 08:40:02 UTC (rev 199451)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Kaiting Chen 
+# Contributor: Aaron Schaefer 
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.45.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
+  python tests/test.py default || warning 'Tests failed'
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r "$pkgdir/usr/bin"
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto<2.32.1-1')
+  replaces=('python-boto<2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2016-12-08 Thread Felix Yan
Date: Friday, December 9, 2016 @ 02:36:12
  Author: felixonmars
Revision: 198512

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 198511, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-12-09 02:35:43 UTC (rev 198511)
+++ PKGBUILD2016-12-09 02:36:12 UTC (rev 198512)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Kaiting Chen 
-# Contributor: Aaron Schaefer 
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.43.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
-  python tests/test.py default || warning 'Tests failed'
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r "$pkgdir/usr/bin"
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto<2.32.1-1')
-  replaces=('python-boto<2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 198511, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-12-09 02:36:12 UTC (rev 198512)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Kaiting Chen 
+# Contributor: Aaron Schaefer 
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.44.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
+  python tests/test.py default || warning 'Tests failed'
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r "$pkgdir/usr/bin"
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto<2.32.1-1')
+  replaces=('python-boto<2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2016-10-17 Thread Felix Yan
Date: Tuesday, October 18, 2016 @ 02:27:45
  Author: felixonmars
Revision: 192476

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 192475, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-10-18 02:27:23 UTC (rev 192475)
+++ PKGBUILD2016-10-18 02:27:45 UTC (rev 192476)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Kaiting Chen 
-# Contributor: Aaron Schaefer 
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.42.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
-  python tests/test.py default || warning 'Tests failed'
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r "$pkgdir/usr/bin"
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto<2.32.1-1')
-  replaces=('python-boto<2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 192475, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-10-18 02:27:45 UTC (rev 192476)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Kaiting Chen 
+# Contributor: Aaron Schaefer 
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.43.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
+  python tests/test.py default || warning 'Tests failed'
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r "$pkgdir/usr/bin"
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto<2.32.1-1')
+  replaces=('python-boto<2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2016-07-19 Thread Felix Yan
Date: Wednesday, July 20, 2016 @ 04:26:35
  Author: felixonmars
Revision: 183412

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 183411, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-20 04:26:20 UTC (rev 183411)
+++ PKGBUILD2016-07-20 04:26:35 UTC (rev 183412)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Kaiting Chen 
-# Contributor: Aaron Schaefer 
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.41.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
-  python tests/test.py default || warning 'Tests failed'
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r "$pkgdir/usr/bin"
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto<2.32.1-1')
-  replaces=('python-boto<2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 183411, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-07-20 04:26:35 UTC (rev 183412)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Kaiting Chen 
+# Contributor: Aaron Schaefer 
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.42.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
+  python tests/test.py default || warning 'Tests failed'
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r "$pkgdir/usr/bin"
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto<2.32.1-1')
+  replaces=('python-boto<2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2016-06-27 Thread Felix Yan
Date: Tuesday, June 28, 2016 @ 02:57:36
  Author: felixonmars
Revision: 181456

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 181455, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-28 02:57:22 UTC (rev 181455)
+++ PKGBUILD2016-06-28 02:57:36 UTC (rev 181456)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Kaiting Chen 
-# Contributor: Aaron Schaefer 
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.40.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
-  python tests/test.py default || warning 'Tests failed'
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r "$pkgdir/usr/bin"
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto<2.32.1-1')
-  replaces=('python-boto<2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 181455, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-06-28 02:57:36 UTC (rev 181456)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Kaiting Chen 
+# Contributor: Aaron Schaefer 
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.41.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
+  python tests/test.py default || warning 'Tests failed'
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r "$pkgdir/usr/bin"
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto<2.32.1-1')
+  replaces=('python-boto<2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2016-04-29 Thread Felix Yan
Date: Saturday, April 30, 2016 @ 06:33:07
  Author: fyan
Revision: 172878

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 172877, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-04-30 04:32:35 UTC (rev 172877)
+++ PKGBUILD2016-04-30 04:33:07 UTC (rev 172878)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Kaiting Chen 
-# Contributor: Aaron Schaefer 
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.39.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
-  python tests/test.py default || warning 'Tests failed'
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r "$pkgdir/usr/bin"
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto<2.32.1-1')
-  replaces=('python-boto<2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 172877, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-04-30 04:33:07 UTC (rev 172878)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Kaiting Chen 
+# Contributor: Aaron Schaefer 
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.40.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
+  python tests/test.py default || warning 'Tests failed'
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r "$pkgdir/usr/bin"
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto<2.32.1-1')
+  replaces=('python-boto<2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2016-01-18 Thread Felix Yan
Date: Tuesday, January 19, 2016 @ 07:31:17
  Author: fyan
Revision: 157614

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 157613, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  118 ++---
 1 file changed, 59 insertions(+), 59 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-19 06:30:58 UTC (rev 157613)
+++ PKGBUILD2016-01-19 06:31:17 UTC (rev 157614)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Kaiting Chen 
-# Contributor: Aaron Schaefer 
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.38.0
-pkgrel=2
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
-  python tests/test.py default || warning 'Tests failed'
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r "$pkgdir/usr/bin"
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto<2.32.1-1')
-  replaces=('python-boto<2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root="$pkgdir"
-  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 157613, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2016-01-19 06:31:17 UTC (rev 157614)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Felix Yan 
+# Contributor: Kaiting Chen 
+# Contributor: Aaron Schaefer 
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.39.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=("git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  # Known failure on test_correct_low_level_api_calls: 
https://bugs.python.org/issue25195
+  python tests/test.py default || warning 'Tests failed'
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r "$pkgdir/usr/bin"
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto<2.32.1-1')
+  replaces=('python-boto<2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2015-04-03 Thread Felix Yan
Date: Friday, April 3, 2015 @ 10:02:34
  Author: fyan
Revision: 130559

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 130558, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  116 ++---
 1 file changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-03 08:02:09 UTC (rev 130558)
+++ PKGBUILD2015-04-03 08:02:34 UTC (rev 130559)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.36.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python tests/test.py default
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r $pkgdir/usr/bin
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto2.32.1-1')
-  replaces=('python-boto2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 130558, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-03 08:02:34 UTC (rev 130559)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.37.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python tests/test.py default
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r $pkgdir/usr/bin
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto2.32.1-1')
+  replaces=('python-boto2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2015-01-28 Thread Felix Yan
Date: Thursday, January 29, 2015 @ 03:48:41
  Author: fyan
Revision: 126721

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 126720, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  116 ++---
 1 file changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-29 02:48:17 UTC (rev 126720)
+++ PKGBUILD2015-01-29 02:48:41 UTC (rev 126721)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.35.2
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python tests/test.py default
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r $pkgdir/usr/bin
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto2.32.1-1')
-  replaces=('python-boto2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 126720, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-29 02:48:41 UTC (rev 126721)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.36.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python tests/test.py default
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r $pkgdir/usr/bin
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto2.32.1-1')
+  replaces=('python-boto2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2015-01-19 Thread Felix Yan
Date: Tuesday, January 20, 2015 @ 06:35:38
  Author: fyan
Revision: 126276

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 126275, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  116 ++---
 1 file changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-20 05:35:15 UTC (rev 126275)
+++ PKGBUILD2015-01-20 05:35:38 UTC (rev 126276)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.35.1
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python tests/test.py default
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r $pkgdir/usr/bin
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto2.32.1-1')
-  replaces=('python-boto2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 126275, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-20 05:35:38 UTC (rev 126276)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.35.2
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python tests/test.py default
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r $pkgdir/usr/bin
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto2.32.1-1')
+  replaces=('python-boto2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2015-01-09 Thread Felix Yan
Date: Saturday, January 10, 2015 @ 03:48:56
  Author: fyan
Revision: 125700

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 125699, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  116 ++---
 1 file changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-10 02:48:40 UTC (rev 125699)
+++ PKGBUILD2015-01-10 02:48:56 UTC (rev 125700)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.35.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python tests/test.py default
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r $pkgdir/usr/bin
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto2.32.1-1')
-  replaces=('python-boto2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 125699, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-10 02:48:56 UTC (rev 125700)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.35.1
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python tests/test.py default
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r $pkgdir/usr/bin
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto2.32.1-1')
+  replaces=('python-boto2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2015-01-08 Thread Felix Yan
Date: Friday, January 9, 2015 @ 05:03:19
  Author: fyan
Revision: 125639

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 125638, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  116 ++---
 1 file changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-01-09 04:02:54 UTC (rev 125638)
+++ PKGBUILD2015-01-09 04:03:19 UTC (rev 125639)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.34.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python tests/test.py default
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r $pkgdir/usr/bin
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto2.32.1-1')
-  replaces=('python-boto2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 125638, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-01-09 04:03:19 UTC (rev 125639)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.35.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python tests/test.py default
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r $pkgdir/usr/bin
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto2.32.1-1')
+  replaces=('python-boto2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2014-10-24 Thread Felix Yan
Date: Friday, October 24, 2014 @ 11:06:35
  Author: fyan
Revision: 121341

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 121340, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  116 ++---
 1 file changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-24 09:06:12 UTC (rev 121340)
+++ PKGBUILD2014-10-24 09:06:35 UTC (rev 121341)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.33.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python tests/test.py default
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r $pkgdir/usr/bin
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto2.32.1-1')
-  replaces=('python-boto2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 121340, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-24 09:06:35 UTC (rev 121341)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.34.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python tests/test.py default
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r $pkgdir/usr/bin
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto2.32.1-1')
+  replaces=('python-boto2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2014-10-08 Thread Felix Yan
Date: Thursday, October 9, 2014 @ 07:45:35
  Author: fyan
Revision: 120427

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 120426, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |  116 ++---
 1 file changed, 58 insertions(+), 58 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-10-09 05:45:16 UTC (rev 120426)
+++ PKGBUILD2014-10-09 05:45:35 UTC (rev 120427)
@@ -1,58 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=(python-boto python2-boto)
-pkgver=2.32.1
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'git')
-checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
-  'python2-requests' 'python-httpretty' 'python2-httpretty')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-sha512sums=('SKIP')
-
-prepare() {
-  cp -a boto{,-py2}
-
-  cd boto-py2
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python tests/test.py default
-
-  cd ../boto-py2
-  python2 tests/test.py default
-}
-
-package_python-boto() {
-  depends=('python')
-
-  cd boto
-
-  python setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
-  rm -r $pkgdir/usr/bin
-}
-
-package_python2-boto() {
-  depends=('python2')
-  conflicts=('python-boto2.32.1-1')
-  replaces=('python-boto2.32.1-1')
-
-  cd boto-py2
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-boto/repos/community-any/PKGBUILD (from rev 120426, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-10-09 05:45:35 UTC (rev 120427)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.33.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python tests/test.py default
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r $pkgdir/usr/bin
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto2.32.1-1')
+  replaces=('python-boto2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2014-08-06 Thread Felix Yan
Date: Wednesday, August 6, 2014 @ 09:00:55
  Author: fyan
Revision: 116915

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 116914, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |   99 +++--
 1 file changed, 58 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-08-06 07:00:33 UTC (rev 116914)
+++ PKGBUILD2014-08-06 07:00:55 UTC (rev 116915)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=python2-boto
-pkgver=2.32.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-depends=('python2')
-makedepends=('python2-setuptools' 'git')
-checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
-conflicts=('python-boto=2.5.2-1')
-replaces=('python-boto=2.5.2-1')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-
-prepare() {
-  cd boto
-
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python2 tests/test.py tests/unit
-}
-
-package_python2-boto() {
-  cd boto
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-sha512sums=('SKIP')

Copied: python-boto/repos/community-any/PKGBUILD (from rev 116914, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-08-06 07:00:55 UTC (rev 116915)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=(python-boto python2-boto)
+pkgver=2.32.1
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 
'python-requests'
+  'python2-requests' 'python-httpretty' 'python2-httpretty')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+sha512sums=('SKIP')
+
+prepare() {
+  cp -a boto{,-py2}
+
+  cd boto-py2
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python tests/test.py default
+
+  cd ../boto-py2
+  python2 tests/test.py default
+}
+
+package_python-boto() {
+  depends=('python')
+
+  cd boto
+
+  python setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # Remove (somewhat deprecated) tools that conflicts with the python 2 
version.
+  rm -r $pkgdir/usr/bin
+}
+
+package_python2-boto() {
+  depends=('python2')
+  conflicts=('python-boto2.32.1-1')
+  replaces=('python-boto2.32.1-1')
+
+  cd boto-py2
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2014-07-30 Thread Felix Yan
Date: Thursday, July 31, 2014 @ 05:26:51
  Author: fyan
Revision: 116623

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 116622, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-31 03:26:32 UTC (rev 116622)
+++ PKGBUILD2014-07-31 03:26:51 UTC (rev 116623)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=python2-boto
-pkgver=2.31.1
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-depends=('python2')
-makedepends=('python2-setuptools' 'git')
-checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
-conflicts=('python-boto=2.5.2-1')
-replaces=('python-boto=2.5.2-1')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-
-prepare() {
-  cd boto
-
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python2 tests/test.py tests/unit
-}
-
-package_python2-boto() {
-  cd boto
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-sha512sums=('SKIP')

Copied: python-boto/repos/community-any/PKGBUILD (from rev 116622, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-31 03:26:51 UTC (rev 116623)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=python2-boto
+pkgver=2.32.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+depends=('python2')
+makedepends=('python2-setuptools' 'git')
+checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
+conflicts=('python-boto=2.5.2-1')
+replaces=('python-boto=2.5.2-1')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+
+prepare() {
+  cd boto
+
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python2 tests/test.py tests/unit
+}
+
+package_python2-boto() {
+  cd boto
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+sha512sums=('SKIP')



[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2014-07-10 Thread Felix Yan
Date: Thursday, July 10, 2014 @ 20:38:44
  Author: fyan
Revision: 115411

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 115410, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-10 18:38:26 UTC (rev 115410)
+++ PKGBUILD2014-07-10 18:38:44 UTC (rev 115411)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=python2-boto
-pkgver=2.30.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-depends=('python2')
-makedepends=('python2-setuptools' 'git')
-checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
-conflicts=('python-boto=2.5.2-1')
-replaces=('python-boto=2.5.2-1')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-
-prepare() {
-  cd boto
-
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python2 tests/test.py tests/unit
-}
-
-package_python2-boto() {
-  cd boto
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-sha512sums=('SKIP')

Copied: python-boto/repos/community-any/PKGBUILD (from rev 115410, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-10 18:38:44 UTC (rev 115411)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=python2-boto
+pkgver=2.31.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+depends=('python2')
+makedepends=('python2-setuptools' 'git')
+checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
+conflicts=('python-boto=2.5.2-1')
+replaces=('python-boto=2.5.2-1')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+
+prepare() {
+  cd boto
+
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python2 tests/test.py tests/unit
+}
+
+package_python2-boto() {
+  cd boto
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+sha512sums=('SKIP')



[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2014-07-10 Thread Felix Yan
Date: Friday, July 11, 2014 @ 04:10:02
  Author: fyan
Revision: 115423

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 115422, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-11 02:09:41 UTC (rev 115422)
+++ PKGBUILD2014-07-11 02:10:02 UTC (rev 115423)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=python2-boto
-pkgver=2.31.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-depends=('python2')
-makedepends=('python2-setuptools' 'git')
-checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
-conflicts=('python-boto=2.5.2-1')
-replaces=('python-boto=2.5.2-1')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-
-prepare() {
-  cd boto
-
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python2 tests/test.py tests/unit
-}
-
-package_python2-boto() {
-  cd boto
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-sha512sums=('SKIP')

Copied: python-boto/repos/community-any/PKGBUILD (from rev 115422, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-11 02:10:02 UTC (rev 115423)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=python2-boto
+pkgver=2.31.1
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+depends=('python2')
+makedepends=('python2-setuptools' 'git')
+checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
+conflicts=('python-boto=2.5.2-1')
+replaces=('python-boto=2.5.2-1')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+
+prepare() {
+  cd boto
+
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python2 tests/test.py tests/unit
+}
+
+package_python2-boto() {
+  cd boto
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+sha512sums=('SKIP')



[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2014-07-01 Thread Felix Yan
Date: Wednesday, July 2, 2014 @ 05:33:41
  Author: fyan
Revision: 114571

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 114570, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-07-02 03:32:44 UTC (rev 114570)
+++ PKGBUILD2014-07-02 03:33:41 UTC (rev 114571)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=python2-boto
-pkgver=2.29.1
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-depends=('python2')
-makedepends=('python2-setuptools' 'git')
-checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
-conflicts=('python-boto=2.5.2-1')
-replaces=('python-boto=2.5.2-1')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-
-prepare() {
-  cd boto
-
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python2 tests/test.py tests/unit
-}
-
-package_python2-boto() {
-  cd boto
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-sha512sums=('SKIP')

Copied: python-boto/repos/community-any/PKGBUILD (from rev 114570, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-07-02 03:33:41 UTC (rev 114571)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=python2-boto
+pkgver=2.30.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+depends=('python2')
+makedepends=('python2-setuptools' 'git')
+checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
+conflicts=('python-boto=2.5.2-1')
+replaces=('python-boto=2.5.2-1')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+
+prepare() {
+  cd boto
+
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python2 tests/test.py tests/unit
+}
+
+package_python2-boto() {
+  cd boto
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+sha512sums=('SKIP')



[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2014-05-30 Thread Felix Yan
Date: Saturday, May 31, 2014 @ 05:30:56
  Author: fyan
Revision: 112296

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 112295, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-31 03:30:00 UTC (rev 112295)
+++ PKGBUILD2014-05-31 03:30:56 UTC (rev 112296)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=python2-boto
-pkgver=2.29.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-depends=('python2')
-makedepends=('python2-setuptools' 'git')
-checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
-conflicts=('python-boto=2.5.2-1')
-replaces=('python-boto=2.5.2-1')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-
-prepare() {
-  cd boto
-
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python2 tests/test.py tests/unit
-}
-
-package_python2-boto() {
-  cd boto
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-sha512sums=('SKIP')

Copied: python-boto/repos/community-any/PKGBUILD (from rev 112295, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-31 03:30:56 UTC (rev 112296)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=python2-boto
+pkgver=2.29.1
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+depends=('python2')
+makedepends=('python2-setuptools' 'git')
+checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
+conflicts=('python-boto=2.5.2-1')
+replaces=('python-boto=2.5.2-1')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+
+prepare() {
+  cd boto
+
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python2 tests/test.py tests/unit
+}
+
+package_python2-boto() {
+  cd boto
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+sha512sums=('SKIP')



[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2014-05-29 Thread Felix Yan
Date: Friday, May 30, 2014 @ 05:51:52
  Author: fyan
Revision: 112207

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 112206, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |   82 ++---
 1 file changed, 41 insertions(+), 41 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-30 03:49:38 UTC (rev 112206)
+++ PKGBUILD2014-05-30 03:51:52 UTC (rev 112207)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=python2-boto
-pkgver=2.28.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-depends=('python2')
-makedepends=('python2-setuptools' 'git')
-checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
-conflicts=('python-boto=2.5.2-1')
-replaces=('python-boto=2.5.2-1')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-
-prepare() {
-  cd boto
-
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-check() {
-  cd boto
-  python2 tests/test.py tests/unit
-}
-
-package_python2-boto() {
-  cd boto
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-sha512sums=('SKIP')

Copied: python-boto/repos/community-any/PKGBUILD (from rev 112206, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-30 03:51:52 UTC (rev 112207)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=python2-boto
+pkgver=2.29.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+depends=('python2')
+makedepends=('python2-setuptools' 'git')
+checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
+conflicts=('python-boto=2.5.2-1')
+replaces=('python-boto=2.5.2-1')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+
+prepare() {
+  cd boto
+
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python2 tests/test.py tests/unit
+}
+
+package_python2-boto() {
+  cd boto
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+sha512sums=('SKIP')



[arch-commits] Commit in python-boto/repos/community-any (PKGBUILD PKGBUILD)

2014-05-08 Thread Felix Yan
Date: Friday, May 9, 2014 @ 04:10:06
  Author: fyan
Revision: 110883

archrelease: copy trunk to community-any

Added:
  python-boto/repos/community-any/PKGBUILD
(from rev 110882, python-boto/trunk/PKGBUILD)
Deleted:
  python-boto/repos/community-any/PKGBUILD

--+
 PKGBUILD |   76 -
 1 file changed, 41 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-09 02:09:12 UTC (rev 110882)
+++ PKGBUILD2014-05-09 02:10:06 UTC (rev 110883)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@gmail.com
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: Aaron Schaefer aa...@elasticdog.com
-
-pkgbase=python-boto
-pkgname=python2-boto
-pkgver=2.27.0
-pkgrel=1
-pkgdesc='A Python interface to Amazon Web Services (AWS)'
-arch=('any')
-url='https://github.com/boto/boto'
-license=('MIT')
-depends=('python2')
-makedepends=('python2-setuptools' 'git')
-conflicts=('python-boto=2.5.2-1')
-replaces=('python-boto=2.5.2-1')
-source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
-
-prepare() {
-  cd boto
-
-  # python2 fix
-  find . -name '*.py' -type f -print0 | xargs -0 \
-sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
-}
-
-package_python2-boto() {
-  cd boto
-
-  python2 setup.py install -O1 --root=$pkgdir
-  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-sha512sums=('SKIP')

Copied: python-boto/repos/community-any/PKGBUILD (from rev 110882, 
python-boto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-09 02:10:06 UTC (rev 110883)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: Aaron Schaefer aa...@elasticdog.com
+
+pkgbase=python-boto
+pkgname=python2-boto
+pkgver=2.28.0
+pkgrel=1
+pkgdesc='A Python interface to Amazon Web Services (AWS)'
+arch=('any')
+url='https://github.com/boto/boto'
+license=('MIT')
+depends=('python2')
+makedepends=('python2-setuptools' 'git')
+checkdepends=('python2-nose' 'python2-mock' 'python2-requests' 
'python2-httpretty')
+conflicts=('python-boto=2.5.2-1')
+replaces=('python-boto=2.5.2-1')
+source=(git+https://github.com/boto/boto.git#tag=$pkgver;)
+
+prepare() {
+  cd boto
+
+  # python2 fix
+  find . -name '*.py' -type f -print0 | xargs -0 \
+sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_'
+}
+
+check() {
+  cd boto
+  python2 tests/test.py tests/unit
+}
+
+package_python2-boto() {
+  cd boto
+
+  python2 setup.py install -O1 --root=$pkgdir
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+sha512sums=('SKIP')