~alpine/devel

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
2

[alpine-devel] [PATCH] testing/bitcoin: update to 0.10.0_rc1

Details
Message ID
<1419713327-36987-1-git-send-email-developer@it-offshore.co.uk>
Sender timestamp
1419713327
DKIM signature
missing
Download raw message
Patch: +6 -5
SSL3 removed from RPC client
---
 testing/bitcoin/APKBUILD | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/testing/bitcoin/APKBUILD b/testing/bitcoin/APKBUILD
index d819a41..21111a3 100644
--- a/testing/bitcoin/APKBUILD
+++ b/testing/bitcoin/APKBUILD
@@ -1,9 +1,9 @@
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
pkgname=bitcoin
pkgver=0.9.3
pkgver=0.10.0_rc1
_ver=${pkgver/_/}
pkgrel=1
pkgrel=0
pkgdesc="decentralized P2P electronic cash system"
url="http://www.bitcoin.org/"
arch="all"
@@ -13,6 +13,7 @@ depends_dev=""
makedepends="$depends_dev boost-dev openssl-dev db-dev miniupnpc-dev
	qt5-qtbase-dev qt5-qttools-dev protobuf-dev libqrencode-dev
	autoconf automake libtool"
options=libtool
install="$pkgname.post-install $pkgname.pre-install"
subpackages="$pkgname-qt $pkgname-cli"
source="$pkgname-$_ver.tar.gz::https://github.com/bitcoin/bitcoin/archive/v${_ver}.tar.gz
@@ -67,15 +68,15 @@ cli() {
	mv "$pkgdir"/usr/bin/bitcoin-cli "$subpkgdir"/usr/bin/ || return 1
}

md5sums="719ac255715deffafc2ae7554c66ba70  bitcoin-0.9.3.tar.gz
md5sums="119694e055ab16d202233e246555ae22  bitcoin-0.10.0rc1.tar.gz
716a88e668729e89d3eb929da86f7f04  ssize_t.patch
56edf10681b0cd7cc33de1fd24155108  bitcoin.initd
3e9b4a37bb46e6cd83b6824870c58484  bitcoin.conf"
sha256sums="3ed92e8323cb4187cae015457c7c5920a5c658438f01c6c45f0ce3aabf9bd428  bitcoin-0.9.3.tar.gz
sha256sums="596c03e8a1820db3ef901ed209178504b858c6b24496ba6dd53197584737f857  bitcoin-0.10.0rc1.tar.gz
f0a094c7b374338ad153ee06b7dd2369dad6b97b1f1bb0252da12c9aaace5321  ssize_t.patch
df060fcee7227a2c7c4a435e24dea25b6388a6d6a98f01975c466a2c770e976a  bitcoin.initd
b7a31bf251f1011ab6584b610acac8494612c2012e9771985228c36c08a315ac  bitcoin.conf"
sha512sums="cf6ff5bc586b0614b4e74e1c18b30e8f443f03db348382492e49c70ec31a0ef3a4d1989b34a8fdce289788c894b48b72b94d2562e497220453b668dc28ce0d66  bitcoin-0.9.3.tar.gz
sha512sums="8066323c15a1969763839039c9ddd338962616e080f04eedd20ada4d477a1fa8fda4e66f22f084d923aaea4ab504e8bf8c14c4cd8e972731f7601b06bd018e14  bitcoin-0.10.0rc1.tar.gz
98aa5ad81bdb4ae961b791bc978c39117cdf2d83c2181f92bebbb0db107d9b6e86eda265fb3f93ff8a5ca8a7754d7148818b98095d57201dff9363d60b97e7dd  ssize_t.patch
9bab044e3ddc229f8e2b2eb170361f92d234c78e21c6f1c24a5fe1d0b480db5b6728dda990752eb0820085ecdc41538e735d631ff5886c270475a5b634e3729f  bitcoin.initd
48abce0f0a5b088c957aa5cb2bcf9bb520593caa7a20019bdf785e43f7d2459968240d4529dfa30be2fca92891bf50c1253a513530511e99d8ee471d9ff6bd95  bitcoin.conf"
-- 
2.2.0



---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Natanael Copa <ncopa@alpinelinux.org>
Details
Message ID
<20141229143932.78f61f17@ncopa-desktop.alpinelinux.org>
In-Reply-To
<1419713327-36987-1-git-send-email-developer@it-offshore.co.uk> (view parent)
Sender timestamp
1419860372
DKIM signature
missing
Download raw message
On Sat, 27 Dec 2014 20:48:47 +0000
Stuart Cardall <developer@it-offshore.co.uk> wrote:

> SSL3 removed from RPC client
> ---
>  testing/bitcoin/APKBUILD | 11 ++++++-----
>  1 file changed, 6 insertions(+), 5 deletions(-)
> 
> diff --git a/testing/bitcoin/APKBUILD b/testing/bitcoin/APKBUILD
> index d819a41..21111a3 100644
> --- a/testing/bitcoin/APKBUILD
> +++ b/testing/bitcoin/APKBUILD
> @@ -1,9 +1,9 @@
>  # Contributor: Natanael Copa <ncopa@alpinelinux.org>
>  # Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
>  pkgname=bitcoin
> -pkgver=0.9.3
> +pkgver=0.10.0_rc1
>  _ver=${pkgver/_/}
> -pkgrel=1
> +pkgrel=0
>  pkgdesc="decentralized P2P electronic cash system"
>  url="http://www.bitcoin.org/"
>  arch="all"
> @@ -13,6 +13,7 @@ depends_dev=""
>  makedepends="$depends_dev boost-dev openssl-dev db-dev miniupnpc-dev
>  	qt5-qtbase-dev qt5-qttools-dev protobuf-dev libqrencode-dev
>  	autoconf automake libtool"
> +options=libtool

this is wrong. we need to remove the .la files.

I applied your patch and added a fix that removes the .la file.

Thanks!

-nc


---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Natanael Copa <ncopa@alpinelinux.org>
Details
Message ID
<20141229144633.39649dc5@ncopa-desktop.alpinelinux.org>
In-Reply-To
<1419713327-36987-1-git-send-email-developer@it-offshore.co.uk> (view parent)
Sender timestamp
1419860793
DKIM signature
missing
Download raw message
(offlist)

On Sat, 27 Dec 2014 20:48:47 +0000
Stuart Cardall <developer@it-offshore.co.uk> wrote:

> SSL3 removed from RPC client
> ---
>  testing/bitcoin/APKBUILD | 11 ++++++-----
>  1 file changed, 6 insertions(+), 5 deletions(-)

Stuart,

Could you please send patches to the new mailing list
alpine-aports@lists.alpinelinux.org in future?

Thanks!

-nc


---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Reply to thread Export thread (mbox)