[arch-commits] Commit in python-apsw/repos/community-x86_64 (4 files)

Eli Schwartz eschwartz at archlinux.org
Wed Jun 12 00:48:27 UTC 2019


    Date: Wednesday, June 12, 2019 @ 00:48:26
  Author: eschwartz
Revision: 480570

archrelease: copy trunk to community-x86_64

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

----------+
 LICENSE  |   54 ++++++++++++++++----------------
 PKGBUILD |  101 ++++++++++++++++++++++++++++++-------------------------------
 2 files changed, 78 insertions(+), 77 deletions(-)

Deleted: LICENSE
===================================================================
--- LICENSE	2019-06-12 00:48:12 UTC (rev 480569)
+++ LICENSE	2019-06-12 00:48:26 UTC (rev 480570)
@@ -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 480569, python-apsw/trunk/LICENSE)
===================================================================
--- LICENSE	                        (rev 0)
+++ LICENSE	2019-06-12 00:48:26 UTC (rev 480570)
@@ -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: PKGBUILD
===================================================================
--- PKGBUILD	2019-06-12 00:48:12 UTC (rev 480569)
+++ PKGBUILD	2019-06-12 00:48:26 UTC (rev 480570)
@@ -1,50 +0,0 @@
-# Maintainer: Eli Schwartz <eschwartz at archlinux.org>
-# Contributor: Brendan MacDonell <macdonellba at gmail dot com>
-# Contributor: 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.27.2
-pkgrel=1
-arch=('x86_64')
-url="https://github.com/rogerbinns/apsw"
-license=('MIT')
-depends=('sqlite')
-makedepends=('python' 'python2')
-source=("apsw-$pkgver-r1.tar.gz::https://github.com/rogerbinns/apsw/archive/$pkgver-r1.tar.gz")
-sha512sums=('e764cdfb4519da33fd09f00602379554ea6df1f74a75895dc6c7fb04194511b0e9f0fcb8648f07204b1fb3fe439d942dfdba11af7af2364569ddc8f7bd789be0')
-
-build() {
-  cd apsw-${pkgver}-r1
-
-  python setup.py build --enable=load_extension
-  python2 setup.py build --enable=load_extension
-}
-
-check() {
-  cd "$srcdir"/apsw-${pkgver}-r1
-
-  # do glob expansion in variable assignment
-  pythonpaths=("$PWD/build/lib.linux-$CARCH"-3* "$PWD/build/lib.linux-$CARCH-"2*)
-  PYTHONPATH="${pythonpaths[0]}" python setup.py test
-  PYTHONPATH="${pythonpaths[1]}" python2 setup.py test
-}
-
-package_python-apsw() {
-depends+=('python')
-pkgdesc="Python wrapper for SQLite"
-  cd "$srcdir"/apsw-${pkgver}-r1
-  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-apsw() {
-depends+=('python2')
-pkgdesc="Python2 wrapper for SQLite"
-  cd "$srcdir"/apsw-${pkgver}-r1
-  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
-
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-apsw/repos/community-x86_64/PKGBUILD (from rev 480569, python-apsw/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-06-12 00:48:26 UTC (rev 480570)
@@ -0,0 +1,51 @@
+# Maintainer: Eli Schwartz <eschwartz at archlinux.org>
+# Contributor: Brendan MacDonell <macdonellba at gmail dot com>
+# Contributor: 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.28.0
+pkgrel=1
+arch=('x86_64')
+url="https://github.com/rogerbinns/apsw"
+license=('MIT')
+depends=('sqlite')
+makedepends=('python' 'python2')
+source=("apsw-$pkgver-r1.tar.gz::https://github.com/rogerbinns/apsw/archive/$pkgver-r1.tar.gz")
+sha512sums=('7c7fa277b78ef99823c854dd073ca8d572f682742858063730d81b5dd3b9edb3bbb60a96e6b74cb84781649728a141a0f192db91c2bfcb9e7e9b9e3f47de1df3')
+b2sums=('64d07b2a6ebe3278eed7369544807ce9b87ae5c299a6cc48eb3a4861437fb0ee014271e1a46b87f0097f2f54fe8c7bfcd3081ca4b570163804fb5955ab67dbc0')
+
+build() {
+  cd apsw-${pkgver}-r1
+
+  python setup.py build --enable=load_extension
+  python2 setup.py build --enable=load_extension
+}
+
+check() {
+  cd "$srcdir"/apsw-${pkgver}-r1
+
+  # do glob expansion in variable assignment
+  pythonpaths=("$PWD/build/lib.linux-$CARCH"-3* "$PWD/build/lib.linux-$CARCH-"2*)
+  PYTHONPATH="${pythonpaths[0]}" python setup.py test
+  PYTHONPATH="${pythonpaths[1]}" python2 setup.py test
+}
+
+package_python-apsw() {
+depends+=('python')
+pkgdesc="Python wrapper for SQLite"
+  cd "$srcdir"/apsw-${pkgver}-r1
+  python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-apsw() {
+depends+=('python2')
+pkgdesc="Python2 wrapper for SQLite"
+  cd "$srcdir"/apsw-${pkgver}-r1
+  python2 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



More information about the arch-commits mailing list