bitcoin: update to 25.0.
This commit is contained in:
parent
8865f96eed
commit
90da91792a
|
@ -0,0 +1 @@
|
|||
bitcoin
|
|
@ -0,0 +1 @@
|
|||
bitcoin
|
|
@ -0,0 +1,22 @@
|
|||
Index: bitcoin-22.0/src/wallet/test/init_tests.cpp
|
||||
===================================================================
|
||||
--- bitcoin-22.0.orig/src/wallet/test/init_tests.cpp
|
||||
+++ bitcoin-22.0/src/wallet/test/init_tests.cpp
|
||||
@@ -69,7 +69,7 @@ BOOST_AUTO_TEST_CASE(walletinit_verify_w
|
||||
BOOST_CHECK(result == true);
|
||||
fs::path walletdir = gArgs.GetArg("-walletdir", "");
|
||||
fs::path expected_path = fs::canonical(m_walletdir_path_cases["default"]);
|
||||
- BOOST_CHECK_EQUAL(walletdir, expected_path);
|
||||
+ BOOST_TEST(fs::equivalent(walletdir, expected_path));
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(walletinit_verify_walletdir_no_trailing2)
|
||||
@@ -79,7 +79,7 @@ BOOST_AUTO_TEST_CASE(walletinit_verify_w
|
||||
BOOST_CHECK(result == true);
|
||||
fs::path walletdir = gArgs.GetArg("-walletdir", "");
|
||||
fs::path expected_path = fs::canonical(m_walletdir_path_cases["default"]);
|
||||
- BOOST_CHECK_EQUAL(walletdir, expected_path);
|
||||
+ BOOST_TEST(fs::equivalent(walletdir, expected_path));
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_SUITE_END()
|
|
@ -0,0 +1,71 @@
|
|||
# Template file for 'bitcoin'
|
||||
pkgname=bitcoin
|
||||
version=25.0
|
||||
revision=1
|
||||
build_style=gnu-configure
|
||||
configure_args="--with-incompatible-bdb --disable-ccache --disable-static
|
||||
--enable-hardening --with-boost=${XBPS_CROSS_BASE}/usr --with-gui"
|
||||
hostmakedepends="automake libtool pkg-config yasm"
|
||||
makedepends="db-devel boost-devel miniupnpc-devel qt5-tools-devel
|
||||
libevent-devel qrencode-devel sqlite-devel"
|
||||
short_desc="Bitcoin is a peer-to-peer network based digital currency"
|
||||
maintainer="Daniel A. Maierhofer <git@damadmai.at>"
|
||||
license="MIT"
|
||||
homepage="https://bitcoincore.org/"
|
||||
distfiles="https://bitcoincore.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz
|
||||
https://raw.githubusercontent.com/bitcoin-core/packaging/main/debian/bitcoin-qt.desktop
|
||||
https://raw.githubusercontent.com/bitcoin/bitcoin/v${version}/share/pixmaps/bitcoin128.png"
|
||||
checksum="5df67cf42ca3b9a0c38cdafec5bbb517da5b58d251f32c8d2a47511f9be1ebc2
|
||||
0a46bbadda140599e807be38999e6848c89f9c3523d26fede02d34d62d50f632
|
||||
ad880c8459ecfdb96abe6a4689af06bdd27906e0edcd39d0915482f2da91e722"
|
||||
conflicts="litecoin" # Both provide libbitcoinconsensus.so.0
|
||||
skip_extraction="bitcoin-qt.desktop bitcoin128.png"
|
||||
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
hostmakedepends+=" qt5-host-tools"
|
||||
fi
|
||||
|
||||
pre_configure() {
|
||||
autoreconf -fi
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
aarch64*)
|
||||
CFLAGS=${CFLAGS/armv8-a/armv8-a+crc+crypto}
|
||||
CXXFLAGS=${CXXFLAGS/armv8-a/armv8-a+crc+crypto}
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
pre_build() {
|
||||
export BITCOIN_GENBUILD_NO_GIT=1
|
||||
}
|
||||
|
||||
post_install() {
|
||||
rm "${DESTDIR}"/usr/bin/{test,bench}_bitcoin
|
||||
|
||||
vlicense COPYING
|
||||
}
|
||||
|
||||
bitcoin-devel_package() {
|
||||
depends="${sourcepkg}>=${version}_${revision}"
|
||||
conflicts="litecoin" # Both provide libbitcoinconsensus.so.0
|
||||
short_desc+=" - development files"
|
||||
pkg_install() {
|
||||
vmove usr/include
|
||||
vmove usr/lib/pkgconfig
|
||||
vmove "usr/lib/*.so"
|
||||
vdoc doc/shared-libraries.md # Provides information on libbitcoinconsensus
|
||||
}
|
||||
}
|
||||
|
||||
bitcoin-qt_package() {
|
||||
depends="desktop-file-utils"
|
||||
short_desc+=" - QT GUI"
|
||||
pkg_install() {
|
||||
vmove usr/bin/bitcoin-qt
|
||||
vmove usr/share/man/man1/bitcoin-qt.1
|
||||
vinstall ${XBPS_SRCDISTDIR}/${sourcepkg}-${version}/bitcoin-qt.desktop 644 usr/share/applications
|
||||
vinstall ${XBPS_SRCDISTDIR}/${sourcepkg}-${version}/bitcoin128.png 644 usr/share/pixmaps
|
||||
vlicense COPYING
|
||||
rm "${DESTDIR}"/usr/bin/test_bitcoin-qt
|
||||
}
|
||||
}
|
|
@ -0,0 +1,2 @@
|
|||
site="https://bitcoin.org/bin/"
|
||||
pattern='bitcoin-core-\K[\d.]+'
|
Loading…
Reference in New Issue