git » python-secretstorage.git » commit 7ac3b74

fix dependencies

author Felix Yan
2017-08-23 09:03:41 UTC
committer Felix Yan
2017-08-23 09:03:41 UTC
parent 4b6cc02ecaf6525594ee940b3fdcd3bafc52f68c

fix dependencies

PKGBUILD +5 -6

diff --git a/PKGBUILD b/PKGBUILD
index 996df8b..5ce1d30 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,14 +5,13 @@
 pkgbase=python-secretstorage
 pkgname=(python-secretstorage python2-secretstorage)
 pkgver=2.3.1
-pkgrel=2
+pkgrel=3
 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'
-             'python-cryptography' 'python2-cryptography')
-checkdepends=('gnome-keyring' 'xorg-server-xvfb' 'dbus-glib')
+makedepends=('python-dbus' 'python2-dbus' 'dbus-glib' 'python-cryptography' 'python2-cryptography')
+checkdepends=('gnome-keyring' 'xorg-server-xvfb')
 source=("https://pypi.io/packages/source/S/SecretStorage/SecretStorage-${pkgver}.tar.gz")
 md5sums=('3b9465831b069e2622973afb7deb7bc2')
 
@@ -29,7 +28,7 @@ check() {
 }
 
 package_python-secretstorage() {
-  depends=('python-dbus' 'python-crypto' 'dbus-glib' 'python-cryptography')
+  depends=('python-dbus' 'dbus-glib' 'python-cryptography')
 
   cd SecretStorage-$pkgver
   python setup.py install -O1 --root="$pkgdir"
@@ -37,7 +36,7 @@ package_python-secretstorage() {
 }
 
 package_python2-secretstorage() {
-  depends=('python2-dbus' 'python2-crypto' 'dbus-glib' 'python2-cryptography')
+  depends=('python2-dbus' 'dbus-glib' 'python2-cryptography')
 
   cd SecretStorage-$pkgver-py2
   python2 setup.py install -O1 --root="$pkgdir"