[arch-commits] Commit in python-apsw/repos (8 files)

Jelle van der Waa jelle at archlinux.org
Thu May 12 18:39:31 UTC 2016


    Date: Thursday, May 12, 2016 @ 20:39:31
  Author: jelle
Revision: 175082

archrelease: copy trunk to community-i686, community-x86_64

Added:
  python-apsw/repos/community-i686/LICENSE
    (from rev 175081, python-apsw/trunk/LICENSE)
  python-apsw/repos/community-i686/PKGBUILD
    (from rev 175081, python-apsw/trunk/PKGBUILD)
  python-apsw/repos/community-x86_64/LICENSE
    (from rev 175081, python-apsw/trunk/LICENSE)
  python-apsw/repos/community-x86_64/PKGBUILD
    (from rev 175081, python-apsw/trunk/PKGBUILD)
Deleted:
  python-apsw/repos/community-i686/LICENSE
  python-apsw/repos/community-i686/PKGBUILD
  python-apsw/repos/community-x86_64/LICENSE
  python-apsw/repos/community-x86_64/PKGBUILD

---------------------------+
 /LICENSE                  |   54 ++++++++++++++++++++++
 /PKGBUILD                 |  104 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/LICENSE    |   27 -----------
 community-i686/PKGBUILD   |   52 ----------------------
 community-x86_64/LICENSE  |   27 -----------
 community-x86_64/PKGBUILD |   52 ----------------------
 6 files changed, 158 insertions(+), 158 deletions(-)

Deleted: community-i686/LICENSE
===================================================================
--- community-i686/LICENSE	2016-05-12 18:39:19 UTC (rev 175081)
+++ community-i686/LICENSE	2016-05-12 18:39:31 UTC (rev 175082)
@@ -1,27 +0,0 @@
-Copyright (c) 2004-2014 Roger Binns <rogerb at rogerbinns.com>
-See src/traceback.c for code by Greg Ewing.
-
-All code and documentation is provided under this license:
-
-This software is provided 'as-is', without any express or implied
-warranty. In no event will the authors be held liable for any damages
-arising from the use of this software.
-
-Permission is granted to anyone to use this software for any purpose,
-including commercial applications, and to alter it and redistribute it
-freely, subject to the following restrictions:
-
-    1. The origin of this software must not be misrepresented; you must not
-    claim that you wrote the original software. If you use this software
-    in a product, an acknowledgment in the product documentation would be
-    appreciated but is not required.
-
-    2. Altered source versions must be plainly marked as such, and must not be
-    misrepresented as being the original software.
-
-    3. This notice may not be removed or altered from any source
-    distribution.
-
-Alternatively you may strike the license above and use it under any
-OSI approved open source license such as those listed at
-http://opensource.org/licenses/alphabetical

Copied: python-apsw/repos/community-i686/LICENSE (from rev 175081, python-apsw/trunk/LICENSE)
===================================================================
--- community-i686/LICENSE	                        (rev 0)
+++ community-i686/LICENSE	2016-05-12 18:39:31 UTC (rev 175082)
@@ -0,0 +1,27 @@
+Copyright (c) 2004-2014 Roger Binns <rogerb at rogerbinns.com>
+See src/traceback.c for code by Greg Ewing.
+
+All code and documentation is provided under this license:
+
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+    1. The origin of this software must not be misrepresented; you must not
+    claim that you wrote the original software. If you use this software
+    in a product, an acknowledgment in the product documentation would be
+    appreciated but is not required.
+
+    2. Altered source versions must be plainly marked as such, and must not be
+    misrepresented as being the original software.
+
+    3. This notice may not be removed or altered from any source
+    distribution.
+
+Alternatively you may strike the license above and use it under any
+OSI approved open source license such as those listed at
+http://opensource.org/licenses/alphabetical

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-05-12 18:39:19 UTC (rev 175081)
+++ community-i686/PKGBUILD	2016-05-12 18:39:31 UTC (rev 175082)
@@ -1,52 +0,0 @@
-# Maintainer: Brendan MacDonell <macdonellba at gmail dot com>
-# Former Maintainer: Linmiao Xu <linmiao.xu at gmail.com>
-# Contributor: Juan Miguel Cejuela <juanmi at jmcejuela.net>
-
-pkgbase=python-apsw
-pkgname=('python-apsw' 'python2-apsw')
-pkgver=3.11.0
-pkgrel=1
-arch=('i686' 'x86_64')
-url="https://github.com/rogerbinns/apsw"
-license=('MIT')
-makedepends=('python' 'python2')
-source=("https://github.com/rogerbinns/apsw/archive/$pkgver-r1.tar.gz" "LICENSE")
-md5sums=('bc7879f0a029433b917cd4dec65ef328'
-         '9be3fbee1bae6c66d658a157c67943c0')
-
-build() {
-  cp -rf apsw-${pkgver}-r1 apsw2
-
-  cd apsw-${pkgver}-r1
-  python setup.py build --enable=load_extension
-  cd $srcdir/apsw2
-  python2 setup.py build --enable=load_extension
-}
-
-package_python-apsw() {
-depends=('python' 'sqlite3>=3.7.5')
-pkgdesc="Python wrapper for SQLite"
-  cd $srcdir/apsw-${pkgver}-r1
-  python setup.py install --root=$pkgdir/ 
-
-  install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-apsw() {
-depends=('python2' 'sqlite3>=3.7.5')
-pkgdesc="Python2 wrapper for SQLite"
-  cd $srcdir/apsw2
-  python2 setup.py install --root=$pkgdir/  
-
-  install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-check() {
-  cd $srcdir/apsw2
-  export PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH"
-  python2 setup.py test
-
-  cd $srcdir/apsw-${pkgver}-r1
-  export PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH"
-  python setup.py test
-}

Copied: python-apsw/repos/community-i686/PKGBUILD (from rev 175081, python-apsw/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-05-12 18:39:31 UTC (rev 175082)
@@ -0,0 +1,52 @@
+# Maintainer: Brendan MacDonell <macdonellba at gmail dot com>
+# Former Maintainer: Linmiao Xu <linmiao.xu at gmail.com>
+# Contributor: Juan Miguel Cejuela <juanmi at jmcejuela.net>
+
+pkgbase=python-apsw
+pkgname=('python-apsw' 'python2-apsw')
+pkgver=3.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url="https://github.com/rogerbinns/apsw"
+license=('MIT')
+makedepends=('python' 'python2')
+source=("https://github.com/rogerbinns/apsw/archive/$pkgver-r1.tar.gz" "LICENSE")
+md5sums=('621b2857e05506f190b55fce66b65887'
+         '9be3fbee1bae6c66d658a157c67943c0')
+
+build() {
+  cp -rf apsw-${pkgver}-r1 apsw2
+
+  cd apsw-${pkgver}-r1
+  python setup.py build --enable=load_extension
+  cd $srcdir/apsw2
+  python2 setup.py build --enable=load_extension
+}
+
+package_python-apsw() {
+depends=('python' 'sqlite3>=3.7.5')
+pkgdesc="Python wrapper for SQLite"
+  cd $srcdir/apsw-${pkgver}-r1
+  python setup.py install --root=$pkgdir/ 
+
+  install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-apsw() {
+depends=('python2' 'sqlite3>=3.7.5')
+pkgdesc="Python2 wrapper for SQLite"
+  cd $srcdir/apsw2
+  python2 setup.py install --root=$pkgdir/  
+
+  install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+check() {
+  cd $srcdir/apsw2
+  export PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH"
+  python2 setup.py test
+
+  cd $srcdir/apsw-${pkgver}-r1
+  export PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH"
+  python setup.py test
+}

Deleted: community-x86_64/LICENSE
===================================================================
--- community-x86_64/LICENSE	2016-05-12 18:39:19 UTC (rev 175081)
+++ community-x86_64/LICENSE	2016-05-12 18:39:31 UTC (rev 175082)
@@ -1,27 +0,0 @@
-Copyright (c) 2004-2014 Roger Binns <rogerb at rogerbinns.com>
-See src/traceback.c for code by Greg Ewing.
-
-All code and documentation is provided under this license:
-
-This software is provided 'as-is', without any express or implied
-warranty. In no event will the authors be held liable for any damages
-arising from the use of this software.
-
-Permission is granted to anyone to use this software for any purpose,
-including commercial applications, and to alter it and redistribute it
-freely, subject to the following restrictions:
-
-    1. The origin of this software must not be misrepresented; you must not
-    claim that you wrote the original software. If you use this software
-    in a product, an acknowledgment in the product documentation would be
-    appreciated but is not required.
-
-    2. Altered source versions must be plainly marked as such, and must not be
-    misrepresented as being the original software.
-
-    3. This notice may not be removed or altered from any source
-    distribution.
-
-Alternatively you may strike the license above and use it under any
-OSI approved open source license such as those listed at
-http://opensource.org/licenses/alphabetical

Copied: python-apsw/repos/community-x86_64/LICENSE (from rev 175081, python-apsw/trunk/LICENSE)
===================================================================
--- community-x86_64/LICENSE	                        (rev 0)
+++ community-x86_64/LICENSE	2016-05-12 18:39:31 UTC (rev 175082)
@@ -0,0 +1,27 @@
+Copyright (c) 2004-2014 Roger Binns <rogerb at rogerbinns.com>
+See src/traceback.c for code by Greg Ewing.
+
+All code and documentation is provided under this license:
+
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+    1. The origin of this software must not be misrepresented; you must not
+    claim that you wrote the original software. If you use this software
+    in a product, an acknowledgment in the product documentation would be
+    appreciated but is not required.
+
+    2. Altered source versions must be plainly marked as such, and must not be
+    misrepresented as being the original software.
+
+    3. This notice may not be removed or altered from any source
+    distribution.
+
+Alternatively you may strike the license above and use it under any
+OSI approved open source license such as those listed at
+http://opensource.org/licenses/alphabetical

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-05-12 18:39:19 UTC (rev 175081)
+++ community-x86_64/PKGBUILD	2016-05-12 18:39:31 UTC (rev 175082)
@@ -1,52 +0,0 @@
-# Maintainer: Brendan MacDonell <macdonellba at gmail dot com>
-# Former Maintainer: Linmiao Xu <linmiao.xu at gmail.com>
-# Contributor: Juan Miguel Cejuela <juanmi at jmcejuela.net>
-
-pkgbase=python-apsw
-pkgname=('python-apsw' 'python2-apsw')
-pkgver=3.11.0
-pkgrel=1
-arch=('i686' 'x86_64')
-url="https://github.com/rogerbinns/apsw"
-license=('MIT')
-makedepends=('python' 'python2')
-source=("https://github.com/rogerbinns/apsw/archive/$pkgver-r1.tar.gz" "LICENSE")
-md5sums=('bc7879f0a029433b917cd4dec65ef328'
-         '9be3fbee1bae6c66d658a157c67943c0')
-
-build() {
-  cp -rf apsw-${pkgver}-r1 apsw2
-
-  cd apsw-${pkgver}-r1
-  python setup.py build --enable=load_extension
-  cd $srcdir/apsw2
-  python2 setup.py build --enable=load_extension
-}
-
-package_python-apsw() {
-depends=('python' 'sqlite3>=3.7.5')
-pkgdesc="Python wrapper for SQLite"
-  cd $srcdir/apsw-${pkgver}-r1
-  python setup.py install --root=$pkgdir/ 
-
-  install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-apsw() {
-depends=('python2' 'sqlite3>=3.7.5')
-pkgdesc="Python2 wrapper for SQLite"
-  cd $srcdir/apsw2
-  python2 setup.py install --root=$pkgdir/  
-
-  install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-check() {
-  cd $srcdir/apsw2
-  export PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH"
-  python2 setup.py test
-
-  cd $srcdir/apsw-${pkgver}-r1
-  export PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH"
-  python setup.py test
-}

Copied: python-apsw/repos/community-x86_64/PKGBUILD (from rev 175081, python-apsw/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-05-12 18:39:31 UTC (rev 175082)
@@ -0,0 +1,52 @@
+# Maintainer: Brendan MacDonell <macdonellba at gmail dot com>
+# Former Maintainer: Linmiao Xu <linmiao.xu at gmail.com>
+# Contributor: Juan Miguel Cejuela <juanmi at jmcejuela.net>
+
+pkgbase=python-apsw
+pkgname=('python-apsw' 'python2-apsw')
+pkgver=3.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url="https://github.com/rogerbinns/apsw"
+license=('MIT')
+makedepends=('python' 'python2')
+source=("https://github.com/rogerbinns/apsw/archive/$pkgver-r1.tar.gz" "LICENSE")
+md5sums=('621b2857e05506f190b55fce66b65887'
+         '9be3fbee1bae6c66d658a157c67943c0')
+
+build() {
+  cp -rf apsw-${pkgver}-r1 apsw2
+
+  cd apsw-${pkgver}-r1
+  python setup.py build --enable=load_extension
+  cd $srcdir/apsw2
+  python2 setup.py build --enable=load_extension
+}
+
+package_python-apsw() {
+depends=('python' 'sqlite3>=3.7.5')
+pkgdesc="Python wrapper for SQLite"
+  cd $srcdir/apsw-${pkgver}-r1
+  python setup.py install --root=$pkgdir/ 
+
+  install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-apsw() {
+depends=('python2' 'sqlite3>=3.7.5')
+pkgdesc="Python2 wrapper for SQLite"
+  cd $srcdir/apsw2
+  python2 setup.py install --root=$pkgdir/  
+
+  install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+check() {
+  cd $srcdir/apsw2
+  export PYTHONPATH="$PWD/build/lib.linux-$CARCH-2.7:$PYTHONPATH"
+  python2 setup.py test
+
+  cd $srcdir/apsw-${pkgver}-r1
+  export PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.5:$PYTHONPATH"
+  python setup.py test
+}



More information about the arch-commits mailing list