commit:     7dbd815f8630708953f03aad46ad067ce24d7caf
Author:     Matt Whitlock <gentoo <AT> mattwhitlock <DOT> name>
AuthorDate: Wed Mar  6 18:03:53 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar  7 15:15:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dbd815f

net-p2p/bitcoin-core: add unkeyworded 25.2_rc1 and 26.1_rc1

Closes: https://bugs.gentoo.org/926275
Signed-off-by: Matt Whitlock <gentoo <AT> mattwhitlock.name>
Closes: https://github.com/gentoo/gentoo/pull/35639
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-p2p/bitcoin-core/Manifest                     |   2 +
 net-p2p/bitcoin-core/bitcoin-core-25.2_rc1.ebuild | 415 +++++++++++++++++++++
 net-p2p/bitcoin-core/bitcoin-core-26.1_rc1.ebuild | 426 ++++++++++++++++++++++
 3 files changed, 843 insertions(+)

diff --git a/net-p2p/bitcoin-core/Manifest b/net-p2p/bitcoin-core/Manifest
index 496eef02d287..1bf4be169a74 100644
--- a/net-p2p/bitcoin-core/Manifest
+++ b/net-p2p/bitcoin-core/Manifest
@@ -1,2 +1,4 @@
 DIST bitcoin-25.1.tar.gz 12498596 BLAKE2B 
e8e4ea99cb40db420033c4df75e985af93cbb64f9862376e2de1a0731b4aeafbf43a95b33770e882ad77b73e454d48dbd5744902c78ade2b965e3d2d4e4b4656
 SHA512 
310e5d976a062496d2b99d0e64c4d5d2b536a747901e887f85b75151d94237f0de800163b534c812d390eb5e93b3f7284cd7f71843ec35e891f34634b6b142ab
+DIST bitcoin-core-25.2_rc1.tar.gz 12499745 BLAKE2B 
db05eb84f80aebfcbb269367ac95f8e9f710210ddb99ea44755344260be3000e0c41cf9e458fb66288f8e206a376f63b2e486ff430daee4719d201b2c18f435e
 SHA512 
40c1b13f887d7229742155d48946e42adedf1431d92acc322426a4df38625f7acabff226a70d2a864ea12d34a16b67d657db3274891c313534c46f64e7b07a3a
 DIST bitcoin-26.0.tar.gz 12753904 BLAKE2B 
35b5d40390dc5eab18a12b0f120619d40d9d0eaf4a59f5ed943a59189c0ede5d78207b7606f1c3490b90f14c17e87882242d6637fdc348005a6f60a1d8202d13
 SHA512 
31b7bc66b43d073611ccf19adc80a4dd3ce3a4b5cf4c8b814f4be9e771e88721d20ae0aa83d89cd8d55ffaf0853444479932b425e82081fd66bb037c6b53e4a8
+DIST bitcoin-core-26.1_rc1.tar.gz 12816436 BLAKE2B 
05a3c774901f75368a42f4f81b2dcf181efc1db4f82b230bca1c5f78ee9a310e00654960fdab368eb169bbc283628f9c5a020d1e7c7abcad6fe15ca4feba01c5
 SHA512 
5f93bc3061e93c57d65c00c458c39ede19e1908a25804b2191ed4866a7cf92438b068de15e8685a37d38608d750be3ce64d3e7cc22418e27b47ed65d9bcb7557

diff --git a/net-p2p/bitcoin-core/bitcoin-core-25.2_rc1.ebuild 
b/net-p2p/bitcoin-core/bitcoin-core-25.2_rc1.ebuild
new file mode 100644
index 000000000000..7e4f5c62aec2
--- /dev/null
+++ b/net-p2p/bitcoin-core/bitcoin-core-25.2_rc1.ebuild
@@ -0,0 +1,415 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit autotools bash-completion-r1 check-reqs db-use desktop edo 
multiprocessing python-any-r1 systemd toolchain-funcs xdg-utils
+
+DESCRIPTION="Reference implementation of the Bitcoin cryptocurrency"
+HOMEPAGE="https://bitcoincore.org/";
+SRC_URI="https://github.com/bitcoin/bitcoin/archive/v${PV/_rc/rc}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${PN/-core}-${PV/_rc/rc}"
+
+LICENSE="MIT"
+SLOT="0"
+if [[ "${PV}" == *_rc* ]] ; then
+       KEYWORDS=""
+else
+       KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+fi
+# IUSE="+cli" doesn't work due to https://bugs.gentoo.org/831045#c3
+IUSE="+asm +berkdb +bitcoin-cli +daemon dbus examples +external-signer gui kde 
libs +man nat-pmp +qrcode +sqlite system-leveldb +system-libsecp256k1 systemtap 
test upnp zeromq"
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="
+       dbus? ( gui )
+       kde? ( gui )
+       qrcode? ( gui )
+       system-leveldb? ( || ( daemon gui ) )
+"
+# dev-libs/univalue is now bundled, as upstream dropped support for system copy
+# and their version in the Bitcoin repo has deviated a fair bit from upstream.
+# Upstream also seems very inactive.
+RDEPEND="
+       !dev-util/bitcoin-tx
+       >=dev-libs/boost-1.81.0:=
+       >=dev-libs/libevent-2.1.12:=
+       berkdb? ( >=sys-libs/db-4.8.30:$(db_ver_to_slot 4.8)=[cxx] )
+       bitcoin-cli? ( !net-p2p/bitcoin-cli )
+       daemon? (
+               !net-p2p/bitcoind
+               acct-group/bitcoin
+               acct-user/bitcoin
+       )
+       gui? (
+               !net-p2p/bitcoin-qt
+               >=dev-qt/qtcore-5.15.5:5
+               >=dev-qt/qtgui-5.15.5:5
+               >=dev-qt/qtnetwork-5.15.5:5
+               >=dev-qt/qtwidgets-5.15.5:5
+               dbus? ( >=dev-qt/qtdbus-5.15.5:5 )
+       )
+       libs? ( !net-libs/libbitcoinconsensus )
+       nat-pmp? ( >=net-libs/libnatpmp-20220705:= )
+       qrcode? ( >=media-gfx/qrencode-4.1.1:= )
+       sqlite? ( >=dev-db/sqlite-3.38.5:= )
+       system-leveldb? ( virtual/bitcoin-leveldb )
+       system-libsecp256k1? ( 
>=dev-libs/libsecp256k1-0.3.1:=[recovery,schnorr] )
+       upnp? ( >=net-libs/miniupnpc-2.2.2:= )
+       zeromq? ( >=net-libs/zeromq-4.3.4:= )
+"
+DEPEND="
+       ${RDEPEND}
+       systemtap? ( >=dev-debug/systemtap-4.8 )
+"
+BDEPEND="
+       virtual/pkgconfig
+       daemon? (
+               acct-group/bitcoin
+               acct-user/bitcoin
+       )
+       gui? ( >=dev-qt/linguist-tools-5.15.5:5 )
+       test? ( ${PYTHON_DEPS} )
+"
+IDEPEND="
+       gui? ( dev-util/desktop-file-utils )
+"
+
+DOCS=(
+       doc/bips.md
+       doc/bitcoin-conf.md
+       doc/descriptors.md
+       doc/files.md
+       doc/i2p.md
+       doc/JSON-RPC-interface.md
+       doc/multisig-tutorial.md
+       doc/p2p-bad-ports.md
+       doc/psbt.md
+       doc/reduce-memory.md
+       doc/reduce-traffic.md
+       doc/release-notes.md
+       doc/REST-interface.md
+       doc/tor.md
+)
+
+PATCHES=(
+       "${FILESDIR}/25.0-syslibs.patch"
+       "${FILESDIR}/init.patch"
+)
+
+efmt() {
+       : ${1:?} ; local l ; while read -r l ; do "${!#}" "${l}" ; done < <(fmt 
"${@:1:$#-1}")
+}
+
+pkg_pretend() {
+       if ! use daemon && ! use gui && ! has_version 
"${CATEGORY}/${PN}[-daemon,-gui(-),-qt5(-)]" ; then
+               efmt ewarn <<-EOF
+                       You are enabling neither USE="daemon" nor USE="gui". 
This is a valid
+                       configuration, but you will be unable to run a Bitcoin 
node using this
+                       installation.
+               EOF
+       fi
+       if use daemon && ! use bitcoin-cli && ! has_version 
"${CATEGORY}/${PN}[daemon,-bitcoin-cli]" ; then
+               efmt ewarn <<-EOF
+                       You are enabling USE="daemon" but not 
USE="bitcoin-cli". This is a valid
+                       configuration, but you will be unable to interact with 
your bitcoind node
+                       via the command line using this installation.
+               EOF
+       fi
+       if ! use berkdb && ! use sqlite &&
+               { { use daemon && ! has_version 
"${CATEGORY}/${PN}[daemon,-berkdb,-sqlite]" ; } ||
+                 { use gui && ! has_version 
"${CATEGORY}/${PN}[gui,-berkdb,-sqlite]" ; } ; }
+       then
+               efmt ewarn <<-EOF
+                       You are enabling neither USE="berkdb" nor USE="sqlite". 
This is a valid
+                       configuration, but your Bitcoin node will be unable to 
open any wallets.
+               EOF
+       fi
+
+       # test/functional/feature_pruning.py requires 4 GB disk space
+       # test/functional/wallet_pruning.py requires 1.3 GB disk space
+       use test && CHECKREQS_DISK_BUILD="6G" check-reqs_pkg_pretend
+}
+
+pkg_setup() {
+       if use test ; then
+               CHECKREQS_DISK_BUILD="6G" check-reqs_pkg_setup
+               python-any-r1_pkg_setup
+       fi
+}
+
+src_prepare() {
+       default
+       ! use system-leveldb || rm -r src/leveldb || die
+       if use system-libsecp256k1 ; then
+               rm -r src/secp256k1 || die
+               sed -e '/^DIST_SUBDIRS *=/s/\bsecp256k1\b//' -i src/Makefile.am 
|| die
+       else
+               pushd src/secp256k1 >/dev/null || die
+               AT_NOELIBTOOLIZE=yes eautoreconf
+               popd >/dev/null || die
+       fi
+       eautoreconf
+
+       # we say --disable-util-util, so we can't test bitcoin-util
+       sed -ne '/^  {/{h;:0;n;H;/^  }/!b0;g;\|"exec": *"\./bitcoin-util"|d};p' 
\
+               -i test/util/data/bitcoin-util-test.json || die
+
+       sed -e 's/^\(complete -F _bitcoind\b\).*$/\1'"$(usev daemon ' 
bitcoind')$(usev gui ' bitcoin-qt')/" \
+               -i contrib/completions/bash/bitcoind.bash-completion || die
+}
+
+src_configure() {
+       local wallet ; if use berkdb || use sqlite ; then wallet=enable ; else 
wallet=disable ; fi
+       local myeconfargs=(
+               --disable-static
+               --${wallet}-wallet
+               $(use_with sqlite)
+               $(use_with berkdb bdb)
+               $(use_enable systemtap usdt)
+               $(use_with upnp miniupnpc)
+               $(use_with nat-pmp natpmp)
+               $(use_enable test tests)
+               --disable-bench
+               --disable-fuzz{,-binary}
+               $(use_with qrcode qrencode)
+               --disable-ccache
+               $(use_enable asm)
+               $(use_enable zeromq zmq)
+               $(use_enable man)
+               $(use_enable external-signer)
+               --with-utils
+               $(use_enable {bitcoin,util}-cli)
+               --enable-util-tx
+               --${wallet}-util-wallet
+               --disable-util-util
+               # syscall sandbox is missing faccessat2 and pselect6, causing 
bitcoind to crash during tests;
+               # removed upstream for 26.0 in 
https://github.com/bitcoin/bitcoin/commit/32e2ffc39374f61bb2435da507f285459985df9e
+               --without-seccomp
+               $(use_with libs)
+               $(use_with daemon)
+               $(use_with gui gui qt5)
+               $(use_with dbus qtdbus)
+               $(use_with system-leveldb)
+               $(use_with system-libsecp256k1)
+       )
+       econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+       default
+
+       if use daemon && ! tc-is-cross-compiler ; then
+               TOPDIR="${S}" bash contrib/devtools/gen-bitcoin-conf.sh || die
+       fi
+       sed -e 's/ To use, copy this file$//p;Tp;:0;n;/save the 
file\.$/!b0;d;:p;p' \
+               -ni share/examples/bitcoin.conf || die
+}
+
+src_test() {
+       emake check
+
+       use daemon && edo "${PYTHON}" test/functional/test_runner.py \
+                       --ansi --extended --jobs="$(get_makeopts_jobs)" 
--timeout-factor="${TIMEOUT_FACTOR:-15}"
+}
+
+src_install() {
+       use external-signer && DOCS+=( doc/external-signer.md )
+       use berkdb || use sqlite && DOCS+=( doc/managing-wallets.md )
+       use libs && DOCS+=( doc/shared-libraries.md )
+       use systemtap && DOCS+=( doc/tracing.md )
+       use zeromq && DOCS+=( doc/zmq.md )
+
+       if use daemon ; then
+               # https://bugs.gentoo.org/757102
+               DOCS+=( share/rpcauth/rpcauth.py )
+               docompress -x "/usr/share/doc/${PF}/rpcauth.py"
+       fi
+
+       default
+
+       find "${ED}" -type f -name '*.la' -delete || die
+       ! use test || rm -f -- "${ED}"/usr/bin/test_bitcoin{,-qt} || die
+
+       newbashcomp contrib/completions/bash/bitcoin-tx.bash-completion 
bitcoin-tx
+       use bitcoin-cli && newbashcomp 
contrib/completions/bash/bitcoin-cli.bash-completion bitcoin-cli
+       if use daemon ; then
+               newbashcomp contrib/completions/bash/bitcoind.bash-completion 
bitcoind
+               use gui && bashcomp_alias bitcoind bitcoin-qt
+       elif use gui ; then
+               newbashcomp contrib/completions/bash/bitcoind.bash-completion 
bitcoin-qt
+       fi
+
+       if use daemon ; then
+               insinto /etc/bitcoin
+               doins share/examples/bitcoin.conf
+               fowners bitcoin:bitcoin /etc/bitcoin/bitcoin.conf
+               fperms 0660 /etc/bitcoin/bitcoin.conf
+
+               newconfd contrib/init/bitcoind.openrcconf bitcoind
+               newinitd "${FILESDIR}/bitcoind.openrc" bitcoind
+               systemd_newunit contrib/init/bitcoind.service bitcoind.service
+
+               keepdir /var/lib/bitcoind
+               fperms 0750 /var/lib/bitcoind
+               fowners bitcoin:bitcoin /var/lib/bitcoind
+               dosym -r {/etc/bitcoin,/var/lib/bitcoind}/bitcoin.conf
+
+               insinto /etc/logrotate.d
+               newins "${FILESDIR}/bitcoind.logrotate-r1" bitcoind
+       fi
+
+       if use gui ; then
+               insinto /usr/share/icons/hicolor/scalable/apps
+               newins src/qt/res/src/bitcoin.svg bitcoin128.svg
+
+               domenu "${FILESDIR}/org.bitcoin.bitcoin-qt.desktop"
+
+               if use kde ; then
+                       insinto /usr/share/kservices5
+                       doins "${FILESDIR}/bitcoin-qt.protocol"
+               fi
+       fi
+
+       if use examples ; then
+               docinto examples
+               dodoc -r contrib/{linearize,qos}
+               use zeromq && dodoc -r contrib/zmq
+       fi
+}
+
+pkg_preinst() {
+       if use daemon && [[ -d "${EROOT}/var/lib/bitcoin/.bitcoin" ]] ; then
+               if [[ -h "${EROOT}/var/lib/bitcoin/.bitcoin" ]] ; then
+                       dosym -r /var/lib/bitcoin{d,/.bitcoin}
+               elif [[ ! -e "${EROOT}/var/lib/bitcoind" || -h 
"${EROOT}/var/lib/bitcoind" ]] ; then
+                       efmt ewarn <<-EOF
+                               Your bitcoind data directory is located at 
${EPREFIX}/var/lib/bitcoin/.bitcoin,
+                               a deprecated location. To perform an automated 
migration to
+                               ${EPREFIX}/var/lib/bitcoind, first shut down 
any running bitcoind instances
+                               that may be using the deprecated path, and then 
run:
+
+                               # emerge --config ${CATEGORY}/${PN}
+                               EOF
+                       insinto /var/lib/bitcoin
+                       mv -- "${ED}/var/lib/bitcoin"{d,/.bitcoin} || die
+                       dosym -r {/etc/,/var/lib/bitcoin/.}bitcoin/bitcoin.conf
+                       dosym -r /var/lib/bitcoin{/.bitcoin,d}
+               fi
+       fi
+
+       if use kde && [[ -d "${EROOT}/usr/share/kde4" ]] ; then
+               dosym -r 
/usr/share/{kservices5,kde4/services}/bitcoin-qt.protocol
+       fi
+}
+
+pkg_postinst() {
+       # we don't use xdg.eclass because it adds unconditional IDEPENDs
+       if use gui ; then
+               xdg_desktop_database_update
+               xdg_icon_cache_update
+       fi
+
+       if use daemon && [[ -z "${REPLACING_VERSIONS}" ]] ; then
+               efmt -su elog <<-EOF
+                       To have ${PN} automatically use Tor when it's running, 
be sure your \
+                       'torrc' config file has 'ControlPort' and 
'CookieAuthentication' set up \
+                       correctly, and:
+                       - Using an init script: add the 'bitcoin' user to the 
'tor' user group.
+                       - Running bitcoind directly: add that user to the 'tor' 
user group.
+                       EOF
+       fi
+
+       if use bitcoin-cli && use daemon ; then
+               efmt -su elog <<-EOF
+                       To use bitcoin-cli with the /etc/init.d/bitcoind 
service:
+                        - Add your user(s) to the 'bitcoin' group.
+                        - Symlink ~/.bitcoin to /var/lib/bitcoind.
+               EOF
+       fi
+}
+
+pkg_postrm() {
+       if use gui ; then
+               xdg_desktop_database_update
+               xdg_icon_cache_update
+       fi
+}
+
+pkg_config() {
+       if [[ -d "${EROOT}/var/lib/bitcoin/.bitcoin" && ! -h 
"${EROOT}/var/lib/bitcoin/.bitcoin" ]] &&
+               [[ ! -e "${EROOT}/var/lib/bitcoind" || -h 
"${EROOT}/var/lib/bitcoind" ]]
+       then
+               in_use() {
+                       : ${1:?} ; local each
+                       if command -v fuser >/dev/null ; then
+                               fuser "${@}" >/dev/null 2>&1
+                       elif command -v lsof >/dev/null ; then
+                               for each ; do
+                                       lsof -- "${each}" && return
+                               done >/dev/null 2>&1
+                       elif mountpoint -q /proc ; then
+                               { find /proc/[0-9]*/{cwd,exe,fd} -type l -exec 
readlink -- {} +
+                                       awk '{ print $6 }' /proc/[0-9]*/maps
+                               } 2>/dev/null | grep -Fqx -f <(printf '%s\n' 
"${@}" ; readlink -m -- "${@}")
+                       else
+                               return 13
+                       fi
+               }
+               ebegin "Checking that ${EPREFIX}/var/lib/bitcoin/.bitcoin is 
not in use"
+               in_use "${EROOT}/var/lib/bitcoin/.bitcoin"{,/.lock}
+               case $? in
+                       0)
+                               eend 1
+                               efmt eerror <<-EOF
+                                       ${EPREFIX}/var/lib/bitcoin/.bitcoin is 
currently in use. Please stop any
+                                       running bitcoind instances that may be 
using this data directory, and then
+                                       retry this migration.
+                                       EOF
+                               die "${EPREFIX}/var/lib/bitcoin/.bitcoin is in 
use"
+                               ;;
+                       13)
+                               eend 1
+                               if [[ "${BITCOIND_IS_NOT_RUNNING}" != 1 ]] ; 
then
+                                       efmt eerror <<-EOF
+                                               Found no way to check whether 
${EPREFIX}/var/lib/bitcoin/.bitcoin is in use.
+                                               Do you have /proc mounted? To 
force the migration without checking, re-run
+                                               this command with 
BITCOIND_IS_NOT_RUNNING=1.
+                                               EOF
+                                       die "could not check whether 
${EPREFIX}/var/lib/bitcoin/.bitcoin is in use"
+                               fi
+                               ;;
+                       *)
+                               eend 0
+                               ;;
+               esac
+
+               # find all relative symlinks that point outside the data dir
+               local -A symlinks
+               cd -- "${EROOT}/var/lib/bitcoin/.bitcoin" || die
+               local each ; while read -r -d '' each ; do
+                       local target=$(readlink -- "${each}") && [[ "${target}" 
== ../* ]] &&
+                               target=$(readlink -e -- "${each}") && [[ 
"${target}" != "${EROOT}/var/lib/bitcoin/.bitcoin/"* ]] &&
+                               symlinks["${each}"]="${target}"
+               done < <(find -type l -print0)
+
+               einfo "Moving your ${EPREFIX}/var/lib/bitcoin/.bitcoin to 
${EPREFIX}/var/lib/bitcoind."
+               rm -f -- "${EROOT}/var/lib/bitcoind" || die
+               mv --no-clobber --no-copy --no-target-directory -- 
"${EROOT}/var/lib/bitcoin"{/.bitcoin,d} ||
+                       die "Failed to move your 
${EPREFIX}/var/lib/bitcoin/.bitcoin to ${EPREFIX}/var/lib/bitcoind."
+
+               # fix up the relative symlinks
+               cd -- "${EROOT}/var/lib/bitcoind" || die
+               for each in "${!symlinks[@]}" ; do
+                       ln -fnrs -- "${symlinks[${each}]}" "${each}"  # keep 
going even if this fails
+               done
+
+               einfo 'Creating a transitional symlink for your convenience.'
+               ln -fnrsv -- "${EROOT}/var/lib/bitcoin"{d,/.bitcoin}
+               einfo 'You may remove this link when you no longer need it.'
+       else
+               einfo 'Nothing to do.'
+       fi
+}

diff --git a/net-p2p/bitcoin-core/bitcoin-core-26.1_rc1.ebuild 
b/net-p2p/bitcoin-core/bitcoin-core-26.1_rc1.ebuild
new file mode 100644
index 000000000000..10e917bd4b78
--- /dev/null
+++ b/net-p2p/bitcoin-core/bitcoin-core-26.1_rc1.ebuild
@@ -0,0 +1,426 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit autotools bash-completion-r1 check-reqs db-use desktop edo 
multiprocessing python-any-r1 systemd toolchain-funcs xdg-utils
+
+DESCRIPTION="Reference implementation of the Bitcoin cryptocurrency"
+HOMEPAGE="https://bitcoincore.org/";
+SRC_URI="https://github.com/bitcoin/bitcoin/archive/v${PV/_rc/rc}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${PN/-core}-${PV/_rc/rc}"
+
+LICENSE="MIT"
+SLOT="0"
+if [[ "${PV}" == *_rc* ]] ; then
+       KEYWORDS=""
+else
+       KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+fi
+# IUSE="+cli" doesn't work due to https://bugs.gentoo.org/831045#c3
+IUSE="+asm +berkdb +bitcoin-cli +daemon dbus examples +external-signer gui kde 
libs +man nat-pmp +qrcode +sqlite system-leveldb +system-libsecp256k1 systemtap 
test upnp zeromq"
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="
+       dbus? ( gui )
+       kde? ( gui )
+       qrcode? ( gui )
+       system-leveldb? ( || ( daemon gui ) )
+"
+# dev-libs/univalue is now bundled, as upstream dropped support for system copy
+# and their version in the Bitcoin repo has deviated a fair bit from upstream.
+# Upstream also seems very inactive.
+RDEPEND="
+       !dev-util/bitcoin-tx
+       >=dev-libs/boost-1.81.0:=
+       >=dev-libs/libevent-2.1.12:=
+       berkdb? ( >=sys-libs/db-4.8.30:$(db_ver_to_slot 4.8)=[cxx] )
+       bitcoin-cli? ( !net-p2p/bitcoin-cli )
+       daemon? (
+               !net-p2p/bitcoind
+               acct-group/bitcoin
+               acct-user/bitcoin
+       )
+       gui? (
+               !net-p2p/bitcoin-qt
+               >=dev-qt/qtcore-5.15.10:5
+               >=dev-qt/qtgui-5.15.10:5
+               >=dev-qt/qtnetwork-5.15.10:5
+               >=dev-qt/qtwidgets-5.15.10:5
+               dbus? ( >=dev-qt/qtdbus-5.15.10:5 )
+       )
+       libs? ( !net-libs/libbitcoinconsensus )
+       nat-pmp? ( >=net-libs/libnatpmp-20220705:= )
+       qrcode? ( >=media-gfx/qrencode-4.1.1:= )
+       sqlite? ( >=dev-db/sqlite-3.38.5:= )
+       system-leveldb? ( virtual/bitcoin-leveldb )
+       system-libsecp256k1? ( 
>=dev-libs/libsecp256k1-0.4.0:=[ellswift,extrakeys,recovery,schnorr] )
+       upnp? ( >=net-libs/miniupnpc-2.2.2:= )
+       zeromq? ( >=net-libs/zeromq-4.3.4:= )
+"
+DEPEND="
+       ${RDEPEND}
+       systemtap? ( >=dev-debug/systemtap-4.8 )
+"
+BDEPEND="
+       virtual/pkgconfig
+       daemon? (
+               acct-group/bitcoin
+               acct-user/bitcoin
+       )
+       gui? ( >=dev-qt/linguist-tools-5.15.10:5 )
+       test? ( ${PYTHON_DEPS} )
+"
+IDEPEND="
+       gui? ( dev-util/desktop-file-utils )
+"
+
+DOCS=(
+       doc/bips.md
+       doc/bitcoin-conf.md
+       doc/descriptors.md
+       doc/files.md
+       doc/i2p.md
+       doc/JSON-RPC-interface.md
+       doc/multisig-tutorial.md
+       doc/p2p-bad-ports.md
+       doc/psbt.md
+       doc/reduce-memory.md
+       doc/reduce-traffic.md
+       doc/release-notes.md
+       doc/REST-interface.md
+       doc/tor.md
+)
+
+PATCHES=(
+       "${FILESDIR}/26.0-syslibs.patch"
+       "${FILESDIR}/26.0-init.patch"
+)
+
+efmt() {
+       : ${1:?} ; local l ; while read -r l ; do "${!#}" "${l}" ; done < <(fmt 
"${@:1:$#-1}")
+}
+
+pkg_pretend() {
+       if ! use daemon && ! use gui && ! has_version 
"${CATEGORY}/${PN}[-daemon,-gui(-),-qt5(-)]" ; then
+               efmt ewarn <<-EOF
+                       You are enabling neither USE="daemon" nor USE="gui". 
This is a valid
+                       configuration, but you will be unable to run a Bitcoin 
node using this
+                       installation.
+               EOF
+       fi
+       if use daemon && ! use bitcoin-cli && ! has_version 
"${CATEGORY}/${PN}[daemon,-bitcoin-cli]" ; then
+               efmt ewarn <<-EOF
+                       You are enabling USE="daemon" but not 
USE="bitcoin-cli". This is a valid
+                       configuration, but you will be unable to interact with 
your bitcoind node
+                       via the command line using this installation.
+               EOF
+       fi
+       if ! use berkdb && ! use sqlite &&
+               { { use daemon && ! has_version 
"${CATEGORY}/${PN}[daemon,-berkdb,-sqlite]" ; } ||
+                 { use gui && ! has_version 
"${CATEGORY}/${PN}[gui,-berkdb,-sqlite]" ; } ; }
+       then
+               efmt ewarn <<-EOF
+                       You are enabling neither USE="berkdb" nor USE="sqlite". 
This is a valid
+                       configuration, but your Bitcoin node will be unable to 
open any wallets.
+               EOF
+       fi
+
+       # test/functional/feature_pruning.py requires 4 GB disk space
+       # test/functional/wallet_pruning.py requires 1.3 GB disk space
+       use test && CHECKREQS_DISK_BUILD="6G" check-reqs_pkg_pretend
+}
+
+pkg_setup() {
+       if use test ; then
+               CHECKREQS_DISK_BUILD="6G" check-reqs_pkg_setup
+               python-any-r1_pkg_setup
+       fi
+}
+
+src_prepare() {
+       default
+       ! use system-leveldb || rm -r src/leveldb || die
+       if use system-libsecp256k1 ; then
+               rm -r src/secp256k1 || die
+               sed -e '/^DIST_SUBDIRS *=/s/\bsecp256k1\b//' -i src/Makefile.am 
|| die
+       else
+               pushd src/secp256k1 >/dev/null || die
+               AT_NOELIBTOOLIZE=yes eautoreconf
+               popd >/dev/null || die
+       fi
+       eautoreconf
+
+       # we say --disable-util-util, so we can't test bitcoin-util
+       sed -ne '/^  {/{h;:0;n;H;/^  }/!b0;g;\|"exec": *"\./bitcoin-util"|d};p' 
\
+               -i test/util/data/bitcoin-util-test.json || die
+
+       sed -e 's/^\(complete -F _bitcoind\b\).*$/\1'"$(usev daemon ' 
bitcoind')$(usev gui ' bitcoin-qt')/" \
+               -i contrib/completions/bash/bitcoind.bash || die
+}
+
+src_configure() {
+       local wallet ; if use berkdb || use sqlite ; then wallet=enable ; else 
wallet=disable ; fi
+       local myeconfargs=(
+               --disable-static
+               --${wallet}-wallet
+               $(use_with sqlite)
+               $(use_with berkdb bdb)
+               $(use_enable systemtap usdt)
+               $(use_with upnp miniupnpc)
+               $(use_with nat-pmp natpmp)
+               $(use_enable test tests)
+               --disable-bench
+               --disable-fuzz{,-binary}
+               $(use_with qrcode qrencode)
+               --disable-ccache
+               $(use_enable asm)
+               $(use_enable zeromq zmq)
+               $(use_enable man)
+               $(use_enable external-signer)
+               --with-utils
+               $(use_enable {bitcoin,util}-cli)
+               --enable-util-tx
+               --${wallet}-util-wallet
+               --disable-util-util
+               $(use_with libs)
+               $(use_with daemon)
+               $(use_with gui gui qt5)
+               $(use_with dbus qtdbus)
+               $(use_with system-leveldb)
+               $(use_with system-libsecp256k1)
+       )
+       econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+       default
+
+       if use daemon && ! tc-is-cross-compiler ; then
+               TOPDIR="${S}" bash contrib/devtools/gen-bitcoin-conf.sh || die
+       fi
+       sed -e 's/ To use, copy this file$//p;Tp;:0;n;/save the 
file\.$/!b0;d;:p;p' \
+               -ni share/examples/bitcoin.conf || die
+}
+
+src_test() {
+       emake check
+
+       use daemon && edo "${PYTHON}" test/functional/test_runner.py \
+                       --ansi --extended --jobs="$(get_makeopts_jobs)" 
--timeout-factor="${TIMEOUT_FACTOR:-15}"
+}
+
+src_install() {
+       use external-signer && DOCS+=( doc/external-signer.md )
+       use berkdb || use sqlite && DOCS+=( doc/managing-wallets.md )
+       use libs && DOCS+=( doc/shared-libraries.md )
+       use systemtap && DOCS+=( doc/tracing.md )
+       use zeromq && DOCS+=( doc/zmq.md )
+
+       if use daemon ; then
+               # https://bugs.gentoo.org/757102
+               DOCS+=( share/rpcauth/rpcauth.py )
+               docompress -x "/usr/share/doc/${PF}/rpcauth.py"
+       fi
+
+       default
+
+       find "${ED}" -type f -name '*.la' -delete || die
+       ! use test || rm -f -- "${ED}"/usr/bin/test_bitcoin{,-qt} || die
+
+       newbashcomp contrib/completions/bash/bitcoin-tx.bash bitcoin-tx
+       use bitcoin-cli && newbashcomp 
contrib/completions/bash/bitcoin-cli.bash bitcoin-cli
+       if use daemon ; then
+               newbashcomp contrib/completions/bash/bitcoind.bash bitcoind
+               use gui && bashcomp_alias bitcoind bitcoin-qt
+       elif use gui ; then
+               newbashcomp contrib/completions/bash/bitcoind.bash bitcoin-qt
+       fi
+
+       if use daemon ; then
+               insinto /etc/bitcoin
+               doins share/examples/bitcoin.conf
+               fowners bitcoin:bitcoin /etc/bitcoin/bitcoin.conf
+               fperms 0660 /etc/bitcoin/bitcoin.conf
+
+               newconfd contrib/init/bitcoind.openrcconf bitcoind
+               newinitd "${FILESDIR}/bitcoind.openrc" bitcoind
+               systemd_newunit contrib/init/bitcoind.service bitcoind.service
+
+               keepdir /var/lib/bitcoind
+               fperms 0750 /var/lib/bitcoind
+               fowners bitcoin:bitcoin /var/lib/bitcoind
+               dosym -r {/etc/bitcoin,/var/lib/bitcoind}/bitcoin.conf
+
+               insinto /etc/logrotate.d
+               newins "${FILESDIR}/bitcoind.logrotate-r1" bitcoind
+       fi
+
+       if use gui ; then
+               insinto /usr/share/icons/hicolor/scalable/apps
+               newins src/qt/res/src/bitcoin.svg bitcoin128.svg
+
+               domenu "${FILESDIR}/org.bitcoin.bitcoin-qt.desktop"
+
+               if use kde ; then
+                       insinto /usr/share/kservices5
+                       doins "${FILESDIR}/bitcoin-qt.protocol"
+               fi
+       fi
+
+       if use examples ; then
+               docinto examples
+               dodoc -r contrib/{linearize,qos}
+               use zeromq && dodoc -r contrib/zmq
+       fi
+}
+
+pkg_preinst() {
+       if use daemon && [[ -d "${EROOT}/var/lib/bitcoin/.bitcoin" ]] ; then
+               if [[ -h "${EROOT}/var/lib/bitcoin/.bitcoin" ]] ; then
+                       dosym -r /var/lib/bitcoin{d,/.bitcoin}
+               elif [[ ! -e "${EROOT}/var/lib/bitcoind" || -h 
"${EROOT}/var/lib/bitcoind" ]] ; then
+                       efmt ewarn <<-EOF
+                               Your bitcoind data directory is located at 
${EPREFIX}/var/lib/bitcoin/.bitcoin,
+                               a deprecated location. To perform an automated 
migration to
+                               ${EPREFIX}/var/lib/bitcoind, first shut down 
any running bitcoind instances
+                               that may be using the deprecated path, and then 
run:
+
+                               # emerge --config ${CATEGORY}/${PN}
+                               EOF
+                       insinto /var/lib/bitcoin
+                       mv -- "${ED}/var/lib/bitcoin"{d,/.bitcoin} || die
+                       dosym -r {/etc/,/var/lib/bitcoin/.}bitcoin/bitcoin.conf
+                       dosym -r /var/lib/bitcoin{/.bitcoin,d}
+               fi
+       fi
+
+       if use kde && [[ -d "${EROOT}/usr/share/kde4" ]] ; then
+               dosym -r 
/usr/share/{kservices5,kde4/services}/bitcoin-qt.protocol
+       fi
+}
+
+pkg_postinst() {
+       # we don't use xdg.eclass because it adds unconditional IDEPENDs
+       if use gui ; then
+               xdg_desktop_database_update
+               xdg_icon_cache_update
+       fi
+
+       if use daemon && [[ -z "${REPLACING_VERSIONS}" ]] ; then
+               efmt -su elog <<-EOF
+                       To have ${PN} automatically use Tor when it's running, 
be sure your \
+                       'torrc' config file has 'ControlPort' and 
'CookieAuthentication' set up \
+                       correctly, and:
+                       - Using an init script: add the 'bitcoin' user to the 
'tor' user group.
+                       - Running bitcoind directly: add that user to the 'tor' 
user group.
+                       EOF
+       fi
+
+       if use bitcoin-cli && use daemon ; then
+               efmt -su elog <<-EOF
+                       To use bitcoin-cli with the /etc/init.d/bitcoind 
service:
+                        - Add your user(s) to the 'bitcoin' group.
+                        - Symlink ~/.bitcoin to /var/lib/bitcoind.
+               EOF
+       fi
+
+       if use berkdb ; then
+               # https://github.com/bitcoin/bitcoin/pull/28597
+               # https://bitcoincore.org/en/releases/26.0/#wallet
+               efmt ewarn <<-EOF
+                       Creation of legacy (Berkeley DB) wallets is refused 
starting with Bitcoin
+                       Core 26.0, pending the deprecation and eventual removal 
of support for
+                       legacy wallets altogether in future releases. At 
present you can still
+                       force support for the creation of legacy wallets by 
adding the following
+                       line to your bitcoin.conf:
+
+                       deprecatedrpc=create_bdb
+               EOF
+       fi
+}
+
+pkg_postrm() {
+       if use gui ; then
+               xdg_desktop_database_update
+               xdg_icon_cache_update
+       fi
+}
+
+pkg_config() {
+       if [[ -d "${EROOT}/var/lib/bitcoin/.bitcoin" && ! -h 
"${EROOT}/var/lib/bitcoin/.bitcoin" ]] &&
+               [[ ! -e "${EROOT}/var/lib/bitcoind" || -h 
"${EROOT}/var/lib/bitcoind" ]]
+       then
+               in_use() {
+                       : ${1:?} ; local each
+                       if command -v fuser >/dev/null ; then
+                               fuser "${@}" >/dev/null 2>&1
+                       elif command -v lsof >/dev/null ; then
+                               for each ; do
+                                       lsof -- "${each}" && return
+                               done >/dev/null 2>&1
+                       elif mountpoint -q /proc ; then
+                               { find /proc/[0-9]*/{cwd,exe,fd} -type l -exec 
readlink -- {} +
+                                       awk '{ print $6 }' /proc/[0-9]*/maps
+                               } 2>/dev/null | grep -Fqx -f <(printf '%s\n' 
"${@}" ; readlink -m -- "${@}")
+                       else
+                               return 13
+                       fi
+               }
+               ebegin "Checking that ${EPREFIX}/var/lib/bitcoin/.bitcoin is 
not in use"
+               in_use "${EROOT}/var/lib/bitcoin/.bitcoin"{,/.lock}
+               case $? in
+                       0)
+                               eend 1
+                               efmt eerror <<-EOF
+                                       ${EPREFIX}/var/lib/bitcoin/.bitcoin is 
currently in use. Please stop any
+                                       running bitcoind instances that may be 
using this data directory, and then
+                                       retry this migration.
+                                       EOF
+                               die "${EPREFIX}/var/lib/bitcoin/.bitcoin is in 
use"
+                               ;;
+                       13)
+                               eend 1
+                               if [[ "${BITCOIND_IS_NOT_RUNNING}" != 1 ]] ; 
then
+                                       efmt eerror <<-EOF
+                                               Found no way to check whether 
${EPREFIX}/var/lib/bitcoin/.bitcoin is in use.
+                                               Do you have /proc mounted? To 
force the migration without checking, re-run
+                                               this command with 
BITCOIND_IS_NOT_RUNNING=1.
+                                               EOF
+                                       die "could not check whether 
${EPREFIX}/var/lib/bitcoin/.bitcoin is in use"
+                               fi
+                               ;;
+                       *)
+                               eend 0
+                               ;;
+               esac
+
+               # find all relative symlinks that point outside the data dir
+               local -A symlinks
+               cd -- "${EROOT}/var/lib/bitcoin/.bitcoin" || die
+               local each ; while read -r -d '' each ; do
+                       local target=$(readlink -- "${each}") && [[ "${target}" 
== ../* ]] &&
+                               target=$(readlink -e -- "${each}") && [[ 
"${target}" != "${EROOT}/var/lib/bitcoin/.bitcoin/"* ]] &&
+                               symlinks["${each}"]="${target}"
+               done < <(find -type l -print0)
+
+               einfo "Moving your ${EPREFIX}/var/lib/bitcoin/.bitcoin to 
${EPREFIX}/var/lib/bitcoind."
+               rm -f -- "${EROOT}/var/lib/bitcoind" || die
+               mv --no-clobber --no-copy --no-target-directory -- 
"${EROOT}/var/lib/bitcoin"{/.bitcoin,d} ||
+                       die "Failed to move your 
${EPREFIX}/var/lib/bitcoin/.bitcoin to ${EPREFIX}/var/lib/bitcoind."
+
+               # fix up the relative symlinks
+               cd -- "${EROOT}/var/lib/bitcoind" || die
+               for each in "${!symlinks[@]}" ; do
+                       ln -fnrs -- "${symlinks[${each}]}" "${each}"  # keep 
going even if this fails
+               done
+
+               einfo 'Creating a transitional symlink for your convenience.'
+               ln -fnrsv -- "${EROOT}/var/lib/bitcoin"{d,/.bitcoin}
+               einfo 'You may remove this link when you no longer need it.'
+       else
+               einfo 'Nothing to do.'
+       fi
+}

Reply via email to