summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2014-03-24 10:18:30 +0000
committer Eric Hameleers <alien@slackware.com>2014-03-24 10:18:30 +0000
commit16aa9787bfc28f67a5b2e50d2ba8fd65f2f767cf (patch)
treeaf2e968eb2d99148a23c99b0bb054ff103260ae7
parent210fa62c35bdb00153437ecf6d43cf5fa0ba5e1e (diff)
downloadasb-16aa9787bfc28f67a5b2e50d2ba8fd65f2f767cf.tar.gz
asb-16aa9787bfc28f67a5b2e50d2ba8fd65f2f767cf.tar.xz
Update to 0.9.0
-rwxr-xr-xbitcoin/build/bitcoin.SlackBuild9
1 files changed, 7 insertions, 2 deletions
diff --git a/bitcoin/build/bitcoin.SlackBuild b/bitcoin/build/bitcoin.SlackBuild
index 9905380f..8f90f232 100755
--- a/bitcoin/build/bitcoin.SlackBuild
+++ b/bitcoin/build/bitcoin.SlackBuild
@@ -33,6 +33,11 @@
# Changelog:
# 0.8.6-1: 16/Mar/2014 by Eric Hameleers <alien@slackware.com>
# * Initial build.
+# 0.9.0-1: 24/Mar/2014 by Eric Hameleers <alien@slackware.com>
+# * Update privides a fix for the 'malleability attack' which
+# vitcimized MtGox.
+# Also, the software is now called "Bitcoin Core" to make a
+# distinction with "Bitcoin Network"
#
# Run 'sh bitcoin.SlackBuild' to build a Slackware package.
# The package (.tgz) and .txt file as well as build logs are created in /tmp .
@@ -41,7 +46,7 @@
# -----------------------------------------------------------------------------
PRGNAM=bitcoin
-VERSION=${VERSION:-0.8.6}
+VERSION=${VERSION:-0.9.0}
BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:" -j4 "}
TAG=${TAG:-alien}
@@ -58,7 +63,7 @@ PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
SOURCE="$SRCDIR/${PRGNAM}-${VERSION}.tar.gz"
-SRCURL="http://downloads.sourceforge.net/${PRGNAM}/${PRGNAM}-${VERSION}-linux.tar.gz"
+SRCURL="https://github.com/${PRGNAM}/${PRGNAM}/archive/v${VERSION}.tar.gz"
##
## --- with a little luck, you won't have to edit below this point --- ##