<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/net/ngircd, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git-03.infra.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git-03.infra.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/'/>
<updated>2026-03-15T07:15:21Z</updated>
<entry>
<title>net/ngircd: fix PKG_CPE_ID</title>
<updated>2026-03-15T07:15:21Z</updated>
<author>
<name>Fabrice Fontaine</name>
</author>
<published>2026-03-13T21:30:29Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=2c70cc8a6de671c6d9b1ec74c7b83199a4b8fa2d'/>
<id>urn:sha1:2c70cc8a6de671c6d9b1ec74c7b83199a4b8fa2d</id>
<content type='text'>
cpe:/a:barton:ngircd is the correct CPE ID for ngircd:
https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3:a:barton:ngircd

Fixes: 299e5b0a9bce19d6e96cb9ff217028b36ee2dd36 (treewide: add PKG_CPE_ID for better cvescanner coverage)

Signed-off-by: Fabrice Fontaine &lt;fontaine.fabrice@gmail.com&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-03.infra.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>ngircd: update to 26.1</title>
<updated>2021-04-15T02:06:42Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2021-04-14T03:30:53Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=4dda77eccd3cf09903d15430c923942c7e58e0bb'/>
<id>urn:sha1:4dda77eccd3cf09903d15430c923942c7e58e0bb</id>
<content type='text'>
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>ngircd: update to 26</title>
<updated>2020-07-17T22:11:35Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2020-07-17T00:17:35Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=a98399f3d26ed687f794dd0ab70c3a6b58bb14cd'/>
<id>urn:sha1:a98399f3d26ed687f794dd0ab70c3a6b58bb14cd</id>
<content type='text'>
Fixes compilation with GCC10.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: Use default PKG_BUILD_DIR when possible</title>
<updated>2019-10-12T18:01:34Z</updated>
<author>
<name>Jeffery To</name>
</author>
<published>2019-10-12T17:00:20Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=53e1692ae91b1b5fc59a7e8ab7fb98f8775eb4b6'/>
<id>urn:sha1:53e1692ae91b1b5fc59a7e8ab7fb98f8775eb4b6</id>
<content type='text'>
This removes lines that set PKG_BUILD_DIR when the set value is no
different from the default value.

Specifically, the line is removed if the assigned value is:

* $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)

  The default PKG_BUILD_DIR was updated[1] to incorporate BUILD_VARIANT
  if it is set, so now this is identical to the default value.

* $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR)

  if PKG_SOURCE_SUBDIR is set to $(PKG_NAME)-$(PKG_VERSION), making it
  the same as the previous case

* $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)

  This is the same as the default PKG_BUILD_DIR when there is no
  BUILD_VARIANT.

* $(BUILD_DIR)/[name]-$(PKG_VERSION)

  where [name] is a string that is identical to PKG_NAME

[1]: https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=e545fac8d968864a965edb9e50c6f90940b0a6c9

Signed-off-by: Jeffery To &lt;jeffery.to@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: add PKG_CPE_ID for better cvescanner coverage</title>
<updated>2019-09-17T10:40:26Z</updated>
<author>
<name>Jan Pavlinec</name>
</author>
<published>2019-09-12T12:13:21Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=299e5b0a9bce19d6e96cb9ff217028b36ee2dd36'/>
<id>urn:sha1:299e5b0a9bce19d6e96cb9ff217028b36ee2dd36</id>
<content type='text'>
Signed-off-by: Jan Pavlinec &lt;jan.pavlinec@nic.cz&gt;
</content>
</entry>
<entry>
<title>ngircd: Update to 25</title>
<updated>2019-02-03T23:01:30Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2019-02-02T19:31:52Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=a567d60b9329f80f93b5249b8b82bbb60ea1622c'/>
<id>urn:sha1:a567d60b9329f80f93b5249b8b82bbb60ea1622c</id>
<content type='text'>
Remove upstreamed patch.

Switch to .xz archives for smaller size.

Add PKG_BUILD_PARALLEL to speed up compilation.

Remove maintainer.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>ngircd: Fix compilation without deprecated OpenSSL APIs</title>
<updated>2018-11-27T22:03:23Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2018-11-26T04:01:49Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=fdd7926ecd1335457fd860ca1bb3194339974efe'/>
<id>urn:sha1:fdd7926ecd1335457fd860ca1bb3194339974efe</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: run "make check FIXUP=1"</title>
<updated>2017-08-30T04:41:14Z</updated>
<author>
<name>Etienne Champetier</name>
</author>
<published>2017-08-28T04:28:09Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=4006865ae81b20b1793ae2a07db20235fefd2c71'/>
<id>urn:sha1:4006865ae81b20b1793ae2a07db20235fefd2c71</id>
<content type='text'>
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 &lt;champetier.etienne@gmail.com&gt;
</content>
</entry>
<entry>
<title>ngircd: update to v24</title>
<updated>2017-02-11T15:52:28Z</updated>
<author>
<name>Claudio Leite</name>
</author>
<published>2017-02-11T15:52:28Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=c66de482043df480cf70f51d6468940c8fc0ade3'/>
<id>urn:sha1:c66de482043df480cf70f51d6468940c8fc0ade3</id>
<content type='text'>
Signed-off-by: Claudio Leite &lt;leitec@gmail.com&gt;
</content>
</entry>
</feed>
