[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2017-11-09 Thread Jan de Groot
Date: Thursday, November 9, 2017 @ 22:02:49
  Author: jgc
Revision: 309355

upgpkg: python-gdata 2.0.18-2

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-09 22:01:50 UTC (rev 309354)
+++ PKGBUILD2017-11-09 22:02:49 UTC (rev 309355)
@@ -7,15 +7,15 @@
 pkgbase=python-gdata
 pkgname=('python2-gdata')
 pkgver=2.0.18
-pkgrel=1
+pkgrel=2
 pkgdesc="Python client library for Google data APIs"
 arch=('any')
-url="http://code.google.com/p/gdata-python-client/";
+url="https://github.com/google/gdata-python-client";
 license=('APACHE')
 depends=('python2')
 conflicts=('python-gdata<=2.0.17-1')
 replaces=('python-gdata<=2.0.17-1')
-source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
+source=(https://files.pythonhosted.org/packages/source/g/gdata/gdata-${pkgver}.tar.gz)
 sha1sums=('4cd6804f2af81697219307421996c6055c7c16e4')
 
 prepare() {


[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2013-08-20 Thread Eric Bélanger
Date: Tuesday, August 20, 2013 @ 11:17:24
  Author: eric
Revision: 193441

upgpkg: python-gdata 2.0.18-1

Upstream update, Add prepare function

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |   14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-20 08:09:13 UTC (rev 193440)
+++ PKGBUILD2013-08-20 09:17:24 UTC (rev 193441)
@@ -6,8 +6,8 @@
 
 pkgbase=python-gdata
 pkgname=('python2-gdata')
-pkgver=2.0.17
-pkgrel=3
+pkgver=2.0.18
+pkgrel=1
 pkgdesc="Python client library for Google data APIs"
 arch=('any')
 url="http://code.google.com/p/gdata-python-client/";
@@ -16,11 +16,15 @@
 conflicts=('python-gdata<=2.0.17-1')
 replaces=('python-gdata<=2.0.17-1')
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
-sha1sums=('d2d9f60699611f95dd8c328691a2555e76191c0c')
+sha1sums=('4cd6804f2af81697219307421996c6055c7c16e4')
 
-package_python2-gdata() {
-  cd "${srcdir}/gdata-${pkgver}"
+prepare() {
+  cd gdata-${pkgver}
   find . -type f -exec sed -i -e 's@^#!/usr/bin/env python@#!/usr/bin/env 
python2@' \
 -e 's@^#!/usr/.*bin/python.*@#!/usr/bin/python2@'  {} \;
+}
+
+package_python2-gdata() {
+  cd gdata-${pkgver}
   python2 setup.py install --prefix=/usr --root "${pkgdir}" 
 }



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2012-11-16 Thread Allan McRae
Date: Friday, November 16, 2012 @ 09:35:30
  Author: allan
Revision: 171081

upgpkg: python-gdata 2.0.17-3

add conflicts and replaces

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-11-16 14:31:24 UTC (rev 171080)
+++ PKGBUILD2012-11-16 14:35:30 UTC (rev 171081)
@@ -7,12 +7,14 @@
 pkgbase=python-gdata
 pkgname=('python2-gdata')
 pkgver=2.0.17
-pkgrel=2
+pkgrel=3
 pkgdesc="Python client library for Google data APIs"
 arch=('any')
 url="http://code.google.com/p/gdata-python-client/";
 license=('APACHE')
 depends=('python2')
+conflicts=('python-gdata<=2.0.17-1')
+replaces=('python-gdata<=2.0.17-1')
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
 sha1sums=('d2d9f60699611f95dd8c328691a2555e76191c0c')
 



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2012-10-08 Thread Eric Bélanger
Date: Monday, October 8, 2012 @ 18:54:01
  Author: eric
Revision: 168335

upgpkg: python-gdata 2.0.17-2

Rename to python2-gdata

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-10-08 22:50:25 UTC (rev 168334)
+++ PKGBUILD2012-10-08 22:54:01 UTC (rev 168335)
@@ -4,9 +4,10 @@
 # Contributor: Alessio 'mOLOk' Bolognino 
 # Contributor: Christophe Gueret 
 
-pkgname=python-gdata
+pkgbase=python-gdata
+pkgname=('python2-gdata')
 pkgver=2.0.17
-pkgrel=1
+pkgrel=2
 pkgdesc="Python client library for Google data APIs"
 arch=('any')
 url="http://code.google.com/p/gdata-python-client/";
@@ -15,7 +16,7 @@
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
 sha1sums=('d2d9f60699611f95dd8c328691a2555e76191c0c')
 
-package() {
+package_python2-gdata() {
   cd "${srcdir}/gdata-${pkgver}"
   find . -type f -exec sed -i -e 's@^#!/usr/bin/env python@#!/usr/bin/env 
python2@' \
 -e 's@^#!/usr/.*bin/python.*@#!/usr/bin/python2@'  {} \;



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2012-04-30 Thread Eric Bélanger
Date: Monday, April 30, 2012 @ 03:25:42
  Author: eric
Revision: 157959

upgpkg: python-gdata 2.0.17-1

Upstream update, Add python2 fix, Remove old provides/replaces/conflicts arrays

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-04-30 07:20:00 UTC (rev 157958)
+++ PKGBUILD2012-04-30 07:25:42 UTC (rev 157959)
@@ -3,21 +3,21 @@
 # Contributor: Jan de Groot 
 # Contributor: Alessio 'mOLOk' Bolognino 
 # Contributor: Christophe Gueret 
+
 pkgname=python-gdata
-pkgver=2.0.16
+pkgver=2.0.17
 pkgrel=1
-arch=(any)
 pkgdesc="Python client library for Google data APIs"
+arch=('any')
 url="http://code.google.com/p/gdata-python-client/";
 license=('APACHE')
 depends=('python2')
-provides=('gdata_py')
-replaces=('gdata_py')
-conflicts=('gdata_py')
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
-md5sums=('10e78a7f3bbccbaec266590f412e833e')
+sha1sums=('d2d9f60699611f95dd8c328691a2555e76191c0c')
 
-build() {
+package() {
   cd "${srcdir}/gdata-${pkgver}"
+  find . -type f -exec sed -i -e 's@^#!/usr/bin/env python@#!/usr/bin/env 
python2@' \
+-e 's@^#!/usr/.*bin/python.*@#!/usr/bin/python2@'  {} \;
   python2 setup.py install --prefix=/usr --root "${pkgdir}" 
 }



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2012-01-20 Thread Angel Velásquez
Date: Friday, January 20, 2012 @ 11:10:39
  Author: angvp
Revision: 147005

upgpkg: python-gdata 2.0.16-1

Version bump to 2.0.16

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-01-20 15:47:29 UTC (rev 147004)
+++ PKGBUILD2012-01-20 16:10:39 UTC (rev 147005)
@@ -4,7 +4,7 @@
 # Contributor: Alessio 'mOLOk' Bolognino 
 # Contributor: Christophe Gueret 
 pkgname=python-gdata
-pkgver=2.0.15
+pkgver=2.0.16
 pkgrel=1
 arch=(any)
 pkgdesc="Python client library for Google data APIs"
@@ -15,7 +15,7 @@
 replaces=('gdata_py')
 conflicts=('gdata_py')
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
-md5sums=('a0cb04be31c836cf654c3b17d3e3f8ae')
+md5sums=('10e78a7f3bbccbaec266590f412e833e')
 
 build() {
   cd "${srcdir}/gdata-${pkgver}"



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2011-11-21 Thread Angel Velásquez
Date: Monday, November 21, 2011 @ 06:17:01
  Author: angvp
Revision: 143029

upgpkg: python-gdata 2.0.15-1

Version bump 2.0.14 -> 2.0.15

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-11-21 05:59:12 UTC (rev 143028)
+++ PKGBUILD2011-11-21 11:17:01 UTC (rev 143029)
@@ -4,7 +4,7 @@
 # Contributor: Alessio 'mOLOk' Bolognino 
 # Contributor: Christophe Gueret 
 pkgname=python-gdata
-pkgver=2.0.14
+pkgver=2.0.15
 pkgrel=1
 arch=(any)
 pkgdesc="Python client library for Google data APIs"
@@ -15,7 +15,7 @@
 replaces=('gdata_py')
 conflicts=('gdata_py')
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
-md5sums=('29cf394b4f75aa4fae8c1b59079f2a02')
+md5sums=('a0cb04be31c836cf654c3b17d3e3f8ae')
 
 build() {
   cd "${srcdir}/gdata-${pkgver}"



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2011-05-01 Thread Angel Velásquez
Date: Sunday, May 1, 2011 @ 13:46:44
  Author: angvp
Revision: 122028

upgpkg: python-gdata 2.0.14-1
Version bump to 2.0.14

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-05-01 17:06:10 UTC (rev 122027)
+++ PKGBUILD2011-05-01 17:46:44 UTC (rev 122028)
@@ -1,10 +1,10 @@
 #$Id$
-# Maintainer: Angel 'angvp' Velasquez   
+# Maintainer: Angel Velasquez  
 # Contributor: Jan de Groot 
 # Contributor: Alessio 'mOLOk' Bolognino 
 # Contributor: Christophe Gueret 
 pkgname=python-gdata
-pkgver=2.0.13
+pkgver=2.0.14
 pkgrel=1
 arch=(any)
 pkgdesc="Python client library for Google data APIs"
@@ -15,7 +15,7 @@
 replaces=('gdata_py')
 conflicts=('gdata_py')
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
-md5sums=('bbbc7efd4ad8bb04ff9c0fbf88a0e871')
+md5sums=('29cf394b4f75aa4fae8c1b59079f2a02')
 
 build() {
   cd "${srcdir}/gdata-${pkgver}"



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2011-01-20 Thread Angel Velásquez
Date: Thursday, January 20, 2011 @ 15:40:01
  Author: angvp
Revision: 107037

upgpkg: python-gdata 2.0.13-1
-m

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-01-20 17:46:43 UTC (rev 107036)
+++ PKGBUILD2011-01-20 20:40:01 UTC (rev 107037)
@@ -4,8 +4,8 @@
 # Contributor: Alessio 'mOLOk' Bolognino 
 # Contributor: Christophe Gueret 
 pkgname=python-gdata
-pkgver=2.0.12
-pkgrel=2
+pkgver=2.0.13
+pkgrel=1
 arch=(any)
 pkgdesc="Python client library for Google data APIs"
 url="http://code.google.com/p/gdata-python-client/";
@@ -15,7 +15,7 @@
 replaces=('gdata_py')
 conflicts=('gdata_py')
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
-md5sums=('fac8a55fcb31582716db9371f79fb2f7')
+md5sums=('bbbc7efd4ad8bb04ff9c0fbf88a0e871')
 
 build() {
   cd "${srcdir}/gdata-${pkgver}"



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2010-10-11 Thread Rémy Oudompheng
Date: Monday, October 11, 2010 @ 07:35:15
  Author: remy
Revision: 94801

upgpkg: python-gdata 2.0.12-2
Rebuild for python2.7

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-10-11 11:32:52 UTC (rev 94800)
+++ PKGBUILD2010-10-11 11:35:15 UTC (rev 94801)
@@ -5,7 +5,7 @@
 # Contributor: Christophe Gueret 
 pkgname=python-gdata
 pkgver=2.0.12
-pkgrel=1
+pkgrel=2
 arch=(any)
 pkgdesc="Python client library for Google data APIs"
 url="http://code.google.com/p/gdata-python-client/";



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2010-10-08 Thread Angel Velásquez
Date: Friday, October 8, 2010 @ 09:42:30
  Author: angvp
Revision: 94596

upgpkg: python-gdata 2.0.12-1
Updating to 2.0.12

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |   11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-10-08 12:56:18 UTC (rev 94595)
+++ PKGBUILD2010-10-08 13:42:30 UTC (rev 94596)
@@ -1,12 +1,11 @@
 #$Id$
 # Maintainer: Angel 'angvp' Velasquez   
-# Maintainer: Jan de Groot 
+# Contributor: Jan de Groot 
 # Contributor: Alessio 'mOLOk' Bolognino 
 # Contributor: Christophe Gueret 
-
 pkgname=python-gdata
-pkgver=2.0.10
-pkgrel=2
+pkgver=2.0.12
+pkgrel=1
 arch=(any)
 pkgdesc="Python client library for Google data APIs"
 url="http://code.google.com/p/gdata-python-client/";
@@ -16,9 +15,9 @@
 replaces=('gdata_py')
 conflicts=('gdata_py')
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
-md5sums=('118611eef4e97f025dd351bbab01bee2')
+md5sums=('fac8a55fcb31582716db9371f79fb2f7')
 
 build() {
   cd "${srcdir}/gdata-${pkgver}"
-  python2 setup.py install --prefix=/usr --root "${pkgdir}" || return 1
+  python2 setup.py install --prefix=/usr --root "${pkgdir}" 
 }



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2010-09-01 Thread Rémy Oudompheng
Date: Wednesday, September 1, 2010 @ 13:23:26
  Author: remy
Revision: 89545

upgpkg: python-gdata 2.0.10-2
Rebuild for python2.

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-09-01 17:18:32 UTC (rev 89544)
+++ PKGBUILD2010-09-01 17:23:26 UTC (rev 89545)
@@ -6,12 +6,12 @@
 
 pkgname=python-gdata
 pkgver=2.0.10
-pkgrel=1
+pkgrel=2
 arch=(any)
 pkgdesc="Python client library for Google data APIs"
 url="http://code.google.com/p/gdata-python-client/";
 license=('APACHE')
-depends=('python>=2.6.0')
+depends=('python2')
 provides=('gdata_py')
 replaces=('gdata_py')
 conflicts=('gdata_py')
@@ -20,5 +20,5 @@
 
 build() {
   cd "${srcdir}/gdata-${pkgver}"
-  python setup.py install --prefix=/usr --root "${pkgdir}" || return 1
+  python2 setup.py install --prefix=/usr --root "${pkgdir}" || return 1
 }



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2010-06-30 Thread Angel Velásquez
Date: Thursday, July 1, 2010 @ 01:56:14
  Author: angvp
Revision: 84598

upgpkg: python-gdata 2.0.10-1
-m

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-07-01 05:28:08 UTC (rev 84597)
+++ PKGBUILD2010-07-01 05:56:14 UTC (rev 84598)
@@ -1,10 +1,11 @@
-# $Id$
+#$Id$
+# Maintainer: Angel 'angvp' Velasquez   
 # Maintainer: Jan de Groot 
 # Contributor: Alessio 'mOLOk' Bolognino 
 # Contributor: Christophe Gueret 
 
 pkgname=python-gdata
-pkgver=2.0.7
+pkgver=2.0.10
 pkgrel=1
 arch=(any)
 pkgdesc="Python client library for Google data APIs"
@@ -15,7 +16,7 @@
 replaces=('gdata_py')
 conflicts=('gdata_py')
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
-md5sums=('ee14ba55e6ffa3da9a7949f75bc24506')
+md5sums=('118611eef4e97f025dd351bbab01bee2')
 
 build() {
   cd "${srcdir}/gdata-${pkgver}"



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2010-02-07 Thread Giovanni Scafora
Date: Sunday, February 7, 2010 @ 19:38:59
  Author: giovanni
Revision: 67538

upgpkg: python-gdata 2.0.7-1
upstream release

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-07 23:36:55 UTC (rev 67537)
+++ PKGBUILD2010-02-08 00:38:59 UTC (rev 67538)
@@ -4,7 +4,7 @@
 # Contributor: Christophe Gueret 
 
 pkgname=python-gdata
-pkgver=2.0.6
+pkgver=2.0.7
 pkgrel=1
 arch=(any)
 pkgdesc="Python client library for Google data APIs"
@@ -15,8 +15,7 @@
 replaces=('gdata_py')
 conflicts=('gdata_py')
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
-md5sums=('6f6a4ee9765889e4aab5e2a6ece5188e')
-sha1sums=('85a4e28cfac07b849db0b431415cc065039db144')
+md5sums=('ee14ba55e6ffa3da9a7949f75bc24506')
 
 build() {
   cd "${srcdir}/gdata-${pkgver}"



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2010-01-03 Thread Eric Bélanger
Date: Sunday, January 3, 2010 @ 22:00:10
  Author: eric
Revision: 62169

upgpkg: python-gdata 2.0.6-1
Upstream update

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-01-03 21:42:55 UTC (rev 62168)
+++ PKGBUILD2010-01-04 03:00:10 UTC (rev 62169)
@@ -4,7 +4,7 @@
 # Contributor: Christophe Gueret 
 
 pkgname=python-gdata
-pkgver=2.0.4
+pkgver=2.0.6
 pkgrel=1
 arch=(any)
 pkgdesc="Python client library for Google data APIs"
@@ -15,7 +15,8 @@
 replaces=('gdata_py')
 conflicts=('gdata_py')
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
-md5sums=('41dc20f46aa9d6584dfb268f7c4b73b8')
+md5sums=('6f6a4ee9765889e4aab5e2a6ece5188e')
+sha1sums=('85a4e28cfac07b849db0b431415cc065039db144')
 
 build() {
   cd "${srcdir}/gdata-${pkgver}"



[arch-commits] Commit in python-gdata/trunk (PKGBUILD)

2009-10-31 Thread Jan de Groot
Date: Saturday, October 31, 2009 @ 18:30:08
  Author: jgc
Revision: 57561

upgpkg: python-gdata 2.0.4-1
Switch to -any architecture

Modified:
  python-gdata/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2009-10-31 21:53:41 UTC (rev 57560)
+++ PKGBUILD2009-10-31 22:30:08 UTC (rev 57561)
@@ -4,9 +4,9 @@
 # Contributor: Christophe Gueret 
 
 pkgname=python-gdata
-pkgver=1.3.1
+pkgver=2.0.4
 pkgrel=1
-arch=('i686' 'x86_64')
+arch=(any)
 pkgdesc="Python client library for Google data APIs"
 url="http://code.google.com/p/gdata-python-client/";
 license=('APACHE')
@@ -15,7 +15,7 @@
 replaces=('gdata_py')
 conflicts=('gdata_py')
 source=(http://gdata-python-client.googlecode.com/files/gdata-${pkgver}.tar.gz)
-md5sums=('70d60cdb43f6f49fc5a596f154f9cfbe')
+md5sums=('41dc20f46aa9d6584dfb268f7c4b73b8')
 
 build() {
   cd "${srcdir}/gdata-${pkgver}"