<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/libs/libgpg-error/Makefile, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/'/>
<updated>2026-01-09T09:54:35Z</updated>
<entry>
<title>libgpg-error: update to 1.58</title>
<updated>2026-01-09T09:54:35Z</updated>
<author>
<name>W. Michael Petullo</name>
</author>
<published>2026-01-08T02:49:07Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=a0a9e08dba9b9d484b66e92cd450b919d294eed4'/>
<id>urn:sha1:a0a9e08dba9b9d484b66e92cd450b919d294eed4</id>
<content type='text'>
Fixes a syntax error in a non-DLL build.

Signed-off-by: W. Michael Petullo &lt;mike@flyn.org&gt;
</content>
</entry>
<entry>
<title>libgpg-error: update to 1.55</title>
<updated>2025-06-01T07:22:30Z</updated>
<author>
<name>W. Michael Petullo</name>
</author>
<published>2025-05-31T03:04:12Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=2a4fa209128fb39890855fb346e8f1ce8f6cafd5'/>
<id>urn:sha1:2a4fa209128fb39890855fb346e8f1ce8f6cafd5</id>
<content type='text'>
Upstream list of changes is available at
https://dev.gnupg.org/source/libgpg-error/browse/master/NEWS.

Signed-off-by: W. Michael Petullo &lt;mike@flyn.org&gt;
</content>
</entry>
<entry>
<title>libgpg-error: update to 1.51</title>
<updated>2025-01-03T08:41:22Z</updated>
<author>
<name>W. Michael Petullo</name>
</author>
<published>2025-01-02T23:46:11Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=5775921d432da8278d696bdff27980faf988975f'/>
<id>urn:sha1:5775921d432da8278d696bdff27980faf988975f</id>
<content type='text'>
Signed-off-by: W. Michael Petullo &lt;mike@flyn.org&gt;
</content>
</entry>
<entry>
<title>libgpg-error: update to 1.49</title>
<updated>2024-05-30T01:47:08Z</updated>
<author>
<name>W. Michael Petullo</name>
</author>
<published>2024-05-29T00:45:55Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=db9e5cd2ec5c580a6cf5ef4748aef2399f3801af'/>
<id>urn:sha1:db9e5cd2ec5c580a6cf5ef4748aef2399f3801af</id>
<content type='text'>
Signed-off-by: W. Michael Petullo &lt;mike@flyn.org&gt;
</content>
</entry>
<entry>
<title>treewide: assign PKG_CPE_ID</title>
<updated>2024-02-05T00:16:10Z</updated>
<author>
<name>Fabrice Fontaine</name>
</author>
<published>2024-02-02T17:37:33Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=5afe5c9031190844f267357c68efe3c9c3cbe51d'/>
<id>urn:sha1:5afe5c9031190844f267357c68efe3c9c3cbe51d</id>
<content type='text'>
Signed-off-by: Fabrice Fontaine &lt;fontaine.fabrice@gmail.com&gt;
</content>
</entry>
<entry>
<title>libgpg-error: update to 1.47</title>
<updated>2023-05-20T05:15:49Z</updated>
<author>
<name>W. Michael Petullo</name>
</author>
<published>2023-05-19T16:30:33Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=e44d24cf05f711c5debe3b911ec558d331787371'/>
<id>urn:sha1:e44d24cf05f711c5debe3b911ec558d331787371</id>
<content type='text'>
Signed-off-by: W. Michael Petullo &lt;mike@flyn.org&gt;
</content>
</entry>
<entry>
<title>treewide: remove AUTORELEASE</title>
<updated>2023-04-21T20:46:58Z</updated>
<author>
<name>Paul Fertser</name>
</author>
<published>2023-04-21T16:32:27Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=0c10c224be81f9221dabfab449855ab6718d2a0c'/>
<id>urn:sha1:0c10c224be81f9221dabfab449855ab6718d2a0c</id>
<content type='text'>
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 &lt;fercerpav@gmail.com&gt;
</content>
</entry>
<entry>
<title>libgpg-error: copy gpg-error.pc to staging directory</title>
<updated>2022-11-18T14:04:05Z</updated>
<author>
<name>W. Michael Petullo</name>
</author>
<published>2022-11-18T02:40:35Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=a93e0269a10cbca0679ae390d6b89aedbb2435e6'/>
<id>urn:sha1:a93e0269a10cbca0679ae390d6b89aedbb2435e6</id>
<content type='text'>
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 &lt;mike@flyn.org&gt;
</content>
</entry>
<entry>
<title>libgpg-error: install gpg-error-config again</title>
<updated>2022-11-06T01:00:30Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2022-11-05T21:52:08Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=b83c56576a79a8be01d5080f72cf540e17feb6a2'/>
<id>urn:sha1:b83c56576a79a8be01d5080f72cf540e17feb6a2</id>
<content type='text'>
Upstream deprecated it while not fixing libgcrypt not to use it.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>libgpg-error: update to 1.46</title>
<updated>2022-11-05T17:30:05Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2022-11-05T03:47:45Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=a3fd2c7982015d7bb70894380707247165ed0ca1'/>
<id>urn:sha1:a3fd2c7982015d7bb70894380707247165ed0ca1</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
</feed>
