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

2010-06-30 Thread Daniel Griffiths
Date: Thursday, July 1, 2010 @ 01:27:32
  Author: dgriffiths
Revision: 84593

Modified:
  python-pysqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-07-01 05:20:21 UTC (rev 84592)
+++ PKGBUILD2010-07-01 05:27:32 UTC (rev 84593)
@@ -4,18 +4,17 @@
 # Maintainer: Daniel J Griffiths 
 
 pkgname=python-pysqlite
-pkgver=2.5.5
-_branch=2.5
+pkgver=2.6.0
 pkgrel=1
 pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational 
database engine"
 license=('custom')
 arch=('i686' 'x86_64')
-url="http://initd.org/tracker/pysqlite";
+url="http://code.google.com/p/pysqlite/";
 depends=('python' 'sqlite3')
 replaces=('pysqlite2')
-source=(http://oss.itsystementwicklung.de/download/pysqlite/$_branch/${pkgver}/pysqlite-${pkgver}.tar.gz
 \
+source=(http://pysqlite.googlecode.com/files/pysqlite-${pkgver}.tar.gz \
 setup.cfg)
-md5sums=('4f9fcd12a4860160b1f332066c64ee58'
+md5sums=('fc92618b3b39d02e6ff10dc467c36640'
 '86dd356c65afd14a22f2f8f64a26441e')
 build() {
cd ${srcdir}/pysqlite-${pkgver}



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

2010-09-02 Thread Rémy Oudompheng
Date: Thursday, September 2, 2010 @ 16:47:02
  Author: remy
Revision: 89652

upgpkg: python-pysqlite 2.6.0-2
Rebuild for python2.

Modified:
  python-pysqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-09-02 20:36:08 UTC (rev 89651)
+++ PKGBUILD2010-09-02 20:47:02 UTC (rev 89652)
@@ -5,12 +5,12 @@
 
 pkgname=python-pysqlite
 pkgver=2.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational 
database engine"
 license=('custom')
 arch=('i686' 'x86_64')
 url="http://code.google.com/p/pysqlite/";
-depends=('python' 'sqlite3')
+depends=('python2' 'sqlite3')
 replaces=('pysqlite2')
 source=(http://pysqlite.googlecode.com/files/pysqlite-${pkgver}.tar.gz \
 setup.cfg)
@@ -19,7 +19,7 @@
 build() {
cd ${srcdir}/pysqlite-${pkgver}
cp ${srcdir}/setup.cfg .
-   python setup.py install --root=${pkgdir}
+   python2 setup.py install --root=${pkgdir}
 }
 
 package() {



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

2010-04-08 Thread Daniel Griffiths
Date: Friday, April 9, 2010 @ 02:36:07
  Author: dgriffiths
Revision: 76936

Cleanup, adopted

Modified:
  python-pysqlite/trunk/PKGBUILD

--+
 PKGBUILD |   33 +
 1 file changed, 17 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-09 06:35:55 UTC (rev 76935)
+++ PKGBUILD2010-04-09 06:36:07 UTC (rev 76936)
@@ -1,29 +1,30 @@
 # $Id$
-# Maintainer: Aaron Griffin 
 # Contributor: Aaron Griffin 
+# Contributor: Aaron Griffin 
+# Maintainer: Daniel J Griffiths 
 
 pkgname=python-pysqlite
 pkgver=2.5.5
 _branch=2.5
 pkgrel=1
 pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational 
database engine"
-license=("custom")
-arch=(i686 x86_64)
+license=('custom')
+arch=('i686' 'x86_64')
 url="http://initd.org/tracker/pysqlite";
-depends=(python sqlite3)
-replaces=(pysqlite2)
-source=(http://oss.itsystementwicklung.de/download/pysqlite/$_branch/$pkgver/pysqlite-$pkgver.tar.gz
 \
+depends=('python' 'sqlite3')
+replaces=('pysqlite2')
+source=(http://oss.itsystementwicklung.de/download/pysqlite/$_branch/${pkgver}/pysqlite-${pkgver}.tar.gz
 \
 setup.cfg)
-
+md5sums=('4f9fcd12a4860160b1f332066c64ee58'
+'86dd356c65afd14a22f2f8f64a26441e')
 build() {
-  cd $startdir/src/pysqlite-$pkgver
-  cp $startdir/src/setup.cfg .
-  python setup.py install --root=$startdir/pkg
+   cd ${srcdir}/pysqlite-${pkgver}
+   cp ${srcdir}/setup.cfg .
+   python setup.py install --root=${pkgdir}
+}
 
-  mkdir -p $startdir/pkg/usr/share/licenses/$pkgname
-  install -m644 LICENSE $startdir/pkg/usr/share/licenses/$pkgname/license.txt
-
-  rm -r $startdir/pkg/usr/pysqlite2-doc
+package() {
+   cd ${srcdir}/pysqlite-${pkgver}
+   install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+   rm -r ${pkgdir}/usr/pysqlite2-doc
 }
-md5sums=('4f9fcd12a4860160b1f332066c64ee58'
- '86dd356c65afd14a22f2f8f64a26441e')



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

2012-04-08 Thread Rémy Oudompheng
Date: Sunday, April 8, 2012 @ 03:25:25
  Author: remy
Revision: 155871

upgpkg: python-pysqlite 2.6.3-2

Rename sqlite3 -> sqlite.

Modified:
  python-pysqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-04-08 07:13:40 UTC (rev 155870)
+++ PKGBUILD2012-04-08 07:25:25 UTC (rev 155871)
@@ -4,12 +4,12 @@
 # Contributor: Daniel J Griffiths 
 pkgname=python-pysqlite
 pkgver=2.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational 
database engine"
 license=('custom')
 arch=('i686' 'x86_64')
 url="http://code.google.com/p/pysqlite/";
-depends=('python2' 'sqlite3')
+depends=('python2' 'sqlite')
 replaces=('pysqlite2')
 source=(http://pysqlite.googlecode.com/files/pysqlite-${pkgver}.tar.gz \
 setup.cfg)



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

2016-04-02 Thread Felix Yan
Date: Saturday, April 2, 2016 @ 16:13:18
  Author: fyan
Revision: 169239

upgpkg: python-pysqlite 2.8.2-1

Modified:
  python-pysqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-04-02 14:10:55 UTC (rev 169238)
+++ PKGBUILD2016-04-02 14:13:18 UTC (rev 169239)
@@ -3,8 +3,8 @@
 
 pkgbase=python-pysqlite
 pkgname=python2-pysqlite
-pkgver=2.8.1
-pkgrel=2
+pkgver=2.8.2
+pkgrel=1
 pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational 
database engine"
 license=('custom')
 arch=('i686' 'x86_64')
@@ -14,8 +14,8 @@
 replaces=('python-pysqlite<=2.8.1-1')
 
source=("https://pypi.python.org/packages/source/p/pysqlite/pysqlite-${pkgver}.tar.gz";
 setup.cfg)
-sha256sums=('75cae18f9646f2a6137e1fb5302dba674b6982eeab3a2829377e98b13cfea066'
- '37eeb06fdb89d5dd7674f8f8094614c21468b6b469169b1db5981632aa573dca')
+sha256sums=('613d139e97ce0561dee312e29f3be4751d01fd1a085aa448dd53a003810e0008'
+'37eeb06fdb89d5dd7674f8f8094614c21468b6b469169b1db5981632aa573dca')
 
 prepare() {
   cp "${srcdir}/setup.cfg" pysqlite-${pkgver}


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

2016-08-31 Thread Felix Yan
Date: Wednesday, August 31, 2016 @ 16:23:25
  Author: felixonmars
Revision: 188155

upgpkg: python-pysqlite 2.8.3-1

Modified:
  python-pysqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-08-31 16:21:15 UTC (rev 188154)
+++ PKGBUILD2016-08-31 16:23:25 UTC (rev 188155)
@@ -3,7 +3,7 @@
 
 pkgbase=python-pysqlite
 pkgname=python2-pysqlite
-pkgver=2.8.2
+pkgver=2.8.3
 pkgrel=1
 pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational 
database engine"
 license=('custom')
@@ -12,9 +12,9 @@
 depends=('python2' 'sqlite')
 conflicts=('python-pysqlite<=2.8.1-1')
 replaces=('python-pysqlite<=2.8.1-1')
-source=("https://pypi.python.org/packages/source/p/pysqlite/pysqlite-${pkgver}.tar.gz";
+source=("https://pypi.io/packages/source/p/pysqlite/pysqlite-${pkgver}.tar.gz";
 setup.cfg)
-sha256sums=('613d139e97ce0561dee312e29f3be4751d01fd1a085aa448dd53a003810e0008'
+sha256sums=('17d3335863e8cf8392eea71add33dab3f96d060666fe68ab7382469d307f4490'
 '37eeb06fdb89d5dd7674f8f8094614c21468b6b469169b1db5981632aa573dca')
 
 prepare() {


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

2014-03-18 Thread Eric Bélanger
Date: Wednesday, March 19, 2014 @ 03:31:56
  Author: eric
Revision: 208209

upgpkg: python-pysqlite 2.6.3-4

Fix url (close FS#39152), Clean up PKGBUILD

Modified:
  python-pysqlite/trunk/PKGBUILD

--+
 PKGBUILD |   35 ++-
 1 file changed, 18 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-19 01:47:32 UTC (rev 208208)
+++ PKGBUILD2014-03-19 02:31:56 UTC (rev 208209)
@@ -1,38 +1,39 @@
 # $Id$
-# Maintainer: Angel Velasquez  
-# Contributor: Aaron Griffin 
-# Contributor: Daniel J Griffiths 
+# Maintainer:
 
 pkgbase=python-pysqlite
 pkgname=python2-pysqlite
 pkgver=2.6.3
-pkgrel=3
+pkgrel=4
 pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational 
database engine"
 license=('custom')
 arch=('i686' 'x86_64')
-url="http://code.google.com/p/pysqlite/";
+url="https://pypi.python.org/pypi/pysqlite";
 depends=('python2' 'sqlite')
 conflicts=('python-pysqlite<=2.6.3-2')
 replaces=('python-pysqlite<=2.6.3-2')
-source=(http://pysqlite.googlecode.com/files/pysqlite-${pkgver}.tar.gz \
+source=(https://pypi.python.org/packages/source/p/pysqlite/pysqlite-${pkgver}.tar.gz
 setup.cfg)
-md5sums=('711afa1062a1d2c4a67acdf02a33d86e'
+md5sums=('7ff1cedee74646b50117acff87aa1cfa'
  '86dd356c65afd14a22f2f8f64a26441e')
 
-check() {
-cd "${srcdir}"/pysqlite-${pkgver}/build/lib.*/
-python2 -c "from pysqlite2 import test; test.test()"
+prepare() {
+  cp "${srcdir}/setup.cfg" pysqlite-${pkgver}
 }
 
 build() {
-   cd "${srcdir}/pysqlite-${pkgver}"
-   cp "${srcdir}/setup.cfg" .
-   python2 setup.py build
+  cd pysqlite-${pkgver}
+  python2 setup.py build
 }
 
+check() {
+  cd pysqlite-${pkgver}/build/lib.*/
+  python2 -c "from pysqlite2 import test; test.test()"
+}
+
 package_python2-pysqlite() {
-   cd "${srcdir}/pysqlite-${pkgver}"
-   python2 setup.py install --root="${pkgdir}"
-   install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-   rm -r "${pkgdir}/usr/pysqlite2-doc"
+  cd pysqlite-${pkgver}
+  python2 setup.py install --root="${pkgdir}"
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+  rm -r "${pkgdir}/usr/pysqlite2-doc"
 }



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

2018-11-09 Thread Evangelos Foutras via arch-commits
Date: Friday, November 9, 2018 @ 20:48:57
  Author: foutrelis
Revision: 404419

PIE/BUILDINFO rebuild

Modified:
  python-pysqlite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-11-09 20:39:34 UTC (rev 404418)
+++ PKGBUILD2018-11-09 20:48:57 UTC (rev 404419)
@@ -3,7 +3,7 @@
 pkgbase=python-pysqlite
 pkgname=python2-pysqlite
 pkgver=2.8.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A Python DB-API 2.0 interface for the SQLite embedded relational 
database engine"
 license=('custom')
 arch=('x86_64')