[arch-commits] Commit in zcash/trunk (PKGBUILD)

2020-12-21 Thread Nicola Squartini via arch-commits
Date: Tuesday, December 22, 2020 @ 05:48:25
  Author: tensor5
Revision: 781784

upgpkg: zcash 4.2.0-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |   22 +-
 1 file changed, 13 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-22 05:06:13 UTC (rev 781783)
+++ PKGBUILD2020-12-22 05:48:25 UTC (rev 781784)
@@ -1,17 +1,17 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=4.1.1
-_commit=6d856869e9c4cb9e6f3332db6fb04b956bb9fd3d
+pkgver=4.2.0
+_commit=b812c3ad9dbfd3ca6763794dbb129a2499687677
 _db_version=6.2.23
 
_db_sha256_hash=47612c8991aa9ac2f6be721267c8d3cdccf5ac83105df8e50809daea24e95dc7
-pkgrel=3
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
 license=('MIT')
-depends=('boost-libs' 'libevent' 'utf8cpp' 'zeromq')
-makedepends=('boost' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
+depends=('boost-libs' 'libevent' 'zeromq')
+makedepends=('boost' 'cmake' 'git' 'gmock' 'python' 'rust' 'utf8cpp' 'wget')
 checkdepends=('python-pyblake2' 'python-pyzmq' 'python-requests' 
'python-simplejson')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
 "https://download.oracle.com/berkeley-db/db-${_db_version}.tar.gz;
@@ -48,18 +48,21 @@
 
 CPPFLAGS="${CPPFLAGS} -I${srcdir}/db-root/include -I/usr/include/utf8cpp"
 LDFLAGS="${LDFLAGS} -L${srcdir}/db-root/lib"
+rust_target=$(RUSTC_BOOTSTRAP=1 rustc -Z unstable-options --print 
target-spec-json | python -c 'import 
json,sys;obj=json.load(sys.stdin);print(obj["llvm-target"])')
 
 ./autogen.sh
 ./configure --prefix=/usr \
 --enable-online-rust
-make RUST_TARGET=x86_64-unknown-linux-gnu
+make RUST_TARGET="${rust_target}"
 }
 
 check() {
 cd ${pkgname}
 
-./zcutil/fetch-params.sh --testnet
-export RUST_TARGET=x86_64-unknown-linux-gnu
+./zcutil/fetch-params.sh
+
+rust_target=$(RUSTC_BOOTSTRAP=1 rustc -Z unstable-options --print 
target-spec-json | python -c 'import 
json,sys;obj=json.load(sys.stdin);print(obj["llvm-target"])')
+export RUST_TARGET="${rust_target}"
 ./qa/zcash/full_test_suite.py || true
 }
 
@@ -66,7 +69,8 @@
 package() {
 cd ${pkgname}
 
-make DESTDIR="${pkgdir}" RUST_TARGET=x86_64-unknown-linux-gnu install
+rust_target=$(RUSTC_BOOTSTRAP=1 rustc -Z unstable-options --print 
target-spec-json | python -c 'import 
json,sys;obj=json.load(sys.stdin);print(obj["llvm-target"])')
+make DESTDIR="${pkgdir}" RUST_TARGET="${rust_target}" install
 
 for ext in '-cli' '-tx' 'd'; do
 install -Dm644 contrib/zcash${ext}.bash-completion \


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2020-12-12 Thread Felix Yan via arch-commits
Date: Saturday, December 12, 2020 @ 17:13:17
  Author: felixonmars
Revision: 773505

upgpkg: zcash 4.1.1-3: boost 1.75.0 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-12 17:13:14 UTC (rev 773504)
+++ PKGBUILD2020-12-12 17:13:17 UTC (rev 773505)
@@ -5,7 +5,7 @@
 _commit=6d856869e9c4cb9e6f3332db6fb04b956bb9fd3d
 _db_version=6.2.23
 
_db_sha256_hash=47612c8991aa9ac2f6be721267c8d3cdccf5ac83105df8e50809daea24e95dc7
-pkgrel=2
+pkgrel=3
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2020-12-06 Thread Felix Yan via arch-commits
Date: Sunday, December 6, 2020 @ 23:45:08
  Author: felixonmars
Revision: 771333

upgpkg: zcash 4.1.1-2: boost 1.74.0 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-12-06 23:41:01 UTC (rev 771332)
+++ PKGBUILD2020-12-06 23:45:08 UTC (rev 771333)
@@ -5,7 +5,7 @@
 _commit=6d856869e9c4cb9e6f3332db6fb04b956bb9fd3d
 _db_version=6.2.23
 
_db_sha256_hash=47612c8991aa9ac2f6be721267c8d3cdccf5ac83105df8e50809daea24e95dc7
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD use-system-rust.patch)

2020-11-22 Thread Nicola Squartini via arch-commits
Date: Sunday, November 22, 2020 @ 12:00:28
  Author: tensor5
Revision: 758916

upgpkg: zcash 4.1.1-1

Modified:
  zcash/trunk/PKGBUILD
  zcash/trunk/use-system-rust.patch

---+
 PKGBUILD  |   49 
 use-system-rust.patch |   22 ++---
 2 files changed, 40 insertions(+), 31 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-22 12:00:27 UTC (rev 758915)
+++ PKGBUILD2020-11-22 12:00:28 UTC (rev 758916)
@@ -1,22 +1,26 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=4.0.0
-_commit=5e7e9687fc87a2426bafef2837174eac52978b4c
-pkgrel=2
+pkgver=4.1.1
+_commit=6d856869e9c4cb9e6f3332db6fb04b956bb9fd3d
+_db_version=6.2.23
+_db_sha256_hash=47612c8991aa9ac2f6be721267c8d3cdccf5ac83105df8e50809daea24e95dc7
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
 license=('MIT')
-depends=('boost-libs' 'libevent' 'zeromq')
+depends=('boost-libs' 'libevent' 'utf8cpp' 'zeromq')
 makedepends=('boost' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
 checkdepends=('python-pyblake2' 'python-pyzmq' 'python-requests' 
'python-simplejson')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
+"https://download.oracle.com/berkeley-db/db-${_db_version}.tar.gz;
 'use-system-rust.patch'
 'zcashd.service')
-sha512sums=('SKIP'
-
'1267fc174df81a80a1b0f2e1a6bbaaa6fa95402c83bc6a8678b582ed6c7f7a02eeed0f61c9600496aa782f9fb9fec6dc9ac419d366d059306a5c4f97a5a166f0'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
+sha256sums=('SKIP'
+"${_db_sha256_hash}"
+'119e787cb22f2941ead286d2621fae7d6c4de6216e24615eb3c0f875e7a2547f'
+'7b0919ac447824199aff8c17b5a5799b46414818c6aed314506c5295d0ce9ccd')
 
 prepare() {
 cd ${pkgname}
@@ -28,22 +32,27 @@
 }
 
 build() {
-cd ${pkgname}
+cd "db-${_db_version}/build_unix"
 
-cd depends
-make install \
-native_packages='' \
-packages="bdb utfcpp"
-cd ..
+../dist/configure \
+--prefix=/ \
+--disable-shared \
+--enable-cxx \
+--disable-replication \
+--enable-option-checking \
+--with-pic
+make libdb_cxx-6.2.a libdb-6.2.a
+make DESTDIR="${srcdir}/db-root" install
 
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
+cd "${srcdir}/${pkgname}"
 
+CPPFLAGS="${CPPFLAGS} -I${srcdir}/db-root/include -I/usr/include/utf8cpp"
+LDFLAGS="${LDFLAGS} -L${srcdir}/db-root/lib"
+
 ./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr \
+./configure --prefix=/usr \
 --enable-online-rust
-make RUST_TARGET="${BUILD}"
+make RUST_TARGET=x86_64-unknown-linux-gnu
 }
 
 check() {
@@ -50,7 +59,7 @@
 cd ${pkgname}
 
 ./zcutil/fetch-params.sh --testnet
-export RUST_TARGET="$(./depends/config.guess)"
+export RUST_TARGET=x86_64-unknown-linux-gnu
 ./qa/zcash/full_test_suite.py || true
 }
 
@@ -57,7 +66,7 @@
 package() {
 cd ${pkgname}
 
-make DESTDIR="${pkgdir}" RUST_TARGET="$(./depends/config.guess)" install
+make DESTDIR="${pkgdir}" RUST_TARGET=x86_64-unknown-linux-gnu install
 
 for ext in '-cli' '-tx' 'd'; do
 install -Dm644 contrib/zcash${ext}.bash-completion \

Modified: use-system-rust.patch
===
--- use-system-rust.patch   2020-11-22 12:00:27 UTC (rev 758915)
+++ use-system-rust.patch   2020-11-22 12:00:28 UTC (rev 758916)
@@ -1,14 +1,14 @@
 --- a/qa/zcash/full_test_suite.py
 +++ b/qa/zcash/full_test_suite.py
-@@ -133,9 +133,9 @@
+@@ -149,9 +149,9 @@
+ return False
  
- if os.path.isdir(depends_dir):
- rust_env = os.environ.copy()
--rust_env['RUSTC'] = os.path.join(depends_dir, 'native', 'bin', 
'rustc')
-+rust_env['RUSTC'] = 'rustc'
- return subprocess.call([
--os.path.join(depends_dir, 'native', 'bin', 'cargo'),
-+'cargo',
- 'test',
- '--manifest-path',
- os.path.join(REPOROOT, 'Cargo.toml'),
+ rust_env = os.environ.copy()
+-rust_env['RUSTC'] = os.path.join(arch_dir, 'native', 'bin', 'rustc')
++rust_env['RUSTC'] = 'rustc'
+ return subprocess.call([
+-os.path.join(arch_dir, 'native', 'bin', 'cargo'),
++'cargo',
+ 'test',
+ '--manifest-path',
+ os.path.join(REPOROOT, 'Cargo.toml'),


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2020-09-16 Thread Frederik Schwan via arch-commits
Date: Wednesday, September 16, 2020 @ 22:52:05
  Author: freswa
Revision: 708414

upgpkg: zcash 4.0.0-2
zeromq rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-16 22:35:35 UTC (rev 708413)
+++ PKGBUILD2020-09-16 22:52:05 UTC (rev 708414)
@@ -3,7 +3,7 @@
 pkgname=zcash
 pkgver=4.0.0
 _commit=5e7e9687fc87a2426bafef2837174eac52978b4c
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD use-system-qpid-proton.patch)

2020-09-15 Thread Nicola Squartini via arch-commits
Date: Wednesday, September 16, 2020 @ 02:01:59
  Author: tensor5
Revision: 707225

upgpkg: zcash 4.0.0-1

Modified:
  zcash/trunk/PKGBUILD
Deleted:
  zcash/trunk/use-system-qpid-proton.patch

--+
 PKGBUILD |   12 
 use-system-qpid-proton.patch |   26 --
 2 files changed, 4 insertions(+), 34 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-09-15 23:59:24 UTC (rev 707224)
+++ PKGBUILD2020-09-16 02:01:59 UTC (rev 707225)
@@ -1,22 +1,20 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=3.1.0
-_commit=65f0a4736acd9adeb91f11899bcee3439068c771
+pkgver=4.0.0
+_commit=5e7e9687fc87a2426bafef2837174eac52978b4c
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
 license=('MIT')
-depends=('boost-libs' 'libevent' 'qpid-proton' 'zeromq')
+depends=('boost-libs' 'libevent' 'zeromq')
 makedepends=('boost' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
 checkdepends=('python-pyblake2' 'python-pyzmq' 'python-requests' 
'python-simplejson')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
-'use-system-qpid-proton.patch'
 'use-system-rust.patch'
 'zcashd.service')
 sha512sums=('SKIP'
-
'0d9c089e1b9eddc127936dbc12984804f3ad65c35845a336368cc9fce22ae784fb486a9a74b5cf34f42739779b42c18084f0558c9c1c74f18c6d8999596c7af6'
 
'1267fc174df81a80a1b0f2e1a6bbaaa6fa95402c83bc6a8678b582ed6c7f7a02eeed0f61c9600496aa782f9fb9fec6dc9ac419d366d059306a5c4f97a5a166f0'
 
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
 
@@ -26,7 +24,6 @@
 # Set gitattributes on src/clientversion.cpp
 git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
 
-patch -Np1 -i ../use-system-qpid-proton.patch
 patch -Np1 -i ../use-system-rust.patch
 }
 
@@ -45,8 +42,7 @@
 
 ./autogen.sh
 depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr \
---enable-online-rust \
---enable-proton
+--enable-online-rust
 make RUST_TARGET="${BUILD}"
 }
 

Deleted: use-system-qpid-proton.patch
===
--- use-system-qpid-proton.patch2020-09-15 23:59:24 UTC (rev 707224)
+++ use-system-qpid-proton.patch2020-09-16 02:01:59 UTC (rev 707225)
@@ -1,26 +0,0 @@
 a/configure.ac
-+++ b/configure.ac
-@@ -672,17 +672,13 @@
- [],
- [AC_MSG_WARN([Proton headers not found, disabling Proton support])
- use_proton=no])
-- AC_CHECK_LIB([qpid-proton-cpp-static], [main],
--[PROTON_LIBS="-lqpid-proton-cpp-static"],
--[AC_MSG_WARN([Proton qpid-proton-cpp-static library not found, disabling 
Proton support])
-+ AC_CHECK_LIB([qpid-proton-cpp], [main],
-+[PROTON_LIBS="-lqpid-proton-cpp"],
-+[AC_MSG_WARN([Proton qpid-proton-cpp library not found, disabling Proton 
support])
- use_proton=no])
-- AC_CHECK_LIB([qpid-proton-core-static], [main],
--[PROTON_LIBS+=" -lqpid-proton-core-static"],
--[AC_MSG_WARN([Proton qpid-proton-core-static library not found, disabling 
Proton support])
--use_proton=no])
-- AC_CHECK_LIB([qpid-proton-static], [main],
--[PROTON_LIBS+=" -lqpid-proton-static"],
--[AC_MSG_WARN([Proton qpid-proton-static library not found, disabling 
Proton support])
-+ AC_CHECK_LIB([qpid-proton-core], [main],
-+[PROTON_LIBS+=" -lqpid-proton-core"],
-+[AC_MSG_WARN([Proton qpid-proton-core library not found, disabling Proton 
support])
- use_proton=no])
- fi
- if test x$use_proton = xyes; then


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2020-07-29 Thread Nicola Squartini via arch-commits
Date: Wednesday, July 29, 2020 @ 09:16:04
  Author: tensor5
Revision: 665754

upgpkg: zcash 3.1.0-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-29 09:05:01 UTC (rev 665753)
+++ PKGBUILD2020-07-29 09:16:04 UTC (rev 665754)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=3.0.0
-_commit=de2e1160db45fe3f6c252b699cf56000c9104d76
+pkgver=3.1.0
+_commit=65f0a4736acd9adeb91f11899bcee3439068c771
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
@@ -12,12 +12,10 @@
 makedepends=('boost' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
 checkdepends=('python-pyblake2' 'python-pyzmq' 'python-requests' 
'python-simplejson')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
-'08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch'
 'use-system-qpid-proton.patch'
 'use-system-rust.patch'
 'zcashd.service')
 sha512sums=('SKIP'
-
'4fa208edd7b493105893658115478e49da93df4d56279e9488a58e2eb26bdc81881b156973d47089545a7f3819b75a317131156e0abd82ba11de0b3158af50fe'
 
'0d9c089e1b9eddc127936dbc12984804f3ad65c35845a336368cc9fce22ae784fb486a9a74b5cf34f42739779b42c18084f0558c9c1c74f18c6d8999596c7af6'
 
'1267fc174df81a80a1b0f2e1a6bbaaa6fa95402c83bc6a8678b582ed6c7f7a02eeed0f61c9600496aa782f9fb9fec6dc9ac419d366d059306a5c4f97a5a166f0'
 
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
@@ -28,7 +26,6 @@
 # Set gitattributes on src/clientversion.cpp
 git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
 
-patch -Np1 -i ../08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch
 patch -Np1 -i ../use-system-qpid-proton.patch
 patch -Np1 -i ../use-system-rust.patch
 }


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2020-05-09 Thread Nicola Squartini via arch-commits
Date: Saturday, May 9, 2020 @ 06:49:52
  Author: tensor5
Revision: 625878

upgpkg: zcash 2.1.2_3-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-09 06:48:15 UTC (rev 625877)
+++ PKGBUILD2020-05-09 06:49:52 UTC (rev 625878)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.1.2_1
-_commit=f7d2142eb0744d51be448130d0cee0c5bd1cb6f3
+pkgver=2.1.2_3
+_commit=23713c87cef46a2db2afd3e3d6c73e0868c26379
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2020-05-07 Thread Nicola Squartini via arch-commits
Date: Friday, May 8, 2020 @ 02:22:57
  Author: tensor5
Revision: 625511

upgpkg: zcash 2.1.2_1-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-08 01:17:56 UTC (rev 625510)
+++ PKGBUILD2020-05-08 02:22:57 UTC (rev 625511)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.1.2
-_commit=ff1e8ebe2fe86394739e3190a06e5ea7fd85ace0
+pkgver=2.1.2_1
+_commit=f7d2142eb0744d51be448130d0cee0c5bd1cb6f3
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2020-02-06 Thread Nicola Squartini via arch-commits
Date: Friday, February 7, 2020 @ 07:53:57
  Author: tensor5
Revision: 563707

upgpkg: zcash 2.1.1_1-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-07 07:35:35 UTC (rev 563706)
+++ PKGBUILD2020-02-07 07:53:57 UTC (rev 563707)
@@ -1,9 +1,9 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.1.1
-_commit=b8ca7131c75f74973e9bc6322c2cfd613a5d82ba
-pkgrel=2
+pkgver=2.1.1_1
+_commit=5cb77119e4327a652908e4fede9b3816d37487f3
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2020-01-27 Thread Evangelos Foutras via arch-commits
Date: Tuesday, January 28, 2020 @ 04:09:27
  Author: foutrelis
Revision: 557196

boost 1.72.0 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-28 04:09:26 UTC (rev 557195)
+++ PKGBUILD2020-01-28 04:09:27 UTC (rev 557196)
@@ -3,7 +3,7 @@
 pkgname=zcash
 pkgver=2.1.1
 _commit=b8ca7131c75f74973e9bc6322c2cfd613a5d82ba
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2019-11-10 Thread Nicola Squartini via arch-commits
Date: Monday, November 11, 2019 @ 02:45:36
  Author: tensor5
Revision: 526605

upgpkg: zcash 2.1.0_1-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-11 00:32:38 UTC (rev 526604)
+++ PKGBUILD2019-11-11 02:45:36 UTC (rev 526605)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.1.0
-_commit=ffdba7c19eca07657f722a7c0a1b1c848d661f50
+pkgver=2.1.0_1
+_commit=253fcaa997d3d5e30c3789c825a82e1ed3e7a3fe
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
@@ -28,9 +28,6 @@
 
 patch -Np1 -i ../use-system-qpid-proton.patch
 patch -Np1 -i ../use-system-rust.patch
-
-# Runs forever
-sed -e '/prioritisetransaction.py/d' -i qa/pull-tester/rpc-tests.sh
 }
 
 build() {
@@ -99,8 +96,7 @@
 export PATH="${srcdir}/python:${PATH}"
 
 ./zcutil/fetch-params.sh --testnet
-# ./qa/zcash/full_test_suite.py
-# ./qa/pull-tester/rpc-tests.sh
+./qa/zcash/full_test_suite.py
 }
 
 package() {


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2019-09-24 Thread Nicola Squartini via arch-commits
Date: Wednesday, September 25, 2019 @ 04:38:50
  Author: tensor5
Revision: 511719

boost 1.71.0 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-25 03:53:22 UTC (rev 511718)
+++ PKGBUILD2019-09-25 04:38:50 UTC (rev 511719)
@@ -3,13 +3,13 @@
 pkgname=zcash
 pkgver=2.0.7_3
 _commit=e3983afc03d256813662aa2cb07fbe1a05b9ab05
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
 license=('MIT')
 depends=('boost-libs' 'libevent' 'qpid-proton' 'zeromq')
-makedepends=('boost' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
+makedepends=('boost' 'cmake' 'git' 'gmock' 'python' 'rustup' 'wget')
 checkdepends=('python2-pyblake2' 'python2-pyzmq' 'python2-qpid-proton')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
 'libsnark-no-gtest.patch'
@@ -39,6 +39,9 @@
 build() {
 cd ${pkgname}
 
+# Temporary, due to llvm-libs 9 being in [staging]
+rustup update stable
+
 cd depends
 rust_crates=(
   crate_aes


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2019-09-24 Thread Nicola Squartini via arch-commits
Date: Wednesday, September 25, 2019 @ 03:52:04
  Author: tensor5
Revision: 511717

upgpkg: zcash 2.0.7_3-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-25 03:50:20 UTC (rev 511716)
+++ PKGBUILD2019-09-25 03:52:04 UTC (rev 511717)
@@ -1,9 +1,9 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.0.7_2
-_commit=87c45fcaebe859386c2d6aaf79ca8c78721ac533
-pkgrel=2
+pkgver=2.0.7_3
+_commit=e3983afc03d256813662aa2cb07fbe1a05b9ab05
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2019-09-13 Thread Evangelos Foutras via arch-commits
Date: Friday, September 13, 2019 @ 11:10:24
  Author: foutrelis
Revision: 510296

boost 1.71.0 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-13 11:10:15 UTC (rev 510295)
+++ PKGBUILD2019-09-13 11:10:24 UTC (rev 510296)
@@ -3,7 +3,7 @@
 pkgname=zcash
 pkgver=2.0.7_2
 _commit=87c45fcaebe859386c2d6aaf79ca8c78721ac533
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2019-09-08 Thread Nicola Squartini via arch-commits
Date: Sunday, September 8, 2019 @ 07:34:41
  Author: tensor5
Revision: 508841

upgpkg: zcash 2.0.7_2-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-08 07:33:56 UTC (rev 508840)
+++ PKGBUILD2019-09-08 07:34:41 UTC (rev 508841)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.0.7
-_commit=0512e9eb00f97172346e0fac854625d59771e4f7
+pkgver=2.0.7_2
+_commit=87c45fcaebe859386c2d6aaf79ca8c78721ac533
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')


[arch-commits] Commit in zcash/trunk (PKGBUILD libsnark-no-gtest.patch)

2019-08-28 Thread Nicola Squartini via arch-commits
Date: Wednesday, August 28, 2019 @ 18:09:39
  Author: tensor5
Revision: 504353

upgpkg: zcash 2.0.7-1

Modified:
  zcash/trunk/PKGBUILD
  zcash/trunk/libsnark-no-gtest.patch

-+
 PKGBUILD|8 
 libsnark-no-gtest.patch |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-28 17:50:19 UTC (rev 504352)
+++ PKGBUILD2019-08-28 18:09:39 UTC (rev 504353)
@@ -1,9 +1,9 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.0.6
-_commit=ef8a62d9b4fbc26984b6a03ee5233ea1f6396a33
-pkgrel=2
+pkgver=2.0.7
+_commit=0512e9eb00f97172346e0fac854625d59771e4f7
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
@@ -17,7 +17,7 @@
 'use-system-rust.patch'
 'zcashd.service')
 sha512sums=('SKIP'
-
'3c002c9d721853089f02cc397e2bc4130574a9c06b1118824338efedc476daa5bdbdcf55bf6beba69fb9c4bd065b871b3111259fa1e25828f333056d340282a1'
+
'b4792cc6f4c1e4e633d34257b68a4fbf882dfc692fedc14a06905705dd0778f22097b1e0645e00231ddc366245fe76ff63a43b53fb468496daf5100b15ad2fee'
 
'019870971a0cec093d0552585f4140f39dd65f90cb56b97e512bbaf0d79c0f1574295e722310d4e1762af12ff693802fc465765d4d1410d209e259326f307d6a'
 
'e2bdf46696e70a93ffcb45bf4e081c780cda8f11f6fa346b6807731f7c739f18c689c4e78a71f8bd7099874108b6b6584b8a96395bbca8d5441f7600a3fe0ebe'
 
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')

Modified: libsnark-no-gtest.patch
===
--- libsnark-no-gtest.patch 2019-08-28 17:50:19 UTC (rev 504352)
+++ libsnark-no-gtest.patch 2019-08-28 18:09:39 UTC (rev 504353)
@@ -1,6 +1,6 @@
 --- a/src/Makefile.am
 +++ b/src/Makefile.am
-@@ -55,7 +55,7 @@ $(LIBSECP256K1): $(wildcard secp256k1/src/*) $(wildcard 
secp256k1/include/*)
+@@ -61,7 +61,7 @@ $(LIBSECP256K1): $(wildcard secp256k1/src/*) $(wildcard 
secp256k1/include/*)
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F)
  
  LIBSNARK_CXXFLAGS = $(AM_CXXFLAGS) $(PIC_FLAGS) -DBINARY_OUTPUT 
-DNO_PT_COMPRESSION=1 -fstack-protector-all


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2019-08-05 Thread Evangelos Foutras via arch-commits
Date: Tuesday, August 6, 2019 @ 03:32:29
  Author: foutrelis
Revision: 497544

libevent 2.1.11 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-06 03:16:57 UTC (rev 497543)
+++ PKGBUILD2019-08-06 03:32:29 UTC (rev 497544)
@@ -3,7 +3,7 @@
 pkgname=zcash
 pkgver=2.0.6
 _commit=ef8a62d9b4fbc26984b6a03ee5233ea1f6396a33
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2019-07-02 Thread Nicola Squartini via arch-commits
Date: Tuesday, July 2, 2019 @ 13:31:39
  Author: tensor5
Revision: 487268

upgpkg: zcash 2.0.6-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-07-02 13:29:42 UTC (rev 487267)
+++ PKGBUILD2019-07-02 13:31:39 UTC (rev 487268)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.0.5_2
-_commit=9e833b39ee3e771d16f8124d9d5ee812a48d0cde
+pkgver=2.0.6
+_commit=ef8a62d9b4fbc26984b6a03ee5233ea1f6396a33
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2019-04-05 Thread Nicola Squartini via arch-commits
Date: Friday, April 5, 2019 @ 07:22:21
  Author: tensor5
Revision: 449719

upgpkg: zcash 2.0.4-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-05 03:03:40 UTC (rev 449718)
+++ PKGBUILD2019-04-05 07:22:21 UTC (rev 449719)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.0.3
-_commit=647c155dc7357f73fd85cb956109c6db676583b7
+pkgver=2.0.4
+_commit=be1d68ef763ce405d4d04d7f4d3dfbbdd9084687
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
@@ -100,7 +100,7 @@
 
 ./zcutil/fetch-params.sh --testnet
 # ./qa/zcash/full_test_suite.py
-./qa/pull-tester/rpc-tests.sh
+# ./qa/pull-tester/rpc-tests.sh
 }
 
 package() {


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2019-02-18 Thread Nicola Squartini via arch-commits
Date: Monday, February 18, 2019 @ 14:42:42
  Author: tensor5
Revision: 434244

upgpkg: zcash 2.0.3-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |   13 +
 1 file changed, 9 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-18 14:41:58 UTC (rev 434243)
+++ PKGBUILD2019-02-18 14:42:42 UTC (rev 434244)
@@ -1,15 +1,15 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.0.2
-_commit=8e2ca4d94e2f1bc0835d3d888a969fe2e83e7ece
-pkgrel=2
+pkgver=2.0.3
+_commit=647c155dc7357f73fd85cb956109c6db676583b7
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
 license=('MIT')
 depends=('boost-libs' 'libevent' 'qpid-proton' 'zeromq')
-makedepends=('boost' 'cargo' 'cmake' 'git' 'gmock' 'python' 'wget')
+makedepends=('boost' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
 checkdepends=('python2-pyblake2' 'python2-pyzmq' 'python2-qpid-proton')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
 'libsnark-no-gtest.patch'
@@ -93,6 +93,11 @@
 check() {
 cd ${pkgname}
 
+# Tests require python2
+mkdir "${srcdir}/python"
+ln -s /usr/bin/python2 "${srcdir}/python/python"
+export PATH="${srcdir}/python:${PATH}"
+
 ./zcutil/fetch-params.sh --testnet
 # ./qa/zcash/full_test_suite.py
 ./qa/pull-tester/rpc-tests.sh


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2019-01-15 Thread Felix Yan via arch-commits
Date: Tuesday, January 15, 2019 @ 11:40:28
  Author: felixonmars
Revision: 423312

boost 1.69.0 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-15 11:40:20 UTC (rev 423311)
+++ PKGBUILD2019-01-15 11:40:28 UTC (rev 423312)
@@ -3,7 +3,7 @@
 pkgname=zcash
 pkgver=2.0.2
 _commit=8e2ca4d94e2f1bc0835d3d888a969fe2e83e7ece
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD use-system-rust.patch)

2018-12-13 Thread Nicola Squartini via arch-commits
Date: Thursday, December 13, 2018 @ 15:29:35
  Author: tensor5
Revision: 416025

upgpkg: zcash 2.0.2-1

Modified:
  zcash/trunk/PKGBUILD
  zcash/trunk/use-system-rust.patch

---+
 PKGBUILD  |6 +++---
 use-system-rust.patch |6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-13 15:20:34 UTC (rev 416024)
+++ PKGBUILD2018-12-13 15:29:35 UTC (rev 416025)
@@ -1,8 +1,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=2.0.1
-_commit=e8f5e592b864b341391c9becf80bbe3e0e930a33
+pkgver=2.0.2
+_commit=8e2ca4d94e2f1bc0835d3d888a969fe2e83e7ece
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
@@ -17,7 +17,7 @@
 'zcashd.service')
 sha512sums=('SKIP'
 
'3c002c9d721853089f02cc397e2bc4130574a9c06b1118824338efedc476daa5bdbdcf55bf6beba69fb9c4bd065b871b3111259fa1e25828f333056d340282a1'
-
'fe07d546b88bd0d03dbbf9843d33c2be4e8eb4744f308ed6c73015757fe77d5fde0d30ee480a9175d218b6a21b403d4defae70c44aa9e8e7541cced1c477a857'
+
'dba24a8a99da58c856bf346631b675b5b2512514384c85a3ffbbacd4c51df808d127de926850eeb36993597f31a0052ac758d065c9cecbb05a87c079555e0a54'
 
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
 
 prepare() {

Modified: use-system-rust.patch
===
--- use-system-rust.patch   2018-12-13 15:20:34 UTC (rev 416024)
+++ use-system-rust.patch   2018-12-13 15:29:35 UTC (rev 416025)
@@ -2,10 +2,10 @@
 +++ b/depends/packages/librustzcash.mk
 @@ -5,7 +5,7 @@
  $(package)_download_file=$($(package)_git_commit).tar.gz
- 
$(package)_sha256_hash=e9a488a8bbecf7fb237a32dadd65133211ef61616d44cf55609e029837a41004
- $(package)_git_commit=f5e5cb24e1bd756a02fc4a3fd2b824238ccd15ad
+ 
$(package)_sha256_hash=9909ec59fa7a411c2071d6237b3363a0bc6e5e42358505cf64b7da0f58a7ff5a
+ $(package)_git_commit=06da3b9ac8f278e5d4ae13088cf0a4c03d2c13f5
 -$(package)_dependencies=rust $(rust_crates)
 +$(package)_dependencies=$(rust_crates)
- $(package)_patches=cargo.config
+ $(package)_patches=cargo.config 0001-Start-using-cargo-clippy-for-CI.patch 
remove-dev-dependencies.diff
  
  ifeq ($(host_os),mingw32)


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2018-09-18 Thread Evangelos Foutras via arch-commits
Date: Tuesday, September 18, 2018 @ 07:04:22
  Author: foutrelis
Revision: 382940

boost 1.68.0 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-18 06:59:01 UTC (rev 382939)
+++ PKGBUILD2018-09-18 07:04:22 UTC (rev 382940)
@@ -3,7 +3,7 @@
 pkgname=zcash
 pkgver=2.0.0
 _commit=d960b75de02097c806afb1a2d4982a5f85caf4e1
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD use-system-rust.patch)

2018-07-19 Thread Nicola Squartini via arch-commits
Date: Thursday, July 19, 2018 @ 09:48:59
  Author: tensor5
Revision: 362386

upgpkg: zcash 1.1.2-1

Modified:
  zcash/trunk/PKGBUILD
  zcash/trunk/use-system-rust.patch

---+
 PKGBUILD  |6 +++---
 use-system-rust.patch |4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-19 09:28:24 UTC (rev 362385)
+++ PKGBUILD2018-07-19 09:48:59 UTC (rev 362386)
@@ -2,8 +2,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=1.1.1
-_commit=047b0bf94a2018a5f842219d3d5cdc157f9a52da
+pkgver=1.1.2
+_commit=bbee5e25258da49775a1f0fe6c1ab0b1466c765e
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 'zcashd.service')
 sha512sums=('SKIP'
 
'04d397a29f6c1916ba494069fa79a65e7760d95d67174ae113b1ebc2b71233c7ded24f74bec591546ee49cff2c20e45c762aa50bf3fc3b47789f8aa34e42f930'
-
'720e3f43f5d9093981148e181f8621224a678dab2e8923e5d3fce05e0eda9eb0e2677f5b8c2c19062eff5b5c277d85962ce11fd966438f3238d4b6df75c55aa8'
+
'6da4341ea5077240c195418aac7d61b2e141250034441b49a52a7d9c45e692b317dc5fe4ea2d6e44b4e10fe674f07d78d644fd5f5eecfebb9d692b8020cdcaa3'
 
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
 
 prepare() {

Modified: use-system-rust.patch
===
--- use-system-rust.patch   2018-07-19 09:28:24 UTC (rev 362385)
+++ use-system-rust.patch   2018-07-19 09:48:59 UTC (rev 362386)
@@ -2,8 +2,8 @@
 +++ b/depends/packages/librustzcash.mk
 @@ -5,7 +5,7 @@
  $(package)_download_file=$($(package)_git_commit).tar.gz
- 
$(package)_sha256_hash=1fb331a92b63da41e95ef9db671982d243a13bcd6d25570760c9ca83b8996887
- $(package)_git_commit=36d7acf3f37570f499fc8fe79fda372e5eb873ca
+ 
$(package)_sha256_hash=5231145ea6abf61092c21b6770baf3af65994f83dff96b10118ba5dd53451f26
+ $(package)_git_commit=0af1ce8bf121e1ad367db907c39d214581e270a6
 -$(package)_dependencies=rust $(rust_crates)
 +$(package)_dependencies=$(rust_crates)
  $(package)_patches=cargo.config


[arch-commits] Commit in zcash/trunk (PKGBUILD use-system-rust.patch)

2018-06-01 Thread Nicola Squartini via arch-commits
Date: Friday, June 1, 2018 @ 23:33:13
  Author: tensor5
Revision: 337030

upgpkg: zcash 1.1.1-1

Modified:
  zcash/trunk/PKGBUILD
  zcash/trunk/use-system-rust.patch

---+
 PKGBUILD  |   39 +--
 use-system-rust.patch |4 ++--
 2 files changed, 35 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-01 21:28:29 UTC (rev 337029)
+++ PKGBUILD2018-06-01 23:33:13 UTC (rev 337030)
@@ -2,9 +2,9 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=1.1.0
-_commit=42e30252372b39f2b8da655ebeca03565dc02de4
-pkgrel=3
+pkgver=1.1.1
+_commit=047b0bf94a2018a5f842219d3d5cdc157f9a52da
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
@@ -18,7 +18,7 @@
 'zcashd.service')
 sha512sums=('SKIP'
 
'04d397a29f6c1916ba494069fa79a65e7760d95d67174ae113b1ebc2b71233c7ded24f74bec591546ee49cff2c20e45c762aa50bf3fc3b47789f8aa34e42f930'
-
'ce98eb983956704af4fc05d0c0959bb3538127432e64b1ea1482f345a15b9d4fc6b41f631705cd5aa1e09aeea608781106e7915ddbc57f314811d262ae361c50'
+
'720e3f43f5d9093981148e181f8621224a678dab2e8923e5d3fce05e0eda9eb0e2677f5b8c2c19062eff5b5c277d85962ce11fd966438f3238d4b6df75c55aa8'
 
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
 
 prepare() {
@@ -38,9 +38,36 @@
 cd ${pkgname}
 
 cd depends
+rust_crates=(
+  crate_arrayvec
+  crate_bellman
+  crate_bitflags
+  crate_bit_vec
+  crate_blake2_rfc
+  crate_byteorder
+  crate_constant_time_eq
+  crate_crossbeam
+  crate_digest
+  crate_fuchsia_zircon
+  crate_fuchsia_zircon_sys
+  crate_futures_cpupool
+  crate_futures
+  crate_generic_array
+  crate_lazy_static
+  crate_libc
+  crate_nodrop
+  crate_num_cpus
+  crate_pairing
+  crate_rand
+  crate_sapling_crypto
+  crate_typenum
+  crate_winapi_i686_pc_windows_gnu
+  crate_winapi
+  crate_winapi_x86_64_pc_windows_gnu
+)
 make install \
 native_packages='' \
-packages='bdb crate_libc librustzcash'
+packages="bdb ${rust_crates[*]} librustzcash"
 cd ..
 
 BUILD="$(./depends/config.guess)"
@@ -55,7 +82,7 @@
 check() {
 cd ${pkgname}
 
-./zcutil/fetch-params.sh
+./zcutil/fetch-params.sh --testnet
 # ./qa/zcash/full_test_suite.py
 ./qa/pull-tester/rpc-tests.sh
 }

Modified: use-system-rust.patch
===
--- use-system-rust.patch   2018-06-01 21:28:29 UTC (rev 337029)
+++ use-system-rust.patch   2018-06-01 23:33:13 UTC (rev 337030)
@@ -2,8 +2,8 @@
 +++ b/depends/packages/librustzcash.mk
 @@ -5,7 +5,7 @@
  $(package)_download_file=$($(package)_git_commit).tar.gz
- 
$(package)_sha256_hash=a5760a90d4a1045c8944204f29fa2a3cf2f800afee400f88bf89bbfe2cce1279
- $(package)_git_commit=91348647a86201a9482ad4ad68398152dc3d635e
+ 
$(package)_sha256_hash=1fb331a92b63da41e95ef9db671982d243a13bcd6d25570760c9ca83b8996887
+ $(package)_git_commit=36d7acf3f37570f499fc8fe79fda372e5eb873ca
 -$(package)_dependencies=rust $(rust_crates)
 +$(package)_dependencies=$(rust_crates)
  $(package)_patches=cargo.config


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2018-05-30 Thread Evangelos Foutras via arch-commits
Date: Thursday, May 31, 2018 @ 01:30:06
  Author: foutrelis
Revision: 333721

boost 1.67.0 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-31 01:29:41 UTC (rev 333720)
+++ PKGBUILD2018-05-31 01:30:06 UTC (rev 333721)
@@ -4,7 +4,7 @@
 pkgname=zcash
 pkgver=1.1.0
 _commit=42e30252372b39f2b8da655ebeca03565dc02de4
-pkgrel=2
+pkgrel=3
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2018-04-27 Thread Nicola Squartini via arch-commits
Date: Friday, April 27, 2018 @ 11:00:28
  Author: tensor5
Revision: 318284

upgpkg: zcash 1.1.0-2

Enable RPC tests.

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |   10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-04-27 09:48:14 UTC (rev 318283)
+++ PKGBUILD2018-04-27 11:00:28 UTC (rev 318284)
@@ -4,7 +4,7 @@
 pkgname=zcash
 pkgver=1.1.0
 _commit=42e30252372b39f2b8da655ebeca03565dc02de4
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
@@ -11,7 +11,7 @@
 license=('MIT')
 depends=('boost-libs' 'libevent' 'qpid-proton' 'zeromq')
 makedepends=('boost' 'cargo' 'cmake' 'git' 'gmock' 'python' 'wget')
-checkdepends=('python' 'python2' 'python2-pyzmq')
+checkdepends=('python2-pyblake2' 'python2-pyzmq' 'python2-qpid-proton')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
 'libsnark-no-gtest.patch'
 "use-system-rust.patch"
@@ -29,6 +29,9 @@
 
 patch -Np1 -i ../libsnark-no-gtest.patch
 patch -Np1 -i ../use-system-rust.patch
+
+# Runs forever
+sed -e '/prioritisetransaction.py/d' -i qa/pull-tester/rpc-tests.sh
 }
 
 build() {
@@ -52,8 +55,9 @@
 check() {
 cd ${pkgname}
 
-# ./zcutil/fetch-params.sh
+./zcutil/fetch-params.sh
 # ./qa/zcash/full_test_suite.py
+./qa/pull-tester/rpc-tests.sh
 }
 
 package() {


[arch-commits] Commit in zcash/trunk (PKGBUILD zcashd.service)

2018-02-07 Thread Nicola Squartini via arch-commits
Date: Wednesday, February 7, 2018 @ 10:44:00
  Author: tensor5
Revision: 289965

upgpkg: zcash 1.0.14-2

Add zcashd systemd service.

Added:
  zcash/trunk/zcashd.service
Modified:
  zcash/trunk/PKGBUILD

+
 PKGBUILD   |9 ++---
 zcashd.service |9 +
 2 files changed, 15 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-02-07 10:35:46 UTC (rev 289964)
+++ PKGBUILD2018-02-07 10:44:00 UTC (rev 289965)
@@ -4,7 +4,7 @@
 pkgname=zcash
 pkgver=1.0.14
 _commit=1ddecf644f6bab29545bb6333889fb059eb7970e
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
@@ -14,10 +14,12 @@
 checkdepends=('python' 'python2' 'python2-pyzmq')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
 "boost-no-mt-suffix.patch"
-"use-system-rust.patch")
+"use-system-rust.patch"
+'zcashd.service')
 sha512sums=('SKIP'
 
'fa9ac59839ba6c6aabefb24296ae29914acf7089487377e7948fd684e32b1b499e8e15daccd10baf968905ec69ad2da8b91ff2c8d4724412d8143428ed4de23d'
-
'3663373af04318aa72d877f399f0c9e956d289ac876583e70afa2933bf4171f7441a399e043b2d29b1df6d19d29390bb69d4053cad4b75bef903a8685fcd23bf')
+
'3663373af04318aa72d877f399f0c9e956d289ac876583e70afa2933bf4171f7441a399e043b2d29b1df6d19d29390bb69d4053cad4b75bef903a8685fcd23bf'
+
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
 
 prepare() {
 cd ${pkgname}
@@ -63,5 +65,6 @@
 "${pkgdir}"/usr/share/bash-completion/completions/zcash${ext}
 done
 
+install -Dm644 -t "${pkgdir}"/usr/lib/systemd/user ../zcashd.service
 install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
 }

Added: zcashd.service
===
--- zcashd.service  (rev 0)
+++ zcashd.service  2018-02-07 10:44:00 UTC (rev 289965)
@@ -0,0 +1,9 @@
+[Unit]
+Description=Zcash daemon
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/zcashd
+
+[Install]
+WantedBy=default.target


[arch-commits] Commit in zcash/trunk (PKGBUILD boost-no-mt-suffix.patch)

2018-01-17 Thread Nicola Squartini via arch-commits
Date: Wednesday, January 17, 2018 @ 16:14:11
  Author: tensor5
Revision: 283737

upgpkg: zcash 1.0.14-1

Modified:
  zcash/trunk/PKGBUILD
  zcash/trunk/boost-no-mt-suffix.patch

--+
 PKGBUILD |   14 +++---
 boost-no-mt-suffix.patch |   14 +++---
 2 files changed, 14 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-01-17 16:14:06 UTC (rev 283736)
+++ PKGBUILD2018-01-17 16:14:11 UTC (rev 283737)
@@ -2,21 +2,21 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=1.0.13
-_commit=3ee1d04a8dff26e81aaf17095a0e2472bc70cf36
-pkgrel=2
+pkgver=1.0.14
+_commit=1ddecf644f6bab29545bb6333889fb059eb7970e
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
 license=('MIT')
 depends=('boost-libs' 'libevent' 'zeromq')
-makedepends=('boost' 'cargo' 'cmake' 'git' 'python' 'wget')
+makedepends=('boost' 'cargo' 'cmake' 'git' 'gmock' 'python' 'wget')
 checkdepends=('python' 'python2' 'python2-pyzmq')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
 "boost-no-mt-suffix.patch"
 "use-system-rust.patch")
 sha512sums=('SKIP'
-
'52fe5fb312d310514d70961b8c5c9afd6559b6bd36d531eb08c08264f2071cd94f4f569633e604b4e6e127a40511319ced1ccbe796ae5fc70453352ab15239f7'
+
'fa9ac59839ba6c6aabefb24296ae29914acf7089487377e7948fd684e32b1b499e8e15daccd10baf968905ec69ad2da8b91ff2c8d4724412d8143428ed4de23d'
 
'3663373af04318aa72d877f399f0c9e956d289ac876583e70afa2933bf4171f7441a399e043b2d29b1df6d19d29390bb69d4053cad4b75bef903a8685fcd23bf')
 
 prepare() {
@@ -35,7 +35,7 @@
 cd depends
 make install \
 native_packages='' \
-packages='bdb googletest googlemock librustzcash proton'
+packages='bdb librustzcash proton'
 cd ..
 
 CPPFLAGS="${CPPFLAGS} -I$PWD/depends/${CARCH}-unknown-linux-gnu/include"
@@ -59,7 +59,7 @@
 make DESTDIR="${pkgdir}" install
 
 for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/bitcoin${ext}.bash-completion \
+install -Dm644 contrib/zcash${ext}.bash-completion \
 "${pkgdir}"/usr/share/bash-completion/completions/zcash${ext}
 done
 

Modified: boost-no-mt-suffix.patch
===
--- boost-no-mt-suffix.patch2018-01-17 16:14:06 UTC (rev 283736)
+++ boost-no-mt-suffix.patch2018-01-17 16:14:11 UTC (rev 283737)
@@ -1,11 +1,11 @@
 --- a/configure.ac
 +++ b/configure.ac
-@@ -770,7 +770,7 @@
-   LIBSNARK_DEPINST="$prefix"
- fi
+@@ -720,7 +720,7 @@
+ AX_CHECK_COMPILE_FLAG([-fno-strict-aliasing],[CXXFLAGS="$CXXFLAGS 
-fno-strict-aliasing"])
+ 
AX_CHECK_COMPILE_FLAG([-Wno-builtin-declaration-mismatch],[CXXFLAGS="$CXXFLAGS 
-Wno-builtin-declaration-mismatch"],,[[$CXXFLAG_WERROR]])
  
--LIBZCASH_LIBS="-lgmp -lgmpxx -lboost_system-mt -lcrypto -lsodium -fopenmp 
$RUST_LIBS"
-+LIBZCASH_LIBS="-lgmp -lgmpxx -lboost_system -lcrypto -lsodium -fopenmp 
$RUST_LIBS"
+-LIBZCASH_LIBS="-lgmp -lgmpxx -lboost_system-mt -lcrypto -lsodium $RUST_LIBS"
++LIBZCASH_LIBS="-lgmp -lgmpxx -lboost_system -lcrypto -lsodium $RUST_LIBS"
  
- CXXFLAGS_TEMP="$CXXFLAGS"
- LIBS_TEMP="$LIBS"
+ AC_MSG_CHECKING([whether to build bitcoind])
+ AM_CONDITIONAL([BUILD_BITCOIND], [test x$build_bitcoind = xyes])


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-12-28 Thread Felix Yan via arch-commits
Date: Thursday, December 28, 2017 @ 14:55:03
  Author: felixonmars
Revision: 276470

upgpkg: zcash 1.0.13-2

rebuild with boost 1.66.0

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-12-28 14:54:21 UTC (rev 276469)
+++ PKGBUILD2017-12-28 14:55:03 UTC (rev 276470)
@@ -4,7 +4,7 @@
 pkgname=zcash
 pkgver=1.0.13
 _commit=3ee1d04a8dff26e81aaf17095a0e2472bc70cf36
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
@@ -15,9 +15,9 @@
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
 "boost-no-mt-suffix.patch"
 "use-system-rust.patch")
-sha256sums=('SKIP'
-'de84cf8c0ee530958300bcd9d92c59f5adb5ccabcf7fbc79ace856b0461d394c'
-'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
+sha512sums=('SKIP'
+
'52fe5fb312d310514d70961b8c5c9afd6559b6bd36d531eb08c08264f2071cd94f4f569633e604b4e6e127a40511319ced1ccbe796ae5fc70453352ab15239f7'
+
'3663373af04318aa72d877f399f0c9e956d289ac876583e70afa2933bf4171f7441a399e043b2d29b1df6d19d29390bb69d4053cad4b75bef903a8685fcd23bf')
 
 prepare() {
 cd ${pkgname}


[arch-commits] Commit in zcash/trunk (PKGBUILD boost-no-mt-suffix.patch)

2017-11-22 Thread Nicola Squartini
Date: Wednesday, November 22, 2017 @ 14:32:00
  Author: tensor5
Revision: 268035

upgpkg: zcash 1.0.13-1

Modified:
  zcash/trunk/PKGBUILD
  zcash/trunk/boost-no-mt-suffix.patch

--+
 PKGBUILD |   39 +--
 boost-no-mt-suffix.patch |8 
 2 files changed, 17 insertions(+), 30 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-11-22 14:30:03 UTC (rev 268034)
+++ PKGBUILD2017-11-22 14:32:00 UTC (rev 268035)
@@ -2,9 +2,9 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=1.0.12
-_commit=b86b9feb6c3c1727cc3992da2f95c4a4f09a982b
-pkgrel=2
+pkgver=1.0.13
+_commit=3ee1d04a8dff26e81aaf17095a0e2472bc70cf36
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
@@ -14,11 +14,9 @@
 checkdepends=('python' 'python2' 'python2-pyzmq')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
 "boost-no-mt-suffix.patch"
-"use-system-libraries.patch"
 "use-system-rust.patch")
 sha256sums=('SKIP'
-'15389fe2741b8641d39b9fc0cd155e919d09e6d9317b79d0f4f1bcefb798766c'
-'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
+'de84cf8c0ee530958300bcd9d92c59f5adb5ccabcf7fbc79ace856b0461d394c'
 '065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
 
 prepare() {
@@ -25,27 +23,19 @@
 cd ${pkgname}
 
 # Set gitattributes on src/clientversion.cpp
-mkdir ../${pkgname}-${pkgver}
-git archive ${_commit} | tar -xC ../${pkgname}-${pkgver}
-cd ../${pkgname}-${pkgver}
+git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
 
 patch -Np1 -i ../boost-no-mt-suffix.patch
-patch -Np1 -i ../use-system-libraries.patch
 patch -Np1 -i ../use-system-rust.patch
 }
 
 build() {
-cd ${pkgname}-${pkgver}
+cd ${pkgname}
 
 cd depends
-libs=('bdb' 'googletest' 'googlemock' 'librustzcash' 'libsnark' 'proton')
-for lib in "${libs[@]}"; do
-make ${lib}
-done
-for lib in "${libs[@]}"; do
-tar -xzf built/${CARCH}-unknown-linux-gnu/${lib}/${lib}-*.tar.gz \
--C ${CARCH}-unknown-linux-gnu
-done
+make install \
+native_packages='' \
+packages='bdb googletest googlemock librustzcash proton'
 cd ..
 
 CPPFLAGS="${CPPFLAGS} -I$PWD/depends/${CARCH}-unknown-linux-gnu/include"
@@ -52,22 +42,19 @@
 LDFLAGS="${LDFLAGS} -L${PWD}/depends/${CARCH}-unknown-linux-gnu/lib 
-L${PWD}/depends/x86_64-unknown-linux-gnu/lib64"
 
 ./autogen.sh
-./configure --prefix=/usr
+depends_prefix="${PWD}/depends/x86_64-unknown-linux-gnu" ./configure 
--prefix=/usr
 make
 }
 
 check() {
-cd ${pkgname}-${pkgver}
+cd ${pkgname}
 
-# ./qa/zcash/full-test-suite.sh
-
-# Run the RPC tests
 # ./zcutil/fetch-params.sh
-# ./qa/pull-tester/rpc-tests.sh
+# ./qa/zcash/full_test_suite.py
 }
 
 package() {
-cd ${pkgname}-${pkgver}
+cd ${pkgname}
 
 make DESTDIR="${pkgdir}" install
 

Modified: boost-no-mt-suffix.patch
===
--- boost-no-mt-suffix.patch2017-11-22 14:30:03 UTC (rev 268034)
+++ boost-no-mt-suffix.patch2017-11-22 14:32:00 UTC (rev 268035)
@@ -1,11 +1,11 @@
 --- a/configure.ac
 +++ b/configure.ac
-@@ -778,7 +778,7 @@
-   RUST_LIBS="-lrustzcash"
+@@ -770,7 +770,7 @@
+   LIBSNARK_DEPINST="$prefix"
  fi
  
--LIBZCASH_LIBS="-lsnark -lgmp -lgmpxx -lboost_system-mt -lcrypto -lsodium 
-fopenmp $RUST_LIBS"
-+LIBZCASH_LIBS="-lsnark -lgmp -lgmpxx -lboost_system -lcrypto -lsodium 
-fopenmp $RUST_LIBS"
+-LIBZCASH_LIBS="-lgmp -lgmpxx -lboost_system-mt -lcrypto -lsodium -fopenmp 
$RUST_LIBS"
++LIBZCASH_LIBS="-lgmp -lgmpxx -lboost_system -lcrypto -lsodium -fopenmp 
$RUST_LIBS"
  
  CXXFLAGS_TEMP="$CXXFLAGS"
  LIBS_TEMP="$LIBS"


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-10-07 Thread Nicola Squartini
Date: Saturday, October 7, 2017 @ 16:33:57
  Author: tensor5
Revision: 262084

upgpkg: zcash 1.0.12-2

libsodium 1.0.15 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-10-07 16:10:19 UTC (rev 262083)
+++ PKGBUILD2017-10-07 16:33:57 UTC (rev 262084)
@@ -4,7 +4,7 @@
 pkgname=zcash
 pkgver=1.0.12
 _commit=b86b9feb6c3c1727cc3992da2f95c4a4f09a982b
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-09-29 Thread Nicola Squartini
Date: Friday, September 29, 2017 @ 09:17:05
  Author: tensor5
Revision: 260938

upgpkg: zcash 1.0.12-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-29 09:17:03 UTC (rev 260937)
+++ PKGBUILD2017-09-29 09:17:05 UTC (rev 260938)
@@ -2,9 +2,9 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=1.0.11
-_commit=02dd675a2554db6c5af188ec2d70fb60e748300c
-pkgrel=2
+pkgver=1.0.12
+_commit=b86b9feb6c3c1727cc3992da2f95c4a4f09a982b
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-09-14 Thread Nicola Squartini
Date: Thursday, September 14, 2017 @ 19:00:27
  Author: tensor5
Revision: 257544

upgpkg: zcash 1.0.11-2

boost 1.65 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-09-14 18:10:24 UTC (rev 257543)
+++ PKGBUILD2017-09-14 19:00:27 UTC (rev 257544)
@@ -4,7 +4,7 @@
 pkgname=zcash
 pkgver=1.0.11
 _commit=02dd675a2554db6c5af188ec2d70fb60e748300c
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD boost-no-mt-suffix.patch)

2017-08-19 Thread Nicola Squartini
Date: Saturday, August 19, 2017 @ 12:38:15
  Author: tensor5
Revision: 252558

upgpkg: zcash 1.0.11-1

Modified:
  zcash/trunk/PKGBUILD
  zcash/trunk/boost-no-mt-suffix.patch

--+
 PKGBUILD |   20 ++--
 boost-no-mt-suffix.patch |2 +-
 2 files changed, 11 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-19 10:50:30 UTC (rev 252557)
+++ PKGBUILD2017-08-19 12:38:15 UTC (rev 252558)
@@ -2,14 +2,14 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=1.0.10_1
-_commit=d6ec3954c68200e8774b46527a5680bf4cf4ccf0
-pkgrel=2
+pkgver=1.0.11
+_commit=02dd675a2554db6c5af188ec2d70fb60e748300c
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
 license=('MIT')
-depends=('boost-libs' 'libevent' 'miniupnpc' 'zeromq')
+depends=('boost-libs' 'libevent' 'zeromq')
 makedepends=('boost' 'cargo' 'cmake' 'git' 'python' 'wget')
 checkdepends=('python' 'python2' 'python2-pyzmq')
 source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
@@ -17,7 +17,7 @@
 "use-system-libraries.patch"
 "use-system-rust.patch")
 sha256sums=('SKIP'
-'a2ac906ac99757adaa7d5eb7e68d2a64c3d628e71c03264c31edcbb500990569'
+'15389fe2741b8641d39b9fc0cd155e919d09e6d9317b79d0f4f1bcefb798766c'
 'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
 '065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
 
@@ -43,13 +43,13 @@
 make ${lib}
 done
 for lib in "${libs[@]}"; do
-tar -xzf built/x86_64-unknown-linux-gnu/${lib}/${lib}-*.tar.gz \
--C x86_64-unknown-linux-gnu
+tar -xzf built/${CARCH}-unknown-linux-gnu/${lib}/${lib}-*.tar.gz \
+-C ${CARCH}-unknown-linux-gnu
 done
 cd ..
 
-CPPFLAGS="${CPPFLAGS} -I$PWD/depends/x86_64-unknown-linux-gnu/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/x86_64-unknown-linux-gnu/lib 
-L${PWD}/depends/x86_64-unknown-linux-gnu/lib64"
+CPPFLAGS="${CPPFLAGS} -I$PWD/depends/${CARCH}-unknown-linux-gnu/include"
+LDFLAGS="${LDFLAGS} -L${PWD}/depends/${CARCH}-unknown-linux-gnu/lib 
-L${PWD}/depends/x86_64-unknown-linux-gnu/lib64"
 
 ./autogen.sh
 ./configure --prefix=/usr
@@ -59,7 +59,7 @@
 check() {
 cd ${pkgname}-${pkgver}
 
-./qa/zcash/full-test-suite.sh
+# ./qa/zcash/full-test-suite.sh
 
 # Run the RPC tests
 # ./zcutil/fetch-params.sh

Modified: boost-no-mt-suffix.patch
===
--- boost-no-mt-suffix.patch2017-08-19 10:50:30 UTC (rev 252557)
+++ boost-no-mt-suffix.patch2017-08-19 12:38:15 UTC (rev 252558)
@@ -1,6 +1,6 @@
 --- a/configure.ac
 +++ b/configure.ac
-@@ -799,7 +799,7 @@
+@@ -778,7 +778,7 @@
RUST_LIBS="-lrustzcash"
  fi
  


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-07-22 Thread Nicola Squartini
Date: Saturday, July 22, 2017 @ 08:17:10
  Author: tensor5
Revision: 245962

upgpkg: zcash 1.0.10_1-2

Rebuild (fixes FS#54835).

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-22 06:02:18 UTC (rev 245961)
+++ PKGBUILD2017-07-22 08:17:10 UTC (rev 245962)
@@ -4,7 +4,7 @@
 pkgname=zcash
 pkgver=1.0.10_1
 _commit=d6ec3954c68200e8774b46527a5680bf4cf4ccf0
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-07-01 Thread Nicola Squartini
Date: Saturday, July 1, 2017 @ 13:29:24
  Author: tensor5
Revision: 242003

upgpkg: zcash 1.0.10_1-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-01 13:05:13 UTC (rev 242002)
+++ PKGBUILD2017-07-01 13:29:24 UTC (rev 242003)
@@ -2,9 +2,9 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=1.0.9
-_commit=a410f124b24f1ebd763015492b029af09b1872a9
-pkgrel=2
+pkgver=1.0.10_1
+_commit=d6ec3954c68200e8774b46527a5680bf4cf4ccf0
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-06-13 Thread Christian Hesse
Date: Tuesday, June 13, 2017 @ 22:08:44
  Author: eworm
Revision: 236710

upgpkg: zcash 1.0.9-2

libevent 2.1 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-13 22:07:29 UTC (rev 236709)
+++ PKGBUILD2017-06-13 22:08:44 UTC (rev 236710)
@@ -4,7 +4,7 @@
 pkgname=zcash
 pkgver=1.0.9
 _commit=a410f124b24f1ebd763015492b029af09b1872a9
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'


[arch-commits] Commit in zcash/trunk (PKGBUILD boost-no-mt-suffix.patch)

2017-06-03 Thread Nicola Squartini
Date: Saturday, June 3, 2017 @ 13:21:43
  Author: tensor5
Revision: 233740

upgpkg: zcash 1.0.9-1

Modified:
  zcash/trunk/PKGBUILD
  zcash/trunk/boost-no-mt-suffix.patch

--+
 PKGBUILD |   38 --
 boost-no-mt-suffix.patch |2 +-
 2 files changed, 21 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-03 13:20:45 UTC (rev 233739)
+++ PKGBUILD2017-06-03 13:21:43 UTC (rev 233740)
@@ -2,28 +2,33 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=1.0.8_1
-pkgrel=3
+pkgver=1.0.9
+_commit=a410f124b24f1ebd763015492b029af09b1872a9
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
 license=('MIT')
 depends=('boost-libs' 'libevent' 'miniupnpc' 'zeromq')
-makedepends=('boost' 'cargo' 'wget')
+makedepends=('boost' 'cargo' 'cmake' 'git' 'python' 'wget')
 checkdepends=('python' 'python2' 'python2-pyzmq')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zcash/zcash/archive/v1.0.8-1.tar.gz;
+source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
 "boost-no-mt-suffix.patch"
 "use-system-libraries.patch"
 "use-system-rust.patch")
-sha256sums=('d0210c93b7baddf55274ba7a3372dbe195ca5d2429e54d36289b97354bb83065'
-'c318e12a9d48a50cf254d2a58c24dd0cbbf1dc969e3afeecadd0756425ea5b07'
+sha256sums=('SKIP'
+'a2ac906ac99757adaa7d5eb7e68d2a64c3d628e71c03264c31edcbb500990569'
 'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
 '065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
 
 prepare() {
-# cd ${pkgname}-${pkgver}
-cd ${pkgname}-1.0.8-1
+cd ${pkgname}
 
+# Set gitattributes on src/clientversion.cpp
+mkdir ../${pkgname}-${pkgver}
+git archive ${_commit} | tar -xC ../${pkgname}-${pkgver}
+cd ../${pkgname}-${pkgver}
+
 patch -Np1 -i ../boost-no-mt-suffix.patch
 patch -Np1 -i ../use-system-libraries.patch
 patch -Np1 -i ../use-system-rust.patch
@@ -30,11 +35,10 @@
 }
 
 build() {
-# cd ${pkgname}-${pkgver}
-cd ${pkgname}-1.0.8-1
+cd ${pkgname}-${pkgver}
 
 cd depends
-libs=('bdb' 'googletest' 'googlemock' 'librustzcash' 'libsnark')
+libs=('bdb' 'googletest' 'googlemock' 'librustzcash' 'libsnark' 'proton')
 for lib in "${libs[@]}"; do
 make ${lib}
 done
@@ -45,7 +49,7 @@
 cd ..
 
 CPPFLAGS="${CPPFLAGS} -I$PWD/depends/x86_64-unknown-linux-gnu/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/x86_64-unknown-linux-gnu/lib"
+LDFLAGS="${LDFLAGS} -L${PWD}/depends/x86_64-unknown-linux-gnu/lib 
-L${PWD}/depends/x86_64-unknown-linux-gnu/lib64"
 
 ./autogen.sh
 ./configure --prefix=/usr
@@ -53,19 +57,17 @@
 }
 
 check() {
-# cd ${pkgname}-${pkgver}
-cd ${pkgname}-1.0.8-1
+cd ${pkgname}-${pkgver}
 
 ./qa/zcash/full-test-suite.sh
 
 # Run the RPC tests
-./zcutil/fetch-params.sh
-./qa/pull-tester/rpc-tests.sh
+# ./zcutil/fetch-params.sh
+# ./qa/pull-tester/rpc-tests.sh
 }
 
 package() {
-# cd ${pkgname}-${pkgver}
-cd ${pkgname}-1.0.8-1
+cd ${pkgname}-${pkgver}
 
 make DESTDIR="${pkgdir}" install
 

Modified: boost-no-mt-suffix.patch
===
--- boost-no-mt-suffix.patch2017-06-03 13:20:45 UTC (rev 233739)
+++ boost-no-mt-suffix.patch2017-06-03 13:21:43 UTC (rev 233740)
@@ -1,6 +1,6 @@
 --- a/configure.ac
 +++ b/configure.ac
-@@ -776,7 +776,7 @@
+@@ -799,7 +799,7 @@
RUST_LIBS="-lrustzcash"
  fi
  


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-05-23 Thread Antonio Rojas
Date: Tuesday, May 23, 2017 @ 06:30:07
  Author: arojas
Revision: 229476

boost 1.64 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-23 06:14:15 UTC (rev 229475)
+++ PKGBUILD2017-05-23 06:30:07 UTC (rev 229476)
@@ -3,7 +3,7 @@
 
 pkgname=zcash
 pkgver=1.0.8_1
-pkgrel=2
+pkgrel=3
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
@@ -15,7 +15,7 @@
 "boost-no-mt-suffix.patch"
 "use-system-libraries.patch"
 "use-system-rust.patch")
-sha256sums=('dce487b2f31e25952c7663c8ebc4379fd7ecfc5c88ebadc7137f6365360e8270'
+sha256sums=('d0210c93b7baddf55274ba7a3372dbe195ca5d2429e54d36289b97354bb83065'
 'c318e12a9d48a50cf254d2a58c24dd0cbbf1dc969e3afeecadd0756425ea5b07'
 'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
 '065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-04-26 Thread Nicola Squartini
Date: Wednesday, April 26, 2017 @ 17:01:59
  Author: tensor5
Revision: 225696

upgpkg: zcash 1.0.8_1-2

Use system OpenSSL.

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-26 16:25:00 UTC (rev 225695)
+++ PKGBUILD2017-04-26 17:01:59 UTC (rev 225696)
@@ -3,7 +3,7 @@
 
 pkgname=zcash
 pkgver=1.0.8_1
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
@@ -34,7 +34,7 @@
 cd ${pkgname}-1.0.8-1
 
 cd depends
-libs=('bdb' 'googletest' 'googlemock' 'librustzcash' 'libsnark' 'openssl')
+libs=('bdb' 'googletest' 'googlemock' 'librustzcash' 'libsnark')
 for lib in "${libs[@]}"; do
 make ${lib}
 done


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-04-14 Thread Nicola Squartini
Date: Friday, April 14, 2017 @ 12:10:35
  Author: tensor5
Revision: 223009

upgpkg: zcash 1.0.8_1-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |   18 +++---
 1 file changed, 11 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-14 11:39:00 UTC (rev 223008)
+++ PKGBUILD2017-04-14 12:10:35 UTC (rev 223009)
@@ -2,7 +2,7 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=1.0.8
+pkgver=1.0.8_1
 pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
@@ -11,17 +11,18 @@
 depends=('boost-libs' 'libevent' 'miniupnpc' 'zeromq')
 makedepends=('boost' 'cargo' 'wget')
 checkdepends=('python' 'python2' 'python2-pyzmq')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zcash/zcash/archive/v${pkgver}.tar.gz;
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zcash/zcash/archive/v1.0.8-1.tar.gz;
 "boost-no-mt-suffix.patch"
 "use-system-libraries.patch"
 "use-system-rust.patch")
-sha256sums=('a7d7cf893821c2f01d611e285774db807c98281d795e17e169fc850f72402cf0'
+sha256sums=('dce487b2f31e25952c7663c8ebc4379fd7ecfc5c88ebadc7137f6365360e8270'
 'c318e12a9d48a50cf254d2a58c24dd0cbbf1dc969e3afeecadd0756425ea5b07'
 'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
 '065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
 
 prepare() {
-cd ${pkgname}-${pkgver}
+# cd ${pkgname}-${pkgver}
+cd ${pkgname}-1.0.8-1
 
 patch -Np1 -i ../boost-no-mt-suffix.patch
 patch -Np1 -i ../use-system-libraries.patch
@@ -29,7 +30,8 @@
 }
 
 build() {
-cd ${pkgname}-${pkgver}
+# cd ${pkgname}-${pkgver}
+cd ${pkgname}-1.0.8-1
 
 cd depends
 libs=('bdb' 'googletest' 'googlemock' 'librustzcash' 'libsnark' 'openssl')
@@ -51,7 +53,8 @@
 }
 
 check() {
-cd ${pkgname}-${pkgver}
+# cd ${pkgname}-${pkgver}
+cd ${pkgname}-1.0.8-1
 
 ./qa/zcash/full-test-suite.sh
 
@@ -61,7 +64,8 @@
 }
 
 package() {
-cd ${pkgname}-${pkgver}
+# cd ${pkgname}-${pkgver}
+cd ${pkgname}-1.0.8-1
 
 make DESTDIR="${pkgdir}" install
 


[arch-commits] Commit in zcash/trunk (PKGBUILD boost-no-mt-suffix.patch)

2017-03-04 Thread Nicola Squartini
Date: Saturday, March 4, 2017 @ 13:46:55
  Author: tensor5
Revision: 214875

upgpkg: zcash 1.0.7-1

Modified:
  zcash/trunk/PKGBUILD
  zcash/trunk/boost-no-mt-suffix.patch

--+
 PKGBUILD |8 
 boost-no-mt-suffix.patch |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-04 10:50:29 UTC (rev 214874)
+++ PKGBUILD2017-03-04 13:46:55 UTC (rev 214875)
@@ -2,8 +2,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=1.0.6
-pkgrel=2
+pkgver=1.0.7
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
@@ -14,8 +14,8 @@
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zcash/zcash/archive/v${pkgver}.tar.gz;
 "boost-no-mt-suffix.patch"
 "use-system-libraries.patch")
-sha256sums=('7073068e9501910534be25634ce0bf73258cd0bcdf244d555dbfd9450d556d8a'
-'55ebbffa2daf4a59135dc7b58b9553da21456934e676d6c08d4930bd14817c06'
+sha256sums=('6254709ed0df4b635759158c46313206ab1d3ba6f96db0de94883223063c6ce4'
+'19c1a2f5f6623977c740322b0eb104766c72c5690fcf2bfefab956c81e80e583'
 'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f')
 
 prepare() {

Modified: boost-no-mt-suffix.patch
===
--- boost-no-mt-suffix.patch2017-03-04 10:50:29 UTC (rev 214874)
+++ boost-no-mt-suffix.patch2017-03-04 13:46:55 UTC (rev 214875)
@@ -1,6 +1,6 @@
 --- a/configure.ac
 +++ b/configure.ac
-@@ -775,7 +775,7 @@
+@@ -782,7 +782,7 @@
  AC_CHECK_HEADER([libsnark/gadgetlib1/gadget.hpp],,AC_MSG_ERROR(libsnark 
headers missing))
  AC_CHECK_LIB([snark],[main],LIBSNARK_LIBS=-lsnark, [AC_MSG_ERROR(libsnark 
missing)], [-lgmpxx])
  


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-02-12 Thread Nicola Squartini
Date: Sunday, February 12, 2017 @ 15:28:18
  Author: tensor5
Revision: 212047

upgpkg: zcash 1.0.6-2

Enable miniupnpc.

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-02-12 15:05:44 UTC (rev 212046)
+++ PKGBUILD2017-02-12 15:28:18 UTC (rev 212047)
@@ -3,12 +3,12 @@
 
 pkgname=zcash
 pkgver=1.0.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
 license=('MIT')
-depends=('boost-libs' 'zeromq')
+depends=('boost-libs' 'miniupnpc' 'zeromq')
 makedepends=('boost' 'wget')
 checkdepends=('python' 'python2' 'python2-pyzmq')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zcash/zcash/archive/v${pkgver}.tar.gz;


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-01-20 Thread Nicola Squartini
Date: Friday, January 20, 2017 @ 11:26:33
  Author: tensor5
Revision: 208109

upgpkg: zcash 1.0.5-1

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-20 10:36:55 UTC (rev 208108)
+++ PKGBUILD2017-01-20 11:26:33 UTC (rev 208109)
@@ -2,8 +2,8 @@
 # Maintainer: Nicola Squartini 
 
 pkgname=zcash
-pkgver=1.0.4
-pkgrel=2
+pkgver=1.0.5
+pkgrel=1
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'
@@ -14,7 +14,7 @@
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zcash/zcash/archive/v${pkgver}.tar.gz;
 "boost-no-mt-suffix.patch"
 "use-system-libraries.patch")
-sha256sums=('18df95b1958e71c9dc773b4d3953df2b6d7b5fbfcd2677be1190c9e03eff5d44'
+sha256sums=('253f2c10f8242d783c52334452949d06139b9f141d1678a8ede259475df872aa'
 '3476e5fc227ada40cfbd126fc2c4d85a0951163dc57d92c294b0716f6030b774'
 '4a386d9f407b589fd2df9dd9ba0ddf99def2f9bb88fac4ec602fa29af317fc0d')
 


[arch-commits] Commit in zcash/trunk (PKGBUILD)

2017-01-04 Thread Antonio Rojas
Date: Wednesday, January 4, 2017 @ 08:50:31
  Author: arojas
Revision: 204832

Boost 1.63 rebuild

Modified:
  zcash/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-04 06:18:44 UTC (rev 204831)
+++ PKGBUILD2017-01-04 08:50:31 UTC (rev 204832)
@@ -3,7 +3,7 @@
 
 pkgname=zcash
 pkgver=1.0.4
-pkgrel=1
+pkgrel=2
 pkgdesc='Permissionless financial system employing zero-knowledge security'
 arch=('x86_64')
 url='https://z.cash/'