* [Buildroot] [PATCH] package/ncftp: bump to version 3.2.9
@ 2025-03-26 8:05 yegorslists
2025-03-26 20:16 ` Julien Olivain
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: yegorslists @ 2025-03-26 8:05 UTC (permalink / raw)
To: buildroot
From: Yegor Yefremov <yegorslists@googlemail.com>
Remove upstreamed patches.
Autoreconf is broken. Hence, use the configure script directly.
Fixes:
https://autobuild.buildroot.org/results/60c3dbe02af354ff9820258ffd00eec088114d69/
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
.../ncftp/0001-ncftp-3.2.7-fix-gcc14.patch | 19 -----
.../ncftp/0002-ncftp-3.2.7-fix-clang.patch | 72 -------------------
package/ncftp/ncftp.hash | 2 +-
package/ncftp/ncftp.mk | 13 +---
4 files changed, 3 insertions(+), 103 deletions(-)
delete mode 100644 package/ncftp/0001-ncftp-3.2.7-fix-gcc14.patch
delete mode 100644 package/ncftp/0002-ncftp-3.2.7-fix-clang.patch
diff --git a/package/ncftp/0001-ncftp-3.2.7-fix-gcc14.patch b/package/ncftp/0001-ncftp-3.2.7-fix-gcc14.patch
deleted file mode 100644
index e2cda631d4..0000000000
--- a/package/ncftp/0001-ncftp-3.2.7-fix-gcc14.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-fix select arg detection
-
-Reference:
- https://bugs.gentoo.org/921487
-
-Upstream: N/A, unresponsive contact email address.
-
-Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---- a/autoconf_local/aclocal.m4
-+++ b/autoconf_local/aclocal.m4
-@@ -4196,7 +4196,7 @@
- #include <sys/select.h>
- #endif
- #include <sys/socket.h> /* MG: always incl */
--extern select ($ac_cv_func_select_arg1,$ac_cv_func_select_arg234,$ac_cv_func_select_arg234,$ac_cv_func_select_arg234,$ac_cv_func_select_arg5);],,dnl
-+extern int select ($ac_cv_func_select_arg1,$ac_cv_func_select_arg234,$ac_cv_func_select_arg234,$ac_cv_func_select_arg234,$ac_cv_func_select_arg5);],,dnl
- [ac_not_found=no ; break 3],ac_not_found=yes)
- done
- done
diff --git a/package/ncftp/0002-ncftp-3.2.7-fix-clang.patch b/package/ncftp/0002-ncftp-3.2.7-fix-clang.patch
deleted file mode 100644
index bed103609c..0000000000
--- a/package/ncftp/0002-ncftp-3.2.7-fix-clang.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-Fix compilation with clang-16
-
-aclocal.m4 contains code that no longer compiles: missing headers and missing
-return types.
-
-Reference:
- https://gitweb.gentoo.org/repo/gentoo.git/tree/net-ftp/ncftp/files/ncftp-3.2.7-fix-clang.patch
-
-Upstream: N/A, unresponsive contact email address.
-
-Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---- a/autoconf_local/aclocal.m4
-+++ b/autoconf_local/aclocal.m4
-@@ -3057,6 +3057,7 @@
- #include <sys/uio.h>
- #include <sys/socket.h>
- #include <sys/un.h>
-+#include <string.h>
- ],[
- struct sockaddr_un uaddr;
-
-@@ -3285,6 +3286,7 @@
- #ifdef HAVE_RESOLV_H
- # include <resolv.h>
- #endif
-+#include <string.h>
- ],[
- /* function-body */
- int len;
-@@ -3363,6 +3365,7 @@
- #include <stdio.h>
- #include <stdlib.h>
-
-+ int
- main(int argc, char **argv)
- {
- /* Note: don't actually call readline,
-@@ -5145,6 +5148,7 @@
- #ifdef HAVE_STDLIB_H
- # include <stdlib.h>
- #endif
-+#include <string.h>
-
- #ifdef HAVE_NCURSES_H
- # define NCURSES_OPAQUE 0
-@@ -5176,6 +5180,7 @@
- #endif
-
-
-+int
- main(int argc, char **argv)
- {
- /* Note: don't actually call curses, since it may block;
-@@ -6510,7 +6515,6 @@
- #endif
- #endif /* MG */
-
--int
- int main(void)
- {
- char *data, *data2, *data3;
-@@ -6607,8 +6611,9 @@
- AC_CACHE_CHECK(whether setvbuf arguments are reversed,
- ac_cv_func_setvbuf_reversed,
- [AC_TRY_RUN([#include <stdio.h>
-+ $include <stdlib.h>
- /* If setvbuf has the reversed format, exit 0. */
-- main () {
-+ int main (void) {
- /* This call has the arguments reversed.
- A reversed system may check and see that the address of main
- is not _IOLBF, _IONBF, or _IOFBF, and return nonzero. */
diff --git a/package/ncftp/ncftp.hash b/package/ncftp/ncftp.hash
index 3e390b1015..a9414d62f5 100644
--- a/package/ncftp/ncftp.hash
+++ b/package/ncftp/ncftp.hash
@@ -1,3 +1,3 @@
# Locally computed:
-sha256 d41c5c4d6614a8eae2ed4e4d7ada6b6d3afcc9fb65a4ed9b8711344bef24f7e8 ncftp-3.2.7-src.tar.xz
+sha256 f1108e77782376f8aec691f68297a3364a9a7c2d9bb12e326f550ff9770f47a7 ncftp-3.2.9-src.tar.gz
sha256 4fe2f063d25d79c49712a272ebb68e050c703eed9c66c80108427edfe3285580 doc/LICENSE.txt
diff --git a/package/ncftp/ncftp.mk b/package/ncftp/ncftp.mk
index 57c3a5d08b..fa46bc3339 100644
--- a/package/ncftp/ncftp.mk
+++ b/package/ncftp/ncftp.mk
@@ -4,8 +4,8 @@
#
################################################################################
-NCFTP_VERSION = 3.2.7
-NCFTP_SOURCE = ncftp-$(NCFTP_VERSION)-src.tar.xz
+NCFTP_VERSION = 3.2.9
+NCFTP_SOURCE = ncftp-$(NCFTP_VERSION)-src.tar.gz
NCFTP_SITE = https://www.ncftp.com/public_ftp/ncftp
NCFTP_TARGET_BINS = ncftp
NCFTP_LICENSE = ClArtistic
@@ -14,15 +14,6 @@ NCFTP_LICENSE_FILES = doc/LICENSE.txt
NCFTP_DEPENDENCIES = host-autoconf
NCFTP_CONF_OPTS = --disable-ccdv
-# The bundled configure script is generated by autoconf 2.13 and doesn't
-# detect cross-compilation correctly. Therefore, we have to regenerate it.
-# We need to pass -I because of the non-standard m4 directory name, and
-# none of the other autotools are used, so the below is the easiest.
-define NCFTP_RUN_AUTOCONF
- (cd $(@D); $(AUTOCONF) -I$(@D)/autoconf_local/)
-endef
-NCFTP_PRE_CONFIGURE_HOOKS += NCFTP_RUN_AUTOCONF
-
ifeq ($(BR2_PACKAGE_NCFTP_GET),y)
NCFTP_TARGET_BINS += ncftpget
endif
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH] package/ncftp: bump to version 3.2.9
2025-03-26 8:05 [Buildroot] [PATCH] package/ncftp: bump to version 3.2.9 yegorslists
@ 2025-03-26 20:16 ` Julien Olivain
2025-04-03 7:44 ` Thomas Petazzoni via buildroot
2025-04-16 21:15 ` Arnout Vandecappelle via buildroot
2 siblings, 0 replies; 7+ messages in thread
From: Julien Olivain @ 2025-03-26 20:16 UTC (permalink / raw)
To: yegorslists; +Cc: buildroot
On 26/03/2025 09:05, yegorslists@googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
>
> Remove upstreamed patches.
>
> Autoreconf is broken. Hence, use the configure script directly.
>
> Fixes:
> https://autobuild.buildroot.org/results/60c3dbe02af354ff9820258ffd00eec088114d69/
>
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Applied to master, thanks.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH] package/ncftp: bump to version 3.2.9
2025-03-26 8:05 [Buildroot] [PATCH] package/ncftp: bump to version 3.2.9 yegorslists
2025-03-26 20:16 ` Julien Olivain
@ 2025-04-03 7:44 ` Thomas Petazzoni via buildroot
2025-04-03 7:53 ` Yegor Yefremov
2025-04-16 21:15 ` Arnout Vandecappelle via buildroot
2 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni via buildroot @ 2025-04-03 7:44 UTC (permalink / raw)
To: yegorslists; +Cc: buildroot
Hello Yegor,
On Wed, 26 Mar 2025 09:05:06 +0100
yegorslists@googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
>
> Remove upstreamed patches.
>
> Autoreconf is broken. Hence, use the configure script directly.
>
> Fixes:
> https://autobuild.buildroot.org/results/60c3dbe02af354ff9820258ffd00eec088114d69/
>
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
This somehow breaks the build, but not your fault: it looks like
upstream changed the tarball. Indeed, on sources.buildroot.net we know
have in cache the tarball that matches the hash you have submitted in
this patch. But the tarball available on the official website now has a
different hash.
See the build failure at:
https://autobuild.buildroot.net/results/d18/d18191dbb1fb8d7fe64ee547ca9b97c133434ea2/build-end.log
Could you have a look perhaps?
Best regards,
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH] package/ncftp: bump to version 3.2.9
2025-04-03 7:44 ` Thomas Petazzoni via buildroot
@ 2025-04-03 7:53 ` Yegor Yefremov
2025-04-03 8:00 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 7+ messages in thread
From: Yegor Yefremov @ 2025-04-03 7:53 UTC (permalink / raw)
To: Thomas Petazzoni; +Cc: buildroot
Hi Thomas,
On Thu, Apr 3, 2025 at 9:44 AM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> Hello Yegor,
>
> On Wed, 26 Mar 2025 09:05:06 +0100
> yegorslists@googlemail.com wrote:
>
> > From: Yegor Yefremov <yegorslists@googlemail.com>
> >
> > Remove upstreamed patches.
> >
> > Autoreconf is broken. Hence, use the configure script directly.
> >
> > Fixes:
> > https://autobuild.buildroot.org/results/60c3dbe02af354ff9820258ffd00eec088114d69/
> >
> > Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
>
> This somehow breaks the build, but not your fault: it looks like
> upstream changed the tarball. Indeed, on sources.buildroot.net we know
> have in cache the tarball that matches the hash you have submitted in
> this patch. But the tarball available on the official website now has a
> different hash.
>
> See the build failure at:
>
> https://autobuild.buildroot.net/results/d18/d18191dbb1fb8d7fe64ee547ca9b97c133434ea2/build-end.log
>
> Could you have a look perhaps?
I have also noticed this change and already reported to the ncftp
maintainer. He has just introduced a small change without bumping the
version.
There is also another issue with the ncftpbookmarks binary that relies
on curses instead of ncurses. I have also reported this. Let's wait
till Mon/Tue and if I don't get an answer from him, I'll send a patch
fixing checksum and disabling ncftpbookmarks binary.
Best regards,
Yegor
> --
> Thomas Petazzoni, co-owner and CEO, Bootlin
> Embedded Linux and Kernel engineering and training
> https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH] package/ncftp: bump to version 3.2.9
2025-04-03 7:53 ` Yegor Yefremov
@ 2025-04-03 8:00 ` Thomas Petazzoni via buildroot
2025-04-03 8:03 ` Yegor Yefremov
0 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni via buildroot @ 2025-04-03 8:00 UTC (permalink / raw)
To: Yegor Yefremov; +Cc: buildroot
On Thu, 3 Apr 2025 09:53:52 +0200
Yegor Yefremov <yegorslists@googlemail.com> wrote:
> I have also noticed this change and already reported to the ncftp
> maintainer. He has just introduced a small change without bumping the
> version.
>
> There is also another issue with the ncftpbookmarks binary that relies
> on curses instead of ncurses. I have also reported this. Let's wait
> till Mon/Tue and if I don't get an answer from him, I'll send a patch
> fixing checksum and disabling ncftpbookmarks binary.
Fixing the hash will not work, as we have already cached the previous
tarball with the old hash. All what can be done now is for upstream to
release a new version, and us to update to this version.
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH] package/ncftp: bump to version 3.2.9
2025-04-03 8:00 ` Thomas Petazzoni via buildroot
@ 2025-04-03 8:03 ` Yegor Yefremov
0 siblings, 0 replies; 7+ messages in thread
From: Yegor Yefremov @ 2025-04-03 8:03 UTC (permalink / raw)
To: Thomas Petazzoni; +Cc: buildroot
On Thu, Apr 3, 2025 at 10:00 AM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> On Thu, 3 Apr 2025 09:53:52 +0200
> Yegor Yefremov <yegorslists@googlemail.com> wrote:
>
> > I have also noticed this change and already reported to the ncftp
> > maintainer. He has just introduced a small change without bumping the
> > version.
> >
> > There is also another issue with the ncftpbookmarks binary that relies
> > on curses instead of ncurses. I have also reported this. Let's wait
> > till Mon/Tue and if I don't get an answer from him, I'll send a patch
> > fixing checksum and disabling ncftpbookmarks binary.
>
> Fixing the hash will not work, as we have already cached the previous
> tarball with the old hash. All what can be done now is for upstream to
> release a new version, and us to update to this version.
OK. I see. Then, I'm waiting for the maintainer's response.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Buildroot] [PATCH] package/ncftp: bump to version 3.2.9
2025-03-26 8:05 [Buildroot] [PATCH] package/ncftp: bump to version 3.2.9 yegorslists
2025-03-26 20:16 ` Julien Olivain
2025-04-03 7:44 ` Thomas Petazzoni via buildroot
@ 2025-04-16 21:15 ` Arnout Vandecappelle via buildroot
2 siblings, 0 replies; 7+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2025-04-16 21:15 UTC (permalink / raw)
To: yegorslists, buildroot
On 26/03/2025 09:05, yegorslists@googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
>
> Remove upstreamed patches.
>
> Autoreconf is broken. Hence, use the configure script directly.
>
> Fixes:
> https://autobuild.buildroot.org/results/60c3dbe02af354ff9820258ffd00eec088114d69/
>
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Applied to 2025.02.x, thanks.
Regards,
Arnout
> ---
> .../ncftp/0001-ncftp-3.2.7-fix-gcc14.patch | 19 -----
> .../ncftp/0002-ncftp-3.2.7-fix-clang.patch | 72 -------------------
> package/ncftp/ncftp.hash | 2 +-
> package/ncftp/ncftp.mk | 13 +---
> 4 files changed, 3 insertions(+), 103 deletions(-)
> delete mode 100644 package/ncftp/0001-ncftp-3.2.7-fix-gcc14.patch
> delete mode 100644 package/ncftp/0002-ncftp-3.2.7-fix-clang.patch
>
> diff --git a/package/ncftp/0001-ncftp-3.2.7-fix-gcc14.patch b/package/ncftp/0001-ncftp-3.2.7-fix-gcc14.patch
> deleted file mode 100644
> index e2cda631d4..0000000000
> --- a/package/ncftp/0001-ncftp-3.2.7-fix-gcc14.patch
> +++ /dev/null
> @@ -1,19 +0,0 @@
> -fix select arg detection
> -
> -Reference:
> - https://bugs.gentoo.org/921487
> -
> -Upstream: N/A, unresponsive contact email address.
> -
> -Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---- a/autoconf_local/aclocal.m4
> -+++ b/autoconf_local/aclocal.m4
> -@@ -4196,7 +4196,7 @@
> - #include <sys/select.h>
> - #endif
> - #include <sys/socket.h> /* MG: always incl */
> --extern select ($ac_cv_func_select_arg1,$ac_cv_func_select_arg234,$ac_cv_func_select_arg234,$ac_cv_func_select_arg234,$ac_cv_func_select_arg5);],,dnl
> -+extern int select ($ac_cv_func_select_arg1,$ac_cv_func_select_arg234,$ac_cv_func_select_arg234,$ac_cv_func_select_arg234,$ac_cv_func_select_arg5);],,dnl
> - [ac_not_found=no ; break 3],ac_not_found=yes)
> - done
> - done
> diff --git a/package/ncftp/0002-ncftp-3.2.7-fix-clang.patch b/package/ncftp/0002-ncftp-3.2.7-fix-clang.patch
> deleted file mode 100644
> index bed103609c..0000000000
> --- a/package/ncftp/0002-ncftp-3.2.7-fix-clang.patch
> +++ /dev/null
> @@ -1,72 +0,0 @@
> -Fix compilation with clang-16
> -
> -aclocal.m4 contains code that no longer compiles: missing headers and missing
> -return types.
> -
> -Reference:
> - https://gitweb.gentoo.org/repo/gentoo.git/tree/net-ftp/ncftp/files/ncftp-3.2.7-fix-clang.patch
> -
> -Upstream: N/A, unresponsive contact email address.
> -
> -Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---- a/autoconf_local/aclocal.m4
> -+++ b/autoconf_local/aclocal.m4
> -@@ -3057,6 +3057,7 @@
> - #include <sys/uio.h>
> - #include <sys/socket.h>
> - #include <sys/un.h>
> -+#include <string.h>
> - ],[
> - struct sockaddr_un uaddr;
> -
> -@@ -3285,6 +3286,7 @@
> - #ifdef HAVE_RESOLV_H
> - # include <resolv.h>
> - #endif
> -+#include <string.h>
> - ],[
> - /* function-body */
> - int len;
> -@@ -3363,6 +3365,7 @@
> - #include <stdio.h>
> - #include <stdlib.h>
> -
> -+ int
> - main(int argc, char **argv)
> - {
> - /* Note: don't actually call readline,
> -@@ -5145,6 +5148,7 @@
> - #ifdef HAVE_STDLIB_H
> - # include <stdlib.h>
> - #endif
> -+#include <string.h>
> -
> - #ifdef HAVE_NCURSES_H
> - # define NCURSES_OPAQUE 0
> -@@ -5176,6 +5180,7 @@
> - #endif
> -
> -
> -+int
> - main(int argc, char **argv)
> - {
> - /* Note: don't actually call curses, since it may block;
> -@@ -6510,7 +6515,6 @@
> - #endif
> - #endif /* MG */
> -
> --int
> - int main(void)
> - {
> - char *data, *data2, *data3;
> -@@ -6607,8 +6611,9 @@
> - AC_CACHE_CHECK(whether setvbuf arguments are reversed,
> - ac_cv_func_setvbuf_reversed,
> - [AC_TRY_RUN([#include <stdio.h>
> -+ $include <stdlib.h>
> - /* If setvbuf has the reversed format, exit 0. */
> -- main () {
> -+ int main (void) {
> - /* This call has the arguments reversed.
> - A reversed system may check and see that the address of main
> - is not _IOLBF, _IONBF, or _IOFBF, and return nonzero. */
> diff --git a/package/ncftp/ncftp.hash b/package/ncftp/ncftp.hash
> index 3e390b1015..a9414d62f5 100644
> --- a/package/ncftp/ncftp.hash
> +++ b/package/ncftp/ncftp.hash
> @@ -1,3 +1,3 @@
> # Locally computed:
> -sha256 d41c5c4d6614a8eae2ed4e4d7ada6b6d3afcc9fb65a4ed9b8711344bef24f7e8 ncftp-3.2.7-src.tar.xz
> +sha256 f1108e77782376f8aec691f68297a3364a9a7c2d9bb12e326f550ff9770f47a7 ncftp-3.2.9-src.tar.gz
> sha256 4fe2f063d25d79c49712a272ebb68e050c703eed9c66c80108427edfe3285580 doc/LICENSE.txt
> diff --git a/package/ncftp/ncftp.mk b/package/ncftp/ncftp.mk
> index 57c3a5d08b..fa46bc3339 100644
> --- a/package/ncftp/ncftp.mk
> +++ b/package/ncftp/ncftp.mk
> @@ -4,8 +4,8 @@
> #
> ################################################################################
>
> -NCFTP_VERSION = 3.2.7
> -NCFTP_SOURCE = ncftp-$(NCFTP_VERSION)-src.tar.xz
> +NCFTP_VERSION = 3.2.9
> +NCFTP_SOURCE = ncftp-$(NCFTP_VERSION)-src.tar.gz
> NCFTP_SITE = https://www.ncftp.com/public_ftp/ncftp
> NCFTP_TARGET_BINS = ncftp
> NCFTP_LICENSE = ClArtistic
> @@ -14,15 +14,6 @@ NCFTP_LICENSE_FILES = doc/LICENSE.txt
> NCFTP_DEPENDENCIES = host-autoconf
> NCFTP_CONF_OPTS = --disable-ccdv
>
> -# The bundled configure script is generated by autoconf 2.13 and doesn't
> -# detect cross-compilation correctly. Therefore, we have to regenerate it.
> -# We need to pass -I because of the non-standard m4 directory name, and
> -# none of the other autotools are used, so the below is the easiest.
> -define NCFTP_RUN_AUTOCONF
> - (cd $(@D); $(AUTOCONF) -I$(@D)/autoconf_local/)
> -endef
> -NCFTP_PRE_CONFIGURE_HOOKS += NCFTP_RUN_AUTOCONF
> -
> ifeq ($(BR2_PACKAGE_NCFTP_GET),y)
> NCFTP_TARGET_BINS += ncftpget
> endif
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-04-16 21:15 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-26 8:05 [Buildroot] [PATCH] package/ncftp: bump to version 3.2.9 yegorslists
2025-03-26 20:16 ` Julien Olivain
2025-04-03 7:44 ` Thomas Petazzoni via buildroot
2025-04-03 7:53 ` Yegor Yefremov
2025-04-03 8:00 ` Thomas Petazzoni via buildroot
2025-04-03 8:03 ` Yegor Yefremov
2025-04-16 21:15 ` Arnout Vandecappelle via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox