<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/utils/lrzsz, 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-10-12T17:04:29Z</updated>
<entry>
<title>lrzsz: fix compilation with gcc15</title>
<updated>2025-10-12T17:04:29Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2025-10-09T02:05:53Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=e9b710181d257bb5fe648cc9d8346fd484dfa251'/>
<id>urn:sha1:e9b710181d257bb5fe648cc9d8346fd484dfa251</id>
<content type='text'>
Add gnu11 to fix compilation. Support for the latest standard takes too
much patching.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>lrzsz: fix compilation with GCC14</title>
<updated>2025-05-01T21:11:40Z</updated>
<author>
<name>Robert Marko</name>
</author>
<published>2025-05-01T20:17:15Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=067a5c3415a1325f49d6150aaf97a068002e9957'/>
<id>urn:sha1:067a5c3415a1325f49d6150aaf97a068002e9957</id>
<content type='text'>
Trying to compile with GCC14 will fail on compiler sanity check with:
configure:1056:1: error: return type defaults to 'int' [-Wimplicit-int]
 1056 | main(){return(0);}
      | ^~~~

This is due to GCC14 not allowing implicit integer types anymore[1].

So, patch configure to avoid this and make it compile with GCC14.

Proper fix would be to use autoreconf to rebuild configure but configure.in
is completely outdated and would likely be more broken when regenerated.

[1] https://gcc.gnu.org/gcc-14/porting_to.html#implicit-int

Signed-off-by: Robert Marko &lt;robimarko@gmail.com&gt;
</content>
</entry>
<entry>
<title>lrzsz: fix random build failures by really disabling autofoo</title>
<updated>2024-12-13T19:24:12Z</updated>
<author>
<name>Petr Štetiar</name>
</author>
<published>2024-12-12T20:19:04Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=3e612586041d40ebfafadb65eaa6fc34b2061ee8'/>
<id>urn:sha1:3e612586041d40ebfafadb65eaa6fc34b2061ee8</id>
<content type='text'>
Currently we're seeing random build failures, caused by autofoo being
called on very ancient bundled autofoo:

  cd . &amp;&amp; aclocal
  aclocal.real: warning: autoconf input should be named 'configure.ac', not 'configure.in'
  acinclude.m4:2: warning: underquoted definition of AC_REPLACE_GNU_GETOPT
  acinclude.m4:2:   run info Automake 'Extending aclocal'
  acinclude.m4:2:   or see https://www.gnu.org/software/automake/manual/automake.html#Extending-aclocal
  configure.in:106: error: automatic de-ANSI-fication support has been removed

For some reason that `touch` based neutralization introduced in commit
6d6c4b21b5e2 ("lrzsz: update to v0.12.21rc and fix a CVE") doesn't
always work.

So lets fix it by removing the autofoo bits from the bundled Makefile.in
and while at it remove processing of man and testsuite subdirs to save
some computing cycles.

Fixes: #25543
Fixes: 6d6c4b21b5e2 ("lrzsz: update to v0.12.21rc and fix a CVE")
Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
<entry>
<title>utils/lrzsz: fix PKG_CPE_ID</title>
<updated>2024-02-04T23:59:34Z</updated>
<author>
<name>Fabrice Fontaine</name>
</author>
<published>2024-02-01T21:31:08Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=da56ee5bed54bf0f58a4a51d7849b9de2880dfde'/>
<id>urn:sha1:da56ee5bed54bf0f58a4a51d7849b9de2880dfde</id>
<content type='text'>
PKG_CPE_ID was missing ":lrzsz"

Fixes: 6d6c4b21b5e22a9f1058db5b61521a298e00a5f0 (lrzsz: update to v0.12.21rc and fix a CVE)

Signed-off-by: Fabrice Fontaine &lt;fontaine.fabrice@gmail.com&gt;
</content>
</entry>
<entry>
<title>lrzsz: update to v0.12.21rc and fix a CVE</title>
<updated>2023-01-15T14:14:06Z</updated>
<author>
<name>Andre Heider</name>
</author>
<published>2023-01-14T10:40:39Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=6d6c4b21b5e22a9f1058db5b61521a298e00a5f0'/>
<id>urn:sha1:6d6c4b21b5e22a9f1058db5b61521a298e00a5f0</id>
<content type='text'>
This updates to v0.12.21rc from 1999 (sic), which was never officially
released. There're fixes in there, and it's what debian ships, so let's
use that too. While at it, use debian's autohell hack and package
description too.

Patch 1 fixes a hang with musl.
Patch 2 fixes CVE-2018-10195, add PKG_CPE_ID while at it.

Refesh the rest.

Fixes: CVE-2018-10195
Signed-off-by: Andre Heider &lt;a.heider@gmail.com&gt;
</content>
</entry>
<entry>
<title>lrzsz: fix various format warning</title>
<updated>2022-01-31T07:35:25Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2022-01-31T06:56:31Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=a24de043b205091cf01b4df6b37f5cadf48eed39'/>
<id>urn:sha1:a24de043b205091cf01b4df6b37f5cadf48eed39</id>
<content type='text'>
Found with -Wformat.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: Run refresh on all packages</title>
<updated>2021-02-21T00:02:15Z</updated>
<author>
<name>Ilya Lipnitskiy</name>
</author>
<published>2021-02-21T00:02:15Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=5d8d4fbbcb5c5de9370711c19bb3510210989a98'/>
<id>urn:sha1:5d8d4fbbcb5c5de9370711c19bb3510210989a98</id>
<content type='text'>
The crude loop I wrote to come up with this changeset:

  find -L package/feeds/packages/ -name patches | \
  sed 's/patches$/refresh/' | sort | xargs make

Signed-off-by: Ilya Lipnitskiy &lt;ilya.lipnitskiy@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: Change .*GPL.*+ licenses to SPDX compatible identifier</title>
<updated>2019-09-10T05:45:15Z</updated>
<author>
<name>Sven Eckelmann</name>
</author>
<published>2019-09-02T13:15:08Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=bbb1ea7345f367ed675dcfe40e36ac32ddf8a2e1'/>
<id>urn:sha1:bbb1ea7345f367ed675dcfe40e36ac32ddf8a2e1</id>
<content type='text'>
The CONTRIBUTING.md requests an (or multiple) SPDX identifier for GPL
licenses. But a lot of packages did use a different, non-SPDX style with a
"+" at the end instead of "-or-later".

Signed-off-by: Sven Eckelmann &lt;sven@narfation.org&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>Import lrzsz from oldpackages</title>
<updated>2016-05-30T01:17:30Z</updated>
<author>
<name>kuoruan</name>
</author>
<published>2016-05-29T03:10:54Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=ffd6fd17327d732f0433b17409c380767c620713'/>
<id>urn:sha1:ffd6fd17327d732f0433b17409c380767c620713</id>
<content type='text'>
Signed-off-by: Hsing-Wang Liao &lt;kuoruan@gmail.com&gt;
</content>
</entry>
</feed>
