Commit Graph

27 Commits

Author SHA1 Message Date
Fabrice Fontaine 5afe5c9031 treewide: assign PKG_CPE_ID
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
2024-02-04 16:16:10 -08:00
W. Michael Petullo e44d24cf05 libgpg-error: update to 1.47
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2023-05-20 13:15:49 +08:00
Paul Fertser 0c10c224be treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-21 22:46:58 +02:00
W. Michael Petullo a93e0269a1 libgpg-error: copy gpg-error.pc to staging directory
Packages like libassuan and libksba would not compile after updating
libgpg-error to 1.46. This was because gpg-error.m4 (and thus the affected
packages' configure scripts) relies on gpgrt-config, which in turn needs
access to gpg-error.pc. This modifies the libgpg-error build process to
copy gpg-error.pc to OpenWrt's staging directory, so that it is available
for subsequent dependent package builds.

Fixes: https://github.com/openwrt/packages/issues/19880

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2022-11-18 08:04:05 -06:00
Rosen Penev b83c56576a libgpg-error: install gpg-error-config again
Upstream deprecated it while not fixing libgcrypt not to use it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-11-05 18:00:30 -07:00
Rosen Penev a3fd2c7982 libgpg-error: update to 1.46
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-11-05 10:30:05 -07:00
W. Michael Petullo c4842bdd20 libgpg-error: update to 1.45
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2022-05-11 17:46:46 -04:00
W. Michael Petullo d6000af907 libgpg-error: update to 1.43
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-12-14 19:01:54 +01:00
W. Michael Petullo 71b7f74ff1 libgpg-error: patch to fix cross-compile
Paul Blazejowski discovered that the recent update to this package broke
cross-compiling for some OpenWrt platforms. This backports commit 33593864
(March 26, 2021) from the upstream libgpg-error project to fix this
problem.

Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-05-12 22:27:32 -05:00
W. Michael Petullo c664e1f207 libgpg-error: update to 1.42
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2021-05-10 13:19:34 -05:00
Georgi Valkov 13f9a7bd63 libgpg-error: fix build error on macOS
src/gen-lock-obj.sh runs in /bin/sh which does not support echo -n on macOS,
and generates garbage. Resolved by using printf which is posix compliant.

Signed-off-by: Georgi Valkov <gvalkov@abv.bg>
2021-01-31 18:41:10 +02:00
W. Michael Petullo f530dcc1ea libgpg-error: update to 1.39
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2020-11-19 19:47:54 +00:00
Daniel Golle 186d7e4a61 libgpg-error: make gpgrt.h available for depending packages
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2020-11-07 15:51:49 +00:00
Rosen Penev 4c6a93b062
libgpg-error: update to 1.37
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-02-13 15:56:56 -08:00
Rosen Penev 9afde0d39a libgpg-error: Fix compilation with GAWK 5.0
Patch from Upstream.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-07-02 10:17:58 -07:00
Rosen Penev 1986261e87 libgpg-error: Add ARC support
Patch was posted on the mailing list. Awaits inclusion looks like. Fixes
long range build failures on the platform.

Updated Mirror list. The first two seem to not work.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-05-19 02:17:23 -07:00
Rosen Penev 90a54ba18e
libgpg-error: Update to 1.36
Updated patch to fix compilation on mips64.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-03-31 02:22:34 -07:00
Rosen Penev b468d5cf57 libgpg-error: Update to 1.34
Remove FPIC as it is already default. Both fPIC and DPIC are passed.

Some extra configure arguments to speed up build times.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-01-23 16:01:29 -08:00
Rosen Penev 10da3f005b libgpg-error: Update to 1.33
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-12-10 16:23:05 -08:00
W. Michael Petullo b2ba4a2e08 libgpg-error: update to 1.32
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2018-07-15 02:18:03 -04:00
Florian Eckert e8c7ec009b libs/libgpg-error: add license tag
add license tag

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2017-10-30 14:51:56 +01:00
Etienne Champetier 4006865ae8 treewide: run "make check FIXUP=1"
fix Makefile chmod (644)
replace MD5SUM with HASH
add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git

(PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now)

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2017-08-29 21:41:14 -07:00
Matthias Schiffer 68699b6811
libgpg-error: revert $(STAGING_DIR_HOSTPKG) to $(STAGING_DIR)/host where appropriate
Host files installed in Build/InstallDev are target-specific and will stay
in $(STAGING_DIR)/host after the STAGING_DIR_HOSTPKG unification.

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2017-01-14 19:01:11 +01:00
Matthias Schiffer 4a984a8d60
treewide: replace $(STAGING_DIR)/host and $(HOST_BUILD_PREFIX) with $(STAGING_DIR_HOSTPKG)
As both LEDE and OpenWrt have STAGING_DIR_HOSTPKG now, we can start to rely
on it. See 73b7f55424 for more information on
STAGING_DIR_HOSTPKG.

STAGING_DIR_HOSTPKG won't actually be changed before the first LEDE release
(it is equivalent to $(STAGING_DIR)/host), so this simple search/replace
cleanup is safe to apply. Doing this cleanup now will be useful for the
Gluon project (an OpenWrt/LEDE based firmware framework) for experimenting
with modifying STAGING_DIR_HOSTPKG before doing this in the LEDE upstream.

Also fixes a typo in the dbus Makefile ("STAGIND_DIR").

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2017-01-10 18:25:54 +01:00
Hauke Mehrtens 5dd2d24c6b libgpg-error: fix build with gcc-5
Call the cpp preprocessor with -P argument which is now needed by gcc-5.

This is a backport of this upstream commit:
http://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=commitdiff;h=c01c8f0c4f55d76b037c7f6aa44ad25ede18d38a

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
2015-11-18 23:40:11 +01:00
W. Michael Petullo 204954111f libgpg-error: update to 1.12
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2014-07-19 14:08:11 +02:00
W. Michael Petullo 219a457696 Copy libgpg-error package from old repository
Signed-off-by: W. Michael Petullo <mike@flyn.org>
2014-07-19 14:08:11 +02:00