summaryrefslogtreecommitdiff
path: root/pcr/monkeysign
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-01-24 21:14:10 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-01-25 08:33:24 +0100
commit0f00e3d131fab2e1b09d091a7f0e6e0b9ae29a3d (patch)
treeeda5f05804af28ffa6b789a5b8a6d2ec5ca321a8 /pcr/monkeysign
parent6e36fdc3e88e18ac501292d2d9e18ff92600465a (diff)
pcr/monkeysign: updated to 2.2.3
Diffstat (limited to 'pcr/monkeysign')
-rw-r--r--pcr/monkeysign/PKGBUILD25
1 files changed, 14 insertions, 11 deletions
diff --git a/pcr/monkeysign/PKGBUILD b/pcr/monkeysign/PKGBUILD
index 813bd9817..f3e09852e 100644
--- a/pcr/monkeysign/PKGBUILD
+++ b/pcr/monkeysign/PKGBUILD
@@ -1,26 +1,29 @@
+# Maintainer (AUR): parazyd <parazyd AT dyne DOT org>
# Contributor: fauno <fauno@kiwwwi.com.ar>
-# Contributor (Arch): max-k
+
+# parabola changes and rationale:
+# - updated package to 2.2.3 (AUR is 2.0.2)
+# - fixed broken source url
+# - added missing makedepends: python-setuptools-scm python2-sphinx python2-pysocks
+
pkgname=monkeysign
-pkgver=1.1
+pkgver=2.2.3
pkgrel=1
pkgdesc="OpenPGP Key Exchange for Humans"
arch=('any')
url="http://web.monkeysphere.info/monkeysign/"
license=('GPL3')
-depends=('python2-qrencode-pillow' 'gtk2' 'pygtk' 'zbar')
-makedepends=('python2-setuptools' 'python2-docutils')
-source=(http://cdn.debian.net/debian/pool/main/m/${pkgname}/${pkgname}_${pkgver}.tar.gz)
-# http://cdn.debian.net/debian/pool/main/m/monkeysign/monkeysign_1.1.dsc
-sha1sums=('b236849aa84487608e5cb747d1abb12325433279')
-sha256sums=('1229c63c9b649b35a156ab69c7e8ef47ff03817c94ce8138107832117ee5fa6d')
+depends=('python2-qrencode' 'gtk2' 'pygtk' 'zbar' 'python2-imaging')
+makedepends=('python2-setuptools-scm' 'git' 'python2-sphinx' 'python2-pysocks')
+source=("git+https://0xacab.org/monkeysphere/monkeysign.git/#commit=2.2.3")
+sha256sums=('SKIP')
build() {
- cd "${pkgname}-${pkgver}"
- sed -i 's/rst2s5/rst2s52/' monkeysign/documentation.py
+ cd "${pkgname}"
python2 setup.py build
}
package() {
- cd "${pkgname}-${pkgver}"
+ cd "${pkgname}"
python2 setup.py install --root="${pkgdir}" --prefix="/usr" --optimize=1
}