summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Weidenbaum2015-11-30 19:33:44 -0800
committerAndy Weidenbaum2015-11-30 19:33:44 -0800
commitaac247465ce714ae7cd1ec897cbfb594d487f986 (patch)
treec3282576ec92366302886726709cf5b5f1ceb671
parentc1b4b514289724f6f90d46414ab1423c50e2335c (diff)
downloadaur-aac247465ce714ae7cd1ec897cbfb594d487f986.tar.gz
update pkgver to 20151130, depends+=python2-jsonrpclib, fix app.fil
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD9
2 files changed, 10 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 9cb90786a18d..14bd01b77323 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = electrum-git
pkgdesc = Lightweight Bitcoin wallet
- pkgver = 20151112
+ pkgver = 20151130
pkgrel = 1
url = https://github.com/spesmilo/electrum
install = electrum.install
@@ -15,6 +15,7 @@ pkgbase = electrum-git
depends = python2
depends = python2-dnspython
depends = python2-ecdsa
+ depends = python2-jsonrpclib
depends = python2-pbkdf2
depends = python2-protobuf
depends = python2-pyqt4
diff --git a/PKGBUILD b/PKGBUILD
index 3f32f880d998..a9feeac2b19c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@
#
pkgname=electrum-git
-pkgver=20151112
+pkgver=20151130
pkgrel=1
pkgdesc="Lightweight Bitcoin wallet"
arch=('any')
@@ -16,6 +16,7 @@ depends=('hicolor-icon-theme'
'python2'
'python2-dnspython'
'python2-ecdsa'
+ 'python2-jsonrpclib'
'python2-pbkdf2'
'python2-protobuf'
'python2-pyqt4'
@@ -59,6 +60,12 @@ prepare() {
msg2 'Fixing Python version...'
find . -type f -print0 | xargs -0 sed -i 's#/usr/bin/python#/usr/bin/python2#g'
find . -type f -print0 | xargs -0 sed -i 's#/usr/bin/env python#/usr/bin/env python2#g'
+
+ msg2 'Fixing app.fil...'
+ # plugins/labels.py → plugins/labels/labels.py
+ sed -i 's@plugins/labels.py@plugins/labels/labels.py@' app.fil
+ # plugins/virtualkeyboard.py → plugins/virtualkeyboard/qt.py
+ sed -i 's@plugins/virtualkeyboard.py@plugins/virtualkeyboard/qt.py@' app.fil
}
build() {