<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/net/nsd, 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>2025-05-20T06:57:12Z</updated>
<entry>
<title>treewide: assign some PKG_CPE_IDs</title>
<updated>2025-05-20T06:57:12Z</updated>
<author>
<name>Wei-Ting Yang</name>
</author>
<published>2025-04-24T11:45:39Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=ae56deff2ce42da3c0331832457aaec480a873ed'/>
<id>urn:sha1:ae56deff2ce42da3c0331832457aaec480a873ed</id>
<content type='text'>
Assign some PKG_CPE_IDs to enhance CVE coverage.

https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=aardvark-dns
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=alpine_project
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=boringssl
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=ecdsautils
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=file_project
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=knot_resolver
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=libwrap
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=lsof_project
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=nfdump
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=nlnetlabs%20name_server_daemon
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=rclone
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=setserial
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=tang_project
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=tesseract_project
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=tmate-ssh-server
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=ttyd
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=uw-imap
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=v2ray-core
https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&amp;keyword=zstandard

Signed-off-by: Wei-Ting Yang &lt;williamatcg@gmail.com&gt;
</content>
</entry>
<entry>
<title>nsd: bump to 4.6.1</title>
<updated>2023-02-16T13:28:52Z</updated>
<author>
<name>Eneas U de Queiroz</name>
</author>
<published>2023-02-09T16:40:16Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=94b06478ed6d2c20b75b2dc5eb81e0de2cdb98c5'/>
<id>urn:sha1:94b06478ed6d2c20b75b2dc5eb81e0de2cdb98c5</id>
<content type='text'>
This version adds compatibility with OpenSSL 3.0.

There's a patch, submitted upstream, to fix building without SSL.

Signed-off-by: Eneas U de Queiroz &lt;cotequeiroz@gmail.com&gt;
</content>
</entry>
<entry>
<title>nsd: update to 4.2.4</title>
<updated>2020-01-26T01:54:04Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2020-01-26T01:54:04Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=02f071eeae83740ef7747c5fe9eaf0dcab6ac286'/>
<id>urn:sha1:02f071eeae83740ef7747c5fe9eaf0dcab6ac286</id>
<content type='text'>
Removed upstreamed patches.

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.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>nsd: Update to 4.2.1</title>
<updated>2019-08-04T22:20:33Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2019-08-04T16:19:17Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=6ba95fdac46cd6eae7e92f64b1cb33003bf3c802'/>
<id>urn:sha1:6ba95fdac46cd6eae7e92f64b1cb33003bf3c802</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.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>nsd: Update to v4.1.13</title>
<updated>2016-10-29T14:25:33Z</updated>
<author>
<name>Vasilis Tsiligiannis</name>
</author>
<published>2016-10-29T14:25:33Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=99d620f09e8316362f480151cb0bd84539f86dcd'/>
<id>urn:sha1:99d620f09e8316362f480151cb0bd84539f86dcd</id>
<content type='text'>
Signed-off-by: Vasilis Tsiligiannis &lt;acinonyx@openwrt.gr&gt;
</content>
</entry>
<entry>
<title>nsd: Update to v4.1.9</title>
<updated>2016-03-27T01:18:47Z</updated>
<author>
<name>Vasilis Tsiligiannis</name>
</author>
<published>2016-03-27T01:18:47Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=0e105b356e6af33b0cddfb77a156e103a2b596d4'/>
<id>urn:sha1:0e105b356e6af33b0cddfb77a156e103a2b596d4</id>
<content type='text'>
Signed-off-by: Vasilis Tsiligiannis &lt;acinonyx@openwrt.gr&gt;
</content>
</entry>
<entry>
<title>nsd: Bump to version 4.1.2</title>
<updated>2015-04-20T08:02:18Z</updated>
<author>
<name>Vasilis Tsiligiannis</name>
</author>
<published>2015-04-20T08:02:18Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=de80156bb95ea79a8acae5fc94d87c182a2a2390'/>
<id>urn:sha1:de80156bb95ea79a8acae5fc94d87c182a2a2390</id>
<content type='text'>
</content>
</entry>
<entry>
<title>nsd: fix build_varaint usage</title>
<updated>2014-07-17T17:02:47Z</updated>
<author>
<name>John Crispin</name>
</author>
<published>2014-07-17T17:01:08Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=4cb5f9629337bb749f183726648067b686d66ace'/>
<id>urn:sha1:4cb5f9629337bb749f183726648067b686d66ace</id>
<content type='text'>
without this only 1 of n variants builds, all others fail

Signed-off-by: John Crispin &lt;blogic@openwrt.org&gt;
</content>
</entry>
</feed>
