[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

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

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 707225, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 707225, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 707225, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

+
 08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch |   21 ---
 PKGBUILD   |  142 +++
 use-system-qpid-proton.patch   |   26 
 use-system-rust.patch  |   28 ++--
 zcashd.service |   18 +-
 5 files changed, 92 insertions(+), 143 deletions(-)

Deleted: 08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch
===
--- 08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch  2020-09-16 02:01:59 UTC 
(rev 707225)
+++ 08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch  2020-09-16 02:02:49 UTC 
(rev 707226)
@@ -1,21 +0,0 @@
-From 08662fa09a14c68b1048ee4384b25dfd9ad0463f Mon Sep 17 00:00:00 2001
-From: Taylor Hornby 
-Date: Sun, 24 May 2020 16:49:13 -0600
-Subject: [PATCH] Add missing  header for std::invalid_argument
-

- src/crypto/equihash.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/crypto/equihash.h b/src/crypto/equihash.h
-index 556b87d090..7cd97ff600 100644
 a/src/crypto/equihash.h
-+++ b/src/crypto/equihash.h
-@@ -13,6 +13,7 @@
- 
- #include 
- #include 
-+#include 
- #include 
- #include 
- #include 

Deleted: PKGBUILD
===
--- PKGBUILD2020-09-16 02:01:59 UTC (rev 707225)
+++ PKGBUILD2020-09-16 02:02:49 UTC (rev 707226)
@@ -1,73 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=3.1.0
-_commit=65f0a4736acd9adeb91f11899bcee3439068c771
-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' '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')
-
-prepare() {
-cd ${pkgname}
-
-# 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
-}
-
-build() {
-cd ${pkgname}
-
-cd depends
-make install \
-native_packages='' \
-packages="bdb utfcpp"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr \
---enable-online-rust \
---enable-proton
-make RUST_TARGET="${BUILD}"
-}
-
-check() {
-cd ${pkgname}
-
-./zcutil/fetch-params.sh --testnet
-export RUST_TARGET="$(./depends/config.guess)"
-./qa/zcash/full_test_suite.py || true
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" RUST_TARGET="$(./depends/config.guess)" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${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
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 707225, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-09-16 02:02:49 UTC (rev 707226)
@@ -0,0 +1,69 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2020-05-09 Thread Nicola Squartini via arch-commits
Date: Saturday, May 9, 2020 @ 06:50:34
  Author: tensor5
Revision: 625879

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 625878, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
(from rev 625878, zcash/trunk/use-system-qpid-proton.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 625878, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 625878, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

--+
 PKGBUILD |  146 -
 use-system-qpid-proton.patch |   52 +++---
 use-system-rust.patch|   28 +++
 zcashd.service   |   18 ++---
 4 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-09 06:49:52 UTC (rev 625878)
+++ PKGBUILD2020-05-09 06:50:34 UTC (rev 625879)
@@ -1,73 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.1.2_1
-_commit=f7d2142eb0744d51be448130d0cee0c5bd1cb6f3
-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' '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')
-
-prepare() {
-cd ${pkgname}
-
-# 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
-}
-
-build() {
-cd ${pkgname}
-
-cd depends
-make install \
-native_packages='' \
-packages="bdb utfcpp"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr \
---enable-online-rust \
---enable-proton
-make RUST_TARGET="${BUILD}"
-}
-
-check() {
-cd ${pkgname}
-
-./zcutil/fetch-params.sh --testnet
-export RUST_TARGET="$(./depends/config.guess)"
-./qa/zcash/full_test_suite.py || true
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" RUST_TARGET="$(./depends/config.guess)" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${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
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 625878, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-09 06:50:34 UTC (rev 625879)
@@ -0,0 +1,73 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=2.1.2_3
+_commit=23713c87cef46a2db2afd3e3d6c73e0868c26379
+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' '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'
+

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2020-05-07 Thread Nicola Squartini via arch-commits
Date: Friday, May 8, 2020 @ 02:23:41
  Author: tensor5
Revision: 625512

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 625511, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
(from rev 625511, zcash/trunk/use-system-qpid-proton.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 625511, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 625511, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

--+
 PKGBUILD |  146 -
 use-system-qpid-proton.patch |   52 +++---
 use-system-rust.patch|   28 +++
 zcashd.service   |   18 ++---
 4 files changed, 122 insertions(+), 122 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-08 02:22:57 UTC (rev 625511)
+++ PKGBUILD2020-05-08 02:23:41 UTC (rev 625512)
@@ -1,73 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.1.2
-_commit=ff1e8ebe2fe86394739e3190a06e5ea7fd85ace0
-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' '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')
-
-prepare() {
-cd ${pkgname}
-
-# 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
-}
-
-build() {
-cd ${pkgname}
-
-cd depends
-make install \
-native_packages='' \
-packages="bdb utfcpp"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr \
---enable-online-rust \
---enable-proton
-make RUST_TARGET="${BUILD}"
-}
-
-check() {
-cd ${pkgname}
-
-./zcutil/fetch-params.sh --testnet
-export RUST_TARGET="$(./depends/config.guess)"
-./qa/zcash/full_test_suite.py || true
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" RUST_TARGET="$(./depends/config.guess)" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${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
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 625511, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-08 02:23:41 UTC (rev 625512)
@@ -0,0 +1,73 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=2.1.2_1
+_commit=f7d2142eb0744d51be448130d0cee0c5bd1cb6f3
+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' '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'
+

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2020-04-27 Thread Nicola Squartini via arch-commits
Date: Monday, April 27, 2020 @ 06:02:30
  Author: tensor5
Revision: 621789

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 621788, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
(from rev 621788, zcash/trunk/use-system-qpid-proton.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 621788, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 621788, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

--+
 PKGBUILD |  216 +
 use-system-qpid-proton.patch |   52 -
 use-system-rust.patch|   36 ++
 zcashd.service   |   18 +--
 4 files changed, 122 insertions(+), 200 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-04-27 06:01:49 UTC (rev 621788)
+++ PKGBUILD2020-04-27 06:02:30 UTC (rev 621789)
@@ -1,143 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.1.1_1
-_commit=5cb77119e4327a652908e4fede9b3816d37487f3
-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' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
-checkdepends=('python2-pyblake2' 'python2-pyzmq' 'python2-qpid-proton')
-source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
-'use-system-qpid-proton.patch'
-'use-system-rust.patch'
-'zcashd.service')
-sha512sums=('SKIP'
-
'2d877820a16c4cd89f5506e59575e23088df418f8cb8a0cf78d28365704b1ada5154bb13ab645a00cfda1329c25b4dcc8e3c0851302e788087c932adf98a9090'
-
'e905707b3fbbce732c77ff0c831b33a4778d62f4c0404f93c587d20a9c893b141c2acbde80a10ced98631668d62c9689b8faef3163aeb178b20391e06833a360'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# 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
-}
-
-build() {
-cd ${pkgname}
-
-cd depends
-rust_crates=(
-  crate_aes
-  crate_aesni
-  crate_aes_soft 
-  crate_arrayref
-  crate_arrayvec
-  crate_autocfg
-  crate_bech32
-  crate_bit_vec
-  crate_blake2b_simd
-  crate_blake2s_simd
-  crate_block_buffer
-  crate_block_cipher_trait
-  crate_block_padding
-  crate_byte_tools
-  crate_byteorder
-  crate_c2_chacha
-  crate_cfg_if
-  crate_constant_time_eq
-  crate_crossbeam_channel
-  crate_crossbeam_deque
-  crate_crossbeam_epoch
-  crate_crossbeam_queue
-  crate_crossbeam_utils
-  crate_crossbeam
-  crate_crypto_api_chachapoly
-  crate_crypto_api  
-  crate_digest
-  crate_directories
-  crate_fake_simd
-  crate_fpe
-  crate_futures_cpupool
-  crate_futures
-  crate_generic_array
-  crate_getrandom
-  crate_hex
-  crate_lazy_static
-  crate_libc
-  crate_log
-  crate_memoffset  
-  crate_nodrop
-  crate_num_bigint
-  crate_num_cpus
-  crate_num_integer
-  crate_num_traits
-  crate_opaque_debug
-  crate_ppv_lite86
-  crate_proc_macro2
-  crate_quote
-  crate_rand_chacha
-  crate_rand_core
-  crate_rand_hc
-  crate_rand_os
-  crate_rand_xorshift  
-  crate_rand
-  crate_rustc_version
-  crate_scopeguard
-  crate_semver_parser
-  crate_semver
-  crate_sha2
-  crate_syn
-  crate_typenum
-  crate_unicode_xid
-  crate_wasi
-  crate_winapi_i686_pc_windows_gnu
-  crate_winapi
-  crate_winapi_x86_64_pc_windows_gnu
-)
-make install \
-native_packages='' \
-packages="bdb ${rust_crates[*]} librustzcash"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-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
-}
-
-package() {
-cd ${pkgname}
-
-make 

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2020-02-06 Thread Nicola Squartini via arch-commits
Date: Friday, February 7, 2020 @ 07:54:39
  Author: tensor5
Revision: 563708

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 563707, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
(from rev 563707, zcash/trunk/use-system-qpid-proton.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 563707, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 563707, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

--+
 PKGBUILD |  286 -
 use-system-qpid-proton.patch |   52 +++
 use-system-rust.patch|   44 +++---
 zcashd.service   |   18 +-
 4 files changed, 200 insertions(+), 200 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-02-07 07:53:57 UTC (rev 563707)
+++ PKGBUILD2020-02-07 07:54:39 UTC (rev 563708)
@@ -1,143 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.1.1
-_commit=b8ca7131c75f74973e9bc6322c2cfd613a5d82ba
-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')
-checkdepends=('python2-pyblake2' 'python2-pyzmq' 'python2-qpid-proton')
-source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
-'use-system-qpid-proton.patch'
-'use-system-rust.patch'
-'zcashd.service')
-sha512sums=('SKIP'
-
'2d877820a16c4cd89f5506e59575e23088df418f8cb8a0cf78d28365704b1ada5154bb13ab645a00cfda1329c25b4dcc8e3c0851302e788087c932adf98a9090'
-
'e905707b3fbbce732c77ff0c831b33a4778d62f4c0404f93c587d20a9c893b141c2acbde80a10ced98631668d62c9689b8faef3163aeb178b20391e06833a360'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# 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
-}
-
-build() {
-cd ${pkgname}
-
-cd depends
-rust_crates=(
-  crate_aes
-  crate_aesni
-  crate_aes_soft 
-  crate_arrayref
-  crate_arrayvec
-  crate_autocfg
-  crate_bech32
-  crate_bit_vec
-  crate_blake2b_simd
-  crate_blake2s_simd
-  crate_block_buffer
-  crate_block_cipher_trait
-  crate_block_padding
-  crate_byte_tools
-  crate_byteorder
-  crate_c2_chacha
-  crate_cfg_if
-  crate_constant_time_eq
-  crate_crossbeam_channel
-  crate_crossbeam_deque
-  crate_crossbeam_epoch
-  crate_crossbeam_queue
-  crate_crossbeam_utils
-  crate_crossbeam
-  crate_crypto_api_chachapoly
-  crate_crypto_api  
-  crate_digest
-  crate_directories
-  crate_fake_simd
-  crate_fpe
-  crate_futures_cpupool
-  crate_futures
-  crate_generic_array
-  crate_getrandom
-  crate_hex
-  crate_lazy_static
-  crate_libc
-  crate_log
-  crate_memoffset  
-  crate_nodrop
-  crate_num_bigint
-  crate_num_cpus
-  crate_num_integer
-  crate_num_traits
-  crate_opaque_debug
-  crate_ppv_lite86
-  crate_proc_macro2
-  crate_quote
-  crate_rand_chacha
-  crate_rand_core
-  crate_rand_hc
-  crate_rand_os
-  crate_rand_xorshift  
-  crate_rand
-  crate_rustc_version
-  crate_scopeguard
-  crate_semver_parser
-  crate_semver
-  crate_sha2
-  crate_syn
-  crate_typenum
-  crate_unicode_xid
-  crate_wasi
-  crate_winapi_i686_pc_windows_gnu
-  crate_winapi
-  crate_winapi_x86_64_pc_windows_gnu
-)
-make install \
-native_packages='' \
-packages="bdb ${rust_crates[*]} librustzcash"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-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
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" 

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2020-01-25 Thread Nicola Squartini via arch-commits
Date: Saturday, January 25, 2020 @ 12:03:44
  Author: tensor5
Revision: 555424

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 555423, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
(from rev 555423, zcash/trunk/use-system-qpid-proton.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 555423, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 555423, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

--+
 PKGBUILD |  257 ++---
 use-system-qpid-proton.patch |   52 
 use-system-rust.patch|   44 +++
 zcashd.service   |   18 +-
 4 files changed, 200 insertions(+), 171 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-01-25 12:03:33 UTC (rev 555423)
+++ PKGBUILD2020-01-25 12:03:44 UTC (rev 555424)
@@ -1,114 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.1.0_1
-_commit=253fcaa997d3d5e30c3789c825a82e1ed3e7a3fe
-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' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
-checkdepends=('python2-pyblake2' 'python2-pyzmq' 'python2-qpid-proton')
-source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
-'use-system-qpid-proton.patch'
-'use-system-rust.patch'
-'zcashd.service')
-sha512sums=('SKIP'
-
'019870971a0cec093d0552585f4140f39dd65f90cb56b97e512bbaf0d79c0f1574295e722310d4e1762af12ff693802fc465765d4d1410d209e259326f307d6a'
-
'8878b5c805d6cdf159dbac0ef73fb47d0fbd2fc35332f1c15f05d6041c0eca7f16b12aeb1cc20615d0a325a68e8d22bb3961cadebbfa54b87783ad5de35b92fb'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# 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
-}
-
-build() {
-cd ${pkgname}
-
-cd depends
-rust_crates=(
-  crate_aes
-  crate_aesni
-  crate_aes_soft 
-  crate_arrayvec
-  crate_bellman
-  crate_bitflags
-  crate_bit_vec
-  crate_blake2_rfc
-  crate_block_cipher_trait
-  crate_byte_tools
-  crate_byteorder
-  crate_constant_time_eq
-  crate_crossbeam
-  crate_digest
-  crate_fpe
-  crate_fuchsia_zircon
-  crate_fuchsia_zircon_sys
-  crate_futures_cpupool
-  crate_futures
-  crate_generic_array
-  crate_lazy_static
-  crate_libc
-  crate_nodrop
-  crate_num_bigint
-  crate_num_cpus
-  crate_num_integer
-  crate_num_traits
-  crate_opaque_debug
-  crate_pairing
-  crate_rand
-  crate_sapling_crypto
-  crate_stream_cipher
-  crate_typenum
-  crate_winapi_i686_pc_windows_gnu
-  crate_winapi
-  crate_winapi_x86_64_pc_windows_gnu
-  crate_zip32
-)
-make install \
-native_packages='' \
-packages="bdb ${rust_crates[*]} librustzcash"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-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
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${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
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 555423, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-01-25 12:03:44 UTC (rev 555424)
@@ -0,0 +1,143 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=2.1.1

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2019-11-10 Thread Nicola Squartini via arch-commits
Date: Monday, November 11, 2019 @ 02:46:19
  Author: tensor5
Revision: 526606

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 526605, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
(from rev 526605, zcash/trunk/use-system-qpid-proton.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 526605, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 526605, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

--+
 PKGBUILD |  232 -
 use-system-qpid-proton.patch |   52 -
 use-system-rust.patch|   44 +++
 zcashd.service   |   18 +--
 4 files changed, 171 insertions(+), 175 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-11 02:45:36 UTC (rev 526605)
+++ PKGBUILD2019-11-11 02:46:19 UTC (rev 526606)
@@ -1,118 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.1.0
-_commit=ffdba7c19eca07657f722a7c0a1b1c848d661f50
-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' 'cmake' 'git' 'gmock' 'python' 'rust' 'wget')
-checkdepends=('python2-pyblake2' 'python2-pyzmq' 'python2-qpid-proton')
-source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
-'use-system-qpid-proton.patch'
-'use-system-rust.patch'
-'zcashd.service')
-sha512sums=('SKIP'
-
'019870971a0cec093d0552585f4140f39dd65f90cb56b97e512bbaf0d79c0f1574295e722310d4e1762af12ff693802fc465765d4d1410d209e259326f307d6a'
-
'8878b5c805d6cdf159dbac0ef73fb47d0fbd2fc35332f1c15f05d6041c0eca7f16b12aeb1cc20615d0a325a68e8d22bb3961cadebbfa54b87783ad5de35b92fb'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# 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
-
-# Runs forever
-sed -e '/prioritisetransaction.py/d' -i qa/pull-tester/rpc-tests.sh
-}
-
-build() {
-cd ${pkgname}
-
-cd depends
-rust_crates=(
-  crate_aes
-  crate_aesni
-  crate_aes_soft 
-  crate_arrayvec
-  crate_bellman
-  crate_bitflags
-  crate_bit_vec
-  crate_blake2_rfc
-  crate_block_cipher_trait
-  crate_byte_tools
-  crate_byteorder
-  crate_constant_time_eq
-  crate_crossbeam
-  crate_digest
-  crate_fpe
-  crate_fuchsia_zircon
-  crate_fuchsia_zircon_sys
-  crate_futures_cpupool
-  crate_futures
-  crate_generic_array
-  crate_lazy_static
-  crate_libc
-  crate_nodrop
-  crate_num_bigint
-  crate_num_cpus
-  crate_num_integer
-  crate_num_traits
-  crate_opaque_debug
-  crate_pairing
-  crate_rand
-  crate_sapling_crypto
-  crate_stream_cipher
-  crate_typenum
-  crate_winapi_i686_pc_windows_gnu
-  crate_winapi
-  crate_winapi_x86_64_pc_windows_gnu
-  crate_zip32
-)
-make install \
-native_packages='' \
-packages="bdb ${rust_crates[*]} librustzcash"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-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
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${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
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 526605, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ 

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2019-04-05 Thread Nicola Squartini via arch-commits
Date: Friday, April 5, 2019 @ 07:23:19
  Author: tensor5
Revision: 449720

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 449719, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
(from rev 449719, zcash/trunk/libsnark-no-gtest.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 449719, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 449719, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

-+
 PKGBUILD|  236 +++---
 libsnark-no-gtest.patch |   44 
 use-system-rust.patch   |   22 ++--
 zcashd.service  |   18 +--
 4 files changed, 160 insertions(+), 160 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-05 07:22:21 UTC (rev 449719)
+++ PKGBUILD2019-04-05 07:23:19 UTC (rev 449720)
@@ -1,118 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-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' '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'
-"use-system-rust.patch"
-'zcashd.service')
-sha512sums=('SKIP'
-
'3c002c9d721853089f02cc397e2bc4130574a9c06b1118824338efedc476daa5bdbdcf55bf6beba69fb9c4bd065b871b3111259fa1e25828f333056d340282a1'
-
'dba24a8a99da58c856bf346631b675b5b2512514384c85a3ffbbacd4c51df808d127de926850eeb36993597f31a0052ac758d065c9cecbb05a87c079555e0a54'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# Set gitattributes on src/clientversion.cpp
-git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
-
-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() {
-cd ${pkgname}
-
-cd depends
-rust_crates=(
-  crate_aes
-  crate_aesni
-  crate_aes_soft 
-  crate_arrayvec
-  crate_bellman
-  crate_bitflags
-  crate_bit_vec
-  crate_blake2_rfc
-  crate_block_cipher_trait
-  crate_byte_tools
-  crate_byteorder
-  crate_constant_time_eq
-  crate_crossbeam
-  crate_digest
-  crate_fpe
-  crate_fuchsia_zircon
-  crate_fuchsia_zircon_sys
-  crate_futures_cpupool
-  crate_futures
-  crate_generic_array
-  crate_lazy_static
-  crate_libc
-  crate_nodrop
-  crate_num_bigint
-  crate_num_cpus
-  crate_num_integer
-  crate_num_traits
-  crate_opaque_debug
-  crate_pairing
-  crate_rand
-  crate_sapling_crypto
-  crate_stream_cipher
-  crate_typenum
-  crate_winapi_i686_pc_windows_gnu
-  crate_winapi
-  crate_winapi_x86_64_pc_windows_gnu
-  crate_zip32
-)
-make install \
-native_packages='' \
-packages="bdb ${rust_crates[*]} librustzcash"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-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
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${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
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 449719, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-05 07:23:19 UTC (rev 449720)
@@ -0,0 

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

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

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 434244, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
(from rev 434244, zcash/trunk/libsnark-no-gtest.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 434244, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 434244, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

-+
 PKGBUILD|  231 +++---
 libsnark-no-gtest.patch |   44 
 use-system-rust.patch   |   22 ++--
 zcashd.service  |   18 +--
 4 files changed, 160 insertions(+), 155 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-18 14:42:42 UTC (rev 434244)
+++ PKGBUILD2019-02-18 14:43:08 UTC (rev 434245)
@@ -1,113 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.0.2
-_commit=8e2ca4d94e2f1bc0835d3d888a969fe2e83e7ece
-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' 'cargo' 'cmake' 'git' 'gmock' 'python' 'wget')
-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"
-'zcashd.service')
-sha512sums=('SKIP'
-
'3c002c9d721853089f02cc397e2bc4130574a9c06b1118824338efedc476daa5bdbdcf55bf6beba69fb9c4bd065b871b3111259fa1e25828f333056d340282a1'
-
'dba24a8a99da58c856bf346631b675b5b2512514384c85a3ffbbacd4c51df808d127de926850eeb36993597f31a0052ac758d065c9cecbb05a87c079555e0a54'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# Set gitattributes on src/clientversion.cpp
-git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
-
-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() {
-cd ${pkgname}
-
-cd depends
-rust_crates=(
-  crate_aes
-  crate_aesni
-  crate_aes_soft 
-  crate_arrayvec
-  crate_bellman
-  crate_bitflags
-  crate_bit_vec
-  crate_blake2_rfc
-  crate_block_cipher_trait
-  crate_byte_tools
-  crate_byteorder
-  crate_constant_time_eq
-  crate_crossbeam
-  crate_digest
-  crate_fpe
-  crate_fuchsia_zircon
-  crate_fuchsia_zircon_sys
-  crate_futures_cpupool
-  crate_futures
-  crate_generic_array
-  crate_lazy_static
-  crate_libc
-  crate_nodrop
-  crate_num_bigint
-  crate_num_cpus
-  crate_num_integer
-  crate_num_traits
-  crate_opaque_debug
-  crate_pairing
-  crate_rand
-  crate_sapling_crypto
-  crate_stream_cipher
-  crate_typenum
-  crate_winapi_i686_pc_windows_gnu
-  crate_winapi
-  crate_winapi_x86_64_pc_windows_gnu
-  crate_zip32
-)
-make install \
-native_packages='' \
-packages="bdb ${rust_crates[*]} librustzcash"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}
-
-./zcutil/fetch-params.sh --testnet
-# ./qa/zcash/full_test_suite.py
-./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${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
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 434244, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-18 14:43:08 UTC (rev 434245)
@@ -0,0 +1,118 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=2.0.3
+_commit=647c155dc7357f73fd85cb956109c6db676583b7
+pkgrel=1

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

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

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 416025, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
(from rev 416025, zcash/trunk/libsnark-no-gtest.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 416025, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 416025, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

-+
 PKGBUILD|  226 +++---
 libsnark-no-gtest.patch |   44 
 use-system-rust.patch   |   22 ++--
 zcashd.service  |   18 +--
 4 files changed, 155 insertions(+), 155 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-13 15:29:35 UTC (rev 416025)
+++ PKGBUILD2018-12-13 15:29:53 UTC (rev 416026)
@@ -1,113 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.0.1
-_commit=e8f5e592b864b341391c9becf80bbe3e0e930a33
-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')
-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"
-'zcashd.service')
-sha512sums=('SKIP'
-
'3c002c9d721853089f02cc397e2bc4130574a9c06b1118824338efedc476daa5bdbdcf55bf6beba69fb9c4bd065b871b3111259fa1e25828f333056d340282a1'
-
'fe07d546b88bd0d03dbbf9843d33c2be4e8eb4744f308ed6c73015757fe77d5fde0d30ee480a9175d218b6a21b403d4defae70c44aa9e8e7541cced1c477a857'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# Set gitattributes on src/clientversion.cpp
-git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
-
-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() {
-cd ${pkgname}
-
-cd depends
-rust_crates=(
-  crate_aes
-  crate_aesni
-  crate_aes_soft 
-  crate_arrayvec
-  crate_bellman
-  crate_bitflags
-  crate_bit_vec
-  crate_blake2_rfc
-  crate_block_cipher_trait
-  crate_byte_tools
-  crate_byteorder
-  crate_constant_time_eq
-  crate_crossbeam
-  crate_digest
-  crate_fpe
-  crate_fuchsia_zircon
-  crate_fuchsia_zircon_sys
-  crate_futures_cpupool
-  crate_futures
-  crate_generic_array
-  crate_lazy_static
-  crate_libc
-  crate_nodrop
-  crate_num_bigint
-  crate_num_cpus
-  crate_num_integer
-  crate_num_traits
-  crate_opaque_debug
-  crate_pairing
-  crate_rand
-  crate_sapling_crypto
-  crate_stream_cipher
-  crate_typenum
-  crate_winapi_i686_pc_windows_gnu
-  crate_winapi
-  crate_winapi_x86_64_pc_windows_gnu
-  crate_zip32
-)
-make install \
-native_packages='' \
-packages="bdb ${rust_crates[*]} librustzcash"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}
-
-./zcutil/fetch-params.sh --testnet
-# ./qa/zcash/full_test_suite.py
-./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${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
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 416025, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-13 15:29:53 UTC (rev 416026)
@@ -0,0 +1,113 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=2.0.2
+_commit=8e2ca4d94e2f1bc0835d3d888a969fe2e83e7ece
+pkgrel=1

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2018-10-16 Thread Nicola Squartini via arch-commits
Date: Tuesday, October 16, 2018 @ 13:30:25
  Author: tensor5
Revision: 394594

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 394593, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
(from rev 394593, zcash/trunk/libsnark-no-gtest.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 394593, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 394593, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

-+
 PKGBUILD|  214 --
 libsnark-no-gtest.patch |   44 -
 use-system-rust.patch   |   22 ++--
 zcashd.service  |   18 +--
 4 files changed, 155 insertions(+), 143 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-16 13:30:06 UTC (rev 394593)
+++ PKGBUILD2018-10-16 13:30:25 UTC (rev 394594)
@@ -1,101 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.0.0
-_commit=d960b75de02097c806afb1a2d4982a5f85caf4e1
-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' 'cargo' 'cmake' 'git' 'gmock' 'python' 'wget')
-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"
-'zcashd.service')
-sha512sums=('SKIP'
-
'6b223021677dbece52981938859f001e19ae974eed31ba4a5ebb22439c9377ddcc6d3b88cf254ac3686e999a7e8f691148a1d78a847679cd7940a490739bfcfe'
-
'bf0fbfd75e7caa03e6e76ac726f875ab0389b2740ae9c44d6117aa433e13cdf52c96cd12d9570903ef4758df9340bd1464dc54dc84d52f067cbeffc92bd54811'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# Set gitattributes on src/clientversion.cpp
-git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
-
-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() {
-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 ${rust_crates[*]} librustzcash"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}
-
-./zcutil/fetch-params.sh --testnet
-# ./qa/zcash/full_test_suite.py
-./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${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
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 394593, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-16 13:30:25 UTC (rev 394594)
@@ -0,0 +1,113 @@
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=2.0.1
+_commit=e8f5e592b864b341391c9becf80bbe3e0e930a33
+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')
+checkdepends=('python2-pyblake2' 

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2018-08-20 Thread Nicola Squartini via arch-commits
Date: Monday, August 20, 2018 @ 18:23:43
  Author: tensor5
Revision: 372883

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 372882, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
(from rev 372882, zcash/trunk/libsnark-no-gtest.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 372882, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 372882, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

-+
 PKGBUILD|  204 +++---
 libsnark-no-gtest.patch |   44 -
 use-system-rust.patch   |   22 ++--
 zcashd.service  |   18 ++--
 4 files changed, 144 insertions(+), 144 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-20 18:23:15 UTC (rev 372882)
+++ PKGBUILD2018-08-20 18:23:43 UTC (rev 372883)
@@ -1,102 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=1.1.2
-_commit=bbee5e25258da49775a1f0fe6c1ab0b1466c765e
-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')
-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"
-'zcashd.service')
-sha512sums=('SKIP'
-
'04d397a29f6c1916ba494069fa79a65e7760d95d67174ae113b1ebc2b71233c7ded24f74bec591546ee49cff2c20e45c762aa50bf3fc3b47789f8aa34e42f930'
-
'6da4341ea5077240c195418aac7d61b2e141250034441b49a52a7d9c45e692b317dc5fe4ea2d6e44b4e10fe674f07d78d644fd5f5eecfebb9d692b8020cdcaa3'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# Set gitattributes on src/clientversion.cpp
-git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
-
-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() {
-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 ${rust_crates[*]} librustzcash"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}
-
-./zcutil/fetch-params.sh --testnet
-# ./qa/zcash/full_test_suite.py
-./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${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
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 372882, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-20 18:23:43 UTC (rev 372883)
@@ -0,0 +1,102 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=2.0.0
+_commit=d960b75de02097c806afb1a2d4982a5f85caf4e1
+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')

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2018-07-19 Thread Nicola Squartini via arch-commits
Date: Thursday, July 19, 2018 @ 09:49:22
  Author: tensor5
Revision: 362387

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 362386, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
(from rev 362386, zcash/trunk/libsnark-no-gtest.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 362386, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 362386, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

-+
 PKGBUILD|  204 +++---
 libsnark-no-gtest.patch |   44 -
 use-system-rust.patch   |   22 ++--
 zcashd.service  |   18 ++--
 4 files changed, 144 insertions(+), 144 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-19 09:48:59 UTC (rev 362386)
+++ PKGBUILD2018-07-19 09:49:22 UTC (rev 362387)
@@ -1,102 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=1.1.1
-_commit=047b0bf94a2018a5f842219d3d5cdc157f9a52da
-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')
-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"
-'zcashd.service')
-sha512sums=('SKIP'
-
'04d397a29f6c1916ba494069fa79a65e7760d95d67174ae113b1ebc2b71233c7ded24f74bec591546ee49cff2c20e45c762aa50bf3fc3b47789f8aa34e42f930'
-
'720e3f43f5d9093981148e181f8621224a678dab2e8923e5d3fce05e0eda9eb0e2677f5b8c2c19062eff5b5c277d85962ce11fd966438f3238d4b6df75c55aa8'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# Set gitattributes on src/clientversion.cpp
-git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
-
-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() {
-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 ${rust_crates[*]} librustzcash"
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}
-
-./zcutil/fetch-params.sh --testnet
-# ./qa/zcash/full_test_suite.py
-./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${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
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 362386, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-19 09:49:22 UTC (rev 362387)
@@ -0,0 +1,102 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=1.1.2
+_commit=bbee5e25258da49775a1f0fe6c1ab0b1466c765e
+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')

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

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

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 318284, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
(from rev 318284, zcash/trunk/libsnark-no-gtest.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 318284, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 318284, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

-+
 PKGBUILD|  146 +++---
 libsnark-no-gtest.patch |   44 ++---
 use-system-rust.patch   |   22 +++---
 zcashd.service  |   18 ++---
 4 files changed, 117 insertions(+), 113 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-27 11:00:28 UTC (rev 318284)
+++ PKGBUILD2018-04-27 11:00:49 UTC (rev 318285)
@@ -1,71 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=1.1.0
-_commit=42e30252372b39f2b8da655ebeca03565dc02de4
-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')
-checkdepends=('python' 'python2' 'python2-pyzmq')
-source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
-'libsnark-no-gtest.patch'
-"use-system-rust.patch"
-'zcashd.service')
-sha512sums=('SKIP'
-
'04d397a29f6c1916ba494069fa79a65e7760d95d67174ae113b1ebc2b71233c7ded24f74bec591546ee49cff2c20e45c762aa50bf3fc3b47789f8aa34e42f930'
-
'ce98eb983956704af4fc05d0c0959bb3538127432e64b1ea1482f345a15b9d4fc6b41f631705cd5aa1e09aeea608781106e7915ddbc57f314811d262ae361c50'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# Set gitattributes on src/clientversion.cpp
-git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
-
-patch -Np1 -i ../libsnark-no-gtest.patch
-patch -Np1 -i ../use-system-rust.patch
-}
-
-build() {
-cd ${pkgname}
-
-cd depends
-make install \
-native_packages='' \
-packages='bdb crate_libc librustzcash'
-cd ..
-
-BUILD="$(./depends/config.guess)"
-CPPFLAGS="${CPPFLAGS} -I${PWD}/depends/${BUILD}/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/${BUILD}/lib"
-
-./autogen.sh
-depends_prefix="${PWD}/depends/${BUILD}" ./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}
-
-# ./zcutil/fetch-params.sh
-# ./qa/zcash/full_test_suite.py
-}
-
-package() {
-cd ${pkgname}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/zcash${ext}.bash-completion \
-"${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
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 318284, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-27 11:00:49 UTC (rev 318285)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=1.1.0
+_commit=42e30252372b39f2b8da655ebeca03565dc02de4
+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' 'cargo' 'cmake' 'git' 'gmock' 'python' 'wget')
+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"
+'zcashd.service')
+sha512sums=('SKIP'
+
'04d397a29f6c1916ba494069fa79a65e7760d95d67174ae113b1ebc2b71233c7ded24f74bec591546ee49cff2c20e45c762aa50bf3fc3b47789f8aa34e42f930'
+
'ce98eb983956704af4fc05d0c0959bb3538127432e64b1ea1482f345a15b9d4fc6b41f631705cd5aa1e09aeea608781106e7915ddbc57f314811d262ae361c50'
+
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
+
+prepare() {
+cd ${pkgname}
+
+# Set gitattributes on src/clientversion.cpp
+git 

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

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

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 260938, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
(from rev 260938, zcash/trunk/boost-no-mt-suffix.patch)
  zcash/repos/community-x86_64/use-system-libraries.patch
(from rev 260938, zcash/trunk/use-system-libraries.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 260938, zcash/trunk/use-system-rust.patch)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
  zcash/repos/community-x86_64/use-system-libraries.patch
  zcash/repos/community-x86_64/use-system-rust.patch

+
 PKGBUILD   |  160 +--
 boost-no-mt-suffix.patch   |   22 ++---
 use-system-libraries.patch |   22 ++---
 use-system-rust.patch  |   20 ++---
 4 files changed, 112 insertions(+), 112 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-09-29 09:17:05 UTC (rev 260938)
+++ PKGBUILD2017-09-29 09:17:34 UTC (rev 260939)
@@ -1,80 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=1.0.11
-_commit=02dd675a2554db6c5af188ec2d70fb60e748300c
-pkgrel=2
-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')
-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'
-'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
-
-prepare() {
-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
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-
-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
-cd ..
-
-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
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-
-# ./qa/zcash/full-test-suite.sh
-
-# Run the RPC tests
-# ./zcutil/fetch-params.sh
-# ./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/bitcoin${ext}.bash-completion \
-"${pkgdir}"/usr/share/bash-completion/completions/zcash${ext}
-done
-
-install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 260938, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-09-29 09:17:34 UTC (rev 260939)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=1.0.12
+_commit=b86b9feb6c3c1727cc3992da2f95c4a4f09a982b
+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')
+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'
+'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
+
+prepare() {
+cd ${pkgname}
+
+# Set gitattributes on src/clientversion.cpp
+mkdir ../${pkgname}-${pkgver}
+git archive ${_commit} 

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2017-08-19 Thread Nicola Squartini
Date: Saturday, August 19, 2017 @ 12:39:13
  Author: tensor5
Revision: 252559

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 252558, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
(from rev 252558, zcash/trunk/boost-no-mt-suffix.patch)
  zcash/repos/community-x86_64/use-system-libraries.patch
(from rev 252558, zcash/trunk/use-system-libraries.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 252558, zcash/trunk/use-system-rust.patch)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
  zcash/repos/community-x86_64/use-system-libraries.patch
  zcash/repos/community-x86_64/use-system-rust.patch

+
 PKGBUILD   |  160 +--
 boost-no-mt-suffix.patch   |   22 ++---
 use-system-libraries.patch |   22 ++---
 use-system-rust.patch  |   20 ++---
 4 files changed, 112 insertions(+), 112 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-08-19 12:38:15 UTC (rev 252558)
+++ PKGBUILD2017-08-19 12:39:13 UTC (rev 252559)
@@ -1,80 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=1.0.10_1
-_commit=d6ec3954c68200e8774b46527a5680bf4cf4ccf0
-pkgrel=2
-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' 'cmake' 'git' 'python' 'wget')
-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'
-'a2ac906ac99757adaa7d5eb7e68d2a64c3d628e71c03264c31edcbb500990569'
-'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
-'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
-
-prepare() {
-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
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-
-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/x86_64-unknown-linux-gnu/${lib}/${lib}-*.tar.gz \
--C x86_64-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"
-
-./autogen.sh
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-
-./qa/zcash/full-test-suite.sh
-
-# Run the RPC tests
-# ./zcutil/fetch-params.sh
-# ./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/bitcoin${ext}.bash-completion \
-"${pkgdir}"/usr/share/bash-completion/completions/zcash${ext}
-done
-
-install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 252558, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-08-19 12:39:13 UTC (rev 252559)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+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' 'zeromq')
+makedepends=('boost' 'cargo' 'cmake' 'git' 'python' 'wget')
+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'
+'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
+
+prepare() {
+cd ${pkgname}
+
+# Set gitattributes on src/clientversion.cpp
+mkdir ../${pkgname}-${pkgver}
+git archive 

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

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

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 245962, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
(from rev 245962, zcash/trunk/boost-no-mt-suffix.patch)
  zcash/repos/community-x86_64/use-system-libraries.patch
(from rev 245962, zcash/trunk/use-system-libraries.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 245962, zcash/trunk/use-system-rust.patch)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
  zcash/repos/community-x86_64/use-system-libraries.patch
  zcash/repos/community-x86_64/use-system-rust.patch

+
 PKGBUILD   |  160 +--
 boost-no-mt-suffix.patch   |   22 ++---
 use-system-libraries.patch |   22 ++---
 use-system-rust.patch  |   20 ++---
 4 files changed, 112 insertions(+), 112 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-22 08:17:10 UTC (rev 245962)
+++ PKGBUILD2017-07-22 08:17:45 UTC (rev 245963)
@@ -1,80 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=1.0.10_1
-_commit=d6ec3954c68200e8774b46527a5680bf4cf4ccf0
-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' 'cmake' 'git' 'python' 'wget')
-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'
-'a2ac906ac99757adaa7d5eb7e68d2a64c3d628e71c03264c31edcbb500990569'
-'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
-'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
-
-prepare() {
-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
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-
-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/x86_64-unknown-linux-gnu/${lib}/${lib}-*.tar.gz \
--C x86_64-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"
-
-./autogen.sh
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-
-./qa/zcash/full-test-suite.sh
-
-# Run the RPC tests
-# ./zcutil/fetch-params.sh
-# ./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/bitcoin${ext}.bash-completion \
-"${pkgdir}"/usr/share/bash-completion/completions/zcash${ext}
-done
-
-install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 245962, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-22 08:17:45 UTC (rev 245963)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=1.0.10_1
+_commit=d6ec3954c68200e8774b46527a5680bf4cf4ccf0
+pkgrel=2
+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' 'cmake' 'git' 'python' 'wget')
+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'
+'a2ac906ac99757adaa7d5eb7e68d2a64c3d628e71c03264c31edcbb500990569'
+'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
+'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
+
+prepare() {
+cd ${pkgname}
+
+# Set gitattributes on src/clientversion.cpp
+mkdir ../${pkgname}-${pkgver}
+git 

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

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

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 242003, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
(from rev 242003, zcash/trunk/boost-no-mt-suffix.patch)
  zcash/repos/community-x86_64/use-system-libraries.patch
(from rev 242003, zcash/trunk/use-system-libraries.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 242003, zcash/trunk/use-system-rust.patch)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
  zcash/repos/community-x86_64/use-system-libraries.patch
  zcash/repos/community-x86_64/use-system-rust.patch

+
 PKGBUILD   |  160 +--
 boost-no-mt-suffix.patch   |   22 ++---
 use-system-libraries.patch |   22 ++---
 use-system-rust.patch  |   20 ++---
 4 files changed, 112 insertions(+), 112 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-07-01 13:29:24 UTC (rev 242003)
+++ PKGBUILD2017-07-01 13:29:43 UTC (rev 242004)
@@ -1,80 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=1.0.9
-_commit=a410f124b24f1ebd763015492b029af09b1872a9
-pkgrel=2
-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' 'cmake' 'git' 'python' 'wget')
-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'
-'a2ac906ac99757adaa7d5eb7e68d2a64c3d628e71c03264c31edcbb500990569'
-'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
-'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
-
-prepare() {
-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
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-
-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/x86_64-unknown-linux-gnu/${lib}/${lib}-*.tar.gz \
--C x86_64-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"
-
-./autogen.sh
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-
-./qa/zcash/full-test-suite.sh
-
-# Run the RPC tests
-# ./zcutil/fetch-params.sh
-# ./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/bitcoin${ext}.bash-completion \
-"${pkgdir}"/usr/share/bash-completion/completions/zcash${ext}
-done
-
-install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 242003, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-07-01 13:29:43 UTC (rev 242004)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=1.0.10_1
+_commit=d6ec3954c68200e8774b46527a5680bf4cf4ccf0
+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' 'cmake' 'git' 'python' 'wget')
+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'
+'a2ac906ac99757adaa7d5eb7e68d2a64c3d628e71c03264c31edcbb500990569'
+'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
+'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
+
+prepare() {
+cd ${pkgname}
+
+# Set gitattributes on src/clientversion.cpp
+mkdir ../${pkgname}-${pkgver}
+git archive 

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2017-06-03 Thread Nicola Squartini
Date: Saturday, June 3, 2017 @ 13:22:51
  Author: tensor5
Revision: 233741

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 233740, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
(from rev 233740, zcash/trunk/boost-no-mt-suffix.patch)
  zcash/repos/community-x86_64/use-system-libraries.patch
(from rev 233740, zcash/trunk/use-system-libraries.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 233740, zcash/trunk/use-system-rust.patch)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
  zcash/repos/community-x86_64/use-system-libraries.patch
  zcash/repos/community-x86_64/use-system-rust.patch

+
 PKGBUILD   |  158 +--
 boost-no-mt-suffix.patch   |   22 ++---
 use-system-libraries.patch |   22 ++---
 use-system-rust.patch  |   20 ++---
 4 files changed, 112 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-06-03 13:21:43 UTC (rev 233740)
+++ PKGBUILD2017-06-03 13:22:51 UTC (rev 233741)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=1.0.8_1
-pkgrel=3
-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')
-checkdepends=('python' 'python2' 'python2-pyzmq')
-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=('d0210c93b7baddf55274ba7a3372dbe195ca5d2429e54d36289b97354bb83065'
-'c318e12a9d48a50cf254d2a58c24dd0cbbf1dc969e3afeecadd0756425ea5b07'
-'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
-'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
-
-prepare() {
-# cd ${pkgname}-${pkgver}
-cd ${pkgname}-1.0.8-1
-
-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}-1.0.8-1
-
-cd depends
-libs=('bdb' 'googletest' 'googlemock' 'librustzcash' 'libsnark')
-for lib in "${libs[@]}"; do
-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
-done
-cd ..
-
-CPPFLAGS="${CPPFLAGS} -I$PWD/depends/x86_64-unknown-linux-gnu/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/x86_64-unknown-linux-gnu/lib"
-
-./autogen.sh
-./configure --prefix=/usr
-make
-}
-
-check() {
-# cd ${pkgname}-${pkgver}
-cd ${pkgname}-1.0.8-1
-
-./qa/zcash/full-test-suite.sh
-
-# Run the RPC tests
-./zcutil/fetch-params.sh
-./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-# cd ${pkgname}-${pkgver}
-cd ${pkgname}-1.0.8-1
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/bitcoin${ext}.bash-completion \
-"${pkgdir}"/usr/share/bash-completion/completions/zcash${ext}
-done
-
-install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 233740, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-03 13:22:51 UTC (rev 233741)
@@ -0,0 +1,80 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+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' 'cmake' 'git' 'python' 'wget')
+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'
+'a2ac906ac99757adaa7d5eb7e68d2a64c3d628e71c03264c31edcbb500990569'
+'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
+'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
+
+prepare() {
+cd ${pkgname}
+
+# Set gitattributes on src/clientversion.cpp
+mkdir ../${pkgname}-${pkgver}
+git archive ${_commit} | tar -xC ../${pkgname}-${pkgver}
+cd ../${pkgname}-${pkgver}
+
+patch -Np1 -i 

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

2017-04-26 Thread Nicola Squartini
Date: Wednesday, April 26, 2017 @ 17:02:20
  Author: tensor5
Revision: 225697

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 225696, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
(from rev 225696, zcash/trunk/boost-no-mt-suffix.patch)
  zcash/repos/community-x86_64/use-system-libraries.patch
(from rev 225696, zcash/trunk/use-system-libraries.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 225696, zcash/trunk/use-system-rust.patch)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
  zcash/repos/community-x86_64/use-system-libraries.patch
  zcash/repos/community-x86_64/use-system-rust.patch

+
 PKGBUILD   |  156 +--
 boost-no-mt-suffix.patch   |   22 +++---
 use-system-libraries.patch |   22 +++---
 use-system-rust.patch  |   20 ++---
 4 files changed, 110 insertions(+), 110 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-04-26 17:01:59 UTC (rev 225696)
+++ PKGBUILD2017-04-26 17:02:20 UTC (rev 225697)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=1.0.8_1
-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')
-checkdepends=('python' 'python2' 'python2-pyzmq')
-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=('dce487b2f31e25952c7663c8ebc4379fd7ecfc5c88ebadc7137f6365360e8270'
-'c318e12a9d48a50cf254d2a58c24dd0cbbf1dc969e3afeecadd0756425ea5b07'
-'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
-'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
-
-prepare() {
-# cd ${pkgname}-${pkgver}
-cd ${pkgname}-1.0.8-1
-
-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}-1.0.8-1
-
-cd depends
-libs=('bdb' 'googletest' 'googlemock' 'librustzcash' 'libsnark' 'openssl')
-for lib in "${libs[@]}"; do
-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
-done
-cd ..
-
-CPPFLAGS="${CPPFLAGS} -I$PWD/depends/x86_64-unknown-linux-gnu/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/x86_64-unknown-linux-gnu/lib"
-
-./autogen.sh
-./configure --prefix=/usr
-make
-}
-
-check() {
-# cd ${pkgname}-${pkgver}
-cd ${pkgname}-1.0.8-1
-
-./qa/zcash/full-test-suite.sh
-
-# Run the RPC tests
-./zcutil/fetch-params.sh
-./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-# cd ${pkgname}-${pkgver}
-cd ${pkgname}-1.0.8-1
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/bitcoin${ext}.bash-completion \
-"${pkgdir}"/usr/share/bash-completion/completions/zcash${ext}
-done
-
-install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 225696, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-04-26 17:02:20 UTC (rev 225697)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=1.0.8_1
+pkgrel=2
+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')
+checkdepends=('python' 'python2' 'python2-pyzmq')
+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=('dce487b2f31e25952c7663c8ebc4379fd7ecfc5c88ebadc7137f6365360e8270'
+'c318e12a9d48a50cf254d2a58c24dd0cbbf1dc969e3afeecadd0756425ea5b07'
+'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
+'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
+
+prepare() {
+# cd ${pkgname}-${pkgver}
+cd ${pkgname}-1.0.8-1
+
+patch -Np1 -i ../boost-no-mt-suffix.patch
+patch -Np1 -i ../use-system-libraries.patch
+patch -Np1 -i 

[arch-commits] Commit in zcash/repos/community-x86_64 (8 files)

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

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 223009, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
(from rev 223009, zcash/trunk/boost-no-mt-suffix.patch)
  zcash/repos/community-x86_64/use-system-libraries.patch
(from rev 223009, zcash/trunk/use-system-libraries.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 223009, zcash/trunk/use-system-rust.patch)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
  zcash/repos/community-x86_64/use-system-libraries.patch
  zcash/repos/community-x86_64/use-system-rust.patch

+
 PKGBUILD   |  152 ++-
 boost-no-mt-suffix.patch   |   22 +++---
 use-system-libraries.patch |   22 +++---
 use-system-rust.patch  |   20 ++---
 4 files changed, 110 insertions(+), 106 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-04-14 12:10:35 UTC (rev 223009)
+++ PKGBUILD2017-04-14 12:10:54 UTC (rev 223010)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=1.0.8
-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')
-checkdepends=('python' 'python2' 'python2-pyzmq')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/zcash/zcash/archive/v${pkgver}.tar.gz;
-"boost-no-mt-suffix.patch"
-"use-system-libraries.patch"
-"use-system-rust.patch")
-sha256sums=('a7d7cf893821c2f01d611e285774db807c98281d795e17e169fc850f72402cf0'
-'c318e12a9d48a50cf254d2a58c24dd0cbbf1dc969e3afeecadd0756425ea5b07'
-'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
-'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
-
-prepare() {
-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
-}
-
-build() {
-cd ${pkgname}-${pkgver}
-
-cd depends
-libs=('bdb' 'googletest' 'googlemock' 'librustzcash' 'libsnark' 'openssl')
-for lib in "${libs[@]}"; do
-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
-done
-cd ..
-
-CPPFLAGS="${CPPFLAGS} -I$PWD/depends/x86_64-unknown-linux-gnu/include"
-LDFLAGS="${LDFLAGS} -L${PWD}/depends/x86_64-unknown-linux-gnu/lib"
-
-./autogen.sh
-./configure --prefix=/usr
-make
-}
-
-check() {
-cd ${pkgname}-${pkgver}
-
-./qa/zcash/full-test-suite.sh
-
-# Run the RPC tests
-./zcutil/fetch-params.sh
-./qa/pull-tester/rpc-tests.sh
-}
-
-package() {
-cd ${pkgname}-${pkgver}
-
-make DESTDIR="${pkgdir}" install
-
-for ext in '-cli' '-tx' 'd'; do
-install -Dm644 contrib/bitcoin${ext}.bash-completion \
-"${pkgdir}"/usr/share/bash-completion/completions/zcash${ext}
-done
-
-install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/${pkgname}/COPYING
-}

Copied: zcash/repos/community-x86_64/PKGBUILD (from rev 223009, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-04-14 12:10:54 UTC (rev 223010)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=1.0.8_1
+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')
+checkdepends=('python' 'python2' 'python2-pyzmq')
+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=('dce487b2f31e25952c7663c8ebc4379fd7ecfc5c88ebadc7137f6365360e8270'
+'c318e12a9d48a50cf254d2a58c24dd0cbbf1dc969e3afeecadd0756425ea5b07'
+'ef8ab26635bb2608f03ddf991da3581060670161938171fa2e413758fa4bad3f'
+'065cd418ca7be72018c7fdada3012872bd079a254a95560312514594381b8028')
+
+prepare() {
+# cd ${pkgname}-${pkgver}
+cd ${pkgname}-1.0.8-1
+
+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}-1.0.8-1
+
+cd depends
+libs=('bdb'