ppc64le builder required changes

popt: too old to have a working config.guess
libusb-compat: not needed for gpg2
gpg2: depend on libusb not libusb-compat

Signed-off-by: Thierry Laurion <insurgo@riseup.net>
This commit is contained in:
Thierry Laurion 2024-01-10 17:46:28 -05:00
parent de7dad25d7
commit a42812d60c
No known key found for this signature in database
GPG Key ID: 9A53E1BB3FF00461
3 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ gpg2_dir := gnupg-$(gpg2_version)
gpg2_tar := gnupg-$(gpg2_version).tar.bz2
gpg2_url := https://www.gnupg.org/ftp/gcrypt/gnupg/$(gpg2_tar)
gpg2_hash := 1d79158dd01d992431dd2e3facb89fdac97127f89784ea2cb610c600fb0c1483
gpg2_depends := libgpg-error libgcrypt libksba libassuan npth libusb-compat $(musl_dep)
gpg2_depends := libgpg-error libgcrypt libksba libassuan npth libusb $(musl_dep)
# For reproducibility reasons we have to override the exec_prefix
# and datarootdir on the configure line so that the Makefiles will

View File

@ -3,7 +3,6 @@
# This is a bit of a hack to set it up.
modules-$(CONFIG_GPG) += libusb-compat
modules-$(CONFIG_GPG2) += libusb-compat
libusb-compat_version := 0.1.5
libusb-compat_dir := libusb-compat-$(libusb-compat_version)

View File

@ -1,16 +1,17 @@
modules-$(CONFIG_POPT) += popt
popt_version := 1.16
popt_version := 1.19
popt_dir := popt-$(popt_version)
popt_tar := popt-$(popt_version).tar.gz
popt_url := https://launchpad.net/popt/head/$(popt_version)/+download/$(popt_tar)
popt_hash := e728ed296fe9f069a0e005003c3d6b2dde3d9cad453422a10d6558616d304cc8
popt_url := https://fossies.org/linux/misc/$(popt_tar)
popt_hash := c25a4838fc8e4c1c8aacb8bd620edb3084a3d63bf8987fdad3ca2758c63240f9
popt_configure := ./configure \
$(CROSS_TOOLS) \
--prefix "/" \
--host $(MUSL_ARCH)-elf-linux \
popt_target := \
$(MAKE_JOBS) \
$(CROSS_TOOLS) \
@ -20,6 +21,6 @@ popt_target := \
DESTDIR="$(INSTALL)" \
install
popt_libraries := .libs/libpopt.so.0
popt_libraries := src/.libs/libpopt.so.0
popt_depends := $(musl_dep)