| author | Felix Yan
<felixonmars@archlinux.org> 2016-08-18 15:31:43 UTC |
| committer | Felix Yan
<felixonmars@archlinux.org> 2016-08-18 15:31:43 UTC |
| parent | 19b771ec87a4b1ce070d2c559ee8380902906e89 |
| PKGBUILD | +6 | -5 |
diff --git a/PKGBUILD b/PKGBUILD index 1488c41..ac81712 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,16 +4,17 @@ pkgbase=python-secretstorage pkgname=(python-secretstorage python2-secretstorage) -pkgver=2.2.1 +pkgver=2.3.0 pkgrel=1 pkgdesc="Securely store passwords and other private data using the SecretService DBus API" arch=('any') url="https://pypi.python.org/pypi/SecretStorage" license=('BSD') -makedepends=('python-dbus' 'python2-dbus' 'python-crypto' 'python2-crypto' 'dbus-glib') +makedepends=('python-dbus' 'python2-dbus' 'python-crypto' 'python2-crypto' 'dbus-glib' + 'python-cryptography' 'python2-cryptography') checkdepends=('gnome-keyring' 'xorg-server-xvfb' 'dbus-glib') source=("https://pypi.io/packages/source/S/SecretStorage/SecretStorage-${pkgver}.tar.gz") -md5sums=('9a6f9e4c9962e6cd616624c331fce1ab') +md5sums=('c39ec3f9af77fa82a606e0cd62795962') prepare() { cp -a SecretStorage-$pkgver{,-py2} @@ -28,7 +29,7 @@ check() { } package_python-secretstorage() { - depends=('python-dbus' 'python-crypto' 'dbus-glib') + depends=('python-dbus' 'python-crypto' 'dbus-glib' 'python-cryptography') cd SecretStorage-$pkgver python setup.py install -O1 --root="$pkgdir" @@ -36,7 +37,7 @@ package_python-secretstorage() { } package_python2-secretstorage() { - depends=('python2-dbus' 'python2-crypto' 'dbus-glib') + depends=('python2-dbus' 'python2-crypto' 'dbus-glib' 'python2-cryptography') cd SecretStorage-$pkgver-py2 python2 setup.py install -O1 --root="$pkgdir"