git » python-secretstorage.git » commit bd4d0ca

fix missing dependency on dbus-glib

author Felix Yan
2016-01-07 07:36:23 UTC
committer Felix Yan
2016-01-07 07:36:23 UTC
parent 5d94a292c5844de76d08056edcf5d45b0b232a79

fix missing dependency on dbus-glib

PKGBUILD +4 -4

diff --git a/PKGBUILD b/PKGBUILD
index 9472e36..7f300c6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,12 +5,12 @@
 pkgbase=python-secretstorage
 pkgname=(python-secretstorage python2-secretstorage)
 pkgver=2.1.3
-pkgrel=1
+pkgrel=2
 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')
+makedepends=('python-dbus' 'python2-dbus' 'python-crypto' 'python2-crypto' 'dbus-glib')
 checkdepends=('gnome-keyring' 'xorg-server-xvfb' 'dbus-glib')
 source=("https://pypi.python.org/packages/source/S/SecretStorage/SecretStorage-${pkgver}.tar.gz")
 md5sums=('7820b3ac05614b56b3bfc850b7daeb17')
@@ -28,7 +28,7 @@ check() {
 }
 
 package_python-secretstorage() {
-  depends=('python-dbus' 'python-crypto')
+  depends=('python-dbus' 'python-crypto' 'dbus-glib')
 
   cd SecretStorage-$pkgver
   python setup.py install -O1 --root="$pkgdir"
@@ -36,7 +36,7 @@ package_python-secretstorage() {
 }
 
 package_python2-secretstorage() {
-  depends=('python2-dbus' 'python2-crypto')
+  depends=('python2-dbus' 'python2-crypto' 'dbus-glib')
 
   cd SecretStorage-$pkgver-py2
   python2 setup.py install -O1 --root="$pkgdir"