* [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com
@ 2024-06-03 7:17 Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 02/23] package/ebtables/ebtables.hash: use http:// to match _SITE Peter Korsgaard
` (22 more replies)
0 siblings, 23 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
The server was decommisioned in 2017 and is unlikely to ever come back, so
drop the reference:
https://www.doomworld.com/forum/topic/96999-rip-ftpidsoftwarecom/
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/doom-wad/doom-wad.mk | 1 -
1 file changed, 1 deletion(-)
diff --git a/package/doom-wad/doom-wad.mk b/package/doom-wad/doom-wad.mk
index f348fc2207..5d37a6a6d4 100644
--- a/package/doom-wad/doom-wad.mk
+++ b/package/doom-wad/doom-wad.mk
@@ -7,7 +7,6 @@
DOOM_WAD_VERSION = 1.9
DOOM_WAD_SOURCE = doom$(subst .,,$(DOOM_WAD_VERSION))s.zip
# Official server currently unavailable
-# DOOM_WAD_SITE = ftp://ftp.idsoftware.com/idstuff/doom
DOOM_WAD_SITE = http://www.jbserver.com/downloads/games/doom/misc/shareware
define DOOM_WAD_EXTRACT_CMDS
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 02/23] package/ebtables/ebtables.hash: use http:// to match _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:25 ` Baruch Siach via buildroot
2024-06-03 7:17 ` [Buildroot] [PATCH 03/23] package/file: use http:// _SITE Peter Korsgaard
` (21 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
For consistency.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/ebtables/ebtables.hash | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/ebtables/ebtables.hash b/package/ebtables/ebtables.hash
index 98106b0d60..06e2f9f345 100644
--- a/package/ebtables/ebtables.hash
+++ b/package/ebtables/ebtables.hash
@@ -1,4 +1,4 @@
-# ftp://ftp.netfilter.org/pub/ebtables/ebtables-2.0.11.tar.gz.sha256sum
+# http://ftp.netfilter.org/pub/ebtables/ebtables-2.0.11.tar.gz.sha256sum
sha256 b71f654784a726329f88b412ef7b96b4e5d786ed2bd28193ed7b4c0d677dfd2a ebtables-2.0.11.tar.gz
# Locally computed
sha256 ebdb8ae564c952792017ec680e2edd30443642216eb9f8a3d8fa166c0cb628c1 COPYING
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 03/23] package/file: use http:// _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 02/23] package/ebtables/ebtables.hash: use http:// to match _SITE Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 9:19 ` Yann E. MORIN
2024-06-03 7:17 ` [Buildroot] [PATCH 04/23] package/freeradius-client: use https:// _SITE Peter Korsgaard
` (20 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
ftp.astrom.com also serves the files over http://, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/file/file.hash | 2 +-
package/file/file.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/file/file.hash b/package/file/file.hash
index 08e8497471..4beca5e2e3 100644
--- a/package/file/file.hash
+++ b/package/file/file.hash
@@ -1,5 +1,5 @@
# Locally calculated after verifying signature
-# ftp://ftp.astron.com/pub/file/file-5.45.tar.gz.asc
+# http://ftp.astron.com/pub/file/file-5.45.tar.gz.asc
# using key BE04995BA8F90ED0C0C176C471112AB16CB33B3A
sha256 fc97f51029bb0e2c9f4e3bffefdaf678f0e039ee872b9de5c002a6d09c784d82 file-5.45.tar.gz
sha256 0bfa856a9930bddadbef95d1be1cf4e163c0be618e76ea3275caaf255283e274 COPYING
diff --git a/package/file/file.mk b/package/file/file.mk
index b67fcaead4..52fbab81a9 100644
--- a/package/file/file.mk
+++ b/package/file/file.mk
@@ -5,7 +5,7 @@
################################################################################
FILE_VERSION = 5.45
-FILE_SITE = ftp://ftp.astron.com/pub/file
+FILE_SITE = http://ftp.astron.com/pub/file
FILE_LICENSE = BSD-2-Clause, BSD-4-Clause (one file), BSD-3-Clause (one file)
FILE_LICENSE_FILES = COPYING src/mygetopt.h src/vasprintf.c
FILE_CPE_ID_VALID = YES
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 04/23] package/freeradius-client: use https:// _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 02/23] package/ebtables/ebtables.hash: use http:// to match _SITE Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 03/23] package/file: use http:// _SITE Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 05/23] package/freeradius-server: " Peter Korsgaard
` (19 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot; +Cc: David Bender
The tarballs are also available at
https://freeradius.org/ftp/pub/freeradius/, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/freeradius-client/freeradius-client.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/freeradius-client/freeradius-client.mk b/package/freeradius-client/freeradius-client.mk
index b113643415..32be15ba79 100644
--- a/package/freeradius-client/freeradius-client.mk
+++ b/package/freeradius-client/freeradius-client.mk
@@ -5,7 +5,7 @@
################################################################################
FREERADIUS_CLIENT_VERSION = 1.1.7
-FREERADIUS_CLIENT_SITE = ftp://ftp.freeradius.org/pub/freeradius
+FREERADIUS_CLIENT_SITE = https://freeradius.org/ftp/pub/freeradius
FREERADIUS_CLIENT_LICENSE = BSD-2-Clause
FREERADIUS_CLIENT_LICENSE_FILES = COPYRIGHT
FREERADIUS_CLIENT_INSTALL_STAGING = YES
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 05/23] package/freeradius-server: use https:// _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (2 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 04/23] package/freeradius-client: use https:// _SITE Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 06/23] package/libmnl: use https for _SITE Peter Korsgaard
` (18 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot; +Cc: David GOUARIN
The tarballs are also available at
https://freeradius.org/ftp/pub/freeradius/, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/freeradius-server/freeradius-server.hash | 2 +-
package/freeradius-server/freeradius-server.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/freeradius-server/freeradius-server.hash b/package/freeradius-server/freeradius-server.hash
index a267bd6f8c..6ee8f7786c 100644
--- a/package/freeradius-server/freeradius-server.hash
+++ b/package/freeradius-server/freeradius-server.hash
@@ -1,4 +1,4 @@
# Locally computed, after checking
-# ftp://ftp.freeradius.org/pub/freeradius/freeradius-server-3.2.3.tar.bz2.sig
+# https://freeradius.org/ftp/pub/freeradius/freeradius-server-3.2.3.tar.bz2.sig
sha256 4a16aeffbfa1424e1f317fdf71d17e5523a4fd9564d87c747a60595ef93c5d1f freeradius-server-3.2.3.tar.bz2
sha256 0a0e46014fc2efd5144a30359c0e6e1ea9fa3dd407d3318204150efd7b4caf6a COPYRIGHT
diff --git a/package/freeradius-server/freeradius-server.mk b/package/freeradius-server/freeradius-server.mk
index c64ae79918..1ec77a1cc4 100644
--- a/package/freeradius-server/freeradius-server.mk
+++ b/package/freeradius-server/freeradius-server.mk
@@ -7,7 +7,7 @@
FREERADIUS_SERVER_VERSION = 3.2.3
FREERADIUS_SERVER_SOURCE = \
freeradius-server-$(FREERADIUS_SERVER_VERSION).tar.bz2
-FREERADIUS_SERVER_SITE = ftp://ftp.freeradius.org/pub/freeradius
+FREERADIUS_SERVER_SITE = https://freeradius.org/ftp/pub/freeradius
FREERADIUS_SERVER_LICENSE = GPL-2.0
FREERADIUS_SERVER_LICENSE_FILES = COPYRIGHT
FREERADIUS_SERVER_CPE_ID_VENDOR = freeradius
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 06/23] package/libmnl: use https for _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (3 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 05/23] package/freeradius-server: " Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:30 ` Dario Binacchi via buildroot
2024-06-03 7:17 ` [Buildroot] [PATCH 07/23] package/libmnl: use upstream sha256sum Peter Korsgaard
` (17 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot; +Cc: Dario Binacchi
http redirects to https, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/libmnl/libmnl.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/libmnl/libmnl.mk b/package/libmnl/libmnl.mk
index 08eebbaed9..3bd3a03c89 100644
--- a/package/libmnl/libmnl.mk
+++ b/package/libmnl/libmnl.mk
@@ -6,7 +6,7 @@
LIBMNL_VERSION = 1.0.5
LIBMNL_SOURCE = libmnl-$(LIBMNL_VERSION).tar.bz2
-LIBMNL_SITE = http://netfilter.org/projects/libmnl/files
+LIBMNL_SITE = https://netfilter.org/projects/libmnl/files
LIBMNL_INSTALL_STAGING = YES
LIBMNL_LICENSE = LGPL-2.1+
LIBMNL_LICENSE_FILES = COPYING
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 07/23] package/libmnl: use upstream sha256sum
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (4 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 06/23] package/libmnl: use https for _SITE Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:29 ` Dario Binacchi via buildroot
2024-06-03 7:17 ` [Buildroot] [PATCH 08/23] package/libnetfilter_acct: use https for _SITE Peter Korsgaard
` (16 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot; +Cc: Dario Binacchi
ftp.netfilter.org no longer provides ftp, so use the https:// url from
_SITE.
This provides a .sha256sum but NOT md5/sha1, so update the .hash file to
match.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/libmnl/libmnl.hash | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/package/libmnl/libmnl.hash b/package/libmnl/libmnl.hash
index 4b592333cb..e2db46f03b 100644
--- a/package/libmnl/libmnl.hash
+++ b/package/libmnl/libmnl.hash
@@ -1,7 +1,5 @@
-# From ftp://ftp.netfilter.org/pub/libmnl/libmnl-1.0.5.tar.bz2.{md5sum,sha1sum}
-md5 0bbb70573119ec5d49435114583e7a49 libmnl-1.0.5.tar.bz2
-sha1 63c6456b77f7978a7b37e62c1b38346b2ef2d91c libmnl-1.0.5.tar.bz2
+# From https://netfilter.org/projects/libmnl/files/libmnl-1.0.5.tar.bz2.sha256sum
+sha256 274b9b919ef3152bfb3da3a13c950dd60d6e2bcd54230ffeca298d03b40d0525 libmnl-1.0.5.tar.bz2
# Locally calculated
-sha256 274b9b919ef3152bfb3da3a13c950dd60d6e2bcd54230ffeca298d03b40d0525 libmnl-1.0.5.tar.bz2
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 08/23] package/libnetfilter_acct: use https for _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (5 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 07/23] package/libmnl: use upstream sha256sum Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 09/23] package/libnetfilter_acct: use https:// reference for .hash file Peter Korsgaard
` (15 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
http redirects to https, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/libnetfilter_acct/Config.in | 2 +-
package/libnetfilter_acct/libnetfilter_acct.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/libnetfilter_acct/Config.in b/package/libnetfilter_acct/Config.in
index ecfef6dc64..614af27fe1 100644
--- a/package/libnetfilter_acct/Config.in
+++ b/package/libnetfilter_acct/Config.in
@@ -5,4 +5,4 @@ config BR2_PACKAGE_LIBNETFILTER_ACCT
libnetfilter_acct is the userspace library providing interface
to extended accounting infrastructure.
- http://www.netfilter.org/projects/libnetfilter_acct/
+ https://www.netfilter.org/projects/libnetfilter_acct/
diff --git a/package/libnetfilter_acct/libnetfilter_acct.mk b/package/libnetfilter_acct/libnetfilter_acct.mk
index e791f6f13f..6763ad27dd 100644
--- a/package/libnetfilter_acct/libnetfilter_acct.mk
+++ b/package/libnetfilter_acct/libnetfilter_acct.mk
@@ -6,7 +6,7 @@
LIBNETFILTER_ACCT_VERSION = 1.0.3
LIBNETFILTER_ACCT_SOURCE = libnetfilter_acct-$(LIBNETFILTER_ACCT_VERSION).tar.bz2
-LIBNETFILTER_ACCT_SITE = http://www.netfilter.org/projects/libnetfilter_acct/files
+LIBNETFILTER_ACCT_SITE = https://www.netfilter.org/projects/libnetfilter_acct/files
LIBNETFILTER_ACCT_INSTALL_STAGING = YES
LIBNETFILTER_ACCT_DEPENDENCIES = host-pkgconf libmnl
LIBNETFILTER_ACCT_LICENSE = LGPL-2.1+
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 09/23] package/libnetfilter_acct: use https:// reference for .hash file
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (6 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 08/23] package/libnetfilter_acct: use https for _SITE Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 10/23] package/libnetfilter_log: use https for _SITE Peter Korsgaard
` (14 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
ftp.netfilter.org no longer provides ftp, so use the https:// url from
_SITE.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/libnetfilter_acct/libnetfilter_acct.hash | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/libnetfilter_acct/libnetfilter_acct.hash b/package/libnetfilter_acct/libnetfilter_acct.hash
index a72d83fb28..da9e1a3264 100644
--- a/package/libnetfilter_acct/libnetfilter_acct.hash
+++ b/package/libnetfilter_acct/libnetfilter_acct.hash
@@ -1,4 +1,4 @@
-# From ftp://ftp.netfilter.org/pub/libnetfilter_acct/libnetfilter_acct-1.0.3.tar.bz2.{md5sum,sha1sum}
+# From https://www.netfilter.org/projects/libnetfilter_acct/files/libnetfilter_acct-1.0.3.tar.bz2.{md5sum,sha1sum}
md5 814b2972b2f5c740ff87510bc109168b libnetfilter_acct-1.0.3.tar.bz2
sha1 4b9073e4aa989b0f000c8da1ab01b22fceed52b2 libnetfilter_acct-1.0.3.tar.bz2
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 10/23] package/libnetfilter_log: use https for _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (7 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 09/23] package/libnetfilter_acct: use https:// reference for .hash file Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 11/23] package/libnetfilter_log: use https:// reference for .hash file Peter Korsgaard
` (13 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
http redirects to https, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/libnetfilter_log/Config.in | 2 +-
package/libnetfilter_log/libnetfilter_log.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/libnetfilter_log/Config.in b/package/libnetfilter_log/Config.in
index b244e8a8e9..66e1b170bc 100644
--- a/package/libnetfilter_log/Config.in
+++ b/package/libnetfilter_log/Config.in
@@ -6,4 +6,4 @@ config BR2_PACKAGE_LIBNETFILTER_LOG
libnetfilter_log is a userspace library providing interface
to packets that have been logged by the kernel packet filter.
- http://www.netfilter.org/projects/libnetfilter_log/
+ https://www.netfilter.org/projects/libnetfilter_log/
diff --git a/package/libnetfilter_log/libnetfilter_log.mk b/package/libnetfilter_log/libnetfilter_log.mk
index 01f94aac41..9b01f819bb 100644
--- a/package/libnetfilter_log/libnetfilter_log.mk
+++ b/package/libnetfilter_log/libnetfilter_log.mk
@@ -6,7 +6,7 @@
LIBNETFILTER_LOG_VERSION = 1.0.2
LIBNETFILTER_LOG_SOURCE = libnetfilter_log-$(LIBNETFILTER_LOG_VERSION).tar.bz2
-LIBNETFILTER_LOG_SITE = http://www.netfilter.org/projects/libnetfilter_log/files
+LIBNETFILTER_LOG_SITE = https://www.netfilter.org/projects/libnetfilter_log/files
LIBNETFILTER_LOG_INSTALL_STAGING = YES
LIBNETFILTER_LOG_DEPENDENCIES = host-pkgconf libmnl libnfnetlink
LIBNETFILTER_LOG_LICENSE = GPL-2.0+
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 11/23] package/libnetfilter_log: use https:// reference for .hash file
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (8 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 10/23] package/libnetfilter_log: use https for _SITE Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 12/23] package/lynx: use http:// _SITE Peter Korsgaard
` (12 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
ftp.netfilter.org no longer provides ftp, so use the https:// url from
_SITE.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/libnetfilter_log/libnetfilter_log.hash | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/libnetfilter_log/libnetfilter_log.hash b/package/libnetfilter_log/libnetfilter_log.hash
index 7589284f40..1e3cea0a80 100644
--- a/package/libnetfilter_log/libnetfilter_log.hash
+++ b/package/libnetfilter_log/libnetfilter_log.hash
@@ -1,4 +1,4 @@
-# From ftp://ftp.netfilter.org/pub/libnetfilter_log/libnetfilter_log-1.0.2.tar.bz2.sha256sum
+# From https://www.netfilter.org/projects/libnetfilter_log/files/libnetfilter_log-1.0.2.tar.bz2.sha256sum
sha256 e3f408575614d849e4726b45e90c7ebb0e6744b04859555a9ce6ec40744ffeea libnetfilter_log-1.0.2.tar.bz2
# Hash for license file:
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 12/23] package/lynx: use http:// _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (9 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 11/23] package/libnetfilter_log: use https:// reference for .hash file Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 9:21 ` Yann E. MORIN
2024-06-03 7:17 ` [Buildroot] [PATCH 13/23] package/ncftp: use https:// _SITE Peter Korsgaard
` (11 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot; +Cc: Mario Lang
The ftp server does not allow anonymous login, causing the download to fail:
wget --passive-ftp -nd -t 3 -O '/home/peko/source/buildroot/output-qt/build/.lynx2.8.9rel.1.tar.bz2.XlcdCK/output' 'ftp://ftp.invisible-island.net/lynx/tarballs/lynx2.8.9rel.1.tar.bz2'
--2024-06-02 22:21:49-- ftp://ftp.invisible-island.net/lynx/tarballs/lynx2.8.9rel.1.tar.bz2
=> ‘/home/peko/source/buildroot/output-qt/build/.lynx2.8.9rel.1.tar.bz2.XlcdCK/output’
Resolving ftp.invisible-island.net (ftp.invisible-island.net)... 216.194.253.29
Connecting to ftp.invisible-island.net (ftp.invisible-island.net)|216.194.253.29|:21... connected.
Logging in as anonymous ...
Login incorrect.
Luckily the tarball is also available over http://, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/lynx/lynx.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/lynx/lynx.mk b/package/lynx/lynx.mk
index da57eb2601..41f9161f10 100644
--- a/package/lynx/lynx.mk
+++ b/package/lynx/lynx.mk
@@ -6,7 +6,7 @@
LYNX_VERSION = 2.8.9rel.1
LYNX_SOURCE = lynx$(LYNX_VERSION).tar.bz2
-LYNX_SITE = ftp://ftp.invisible-island.net/lynx/tarballs
+LYNX_SITE = http://invisible-mirror.net/archives/lynx/tarballs/
LYNX_PATCH = \
https://salsa.debian.org/lynx-team/lynx/-/raw/debian/2.9.0dev.6-3_deb11u1/debian/patches/90_CVE-2021-38165.patch
# 90_CVE-2021-38165.patch
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 13/23] package/ncftp: use https:// _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (10 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 12/23] package/lynx: use http:// _SITE Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 14/23] package/newlib-bare-metal: " Peter Korsgaard
` (10 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
The ftp server does not respond, so change to https:// instead. Here the
3.2.6 version is under older_versions.
wget ftp://ftp.ncftp.com/ncftp/ncftp-3.2.6-src.tar.gz
--2024-06-03 08:10:44-- ftp://ftp.ncftp.com/ncftp/ncftp-3.2.6-src.tar.gz
=> ‘ncftp-3.2.6-src.tar.gz’
Resolving ftp.ncftp.com (ftp.ncftp.com)... 209.197.102.38
Connecting to ftp.ncftp.com (ftp.ncftp.com)|209.197.102.38|:21... ^C
http redirects to https, so update the help text to match.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/ncftp/Config.in | 2 +-
package/ncftp/ncftp.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/ncftp/Config.in b/package/ncftp/Config.in
index 6a939aa88c..c8870a3dde 100644
--- a/package/ncftp/Config.in
+++ b/package/ncftp/Config.in
@@ -7,7 +7,7 @@ config BR2_PACKAGE_NCFTP
application programs implementing the File Transfer Protocol
(FTP).
- http://www.ncftp.com/ncftp/
+ https://www.ncftp.com/ncftp/
if BR2_PACKAGE_NCFTP
diff --git a/package/ncftp/ncftp.mk b/package/ncftp/ncftp.mk
index 676a9c5895..d380ebae02 100644
--- a/package/ncftp/ncftp.mk
+++ b/package/ncftp/ncftp.mk
@@ -8,7 +8,7 @@ NCFTP_VERSION = 3.2.6
# use .gz as upstream .xz tarball has changed after the hash was added for
# 2017.02. Can be changed back to .xz when version is bumped
NCFTP_SOURCE = ncftp-$(NCFTP_VERSION)-src.tar.gz
-NCFTP_SITE = ftp://ftp.ncftp.com/ncftp
+NCFTP_SITE = https://www.ncftp.com/public_ftp/ncftp/older_versions
NCFTP_TARGET_BINS = ncftp
NCFTP_LICENSE = Clarified Artistic License
NCFTP_LICENSE_FILES = doc/LICENSE.txt
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 14/23] package/newlib-bare-metal: use https:// _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (11 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 13/23] package/ncftp: use https:// _SITE Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 8:05 ` Frager, Neal via buildroot
2024-06-03 7:17 ` [Buildroot] [PATCH 15/23] package/nfacct: use https for _SITE Peter Korsgaard
` (9 subsequent siblings)
22 siblings, 1 reply; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot; +Cc: Neal Frager, Ibai Erkiaga
The tarballs are also available over https, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/newlib-bare-metal/newlib-bare-metal.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/newlib-bare-metal/newlib-bare-metal.mk b/package/newlib-bare-metal/newlib-bare-metal.mk
index 9f5d765751..89092eb973 100644
--- a/package/newlib-bare-metal/newlib-bare-metal.mk
+++ b/package/newlib-bare-metal/newlib-bare-metal.mk
@@ -5,7 +5,7 @@
################################################################################
NEWLIB_BARE_METAL_VERSION = 4.4.0.20231231
-NEWLIB_BARE_METAL_SITE = ftp://sourceware.org/pub/newlib
+NEWLIB_BARE_METAL_SITE = https://sourceware.org/ftp/newlib
NEWLIB_BARE_METAL_SOURCE = newlib-$(NEWLIB_BARE_METAL_VERSION).tar.gz
NEWLIB_BARE_METAL_DEPENDENCIES = host-gcc-bare-metal
NEWLIB_BARE_METAL_ADD_TOOLCHAIN_DEPENDENCY = NO
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 15/23] package/nfacct: use https for _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (12 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 14/23] package/newlib-bare-metal: " Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 16/23] package/nfacct: use https:// reference for .hash file Peter Korsgaard
` (8 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
http redirects to https, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/nfacct/Config.in | 2 +-
package/nfacct/nfacct.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/nfacct/Config.in b/package/nfacct/Config.in
index e30d2d997b..02e7a6dbaa 100644
--- a/package/nfacct/Config.in
+++ b/package/nfacct/Config.in
@@ -5,4 +5,4 @@ config BR2_PACKAGE_NFACCT
nfacct is the command line tool to create/retrieve/delete
netfilter accounting objects.
- http://www.netfilter.org/projects/nfacct/
+ https://www.netfilter.org/projects/nfacct/
diff --git a/package/nfacct/nfacct.mk b/package/nfacct/nfacct.mk
index d4c7c4ce70..0092cb9c26 100644
--- a/package/nfacct/nfacct.mk
+++ b/package/nfacct/nfacct.mk
@@ -6,7 +6,7 @@
NFACCT_VERSION = 1.0.2
NFACCT_SOURCE = nfacct-$(NFACCT_VERSION).tar.bz2
-NFACCT_SITE = http://www.netfilter.org/projects/nfacct/files
+NFACCT_SITE = https://www.netfilter.org/projects/nfacct/files
NFACCT_DEPENDENCIES = host-pkgconf \
libnetfilter_acct
NFACCT_LICENSE = GPL-2.0
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 16/23] package/nfacct: use https:// reference for .hash file
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (13 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 15/23] package/nfacct: use https for _SITE Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 17/23] package/uboot-tools: use https:// _SITE Peter Korsgaard
` (7 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
ftp.netfilter.org no longer provides ftp, so use the https:// url from
_SITE.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/nfacct/nfacct.hash | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/nfacct/nfacct.hash b/package/nfacct/nfacct.hash
index aac5ce0ab8..4038ff86bc 100644
--- a/package/nfacct/nfacct.hash
+++ b/package/nfacct/nfacct.hash
@@ -1,4 +1,4 @@
-# From ftp://ftp.netfilter.org/pub/nfacct/nfacct-1.0.2.tar.bz2.{md5sum,sha1sum}
+# From https://www.netfilter.org/projects/nfacct/files/nfacct-1.0.2.tar.bz2.{md5sum,sha1sum}
md5 94faafdaaed85ca9220c5692be8a408e nfacct-1.0.2.tar.bz2
sha1 17d6576778227ea93c62600d9b18ff4932963c6a nfacct-1.0.2.tar.bz2
# Locally computed
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 17/23] package/uboot-tools: use https:// _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (14 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 16/23] package/nfacct: use https:// reference for .hash file Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 18/23] package/ulogd: use https for _SITE Peter Korsgaard
` (6 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
The tarballs are also available over https, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/uboot-tools/uboot-tools.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/uboot-tools/uboot-tools.mk b/package/uboot-tools/uboot-tools.mk
index 12e10dea91..e9c7edb218 100644
--- a/package/uboot-tools/uboot-tools.mk
+++ b/package/uboot-tools/uboot-tools.mk
@@ -6,7 +6,7 @@
UBOOT_TOOLS_VERSION = 2021.07
UBOOT_TOOLS_SOURCE = u-boot-$(UBOOT_TOOLS_VERSION).tar.bz2
-UBOOT_TOOLS_SITE = ftp://ftp.denx.de/pub/u-boot
+UBOOT_TOOLS_SITE = https://ftp.denx.de/pub/u-boot
UBOOT_TOOLS_LICENSE = GPL-2.0+
UBOOT_TOOLS_LICENSE_FILES = Licenses/gpl-2.0.txt
UBOOT_TOOLS_CPE_ID_VENDOR = denx
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 18/23] package/ulogd: use https for _SITE
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (15 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 17/23] package/uboot-tools: use https:// _SITE Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 19/23] package/ulogd: use https:// reference for .hash file Peter Korsgaard
` (5 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
http redirects to https, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/ulogd/Config.in | 2 +-
package/ulogd/ulogd.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/ulogd/Config.in b/package/ulogd/Config.in
index e0e199961a..6631076ae7 100644
--- a/package/ulogd/Config.in
+++ b/package/ulogd/Config.in
@@ -11,7 +11,7 @@ config BR2_PACKAGE_ULOGD
ulogd is a userspace logging daemon for netfilter/iptables
related logging.
- http://www.netfilter.org/projects/ulogd/
+ https://www.netfilter.org/projects/ulogd/
comment "ulogd needs a toolchain w/ dynamic library"
depends on BR2_STATIC_LIBS
diff --git a/package/ulogd/ulogd.mk b/package/ulogd/ulogd.mk
index 2ebf076d9a..8ef8ec5701 100644
--- a/package/ulogd/ulogd.mk
+++ b/package/ulogd/ulogd.mk
@@ -6,7 +6,7 @@
ULOGD_VERSION = 2.0.8
ULOGD_SOURCE = ulogd-$(ULOGD_VERSION).tar.bz2
-ULOGD_SITE = http://www.netfilter.org/projects/ulogd/files
+ULOGD_SITE = https://www.netfilter.org/projects/ulogd/files
ULOGD_DEPENDENCIES = host-pkgconf \
libmnl libnetfilter_acct libnetfilter_conntrack libnetfilter_log \
libnfnetlink
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 19/23] package/ulogd: use https:// reference for .hash file
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (16 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 18/23] package/ulogd: use https for _SITE Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 20/23] package/zip: download from sourceforge Peter Korsgaard
` (4 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
ftp.netfilter.org no longer provides ftp, so use the https:// url from
_SITE.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/ulogd/ulogd.hash | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/ulogd/ulogd.hash b/package/ulogd/ulogd.hash
index 35b518b9ce..8d729aeb8a 100644
--- a/package/ulogd/ulogd.hash
+++ b/package/ulogd/ulogd.hash
@@ -1,4 +1,4 @@
-# From ftp://ftp.netfilter.org/pub/ulogd/ulogd-2.0.8.tar.bz2.sha256sum
+# From https://www.netfilter.org/projects/ulogd/files/ulogd-2.0.8.tar.bz2.sha256sum
sha256 4ead6c3970c3f57fa1e89fe2d7cc483ba6fe2bd1b08701521e0b3afd667df291 ulogd-2.0.8.tar.bz2
# Locally calculated
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 20/23] package/zip: download from sourceforge
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (17 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 19/23] package/ulogd: use https:// reference for .hash file Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 21/23] package/proftpd: download from github Peter Korsgaard
` (3 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot; +Cc: Jan Pedersen
The tarball (with .tar.gz extension but same content) is also available over
https from sourceforge, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/zip/zip.hash | 2 +-
package/zip/zip.mk | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/package/zip/zip.hash b/package/zip/zip.hash
index eb4bbf3b03..cbb96beb31 100644
--- a/package/zip/zip.hash
+++ b/package/zip/zip.hash
@@ -1,3 +1,3 @@
# Locally calculated from download (no sig, hash)
-sha256 f0e8bb1f9b7eb0b01285495a2699df3a4b766784c1765a8f1aeedf63c0806369 zip30.tgz
+sha256 f0e8bb1f9b7eb0b01285495a2699df3a4b766784c1765a8f1aeedf63c0806369 zip30.tar.gz
sha256 8ecd6c1bab449127eb665cef1561e73a8bce52e217375f6f466939e137b1e110 LICENSE
diff --git a/package/zip/zip.mk b/package/zip/zip.mk
index 3aa59e7ba7..0457ba9414 100644
--- a/package/zip/zip.mk
+++ b/package/zip/zip.mk
@@ -5,9 +5,9 @@
################################################################################
ZIP_VERSION = 3.0
-# The version is really 3.0, but the tarball is named zip30.tgz
-ZIP_SOURCE = zip$(subst .,,$(ZIP_VERSION)).tgz
-ZIP_SITE = ftp://ftp.info-zip.org/pub/infozip/src
+# The version is really 3.0, but the tarball is named zip30.tar.gz
+ZIP_SOURCE = zip$(subst .,,$(ZIP_VERSION)).tar.gz
+ZIP_SITE = https://sourceforge.net/projects/infozip/files/Zip%203.x%20%28latest%29/$(ZIP_VERSION)
ZIP_LICENSE = Info-ZIP
ZIP_LICENSE_FILES = LICENSE
ZIP_CPE_ID_VENDOR = info-zip_project
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 21/23] package/proftpd: download from github
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (18 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 20/23] package/zip: download from sourceforge Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 22/23] package/on2-8170-libs: remove package Peter Korsgaard
` (2 subsequent siblings)
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
The tarball is also available over https from github, so use that instead.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/proftpd/proftpd.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/proftpd/proftpd.mk b/package/proftpd/proftpd.mk
index 242de38b0d..cd7d232672 100644
--- a/package/proftpd/proftpd.mk
+++ b/package/proftpd/proftpd.mk
@@ -5,7 +5,7 @@
################################################################################
PROFTPD_VERSION = 1.3.8b
-PROFTPD_SITE = ftp://ftp.proftpd.org/distrib/source
+PROFTPD_SITE = https://github.com/proftpd/proftpd/archive/v$(PROFTPD_VERSION)
PROFTPD_LICENSE = GPL-2.0+
PROFTPD_LICENSE_FILES = COPYING
PROFTPD_CPE_ID_VENDOR = proftpd
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 22/23] package/on2-8170-libs: remove package
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (19 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 21/23] package/proftpd: download from github Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 23/23] package/on2-8170-modules: " Peter Korsgaard
2024-06-03 9:24 ` [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Yann E. MORIN
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
The linux4sam_1.9 upstream is no longer available for this binary-only
library that was used with a gstreamer 0.10 plugin, which was itself removed
in 2020.02 with commit fb49c7a26182f9d (package/gstreamer/*: remove
packages), so remove the package.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
Config.in.legacy | 6 ++++++
package/Config.in | 1 -
package/on2-8170-libs/Config.in | 15 --------------
package/on2-8170-libs/on2-8170-libs.hash | 2 --
package/on2-8170-libs/on2-8170-libs.mk | 26 ------------------------
5 files changed, 6 insertions(+), 44 deletions(-)
delete mode 100644 package/on2-8170-libs/Config.in
delete mode 100644 package/on2-8170-libs/on2-8170-libs.hash
delete mode 100644 package/on2-8170-libs/on2-8170-libs.mk
diff --git a/Config.in.legacy b/Config.in.legacy
index 46f7a304cb..a1650733a9 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -146,6 +146,12 @@ endif
comment "Legacy options removed in 2024.05"
+config BR2_PACKAGE_ON2_8170_LIBS
+ bool "on2-8170-libs removed"
+ select BR2_LEGACY
+ help
+ Upstream for this binary only library is no longer available.
+
config BR2_GCC_VERSION_11_X
bool "gcc 11.x support removed"
select BR2_LEGACY
diff --git a/package/Config.in b/package/Config.in
index 1b6a5b0dab..2ec4e70566 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -44,7 +44,6 @@ menu "Audio and video applications"
source "package/multicat/Config.in"
source "package/musepack/Config.in"
source "package/ncmpc/Config.in"
- source "package/on2-8170-libs/Config.in"
source "package/opus-tools/Config.in"
source "package/pipewire/Config.in"
source "package/pipewire-media-session/Config.in"
diff --git a/package/on2-8170-libs/Config.in b/package/on2-8170-libs/Config.in
deleted file mode 100644
index 2a60c581e4..0000000000
--- a/package/on2-8170-libs/Config.in
+++ /dev/null
@@ -1,15 +0,0 @@
-config BR2_PACKAGE_ON2_8170_LIBS
- bool "on2-8170-libs"
- #This is a binary only package which has been compiled for glibc
- depends on BR2_arm926t
- depends on BR2_TOOLCHAIN_USES_GLIBC
- depends on BR2_LINUX_KERNEL # on2-8170-modules
- select BR2_PACKAGE_ON2_8170_MODULES # runtime
- help
- Libraries for Hantro X170 video decoder
-
- http://www.at91.com/linux4sam/bin/view/Linux4SAM/SAM9M10Gstreamer
-
-comment "on2-8170-libs needs a glibc toolchain and a Linux kernel to be built"
- depends on BR2_arm926t
- depends on !BR2_LINUX_KERNEL || !BR2_TOOLCHAIN_USES_GLIBC
diff --git a/package/on2-8170-libs/on2-8170-libs.hash b/package/on2-8170-libs/on2-8170-libs.hash
deleted file mode 100644
index c8b76e5794..0000000000
--- a/package/on2-8170-libs/on2-8170-libs.hash
+++ /dev/null
@@ -1,2 +0,0 @@
-# locally computed
-sha256 db7390a13e7c0426894a6f966ecde1f89e6566416088c50729750e800306a2de on2-8170-libs-1.0.tar.gz
diff --git a/package/on2-8170-libs/on2-8170-libs.mk b/package/on2-8170-libs/on2-8170-libs.mk
deleted file mode 100644
index ad321d832f..0000000000
--- a/package/on2-8170-libs/on2-8170-libs.mk
+++ /dev/null
@@ -1,26 +0,0 @@
-################################################################################
-#
-# on2-8170-libs
-#
-################################################################################
-
-ON2_8170_LIBS_VERSION = 1.0
-ON2_8170_LIBS_SITE = ftp://ftp.linux4sam.org/pub/demo/linux4sam_1.9/codec
-
-ON2_8170_LIBS_LICENSE = PROPRIETARY
-# No license file is included in the archive
-
-ON2_8170_LIBS_INSTALL_STAGING = YES
-
-define ON2_8170_LIBS_INSTALL_STAGING_CMDS
- mkdir -p $(STAGING_DIR)/usr/lib $(STAGING_DIR)/usr/include
- cp -dpf $(@D)/*.a $(@D)/*.so $(STAGING_DIR)/usr/lib
- cp -dpf $(@D)/*.h $(STAGING_DIR)/usr/include
-endef
-
-define ON2_8170_LIBS_INSTALL_TARGET_CMDS
- mkdir -p $(TARGET_DIR)/usr/lib
- cp -dpf $(@D)/*.so $(TARGET_DIR)/usr/lib
-endef
-
-$(eval $(generic-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* [Buildroot] [PATCH 23/23] package/on2-8170-modules: remove package
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (20 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 22/23] package/on2-8170-libs: remove package Peter Korsgaard
@ 2024-06-03 7:17 ` Peter Korsgaard
2024-06-03 9:24 ` [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Yann E. MORIN
22 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:17 UTC (permalink / raw)
To: buildroot
With the corresponding binary library and gstreamer 0.10 plugin removed, the
package for the kernel module does not make a lot of sense, so remove the
package.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
Config.in.legacy | 7 +++++++
package/Config.in | 1 -
package/on2-8170-modules/Config.in | 13 -------------
package/on2-8170-modules/on2-8170-modules.hash | 2 --
package/on2-8170-modules/on2-8170-modules.mk | 14 --------------
5 files changed, 7 insertions(+), 30 deletions(-)
delete mode 100644 package/on2-8170-modules/Config.in
delete mode 100644 package/on2-8170-modules/on2-8170-modules.hash
delete mode 100644 package/on2-8170-modules/on2-8170-modules.mk
diff --git a/Config.in.legacy b/Config.in.legacy
index a1650733a9..b5a87d4e88 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -146,6 +146,13 @@ endif
comment "Legacy options removed in 2024.05"
+config BR2_PACKAGE_ON2_8170_MODULES
+ bool "on2-8170-modules removed"
+ select BR2_LEGACY
+ help
+ The corresponding library and gstreamer 0.10 plugin are no
+ longer available.
+
config BR2_PACKAGE_ON2_8170_LIBS
bool "on2-8170-libs removed"
select BR2_LEGACY
diff --git a/package/Config.in b/package/Config.in
index 2ec4e70566..bfbec1c21d 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -574,7 +574,6 @@ endmenu
source "package/nvme/Config.in"
source "package/ofono/Config.in"
source "package/ola/Config.in"
- source "package/on2-8170-modules/Config.in"
source "package/open2300/Config.in"
source "package/openfpgaloader/Config.in"
source "package/openipmi/Config.in"
diff --git a/package/on2-8170-modules/Config.in b/package/on2-8170-modules/Config.in
deleted file mode 100644
index 8c51e0c8d4..0000000000
--- a/package/on2-8170-modules/Config.in
+++ /dev/null
@@ -1,13 +0,0 @@
-config BR2_PACKAGE_ON2_8170_MODULES
- bool "on2-8170-modules"
- depends on BR2_LINUX_KERNEL
- depends on BR2_arm926t
- help
- Kernel modules for Hantro x170 hardware video decompression
- support.
-
- http://www.at91.com/linux4sam/bin/view/Linux4SAM/SAM9M10Gstreamer
-
-comment "on2-8170-modules needs a Linux kernel to be built"
- depends on BR2_arm926t
- depends on !BR2_LINUX_KERNEL
diff --git a/package/on2-8170-modules/on2-8170-modules.hash b/package/on2-8170-modules/on2-8170-modules.hash
deleted file mode 100644
index cfb1272dd3..0000000000
--- a/package/on2-8170-modules/on2-8170-modules.hash
+++ /dev/null
@@ -1,2 +0,0 @@
-# locally computed
-sha256 d04d3acb8755281f6721d2a2efe04014060f83f38972208f356a486d52ca8bfc on2-8170-modules-73b08061d30789178e692bc332b73d1d9922bf39.tar.gz
diff --git a/package/on2-8170-modules/on2-8170-modules.mk b/package/on2-8170-modules/on2-8170-modules.mk
deleted file mode 100644
index 98643134be..0000000000
--- a/package/on2-8170-modules/on2-8170-modules.mk
+++ /dev/null
@@ -1,14 +0,0 @@
-################################################################################
-#
-# on2-8170-modules
-#
-################################################################################
-
-ON2_8170_MODULES_VERSION = 73b08061d30789178e692bc332b73d1d9922bf39
-ON2_8170_MODULES_SITE = $(call github,alexandrebelloni,on2-8170-modules,$(ON2_8170_MODULES_VERSION))
-
-ON2_8170_MODULES_LICENSE = GPL-2.0+
-#There is no license file
-
-$(eval $(kernel-module))
-$(eval $(generic-package))
--
2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 32+ messages in thread
* Re: [Buildroot] [PATCH 02/23] package/ebtables/ebtables.hash: use http:// to match _SITE
2024-06-03 7:17 ` [Buildroot] [PATCH 02/23] package/ebtables/ebtables.hash: use http:// to match _SITE Peter Korsgaard
@ 2024-06-03 7:25 ` Baruch Siach via buildroot
2024-06-03 7:31 ` Peter Korsgaard
0 siblings, 1 reply; 32+ messages in thread
From: Baruch Siach via buildroot @ 2024-06-03 7:25 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: buildroot
Hi Peter,
On Mon, Jun 03 2024, Peter Korsgaard wrote:
> For consistency.
>
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
> package/ebtables/ebtables.hash | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/ebtables/ebtables.hash b/package/ebtables/ebtables.hash
> index 98106b0d60..06e2f9f345 100644
> --- a/package/ebtables/ebtables.hash
> +++ b/package/ebtables/ebtables.hash
> @@ -1,4 +1,4 @@
> -# ftp://ftp.netfilter.org/pub/ebtables/ebtables-2.0.11.tar.gz.sha256sum
> +# http://ftp.netfilter.org/pub/ebtables/ebtables-2.0.11.tar.gz.sha256sum
Maybe better
https://netfilter.org/pub/ebtables/ebtables-2.0.11.tar.gz.sha256sum
Thanks,
baruch
> sha256 b71f654784a726329f88b412ef7b96b4e5d786ed2bd28193ed7b4c0d677dfd2a ebtables-2.0.11.tar.gz
> # Locally computed
> sha256 ebdb8ae564c952792017ec680e2edd30443642216eb9f8a3d8fa166c0cb628c1 COPYING
--
~. .~ Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
- baruch@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* Re: [Buildroot] [PATCH 07/23] package/libmnl: use upstream sha256sum
2024-06-03 7:17 ` [Buildroot] [PATCH 07/23] package/libmnl: use upstream sha256sum Peter Korsgaard
@ 2024-06-03 7:29 ` Dario Binacchi via buildroot
0 siblings, 0 replies; 32+ messages in thread
From: Dario Binacchi via buildroot @ 2024-06-03 7:29 UTC (permalink / raw)
To: Peter Korsgaard, buildroot
Hi Peter,
> Il 03/06/2024 09:17 CEST Peter Korsgaard <peter@korsgaard.com> ha scritto:
>
>
> ftp.netfilter.org no longer provides ftp, so use the https:// url from
> _SITE.
>
> This provides a .sha256sum but NOT md5/sha1, so update the .hash file to
> match.
>
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
> package/libmnl/libmnl.hash | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/package/libmnl/libmnl.hash b/package/libmnl/libmnl.hash
> index 4b592333cb..e2db46f03b 100644
> --- a/package/libmnl/libmnl.hash
> +++ b/package/libmnl/libmnl.hash
> @@ -1,7 +1,5 @@
> -# From ftp://ftp.netfilter.org/pub/libmnl/libmnl-1.0.5.tar.bz2.{md5sum,sha1sum}
> -md5 0bbb70573119ec5d49435114583e7a49 libmnl-1.0.5.tar.bz2
> -sha1 63c6456b77f7978a7b37e62c1b38346b2ef2d91c libmnl-1.0.5.tar.bz2
> +# From https://netfilter.org/projects/libmnl/files/libmnl-1.0.5.tar.bz2.sha256sum
> +sha256 274b9b919ef3152bfb3da3a13c950dd60d6e2bcd54230ffeca298d03b40d0525 libmnl-1.0.5.tar.bz2
>
> # Locally calculated
> -sha256 274b9b919ef3152bfb3da3a13c950dd60d6e2bcd54230ffeca298d03b40d0525 libmnl-1.0.5.tar.bz2
> sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING
> --
> 2.39.2
Reviewed-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Thanks and regards,
Dario
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* Re: [Buildroot] [PATCH 06/23] package/libmnl: use https for _SITE
2024-06-03 7:17 ` [Buildroot] [PATCH 06/23] package/libmnl: use https for _SITE Peter Korsgaard
@ 2024-06-03 7:30 ` Dario Binacchi via buildroot
0 siblings, 0 replies; 32+ messages in thread
From: Dario Binacchi via buildroot @ 2024-06-03 7:30 UTC (permalink / raw)
To: Peter Korsgaard, buildroot
Hi Peter,
> Il 03/06/2024 09:17 CEST Peter Korsgaard <peter@korsgaard.com> ha scritto:
>
>
> http redirects to https, so use that instead.
>
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
> package/libmnl/libmnl.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/libmnl/libmnl.mk b/package/libmnl/libmnl.mk
> index 08eebbaed9..3bd3a03c89 100644
> --- a/package/libmnl/libmnl.mk
> +++ b/package/libmnl/libmnl.mk
> @@ -6,7 +6,7 @@
>
> LIBMNL_VERSION = 1.0.5
> LIBMNL_SOURCE = libmnl-$(LIBMNL_VERSION).tar.bz2
> -LIBMNL_SITE = http://netfilter.org/projects/libmnl/files
> +LIBMNL_SITE = https://netfilter.org/projects/libmnl/files
> LIBMNL_INSTALL_STAGING = YES
> LIBMNL_LICENSE = LGPL-2.1+
> LIBMNL_LICENSE_FILES = COPYING
Reviewed-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Thanks and regards,
Dario
> --
> 2.39.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* Re: [Buildroot] [PATCH 02/23] package/ebtables/ebtables.hash: use http:// to match _SITE
2024-06-03 7:25 ` Baruch Siach via buildroot
@ 2024-06-03 7:31 ` Peter Korsgaard
0 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-03 7:31 UTC (permalink / raw)
To: Baruch Siach; +Cc: buildroot
>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:
> Hi Peter,
> On Mon, Jun 03 2024, Peter Korsgaard wrote:
>> For consistency.
>>
>> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
>> ---
>> package/ebtables/ebtables.hash | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/package/ebtables/ebtables.hash b/package/ebtables/ebtables.hash
>> index 98106b0d60..06e2f9f345 100644
>> --- a/package/ebtables/ebtables.hash
>> +++ b/package/ebtables/ebtables.hash
>> @@ -1,4 +1,4 @@
>> -# ftp://ftp.netfilter.org/pub/ebtables/ebtables-2.0.11.tar.gz.sha256sum
>> +# http://ftp.netfilter.org/pub/ebtables/ebtables-2.0.11.tar.gz.sha256sum
> Maybe better
> https://netfilter.org/pub/ebtables/ebtables-2.0.11.tar.gz.sha256sum
Ups, indeed - Will fix.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* Re: [Buildroot] [PATCH 14/23] package/newlib-bare-metal: use https:// _SITE
2024-06-03 7:17 ` [Buildroot] [PATCH 14/23] package/newlib-bare-metal: " Peter Korsgaard
@ 2024-06-03 8:05 ` Frager, Neal via buildroot
0 siblings, 0 replies; 32+ messages in thread
From: Frager, Neal via buildroot @ 2024-06-03 8:05 UTC (permalink / raw)
To: Peter Korsgaard, buildroot@buildroot.org; +Cc: Erkiaga Elorza, Ibai
> The tarballs are also available over https, so use that instead.
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Reviewed-by: Neal Frager <neal.frager@amd.com>
Best regards,
Neal Frager
AMD
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* Re: [Buildroot] [PATCH 03/23] package/file: use http:// _SITE
2024-06-03 7:17 ` [Buildroot] [PATCH 03/23] package/file: use http:// _SITE Peter Korsgaard
@ 2024-06-03 9:19 ` Yann E. MORIN
0 siblings, 0 replies; 32+ messages in thread
From: Yann E. MORIN @ 2024-06-03 9:19 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: buildroot
Peter, All,
On 2024-06-03 09:17 +0200, Peter Korsgaard spake thusly:
> ftp.astrom.com also serves the files over http://, so use that instead.
I've switched to use https instead.
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/file/file.hash | 2 +-
> package/file/file.mk | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/package/file/file.hash b/package/file/file.hash
> index 08e8497471..4beca5e2e3 100644
> --- a/package/file/file.hash
> +++ b/package/file/file.hash
> @@ -1,5 +1,5 @@
> # Locally calculated after verifying signature
> -# ftp://ftp.astron.com/pub/file/file-5.45.tar.gz.asc
> +# http://ftp.astron.com/pub/file/file-5.45.tar.gz.asc
> # using key BE04995BA8F90ED0C0C176C471112AB16CB33B3A
> sha256 fc97f51029bb0e2c9f4e3bffefdaf678f0e039ee872b9de5c002a6d09c784d82 file-5.45.tar.gz
> sha256 0bfa856a9930bddadbef95d1be1cf4e163c0be618e76ea3275caaf255283e274 COPYING
> diff --git a/package/file/file.mk b/package/file/file.mk
> index b67fcaead4..52fbab81a9 100644
> --- a/package/file/file.mk
> +++ b/package/file/file.mk
> @@ -5,7 +5,7 @@
> ################################################################################
>
> FILE_VERSION = 5.45
> -FILE_SITE = ftp://ftp.astron.com/pub/file
> +FILE_SITE = http://ftp.astron.com/pub/file
> FILE_LICENSE = BSD-2-Clause, BSD-4-Clause (one file), BSD-3-Clause (one file)
> FILE_LICENSE_FILES = COPYING src/mygetopt.h src/vasprintf.c
> FILE_CPE_ID_VALID = YES
> --
> 2.39.2
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* Re: [Buildroot] [PATCH 12/23] package/lynx: use http:// _SITE
2024-06-03 7:17 ` [Buildroot] [PATCH 12/23] package/lynx: use http:// _SITE Peter Korsgaard
@ 2024-06-03 9:21 ` Yann E. MORIN
0 siblings, 0 replies; 32+ messages in thread
From: Yann E. MORIN @ 2024-06-03 9:21 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: Mario Lang, buildroot
Peter, All,
On 2024-06-03 09:17 +0200, Peter Korsgaard spake thusly:
> The ftp server does not allow anonymous login, causing the download to fail:
>
> wget --passive-ftp -nd -t 3 -O '/home/peko/source/buildroot/output-qt/build/.lynx2.8.9rel.1.tar.bz2.XlcdCK/output' 'ftp://ftp.invisible-island.net/lynx/tarballs/lynx2.8.9rel.1.tar.bz2'
> --2024-06-02 22:21:49-- ftp://ftp.invisible-island.net/lynx/tarballs/lynx2.8.9rel.1.tar.bz2
> => ‘/home/peko/source/buildroot/output-qt/build/.lynx2.8.9rel.1.tar.bz2.XlcdCK/output’
> Resolving ftp.invisible-island.net (ftp.invisible-island.net)... 216.194.253.29
> Connecting to ftp.invisible-island.net (ftp.invisible-island.net)|216.194.253.29|:21... connected.
> Logging in as anonymous ...
> Login incorrect.
>
> Luckily the tarball is also available over http://, so use that instead.
I've switched to https instead.
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
> package/lynx/lynx.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/lynx/lynx.mk b/package/lynx/lynx.mk
> index da57eb2601..41f9161f10 100644
> --- a/package/lynx/lynx.mk
> +++ b/package/lynx/lynx.mk
> @@ -6,7 +6,7 @@
>
> LYNX_VERSION = 2.8.9rel.1
> LYNX_SOURCE = lynx$(LYNX_VERSION).tar.bz2
> -LYNX_SITE = ftp://ftp.invisible-island.net/lynx/tarballs
> +LYNX_SITE = http://invisible-mirror.net/archives/lynx/tarballs/
As disucssed on IRC:
package/lynx/lynx.mk:60: *** LYNX_SITE (https://invisible-mirror.net/archives/lynx/tarballs/) cannot have a trailing slash. Stop.
So I dropped the trailing slash too.
Applied to master, thanks.
Regards,
Yann E. MORIN.
> LYNX_PATCH = \
> https://salsa.debian.org/lynx-team/lynx/-/raw/debian/2.9.0dev.6-3_deb11u1/debian/patches/90_CVE-2021-38165.patch
> # 90_CVE-2021-38165.patch
> --
> 2.39.2
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* Re: [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
` (21 preceding siblings ...)
2024-06-03 7:17 ` [Buildroot] [PATCH 23/23] package/on2-8170-modules: " Peter Korsgaard
@ 2024-06-03 9:24 ` Yann E. MORIN
2024-06-08 18:11 ` Peter Korsgaard
22 siblings, 1 reply; 32+ messages in thread
From: Yann E. MORIN @ 2024-06-03 9:24 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: buildroot
Peter, All,
On 2024-06-03 09:17 +0200, Peter Korsgaard spake thusly:
> The server was decommisioned in 2017 and is unlikely to ever come back, so
> drop the reference:
>
> https://www.doomworld.com/forum/topic/96999-rip-ftpidsoftwarecom/
>
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Whole series applied to master, thanks. I've additionally replied to
individual patches where I did some changes.
Regards,
Yann E. MORIN.
> ---
> package/doom-wad/doom-wad.mk | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/package/doom-wad/doom-wad.mk b/package/doom-wad/doom-wad.mk
> index f348fc2207..5d37a6a6d4 100644
> --- a/package/doom-wad/doom-wad.mk
> +++ b/package/doom-wad/doom-wad.mk
> @@ -7,7 +7,6 @@
> DOOM_WAD_VERSION = 1.9
> DOOM_WAD_SOURCE = doom$(subst .,,$(DOOM_WAD_VERSION))s.zip
> # Official server currently unavailable
> -# DOOM_WAD_SITE = ftp://ftp.idsoftware.com/idstuff/doom
> DOOM_WAD_SITE = http://www.jbserver.com/downloads/games/doom/misc/shareware
>
> define DOOM_WAD_EXTRACT_CMDS
> --
> 2.39.2
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
* Re: [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com
2024-06-03 9:24 ` [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Yann E. MORIN
@ 2024-06-08 18:11 ` Peter Korsgaard
0 siblings, 0 replies; 32+ messages in thread
From: Peter Korsgaard @ 2024-06-08 18:11 UTC (permalink / raw)
To: Yann E. MORIN; +Cc: buildroot
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
> Peter, All,
> On 2024-06-03 09:17 +0200, Peter Korsgaard spake thusly:
>> The server was decommisioned in 2017 and is unlikely to ever come back, so
>> drop the reference:
>>
>> https://www.doomworld.com/forum/topic/96999-rip-ftpidsoftwarecom/
>>
>> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> Whole series applied to master, thanks. I've additionally replied to
> individual patches where I did some changes.
Committed series to 2024.02.x except for the two package removals, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 32+ messages in thread
end of thread, other threads:[~2024-06-08 18:11 UTC | newest]
Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-03 7:17 [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 02/23] package/ebtables/ebtables.hash: use http:// to match _SITE Peter Korsgaard
2024-06-03 7:25 ` Baruch Siach via buildroot
2024-06-03 7:31 ` Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 03/23] package/file: use http:// _SITE Peter Korsgaard
2024-06-03 9:19 ` Yann E. MORIN
2024-06-03 7:17 ` [Buildroot] [PATCH 04/23] package/freeradius-client: use https:// _SITE Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 05/23] package/freeradius-server: " Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 06/23] package/libmnl: use https for _SITE Peter Korsgaard
2024-06-03 7:30 ` Dario Binacchi via buildroot
2024-06-03 7:17 ` [Buildroot] [PATCH 07/23] package/libmnl: use upstream sha256sum Peter Korsgaard
2024-06-03 7:29 ` Dario Binacchi via buildroot
2024-06-03 7:17 ` [Buildroot] [PATCH 08/23] package/libnetfilter_acct: use https for _SITE Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 09/23] package/libnetfilter_acct: use https:// reference for .hash file Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 10/23] package/libnetfilter_log: use https for _SITE Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 11/23] package/libnetfilter_log: use https:// reference for .hash file Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 12/23] package/lynx: use http:// _SITE Peter Korsgaard
2024-06-03 9:21 ` Yann E. MORIN
2024-06-03 7:17 ` [Buildroot] [PATCH 13/23] package/ncftp: use https:// _SITE Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 14/23] package/newlib-bare-metal: " Peter Korsgaard
2024-06-03 8:05 ` Frager, Neal via buildroot
2024-06-03 7:17 ` [Buildroot] [PATCH 15/23] package/nfacct: use https for _SITE Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 16/23] package/nfacct: use https:// reference for .hash file Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 17/23] package/uboot-tools: use https:// _SITE Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 18/23] package/ulogd: use https for _SITE Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 19/23] package/ulogd: use https:// reference for .hash file Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 20/23] package/zip: download from sourceforge Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 21/23] package/proftpd: download from github Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 22/23] package/on2-8170-libs: remove package Peter Korsgaard
2024-06-03 7:17 ` [Buildroot] [PATCH 23/23] package/on2-8170-modules: " Peter Korsgaard
2024-06-03 9:24 ` [Buildroot] [PATCH 01/23] package/doom-wad: drop reference to ftp.idsoftware.com Yann E. MORIN
2024-06-08 18:11 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox