* [ptxdist] [PATCH 00/29] introduce GNOME mirror
@ 2020-10-06 14:11 Ladislav Michl
2020-10-06 14:12 ` [ptxdist] [PATCH 01/29] setup: sort mirrors alphabetically Ladislav Michl
` (28 more replies)
0 siblings, 29 replies; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:11 UTC (permalink / raw)
To: ptxdist
Hi there,
this patchset is a direct result of https://ftp.gnome.org being unavailable
from here for some time. Comments welcome.
Ladislav Michl (29):
setup: sort mirrors alphabetically
setup: introduce GNOME mirror
atk: use GNOME mirror
atkmm: use GNOME mirror
gdk-pixbuf: use GNOME mirror
glib-networking: use GNOME mirror
glibmm: use GNOME mirror
glib: use GNOME mirror
gobject-introspection: use GNOME mirror
gtk-engines: use GNOME mirror
gtk: use GNOME mirror
gtk2: use GNOME mirror
host-gtk-doc: use GNOME mirror
json-glib: use GNOME mirror
libcroco: use GNOME mirror
libgee: use GNOME mirror
libgsf: use GNOME mirror
libgudev: use GNOME mirror
librsvg: use GNOME mirror
libsigcpp: use GNOME mirror
libsoup: use GNOME mirror
mobile-broadband-provider-info: use GNOME mirror
networkmanager-fortisslvpn: use GNOME mirror
networkmanager-openvpn: use GNOME mirror
networkmanager: use GNOME mirror
pango: use GNOME mirror
pygobject: use GNOME mirror
python3-gi: use GNOME mirror
xorg-font-ttf-bitstream-vera: use GNOME mirror
config/setup/Kconfig | 29 ++++++++++++++---------
config/setup/ptxdistrc.default | 13 +++++-----
rules/atk.make | 2 +-
rules/atkmm.make | 2 +-
rules/gdk-pixbuf.make | 2 +-
rules/glib-networking.make | 2 +-
rules/glib.make | 4 +---
rules/glibmm.make | 2 +-
rules/gobject-introspection.make | 2 +-
rules/gtk-engines.make | 2 +-
rules/gtk.make | 2 +-
rules/gtk2.make | 2 +-
rules/host-gtk-doc.make | 2 +-
rules/json-glib.make | 2 +-
rules/libcroco.make | 2 +-
rules/libgee.make | 2 +-
rules/libgsf.make | 2 +-
rules/libgudev.make | 2 +-
rules/librsvg.make | 2 +-
rules/libsigcpp.make | 2 +-
rules/libsoup.make | 2 +-
rules/mobile-broadband-provider-info.make | 4 ++--
rules/networkmanager-fortisslvpn.make | 2 +-
rules/networkmanager-openvpn.make | 2 +-
rules/networkmanager.make | 2 +-
rules/pango.make | 2 +-
rules/pygobject.make | 2 +-
rules/python3-gi.make | 2 +-
rules/xorg-font-ttf-bitstream-vera.make | 2 +-
29 files changed, 53 insertions(+), 47 deletions(-)
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 01/29] setup: sort mirrors alphabetically
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
@ 2020-10-06 14:12 ` Ladislav Michl
2020-10-06 15:50 ` Alexander Dahl
` (2 more replies)
2020-10-06 14:13 ` [ptxdist] [PATCH 02/29] setup: introduce GNOME mirror Ladislav Michl
` (27 subsequent siblings)
28 siblings, 3 replies; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:12 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
config/setup/Kconfig | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/config/setup/Kconfig b/config/setup/Kconfig
index 1697d88de..ab2b8e83a 100644
--- a/config/setup/Kconfig
+++ b/config/setup/Kconfig
@@ -144,13 +144,6 @@ config SETUP_DEBMIRROR
The Debian pool mirror to use for downloading various
components of the target root filesystem.
-config SETUP_SFMIRROR
- string
- default "http://downloads.sourceforge.net/sourceforge"
- prompt "Sourceforge Mirror"
- help
- For all Sourceforge related packages enter an available mirror here.
-
config SETUP_GNUMIRROR
string
default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
@@ -158,13 +151,6 @@ config SETUP_GNUMIRROR
help
For all GNU.org related packages enter an available mirror here.
-config SETUP_XORGMIRROR
- string
- default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
- prompt "x.org Mirror"
- help
- For all x.org related packages enter an available mirror here.
-
config SETUP_KERNELMIRROR
string
default "https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
@@ -179,6 +165,20 @@ config SETUP_PYPIMIRROR
help
For all packages available on pypi, enter an available mirror here.
+config SETUP_SFMIRROR
+ string
+ default "http://downloads.sourceforge.net/sourceforge"
+ prompt "Sourceforge Mirror"
+ help
+ For all Sourceforge related packages enter an available mirror here.
+
+config SETUP_XORGMIRROR
+ string
+ default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
+ prompt "x.org Mirror"
+ help
+ For all x.org related packages enter an available mirror here.
+
choice
prompt "archive check"
default SETUP_CHECK_ALWAYS
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 02/29] setup: introduce GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
2020-10-06 14:12 ` [ptxdist] [PATCH 01/29] setup: sort mirrors alphabetically Ladislav Michl
@ 2020-10-06 14:13 ` Ladislav Michl
2020-10-07 13:12 ` Roland Hieber
2020-10-07 15:40 ` [ptxdist] [PATCH v2 " Ladislav Michl
2020-10-06 14:13 ` [ptxdist] [PATCH 03/29] atk: use " Ladislav Michl
` (26 subsequent siblings)
28 siblings, 2 replies; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:13 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
config/setup/Kconfig | 7 +++++++
config/setup/ptxdistrc.default | 13 +++++++------
2 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/config/setup/Kconfig b/config/setup/Kconfig
index ab2b8e83a..f3fe2e8e8 100644
--- a/config/setup/Kconfig
+++ b/config/setup/Kconfig
@@ -144,6 +144,13 @@ config SETUP_DEBMIRROR
The Debian pool mirror to use for downloading various
components of the target root filesystem.
+config SETUP_GNOMEMIRROR
+ string
+ default "https://download.gnome.org/sources https://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.gnome.org/sources"
+ prompt "GNOME Mirror"
+ help
+ For all GNOME related packages enter an available mirror here.
+
config SETUP_GNUMIRROR
string
default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
diff --git a/config/setup/ptxdistrc.default b/config/setup/ptxdistrc.default
index 7973fdfe4..6b3c949d0 100644
--- a/config/setup/ptxdistrc.default
+++ b/config/setup/ptxdistrc.default
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# PTXdist 2020.03.0
+# PTXdist 2020.09.0
#
#
@@ -31,13 +31,14 @@ PTXCONF_SETUP_SRCDIR="${PTXDIST_WORKSPACE}/src"
#
# PTXCONF_SETUP_NO_DOWNLOAD is not set
# PTXCONF_SETUP_PTXMIRROR_ONLY is not set
-PTXCONF_SETUP_PTXMIRROR="https://www.pengutronix.de/software/ptxdist/temporary-src"
-PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian http://archive.debian.org/debian"
-PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
-PTXCONF_SETUP_GNUMIRROR="https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
-PTXCONF_SETUP_XORGMIRROR="https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
+PTXCONF_SETUP_PTXMIRROR="http://www.pengutronix.de/software/ptxdist/temporary-src"
+PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian"
+PTXCONF_SETUP_GNOMEMIRROR="https://download.gnome.org/sources https://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.gnome.org/sources"
+PTXCONF_SETUP_GNUMIRROR="http://ftp.uni-kl.de/pub/gnu"
PTXCONF_SETUP_KERNELMIRROR="https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
PTXCONF_SETUP_PYPIMIRROR="https://files.pythonhosted.org/packages/source"
+PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
+PTXCONF_SETUP_XORGMIRROR="http://ftp.sunet.se/pub/X11/ftp.x.org http://ftp.x.org/pub http://xorg.freedesktop.org/releases"
PTXCONF_SETUP_CHECK_ALWAYS=y
# PTXCONF_SETUP_CHECK_NOTEMPTY is not set
# PTXCONF_SETUP_CHECK_NEVER is not set
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 03/29] atk: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
2020-10-06 14:12 ` [ptxdist] [PATCH 01/29] setup: sort mirrors alphabetically Ladislav Michl
2020-10-06 14:13 ` [ptxdist] [PATCH 02/29] setup: introduce GNOME mirror Ladislav Michl
@ 2020-10-06 14:13 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:16 ` [ptxdist] [PATCH 04/29] atkmm: " Ladislav Michl
` (25 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:13 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/atk.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/atk.make b/rules/atk.make
index 45a8465f6..ce41caec1 100644
--- a/rules/atk.make
+++ b/rules/atk.make
@@ -20,7 +20,7 @@ ATK_VERSION := 2.28.1
ATK_MD5 := dfb5e7474220afa3f4ca7e45af9f3a11
ATK := atk-$(ATK_VERSION)
ATK_SUFFIX := tar.xz
-ATK_URL := http://ftp.gnome.org/pub/gnome/sources/atk/$(basename $(ATK_VERSION))/$(ATK).$(ATK_SUFFIX)
+ATK_URL := $(call ptx/mirror, GNOME, atk/$(basename $(ATK_VERSION))/$(ATK).$(ATK_SUFFIX))
ATK_SOURCE := $(SRCDIR)/$(ATK).$(ATK_SUFFIX)
ATK_DIR := $(BUILDDIR)/$(ATK)
ATK_LICENSE := LGPL-2.0-only
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 04/29] atkmm: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (2 preceding siblings ...)
2020-10-06 14:13 ` [ptxdist] [PATCH 03/29] atk: use " Ladislav Michl
@ 2020-10-06 14:16 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:17 ` [ptxdist] [PATCH 05/29] gdk-pixbuf: " Ladislav Michl
` (24 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:16 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/atkmm.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/atkmm.make b/rules/atkmm.make
index 0234c819a..6ece656f7 100644
--- a/rules/atkmm.make
+++ b/rules/atkmm.make
@@ -18,7 +18,7 @@ ATKMM_VERSION := 2.22.6
ATKMM_MD5 := 7c35324dd3c081a385deb7523ed6f287
ATKMM := atkmm-$(ATKMM_VERSION)
ATKMM_SUFFIX := tar.bz2
-ATKMM_URL := http://ftp.gnome.org/pub/GNOME/sources/atkmm/2.22/$(ATKMM).$(ATKMM_SUFFIX)
+ATKMM_URL := $(call ptx/mirror, GNOME, atkmm/$(basename $(ATKMM_VERSION))/$(ATKMM).$(ATKMM_SUFFIX))
ATKMM_SOURCE := $(SRCDIR)/$(ATKMM).$(ATKMM_SUFFIX)
ATKMM_DIR := $(BUILDDIR)/$(ATKMM)
ATKMM_LICENSE := unknown
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 05/29] gdk-pixbuf: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (3 preceding siblings ...)
2020-10-06 14:16 ` [ptxdist] [PATCH 04/29] atkmm: " Ladislav Michl
@ 2020-10-06 14:17 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:19 ` [ptxdist] [PATCH 06/29] glib-networking: " Ladislav Michl
` (23 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:17 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/gdk-pixbuf.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/gdk-pixbuf.make b/rules/gdk-pixbuf.make
index 301716b3d..769757070 100644
--- a/rules/gdk-pixbuf.make
+++ b/rules/gdk-pixbuf.make
@@ -18,7 +18,7 @@ GDK_PIXBUF_VERSION := 2.40.0
GDK_PIXBUF_MD5 := 05eb1ebc258ba905f1c8644ef49de064
GDK_PIXBUF := gdk-pixbuf-$(GDK_PIXBUF_VERSION)
GDK_PIXBUF_SUFFIX := tar.xz
-GDK_PIXBUF_URL := http://ftp.gnome.org/pub/GNOME/sources/gdk-pixbuf/$(basename $(GDK_PIXBUF_VERSION))/$(GDK_PIXBUF).$(GDK_PIXBUF_SUFFIX)
+GDK_PIXBUF_URL := $(call ptx/mirror, GNOME, gdk-pixbuf/$(basename $(GDK_PIXBUF_VERSION))/$(GDK_PIXBUF).$(GDK_PIXBUF_SUFFIX))
GDK_PIXBUF_SOURCE := $(SRCDIR)/$(GDK_PIXBUF).$(GDK_PIXBUF_SUFFIX)
GDK_PIXBUF_DIR := $(BUILDDIR)/$(GDK_PIXBUF)
GDK_PIXBUF_LICENSE := LGPL-2.0-or-later
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 06/29] glib-networking: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (4 preceding siblings ...)
2020-10-06 14:17 ` [ptxdist] [PATCH 05/29] gdk-pixbuf: " Ladislav Michl
@ 2020-10-06 14:19 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:21 ` [ptxdist] [PATCH 07/29] glibmm: " Ladislav Michl
` (22 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:19 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/glib-networking.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/glib-networking.make b/rules/glib-networking.make
index 069675db8..1ffdee82c 100644
--- a/rules/glib-networking.make
+++ b/rules/glib-networking.make
@@ -18,7 +18,7 @@ GLIB_NETWORKING_VERSION := 2.62.1
GLIB_NETWORKING_MD5 := 64ca1e1e43e623b916059585bf7e4758
GLIB_NETWORKING := glib-networking-$(GLIB_NETWORKING_VERSION)
GLIB_NETWORKING_SUFFIX := tar.xz
-GLIB_NETWORKING_URL := http://ftp.gnome.org/pub/GNOME/sources/glib-networking/$(basename $(GLIB_NETWORKING_VERSION))/$(GLIB_NETWORKING).$(GLIB_NETWORKING_SUFFIX)
+GLIB_NETWORKING_URL := $(call ptx/mirror, GNOME, glib-networking/$(basename $(GLIB_NETWORKING_VERSION))/$(GLIB_NETWORKING).$(GLIB_NETWORKING_SUFFIX))
GLIB_NETWORKING_SOURCE := $(SRCDIR)/$(GLIB_NETWORKING).$(GLIB_NETWORKING_SUFFIX)
GLIB_NETWORKING_DIR := $(BUILDDIR)/$(GLIB_NETWORKING)
GLIB_NETWORKING_LICENSE := LGPL-2.0-or-later
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 07/29] glibmm: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (5 preceding siblings ...)
2020-10-06 14:19 ` [ptxdist] [PATCH 06/29] glib-networking: " Ladislav Michl
@ 2020-10-06 14:21 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:23 ` [ptxdist] [PATCH 08/29] glib: " Ladislav Michl
` (21 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:21 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/glibmm.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/glibmm.make b/rules/glibmm.make
index 701cfa761..f702cbaf3 100644
--- a/rules/glibmm.make
+++ b/rules/glibmm.make
@@ -19,7 +19,7 @@ GLIBMM_VERSION := 2.30.1
GLIBMM_MD5 := 9b333de989287c563334faa88a11fc21
GLIBMM := glibmm-$(GLIBMM_VERSION)
GLIBMM_SUFFIX := tar.bz2
-GLIBMM_URL := http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.30/$(GLIBMM).$(GLIBMM_SUFFIX)
+GLIBMM_URL := $(call ptx/mirror, GNOME, glibmm/$(basename $(GLIBMM_VERSION))/$(GLIBMM).$(GLIBMM_SUFFIX))
GLIBMM_SOURCE := $(SRCDIR)/$(GLIBMM).$(GLIBMM_SUFFIX)
GLIBMM_DIR := $(BUILDDIR)/$(GLIBMM)
GLIBMM_LICENSE := LGPL-2.1-only AND GPL-2.0-only
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 08/29] glib: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (6 preceding siblings ...)
2020-10-06 14:21 ` [ptxdist] [PATCH 07/29] glibmm: " Ladislav Michl
@ 2020-10-06 14:23 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:23 ` [ptxdist] [PATCH 09/29] gobject-introspection: " Ladislav Michl
` (20 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:23 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/glib.make | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/rules/glib.make b/rules/glib.make
index 17668d93c..7a9aed2ed 100644
--- a/rules/glib.make
+++ b/rules/glib.make
@@ -19,11 +19,9 @@ GLIB_VERSION := 2.64.4
GLIB_MD5 := 0a4f67e9a9d729976e2f797e36fc1a57
GLIB := glib-$(GLIB_VERSION)
GLIB_SUFFIX := tar.xz
+GLIB_URL := $(call ptx/mirror, GNOME, glib/$(basename $(GLIB_VERSION))/$(GLIB).$(GLIB_SUFFIX))
GLIB_SOURCE := $(SRCDIR)/$(GLIB).$(GLIB_SUFFIX)
GLIB_DIR := $(BUILDDIR)/$(GLIB)
-
-GLIB_URL := http://ftp.gnome.org/pub/GNOME/sources/glib/$(basename $(GLIB_VERSION))/glib-$(GLIB_VERSION).$(GLIB_SUFFIX)
-
GLIB_LICENSE := LGPL-2.0-or-later
# ----------------------------------------------------------------------------
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 09/29] gobject-introspection: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (7 preceding siblings ...)
2020-10-06 14:23 ` [ptxdist] [PATCH 08/29] glib: " Ladislav Michl
@ 2020-10-06 14:23 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:24 ` [ptxdist] [PATCH 10/29] gtk-engines: " Ladislav Michl
` (19 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:23 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/gobject-introspection.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/gobject-introspection.make b/rules/gobject-introspection.make
index 5d7679e61..fda19cd13 100644
--- a/rules/gobject-introspection.make
+++ b/rules/gobject-introspection.make
@@ -18,7 +18,7 @@ GOBJECT_INTROSPECTION_VERSION := 1.56.1
GOBJECT_INTROSPECTION_MD5 := 62e5f5685b8d9752fdeaf17c057d53d1
GOBJECT_INTROSPECTION := gobject-introspection-$(GOBJECT_INTROSPECTION_VERSION)
GOBJECT_INTROSPECTION_SUFFIX := tar.xz
-GOBJECT_INTROSPECTION_URL := http://ftp.gnome.org/pub/GNOME/sources/gobject-introspection/$(basename $(GOBJECT_INTROSPECTION_VERSION))/$(GOBJECT_INTROSPECTION).$(GOBJECT_INTROSPECTION_SUFFIX)
+GOBJECT_INTROSPECTION_URL := $(call ptx/mirror, GNOME, gobject-introspection/$(basename $(GOBJECT_INTROSPECTION_VERSION))/$(GOBJECT_INTROSPECTION).$(GOBJECT_INTROSPECTION_SUFFIX))
GOBJECT_INTROSPECTION_SOURCE := $(SRCDIR)/$(GOBJECT_INTROSPECTION).$(GOBJECT_INTROSPECTION_SUFFIX)
GOBJECT_INTROSPECTION_DIR := $(BUILDDIR)/$(GOBJECT_INTROSPECTION)
GOBJECT_INTROSPECTION_LICENSE := LGPL-2.1-or-later AND GPL-2.0-or-later
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 10/29] gtk-engines: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (8 preceding siblings ...)
2020-10-06 14:23 ` [ptxdist] [PATCH 09/29] gobject-introspection: " Ladislav Michl
@ 2020-10-06 14:24 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:24 ` [ptxdist] [PATCH 11/29] gtk: " Ladislav Michl
` (18 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:24 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/gtk-engines.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/gtk-engines.make b/rules/gtk-engines.make
index c4ccf16bb..2544c89cb 100644
--- a/rules/gtk-engines.make
+++ b/rules/gtk-engines.make
@@ -19,7 +19,7 @@ GTK_ENGINES_VERSION := 2.91.1
GTK_ENGINES_MD5 := 290d2fdb66743066dab92db694dd7b99
GTK_ENGINES := gtk-engines-$(GTK_ENGINES_VERSION)
GTK_ENGINES_SUFFIX := tar.bz2
-GTK_ENGINES_URL := http://ftp.gnome.org/pub/GNOME/sources/gtk-engines/2.91/$(GTK_ENGINES).$(GTK_ENGINES_SUFFIX)
+GTK_ENGINES_URL := $(call ptx/mirror, GNOME, gtk-engines/$(basename $(GTK_ENGINES_VERSION))/$(GTK_ENGINES).$(GTK_ENGINES_SUFFIX))
GTK_ENGINES_SOURCE := $(SRCDIR)/$(GTK_ENGINES).$(GTK_ENGINES_SUFFIX)
GTK_ENGINES_DIR := $(BUILDDIR)/$(GTK_ENGINES)
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 11/29] gtk: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (9 preceding siblings ...)
2020-10-06 14:24 ` [ptxdist] [PATCH 10/29] gtk-engines: " Ladislav Michl
@ 2020-10-06 14:24 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:25 ` [ptxdist] [PATCH 12/29] gtk2: " Ladislav Michl
` (17 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:24 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/gtk.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/gtk.make b/rules/gtk.make
index c138870f8..252540511 100644
--- a/rules/gtk.make
+++ b/rules/gtk.make
@@ -18,7 +18,7 @@ GTK_VERSION := 3.24.21
GTK_MD5 := 95afed6c860d27de827db66434d681da
GTK := gtk+-$(GTK_VERSION)
GTK_SUFFIX := tar.xz
-GTK_URL := https://download.gnome.org/sources/gtk+/$(basename $(GTK_VERSION))/$(GTK).$(GTK_SUFFIX)
+GTK_URL := $(call ptx/mirror, GNOME, gtk+/$(basename $(GTK_VERSION))/$(GTK).$(GTK_SUFFIX))
GTK_SOURCE := $(SRCDIR)/$(GTK).$(GTK_SUFFIX)
GTK_DIR := $(BUILDDIR)/$(GTK)
GTK_LICENSE := LGPL-2.0-or-later
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 12/29] gtk2: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (10 preceding siblings ...)
2020-10-06 14:24 ` [ptxdist] [PATCH 11/29] gtk: " Ladislav Michl
@ 2020-10-06 14:25 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:25 ` [ptxdist] [PATCH 13/29] host-gtk-doc: " Ladislav Michl
` (16 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:25 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/gtk2.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/gtk2.make b/rules/gtk2.make
index c9aa90987..bed71cf25 100644
--- a/rules/gtk2.make
+++ b/rules/gtk2.make
@@ -18,7 +18,7 @@ GTK2_VERSION := 2.24.32
GTK2_MD5 := d5742aa42275203a499b59b4c382a784
GTK2 := gtk+-$(GTK2_VERSION)
GTK2_SUFFIX := tar.xz
-GTK2_URL := ftp://ftp.gnome.org/pub/gnome/sources/gtk+/2.24/$(GTK2).$(GTK2_SUFFIX)
+GTK2_URL := $(call ptx/mirror, GNOME, gtk+/$(basename $(GTK2_VERSION))/$(GTK2).$(GTK2_SUFFIX))
GTK2_SOURCE := $(SRCDIR)/$(GTK2).$(GTK2_SUFFIX)
GTK2_DIR := $(BUILDDIR)/$(GTK2)
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 13/29] host-gtk-doc: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (11 preceding siblings ...)
2020-10-06 14:25 ` [ptxdist] [PATCH 12/29] gtk2: " Ladislav Michl
@ 2020-10-06 14:25 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:27 ` [ptxdist] [PATCH 14/29] json-glib: " Ladislav Michl
` (15 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:25 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/host-gtk-doc.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/host-gtk-doc.make b/rules/host-gtk-doc.make
index aef45d5d1..5245ee351 100644
--- a/rules/host-gtk-doc.make
+++ b/rules/host-gtk-doc.make
@@ -18,7 +18,7 @@ HOST_GTK_DOC_VERSION := 1.13
HOST_GTK_DOC_MD5 := 27940d6cd5c9dcda8fc003043d8c299a
HOST_GTK_DOC := gtk-doc-$(HOST_GTK_DOC_VERSION)
HOST_GTK_DOC_SUFFIX := tar.bz2
-HOST_GTK_DOC_URL := http://ftp.gnome.org/pub/GNOME/sources/gtk-doc/$(HOST_GTK_DOC_VERSION)/$(HOST_GTK_DOC).$(HOST_GTK_DOC_SUFFIX)
+HOST_GTK_DOC_URL := $(call ptx/mirror, GNOME, gtk-doc/$(HOST_GTK_DOC_VERSION)/$(HOST_GTK_DOC).$(HOST_GTK_DOC_SUFFIX))
HOST_GTK_DOC_SOURCE := $(SRCDIR)/$(HOST_GTK_DOC).$(HOST_GTK_DOC_SUFFIX)
HOST_GTK_DOC_DIR := $(HOST_BUILDDIR)/$(HOST_GTK_DOC)
HOST_GTK_DOC_LICENSE := GPL-3.0-only AND GFDL-1.1-only
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 14/29] json-glib: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (12 preceding siblings ...)
2020-10-06 14:25 ` [ptxdist] [PATCH 13/29] host-gtk-doc: " Ladislav Michl
@ 2020-10-06 14:27 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:27 ` [ptxdist] [PATCH 15/29] libcroco: " Ladislav Michl
` (14 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:27 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/json-glib.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/json-glib.make b/rules/json-glib.make
index 496e0b7f7..24948318d 100644
--- a/rules/json-glib.make
+++ b/rules/json-glib.make
@@ -18,7 +18,7 @@ JSON_GLIB_VERSION := 1.2.8
JSON_GLIB_MD5 := ff31e7d0594df44318e12facda3d086e
JSON_GLIB := json-glib-$(JSON_GLIB_VERSION)
JSON_GLIB_SUFFIX := tar.xz
-JSON_GLIB_URL := http://ftp.gnome.org/pub/GNOME/sources/json-glib/1.2/$(JSON_GLIB).$(JSON_GLIB_SUFFIX)
+JSON_GLIB_URL := $(call ptx/mirror, GNOME, glib/$(basename $(JSON_GLIB_VERSION))/$(JSON_GLIB).$(JSON_GLIB_SUFFIX))
JSON_GLIB_SOURCE := $(SRCDIR)/$(JSON_GLIB).$(JSON_GLIB_SUFFIX)
JSON_GLIB_DIR := $(BUILDDIR)/$(JSON_GLIB)
JSON_GLIB_LICENSE := LGPL-2.1-only
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 15/29] libcroco: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (13 preceding siblings ...)
2020-10-06 14:27 ` [ptxdist] [PATCH 14/29] json-glib: " Ladislav Michl
@ 2020-10-06 14:27 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:28 ` [ptxdist] [PATCH 16/29] libgee: " Ladislav Michl
` (13 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:27 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/libcroco.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/libcroco.make b/rules/libcroco.make
index c95572ebb..74d9b31e5 100644
--- a/rules/libcroco.make
+++ b/rules/libcroco.make
@@ -19,7 +19,7 @@ LIBCROCO_VERSION := 0.6.2
LIBCROCO_MD5 := 1429c597aa4b75fc610ab3a542c99209
LIBCROCO := libcroco-$(LIBCROCO_VERSION)
LIBCROCO_SUFFIX := tar.bz2
-LIBCROCO_URL := http://ftp.gnome.org/pub/GNOME/sources/libcroco/0.6/$(LIBCROCO).$(LIBCROCO_SUFFIX)
+LIBCROCO_URL := $(call ptx/mirror, GNOME, libcroco/$(basename $(LIBCROCO_VERSION))/$(LIBCROCO).$(LIBCROCO_SUFFIX))
LIBCROCO_SOURCE := $(SRCDIR)/$(LIBCROCO).$(LIBCROCO_SUFFIX)
LIBCROCO_DIR := $(BUILDDIR)/$(LIBCROCO)
LIBCROCO_LICENSE := LGPL-2.1-only
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 16/29] libgee: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (14 preceding siblings ...)
2020-10-06 14:27 ` [ptxdist] [PATCH 15/29] libcroco: " Ladislav Michl
@ 2020-10-06 14:28 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:28 ` [ptxdist] [PATCH 17/29] libgsf: " Ladislav Michl
` (12 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:28 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/libgee.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/libgee.make b/rules/libgee.make
index f0ddd3525..30afb569a 100644
--- a/rules/libgee.make
+++ b/rules/libgee.make
@@ -18,7 +18,7 @@ LIBGEE_VERSION := 0.5.1
LIBGEE_MD5 := 59789b5b266beadfb8b51bf2c96211b3
LIBGEE := libgee-$(LIBGEE_VERSION)
LIBGEE_SUFFIX := tar.bz2
-LIBGEE_URL := http://download.gnome.org/sources/libgee/0.5/$(LIBGEE).$(LIBGEE_SUFFIX)
+LIBGEE_URL := $(call ptx/mirror, GNOME, libgee/$(basename $(LIBGEE_VERSION))/$(LIBGEE).$(LIBGEE_SUFFIX))
LIBGEE_SOURCE := $(SRCDIR)/$(LIBGEE).$(LIBGEE_SUFFIX)
LIBGEE_DIR := $(BUILDDIR)/$(LIBGEE)
LIBGEE_LICENSE := LGPL-2.1-or-later
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 17/29] libgsf: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (15 preceding siblings ...)
2020-10-06 14:28 ` [ptxdist] [PATCH 16/29] libgee: " Ladislav Michl
@ 2020-10-06 14:28 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:29 ` [ptxdist] [PATCH 18/29] libgudev: " Ladislav Michl
` (11 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:28 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/libgsf.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/libgsf.make b/rules/libgsf.make
index bd956a381..871ce2357 100644
--- a/rules/libgsf.make
+++ b/rules/libgsf.make
@@ -18,7 +18,7 @@ LIBGSF_VERSION := 1.14.30
LIBGSF_MD5 := e7b672ef37ef6a853ce149c03e4d3a63
LIBGSF := libgsf-$(LIBGSF_VERSION)
LIBGSF_SUFFIX := tar.xz
-LIBGSF_URL := http://ftp.gnome.org/pub/GNOME/sources/libgsf/1.14/$(LIBGSF).$(LIBGSF_SUFFIX)
+LIBGSF_URL := $(call ptx/mirror, GNOME, libgsf/$(basename $(LIBGSF_VERSION))/$(LIBGSF).$(LIBGSF_SUFFIX))
LIBGSF_SOURCE := $(SRCDIR)/$(LIBGSF).$(LIBGSF_SUFFIX)
LIBGSF_DIR := $(BUILDDIR)/$(LIBGSF)
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 18/29] libgudev: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (16 preceding siblings ...)
2020-10-06 14:28 ` [ptxdist] [PATCH 17/29] libgsf: " Ladislav Michl
@ 2020-10-06 14:29 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:29 ` [ptxdist] [PATCH 19/29] librsvg: " Ladislav Michl
` (10 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:29 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/libgudev.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/libgudev.make b/rules/libgudev.make
index a1cdab3e6..637ea662d 100644
--- a/rules/libgudev.make
+++ b/rules/libgudev.make
@@ -18,7 +18,7 @@ LIBGUDEV_VERSION := 230
LIBGUDEV_MD5 := e4dee8f3f349e9372213d33887819a4d
LIBGUDEV := libgudev-$(LIBGUDEV_VERSION)
LIBGUDEV_SUFFIX := tar.xz
-LIBGUDEV_URL := https://download.gnome.org/sources/libgudev/$(LIBGUDEV_VERSION)/$(LIBGUDEV).$(LIBGUDEV_SUFFIX)
+LIBGUDEV_URL := $(call ptx/mirror, GNOME, libgudev/$(LIBGUDEV_VERSION)/$(LIBGUDEV).$(LIBGUDEV_SUFFIX))
LIBGUDEV_SOURCE := $(SRCDIR)/$(LIBGUDEV).$(LIBGUDEV_SUFFIX)
LIBGUDEV_DIR := $(BUILDDIR)/$(LIBGUDEV)
LIBGUDEV_LICENSE := LGPL-2.1-or-later
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 19/29] librsvg: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (17 preceding siblings ...)
2020-10-06 14:29 ` [ptxdist] [PATCH 18/29] libgudev: " Ladislav Michl
@ 2020-10-06 14:29 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:29 ` [ptxdist] [PATCH 20/29] libsigcpp: " Ladislav Michl
` (9 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:29 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/librsvg.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/librsvg.make b/rules/librsvg.make
index aaf2e5d99..af2cece09 100644
--- a/rules/librsvg.make
+++ b/rules/librsvg.make
@@ -19,7 +19,7 @@ LIBRSVG_VERSION := 2.26.3
LIBRSVG_MD5 := 8df68c2c02cdf2a96a92b43bf737bf9c
LIBRSVG := librsvg-$(LIBRSVG_VERSION)
LIBRSVG_SUFFIX := tar.bz2
-LIBRSVG_URL := http://ftp.gnome.org/pub/GNOME/sources/librsvg/2.26/$(LIBRSVG).$(LIBRSVG_SUFFIX)
+LIBRSVG_URL := $(call ptx/mirror, GNOME, librsvg/$(basename $(LIBRSVG_VERSION))/$(LIBRSVG).$(LIBRSVG_SUFFIX))
LIBRSVG_SOURCE := $(SRCDIR)/$(LIBRSVG).$(LIBRSVG_SUFFIX)
LIBRSVG_DIR := $(BUILDDIR)/$(LIBRSVG)
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 20/29] libsigcpp: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (18 preceding siblings ...)
2020-10-06 14:29 ` [ptxdist] [PATCH 19/29] librsvg: " Ladislav Michl
@ 2020-10-06 14:29 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:30 ` [ptxdist] [PATCH 21/29] libsoup: " Ladislav Michl
` (8 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:29 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/libsigcpp.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/libsigcpp.make b/rules/libsigcpp.make
index b11d36f6a..d27521b84 100644
--- a/rules/libsigcpp.make
+++ b/rules/libsigcpp.make
@@ -19,7 +19,7 @@ LIBSIGCPP_VERSION := 2.2.10
LIBSIGCPP_MD5 := 6d350ae0bc17b8915a06ce6b7e4240e8
LIBSIGCPP := libsigc++-$(LIBSIGCPP_VERSION)
LIBSIGCPP_SUFFIX := tar.bz2
-LIBSIGCPP_URL := http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.2/$(LIBSIGCPP).$(LIBSIGCPP_SUFFIX)
+LIBSIGCPP_URL := $(call ptx/mirror, GNOME, libsigc++/$(basename $(LIBSIGCPP_VERSION))/$(LIBSIGCPP).$(LIBSIGCPP_SUFFIX))
LIBSIGCPP_SOURCE := $(SRCDIR)/$(LIBSIGCPP).$(LIBSIGCPP_SUFFIX)
LIBSIGCPP_DIR := $(BUILDDIR)/$(LIBSIGCPP)
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 21/29] libsoup: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (19 preceding siblings ...)
2020-10-06 14:29 ` [ptxdist] [PATCH 20/29] libsigcpp: " Ladislav Michl
@ 2020-10-06 14:30 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:30 ` [ptxdist] [PATCH 22/29] mobile-broadband-provider-info: " Ladislav Michl
` (7 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:30 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/libsoup.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/libsoup.make b/rules/libsoup.make
index a40ad7f58..4a9da41f4 100644
--- a/rules/libsoup.make
+++ b/rules/libsoup.make
@@ -18,7 +18,7 @@ LIBSOUP_VERSION := 2.66.2
LIBSOUP_MD5 := 66c2ae89d6031b01337d78a2c57c75d5
LIBSOUP := libsoup-$(LIBSOUP_VERSION)
LIBSOUP_SUFFIX := tar.xz
-LIBSOUP_URL := http://ftp.gnome.org/pub/GNOME/sources/libsoup/$(basename $(LIBSOUP_VERSION))/$(LIBSOUP).$(LIBSOUP_SUFFIX)
+LIBSOUP_URL := $(call ptx/mirror, GNOME, libsoup/$(basename $(LIBSOUP_VERSION))/$(LIBSOUP).$(LIBSOUP_SUFFIX))
LIBSOUP_SOURCE := $(SRCDIR)/$(LIBSOUP).$(LIBSOUP_SUFFIX)
LIBSOUP_DIR := $(BUILDDIR)/$(LIBSOUP)
LIBSOUP_LICENSE := LGPL-2.1-only
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 22/29] mobile-broadband-provider-info: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (20 preceding siblings ...)
2020-10-06 14:30 ` [ptxdist] [PATCH 21/29] libsoup: " Ladislav Michl
@ 2020-10-06 14:30 ` Ladislav Michl
2020-10-06 16:41 ` [ptxdist] [PATCH v2 " Ladislav Michl
2020-10-06 14:31 ` [ptxdist] [PATCH 23/29] networkmanager-fortisslvpn: " Ladislav Michl
` (6 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:30 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/mobile-broadband-provider-info.make | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/rules/mobile-broadband-provider-info.make b/rules/mobile-broadband-provider-info.make
index 6c5803289..57588f1db 100644
--- a/rules/mobile-broadband-provider-info.make
+++ b/rules/mobile-broadband-provider-info.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_MOBILE_BROADBAND_PROVIDER_INFO) += mobile-broadband-provider-
MOBILE_BROADBAND_PROVIDER_INFO_VERSION := 20190618
MOBILE_BROADBAND_PROVIDER_INFO_MD5 := 1ca66a989e6b3d788f69bd299249b74a
MOBILE_BROADBAND_PROVIDER_INFO := mobile-broadband-provider-info-$(MOBILE_BROADBAND_PROVIDER_INFO_VERSION)
-MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX := tar.bz2
-MOBILE_BROADBAND_PROVIDER_INFO_URL := https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info/-/archive/$(MOBILE_BROADBAND_PROVIDER_INFO_VERSION)/$(MOBILE_BROADBAND_PROVIDER_INFO).$(MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX)
+MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX := tar.xz
+MOBILE_BROADBAND_PROVIDER_INFO_URL := $(call ptx/mirror, GNOME, mobile-broadband-provider-info/$(MOBILE_BROADBAND_PROVIDER_INFO_VERSION)/$(MOBILE_BROADBAND_PROVIDER_INFO).$(MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX))
MOBILE_BROADBAND_PROVIDER_INFO_SOURCE := $(SRCDIR)/$(MOBILE_BROADBAND_PROVIDER_INFO).$(MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX)
MOBILE_BROADBAND_PROVIDER_INFO_DIR := $(BUILDDIR)/$(MOBILE_BROADBAND_PROVIDER_INFO)
MOBILE_BROADBAND_PROVIDER_INFO_LICENSE := public_domain
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 23/29] networkmanager-fortisslvpn: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (21 preceding siblings ...)
2020-10-06 14:30 ` [ptxdist] [PATCH 22/29] mobile-broadband-provider-info: " Ladislav Michl
@ 2020-10-06 14:31 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:31 ` [ptxdist] [PATCH 24/29] networkmanager-openvpn: " Ladislav Michl
` (5 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:31 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/networkmanager-fortisslvpn.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/networkmanager-fortisslvpn.make b/rules/networkmanager-fortisslvpn.make
index e5f538f3c..196d6aa5e 100644
--- a/rules/networkmanager-fortisslvpn.make
+++ b/rules/networkmanager-fortisslvpn.make
@@ -18,7 +18,7 @@ NETWORKMANAGER_FORTISSLVPN_VERSION := 1.2.10
NETWORKMANAGER_FORTISSLVPN_MD5 := 4a4bc3aae826623620c2090753a7acee
NETWORKMANAGER_FORTISSLVPN := NetworkManager-fortisslvpn-$(NETWORKMANAGER_FORTISSLVPN_VERSION)
NETWORKMANAGER_FORTISSLVPN_SUFFIX := tar.xz
-NETWORKMANAGER_FORTISSLVPN_URL := https://ftp.gnome.org/pub/GNOME/sources/NetworkManager-fortisslvpn/$(basename $(NETWORKMANAGER_FORTISSLVPN_VERSION))/$(NETWORKMANAGER_FORTISSLVPN).$(NETWORKMANAGER_FORTISSLVPN_SUFFIX)
+NETWORKMANAGER_FORTISSLVPN_URL := $(call ptx/mirror, GNOME, NetworkManager-fortisslvpn/$(basename $(NETWORKMANAGER_FORTISSLVPN_VERSION))/$(NETWORKMANAGER_FORTISSLVPN).$(NETWORKMANAGER_FORTISSLVPN_SUFFIX))
NETWORKMANAGER_FORTISSLVPN_SOURCE := $(SRCDIR)/$(NETWORKMANAGER_FORTISSLVPN).$(NETWORKMANAGER_FORTISSLVPN_SUFFIX)
NETWORKMANAGER_FORTISSLVPN_DIR := $(BUILDDIR)/$(NETWORKMANAGER_FORTISSLVPN)
NETWORKMANAGER_FORTISSLVPN_LICENSE := GPL-2.0-or-later
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 24/29] networkmanager-openvpn: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (22 preceding siblings ...)
2020-10-06 14:31 ` [ptxdist] [PATCH 23/29] networkmanager-fortisslvpn: " Ladislav Michl
@ 2020-10-06 14:31 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:32 ` [ptxdist] [PATCH 25/29] networkmanager: " Ladislav Michl
` (4 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:31 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/networkmanager-openvpn.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/networkmanager-openvpn.make b/rules/networkmanager-openvpn.make
index 3bea76379..69d4fb556 100644
--- a/rules/networkmanager-openvpn.make
+++ b/rules/networkmanager-openvpn.make
@@ -18,7 +18,7 @@ NETWORKMANAGER_OPENVPN_VERSION := 1.8.12
NETWORKMANAGER_OPENVPN_MD5 := e8b1210011ece18d0278310fbff45af5
NETWORKMANAGER_OPENVPN := NetworkManager-openvpn-$(NETWORKMANAGER_OPENVPN_VERSION)
NETWORKMANAGER_OPENVPN_SUFFIX := tar.xz
-NETWORKMANAGER_OPENVPN_URL := https://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openvpn/$(basename $(NETWORKMANAGER_OPENVPN_VERSION))/$(NETWORKMANAGER_OPENVPN).$(NETWORKMANAGER_OPENVPN_SUFFIX)
+NETWORKMANAGER_OPENVPN_URL := $(call ptx/mirror, GNOME, NetworkManager-openvpn/$(basename $(NETWORKMANAGER_OPENVPN_VERSION))/$(NETWORKMANAGER_OPENVPN).$(NETWORKMANAGER_OPENVPN_SUFFIX))
NETWORKMANAGER_OPENVPN_SOURCE := $(SRCDIR)/$(NETWORKMANAGER_OPENVPN).$(NETWORKMANAGER_OPENVPN_SUFFIX)
NETWORKMANAGER_OPENVPN_DIR := $(BUILDDIR)/$(NETWORKMANAGER_OPENVPN)
NETWORKMANAGER_OPENVPN_LICENSE := GPL-2.0-or-later
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 25/29] networkmanager: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (23 preceding siblings ...)
2020-10-06 14:31 ` [ptxdist] [PATCH 24/29] networkmanager-openvpn: " Ladislav Michl
@ 2020-10-06 14:32 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:32 ` [ptxdist] [PATCH 26/29] pango: " Ladislav Michl
` (3 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:32 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/networkmanager.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/networkmanager.make b/rules/networkmanager.make
index 26225e0b0..8e89a11e7 100644
--- a/rules/networkmanager.make
+++ b/rules/networkmanager.make
@@ -19,7 +19,7 @@ NETWORKMANAGER_VERSION := 1.26.2
NETWORKMANAGER_MD5 := ad5332a7fe5d00db7c75b722337be62b
NETWORKMANAGER := NetworkManager-$(NETWORKMANAGER_VERSION)
NETWORKMANAGER_SUFFIX := tar.xz
-NETWORKMANAGER_URL := https://ftp.gnome.org/pub/GNOME/sources/NetworkManager/$(basename $(NETWORKMANAGER_VERSION))/$(NETWORKMANAGER).$(NETWORKMANAGER_SUFFIX)
+NETWORKMANAGER_URL := $(call ptx/mirror, GNOME, NetworkManager/$(basename $(NETWORKMANAGER_VERSION))/$(NETWORKMANAGER).$(NETWORKMANAGER_SUFFIX))
NETWORKMANAGER_SOURCE := $(SRCDIR)/$(NETWORKMANAGER).$(NETWORKMANAGER_SUFFIX)
NETWORKMANAGER_DIR := $(BUILDDIR)/$(NETWORKMANAGER)
NETWORKMANAGER_LICENSE := GPL-2.0-or-later AND LGPL-2.0-or-later
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 26/29] pango: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (24 preceding siblings ...)
2020-10-06 14:32 ` [ptxdist] [PATCH 25/29] networkmanager: " Ladislav Michl
@ 2020-10-06 14:32 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:33 ` [ptxdist] [PATCH 27/29] pygobject: " Ladislav Michl
` (2 subsequent siblings)
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:32 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/pango.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/pango.make b/rules/pango.make
index e6deb92c9..3421eff56 100644
--- a/rules/pango.make
+++ b/rules/pango.make
@@ -20,7 +20,7 @@ PANGO_VERSION := 1.43.0
PANGO_MD5 := 2df040d3f6a4ed9bc316a70b35adcd8b
PANGO := pango-$(PANGO_VERSION)
PANGO_SUFFIX := tar.xz
-PANGO_URL := http://ftp.gnome.org/pub/GNOME/sources/pango/$(basename $(PANGO_VERSION))/$(PANGO).$(PANGO_SUFFIX)
+PANGO_URL := $(call ptx/mirror, GNOME, pango/$(basename $(PANGO_VERSION))/$(PANGO).$(PANGO_SUFFIX))
PANGO_SOURCE := $(SRCDIR)/$(PANGO).$(PANGO_SUFFIX)
PANGO_DIR := $(BUILDDIR)/$(PANGO)
PANGO_LICENSE := LGPL-2.0-or-later
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 27/29] pygobject: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (25 preceding siblings ...)
2020-10-06 14:32 ` [ptxdist] [PATCH 26/29] pango: " Ladislav Michl
@ 2020-10-06 14:33 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:33 ` [ptxdist] [PATCH 28/29] python3-gi: " Ladislav Michl
2020-10-06 14:34 ` [ptxdist] [PATCH 29/29] xorg-font-ttf-bitstream-vera: " Ladislav Michl
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:33 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/pygobject.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/pygobject.make b/rules/pygobject.make
index d81b86eb9..711593bbf 100644
--- a/rules/pygobject.make
+++ b/rules/pygobject.make
@@ -18,7 +18,7 @@ PYGOBJECT_VERSION := 2.21.5
PYGOBJECT_MD5 := ef1ef7def7faa407c07b4bbd6d068ff2
PYGOBJECT := pygobject-$(PYGOBJECT_VERSION)
PYGOBJECT_SUFFIX := tar.gz
-PYGOBJECT_URL := http://ftp.gnome.org/pub/GNOME/sources/pygobject/$(basename $(PYGOBJECT_VERSION))/$(PYGOBJECT).$(PYGOBJECT_SUFFIX)
+PYGOBJECT_URL := $(call ptx/mirror, GNOME, pygobject/$(basename $(PYGOBJECT_VERSION))/$(PYGOBJECT).$(PYGOBJECT_SUFFIX))
PYGOBJECT_SOURCE := $(SRCDIR)/$(PYGOBJECT).$(PYGOBJECT_SUFFIX)
PYGOBJECT_DIR := $(BUILDDIR)/$(PYGOBJECT)
PYGOBJECT_LICENSE := LGPL-2.1-or-later
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 28/29] python3-gi: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (26 preceding siblings ...)
2020-10-06 14:33 ` [ptxdist] [PATCH 27/29] pygobject: " Ladislav Michl
@ 2020-10-06 14:33 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:34 ` [ptxdist] [PATCH 29/29] xorg-font-ttf-bitstream-vera: " Ladislav Michl
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:33 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/python3-gi.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/python3-gi.make b/rules/python3-gi.make
index e65a60bdc..969b6445e 100644
--- a/rules/python3-gi.make
+++ b/rules/python3-gi.make
@@ -18,7 +18,7 @@ PYTHON3_GI_VERSION := 3.28.3
PYTHON3_GI_MD5 := 3bac63c86bb963aa401f97859464aa90
PYTHON3_GI := pygobject-$(PYTHON3_GI_VERSION)
PYTHON3_GI_SUFFIX := tar.xz
-PYTHON3_GI_URL := http://ftp.gnome.org/pub/GNOME/sources/pygobject/$(basename $(PYTHON3_GI_VERSION))/$(PYTHON3_GI).$(PYTHON3_GI_SUFFIX)
+PYTHON3_GI_URL := $(call ptx/mirror, GNOME, pygobject/$(basename $(PYTHON3_GI_VERSION))/$(PYTHON3_GI).$(PYTHON3_GI_SUFFIX))
PYTHON3_GI_SOURCE := $(SRCDIR)/$(PYTHON3_GI).$(PYTHON3_GI_SUFFIX)
PYTHON3_GI_DIR := $(BUILDDIR)/$(PYTHON3_GI)
PYTHON3_GI_LICENSE := LGPL-2.1-or-later
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH 29/29] xorg-font-ttf-bitstream-vera: use GNOME mirror
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
` (27 preceding siblings ...)
2020-10-06 14:33 ` [ptxdist] [PATCH 28/29] python3-gi: " Ladislav Michl
@ 2020-10-06 14:34 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
28 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 14:34 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
rules/xorg-font-ttf-bitstream-vera.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/xorg-font-ttf-bitstream-vera.make b/rules/xorg-font-ttf-bitstream-vera.make
index f693a21ce..e711859be 100644
--- a/rules/xorg-font-ttf-bitstream-vera.make
+++ b/rules/xorg-font-ttf-bitstream-vera.make
@@ -20,7 +20,7 @@ XORG_FONT_TTF_BITSTREAM_VERA_VERSION := 1.10
XORG_FONT_TTF_BITSTREAM_VERA_MD5 := bb22bd5b4675f5dbe17c6963d8c00ed6
XORG_FONT_TTF_BITSTREAM_VERA := ttf-bitstream-vera-$(XORG_FONT_TTF_BITSTREAM_VERA_VERSION)
XORG_FONT_TTF_BITSTREAM_VERA_SUFFIX := tar.bz2
-XORG_FONT_TTF_BITSTREAM_VERA_URL := http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/$(XORG_FONT_TTF_BITSTREAM_VERA_VERSION)/$(XORG_FONT_TTF_BITSTREAM_VERA).$(XORG_FONT_TTF_BITSTREAM_VERA_SUFFIX)
+XORG_FONT_TTF_BITSTREAM_VERA_URL := $(call ptx/mirror, GNOME, ttf-bitstream-vera/$(XORG_FONT_TTF_BITSTREAM_VERA_VERSION)/$(XORG_FONT_TTF_BITSTREAM_VERA).$(XORG_FONT_TTF_BITSTREAM_VERA_SUFFIX))
XORG_FONT_TTF_BITSTREAM_VERA_SOURCE := $(SRCDIR)/$(XORG_FONT_TTF_BITSTREAM_VERA).$(XORG_FONT_TTF_BITSTREAM_VERA_SUFFIX)
XORG_FONT_TTF_BITSTREAM_VERA_DIR := $(BUILDDIR)/$(XORG_FONT_TTF_BITSTREAM_VERA)
XORG_FONT_TTF_BITSTREAM_VERA_LICENSE := Bitstream-Vera
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [PATCH 01/29] setup: sort mirrors alphabetically
2020-10-06 14:12 ` [ptxdist] [PATCH 01/29] setup: sort mirrors alphabetically Ladislav Michl
@ 2020-10-06 15:50 ` Alexander Dahl
2020-10-07 7:24 ` Michael Olbrich
2020-10-07 15:40 ` [ptxdist] [PATCH v2 " Ladislav Michl
2 siblings, 0 replies; 72+ messages in thread
From: Alexander Dahl @ 2020-10-06 15:50 UTC (permalink / raw)
To: Ladislav Michl; +Cc: ptxdist
[-- Attachment #1.1: Type: text/plain, Size: 2439 bytes --]
Hei hei,
On Tue, Oct 06, 2020 at 04:12:02PM +0200, Ladislav Michl wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> ---
> config/setup/Kconfig | 28 ++++++++++++++--------------
> 1 file changed, 14 insertions(+), 14 deletions(-)
>
> diff --git a/config/setup/Kconfig b/config/setup/Kconfig
> index 1697d88de..ab2b8e83a 100644
> --- a/config/setup/Kconfig
> +++ b/config/setup/Kconfig
> @@ -144,13 +144,6 @@ config SETUP_DEBMIRROR
> The Debian pool mirror to use for downloading various
> components of the target root filesystem.
>
> -config SETUP_SFMIRROR
> - string
> - default "http://downloads.sourceforge.net/sourceforge"
> - prompt "Sourceforge Mirror"
> - help
> - For all Sourceforge related packages enter an available mirror here.
> -
> config SETUP_GNUMIRROR
> string
> default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> @@ -158,13 +151,6 @@ config SETUP_GNUMIRROR
> help
> For all GNU.org related packages enter an available mirror here.
>
> -config SETUP_XORGMIRROR
> - string
> - default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> - prompt "x.org Mirror"
> - help
> - For all x.org related packages enter an available mirror here.
> -
> config SETUP_KERNELMIRROR
> string
> default "https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> @@ -179,6 +165,20 @@ config SETUP_PYPIMIRROR
> help
> For all packages available on pypi, enter an available mirror here.
>
> +config SETUP_SFMIRROR
> + string
> + default "http://downloads.sourceforge.net/sourceforge"
> + prompt "Sourceforge Mirror"
> + help
> + For all Sourceforge related packages enter an available mirror here.
> +
> +config SETUP_XORGMIRROR
> + string
> + default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> + prompt "x.org Mirror"
> + help
> + For all x.org related packages enter an available mirror here.
> +
> choice
> prompt "archive check"
> default SETUP_CHECK_ALWAYS
Reviewed-by: Alexander Dahl <post@lespocky.de>
Alex
--
/"\ ASCII RIBBON | »With the first link, the chain is forged. The first
\ / CAMPAIGN | speech censured, the first thought forbidden, the
X AGAINST | first freedom denied, chains us all irrevocably.«
/ \ HTML MAIL | (Jean-Luc Picard, quoting Judge Aaron Satie)
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
[-- Attachment #2: Type: text/plain, Size: 181 bytes --]
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH v2 22/29] mobile-broadband-provider-info: use GNOME mirror
2020-10-06 14:30 ` [ptxdist] [PATCH 22/29] mobile-broadband-provider-info: " Ladislav Michl
@ 2020-10-06 16:41 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
0 siblings, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-06 16:41 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
CHANGES:
-v2: As tarball is xz compressed md5sum changed as well
rules/mobile-broadband-provider-info.make | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/rules/mobile-broadband-provider-info.make b/rules/mobile-broadband-provider-info.make
index 6c5803289..f5adb6a5c 100644
--- a/rules/mobile-broadband-provider-info.make
+++ b/rules/mobile-broadband-provider-info.make
@@ -15,10 +15,10 @@ PACKAGES-$(PTXCONF_MOBILE_BROADBAND_PROVIDER_INFO) += mobile-broadband-provider-
# Paths and names
#
MOBILE_BROADBAND_PROVIDER_INFO_VERSION := 20190618
-MOBILE_BROADBAND_PROVIDER_INFO_MD5 := 1ca66a989e6b3d788f69bd299249b74a
+MOBILE_BROADBAND_PROVIDER_INFO_MD5 := ffd3ade88953ce3cac9e548949745609
MOBILE_BROADBAND_PROVIDER_INFO := mobile-broadband-provider-info-$(MOBILE_BROADBAND_PROVIDER_INFO_VERSION)
-MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX := tar.bz2
-MOBILE_BROADBAND_PROVIDER_INFO_URL := https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info/-/archive/$(MOBILE_BROADBAND_PROVIDER_INFO_VERSION)/$(MOBILE_BROADBAND_PROVIDER_INFO).$(MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX)
+MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX := tar.xz
+MOBILE_BROADBAND_PROVIDER_INFO_URL := $(call ptx/mirror, GNOME, mobile-broadband-provider-info/$(MOBILE_BROADBAND_PROVIDER_INFO_VERSION)/$(MOBILE_BROADBAND_PROVIDER_INFO).$(MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX))
MOBILE_BROADBAND_PROVIDER_INFO_SOURCE := $(SRCDIR)/$(MOBILE_BROADBAND_PROVIDER_INFO).$(MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX)
MOBILE_BROADBAND_PROVIDER_INFO_DIR := $(BUILDDIR)/$(MOBILE_BROADBAND_PROVIDER_INFO)
MOBILE_BROADBAND_PROVIDER_INFO_LICENSE := public_domain
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [PATCH 01/29] setup: sort mirrors alphabetically
2020-10-06 14:12 ` [ptxdist] [PATCH 01/29] setup: sort mirrors alphabetically Ladislav Michl
2020-10-06 15:50 ` Alexander Dahl
@ 2020-10-07 7:24 ` Michael Olbrich
2020-10-07 8:21 ` Ladislav Michl
2020-10-07 15:40 ` [ptxdist] [PATCH v2 " Ladislav Michl
2 siblings, 1 reply; 72+ messages in thread
From: Michael Olbrich @ 2020-10-07 7:24 UTC (permalink / raw)
To: ptxdist
On Tue, Oct 06, 2020 at 04:12:02PM +0200, Ladislav Michl wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
I like it, but you need to update config/setup/ptxdistrc.default to match
the changes.
Michael
> ---
> config/setup/Kconfig | 28 ++++++++++++++--------------
> 1 file changed, 14 insertions(+), 14 deletions(-)
>
> diff --git a/config/setup/Kconfig b/config/setup/Kconfig
> index 1697d88de..ab2b8e83a 100644
> --- a/config/setup/Kconfig
> +++ b/config/setup/Kconfig
> @@ -144,13 +144,6 @@ config SETUP_DEBMIRROR
> The Debian pool mirror to use for downloading various
> components of the target root filesystem.
>
> -config SETUP_SFMIRROR
> - string
> - default "http://downloads.sourceforge.net/sourceforge"
> - prompt "Sourceforge Mirror"
> - help
> - For all Sourceforge related packages enter an available mirror here.
> -
> config SETUP_GNUMIRROR
> string
> default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> @@ -158,13 +151,6 @@ config SETUP_GNUMIRROR
> help
> For all GNU.org related packages enter an available mirror here.
>
> -config SETUP_XORGMIRROR
> - string
> - default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> - prompt "x.org Mirror"
> - help
> - For all x.org related packages enter an available mirror here.
> -
> config SETUP_KERNELMIRROR
> string
> default "https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> @@ -179,6 +165,20 @@ config SETUP_PYPIMIRROR
> help
> For all packages available on pypi, enter an available mirror here.
>
> +config SETUP_SFMIRROR
> + string
> + default "http://downloads.sourceforge.net/sourceforge"
> + prompt "Sourceforge Mirror"
> + help
> + For all Sourceforge related packages enter an available mirror here.
> +
> +config SETUP_XORGMIRROR
> + string
> + default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> + prompt "x.org Mirror"
> + help
> + For all x.org related packages enter an available mirror here.
> +
> choice
> prompt "archive check"
> default SETUP_CHECK_ALWAYS
> --
> 2.28.0
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [PATCH 01/29] setup: sort mirrors alphabetically
2020-10-07 7:24 ` Michael Olbrich
@ 2020-10-07 8:21 ` Ladislav Michl
0 siblings, 0 replies; 72+ messages in thread
From: Ladislav Michl @ 2020-10-07 8:21 UTC (permalink / raw)
To: ptxdist
Hi Michael,
On Wed, Oct 07, 2020 at 09:24:59AM +0200, Michael Olbrich wrote:
> On Tue, Oct 06, 2020 at 04:12:02PM +0200, Ladislav Michl wrote:
> > Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
>
> I like it, but you need to update config/setup/ptxdistrc.default to match
> the changes.
I did it with following patch adding GNOME mirror as here we do not change
things yet.
> Michael
>
> > ---
> > config/setup/Kconfig | 28 ++++++++++++++--------------
> > 1 file changed, 14 insertions(+), 14 deletions(-)
> >
> > diff --git a/config/setup/Kconfig b/config/setup/Kconfig
> > index 1697d88de..ab2b8e83a 100644
> > --- a/config/setup/Kconfig
> > +++ b/config/setup/Kconfig
> > @@ -144,13 +144,6 @@ config SETUP_DEBMIRROR
> > The Debian pool mirror to use for downloading various
> > components of the target root filesystem.
> >
> > -config SETUP_SFMIRROR
> > - string
> > - default "http://downloads.sourceforge.net/sourceforge"
> > - prompt "Sourceforge Mirror"
> > - help
> > - For all Sourceforge related packages enter an available mirror here.
> > -
> > config SETUP_GNUMIRROR
> > string
> > default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> > @@ -158,13 +151,6 @@ config SETUP_GNUMIRROR
> > help
> > For all GNU.org related packages enter an available mirror here.
> >
> > -config SETUP_XORGMIRROR
> > - string
> > - default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> > - prompt "x.org Mirror"
> > - help
> > - For all x.org related packages enter an available mirror here.
> > -
> > config SETUP_KERNELMIRROR
> > string
> > default "https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> > @@ -179,6 +165,20 @@ config SETUP_PYPIMIRROR
> > help
> > For all packages available on pypi, enter an available mirror here.
> >
> > +config SETUP_SFMIRROR
> > + string
> > + default "http://downloads.sourceforge.net/sourceforge"
> > + prompt "Sourceforge Mirror"
> > + help
> > + For all Sourceforge related packages enter an available mirror here.
> > +
> > +config SETUP_XORGMIRROR
> > + string
> > + default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> > + prompt "x.org Mirror"
> > + help
> > + For all x.org related packages enter an available mirror here.
> > +
> > choice
> > prompt "archive check"
> > default SETUP_CHECK_ALWAYS
> > --
> > 2.28.0
> >
> >
> > _______________________________________________
> > ptxdist mailing list
> > ptxdist@pengutronix.de
> > To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
> >
>
> --
> Pengutronix e.K. | |
> Steuerwalder Str. 21 | http://www.pengutronix.de/ |
> 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
> Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [PATCH 02/29] setup: introduce GNOME mirror
2020-10-06 14:13 ` [ptxdist] [PATCH 02/29] setup: introduce GNOME mirror Ladislav Michl
@ 2020-10-07 13:12 ` Roland Hieber
2020-10-07 15:40 ` [ptxdist] [PATCH v2 " Ladislav Michl
1 sibling, 0 replies; 72+ messages in thread
From: Roland Hieber @ 2020-10-07 13:12 UTC (permalink / raw)
To: Ladislav Michl; +Cc: ptxdist
On Tue, Oct 06, 2020 at 04:13:28PM +0200, Ladislav Michl wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> ---
> config/setup/Kconfig | 7 +++++++
> config/setup/ptxdistrc.default | 13 +++++++------
> 2 files changed, 14 insertions(+), 6 deletions(-)
>
> diff --git a/config/setup/Kconfig b/config/setup/Kconfig
> index ab2b8e83a..f3fe2e8e8 100644
> --- a/config/setup/Kconfig
> +++ b/config/setup/Kconfig
> @@ -144,6 +144,13 @@ config SETUP_DEBMIRROR
> The Debian pool mirror to use for downloading various
> components of the target root filesystem.
>
> +config SETUP_GNOMEMIRROR
> + string
> + default "https://download.gnome.org/sources https://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.gnome.org/sources"
> + prompt "GNOME Mirror"
> + help
> + For all GNOME related packages enter an available mirror here.
> +
> config SETUP_GNUMIRROR
> string
> default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> diff --git a/config/setup/ptxdistrc.default b/config/setup/ptxdistrc.default
> index 7973fdfe4..6b3c949d0 100644
> --- a/config/setup/ptxdistrc.default
> +++ b/config/setup/ptxdistrc.default
> @@ -1,6 +1,6 @@
> #
> # Automatically generated file; DO NOT EDIT.
> -# PTXdist 2020.03.0
> +# PTXdist 2020.09.0
> #
>
> #
> @@ -31,13 +31,14 @@ PTXCONF_SETUP_SRCDIR="${PTXDIST_WORKSPACE}/src"
> #
> # PTXCONF_SETUP_NO_DOWNLOAD is not set
> # PTXCONF_SETUP_PTXMIRROR_ONLY is not set
> -PTXCONF_SETUP_PTXMIRROR="https://www.pengutronix.de/software/ptxdist/temporary-src"
> -PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian http://archive.debian.org/debian"
This looks unrelated to what you wrote in the commit message...
Like Michael mentioned, I would also include the changes for the sorting
in the respective commit, so one can cherry-pick single commits onto
different branches or BSPs.
- Roland
> -PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
> -PTXCONF_SETUP_GNUMIRROR="https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> -PTXCONF_SETUP_XORGMIRROR="https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> +PTXCONF_SETUP_PTXMIRROR="http://www.pengutronix.de/software/ptxdist/temporary-src"
> +PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian"
> +PTXCONF_SETUP_GNOMEMIRROR="https://download.gnome.org/sources https://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.gnome.org/sources"
> +PTXCONF_SETUP_GNUMIRROR="http://ftp.uni-kl.de/pub/gnu"
> PTXCONF_SETUP_KERNELMIRROR="https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> PTXCONF_SETUP_PYPIMIRROR="https://files.pythonhosted.org/packages/source"
> +PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
> +PTXCONF_SETUP_XORGMIRROR="http://ftp.sunet.se/pub/X11/ftp.x.org http://ftp.x.org/pub http://xorg.freedesktop.org/releases"
> PTXCONF_SETUP_CHECK_ALWAYS=y
> # PTXCONF_SETUP_CHECK_NOTEMPTY is not set
> # PTXCONF_SETUP_CHECK_NEVER is not set
> --
> 2.28.0
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
>
--
Roland Hieber, Pengutronix e.K. | r.hieber@pengutronix.de |
Steuerwalder Str. 21 | https://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH v2 01/29] setup: sort mirrors alphabetically
2020-10-06 14:12 ` [ptxdist] [PATCH 01/29] setup: sort mirrors alphabetically Ladislav Michl
2020-10-06 15:50 ` Alexander Dahl
2020-10-07 7:24 ` Michael Olbrich
@ 2020-10-07 15:40 ` Ladislav Michl
2020-10-09 12:59 ` Roland Hieber
` (2 more replies)
2 siblings, 3 replies; 72+ messages in thread
From: Ladislav Michl @ 2020-10-07 15:40 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
Changes:
-v2: regerate config/setup/ptxdistrc.default
config/setup/Kconfig | 28 ++++++++++++++--------------
config/setup/ptxdistrc.default | 12 ++++++------
2 files changed, 20 insertions(+), 20 deletions(-)
diff --git a/config/setup/Kconfig b/config/setup/Kconfig
index 1697d88de..ab2b8e83a 100644
--- a/config/setup/Kconfig
+++ b/config/setup/Kconfig
@@ -144,13 +144,6 @@ config SETUP_DEBMIRROR
The Debian pool mirror to use for downloading various
components of the target root filesystem.
-config SETUP_SFMIRROR
- string
- default "http://downloads.sourceforge.net/sourceforge"
- prompt "Sourceforge Mirror"
- help
- For all Sourceforge related packages enter an available mirror here.
-
config SETUP_GNUMIRROR
string
default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
@@ -158,13 +151,6 @@ config SETUP_GNUMIRROR
help
For all GNU.org related packages enter an available mirror here.
-config SETUP_XORGMIRROR
- string
- default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
- prompt "x.org Mirror"
- help
- For all x.org related packages enter an available mirror here.
-
config SETUP_KERNELMIRROR
string
default "https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
@@ -179,6 +165,20 @@ config SETUP_PYPIMIRROR
help
For all packages available on pypi, enter an available mirror here.
+config SETUP_SFMIRROR
+ string
+ default "http://downloads.sourceforge.net/sourceforge"
+ prompt "Sourceforge Mirror"
+ help
+ For all Sourceforge related packages enter an available mirror here.
+
+config SETUP_XORGMIRROR
+ string
+ default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
+ prompt "x.org Mirror"
+ help
+ For all x.org related packages enter an available mirror here.
+
choice
prompt "archive check"
default SETUP_CHECK_ALWAYS
diff --git a/config/setup/ptxdistrc.default b/config/setup/ptxdistrc.default
index 7973fdfe4..5c2cba6b7 100644
--- a/config/setup/ptxdistrc.default
+++ b/config/setup/ptxdistrc.default
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# PTXdist 2020.03.0
+# PTXdist 2020.10.0
#
#
@@ -31,13 +31,13 @@ PTXCONF_SETUP_SRCDIR="${PTXDIST_WORKSPACE}/src"
#
# PTXCONF_SETUP_NO_DOWNLOAD is not set
# PTXCONF_SETUP_PTXMIRROR_ONLY is not set
-PTXCONF_SETUP_PTXMIRROR="https://www.pengutronix.de/software/ptxdist/temporary-src"
-PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian http://archive.debian.org/debian"
-PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
-PTXCONF_SETUP_GNUMIRROR="https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
-PTXCONF_SETUP_XORGMIRROR="https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
+PTXCONF_SETUP_PTXMIRROR="http://www.pengutronix.de/software/ptxdist/temporary-src"
+PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian"
+PTXCONF_SETUP_GNUMIRROR="http://ftp.uni-kl.de/pub/gnu"
PTXCONF_SETUP_KERNELMIRROR="https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
PTXCONF_SETUP_PYPIMIRROR="https://files.pythonhosted.org/packages/source"
+PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
+PTXCONF_SETUP_XORGMIRROR="http://ftp.sunet.se/pub/X11/ftp.x.org http://ftp.x.org/pub http://xorg.freedesktop.org/releases"
PTXCONF_SETUP_CHECK_ALWAYS=y
# PTXCONF_SETUP_CHECK_NOTEMPTY is not set
# PTXCONF_SETUP_CHECK_NEVER is not set
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH v2 02/29] setup: introduce GNOME mirror
2020-10-06 14:13 ` [ptxdist] [PATCH 02/29] setup: introduce GNOME mirror Ladislav Michl
2020-10-07 13:12 ` Roland Hieber
@ 2020-10-07 15:40 ` Ladislav Michl
2020-10-09 21:16 ` [ptxdist] [PATCH v3 " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
1 sibling, 2 replies; 72+ messages in thread
From: Ladislav Michl @ 2020-10-07 15:40 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
Changes:
-v2: regerate config/setup/ptxdistrc.default
config/setup/Kconfig | 7 +++++++
config/setup/ptxdistrc.default | 1 +
2 files changed, 8 insertions(+)
diff --git a/config/setup/Kconfig b/config/setup/Kconfig
index ab2b8e83a..f3fe2e8e8 100644
--- a/config/setup/Kconfig
+++ b/config/setup/Kconfig
@@ -144,6 +144,13 @@ config SETUP_DEBMIRROR
The Debian pool mirror to use for downloading various
components of the target root filesystem.
+config SETUP_GNOMEMIRROR
+ string
+ default "https://download.gnome.org/sources https://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.gnome.org/sources"
+ prompt "GNOME Mirror"
+ help
+ For all GNOME related packages enter an available mirror here.
+
config SETUP_GNUMIRROR
string
default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
diff --git a/config/setup/ptxdistrc.default b/config/setup/ptxdistrc.default
index 5c2cba6b7..6b3c949d0 100644
--- a/config/setup/ptxdistrc.default
+++ b/config/setup/ptxdistrc.default
@@ -33,6 +33,7 @@ PTXCONF_SETUP_SRCDIR="${PTXDIST_WORKSPACE}/src"
# PTXCONF_SETUP_PTXMIRROR_ONLY is not set
PTXCONF_SETUP_PTXMIRROR="http://www.pengutronix.de/software/ptxdist/temporary-src"
PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian"
+PTXCONF_SETUP_GNOMEMIRROR="https://download.gnome.org/sources https://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.gnome.org/sources"
PTXCONF_SETUP_GNUMIRROR="http://ftp.uni-kl.de/pub/gnu"
PTXCONF_SETUP_KERNELMIRROR="https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
PTXCONF_SETUP_PYPIMIRROR="https://files.pythonhosted.org/packages/source"
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [PATCH v2 01/29] setup: sort mirrors alphabetically
2020-10-07 15:40 ` [ptxdist] [PATCH v2 " Ladislav Michl
@ 2020-10-09 12:59 ` Roland Hieber
2020-10-09 13:15 ` Michael Olbrich
2020-10-09 21:11 ` Ladislav Michl
2020-10-09 21:14 ` [ptxdist] [PATCH v3 " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2 siblings, 2 replies; 72+ messages in thread
From: Roland Hieber @ 2020-10-09 12:59 UTC (permalink / raw)
To: Ladislav Michl; +Cc: ptxdist
On Wed, Oct 07, 2020 at 05:40:22PM +0200, Ladislav Michl wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> ---
> Changes:
> -v2: regerate config/setup/ptxdistrc.default
>
> config/setup/Kconfig | 28 ++++++++++++++--------------
> config/setup/ptxdistrc.default | 12 ++++++------
> 2 files changed, 20 insertions(+), 20 deletions(-)
>
> diff --git a/config/setup/Kconfig b/config/setup/Kconfig
> index 1697d88de..ab2b8e83a 100644
> --- a/config/setup/Kconfig
> +++ b/config/setup/Kconfig
> @@ -144,13 +144,6 @@ config SETUP_DEBMIRROR
> The Debian pool mirror to use for downloading various
> components of the target root filesystem.
>
> -config SETUP_SFMIRROR
> - string
> - default "http://downloads.sourceforge.net/sourceforge"
> - prompt "Sourceforge Mirror"
> - help
> - For all Sourceforge related packages enter an available mirror here.
> -
> config SETUP_GNUMIRROR
> string
> default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> @@ -158,13 +151,6 @@ config SETUP_GNUMIRROR
> help
> For all GNU.org related packages enter an available mirror here.
>
> -config SETUP_XORGMIRROR
> - string
> - default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> - prompt "x.org Mirror"
> - help
> - For all x.org related packages enter an available mirror here.
> -
> config SETUP_KERNELMIRROR
> string
> default "https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> @@ -179,6 +165,20 @@ config SETUP_PYPIMIRROR
> help
> For all packages available on pypi, enter an available mirror here.
>
> +config SETUP_SFMIRROR
> + string
> + default "http://downloads.sourceforge.net/sourceforge"
> + prompt "Sourceforge Mirror"
> + help
> + For all Sourceforge related packages enter an available mirror here.
> +
> +config SETUP_XORGMIRROR
> + string
> + default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> + prompt "x.org Mirror"
> + help
> + For all x.org related packages enter an available mirror here.
> +
> choice
> prompt "archive check"
> default SETUP_CHECK_ALWAYS
> diff --git a/config/setup/ptxdistrc.default b/config/setup/ptxdistrc.default
> index 7973fdfe4..5c2cba6b7 100644
> --- a/config/setup/ptxdistrc.default
> +++ b/config/setup/ptxdistrc.default
> @@ -1,6 +1,6 @@
> #
> # Automatically generated file; DO NOT EDIT.
> -# PTXdist 2020.03.0
> +# PTXdist 2020.10.0
> #
>
> #
> @@ -31,13 +31,13 @@ PTXCONF_SETUP_SRCDIR="${PTXDIST_WORKSPACE}/src"
> #
> # PTXCONF_SETUP_NO_DOWNLOAD is not set
> # PTXCONF_SETUP_PTXMIRROR_ONLY is not set
> -PTXCONF_SETUP_PTXMIRROR="https://www.pengutronix.de/software/ptxdist/temporary-src"
> -PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian http://archive.debian.org/debian"
> -PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
> -PTXCONF_SETUP_GNUMIRROR="https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> -PTXCONF_SETUP_XORGMIRROR="https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> +PTXCONF_SETUP_PTXMIRROR="http://www.pengutronix.de/software/ptxdist/temporary-src"
> +PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian"
Why did you remove http://archive.debian.org/debian here?
> +PTXCONF_SETUP_GNUMIRROR="http://ftp.uni-kl.de/pub/gnu"
…and https://ftp.gnu.org/gnu here?
> PTXCONF_SETUP_KERNELMIRROR="https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> PTXCONF_SETUP_PYPIMIRROR="https://files.pythonhosted.org/packages/source"
> +PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
> +PTXCONF_SETUP_XORGMIRROR="http://ftp.sunet.se/pub/X11/ftp.x.org http://ftp.x.org/pub http://xorg.freedesktop.org/releases"
…and add http://ftp.sunet.se/pub/X11/ftp.x.org here (which should be
okay in general, but I would still do it in a separate commit, and also
add it to the defaults in the kconfig menu :))
- Roland
> PTXCONF_SETUP_CHECK_ALWAYS=y
> # PTXCONF_SETUP_CHECK_NOTEMPTY is not set
> # PTXCONF_SETUP_CHECK_NEVER is not set
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
>
--
Roland Hieber, Pengutronix e.K. | r.hieber@pengutronix.de |
Steuerwalder Str. 21 | https://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [PATCH v2 01/29] setup: sort mirrors alphabetically
2020-10-09 12:59 ` Roland Hieber
@ 2020-10-09 13:15 ` Michael Olbrich
2020-10-09 21:11 ` Ladislav Michl
1 sibling, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-09 13:15 UTC (permalink / raw)
To: ptxdist
On Fri, Oct 09, 2020 at 02:59:08PM +0200, Roland Hieber wrote:
> On Wed, Oct 07, 2020 at 05:40:22PM +0200, Ladislav Michl wrote:
> > Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> > ---
> > Changes:
> > -v2: regerate config/setup/ptxdistrc.default
> >
> > config/setup/Kconfig | 28 ++++++++++++++--------------
> > config/setup/ptxdistrc.default | 12 ++++++------
> > 2 files changed, 20 insertions(+), 20 deletions(-)
> >
> > diff --git a/config/setup/Kconfig b/config/setup/Kconfig
> > index 1697d88de..ab2b8e83a 100644
> > --- a/config/setup/Kconfig
> > +++ b/config/setup/Kconfig
> > @@ -144,13 +144,6 @@ config SETUP_DEBMIRROR
> > The Debian pool mirror to use for downloading various
> > components of the target root filesystem.
> >
> > -config SETUP_SFMIRROR
> > - string
> > - default "http://downloads.sourceforge.net/sourceforge"
> > - prompt "Sourceforge Mirror"
> > - help
> > - For all Sourceforge related packages enter an available mirror here.
> > -
> > config SETUP_GNUMIRROR
> > string
> > default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> > @@ -158,13 +151,6 @@ config SETUP_GNUMIRROR
> > help
> > For all GNU.org related packages enter an available mirror here.
> >
> > -config SETUP_XORGMIRROR
> > - string
> > - default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> > - prompt "x.org Mirror"
> > - help
> > - For all x.org related packages enter an available mirror here.
> > -
> > config SETUP_KERNELMIRROR
> > string
> > default "https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> > @@ -179,6 +165,20 @@ config SETUP_PYPIMIRROR
> > help
> > For all packages available on pypi, enter an available mirror here.
> >
> > +config SETUP_SFMIRROR
> > + string
> > + default "http://downloads.sourceforge.net/sourceforge"
> > + prompt "Sourceforge Mirror"
> > + help
> > + For all Sourceforge related packages enter an available mirror here.
> > +
> > +config SETUP_XORGMIRROR
> > + string
> > + default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> > + prompt "x.org Mirror"
> > + help
> > + For all x.org related packages enter an available mirror here.
> > +
> > choice
> > prompt "archive check"
> > default SETUP_CHECK_ALWAYS
> > diff --git a/config/setup/ptxdistrc.default b/config/setup/ptxdistrc.default
> > index 7973fdfe4..5c2cba6b7 100644
> > --- a/config/setup/ptxdistrc.default
> > +++ b/config/setup/ptxdistrc.default
> > @@ -1,6 +1,6 @@
> > #
> > # Automatically generated file; DO NOT EDIT.
> > -# PTXdist 2020.03.0
> > +# PTXdist 2020.10.0
> > #
> >
> > #
> > @@ -31,13 +31,13 @@ PTXCONF_SETUP_SRCDIR="${PTXDIST_WORKSPACE}/src"
> > #
> > # PTXCONF_SETUP_NO_DOWNLOAD is not set
> > # PTXCONF_SETUP_PTXMIRROR_ONLY is not set
> > -PTXCONF_SETUP_PTXMIRROR="https://www.pengutronix.de/software/ptxdist/temporary-src"
> > -PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian http://archive.debian.org/debian"
> > -PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
> > -PTXCONF_SETUP_GNUMIRROR="https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> > -PTXCONF_SETUP_XORGMIRROR="https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> > +PTXCONF_SETUP_PTXMIRROR="http://www.pengutronix.de/software/ptxdist/temporary-src"
> > +PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian"
>
> Why did you remove http://archive.debian.org/debian here?
>
> > +PTXCONF_SETUP_GNUMIRROR="http://ftp.uni-kl.de/pub/gnu"
>
> …and https://ftp.gnu.org/gnu here?
>
> > PTXCONF_SETUP_KERNELMIRROR="https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> > PTXCONF_SETUP_PYPIMIRROR="https://files.pythonhosted.org/packages/source"
> > +PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
> > +PTXCONF_SETUP_XORGMIRROR="http://ftp.sunet.se/pub/X11/ftp.x.org http://ftp.x.org/pub http://xorg.freedesktop.org/releases"
>
> …and add http://ftp.sunet.se/pub/X11/ftp.x.org here (which should be
> okay in general, but I would still do it in a separate commit, and also
> add it to the defaults in the kconfig menu :))
I've regenerated ptxdistrc.default from defaults while adding the patch to
my build queue.
Michael
> > PTXCONF_SETUP_CHECK_ALWAYS=y
> > # PTXCONF_SETUP_CHECK_NOTEMPTY is not set
> > # PTXCONF_SETUP_CHECK_NEVER is not set
> >
> > _______________________________________________
> > ptxdist mailing list
> > ptxdist@pengutronix.de
> > To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
> >
>
> --
> Roland Hieber, Pengutronix e.K. | r.hieber@pengutronix.de |
> Steuerwalder Str. 21 | https://www.pengutronix.de/ |
> 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
> Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [PATCH v2 01/29] setup: sort mirrors alphabetically
2020-10-09 12:59 ` Roland Hieber
2020-10-09 13:15 ` Michael Olbrich
@ 2020-10-09 21:11 ` Ladislav Michl
2020-10-10 13:20 ` Roland Hieber
1 sibling, 1 reply; 72+ messages in thread
From: Ladislav Michl @ 2020-10-09 21:11 UTC (permalink / raw)
To: Roland Hieber; +Cc: ptxdist
On Fri, Oct 09, 2020 at 02:59:08PM +0200, Roland Hieber wrote:
> On Wed, Oct 07, 2020 at 05:40:22PM +0200, Ladislav Michl wrote:
> > Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> > ---
> > Changes:
> > -v2: regerate config/setup/ptxdistrc.default
> >
> > config/setup/Kconfig | 28 ++++++++++++++--------------
> > config/setup/ptxdistrc.default | 12 ++++++------
> > 2 files changed, 20 insertions(+), 20 deletions(-)
> >
> > diff --git a/config/setup/Kconfig b/config/setup/Kconfig
> > index 1697d88de..ab2b8e83a 100644
> > --- a/config/setup/Kconfig
> > +++ b/config/setup/Kconfig
> > @@ -144,13 +144,6 @@ config SETUP_DEBMIRROR
> > The Debian pool mirror to use for downloading various
> > components of the target root filesystem.
> >
> > -config SETUP_SFMIRROR
> > - string
> > - default "http://downloads.sourceforge.net/sourceforge"
> > - prompt "Sourceforge Mirror"
> > - help
> > - For all Sourceforge related packages enter an available mirror here.
> > -
> > config SETUP_GNUMIRROR
> > string
> > default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> > @@ -158,13 +151,6 @@ config SETUP_GNUMIRROR
> > help
> > For all GNU.org related packages enter an available mirror here.
> >
> > -config SETUP_XORGMIRROR
> > - string
> > - default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> > - prompt "x.org Mirror"
> > - help
> > - For all x.org related packages enter an available mirror here.
> > -
> > config SETUP_KERNELMIRROR
> > string
> > default "https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> > @@ -179,6 +165,20 @@ config SETUP_PYPIMIRROR
> > help
> > For all packages available on pypi, enter an available mirror here.
> >
> > +config SETUP_SFMIRROR
> > + string
> > + default "http://downloads.sourceforge.net/sourceforge"
> > + prompt "Sourceforge Mirror"
> > + help
> > + For all Sourceforge related packages enter an available mirror here.
> > +
> > +config SETUP_XORGMIRROR
> > + string
> > + default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> > + prompt "x.org Mirror"
> > + help
> > + For all x.org related packages enter an available mirror here.
> > +
> > choice
> > prompt "archive check"
> > default SETUP_CHECK_ALWAYS
> > diff --git a/config/setup/ptxdistrc.default b/config/setup/ptxdistrc.default
> > index 7973fdfe4..5c2cba6b7 100644
> > --- a/config/setup/ptxdistrc.default
> > +++ b/config/setup/ptxdistrc.default
> > @@ -1,6 +1,6 @@
> > #
> > # Automatically generated file; DO NOT EDIT.
> > -# PTXdist 2020.03.0
> > +# PTXdist 2020.10.0
> > #
> >
> > #
> > @@ -31,13 +31,13 @@ PTXCONF_SETUP_SRCDIR="${PTXDIST_WORKSPACE}/src"
> > #
> > # PTXCONF_SETUP_NO_DOWNLOAD is not set
> > # PTXCONF_SETUP_PTXMIRROR_ONLY is not set
> > -PTXCONF_SETUP_PTXMIRROR="https://www.pengutronix.de/software/ptxdist/temporary-src"
> > -PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian http://archive.debian.org/debian"
> > -PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
> > -PTXCONF_SETUP_GNUMIRROR="https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> > -PTXCONF_SETUP_XORGMIRROR="https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> > +PTXCONF_SETUP_PTXMIRROR="http://www.pengutronix.de/software/ptxdist/temporary-src"
> > +PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian"
>
> Why did you remove http://archive.debian.org/debian here?
Argh... Good catch. I run 'ptxdist setup oldconfig' and it showed up
I'm still keeping defaults from 2015.12. So ~/.ptxdist is now cleaned
up and update follows...
> > +PTXCONF_SETUP_GNUMIRROR="http://ftp.uni-kl.de/pub/gnu"
>
> …and https://ftp.gnu.org/gnu here?
>
> > PTXCONF_SETUP_KERNELMIRROR="https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> > PTXCONF_SETUP_PYPIMIRROR="https://files.pythonhosted.org/packages/source"
> > +PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
> > +PTXCONF_SETUP_XORGMIRROR="http://ftp.sunet.se/pub/X11/ftp.x.org http://ftp.x.org/pub http://xorg.freedesktop.org/releases"
>
> …and add http://ftp.sunet.se/pub/X11/ftp.x.org here (which should be
> okay in general, but I would still do it in a separate commit, and also
> add it to the defaults in the kconfig menu :))
>
> - Roland
>
> > PTXCONF_SETUP_CHECK_ALWAYS=y
> > # PTXCONF_SETUP_CHECK_NOTEMPTY is not set
> > # PTXCONF_SETUP_CHECK_NEVER is not set
> >
> > _______________________________________________
> > ptxdist mailing list
> > ptxdist@pengutronix.de
> > To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
> >
>
> --
> Roland Hieber, Pengutronix e.K. | r.hieber@pengutronix.de |
> Steuerwalder Str. 21 | https://www.pengutronix.de/ |
> 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
> Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH v3 01/29] setup: sort mirrors alphabetically
2020-10-07 15:40 ` [ptxdist] [PATCH v2 " Ladislav Michl
2020-10-09 12:59 ` Roland Hieber
@ 2020-10-09 21:14 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2 siblings, 0 replies; 72+ messages in thread
From: Ladislav Michl @ 2020-10-09 21:14 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
Changes:
-v2: regerate config/setup/ptxdistrc.default
-v3: properly regerate config/setup/ptxdistrc.default
config/setup/Kconfig | 28 ++++++++++++++--------------
config/setup/ptxdistrc.default | 6 +++---
2 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/config/setup/Kconfig b/config/setup/Kconfig
index 1697d88de..ab2b8e83a 100644
--- a/config/setup/Kconfig
+++ b/config/setup/Kconfig
@@ -144,13 +144,6 @@ config SETUP_DEBMIRROR
The Debian pool mirror to use for downloading various
components of the target root filesystem.
-config SETUP_SFMIRROR
- string
- default "http://downloads.sourceforge.net/sourceforge"
- prompt "Sourceforge Mirror"
- help
- For all Sourceforge related packages enter an available mirror here.
-
config SETUP_GNUMIRROR
string
default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
@@ -158,13 +151,6 @@ config SETUP_GNUMIRROR
help
For all GNU.org related packages enter an available mirror here.
-config SETUP_XORGMIRROR
- string
- default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
- prompt "x.org Mirror"
- help
- For all x.org related packages enter an available mirror here.
-
config SETUP_KERNELMIRROR
string
default "https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
@@ -179,6 +165,20 @@ config SETUP_PYPIMIRROR
help
For all packages available on pypi, enter an available mirror here.
+config SETUP_SFMIRROR
+ string
+ default "http://downloads.sourceforge.net/sourceforge"
+ prompt "Sourceforge Mirror"
+ help
+ For all Sourceforge related packages enter an available mirror here.
+
+config SETUP_XORGMIRROR
+ string
+ default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
+ prompt "x.org Mirror"
+ help
+ For all x.org related packages enter an available mirror here.
+
choice
prompt "archive check"
default SETUP_CHECK_ALWAYS
diff --git a/config/setup/ptxdistrc.default b/config/setup/ptxdistrc.default
index 7973fdfe4..50e751f20 100644
--- a/config/setup/ptxdistrc.default
+++ b/config/setup/ptxdistrc.default
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# PTXdist 2020.03.0
+# PTXdist 2020.10.0
#
#
@@ -33,11 +33,11 @@ PTXCONF_SETUP_SRCDIR="${PTXDIST_WORKSPACE}/src"
# PTXCONF_SETUP_PTXMIRROR_ONLY is not set
PTXCONF_SETUP_PTXMIRROR="https://www.pengutronix.de/software/ptxdist/temporary-src"
PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian http://archive.debian.org/debian"
-PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
PTXCONF_SETUP_GNUMIRROR="https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
-PTXCONF_SETUP_XORGMIRROR="https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
PTXCONF_SETUP_KERNELMIRROR="https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
PTXCONF_SETUP_PYPIMIRROR="https://files.pythonhosted.org/packages/source"
+PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
+PTXCONF_SETUP_XORGMIRROR="https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
PTXCONF_SETUP_CHECK_ALWAYS=y
# PTXCONF_SETUP_CHECK_NOTEMPTY is not set
# PTXCONF_SETUP_CHECK_NEVER is not set
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* [ptxdist] [PATCH v3 02/29] setup: introduce GNOME mirror
2020-10-07 15:40 ` [ptxdist] [PATCH v2 " Ladislav Michl
@ 2020-10-09 21:16 ` Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
1 sibling, 0 replies; 72+ messages in thread
From: Ladislav Michl @ 2020-10-09 21:16 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
Changes:
-v2: regerate config/setup/ptxdistrc.default
-v3: regerate config/setup/ptxdistrc.default again
config/setup/Kconfig | 7 +++++++
config/setup/ptxdistrc.default | 1 +
2 files changed, 8 insertions(+)
diff --git a/config/setup/Kconfig b/config/setup/Kconfig
index ab2b8e83a..f3fe2e8e8 100644
--- a/config/setup/Kconfig
+++ b/config/setup/Kconfig
@@ -144,6 +144,13 @@ config SETUP_DEBMIRROR
The Debian pool mirror to use for downloading various
components of the target root filesystem.
+config SETUP_GNOMEMIRROR
+ string
+ default "https://download.gnome.org/sources https://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.gnome.org/sources"
+ prompt "GNOME Mirror"
+ help
+ For all GNOME related packages enter an available mirror here.
+
config SETUP_GNUMIRROR
string
default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
diff --git a/config/setup/ptxdistrc.default b/config/setup/ptxdistrc.default
index 50e751f20..8e870e27c 100644
--- a/config/setup/ptxdistrc.default
+++ b/config/setup/ptxdistrc.default
@@ -34,6 +34,7 @@ PTXCONF_SETUP_SRCDIR="${PTXDIST_WORKSPACE}/src"
PTXCONF_SETUP_PTXMIRROR="https://www.pengutronix.de/software/ptxdist/temporary-src"
PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian http://archive.debian.org/debian"
PTXCONF_SETUP_GNUMIRROR="https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
+PTXCONF_SETUP_GNOMEMIRROR="https://download.gnome.org/sources https://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.gnome.org/sources"
PTXCONF_SETUP_KERNELMIRROR="https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
PTXCONF_SETUP_PYPIMIRROR="https://files.pythonhosted.org/packages/source"
PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
--
2.28.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [PATCH v2 01/29] setup: sort mirrors alphabetically
2020-10-09 21:11 ` Ladislav Michl
@ 2020-10-10 13:20 ` Roland Hieber
0 siblings, 0 replies; 72+ messages in thread
From: Roland Hieber @ 2020-10-10 13:20 UTC (permalink / raw)
To: Ladislav Michl; +Cc: ptxdist
On Fri, Oct 09, 2020 at 11:11:35PM +0200, Ladislav Michl wrote:
> Argh... Good catch. I run 'ptxdist setup oldconfig' and it showed up
Oh cool, I didn't know that 'setup oldconfig' existed :D Until now, I
always adapted the default ptxdistrc manually when changing anything in
the kconfig…
- Roland
--
Roland Hieber, Pengutronix e.K. | r.hieber@pengutronix.de |
Steuerwalder Str. 21 | https://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] setup: sort mirrors alphabetically
2020-10-07 15:40 ` [ptxdist] [PATCH v2 " Ladislav Michl
2020-10-09 12:59 ` Roland Hieber
2020-10-09 21:14 ` [ptxdist] [PATCH v3 " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
2 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 22dc5982b3f709021e98e05bd8e204ecb86ee8e4.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:27 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201007154022.GA111533@lenoch>
> [mol: regenerate ptxdistrc.default]
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/config/setup/Kconfig b/config/setup/Kconfig
> index 1697d88dee98..ab2b8e83a387 100644
> --- a/config/setup/Kconfig
> +++ b/config/setup/Kconfig
> @@ -144,13 +144,6 @@ config SETUP_DEBMIRROR
> The Debian pool mirror to use for downloading various
> components of the target root filesystem.
>
> -config SETUP_SFMIRROR
> - string
> - default "http://downloads.sourceforge.net/sourceforge"
> - prompt "Sourceforge Mirror"
> - help
> - For all Sourceforge related packages enter an available mirror here.
> -
> config SETUP_GNUMIRROR
> string
> default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> @@ -158,13 +151,6 @@ config SETUP_GNUMIRROR
> help
> For all GNU.org related packages enter an available mirror here.
>
> -config SETUP_XORGMIRROR
> - string
> - default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> - prompt "x.org Mirror"
> - help
> - For all x.org related packages enter an available mirror here.
> -
> config SETUP_KERNELMIRROR
> string
> default "https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> @@ -179,6 +165,20 @@ config SETUP_PYPIMIRROR
> help
> For all packages available on pypi, enter an available mirror here.
>
> +config SETUP_SFMIRROR
> + string
> + default "http://downloads.sourceforge.net/sourceforge"
> + prompt "Sourceforge Mirror"
> + help
> + For all Sourceforge related packages enter an available mirror here.
> +
> +config SETUP_XORGMIRROR
> + string
> + default "https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> + prompt "x.org Mirror"
> + help
> + For all x.org related packages enter an available mirror here.
> +
> choice
> prompt "archive check"
> default SETUP_CHECK_ALWAYS
> diff --git a/config/setup/ptxdistrc.default b/config/setup/ptxdistrc.default
> index 7973fdfe40aa..50e751f20dbb 100644
> --- a/config/setup/ptxdistrc.default
> +++ b/config/setup/ptxdistrc.default
> @@ -1,6 +1,6 @@
> #
> # Automatically generated file; DO NOT EDIT.
> -# PTXdist 2020.03.0
> +# PTXdist 2020.10.0
> #
>
> #
> @@ -33,11 +33,11 @@ PTXCONF_SETUP_SRCDIR="${PTXDIST_WORKSPACE}/src"
> # PTXCONF_SETUP_PTXMIRROR_ONLY is not set
> PTXCONF_SETUP_PTXMIRROR="https://www.pengutronix.de/software/ptxdist/temporary-src"
> PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian http://archive.debian.org/debian"
> -PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
> PTXCONF_SETUP_GNUMIRROR="https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> -PTXCONF_SETUP_XORGMIRROR="https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> PTXCONF_SETUP_KERNELMIRROR="https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> PTXCONF_SETUP_PYPIMIRROR="https://files.pythonhosted.org/packages/source"
> +PTXCONF_SETUP_SFMIRROR="http://downloads.sourceforge.net/sourceforge"
> +PTXCONF_SETUP_XORGMIRROR="https://ftp.x.org/archive https://xorg.freedesktop.org/releases"
> PTXCONF_SETUP_CHECK_ALWAYS=y
> # PTXCONF_SETUP_CHECK_NOTEMPTY is not set
> # PTXCONF_SETUP_CHECK_NEVER is not set
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] atk: use GNOME mirror
2020-10-06 14:13 ` [ptxdist] [PATCH 03/29] atk: use " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 2f00bdc1beb8631cc4b4d8eaeac5d115d04da0bf.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:29 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006141358.GD1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/atk.make b/rules/atk.make
> index 45a8465f6bbb..ce41caec10f2 100644
> --- a/rules/atk.make
> +++ b/rules/atk.make
> @@ -20,7 +20,7 @@ ATK_VERSION := 2.28.1
> ATK_MD5 := dfb5e7474220afa3f4ca7e45af9f3a11
> ATK := atk-$(ATK_VERSION)
> ATK_SUFFIX := tar.xz
> -ATK_URL := http://ftp.gnome.org/pub/gnome/sources/atk/$(basename $(ATK_VERSION))/$(ATK).$(ATK_SUFFIX)
> +ATK_URL := $(call ptx/mirror, GNOME, atk/$(basename $(ATK_VERSION))/$(ATK).$(ATK_SUFFIX))
> ATK_SOURCE := $(SRCDIR)/$(ATK).$(ATK_SUFFIX)
> ATK_DIR := $(BUILDDIR)/$(ATK)
> ATK_LICENSE := LGPL-2.0-only
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] setup: introduce GNOME mirror
2020-10-07 15:40 ` [ptxdist] [PATCH v2 " Ladislav Michl
2020-10-09 21:16 ` [ptxdist] [PATCH v3 " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
1 sibling, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as d5f3773e62c2f765c830f096d6a838707e9392d9.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:29 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201007154057.GB111533@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/config/setup/Kconfig b/config/setup/Kconfig
> index ab2b8e83a387..f3fe2e8e814a 100644
> --- a/config/setup/Kconfig
> +++ b/config/setup/Kconfig
> @@ -144,6 +144,13 @@ config SETUP_DEBMIRROR
> The Debian pool mirror to use for downloading various
> components of the target root filesystem.
>
> +config SETUP_GNOMEMIRROR
> + string
> + default "https://download.gnome.org/sources https://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.gnome.org/sources"
> + prompt "GNOME Mirror"
> + help
> + For all GNOME related packages enter an available mirror here.
> +
> config SETUP_GNUMIRROR
> string
> default "https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> diff --git a/config/setup/ptxdistrc.default b/config/setup/ptxdistrc.default
> index 50e751f20dbb..a3be0a337cbd 100644
> --- a/config/setup/ptxdistrc.default
> +++ b/config/setup/ptxdistrc.default
> @@ -33,6 +33,7 @@ PTXCONF_SETUP_SRCDIR="${PTXDIST_WORKSPACE}/src"
> # PTXCONF_SETUP_PTXMIRROR_ONLY is not set
> PTXCONF_SETUP_PTXMIRROR="https://www.pengutronix.de/software/ptxdist/temporary-src"
> PTXCONF_SETUP_DEBMIRROR="http://ftp.uni-kl.de/debian http://archive.debian.org/debian"
> +PTXCONF_SETUP_GNOMEMIRROR="https://download.gnome.org/sources https://ftp-stud.hs-esslingen.de/pub/Mirrors/ftp.gnome.org/sources"
> PTXCONF_SETUP_GNUMIRROR="https://ftp.gnu.org/gnu http://ftp.uni-kl.de/pub/gnu"
> PTXCONF_SETUP_KERNELMIRROR="https://www.kernel.org/pub/linux http://www.linux-mips.org/pub/linux/mips http://mirror.linux.org.au/linux"
> PTXCONF_SETUP_PYPIMIRROR="https://files.pythonhosted.org/packages/source"
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] atkmm: use GNOME mirror
2020-10-06 14:16 ` [ptxdist] [PATCH 04/29] atkmm: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as e71731791354e8943b7f95027b628e7210e99f25.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:30 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006141640.GE1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/atkmm.make b/rules/atkmm.make
> index 0234c819a500..6ece656f70d4 100644
> --- a/rules/atkmm.make
> +++ b/rules/atkmm.make
> @@ -18,7 +18,7 @@ ATKMM_VERSION := 2.22.6
> ATKMM_MD5 := 7c35324dd3c081a385deb7523ed6f287
> ATKMM := atkmm-$(ATKMM_VERSION)
> ATKMM_SUFFIX := tar.bz2
> -ATKMM_URL := http://ftp.gnome.org/pub/GNOME/sources/atkmm/2.22/$(ATKMM).$(ATKMM_SUFFIX)
> +ATKMM_URL := $(call ptx/mirror, GNOME, atkmm/$(basename $(ATKMM_VERSION))/$(ATKMM).$(ATKMM_SUFFIX))
> ATKMM_SOURCE := $(SRCDIR)/$(ATKMM).$(ATKMM_SUFFIX)
> ATKMM_DIR := $(BUILDDIR)/$(ATKMM)
> ATKMM_LICENSE := unknown
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] gdk-pixbuf: use GNOME mirror
2020-10-06 14:17 ` [ptxdist] [PATCH 05/29] gdk-pixbuf: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 5a2b35a631643187f4197c028194def9eeb505bf.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:30 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006141707.GF1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/gdk-pixbuf.make b/rules/gdk-pixbuf.make
> index 301716b3d1db..7697570700a1 100644
> --- a/rules/gdk-pixbuf.make
> +++ b/rules/gdk-pixbuf.make
> @@ -18,7 +18,7 @@ GDK_PIXBUF_VERSION := 2.40.0
> GDK_PIXBUF_MD5 := 05eb1ebc258ba905f1c8644ef49de064
> GDK_PIXBUF := gdk-pixbuf-$(GDK_PIXBUF_VERSION)
> GDK_PIXBUF_SUFFIX := tar.xz
> -GDK_PIXBUF_URL := http://ftp.gnome.org/pub/GNOME/sources/gdk-pixbuf/$(basename $(GDK_PIXBUF_VERSION))/$(GDK_PIXBUF).$(GDK_PIXBUF_SUFFIX)
> +GDK_PIXBUF_URL := $(call ptx/mirror, GNOME, gdk-pixbuf/$(basename $(GDK_PIXBUF_VERSION))/$(GDK_PIXBUF).$(GDK_PIXBUF_SUFFIX))
> GDK_PIXBUF_SOURCE := $(SRCDIR)/$(GDK_PIXBUF).$(GDK_PIXBUF_SUFFIX)
> GDK_PIXBUF_DIR := $(BUILDDIR)/$(GDK_PIXBUF)
> GDK_PIXBUF_LICENSE := LGPL-2.0-or-later
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] glib-networking: use GNOME mirror
2020-10-06 14:19 ` [ptxdist] [PATCH 06/29] glib-networking: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 4c41b4fd8d825207a52327b29550857f53b1c938.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:31 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006141947.GG1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/glib-networking.make b/rules/glib-networking.make
> index 069675db8762..1ffdee82c1cc 100644
> --- a/rules/glib-networking.make
> +++ b/rules/glib-networking.make
> @@ -18,7 +18,7 @@ GLIB_NETWORKING_VERSION := 2.62.1
> GLIB_NETWORKING_MD5 := 64ca1e1e43e623b916059585bf7e4758
> GLIB_NETWORKING := glib-networking-$(GLIB_NETWORKING_VERSION)
> GLIB_NETWORKING_SUFFIX := tar.xz
> -GLIB_NETWORKING_URL := http://ftp.gnome.org/pub/GNOME/sources/glib-networking/$(basename $(GLIB_NETWORKING_VERSION))/$(GLIB_NETWORKING).$(GLIB_NETWORKING_SUFFIX)
> +GLIB_NETWORKING_URL := $(call ptx/mirror, GNOME, glib-networking/$(basename $(GLIB_NETWORKING_VERSION))/$(GLIB_NETWORKING).$(GLIB_NETWORKING_SUFFIX))
> GLIB_NETWORKING_SOURCE := $(SRCDIR)/$(GLIB_NETWORKING).$(GLIB_NETWORKING_SUFFIX)
> GLIB_NETWORKING_DIR := $(BUILDDIR)/$(GLIB_NETWORKING)
> GLIB_NETWORKING_LICENSE := LGPL-2.0-or-later
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] glib: use GNOME mirror
2020-10-06 14:23 ` [ptxdist] [PATCH 08/29] glib: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 4947912bf4d5617ba32eafb99f0e8d1ba56bec6f.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:32 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142315.GI1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/glib.make b/rules/glib.make
> index 17668d93c1a6..7a9aed2edddb 100644
> --- a/rules/glib.make
> +++ b/rules/glib.make
> @@ -19,11 +19,9 @@ GLIB_VERSION := 2.64.4
> GLIB_MD5 := 0a4f67e9a9d729976e2f797e36fc1a57
> GLIB := glib-$(GLIB_VERSION)
> GLIB_SUFFIX := tar.xz
> +GLIB_URL := $(call ptx/mirror, GNOME, glib/$(basename $(GLIB_VERSION))/$(GLIB).$(GLIB_SUFFIX))
> GLIB_SOURCE := $(SRCDIR)/$(GLIB).$(GLIB_SUFFIX)
> GLIB_DIR := $(BUILDDIR)/$(GLIB)
> -
> -GLIB_URL := http://ftp.gnome.org/pub/GNOME/sources/glib/$(basename $(GLIB_VERSION))/glib-$(GLIB_VERSION).$(GLIB_SUFFIX)
> -
> GLIB_LICENSE := LGPL-2.0-or-later
>
> # ----------------------------------------------------------------------------
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] glibmm: use GNOME mirror
2020-10-06 14:21 ` [ptxdist] [PATCH 07/29] glibmm: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 377d325eed091a09a04d271cf032d9e6348a7c85.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:32 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142113.GH1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/glibmm.make b/rules/glibmm.make
> index 701cfa761389..f702cbaf3d79 100644
> --- a/rules/glibmm.make
> +++ b/rules/glibmm.make
> @@ -19,7 +19,7 @@ GLIBMM_VERSION := 2.30.1
> GLIBMM_MD5 := 9b333de989287c563334faa88a11fc21
> GLIBMM := glibmm-$(GLIBMM_VERSION)
> GLIBMM_SUFFIX := tar.bz2
> -GLIBMM_URL := http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.30/$(GLIBMM).$(GLIBMM_SUFFIX)
> +GLIBMM_URL := $(call ptx/mirror, GNOME, glibmm/$(basename $(GLIBMM_VERSION))/$(GLIBMM).$(GLIBMM_SUFFIX))
> GLIBMM_SOURCE := $(SRCDIR)/$(GLIBMM).$(GLIBMM_SUFFIX)
> GLIBMM_DIR := $(BUILDDIR)/$(GLIBMM)
> GLIBMM_LICENSE := LGPL-2.1-only AND GPL-2.0-only
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] gobject-introspection: use GNOME mirror
2020-10-06 14:23 ` [ptxdist] [PATCH 09/29] gobject-introspection: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as e2ab5691b37ff763d8c8f779db58ff2162f417e8.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:33 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142338.GJ1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/gobject-introspection.make b/rules/gobject-introspection.make
> index 5d7679e61881..fda19cd1358d 100644
> --- a/rules/gobject-introspection.make
> +++ b/rules/gobject-introspection.make
> @@ -18,7 +18,7 @@ GOBJECT_INTROSPECTION_VERSION := 1.56.1
> GOBJECT_INTROSPECTION_MD5 := 62e5f5685b8d9752fdeaf17c057d53d1
> GOBJECT_INTROSPECTION := gobject-introspection-$(GOBJECT_INTROSPECTION_VERSION)
> GOBJECT_INTROSPECTION_SUFFIX := tar.xz
> -GOBJECT_INTROSPECTION_URL := http://ftp.gnome.org/pub/GNOME/sources/gobject-introspection/$(basename $(GOBJECT_INTROSPECTION_VERSION))/$(GOBJECT_INTROSPECTION).$(GOBJECT_INTROSPECTION_SUFFIX)
> +GOBJECT_INTROSPECTION_URL := $(call ptx/mirror, GNOME, gobject-introspection/$(basename $(GOBJECT_INTROSPECTION_VERSION))/$(GOBJECT_INTROSPECTION).$(GOBJECT_INTROSPECTION_SUFFIX))
> GOBJECT_INTROSPECTION_SOURCE := $(SRCDIR)/$(GOBJECT_INTROSPECTION).$(GOBJECT_INTROSPECTION_SUFFIX)
> GOBJECT_INTROSPECTION_DIR := $(BUILDDIR)/$(GOBJECT_INTROSPECTION)
> GOBJECT_INTROSPECTION_LICENSE := LGPL-2.1-or-later AND GPL-2.0-or-later
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] gtk-engines: use GNOME mirror
2020-10-06 14:24 ` [ptxdist] [PATCH 10/29] gtk-engines: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 4fd9cf9031b4279819fc9811d8fd182a0393418a.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:33 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142407.GK1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/gtk-engines.make b/rules/gtk-engines.make
> index c4ccf16bb9ce..2544c89cb930 100644
> --- a/rules/gtk-engines.make
> +++ b/rules/gtk-engines.make
> @@ -19,7 +19,7 @@ GTK_ENGINES_VERSION := 2.91.1
> GTK_ENGINES_MD5 := 290d2fdb66743066dab92db694dd7b99
> GTK_ENGINES := gtk-engines-$(GTK_ENGINES_VERSION)
> GTK_ENGINES_SUFFIX := tar.bz2
> -GTK_ENGINES_URL := http://ftp.gnome.org/pub/GNOME/sources/gtk-engines/2.91/$(GTK_ENGINES).$(GTK_ENGINES_SUFFIX)
> +GTK_ENGINES_URL := $(call ptx/mirror, GNOME, gtk-engines/$(basename $(GTK_ENGINES_VERSION))/$(GTK_ENGINES).$(GTK_ENGINES_SUFFIX))
> GTK_ENGINES_SOURCE := $(SRCDIR)/$(GTK_ENGINES).$(GTK_ENGINES_SUFFIX)
> GTK_ENGINES_DIR := $(BUILDDIR)/$(GTK_ENGINES)
>
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] gtk: use GNOME mirror
2020-10-06 14:24 ` [ptxdist] [PATCH 11/29] gtk: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as d22ee14fe9cc9c246d9b2c1990863f82a7d5300b.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:34 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142435.GL1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/gtk.make b/rules/gtk.make
> index c138870f8438..252540511a72 100644
> --- a/rules/gtk.make
> +++ b/rules/gtk.make
> @@ -18,7 +18,7 @@ GTK_VERSION := 3.24.21
> GTK_MD5 := 95afed6c860d27de827db66434d681da
> GTK := gtk+-$(GTK_VERSION)
> GTK_SUFFIX := tar.xz
> -GTK_URL := https://download.gnome.org/sources/gtk+/$(basename $(GTK_VERSION))/$(GTK).$(GTK_SUFFIX)
> +GTK_URL := $(call ptx/mirror, GNOME, gtk+/$(basename $(GTK_VERSION))/$(GTK).$(GTK_SUFFIX))
> GTK_SOURCE := $(SRCDIR)/$(GTK).$(GTK_SUFFIX)
> GTK_DIR := $(BUILDDIR)/$(GTK)
> GTK_LICENSE := LGPL-2.0-or-later
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] gtk2: use GNOME mirror
2020-10-06 14:25 ` [ptxdist] [PATCH 12/29] gtk2: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 99d537fd57d8f81da0d0ceb218abafcea205f812.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:34 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142523.GM1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/gtk2.make b/rules/gtk2.make
> index c9aa9098710d..bed71cf25cce 100644
> --- a/rules/gtk2.make
> +++ b/rules/gtk2.make
> @@ -18,7 +18,7 @@ GTK2_VERSION := 2.24.32
> GTK2_MD5 := d5742aa42275203a499b59b4c382a784
> GTK2 := gtk+-$(GTK2_VERSION)
> GTK2_SUFFIX := tar.xz
> -GTK2_URL := ftp://ftp.gnome.org/pub/gnome/sources/gtk+/2.24/$(GTK2).$(GTK2_SUFFIX)
> +GTK2_URL := $(call ptx/mirror, GNOME, gtk+/$(basename $(GTK2_VERSION))/$(GTK2).$(GTK2_SUFFIX))
> GTK2_SOURCE := $(SRCDIR)/$(GTK2).$(GTK2_SUFFIX)
> GTK2_DIR := $(BUILDDIR)/$(GTK2)
>
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] host-gtk-doc: use GNOME mirror
2020-10-06 14:25 ` [ptxdist] [PATCH 13/29] host-gtk-doc: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 980fbee530c36dc1f40d4e59bd2aa2d26105a5d7.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:35 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142548.GN1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/host-gtk-doc.make b/rules/host-gtk-doc.make
> index aef45d5d1a42..5245ee3512ec 100644
> --- a/rules/host-gtk-doc.make
> +++ b/rules/host-gtk-doc.make
> @@ -18,7 +18,7 @@ HOST_GTK_DOC_VERSION := 1.13
> HOST_GTK_DOC_MD5 := 27940d6cd5c9dcda8fc003043d8c299a
> HOST_GTK_DOC := gtk-doc-$(HOST_GTK_DOC_VERSION)
> HOST_GTK_DOC_SUFFIX := tar.bz2
> -HOST_GTK_DOC_URL := http://ftp.gnome.org/pub/GNOME/sources/gtk-doc/$(HOST_GTK_DOC_VERSION)/$(HOST_GTK_DOC).$(HOST_GTK_DOC_SUFFIX)
> +HOST_GTK_DOC_URL := $(call ptx/mirror, GNOME, gtk-doc/$(HOST_GTK_DOC_VERSION)/$(HOST_GTK_DOC).$(HOST_GTK_DOC_SUFFIX))
> HOST_GTK_DOC_SOURCE := $(SRCDIR)/$(HOST_GTK_DOC).$(HOST_GTK_DOC_SUFFIX)
> HOST_GTK_DOC_DIR := $(HOST_BUILDDIR)/$(HOST_GTK_DOC)
> HOST_GTK_DOC_LICENSE := GPL-3.0-only AND GFDL-1.1-only
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] json-glib: use GNOME mirror
2020-10-06 14:27 ` [ptxdist] [PATCH 14/29] json-glib: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 578245c8db914e968b5521b92b85ee40c2de4a5c.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:36 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142720.GO1489016@lenoch>
> [mol: fix URL 'glib/' -> 'json-glib/']
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/json-glib.make b/rules/json-glib.make
> index 496e0b7f7c9c..97546e511696 100644
> --- a/rules/json-glib.make
> +++ b/rules/json-glib.make
> @@ -18,7 +18,7 @@ JSON_GLIB_VERSION := 1.2.8
> JSON_GLIB_MD5 := ff31e7d0594df44318e12facda3d086e
> JSON_GLIB := json-glib-$(JSON_GLIB_VERSION)
> JSON_GLIB_SUFFIX := tar.xz
> -JSON_GLIB_URL := http://ftp.gnome.org/pub/GNOME/sources/json-glib/1.2/$(JSON_GLIB).$(JSON_GLIB_SUFFIX)
> +JSON_GLIB_URL := $(call ptx/mirror, GNOME, json-glib/$(basename $(JSON_GLIB_VERSION))/$(JSON_GLIB).$(JSON_GLIB_SUFFIX))
> JSON_GLIB_SOURCE := $(SRCDIR)/$(JSON_GLIB).$(JSON_GLIB_SUFFIX)
> JSON_GLIB_DIR := $(BUILDDIR)/$(JSON_GLIB)
> JSON_GLIB_LICENSE := LGPL-2.1-only
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] libcroco: use GNOME mirror
2020-10-06 14:27 ` [ptxdist] [PATCH 15/29] libcroco: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 5f4bd6e8963387486cde6684e3a77fbbe306efc3.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:36 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142746.GP1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libcroco.make b/rules/libcroco.make
> index c95572ebb917..74d9b31e5b20 100644
> --- a/rules/libcroco.make
> +++ b/rules/libcroco.make
> @@ -19,7 +19,7 @@ LIBCROCO_VERSION := 0.6.2
> LIBCROCO_MD5 := 1429c597aa4b75fc610ab3a542c99209
> LIBCROCO := libcroco-$(LIBCROCO_VERSION)
> LIBCROCO_SUFFIX := tar.bz2
> -LIBCROCO_URL := http://ftp.gnome.org/pub/GNOME/sources/libcroco/0.6/$(LIBCROCO).$(LIBCROCO_SUFFIX)
> +LIBCROCO_URL := $(call ptx/mirror, GNOME, libcroco/$(basename $(LIBCROCO_VERSION))/$(LIBCROCO).$(LIBCROCO_SUFFIX))
> LIBCROCO_SOURCE := $(SRCDIR)/$(LIBCROCO).$(LIBCROCO_SUFFIX)
> LIBCROCO_DIR := $(BUILDDIR)/$(LIBCROCO)
> LIBCROCO_LICENSE := LGPL-2.1-only
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] libgsf: use GNOME mirror
2020-10-06 14:28 ` [ptxdist] [PATCH 17/29] libgsf: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as d0960bc54d62c6d6b2fc6036c354e3fdb1e0bc83.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:37 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142849.GR1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libgsf.make b/rules/libgsf.make
> index bd956a381026..871ce23571f0 100644
> --- a/rules/libgsf.make
> +++ b/rules/libgsf.make
> @@ -18,7 +18,7 @@ LIBGSF_VERSION := 1.14.30
> LIBGSF_MD5 := e7b672ef37ef6a853ce149c03e4d3a63
> LIBGSF := libgsf-$(LIBGSF_VERSION)
> LIBGSF_SUFFIX := tar.xz
> -LIBGSF_URL := http://ftp.gnome.org/pub/GNOME/sources/libgsf/1.14/$(LIBGSF).$(LIBGSF_SUFFIX)
> +LIBGSF_URL := $(call ptx/mirror, GNOME, libgsf/$(basename $(LIBGSF_VERSION))/$(LIBGSF).$(LIBGSF_SUFFIX))
> LIBGSF_SOURCE := $(SRCDIR)/$(LIBGSF).$(LIBGSF_SUFFIX)
> LIBGSF_DIR := $(BUILDDIR)/$(LIBGSF)
>
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] libgee: use GNOME mirror
2020-10-06 14:28 ` [ptxdist] [PATCH 16/29] libgee: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 7aa6f99ad087d5662d5a867938e958fc8cdbf92b.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:37 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142816.GQ1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libgee.make b/rules/libgee.make
> index f0ddd3525e07..30afb569a5e2 100644
> --- a/rules/libgee.make
> +++ b/rules/libgee.make
> @@ -18,7 +18,7 @@ LIBGEE_VERSION := 0.5.1
> LIBGEE_MD5 := 59789b5b266beadfb8b51bf2c96211b3
> LIBGEE := libgee-$(LIBGEE_VERSION)
> LIBGEE_SUFFIX := tar.bz2
> -LIBGEE_URL := http://download.gnome.org/sources/libgee/0.5/$(LIBGEE).$(LIBGEE_SUFFIX)
> +LIBGEE_URL := $(call ptx/mirror, GNOME, libgee/$(basename $(LIBGEE_VERSION))/$(LIBGEE).$(LIBGEE_SUFFIX))
> LIBGEE_SOURCE := $(SRCDIR)/$(LIBGEE).$(LIBGEE_SUFFIX)
> LIBGEE_DIR := $(BUILDDIR)/$(LIBGEE)
> LIBGEE_LICENSE := LGPL-2.1-or-later
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] libgudev: use GNOME mirror
2020-10-06 14:29 ` [ptxdist] [PATCH 18/29] libgudev: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 2cdb2eee6bd648879987e5415c6bf2a465e75fb5.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:38 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142911.GS1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libgudev.make b/rules/libgudev.make
> index a1cdab3e6364..637ea662dc07 100644
> --- a/rules/libgudev.make
> +++ b/rules/libgudev.make
> @@ -18,7 +18,7 @@ LIBGUDEV_VERSION := 230
> LIBGUDEV_MD5 := e4dee8f3f349e9372213d33887819a4d
> LIBGUDEV := libgudev-$(LIBGUDEV_VERSION)
> LIBGUDEV_SUFFIX := tar.xz
> -LIBGUDEV_URL := https://download.gnome.org/sources/libgudev/$(LIBGUDEV_VERSION)/$(LIBGUDEV).$(LIBGUDEV_SUFFIX)
> +LIBGUDEV_URL := $(call ptx/mirror, GNOME, libgudev/$(LIBGUDEV_VERSION)/$(LIBGUDEV).$(LIBGUDEV_SUFFIX))
> LIBGUDEV_SOURCE := $(SRCDIR)/$(LIBGUDEV).$(LIBGUDEV_SUFFIX)
> LIBGUDEV_DIR := $(BUILDDIR)/$(LIBGUDEV)
> LIBGUDEV_LICENSE := LGPL-2.1-or-later
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] librsvg: use GNOME mirror
2020-10-06 14:29 ` [ptxdist] [PATCH 19/29] librsvg: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as e5c804c51f3b8b88744bbd98d580cbeead15fa6c.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:38 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142930.GT1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/librsvg.make b/rules/librsvg.make
> index aaf2e5d99824..af2cece09ac6 100644
> --- a/rules/librsvg.make
> +++ b/rules/librsvg.make
> @@ -19,7 +19,7 @@ LIBRSVG_VERSION := 2.26.3
> LIBRSVG_MD5 := 8df68c2c02cdf2a96a92b43bf737bf9c
> LIBRSVG := librsvg-$(LIBRSVG_VERSION)
> LIBRSVG_SUFFIX := tar.bz2
> -LIBRSVG_URL := http://ftp.gnome.org/pub/GNOME/sources/librsvg/2.26/$(LIBRSVG).$(LIBRSVG_SUFFIX)
> +LIBRSVG_URL := $(call ptx/mirror, GNOME, librsvg/$(basename $(LIBRSVG_VERSION))/$(LIBRSVG).$(LIBRSVG_SUFFIX))
> LIBRSVG_SOURCE := $(SRCDIR)/$(LIBRSVG).$(LIBRSVG_SUFFIX)
> LIBRSVG_DIR := $(BUILDDIR)/$(LIBRSVG)
>
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] libsigcpp: use GNOME mirror
2020-10-06 14:29 ` [ptxdist] [PATCH 20/29] libsigcpp: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as b76265e6d87f59bf699c415c92b1b9d633527f76.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:39 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006142953.GU1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libsigcpp.make b/rules/libsigcpp.make
> index b11d36f6afff..d27521b84009 100644
> --- a/rules/libsigcpp.make
> +++ b/rules/libsigcpp.make
> @@ -19,7 +19,7 @@ LIBSIGCPP_VERSION := 2.2.10
> LIBSIGCPP_MD5 := 6d350ae0bc17b8915a06ce6b7e4240e8
> LIBSIGCPP := libsigc++-$(LIBSIGCPP_VERSION)
> LIBSIGCPP_SUFFIX := tar.bz2
> -LIBSIGCPP_URL := http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.2/$(LIBSIGCPP).$(LIBSIGCPP_SUFFIX)
> +LIBSIGCPP_URL := $(call ptx/mirror, GNOME, libsigc++/$(basename $(LIBSIGCPP_VERSION))/$(LIBSIGCPP).$(LIBSIGCPP_SUFFIX))
> LIBSIGCPP_SOURCE := $(SRCDIR)/$(LIBSIGCPP).$(LIBSIGCPP_SUFFIX)
> LIBSIGCPP_DIR := $(BUILDDIR)/$(LIBSIGCPP)
>
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] mobile-broadband-provider-info: use GNOME mirror
2020-10-06 16:41 ` [ptxdist] [PATCH v2 " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 3d36bd76d628a8704bf053caeea3865e82a8669f.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:40 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006164146.GA1632775@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/mobile-broadband-provider-info.make b/rules/mobile-broadband-provider-info.make
> index 6c58032893f4..f5adb6a5cfcd 100644
> --- a/rules/mobile-broadband-provider-info.make
> +++ b/rules/mobile-broadband-provider-info.make
> @@ -15,10 +15,10 @@ PACKAGES-$(PTXCONF_MOBILE_BROADBAND_PROVIDER_INFO) += mobile-broadband-provider-
> # Paths and names
> #
> MOBILE_BROADBAND_PROVIDER_INFO_VERSION := 20190618
> -MOBILE_BROADBAND_PROVIDER_INFO_MD5 := 1ca66a989e6b3d788f69bd299249b74a
> +MOBILE_BROADBAND_PROVIDER_INFO_MD5 := ffd3ade88953ce3cac9e548949745609
> MOBILE_BROADBAND_PROVIDER_INFO := mobile-broadband-provider-info-$(MOBILE_BROADBAND_PROVIDER_INFO_VERSION)
> -MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX := tar.bz2
> -MOBILE_BROADBAND_PROVIDER_INFO_URL := https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info/-/archive/$(MOBILE_BROADBAND_PROVIDER_INFO_VERSION)/$(MOBILE_BROADBAND_PROVIDER_INFO).$(MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX)
> +MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX := tar.xz
> +MOBILE_BROADBAND_PROVIDER_INFO_URL := $(call ptx/mirror, GNOME, mobile-broadband-provider-info/$(MOBILE_BROADBAND_PROVIDER_INFO_VERSION)/$(MOBILE_BROADBAND_PROVIDER_INFO).$(MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX))
> MOBILE_BROADBAND_PROVIDER_INFO_SOURCE := $(SRCDIR)/$(MOBILE_BROADBAND_PROVIDER_INFO).$(MOBILE_BROADBAND_PROVIDER_INFO_SUFFIX)
> MOBILE_BROADBAND_PROVIDER_INFO_DIR := $(BUILDDIR)/$(MOBILE_BROADBAND_PROVIDER_INFO)
> MOBILE_BROADBAND_PROVIDER_INFO_LICENSE := public_domain
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] libsoup: use GNOME mirror
2020-10-06 14:30 ` [ptxdist] [PATCH 21/29] libsoup: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as f0d7423b7f6a30c66b776882586e2fc865380450.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:39 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006143022.GV1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/libsoup.make b/rules/libsoup.make
> index a40ad7f5809b..4a9da41f4c6b 100644
> --- a/rules/libsoup.make
> +++ b/rules/libsoup.make
> @@ -18,7 +18,7 @@ LIBSOUP_VERSION := 2.66.2
> LIBSOUP_MD5 := 66c2ae89d6031b01337d78a2c57c75d5
> LIBSOUP := libsoup-$(LIBSOUP_VERSION)
> LIBSOUP_SUFFIX := tar.xz
> -LIBSOUP_URL := http://ftp.gnome.org/pub/GNOME/sources/libsoup/$(basename $(LIBSOUP_VERSION))/$(LIBSOUP).$(LIBSOUP_SUFFIX)
> +LIBSOUP_URL := $(call ptx/mirror, GNOME, libsoup/$(basename $(LIBSOUP_VERSION))/$(LIBSOUP).$(LIBSOUP_SUFFIX))
> LIBSOUP_SOURCE := $(SRCDIR)/$(LIBSOUP).$(LIBSOUP_SUFFIX)
> LIBSOUP_DIR := $(BUILDDIR)/$(LIBSOUP)
> LIBSOUP_LICENSE := LGPL-2.1-only
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] networkmanager-openvpn: use GNOME mirror
2020-10-06 14:31 ` [ptxdist] [PATCH 24/29] networkmanager-openvpn: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as e8f3f8af898dbe17dd3cf6158683cb974e8b5f67.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:41 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006143136.GY1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/networkmanager-openvpn.make b/rules/networkmanager-openvpn.make
> index 3bea763792f6..69d4fb556644 100644
> --- a/rules/networkmanager-openvpn.make
> +++ b/rules/networkmanager-openvpn.make
> @@ -18,7 +18,7 @@ NETWORKMANAGER_OPENVPN_VERSION := 1.8.12
> NETWORKMANAGER_OPENVPN_MD5 := e8b1210011ece18d0278310fbff45af5
> NETWORKMANAGER_OPENVPN := NetworkManager-openvpn-$(NETWORKMANAGER_OPENVPN_VERSION)
> NETWORKMANAGER_OPENVPN_SUFFIX := tar.xz
> -NETWORKMANAGER_OPENVPN_URL := https://ftp.gnome.org/pub/GNOME/sources/NetworkManager-openvpn/$(basename $(NETWORKMANAGER_OPENVPN_VERSION))/$(NETWORKMANAGER_OPENVPN).$(NETWORKMANAGER_OPENVPN_SUFFIX)
> +NETWORKMANAGER_OPENVPN_URL := $(call ptx/mirror, GNOME, NetworkManager-openvpn/$(basename $(NETWORKMANAGER_OPENVPN_VERSION))/$(NETWORKMANAGER_OPENVPN).$(NETWORKMANAGER_OPENVPN_SUFFIX))
> NETWORKMANAGER_OPENVPN_SOURCE := $(SRCDIR)/$(NETWORKMANAGER_OPENVPN).$(NETWORKMANAGER_OPENVPN_SUFFIX)
> NETWORKMANAGER_OPENVPN_DIR := $(BUILDDIR)/$(NETWORKMANAGER_OPENVPN)
> NETWORKMANAGER_OPENVPN_LICENSE := GPL-2.0-or-later
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] networkmanager-fortisslvpn: use GNOME mirror
2020-10-06 14:31 ` [ptxdist] [PATCH 23/29] networkmanager-fortisslvpn: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as fe333cee5d8a590d0cc207879dfcd417349b0a79.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:41 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006143107.GX1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/networkmanager-fortisslvpn.make b/rules/networkmanager-fortisslvpn.make
> index e5f538f3c3f8..196d6aa5ed8b 100644
> --- a/rules/networkmanager-fortisslvpn.make
> +++ b/rules/networkmanager-fortisslvpn.make
> @@ -18,7 +18,7 @@ NETWORKMANAGER_FORTISSLVPN_VERSION := 1.2.10
> NETWORKMANAGER_FORTISSLVPN_MD5 := 4a4bc3aae826623620c2090753a7acee
> NETWORKMANAGER_FORTISSLVPN := NetworkManager-fortisslvpn-$(NETWORKMANAGER_FORTISSLVPN_VERSION)
> NETWORKMANAGER_FORTISSLVPN_SUFFIX := tar.xz
> -NETWORKMANAGER_FORTISSLVPN_URL := https://ftp.gnome.org/pub/GNOME/sources/NetworkManager-fortisslvpn/$(basename $(NETWORKMANAGER_FORTISSLVPN_VERSION))/$(NETWORKMANAGER_FORTISSLVPN).$(NETWORKMANAGER_FORTISSLVPN_SUFFIX)
> +NETWORKMANAGER_FORTISSLVPN_URL := $(call ptx/mirror, GNOME, NetworkManager-fortisslvpn/$(basename $(NETWORKMANAGER_FORTISSLVPN_VERSION))/$(NETWORKMANAGER_FORTISSLVPN).$(NETWORKMANAGER_FORTISSLVPN_SUFFIX))
> NETWORKMANAGER_FORTISSLVPN_SOURCE := $(SRCDIR)/$(NETWORKMANAGER_FORTISSLVPN).$(NETWORKMANAGER_FORTISSLVPN_SUFFIX)
> NETWORKMANAGER_FORTISSLVPN_DIR := $(BUILDDIR)/$(NETWORKMANAGER_FORTISSLVPN)
> NETWORKMANAGER_FORTISSLVPN_LICENSE := GPL-2.0-or-later
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] networkmanager: use GNOME mirror
2020-10-06 14:32 ` [ptxdist] [PATCH 25/29] networkmanager: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 54ae661468f095250377b73003ea40cdbc25e06d.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:42 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006143202.GZ1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/networkmanager.make b/rules/networkmanager.make
> index 26225e0b0e8b..8e89a11e7c2f 100644
> --- a/rules/networkmanager.make
> +++ b/rules/networkmanager.make
> @@ -19,7 +19,7 @@ NETWORKMANAGER_VERSION := 1.26.2
> NETWORKMANAGER_MD5 := ad5332a7fe5d00db7c75b722337be62b
> NETWORKMANAGER := NetworkManager-$(NETWORKMANAGER_VERSION)
> NETWORKMANAGER_SUFFIX := tar.xz
> -NETWORKMANAGER_URL := https://ftp.gnome.org/pub/GNOME/sources/NetworkManager/$(basename $(NETWORKMANAGER_VERSION))/$(NETWORKMANAGER).$(NETWORKMANAGER_SUFFIX)
> +NETWORKMANAGER_URL := $(call ptx/mirror, GNOME, NetworkManager/$(basename $(NETWORKMANAGER_VERSION))/$(NETWORKMANAGER).$(NETWORKMANAGER_SUFFIX))
> NETWORKMANAGER_SOURCE := $(SRCDIR)/$(NETWORKMANAGER).$(NETWORKMANAGER_SUFFIX)
> NETWORKMANAGER_DIR := $(BUILDDIR)/$(NETWORKMANAGER)
> NETWORKMANAGER_LICENSE := GPL-2.0-or-later AND LGPL-2.0-or-later
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] pango: use GNOME mirror
2020-10-06 14:32 ` [ptxdist] [PATCH 26/29] pango: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as d68e9631ad6f6a014edb9cf56be8b87c136b03ba.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:42 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006143228.GA1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/pango.make b/rules/pango.make
> index e6deb92c9eaf..3421eff56f11 100644
> --- a/rules/pango.make
> +++ b/rules/pango.make
> @@ -20,7 +20,7 @@ PANGO_VERSION := 1.43.0
> PANGO_MD5 := 2df040d3f6a4ed9bc316a70b35adcd8b
> PANGO := pango-$(PANGO_VERSION)
> PANGO_SUFFIX := tar.xz
> -PANGO_URL := http://ftp.gnome.org/pub/GNOME/sources/pango/$(basename $(PANGO_VERSION))/$(PANGO).$(PANGO_SUFFIX)
> +PANGO_URL := $(call ptx/mirror, GNOME, pango/$(basename $(PANGO_VERSION))/$(PANGO).$(PANGO_SUFFIX))
> PANGO_SOURCE := $(SRCDIR)/$(PANGO).$(PANGO_SUFFIX)
> PANGO_DIR := $(BUILDDIR)/$(PANGO)
> PANGO_LICENSE := LGPL-2.0-or-later
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] python3-gi: use GNOME mirror
2020-10-06 14:33 ` [ptxdist] [PATCH 28/29] python3-gi: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as d98f46a62b82d2ca0874d65ed64eb1300523e4ba.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:43 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006143348.GC1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/python3-gi.make b/rules/python3-gi.make
> index e65a60bdcdcf..969b6445eab7 100644
> --- a/rules/python3-gi.make
> +++ b/rules/python3-gi.make
> @@ -18,7 +18,7 @@ PYTHON3_GI_VERSION := 3.28.3
> PYTHON3_GI_MD5 := 3bac63c86bb963aa401f97859464aa90
> PYTHON3_GI := pygobject-$(PYTHON3_GI_VERSION)
> PYTHON3_GI_SUFFIX := tar.xz
> -PYTHON3_GI_URL := http://ftp.gnome.org/pub/GNOME/sources/pygobject/$(basename $(PYTHON3_GI_VERSION))/$(PYTHON3_GI).$(PYTHON3_GI_SUFFIX)
> +PYTHON3_GI_URL := $(call ptx/mirror, GNOME, pygobject/$(basename $(PYTHON3_GI_VERSION))/$(PYTHON3_GI).$(PYTHON3_GI_SUFFIX))
> PYTHON3_GI_SOURCE := $(SRCDIR)/$(PYTHON3_GI).$(PYTHON3_GI_SUFFIX)
> PYTHON3_GI_DIR := $(BUILDDIR)/$(PYTHON3_GI)
> PYTHON3_GI_LICENSE := LGPL-2.1-or-later
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] pygobject: use GNOME mirror
2020-10-06 14:33 ` [ptxdist] [PATCH 27/29] pygobject: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 3e090bf6c92f95225b1cebbc46b7b3bb0645a69e.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:43 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006143326.GB1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/pygobject.make b/rules/pygobject.make
> index d81b86eb929b..711593bbf08b 100644
> --- a/rules/pygobject.make
> +++ b/rules/pygobject.make
> @@ -18,7 +18,7 @@ PYGOBJECT_VERSION := 2.21.5
> PYGOBJECT_MD5 := ef1ef7def7faa407c07b4bbd6d068ff2
> PYGOBJECT := pygobject-$(PYGOBJECT_VERSION)
> PYGOBJECT_SUFFIX := tar.gz
> -PYGOBJECT_URL := http://ftp.gnome.org/pub/GNOME/sources/pygobject/$(basename $(PYGOBJECT_VERSION))/$(PYGOBJECT).$(PYGOBJECT_SUFFIX)
> +PYGOBJECT_URL := $(call ptx/mirror, GNOME, pygobject/$(basename $(PYGOBJECT_VERSION))/$(PYGOBJECT).$(PYGOBJECT_SUFFIX))
> PYGOBJECT_SOURCE := $(SRCDIR)/$(PYGOBJECT).$(PYGOBJECT_SUFFIX)
> PYGOBJECT_DIR := $(BUILDDIR)/$(PYGOBJECT)
> PYGOBJECT_LICENSE := LGPL-2.1-or-later
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
* Re: [ptxdist] [APPLIED] xorg-font-ttf-bitstream-vera: use GNOME mirror
2020-10-06 14:34 ` [ptxdist] [PATCH 29/29] xorg-font-ttf-bitstream-vera: " Ladislav Michl
@ 2020-10-14 10:30 ` Michael Olbrich
0 siblings, 0 replies; 72+ messages in thread
From: Michael Olbrich @ 2020-10-14 10:30 UTC (permalink / raw)
To: ptxdist
Thanks, applied as 1968b9757b582686cf7bf2fb4297a78f2ae0ad12.
Michael
[sent from post-receive hook]
On Wed, 14 Oct 2020 12:30:44 +0200, Ladislav Michl <ladis@linux-mips.org> wrote:
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> Message-Id: <20201006143415.GD1489016@lenoch>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/rules/xorg-font-ttf-bitstream-vera.make b/rules/xorg-font-ttf-bitstream-vera.make
> index f693a21cea0c..e711859be0b3 100644
> --- a/rules/xorg-font-ttf-bitstream-vera.make
> +++ b/rules/xorg-font-ttf-bitstream-vera.make
> @@ -20,7 +20,7 @@ XORG_FONT_TTF_BITSTREAM_VERA_VERSION := 1.10
> XORG_FONT_TTF_BITSTREAM_VERA_MD5 := bb22bd5b4675f5dbe17c6963d8c00ed6
> XORG_FONT_TTF_BITSTREAM_VERA := ttf-bitstream-vera-$(XORG_FONT_TTF_BITSTREAM_VERA_VERSION)
> XORG_FONT_TTF_BITSTREAM_VERA_SUFFIX := tar.bz2
> -XORG_FONT_TTF_BITSTREAM_VERA_URL := http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/$(XORG_FONT_TTF_BITSTREAM_VERA_VERSION)/$(XORG_FONT_TTF_BITSTREAM_VERA).$(XORG_FONT_TTF_BITSTREAM_VERA_SUFFIX)
> +XORG_FONT_TTF_BITSTREAM_VERA_URL := $(call ptx/mirror, GNOME, ttf-bitstream-vera/$(XORG_FONT_TTF_BITSTREAM_VERA_VERSION)/$(XORG_FONT_TTF_BITSTREAM_VERA).$(XORG_FONT_TTF_BITSTREAM_VERA_SUFFIX))
> XORG_FONT_TTF_BITSTREAM_VERA_SOURCE := $(SRCDIR)/$(XORG_FONT_TTF_BITSTREAM_VERA).$(XORG_FONT_TTF_BITSTREAM_VERA_SUFFIX)
> XORG_FONT_TTF_BITSTREAM_VERA_DIR := $(BUILDDIR)/$(XORG_FONT_TTF_BITSTREAM_VERA)
> XORG_FONT_TTF_BITSTREAM_VERA_LICENSE := Bitstream-Vera
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 72+ messages in thread
end of thread, other threads:[~2020-10-14 10:30 UTC | newest]
Thread overview: 72+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-06 14:11 [ptxdist] [PATCH 00/29] introduce GNOME mirror Ladislav Michl
2020-10-06 14:12 ` [ptxdist] [PATCH 01/29] setup: sort mirrors alphabetically Ladislav Michl
2020-10-06 15:50 ` Alexander Dahl
2020-10-07 7:24 ` Michael Olbrich
2020-10-07 8:21 ` Ladislav Michl
2020-10-07 15:40 ` [ptxdist] [PATCH v2 " Ladislav Michl
2020-10-09 12:59 ` Roland Hieber
2020-10-09 13:15 ` Michael Olbrich
2020-10-09 21:11 ` Ladislav Michl
2020-10-10 13:20 ` Roland Hieber
2020-10-09 21:14 ` [ptxdist] [PATCH v3 " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:13 ` [ptxdist] [PATCH 02/29] setup: introduce GNOME mirror Ladislav Michl
2020-10-07 13:12 ` Roland Hieber
2020-10-07 15:40 ` [ptxdist] [PATCH v2 " Ladislav Michl
2020-10-09 21:16 ` [ptxdist] [PATCH v3 " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:13 ` [ptxdist] [PATCH 03/29] atk: use " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:16 ` [ptxdist] [PATCH 04/29] atkmm: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:17 ` [ptxdist] [PATCH 05/29] gdk-pixbuf: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:19 ` [ptxdist] [PATCH 06/29] glib-networking: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:21 ` [ptxdist] [PATCH 07/29] glibmm: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:23 ` [ptxdist] [PATCH 08/29] glib: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:23 ` [ptxdist] [PATCH 09/29] gobject-introspection: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:24 ` [ptxdist] [PATCH 10/29] gtk-engines: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:24 ` [ptxdist] [PATCH 11/29] gtk: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:25 ` [ptxdist] [PATCH 12/29] gtk2: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:25 ` [ptxdist] [PATCH 13/29] host-gtk-doc: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:27 ` [ptxdist] [PATCH 14/29] json-glib: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:27 ` [ptxdist] [PATCH 15/29] libcroco: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:28 ` [ptxdist] [PATCH 16/29] libgee: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:28 ` [ptxdist] [PATCH 17/29] libgsf: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:29 ` [ptxdist] [PATCH 18/29] libgudev: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:29 ` [ptxdist] [PATCH 19/29] librsvg: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:29 ` [ptxdist] [PATCH 20/29] libsigcpp: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:30 ` [ptxdist] [PATCH 21/29] libsoup: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:30 ` [ptxdist] [PATCH 22/29] mobile-broadband-provider-info: " Ladislav Michl
2020-10-06 16:41 ` [ptxdist] [PATCH v2 " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:31 ` [ptxdist] [PATCH 23/29] networkmanager-fortisslvpn: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:31 ` [ptxdist] [PATCH 24/29] networkmanager-openvpn: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:32 ` [ptxdist] [PATCH 25/29] networkmanager: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:32 ` [ptxdist] [PATCH 26/29] pango: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:33 ` [ptxdist] [PATCH 27/29] pygobject: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:33 ` [ptxdist] [PATCH 28/29] python3-gi: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
2020-10-06 14:34 ` [ptxdist] [PATCH 29/29] xorg-font-ttf-bitstream-vera: " Ladislav Michl
2020-10-14 10:30 ` [ptxdist] [APPLIED] " Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox