[arch-commits] Commit in python-peewee/repos (4 files)

Felix Yan felixonmars at archlinux.org
Thu Feb 23 06:04:20 UTC 2017


    Date: Thursday, February 23, 2017 @ 06:04:20
  Author: felixonmars
Revision: 213580

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

Added:
  python-peewee/repos/community-i686/PKGBUILD
    (from rev 213579, python-peewee/trunk/PKGBUILD)
  python-peewee/repos/community-x86_64/PKGBUILD
    (from rev 213579, python-peewee/trunk/PKGBUILD)
Deleted:
  python-peewee/repos/community-i686/PKGBUILD
  python-peewee/repos/community-x86_64/PKGBUILD

---------------------------+
 /PKGBUILD                 |  122 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   60 ---------------------
 community-x86_64/PKGBUILD |   60 ---------------------
 3 files changed, 122 insertions(+), 120 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-02-23 06:03:43 UTC (rev 213579)
+++ community-i686/PKGBUILD	2017-02-23 06:04:20 UTC (rev 213580)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Blackleg <blacklg at openaliasbox.org>
-# Contributor: Nidhogg
-# Contributor: juantascon
-
-pkgname=python-peewee
-pkgname=('python-peewee' 'python2-peewee')
-pkgver=2.8.5
-pkgrel=2
-pkgdesc="a little orm"
-url="https://pypi.python.org/pypi/peewee/"
-arch=('i686' 'x86_64')
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'cython' 'cython2' 'git')
-checkdepends=('python-apsw' 'python2-apsw' 'python-flask' 'python2-flask'
-              'python2-pysqlite') #'python-psycopg2' 'python2-psycopg2')
-source=("git+https://github.com/coleifer/peewee.git#tag=$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  cp -a peewee{,-py2}
-}
-
-build() {
-  cd "$srcdir"/peewee
-  python setup.py build
-
-  cd "$srcdir"/peewee-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/peewee
-  python runtests.py -a
-
-  cd "$srcdir"/peewee-py2
-  python2 runtests.py -a
-}
-
-package_python-peewee() {
-  depends=('python')
-  optdepends=('python-psycopg2: for PostgreSQL database support'
-              'mysql-python: for MySQL database support')
-
-  cd "$srcdir"/peewee
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-peewee() {
-  depends=('python2')
-  optdepends=('python2-psycopg2: for PostgreSQL database support')
-
-  cd "$srcdir"/peewee-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  mv "$pkgdir/usr/bin/"pwiz{,2}.py
-}

Copied: python-peewee/repos/community-i686/PKGBUILD (from rev 213579, python-peewee/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-02-23 06:04:20 UTC (rev 213580)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Blackleg <blacklg at openaliasbox.org>
+# Contributor: Nidhogg
+# Contributor: juantascon
+
+pkgname=python-peewee
+pkgname=('python-peewee' 'python2-peewee')
+pkgver=2.8.7
+pkgrel=1
+pkgdesc="a little orm"
+url="https://pypi.python.org/pypi/peewee/"
+arch=('i686' 'x86_64')
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'cython' 'cython2' 'git')
+checkdepends=('python-apsw' 'python2-apsw' 'python-flask' 'python2-flask'
+              'python2-pysqlite') #'python-psycopg2' 'python2-psycopg2')
+source=("git+https://github.com/coleifer/peewee.git#tag=$pkgver")
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a peewee{,-py2}
+}
+
+build() {
+  cd "$srcdir"/peewee
+  python setup.py build
+
+  cd "$srcdir"/peewee-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/peewee
+  python runtests.py -a
+
+  cd "$srcdir"/peewee-py2
+  python2 runtests.py -a
+}
+
+package_python-peewee() {
+  depends=('python')
+  optdepends=('python-psycopg2: for PostgreSQL database support'
+              'mysql-python: for MySQL database support')
+
+  cd "$srcdir"/peewee
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-peewee() {
+  depends=('python2')
+  optdepends=('python2-psycopg2: for PostgreSQL database support')
+
+  cd "$srcdir"/peewee-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/pwiz{,2}.py
+  mv "$pkgdir"/usr/bin/pskel{,2}
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-02-23 06:03:43 UTC (rev 213579)
+++ community-x86_64/PKGBUILD	2017-02-23 06:04:20 UTC (rev 213580)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-# Contributor: Blackleg <blacklg at openaliasbox.org>
-# Contributor: Nidhogg
-# Contributor: juantascon
-
-pkgname=python-peewee
-pkgname=('python-peewee' 'python2-peewee')
-pkgver=2.8.5
-pkgrel=2
-pkgdesc="a little orm"
-url="https://pypi.python.org/pypi/peewee/"
-arch=('i686' 'x86_64')
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'cython' 'cython2' 'git')
-checkdepends=('python-apsw' 'python2-apsw' 'python-flask' 'python2-flask'
-              'python2-pysqlite') #'python-psycopg2' 'python2-psycopg2')
-source=("git+https://github.com/coleifer/peewee.git#tag=$pkgver")
-sha256sums=('SKIP')
-
-prepare() {
-  cp -a peewee{,-py2}
-}
-
-build() {
-  cd "$srcdir"/peewee
-  python setup.py build
-
-  cd "$srcdir"/peewee-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/peewee
-  python runtests.py -a
-
-  cd "$srcdir"/peewee-py2
-  python2 runtests.py -a
-}
-
-package_python-peewee() {
-  depends=('python')
-  optdepends=('python-psycopg2: for PostgreSQL database support'
-              'mysql-python: for MySQL database support')
-
-  cd "$srcdir"/peewee
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-peewee() {
-  depends=('python2')
-  optdepends=('python2-psycopg2: for PostgreSQL database support')
-
-  cd "$srcdir"/peewee-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-
-  mv "$pkgdir/usr/bin/"pwiz{,2}.py
-}

Copied: python-peewee/repos/community-x86_64/PKGBUILD (from rev 213579, python-peewee/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-02-23 06:04:20 UTC (rev 213580)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Blackleg <blacklg at openaliasbox.org>
+# Contributor: Nidhogg
+# Contributor: juantascon
+
+pkgname=python-peewee
+pkgname=('python-peewee' 'python2-peewee')
+pkgver=2.8.7
+pkgrel=1
+pkgdesc="a little orm"
+url="https://pypi.python.org/pypi/peewee/"
+arch=('i686' 'x86_64')
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'cython' 'cython2' 'git')
+checkdepends=('python-apsw' 'python2-apsw' 'python-flask' 'python2-flask'
+              'python2-pysqlite') #'python-psycopg2' 'python2-psycopg2')
+source=("git+https://github.com/coleifer/peewee.git#tag=$pkgver")
+sha256sums=('SKIP')
+
+prepare() {
+  cp -a peewee{,-py2}
+}
+
+build() {
+  cd "$srcdir"/peewee
+  python setup.py build
+
+  cd "$srcdir"/peewee-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/peewee
+  python runtests.py -a
+
+  cd "$srcdir"/peewee-py2
+  python2 runtests.py -a
+}
+
+package_python-peewee() {
+  depends=('python')
+  optdepends=('python-psycopg2: for PostgreSQL database support'
+              'mysql-python: for MySQL database support')
+
+  cd "$srcdir"/peewee
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-peewee() {
+  depends=('python2')
+  optdepends=('python2-psycopg2: for PostgreSQL database support')
+
+  cd "$srcdir"/peewee-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+  mv "$pkgdir"/usr/bin/pwiz{,2}.py
+  mv "$pkgdir"/usr/bin/pskel{,2}
+}



More information about the arch-commits mailing list