monero-gui: update to 0.17.2.3.

This commit is contained in:
Helmut Pozimski 2021-09-02 21:16:09 +02:00
parent cc88266354
commit 664638852c
1 changed files with 12 additions and 9 deletions

View File

@ -1,9 +1,9 @@
# Template file for 'monero-gui' # Template file for 'monero-gui'
pkgname=monero-gui pkgname=monero-gui
version=0.17.2.2 version=0.17.2.3
revision=1 revision=1
_monero_version=0.17.2.0 _monero_version=0.17.2.3
_randomx_version="1.1.8" _randomx_version="1.1.9"
# the revision monero uses as a submodule for the specific version # the revision monero uses as a submodule for the specific version
_rapidjson_gitrev="129d19ba7f496df5e33658527a7158c79b99c21c" _rapidjson_gitrev="129d19ba7f496df5e33658527a7158c79b99c21c"
_supercop_gitrev="633500ad8c8759995049ccd022107d1fa8a1bbc9" _supercop_gitrev="633500ad8c8759995049ccd022107d1fa8a1bbc9"
@ -17,7 +17,7 @@ qt5-declarative-devel readline-devel unbound-devel libsodium-devel hidapi-devel
qt5-svg-devel libgcrypt-devel zeromq-devel" qt5-svg-devel libgcrypt-devel zeromq-devel"
depends="qt5-graphicaleffects qt5-quickcontrols qt5-quickcontrols2 qt5-xmlpatterns" depends="qt5-graphicaleffects qt5-quickcontrols qt5-quickcontrols2 qt5-xmlpatterns"
short_desc="GUI for the core Monero implementation" short_desc="GUI for the core Monero implementation"
maintainer="Helmut Pozimski <helmut@pozimski.eu>" maintainer="Orphaned <orphan@voidlinux.org>"
license="BSD-3-Clause" license="BSD-3-Clause"
homepage="https://getmonero.org" homepage="https://getmonero.org"
distfiles="https://github.com/monero-project/monero-gui/archive/v${version}.tar.gz distfiles="https://github.com/monero-project/monero-gui/archive/v${version}.tar.gz
@ -26,9 +26,9 @@ distfiles="https://github.com/monero-project/monero-gui/archive/v${version}.tar.
https://github.com/Tencent/rapidjson/archive/${_rapidjson_gitrev}.tar.gz https://github.com/Tencent/rapidjson/archive/${_rapidjson_gitrev}.tar.gz
https://github.com/monero-project/supercop/archive/${_supercop_gitrev}.tar.gz https://github.com/monero-project/supercop/archive/${_supercop_gitrev}.tar.gz
https://github.com/dlbeer/quirc/archive/${_quirc_gitrev}.tar.gz" https://github.com/dlbeer/quirc/archive/${_quirc_gitrev}.tar.gz"
checksum="8cdefdffb99ce0fb3e62f5ae3292a5fe212497bc95d346219d59eda34d0dd4c6 checksum="aeab35380282b0403be926b78d5249df2f97f9cbe36bb374ac39daf4f02bb349
5e9bd2e565a57b4ae9f0d851704725b2e0b18c4a94051e56d5deae4e74727496 e4462f8909bdc5e66d76f4023374ff759159c15fe7d407f0c21619769e87c35d
f982a12d18b1d260bef2a1d3c46ae4902975fbf63abb38ca6413c96d1778db3a b878fd6ea6d4e1dcdfa085427ce4666c1085e8c5a9e049c04ca2036b4aead0f5
44b007d419ac21b6affec58991e865ee572346ead19b73cf1c3e4e11c7a81273 44b007d419ac21b6affec58991e865ee572346ead19b73cf1c3e4e11c7a81273
b973b9d8269ec4d97c3c3443f0dad96d09f72b1b30e616e0947557adbdbb03f7 b973b9d8269ec4d97c3c3443f0dad96d09f72b1b30e616e0947557adbdbb03f7
c8366aecb6ba48ec50a7e579a4fa18eb55c3c4be7d3efb2a83726157977f4ca6" c8366aecb6ba48ec50a7e579a4fa18eb55c3c4be7d3efb2a83726157977f4ca6"
@ -68,7 +68,7 @@ post_patch() {
cd monero cd monero
for f in "${FILESDIR}"/*.patch; do for f in "${FILESDIR}"/*.patch; do
echo "Applying $f" echo "Applying $f"
patch -Np0 -i "$f" patch -Np1 -i "$f"
done done
} }
@ -81,12 +81,15 @@ pre_configure() {
} }
pre_build() { pre_build() {
cd src/zxcvbn-c
cmake .
cd ../..
if [ "$CROSS_BUILD" ]; then if [ "$CROSS_BUILD" ]; then
# The dictgen binary is executed during the build to generate code # The dictgen binary is executed during the build to generate code
# but is not included in the binary package. It thus needs to be # but is not included in the binary package. It thus needs to be
# built for the host # built for the host
CXX=${CXX_host} CXXFLAGS="${XBPS_CXXFLAGS}" LDFLAGS="${XBPS_LDFLAGS}" \ CXX=${CXX_host} CXXFLAGS="${XBPS_CXXFLAGS}" LDFLAGS="${XBPS_LDFLAGS}" \
make ${makejobs} -C src/zxcvbn-c dictgen make ${makejobs} -C src/zxcvbn-c
# The generate_translations_header binary is executed during the build # The generate_translations_header binary is executed during the build
# but is not included in the binary package. It thus needs to be # but is not included in the binary package. It thus needs to be
# built for the host # built for the host