For all release notes since 0.21.2, see [1]. This commit also: - removes the package patches, all included in this release, - removes the patch entry in ".checkpackageignore", - adds a comment about pgp signature check in the hash file, - updates the license hash, due to year update, - adds the requirement on gcc >= 9, see [2], - removes the dependency on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 which is no longer needed, due to the gcc version requirement. Fixes: - [3] Note: this CVE-2023-33297 is not explicitly mentioned in the Bitcoin core release notes. It is not either appearing in CVE list at [4]. The change corresponding to this vulnerability is "#27610 Improve performance of p2p inv to send queues" in the version 24.1 release note. See [5] and [6]. [1] https://github.com/bitcoin/bitcoin/tree/v26.0/doc/release-notes [2] https://github.com/bitcoin/bitcoin/blob/v26.0/doc/dependencies.md [3] https://nvd.nist.gov/vuln/detail/CVE-2023-33297 [4] https://en.bitcoin.it/wiki/Common_Vulnerabilities_and_Exposures [5] https://github.com/bitcoin/bitcoin/blob/v26.0/doc/release-notes/release-notes-24.1.md?plain=1#L45 [6] https://github.com/bitcoin/bitcoin/pull/27610 Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
39 lines
1021 B
Makefile
39 lines
1021 B
Makefile
################################################################################
|
|
#
|
|
# bitcoin
|
|
#
|
|
################################################################################
|
|
|
|
BITCOIN_VERSION = 26.0
|
|
BITCOIN_SITE = https://bitcoincore.org/bin/bitcoin-core-$(BITCOIN_VERSION)
|
|
BITCOIN_AUTORECONF = YES
|
|
BITCOIN_LICENSE = MIT
|
|
BITCOIN_LICENSE_FILES = COPYING
|
|
BITCOIN_CPE_ID_VENDOR = bitcoin
|
|
BITCOIN_CPE_ID_PRODUCT = bitcoin_core
|
|
BITCOIN_DEPENDENCIES = host-pkgconf boost libevent
|
|
BITCOIN_MAKE_ENV = BITCOIN_GENBUILD_NO_GIT=1
|
|
BITCOIN_CONF_OPTS = \
|
|
--disable-bench \
|
|
--disable-wallet \
|
|
--disable-tests \
|
|
--with-boost-libdir=$(STAGING_DIR)/usr/lib/ \
|
|
--disable-hardening \
|
|
--without-gui
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBMINIUPNPC),y)
|
|
BITCOIN_DEPENDENCIES += libminiupnpc
|
|
BITCOIN_CONF_OPTS += --with-miniupnpc
|
|
else
|
|
BITCOIN_CONF_OPTS += --without-miniupnpc
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZEROMQ),y)
|
|
BITCOIN_DEPENDENCIES += zeromq
|
|
BITCOIN_CONF_OPTS += --with-zmq
|
|
else
|
|
BITCOIN_CONF_OPTS += --without-zmq
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|