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

2020-05-31 Thread Nicola Squartini via arch-commits
Date: Sunday, May 31, 2020 @ 06:59:32
  Author: tensor5
Revision: 637591

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch
(from rev 637590, 
zcash/trunk/08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch)
  zcash/repos/community-x86_64/PKGBUILD
(from rev 637590, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
(from rev 637590, zcash/trunk/use-system-qpid-proton.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 637590, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 637590, 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

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

Copied: 
zcash/repos/community-x86_64/08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch 
(from rev 637590, zcash/trunk/08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch)
===
--- 08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch  
(rev 0)
+++ 08662fa09a14c68b1048ee4384b25dfd9ad0463f.patch  2020-05-31 06:59:32 UTC 
(rev 637591)
@@ -0,0 +1,21 @@
+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-05-31 06:58:45 UTC (rev 637590)
+++ PKGBUILD2020-05-31 06:59:32 UTC (rev 637591)
@@ -1,73 +0,0 @@
-# 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'
-
'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: 

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

2019-11-05 Thread Nicola Squartini via arch-commits
Date: Tuesday, November 5, 2019 @ 11:13:41
  Author: tensor5
Revision: 524188

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 524187, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
(from rev 524187, zcash/trunk/use-system-qpid-proton.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 524187, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 524187, 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-qpid-proton.patch
  zcash/repos/community-x86_64/use-system-rust.patch
  zcash/repos/community-x86_64/zcashd.service

--+
 PKGBUILD |  242 +++--
 libsnark-no-gtest.patch  |   22 ---
 use-system-qpid-proton.patch |   52 
 use-system-rust.patch|   42 +++
 zcashd.service   |   18 +--
 5 files changed, 175 insertions(+), 201 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-11-05 11:12:53 UTC (rev 524187)
+++ PKGBUILD2019-11-05 11:13:41 UTC (rev 524188)
@@ -1,124 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.0.7_3
-_commit=e3983afc03d256813662aa2cb07fbe1a05b9ab05
-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' 'rustup' '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-qpid-proton.patch'
-'use-system-rust.patch'
-'zcashd.service')
-sha512sums=('SKIP'
-
'b4792cc6f4c1e4e633d34257b68a4fbf882dfc692fedc14a06905705dd0778f22097b1e0645e00231ddc366245fe76ff63a43b53fb468496daf5100b15ad2fee'
-
'019870971a0cec093d0552585f4140f39dd65f90cb56b97e512bbaf0d79c0f1574295e722310d4e1762af12ff693802fc465765d4d1410d209e259326f307d6a'
-
'e2bdf46696e70a93ffcb45bf4e081c780cda8f11f6fa346b6807731f7c739f18c689c4e78a71f8bd7099874108b6b6584b8a96395bbca8d5441f7600a3fe0ebe'
-
'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-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}
-
-# Temporary, due to llvm-libs 9 being in [staging]
-rustup update stable
-
-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 \
-

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

2019-06-17 Thread Nicola Squartini via arch-commits
Date: Tuesday, June 18, 2019 @ 03:00:13
  Author: tensor5
Revision: 482063

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 482062, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
(from rev 482062, zcash/trunk/libsnark-no-gtest.patch)
  zcash/repos/community-x86_64/use-system-qpid-proton.patch
(from rev 482062, zcash/trunk/use-system-qpid-proton.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 482062, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 482062, 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 |  239 -
 libsnark-no-gtest.patch  |   44 +++
 use-system-qpid-proton.patch |   26 
 use-system-rust.patch|   31 +++--
 zcashd.service   |   18 +--
 5 files changed, 198 insertions(+), 160 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-18 02:59:09 UTC (rev 482062)
+++ PKGBUILD2019-06-18 03:00:13 UTC (rev 482063)
@@ -1,118 +0,0 @@
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=2.0.4
-_commit=be1d68ef763ce405d4d04d7f4d3dfbbdd9084687
-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 482062, 

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

2018-04-18 Thread Nicola Squartini via arch-commits
Date: Wednesday, April 18, 2018 @ 10:39:16
  Author: tensor5
Revision: 316863

archrelease: copy trunk to community-x86_64

Added:
  zcash/repos/community-x86_64/PKGBUILD
(from rev 316862, zcash/trunk/PKGBUILD)
  zcash/repos/community-x86_64/libsnark-no-gtest.patch
(from rev 316862, zcash/trunk/libsnark-no-gtest.patch)
  zcash/repos/community-x86_64/use-system-rust.patch
(from rev 316862, zcash/trunk/use-system-rust.patch)
  zcash/repos/community-x86_64/zcashd.service
(from rev 316862, zcash/trunk/zcashd.service)
Deleted:
  zcash/repos/community-x86_64/PKGBUILD
  zcash/repos/community-x86_64/boost-no-mt-suffix.patch
  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 |  145 ++---
 boost-no-mt-suffix.patch |   22 --
 libsnark-no-gtest.patch  |   44 ++---
 use-system-rust.patch|   21 +++---
 zcashd.service   |   18 ++---
 5 files changed, 113 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-18 10:38:44 UTC (rev 316862)
+++ PKGBUILD2018-04-18 10:39:16 UTC (rev 316863)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=1.0.15
-_commit=93332d6e84590cdcb8c64282f9b525152c3f1b2f
-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};
-"boost-no-mt-suffix.patch"
-'libsnark-no-gtest.patch'
-"use-system-rust.patch"
-'zcashd.service')
-sha512sums=('SKIP'
-
'7019ef6162be0083db7399ec2ec3059b669b4f05247d6f038603ba3541a864d180ca41d5d971993f0d9c028410f811f31a31c39faa7c62cbad23ca65a4a4662c'
-
'ba59e6f94ac7fa94429203e32b9804e6d741e60099e2dd052813ed879ad5a10c46e816dc8d4a5d59444c35c7eaf9a40434fd93b7e392fd535c041c89274375f0'
-
'3663373af04318aa72d877f399f0c9e956d289ac876583e70afa2933bf4171f7441a399e043b2d29b1df6d19d29390bb69d4053cad4b75bef903a8685fcd23bf'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# Set gitattributes on src/clientversion.cpp
-git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
-
-patch -Np1 -i ../boost-no-mt-suffix.patch
-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 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 316862, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-04-18 10:39:16 UTC (rev 316863)
@@ -0,0 +1,71 @@
+# $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'
+

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

2018-03-16 Thread Nicola Squartini via arch-commits
Date: Friday, March 16, 2018 @ 08:46:59
  Author: tensor5
Revision: 308800

archrelease: copy trunk to community-x86_64

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

--+
 PKGBUILD |  144 +++--
 boost-no-mt-suffix.patch |   33 ++
 libsnark-no-gtest.patch  |   22 ++
 use-system-rust.patch|   20 +++---
 zcashd.service   |   18 ++---
 5 files changed, 137 insertions(+), 100 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-03-16 08:45:30 UTC (rev 308799)
+++ PKGBUILD2018-03-16 08:46:59 UTC (rev 308800)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Nicola Squartini 
-
-pkgname=zcash
-pkgver=1.0.14
-_commit=1ddecf644f6bab29545bb6333889fb059eb7970e
-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' 'gmock' 'python' 'wget')
-checkdepends=('python' 'python2' 'python2-pyzmq')
-source=("git+https://github.com/zcash/zcash.git#commit=${_commit};
-"boost-no-mt-suffix.patch"
-"use-system-rust.patch"
-'zcashd.service')
-sha512sums=('SKIP'
-
'fa9ac59839ba6c6aabefb24296ae29914acf7089487377e7948fd684e32b1b499e8e15daccd10baf968905ec69ad2da8b91ff2c8d4724412d8143428ed4de23d'
-
'3663373af04318aa72d877f399f0c9e956d289ac876583e70afa2933bf4171f7441a399e043b2d29b1df6d19d29390bb69d4053cad4b75bef903a8685fcd23bf'
-
'2fb8b0a636ca9c7ee15f0fd2c47046c8323ade3de9562f393da7541eee50dd14b12107dd29b0e1ee90ff88963e2f7e25b12435166a1812df5c88c579c12dde88')
-
-prepare() {
-cd ${pkgname}
-
-# Set gitattributes on src/clientversion.cpp
-git archive --format=tar ${_commit} -- src/clientversion.cpp | tar -xf -
-
-patch -Np1 -i ../boost-no-mt-suffix.patch
-patch -Np1 -i ../use-system-rust.patch
-}
-
-build() {
-cd ${pkgname}
-
-cd depends
-make install \
-native_packages='' \
-packages='bdb librustzcash proton'
-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
-depends_prefix="${PWD}/depends/x86_64-unknown-linux-gnu" ./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 308799, 
zcash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-03-16 08:46:59 UTC (rev 308800)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Nicola Squartini 
+
+pkgname=zcash
+pkgver=1.0.15
+_commit=93332d6e84590cdcb8c64282f9b525152c3f1b2f
+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};
+"boost-no-mt-suffix.patch"
+'libsnark-no-gtest.patch'
+"use-system-rust.patch"
+'zcashd.service')
+sha512sums=('SKIP'
+
'7019ef6162be0083db7399ec2ec3059b669b4f05247d6f038603ba3541a864d180ca41d5d971993f0d9c028410f811f31a31c39faa7c62cbad23ca65a4a4662c'
+
'ba59e6f94ac7fa94429203e32b9804e6d741e60099e2dd052813ed879ad5a10c46e816dc8d4a5d59444c35c7eaf9a40434fd93b7e392fd535c041c89274375f0'
+