mirror of
https://git.yoctoproject.org/poky
synced 2026-09-16 18:49:34 +02:00
libgpg-error: Upgrade 1.18 -> 1.19
The patch pkgconfig.patch has not being integrated into upstream repository, so rebasing it. Another change occurred inside the recipe, the TUPLE's name changed for i586/i686 target architectures. (From OE-Core rev: c263dc742c0c4729be51dad8eefc0b2699b071d9) Signed-off-by: Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b108e3e2df
commit
8db97b5991
@@ -9,9 +9,9 @@ Index: libgpg-error-1.17/configure.ac
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- libgpg-error-1.17.orig/configure.ac
|
--- libgpg-error-1.17.orig/configure.ac
|
||||||
+++ libgpg-error-1.17/configure.ac
|
+++ libgpg-error-1.17/configure.ac
|
||||||
@@ -521,6 +521,7 @@ AC_CONFIG_FILES([src/Makefile tests/Make
|
@@ -529,6 +529,7 @@ AC_CONFIG_FILES([src/Makefile tests/Make
|
||||||
AC_CONFIG_FILES([lang/Makefile lang/cl/Makefile lang/cl/gpg-error.asd])
|
AC_CONFIG_FILES([lang/Makefile lang/cl/Makefile lang/cl/gpg-error.asd])
|
||||||
AC_CONFIG_FILES([src/versioninfo.rc])
|
AC_CONFIG_FILES([src/versioninfo.rc src/gpg-error.w32-manifest])
|
||||||
AC_CONFIG_FILES([src/gpg-error-config], [chmod +x src/gpg-error-config])
|
AC_CONFIG_FILES([src/gpg-error-config], [chmod +x src/gpg-error-config])
|
||||||
+AC_CONFIG_FILES([src/gpg-error.pc])
|
+AC_CONFIG_FILES([src/gpg-error.pc])
|
||||||
|
|
||||||
@@ -21,7 +21,7 @@ Index: libgpg-error-1.17/src/Makefile.am
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- libgpg-error-1.17.orig/src/Makefile.am
|
--- libgpg-error-1.17.orig/src/Makefile.am
|
||||||
+++ libgpg-error-1.17/src/Makefile.am
|
+++ libgpg-error-1.17/src/Makefile.am
|
||||||
@@ -74,13 +74,15 @@ nodist_include_HEADERS = gpg-error.h
|
@@ -75,6 +75,8 @@ nodist_include_HEADERS = gpg-error.h
|
||||||
bin_SCRIPTS = gpg-error-config
|
bin_SCRIPTS = gpg-error-config
|
||||||
m4datadir = $(datadir)/aclocal
|
m4datadir = $(datadir)/aclocal
|
||||||
m4data_DATA = gpg-error.m4
|
m4data_DATA = gpg-error.m4
|
||||||
@@ -30,30 +30,15 @@ Index: libgpg-error-1.17/src/Makefile.am
|
|||||||
|
|
||||||
EXTRA_DIST = mkstrtable.awk err-sources.h.in err-codes.h.in \
|
EXTRA_DIST = mkstrtable.awk err-sources.h.in err-codes.h.in \
|
||||||
mkerrnos.awk errnos.in README \
|
mkerrnos.awk errnos.in README \
|
||||||
mkerrcodes.awk mkerrcodes1.awk mkerrcodes2.awk mkerrcodes.c \
|
@@ -82,7 +84,7 @@ EXTRA_DIST = mkstrtable.awk err-sources.
|
||||||
mkheader.c gpg-error.h.in mkw32errmap.c w32-add.h w32ce-add.h \
|
mkheader.c gpg-error.h.in mkw32errmap.c w32-add.h w32ce-add.h \
|
||||||
err-sources.h err-codes.h gpg-error-config.in gpg-error.m4 \
|
err-sources.h err-codes.h gpg-error-config.in gpg-error.m4 \
|
||||||
- gpg-error.vers gpg-error.def.in versioninfo.rc.in \
|
gpg-error.vers gpg-error.def.in \
|
||||||
+ gpg-error.vers gpg-error.def.in versioninfo.rc.in gpg-error.pc \
|
- versioninfo.rc.in gpg-error.w32-manifest.in \
|
||||||
|
+ versioninfo.rc.in gpg-error.w32-manifest.in gpg-error.pc \
|
||||||
$(lock_obj_pub)
|
$(lock_obj_pub)
|
||||||
|
|
||||||
BUILT_SOURCES = err-sources.h err-codes.h code-to-errno.h code-from-errno.h \
|
BUILT_SOURCES = err-sources.h err-codes.h code-to-errno.h code-from-errno.h \
|
||||||
Index: libgpg-error-1.17/src/gpg-error.pc.in
|
|
||||||
===================================================================
|
|
||||||
--- /dev/null
|
|
||||||
+++ libgpg-error-1.17/src/gpg-error.pc.in
|
|
||||||
@@ -0,0 +1,11 @@
|
|
||||||
+prefix=@prefix@
|
|
||||||
+exec_prefix=@exec_prefix@
|
|
||||||
+libdir=@libdir@
|
|
||||||
+includedir=@includedir@
|
|
||||||
+host=@GPG_ERROR_CONFIG_HOST@
|
|
||||||
+
|
|
||||||
+Name: gpg-error
|
|
||||||
+Description: a library that defines common error values for all GnuPG components
|
|
||||||
+Version: @VERSION@
|
|
||||||
+Libs: -L${libdir} -lgpg-error
|
|
||||||
+Cflags: -I${includedir}
|
|
||||||
Index: libgpg-error-1.17/src/gpg-error.m4
|
Index: libgpg-error-1.17/src/gpg-error.m4
|
||||||
===================================================================
|
===================================================================
|
||||||
--- libgpg-error-1.17.orig/src/gpg-error.m4
|
--- libgpg-error-1.17.orig/src/gpg-error.m4
|
||||||
@@ -147,3 +132,19 @@ Index: libgpg-error-1.17/src/gpg-error.m4
|
|||||||
ifelse([$3], , :, [$3])
|
ifelse([$3], , :, [$3])
|
||||||
fi
|
fi
|
||||||
AC_SUBST(GPG_ERROR_CFLAGS)
|
AC_SUBST(GPG_ERROR_CFLAGS)
|
||||||
|
Index: libgpg-error-1.17/src/gpg-error.pc.in
|
||||||
|
===================================================================
|
||||||
|
--- /dev/null
|
||||||
|
+++ libgpg-error-1.17/src/gpg-error.pc.in
|
||||||
|
@@ -0,0 +1,11 @@
|
||||||
|
+prefix=@prefix@
|
||||||
|
+exec_prefix=@exec_prefix@
|
||||||
|
+libdir=@libdir@
|
||||||
|
+includedir=@includedir@
|
||||||
|
+host=@GPG_ERROR_CONFIG_HOST@
|
||||||
|
+
|
||||||
|
+Name: gpg-error
|
||||||
|
+Description: a library that defines common error values for all GnuPG components
|
||||||
|
+Version: @VERSION@
|
||||||
|
+Libs: -L${libdir} -lgpg-error
|
||||||
|
+Cflags: -I${includedir}
|
||||||
|
|||||||
@@ -13,8 +13,8 @@ SECTION = "libs"
|
|||||||
|
|
||||||
SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-${PV}.tar.bz2 \
|
SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-${PV}.tar.bz2 \
|
||||||
file://pkgconfig.patch"
|
file://pkgconfig.patch"
|
||||||
SRC_URI[md5sum] = "12312802d2065774b787cbfc22cc04e9"
|
SRC_URI[md5sum] = "c04c16245b92829281f43b5bef7d16da"
|
||||||
SRC_URI[sha256sum] = "9ff1d6e61d4cef7c1d0607ceef6d40dc33f3da7a3094170c3718c00153d80810"
|
SRC_URI[sha256sum] = "53120e1333d5c5d28d87ff2854e9e98719c8e214152f17ad5291704d25c4978b"
|
||||||
|
|
||||||
BINCONFIG = "${bindir}/gpg-error-config"
|
BINCONFIG = "${bindir}/gpg-error-config"
|
||||||
|
|
||||||
@@ -30,7 +30,7 @@ do_compile_prepend() {
|
|||||||
aarch64_be) TUPLE=aarch64-unknown-linux-gnu ;;
|
aarch64_be) TUPLE=aarch64-unknown-linux-gnu ;;
|
||||||
arm) TUPLE=arm-unknown-linux-gnueabi ;;
|
arm) TUPLE=arm-unknown-linux-gnueabi ;;
|
||||||
armeb) TUPLE=arm-unknown-linux-gnueabi ;;
|
armeb) TUPLE=arm-unknown-linux-gnueabi ;;
|
||||||
i586|i686) TUPLE=i486-pc-linux-gnu ;;
|
i586|i686) TUPLE=i686-pc-linux-gnu ;;
|
||||||
mips64el) TUPLE=mipsel-unknown-linux-gnu ;;
|
mips64el) TUPLE=mipsel-unknown-linux-gnu ;;
|
||||||
mips64) TUPLE=mips-unknown-linux-gnu ;;
|
mips64) TUPLE=mips-unknown-linux-gnu ;;
|
||||||
x86_64) TUPLE=x86_64-pc-linux-gnu ;;
|
x86_64) TUPLE=x86_64-pc-linux-gnu ;;
|
||||||
Reference in New Issue
Block a user