[arch-commits] Commit in python-keyring/repos (2 files)

Felix Yan fyan at archlinux.org
Thu Feb 5 03:36:36 UTC 2015


    Date: Thursday, February 5, 2015 @ 04:36:36
  Author: fyan
Revision: 127142

archrelease: copy trunk to community-testing-any

Added:
  python-keyring/repos/community-testing-any/
  python-keyring/repos/community-testing-any/PKGBUILD
    (from rev 127141, python-keyring/trunk/PKGBUILD)

----------+
 PKGBUILD |   70 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 70 insertions(+)

Copied: python-keyring/repos/community-testing-any/PKGBUILD (from rev 127141, python-keyring/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2015-02-05 03:36:36 UTC (rev 127142)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Johannes Dewender  arch at JonnyJD dot net
+# Contributor: Ivan Sichmann Freitas <ivansichfreitas at gmail.com>
+# Contributor: Brice Maron <brice at bmaron.net>
+# Contributor: Nuno Araujo <nuno.araujo at russo79.com>
+# Contributor: Steven Allen <steven {at} stebalien {dot} com>
+
+pkgbase=python-keyring
+pkgname=('python-keyring' 'python2-keyring')
+pkgver=5.0
+pkgrel=1
+pkgdesc="Store and access your passwords safely."
+arch=('any')
+url="http://pypi.python.org/pypi/keyring"
+license=('PSF' 'MIT')
+source=("http://pypi.python.org/packages/source/k/keyring/keyring-$pkgver.zip")
+makedepends=('python-setuptools' 'python2-setuptools')
+checkdepends=('python-pytest' 'python2-pytest' 'python-mock' 'python2-mock' 'python-crypto' 'python2-crypto'
+              'python-secretstorage' 'python2-secretstorage' 'python-gobject' 'python2-gobject' 'libgnome-keyring'
+              'kdebindings-python' 'kdebindings-python2' 'python2-gdata')
+md5sums=('3239a8d7290c933b93e6ef85c9e4116c')
+
+prepare() {
+  cp -a keyring-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir/keyring-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir/keyring-$pkgver"
+  py.test
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  py.test2
+}
+
+package_python-keyring() {
+  depends=('python-setuptools')
+  optdepends=('libgnome-keyring: Gnome integration'
+            'python-gobject: Gnome integration'
+            'kdebindings-python: Kde integration'
+            'python-crypto: CLI keyring'
+            'python-secretstorage: SecretService DBus API (GNOME/KDE)')
+
+  cd "$srcdir/keyring-$pkgver"
+  python setup.py install --root=$pkgdir --optimize=1
+}
+
+package_python2-keyring() {
+  depends=('python2-setuptools')
+  optdepends=('libgnome-keyring: Gnome integration'
+            'python2-gobject: Gnome integration'
+            'kdebindings-python2: Kde integration'
+            'python2-crypto: CLI keyring'
+            'python2-secretstorage: SecretService DBus API (GNOME/KDE)')
+
+  cd "$srcdir/keyring-$pkgver-py2"
+  python2 setup.py install --root=$pkgdir --optimize=1
+
+  mv "$pkgdir"/usr/bin/keyring{,2}
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list