2f89476ad9
This patch is based on a patch sent by Vicente Olivert Riera and commented by Arnout Vandecappelle [1]. - Bump version to 1.23 - Add a hook to fix cross-compilation - Fix license and license files - Remove patch applied upstream - Add a BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS variable - Propagate the dependencies using that variable: * package/cppcms * package/crda * package/gnupg2 - package/gcr - package/midori * package/kodi * package/libaacs * package/libassuan * package/libgcrypt * package/libgpgme * package/libksba * package/libmicrohttpd - package/janus-gateway - package/kodi - package/ola - package/systemd * package/libssh * package/libssh2 - package/php-ssh2 * package/netatalk * package/network-manager * package/ntfs-3g * package/opkg * package/php-gnupg * package/rng-tools * package/strongswan * package/vpnc [1] http://patchwork.ozlabs.org/patch/416427/ Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> [Thomas: - rebase on master - changing systemd no longer needed, as it no longer selects libgcrypt.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> [Maxime: - rebase on master - bump to new version - propagate dependencies to missing packages] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Reviewed-by: Romain Naour <romain.naour@gmail.com> [Thomas: - fix hash file. - change the way to handle the various arch so that it works properly for uClibc. - add nios2 arch support. - Maxime Hadjinlian learned some basic Emacs-fu to do the final fixups of this commit.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
49 lines
1.5 KiB
Plaintext
49 lines
1.5 KiB
Plaintext
config BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS
|
|
bool
|
|
# see src/syscfg/
|
|
default y if \
|
|
BR2_aarch64 || BR2_aarch64_eb || BR2_arm || \
|
|
BR2_armeb || BR2_i386 || BR2_mips || \
|
|
BR2_mipsel || BR2_mips64 || BR2_mips64el || \
|
|
BR2_m68k || BR2_nios2 || BR2_powerpc || \
|
|
BR2_powerpc64 || BR2_powerpc64le || BR2_sh4 || \
|
|
BR2_sh4eb || BR2_sh4a || BR2_sh4aeb || \
|
|
BR2_sparc || BR2_sparc64 || BR2_x86_64
|
|
|
|
config BR2_PACKAGE_LIBGPG_ERROR
|
|
bool "libgpg-error"
|
|
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS
|
|
help
|
|
Libgpg-error is a small library with error codes and
|
|
descriptions shared by most GnuPG related software.
|
|
|
|
https://www.gnupg.org/related_software/libgpg-error
|
|
|
|
config BR2_PACKAGE_LIBGPG_ERROR_SYSCFG
|
|
string
|
|
default "aarch64-unkown-linux-gnu" \
|
|
if BR2_aarch64 || BR2_aarch64_eb
|
|
default "arm-unknown-linux-gnueabi" \
|
|
if BR2_arm || BR2_armeb
|
|
default "i686-pc-linux-gnu" \
|
|
if BR2_i386
|
|
default "mips-unkown-linux-gnu" \
|
|
if BR2_mips || BR2_mipsel
|
|
default "mips64el-unkown-linux-gnuabi64" \
|
|
if BR2_mips64 || BR2_mips64el
|
|
default "m68k-unkown-linux-gnu" \
|
|
if BR2_m68k
|
|
default "nios2-unknown-linux-gnu" \
|
|
if BR2_nios2
|
|
default "powerpc-unkown-linux-gnu" \
|
|
if BR2_powerpc
|
|
default "powerpc64-unkown-linux-gnu" \
|
|
if BR2_powerpc64 || BR2_powerpc64le
|
|
default "sh4-unkown-linux-gnu" \
|
|
if BR2_sh4 || BR2_sh4eb || BR2_sh4a || BR2_sh4aeb
|
|
default "sparc-unkown-linux-gnu" \
|
|
if BR2_sparc
|
|
default "sparc64-unknown-linux-gnu" \
|
|
if BR2_sparc64
|
|
default "x86_64-pc-linux-gnu" \
|
|
if BR2_x86_64 |