Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
@@ -0,0 +1,135 @@
|
||||
Add pkgconfig support to libassuan.
|
||||
This patch is rejected by upstream for the reason below:
|
||||
They think pkgconfig adds no portability and maintaining them is not worthwhile.
|
||||
|
||||
Upstream-Status: Denied
|
||||
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
|
||||
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
|
||||
|
||||
forward ported to 2.4.4
|
||||
Signed-off-by: Armin Kuster <akuster@mvista.com>
|
||||
---
|
||||
src/libassuan.m4 | 81 ++----------------------------------------------
|
||||
1 file changed, 3 insertions(+), 78 deletions(-)
|
||||
|
||||
diff --git a/src/libassuan.m4 b/src/libassuan.m4
|
||||
index df50484..380a48a 100644
|
||||
--- a/src/libassuan.m4
|
||||
+++ b/src/libassuan.m4
|
||||
@@ -17,27 +17,6 @@ dnl Returns ok set to yes or no.
|
||||
dnl
|
||||
AC_DEFUN([_AM_PATH_LIBASSUAN_COMMON],
|
||||
[ AC_REQUIRE([AC_CANONICAL_HOST])
|
||||
- AC_ARG_WITH(libassuan-prefix,
|
||||
- AS_HELP_STRING([--with-libassuan-prefix=PFX],
|
||||
- [prefix where LIBASSUAN is installed (optional)]),
|
||||
- libassuan_config_prefix="$withval", libassuan_config_prefix="")
|
||||
- if test x$libassuan_config_prefix != x ; then
|
||||
- if test x${LIBASSUAN_CONFIG+set} != xset ; then
|
||||
- LIBASSUAN_CONFIG=$libassuan_config_prefix/bin/libassuan-config
|
||||
- fi
|
||||
- fi
|
||||
-
|
||||
- use_gpgrt_config=""
|
||||
- if test x"${LIBASSUAN_CONFIG}" = x -a x"$GPGRT_CONFIG" != x -a "$GPGRT_CONFIG" != "no"; then
|
||||
- if $GPGRT_CONFIG libassuan --exists; then
|
||||
- LIBASSUAN_CONFIG="$GPGRT_CONFIG libassuan"
|
||||
- AC_MSG_NOTICE([Use gpgrt-config as libassuan-config])
|
||||
- use_gpgrt_config=yes
|
||||
- fi
|
||||
- fi
|
||||
- if test -z "$use_gpgrt_config"; then
|
||||
- AC_PATH_PROG(LIBASSUAN_CONFIG, libassuan-config, no)
|
||||
- fi
|
||||
|
||||
tmp=ifelse([$1], ,1:0.9.2,$1)
|
||||
if echo "$tmp" | grep ':' >/dev/null 2>/dev/null ; then
|
||||
@@ -47,59 +26,11 @@ AC_DEFUN([_AM_PATH_LIBASSUAN_COMMON],
|
||||
req_libassuan_api=0
|
||||
min_libassuan_version="$tmp"
|
||||
fi
|
||||
-
|
||||
- AC_MSG_CHECKING(for LIBASSUAN - version >= $min_libassuan_version)
|
||||
- ok=no
|
||||
- if test "$LIBASSUAN_CONFIG" != "no"; then
|
||||
- req_major=`echo $min_libassuan_version | \
|
||||
- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\1/'`
|
||||
- req_minor=`echo $min_libassuan_version | \
|
||||
- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\2/'`
|
||||
- req_micro=`echo $min_libassuan_version | \
|
||||
- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\)/\3/'`
|
||||
-
|
||||
- if test -z "$use_gpgrt_config"; then
|
||||
- libassuan_config_version=`$LIBASSUAN_CONFIG --version`
|
||||
- else
|
||||
- libassuan_config_version=`$LIBASSUAN_CONFIG --modversion`
|
||||
- fi
|
||||
- major=`echo $libassuan_config_version | \
|
||||
- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'`
|
||||
- minor=`echo $libassuan_config_version | \
|
||||
- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'`
|
||||
- micro=`echo $libassuan_config_version | \
|
||||
- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\3/'`
|
||||
-
|
||||
- if test "$major" -gt "$req_major"; then
|
||||
- ok=yes
|
||||
- else
|
||||
- if test "$major" -eq "$req_major"; then
|
||||
- if test "$minor" -gt "$req_minor"; then
|
||||
- ok=yes
|
||||
- else
|
||||
- if test "$minor" -eq "$req_minor"; then
|
||||
- if test "$micro" -ge "$req_micro"; then
|
||||
- ok=yes
|
||||
- fi
|
||||
- fi
|
||||
- fi
|
||||
- fi
|
||||
- fi
|
||||
- fi
|
||||
-
|
||||
- if test $ok = yes; then
|
||||
- AC_MSG_RESULT([yes ($libassuan_config_version)])
|
||||
- else
|
||||
- AC_MSG_RESULT(no)
|
||||
- fi
|
||||
+ PKG_CHECK_MODULES(LIBASSUAN, [libassuan >= $min_libassuan_version], [ok=yes], [ok=no])
|
||||
|
||||
if test $ok = yes; then
|
||||
if test "$req_libassuan_api" -gt 0 ; then
|
||||
- if test -z "$use_gpgrt_config"; then
|
||||
- tmp=`$LIBASSUAN_CONFIG --api-version 2>/dev/null || echo 0`
|
||||
- else
|
||||
- tmp=`$LIBASSUAN_CONFIG --variable=api_version 2>/dev/null || echo 0`
|
||||
- fi
|
||||
+ tmp=`$PKG_CONFIG --variable=api_version libassuan`
|
||||
if test "$tmp" -gt 0 ; then
|
||||
AC_MSG_CHECKING([LIBASSUAN API version])
|
||||
if test "$req_libassuan_api" -eq "$tmp" ; then
|
||||
@@ -115,9 +46,7 @@ AC_DEFUN([_AM_PATH_LIBASSUAN_COMMON],
|
||||
if test $ok = yes; then
|
||||
if test x"$host" != x ; then
|
||||
if test -z "$use_gpgrt_config"; then
|
||||
- libassuan_config_host=`$LIBASSUAN_CONFIG --host 2>/dev/null || echo none`
|
||||
- else
|
||||
- libassuan_config_host=`$LIBASSUAN_CONFIG --variable=host 2>/dev/null || echo none`
|
||||
+ libassuan_config_host=`$PKG_CONFIG --variable=host libassuan`
|
||||
fi
|
||||
if test x"$libassuan_config_host" != xnone ; then
|
||||
if test x"$libassuan_config_host" != x"$host" ; then
|
||||
@@ -159,12 +88,8 @@ dnl
|
||||
AC_DEFUN([AM_PATH_LIBASSUAN],
|
||||
[ _AM_PATH_LIBASSUAN_COMMON($1)
|
||||
if test $ok = yes; then
|
||||
- LIBASSUAN_CFLAGS=`$LIBASSUAN_CONFIG --cflags`
|
||||
- LIBASSUAN_LIBS=`$LIBASSUAN_CONFIG --libs`
|
||||
ifelse([$2], , :, [$2])
|
||||
else
|
||||
- LIBASSUAN_CFLAGS=""
|
||||
- LIBASSUAN_LIBS=""
|
||||
ifelse([$3], , :, [$3])
|
||||
fi
|
||||
AC_SUBST(LIBASSUAN_CFLAGS)
|
||||
--
|
||||
2.25.1
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
SUMMARY = "IPC library used by GnuPG and GPGME"
|
||||
DESCRIPTION = "A small library implementing the so-called Assuan protocol. \
|
||||
This protocol is used for IPC between most newer GnuPG components. \
|
||||
Both, server and client side functions are provided. "
|
||||
HOMEPAGE = "http://www.gnupg.org/related_software/libassuan/"
|
||||
BUGTRACKER = "https://bugs.g10code.com/gnupg/index"
|
||||
|
||||
LICENSE = "GPL-3.0-or-later & LGPL-2.1-or-later"
|
||||
LICENSE:${PN} = "LGPL-2.1-or-later"
|
||||
LICENSE:${PN}-doc = "GPL-3.0-or-later"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
|
||||
file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
|
||||
file://src/assuan.c;endline=20;md5=ab92143a5a2adabd06d7994d1467ea5c\
|
||||
file://src/assuan-defs.h;endline=20;md5=15d950c83e82978e35b35e790d7e4d39"
|
||||
|
||||
DEPENDS = "libgpg-error"
|
||||
|
||||
UPSTREAM_CHECK_URI = "https://gnupg.org/download/index.html"
|
||||
SRC_URI = "${GNUPG_MIRROR}/libassuan/libassuan-${PV}.tar.bz2 \
|
||||
file://libassuan-add-pkgconfig-support.patch \
|
||||
"
|
||||
|
||||
SRC_URI[sha256sum] = "e9fd27218d5394904e4e39788f9b1742711c3e6b41689a31aa3380bd5aa4f426"
|
||||
|
||||
BINCONFIG = "${bindir}/libassuan-config"
|
||||
|
||||
inherit autotools texinfo binconfig-disabled pkgconfig multilib_header
|
||||
|
||||
do_configure:prepend () {
|
||||
# Else these could be used in preference to those in aclocal-copy
|
||||
rm -f ${S}/m4/*.m4
|
||||
}
|
||||
|
||||
do_install:append () {
|
||||
oe_multilib_header assuan.h
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
Reference in New Issue
Block a user