<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/devel/diffutils, 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-02-19T18:15:36Z</updated>
<entry>
<title>treewide: fix licenses</title>
<updated>2026-02-19T18:15:36Z</updated>
<author>
<name>Wei-Ting Yang</name>
</author>
<published>2026-02-10T11:03:14Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=f7e3317515ae5ba9b4efc8dd56e88af8fb2cb02e'/>
<id>urn:sha1:f7e3317515ae5ba9b4efc8dd56e88af8fb2cb02e</id>
<content type='text'>
Fix licenses.

Signed-off-by: Wei-Ting Yang &lt;williamatcg@gmail.com&gt;
</content>
</entry>
<entry>
<title>diffutils: update to 3.10</title>
<updated>2024-02-07T21:56:41Z</updated>
<author>
<name>krant</name>
</author>
<published>2024-02-06T13:14:18Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=8e1c7880595054075b4f5b2afd4dd8da5f97691c'/>
<id>urn:sha1:8e1c7880595054075b4f5b2afd4dd8da5f97691c</id>
<content type='text'>
- Switch package URL to HTTPS
- Refresh the patch

Signed-off-by: krant &lt;aleksey.vasilenko@gmail.com&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>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>diffutils: update to 3.8</title>
<updated>2022-01-18T05:12:20Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2022-01-09T04:25:33Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=06d5252474d3a29cc4f4d9b1fb8bcb5ce1c964ae'/>
<id>urn:sha1:06d5252474d3a29cc4f4d9b1fb8bcb5ce1c964ae</id>
<content type='text'>
Fixes compilation with newer glibc.

Ported gnulib patch from m4.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: move binary of alternatives to libexec, rename as suggested</title>
<updated>2020-10-08T12:22:51Z</updated>
<author>
<name>Huangbin Zhan</name>
</author>
<published>2020-10-08T12:22:51Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=75c4617bcf9723956a9eddf63e391b35f9342282'/>
<id>urn:sha1:75c4617bcf9723956a9eddf63e391b35f9342282</id>
<content type='text'>
Signed-off-by: Huangbin Zhan &lt;zhanhb88@gmail.com&gt;
</content>
</entry>
<entry>
<title>diffutils: provide diff, cmp as alternatives</title>
<updated>2019-06-15T05:28:43Z</updated>
<author>
<name>Yousong Zhou</name>
</author>
<published>2019-06-12T05:50:36Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=b02e4eafd18eb436f0d4ebcc1cf345bb024fc093'/>
<id>urn:sha1:b02e4eafd18eb436f0d4ebcc1cf345bb024fc093</id>
<content type='text'>
Resolves openwrt/packages#6361

Signed-off-by: Yousong Zhou &lt;yszhou4tech@gmail.com&gt;
</content>
</entry>
<entry>
<title>diffutils: Update to 3.7</title>
<updated>2019-01-17T05:39:47Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2019-01-17T05:39:47Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=b2de31d22a54b5a0f8d51edca7dffab6c324be6e'/>
<id>urn:sha1:b2de31d22a54b5a0f8d51edca7dffab6c324be6e</id>
<content type='text'>
Some Makefile consistency updates.

Added PKG_BUILD_PARALLEL for faster compilation.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;</content>
</entry>
<entry>
<title>diffutils: fix 'compilation error on x86_64</title>
<updated>2018-06-13T16:15:26Z</updated>
<author>
<name>Sébastien Delafond</name>
</author>
<published>2018-06-13T16:15:26Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=698821001fba87fc2839ffcbc7b547888bf650e1'/>
<id>urn:sha1:698821001fba87fc2839ffcbc7b547888bf650e1</id>
<content type='text'>
Here was the first error I got:

  xstrtol-error.c:84:26: error: invalid use of undefined type 'struct
  rpl_option'

More information on this error here:
  https://www.mail-archive.com/clfs-support@lists.clfs.org/msg00297.html

I'm not sure if this is an issue in my build environment, but I believe
this is the proper fix because gzip and zile use the same option:

  ./utils/gzip/Makefile:	gl_cv_func_getopt_gnu=yes \
  ./utils/zile/Makefile:	gl_cv_func_getopt_gnu=yes \

This commit is mostly a reformat/sign-off of previous work by Dirk
Morris &lt;dmorris@untangle.com&gt;

Signed-off-by: Sébastien Delafond &lt;sdelafond@gmail.com&gt;
</content>
</entry>
<entry>
<title>diffutils: update to 3.6</title>
<updated>2018-01-05T20:50:28Z</updated>
<author>
<name>Hannu Nyman</name>
</author>
<published>2018-01-05T20:50:28Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=f37c3df2229d27cd51b2e0080d1d26b212147c35'/>
<id>urn:sha1:f37c3df2229d27cd51b2e0080d1d26b212147c35</id>
<content type='text'>
Update GNU diffutils to 3.6

Signed-off-by: Hannu Nyman &lt;hannu.nyman@iki.fi&gt;
</content>
</entry>
</feed>
