* [PATCH v3] mirrors.bbclass: Add mirror site for savannah
@ 2014-04-25 5:16 Changhyeok Bae
2014-04-25 12:42 ` Martin Jansa
0 siblings, 1 reply; 4+ messages in thread
From: Changhyeok Bae @ 2014-04-25 5:16 UTC (permalink / raw)
To: openembedded-core
* The SRC_URI is not accessible.
So need to add mirror site referred by the original site.
* The problem is that
http://download.savannah.nongnu.org/releases and
http://download.savannah.gnu.org/releases redirects to closest mirror
and few mirrors (e.g. .jp) weren't working correctly while
http://download-mirror.savannah.gnu.org/releases/ seems to be reliable.
* Add SAVANNAH_GNU_MIRROR & SAVANNAH_NONGNU_MIRROR variable in bitbake.conf.
* Change the SRC_URI using the new variable.
Signed-off-by: Changhyeok Bae <changhyeok.bae@lge.com>
---
meta/classes/mirrors.bbclass | 2 ++
meta/conf/bitbake.conf | 2 ++
meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb | 2 +-
meta/recipes-devtools/dmidecode/dmidecode_2.12.bb | 2 +-
meta/recipes-devtools/quilt/quilt-0.61.inc | 2 +-
meta/recipes-extended/ed/ed_0.5.bb | 2 +-
meta/recipes-extended/texi2html/texi2html_5.0.bb | 2 +-
meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb | 2 +-
meta/recipes-support/attr/acl.inc | 2 +-
meta/recipes-support/attr/attr.inc | 2 +-
10 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/meta/classes/mirrors.bbclass b/meta/classes/mirrors.bbclass
index 1fd7cd8..5c5f8b6 100644
--- a/meta/classes/mirrors.bbclass
+++ b/meta/classes/mirrors.bbclass
@@ -45,6 +45,8 @@ ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://sunsite.ualberta.ca/pub/M
ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://the.wiretapped.net/pub/security/host-security/lsof/ \n \
http://www.apache.org/dist http://archive.apache.org/dist \n \
http://downloads.sourceforge.net/watchdog/ http://fossies.org/linux/misc/ \n \
+${SAVANNAH_GNU_MIRROR} http://download-mirror.savannah.gnu.org/releases \n \
+${SAVANNAH_NONGNU_MIRROR} http://download-mirror.savannah.gnu.org/releases \n \
cvs://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
svn://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index b3786a7..4a08fac 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -568,6 +568,8 @@ KERNELORG_MIRROR = "http://kernel.org/pub"
SOURCEFORGE_MIRROR = "http://downloads.sourceforge.net"
XLIBS_MIRROR = "http://xlibs.freedesktop.org/release"
XORG_MIRROR = "http://xorg.freedesktop.org/releases"
+SAVANNAH_GNU_MIRROR = "http://download.savannah.gnu.org/releases"
+SAVANNAH_NONGNU_MIRROR = "http://download.savannah.nongnu.org/releases"
# You can use the mirror of your country to get faster downloads by putting
# export DEBIAN_MIRROR = "ftp://ftp.de.debian.org/debian/pool"
diff --git a/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb b/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
index 34e0a54..3080c08 100644
--- a/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
+++ b/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
@@ -9,7 +9,7 @@ PR = "r13"
RDEPENDS_${PN} = "${PN}-inittab"
-SRC_URI = "http://download.savannah.gnu.org/releases-noredirect/sysvinit/sysvinit-${PV}.tar.bz2 \
+SRC_URI = "${SAVANNAH_GNU_MIRROR}/sysvinit/sysvinit-${PV}.tar.bz2 \
file://install.patch \
file://crypt-lib.patch \
file://pidof-add-m-option.patch \
diff --git a/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb b/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
index 61779fe..3e3a350 100644
--- a/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
+++ b/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.nongnu.org/dmidecode/"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://LICENSE;md5=393a5ca445f6965873eca0259a17f833"
-SRC_URI = "http://savannah.nongnu.org/download/dmidecode/${BP}.tar.bz2"
+SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/dmidecode/${BP}.tar.bz2"
COMPATIBLE_HOST = "(i.86|x86_64|aarch64|arm|powerpc).*-linux"
diff --git a/meta/recipes-devtools/quilt/quilt-0.61.inc b/meta/recipes-devtools/quilt/quilt-0.61.inc
index 4d915bf..9ae4377 100644
--- a/meta/recipes-devtools/quilt/quilt-0.61.inc
+++ b/meta/recipes-devtools/quilt/quilt-0.61.inc
@@ -4,7 +4,7 @@ SECTION = "devel"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
-SRC_URI = "http://download.savannah.gnu.org/releases/quilt/quilt-${PV}.tar.gz \
+SRC_URI = "${SAVANNAH_GNU_MIRROR}/quilt/quilt-${PV}.tar.gz \
file://install.patch \
file://run-ptest \
file://Makefile \
diff --git a/meta/recipes-extended/ed/ed_0.5.bb b/meta/recipes-extended/ed/ed_0.5.bb
index a696c0c..927124c 100644
--- a/meta/recipes-extended/ed/ed_0.5.bb
+++ b/meta/recipes-extended/ed/ed_0.5.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6ddd5335ef96fb858a138230af773710 \
file://main.c;beginline=1;endline=17;md5=36d4b85e5ae9028e918d1cc775c2475e"
PR = "r2"
-SRC_URI = "http://download.savannah.gnu.org/releases-noredirect/ed/ed-${PV}.tar.bz2"
+SRC_URI = "${SAVANNAH_GNU_MIRROR}/ed/ed-${PV}.tar.bz2"
SRC_URI[md5sum] = "4ee21e9dcc9b5b6012c23038734e1632"
SRC_URI[sha256sum] = "edef2bbde0fbf0d88232782a0eded323f483a0519d6fde9a3b1809056fd35f3e"
diff --git a/meta/recipes-extended/texi2html/texi2html_5.0.bb b/meta/recipes-extended/texi2html/texi2html_5.0.bb
index a22b981..86cbc58 100644
--- a/meta/recipes-extended/texi2html/texi2html_5.0.bb
+++ b/meta/recipes-extended/texi2html/texi2html_5.0.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
PR = "r2"
-SRC_URI = "http://download.savannah.gnu.org/releases/texi2html/${BPN}-${PV}.tar.bz2 \
+SRC_URI = "${SAVANNAH_GNU_MIRROR}/texi2html/${BPN}-${PV}.tar.bz2 \
file://fix_gettext_version.patch"
SRC_URI[md5sum] = "f15ac876fcdc8be865b16535f480aa54"
diff --git a/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb b/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
index f124be9..830c053 100644
--- a/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
+++ b/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
DEPENDS = "gtk+ intltool-native"
DEPENDS_append_poky = " libowl"
-SRC_URI = "http://savannah.nongnu.org/download/${BPN}/${BPN}-${PV}.tar.gz \
+SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \
file://leafpad.desktop"
SRC_URI[md5sum] = "254a72fc67505e3aa52884c729cd7b97"
diff --git a/meta/recipes-support/attr/acl.inc b/meta/recipes-support/attr/acl.inc
index 355dbdd..bc9fd6d 100644
--- a/meta/recipes-support/attr/acl.inc
+++ b/meta/recipes-support/attr/acl.inc
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://doc/COPYING;md5=c781d70ed2b4d48995b790403217a249 \
file://doc/COPYING.LGPL;md5=9e9a206917f8af112da634ce3ab41764"
DEPENDS = "attr"
-SRC_URI = "http://download.savannah.gnu.org/releases/acl/${BP}.src.tar.gz \
+SRC_URI = "${SAVANNAH_GNU_MIRROR}/acl/${BP}.src.tar.gz \
file://run-ptest \
file://acl-fix-the-order-of-expected-output-of-getfacl.patch \
"
diff --git a/meta/recipes-support/attr/attr.inc b/meta/recipes-support/attr/attr.inc
index 873c1ff..3468d0c 100644
--- a/meta/recipes-support/attr/attr.inc
+++ b/meta/recipes-support/attr/attr.inc
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://doc/COPYING;md5=2d0aa14b3fce4694e4f615e30186335f \
file://attr/attr.c;endline=17;md5=be0403261f0847e5f43ed5b08d19593c \
file://libattr/libattr.c;endline=17;md5=7970f77049f8fa1199fff62a7ab724fb"
-SRC_URI = "http://download.savannah.gnu.org/releases/attr/${BP}.src.tar.gz \
+SRC_URI = "${SAVANNAH_GNU_MIRROR}/attr/${BP}.src.tar.gz \
file://run-ptest \
"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v3] mirrors.bbclass: Add mirror site for savannah
2014-04-25 5:16 [PATCH v3] mirrors.bbclass: Add mirror site for savannah Changhyeok Bae
@ 2014-04-25 12:42 ` Martin Jansa
2014-04-25 15:21 ` Saul Wold
0 siblings, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2014-04-25 12:42 UTC (permalink / raw)
To: Changhyeok Bae; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 8725 bytes --]
On Fri, Apr 25, 2014 at 02:16:25PM +0900, Changhyeok Bae wrote:
> * The SRC_URI is not accessible.
> So need to add mirror site referred by the original site.
> * The problem is that
> http://download.savannah.nongnu.org/releases and
> http://download.savannah.gnu.org/releases redirects to closest mirror
> and few mirrors (e.g. .jp) weren't working correctly while
> http://download-mirror.savannah.gnu.org/releases/ seems to be reliable.
> * Add SAVANNAH_GNU_MIRROR & SAVANNAH_NONGNU_MIRROR variable in bitbake.conf.
> * Change the SRC_URI using the new variable.
>
> Signed-off-by: Changhyeok Bae <changhyeok.bae@lge.com>
> ---
> meta/classes/mirrors.bbclass | 2 ++
> meta/conf/bitbake.conf | 2 ++
> meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb | 2 +-
> meta/recipes-devtools/dmidecode/dmidecode_2.12.bb | 2 +-
> meta/recipes-devtools/quilt/quilt-0.61.inc | 2 +-
> meta/recipes-extended/ed/ed_0.5.bb | 2 +-
> meta/recipes-extended/texi2html/texi2html_5.0.bb | 2 +-
> meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb | 2 +-
> meta/recipes-support/attr/acl.inc | 2 +-
> meta/recipes-support/attr/attr.inc | 2 +-
> 10 files changed, 12 insertions(+), 8 deletions(-)
>
> diff --git a/meta/classes/mirrors.bbclass b/meta/classes/mirrors.bbclass
> index 1fd7cd8..5c5f8b6 100644
> --- a/meta/classes/mirrors.bbclass
> +++ b/meta/classes/mirrors.bbclass
> @@ -45,6 +45,8 @@ ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://sunsite.ualberta.ca/pub/M
> ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://the.wiretapped.net/pub/security/host-security/lsof/ \n \
> http://www.apache.org/dist http://archive.apache.org/dist \n \
> http://downloads.sourceforge.net/watchdog/ http://fossies.org/linux/misc/ \n \
> +${SAVANNAH_GNU_MIRROR} http://download-mirror.savannah.gnu.org/releases \n \
> +${SAVANNAH_NONGNU_MIRROR} http://download-mirror.savannah.gnu.org/releases \n \
Shouldn't this one point to nongnu download-mirror? Or is there only one
with both sources?
> cvs://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
> svn://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
> git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
> index b3786a7..4a08fac 100644
> --- a/meta/conf/bitbake.conf
> +++ b/meta/conf/bitbake.conf
> @@ -568,6 +568,8 @@ KERNELORG_MIRROR = "http://kernel.org/pub"
> SOURCEFORGE_MIRROR = "http://downloads.sourceforge.net"
> XLIBS_MIRROR = "http://xlibs.freedesktop.org/release"
> XORG_MIRROR = "http://xorg.freedesktop.org/releases"
> +SAVANNAH_GNU_MIRROR = "http://download.savannah.gnu.org/releases"
> +SAVANNAH_NONGNU_MIRROR = "http://download.savannah.nongnu.org/releases"
>
> # You can use the mirror of your country to get faster downloads by putting
> # export DEBIAN_MIRROR = "ftp://ftp.de.debian.org/debian/pool"
> diff --git a/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb b/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
> index 34e0a54..3080c08 100644
> --- a/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
> +++ b/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
> @@ -9,7 +9,7 @@ PR = "r13"
>
> RDEPENDS_${PN} = "${PN}-inittab"
>
> -SRC_URI = "http://download.savannah.gnu.org/releases-noredirect/sysvinit/sysvinit-${PV}.tar.bz2 \
> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/sysvinit/sysvinit-${PV}.tar.bz2 \
> file://install.patch \
> file://crypt-lib.patch \
> file://pidof-add-m-option.patch \
> diff --git a/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb b/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
> index 61779fe..3e3a350 100644
> --- a/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
> +++ b/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.nongnu.org/dmidecode/"
> LICENSE = "GPLv2"
> LIC_FILES_CHKSUM = "file://LICENSE;md5=393a5ca445f6965873eca0259a17f833"
>
> -SRC_URI = "http://savannah.nongnu.org/download/dmidecode/${BP}.tar.bz2"
> +SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/dmidecode/${BP}.tar.bz2"
>
> COMPATIBLE_HOST = "(i.86|x86_64|aarch64|arm|powerpc).*-linux"
>
> diff --git a/meta/recipes-devtools/quilt/quilt-0.61.inc b/meta/recipes-devtools/quilt/quilt-0.61.inc
> index 4d915bf..9ae4377 100644
> --- a/meta/recipes-devtools/quilt/quilt-0.61.inc
> +++ b/meta/recipes-devtools/quilt/quilt-0.61.inc
> @@ -4,7 +4,7 @@ SECTION = "devel"
> LICENSE = "GPLv2"
> LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
>
> -SRC_URI = "http://download.savannah.gnu.org/releases/quilt/quilt-${PV}.tar.gz \
> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/quilt/quilt-${PV}.tar.gz \
> file://install.patch \
> file://run-ptest \
> file://Makefile \
> diff --git a/meta/recipes-extended/ed/ed_0.5.bb b/meta/recipes-extended/ed/ed_0.5.bb
> index a696c0c..927124c 100644
> --- a/meta/recipes-extended/ed/ed_0.5.bb
> +++ b/meta/recipes-extended/ed/ed_0.5.bb
> @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6ddd5335ef96fb858a138230af773710 \
> file://main.c;beginline=1;endline=17;md5=36d4b85e5ae9028e918d1cc775c2475e"
>
> PR = "r2"
> -SRC_URI = "http://download.savannah.gnu.org/releases-noredirect/ed/ed-${PV}.tar.bz2"
> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/ed/ed-${PV}.tar.bz2"
>
> SRC_URI[md5sum] = "4ee21e9dcc9b5b6012c23038734e1632"
> SRC_URI[sha256sum] = "edef2bbde0fbf0d88232782a0eded323f483a0519d6fde9a3b1809056fd35f3e"
> diff --git a/meta/recipes-extended/texi2html/texi2html_5.0.bb b/meta/recipes-extended/texi2html/texi2html_5.0.bb
> index a22b981..86cbc58 100644
> --- a/meta/recipes-extended/texi2html/texi2html_5.0.bb
> +++ b/meta/recipes-extended/texi2html/texi2html_5.0.bb
> @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
>
> PR = "r2"
>
> -SRC_URI = "http://download.savannah.gnu.org/releases/texi2html/${BPN}-${PV}.tar.bz2 \
> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/texi2html/${BPN}-${PV}.tar.bz2 \
> file://fix_gettext_version.patch"
>
> SRC_URI[md5sum] = "f15ac876fcdc8be865b16535f480aa54"
> diff --git a/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb b/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
> index f124be9..830c053 100644
> --- a/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
> +++ b/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
> @@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
>
> DEPENDS = "gtk+ intltool-native"
> DEPENDS_append_poky = " libowl"
> -SRC_URI = "http://savannah.nongnu.org/download/${BPN}/${BPN}-${PV}.tar.gz \
> +SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \
> file://leafpad.desktop"
>
> SRC_URI[md5sum] = "254a72fc67505e3aa52884c729cd7b97"
> diff --git a/meta/recipes-support/attr/acl.inc b/meta/recipes-support/attr/acl.inc
> index 355dbdd..bc9fd6d 100644
> --- a/meta/recipes-support/attr/acl.inc
> +++ b/meta/recipes-support/attr/acl.inc
> @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://doc/COPYING;md5=c781d70ed2b4d48995b790403217a249 \
> file://doc/COPYING.LGPL;md5=9e9a206917f8af112da634ce3ab41764"
>
> DEPENDS = "attr"
> -SRC_URI = "http://download.savannah.gnu.org/releases/acl/${BP}.src.tar.gz \
> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/acl/${BP}.src.tar.gz \
> file://run-ptest \
> file://acl-fix-the-order-of-expected-output-of-getfacl.patch \
> "
> diff --git a/meta/recipes-support/attr/attr.inc b/meta/recipes-support/attr/attr.inc
> index 873c1ff..3468d0c 100644
> --- a/meta/recipes-support/attr/attr.inc
> +++ b/meta/recipes-support/attr/attr.inc
> @@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://doc/COPYING;md5=2d0aa14b3fce4694e4f615e30186335f \
> file://attr/attr.c;endline=17;md5=be0403261f0847e5f43ed5b08d19593c \
> file://libattr/libattr.c;endline=17;md5=7970f77049f8fa1199fff62a7ab724fb"
>
> -SRC_URI = "http://download.savannah.gnu.org/releases/attr/${BP}.src.tar.gz \
> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/attr/${BP}.src.tar.gz \
> file://run-ptest \
> "
>
> --
> 1.7.9.5
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3] mirrors.bbclass: Add mirror site for savannah
2014-04-25 12:42 ` Martin Jansa
@ 2014-04-25 15:21 ` Saul Wold
2014-04-27 0:53 ` Changhyeok Bae
0 siblings, 1 reply; 4+ messages in thread
From: Saul Wold @ 2014-04-25 15:21 UTC (permalink / raw)
To: Martin Jansa, Changhyeok Bae; +Cc: openembedded-core
On 04/25/2014 05:42 AM, Martin Jansa wrote:
> On Fri, Apr 25, 2014 at 02:16:25PM +0900, Changhyeok Bae wrote:
>> * The SRC_URI is not accessible.
>> So need to add mirror site referred by the original site.
>> * The problem is that
>> http://download.savannah.nongnu.org/releases and
>> http://download.savannah.gnu.org/releases redirects to closest mirror
>> and few mirrors (e.g. .jp) weren't working correctly while
>> http://download-mirror.savannah.gnu.org/releases/ seems to be reliable.
>> * Add SAVANNAH_GNU_MIRROR & SAVANNAH_NONGNU_MIRROR variable in bitbake.conf.
>> * Change the SRC_URI using the new variable.
>>
>> Signed-off-by: Changhyeok Bae <changhyeok.bae@lge.com>
>> ---
>> meta/classes/mirrors.bbclass | 2 ++
>> meta/conf/bitbake.conf | 2 ++
>> meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb | 2 +-
>> meta/recipes-devtools/dmidecode/dmidecode_2.12.bb | 2 +-
>> meta/recipes-devtools/quilt/quilt-0.61.inc | 2 +-
>> meta/recipes-extended/ed/ed_0.5.bb | 2 +-
>> meta/recipes-extended/texi2html/texi2html_5.0.bb | 2 +-
>> meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb | 2 +-
>> meta/recipes-support/attr/acl.inc | 2 +-
>> meta/recipes-support/attr/attr.inc | 2 +-
>> 10 files changed, 12 insertions(+), 8 deletions(-)
>>
>> diff --git a/meta/classes/mirrors.bbclass b/meta/classes/mirrors.bbclass
>> index 1fd7cd8..5c5f8b6 100644
>> --- a/meta/classes/mirrors.bbclass
>> +++ b/meta/classes/mirrors.bbclass
>> @@ -45,6 +45,8 @@ ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://sunsite.ualberta.ca/pub/M
>> ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ ftp://the.wiretapped.net/pub/security/host-security/lsof/ \n \
>> http://www.apache.org/dist http://archive.apache.org/dist \n \
>> http://downloads.sourceforge.net/watchdog/ http://fossies.org/linux/misc/ \n \
>> +${SAVANNAH_GNU_MIRROR} http://download-mirror.savannah.gnu.org/releases \n \
>> +${SAVANNAH_NONGNU_MIRROR} http://download-mirror.savannah.gnu.org/releases \n \
>
> Shouldn't this one point to nongnu download-mirror? Or is there only one
> with both sources?
>
They seem to point to the same location, we could just from a consistent
naming, but they are the same downloads area.
Sau!
>> cvs://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
>> svn://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
>> git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
>> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
>> index b3786a7..4a08fac 100644
>> --- a/meta/conf/bitbake.conf
>> +++ b/meta/conf/bitbake.conf
>> @@ -568,6 +568,8 @@ KERNELORG_MIRROR = "http://kernel.org/pub"
>> SOURCEFORGE_MIRROR = "http://downloads.sourceforge.net"
>> XLIBS_MIRROR = "http://xlibs.freedesktop.org/release"
>> XORG_MIRROR = "http://xorg.freedesktop.org/releases"
>> +SAVANNAH_GNU_MIRROR = "http://download.savannah.gnu.org/releases"
>> +SAVANNAH_NONGNU_MIRROR = "http://download.savannah.nongnu.org/releases"
>>
>> # You can use the mirror of your country to get faster downloads by putting
>> # export DEBIAN_MIRROR = "ftp://ftp.de.debian.org/debian/pool"
>> diff --git a/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb b/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
>> index 34e0a54..3080c08 100644
>> --- a/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
>> +++ b/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
>> @@ -9,7 +9,7 @@ PR = "r13"
>>
>> RDEPENDS_${PN} = "${PN}-inittab"
>>
>> -SRC_URI = "http://download.savannah.gnu.org/releases-noredirect/sysvinit/sysvinit-${PV}.tar.bz2 \
>> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/sysvinit/sysvinit-${PV}.tar.bz2 \
>> file://install.patch \
>> file://crypt-lib.patch \
>> file://pidof-add-m-option.patch \
>> diff --git a/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb b/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
>> index 61779fe..3e3a350 100644
>> --- a/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
>> +++ b/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
>> @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.nongnu.org/dmidecode/"
>> LICENSE = "GPLv2"
>> LIC_FILES_CHKSUM = "file://LICENSE;md5=393a5ca445f6965873eca0259a17f833"
>>
>> -SRC_URI = "http://savannah.nongnu.org/download/dmidecode/${BP}.tar.bz2"
>> +SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/dmidecode/${BP}.tar.bz2"
>>
>> COMPATIBLE_HOST = "(i.86|x86_64|aarch64|arm|powerpc).*-linux"
>>
>> diff --git a/meta/recipes-devtools/quilt/quilt-0.61.inc b/meta/recipes-devtools/quilt/quilt-0.61.inc
>> index 4d915bf..9ae4377 100644
>> --- a/meta/recipes-devtools/quilt/quilt-0.61.inc
>> +++ b/meta/recipes-devtools/quilt/quilt-0.61.inc
>> @@ -4,7 +4,7 @@ SECTION = "devel"
>> LICENSE = "GPLv2"
>> LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
>>
>> -SRC_URI = "http://download.savannah.gnu.org/releases/quilt/quilt-${PV}.tar.gz \
>> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/quilt/quilt-${PV}.tar.gz \
>> file://install.patch \
>> file://run-ptest \
>> file://Makefile \
>> diff --git a/meta/recipes-extended/ed/ed_0.5.bb b/meta/recipes-extended/ed/ed_0.5.bb
>> index a696c0c..927124c 100644
>> --- a/meta/recipes-extended/ed/ed_0.5.bb
>> +++ b/meta/recipes-extended/ed/ed_0.5.bb
>> @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6ddd5335ef96fb858a138230af773710 \
>> file://main.c;beginline=1;endline=17;md5=36d4b85e5ae9028e918d1cc775c2475e"
>>
>> PR = "r2"
>> -SRC_URI = "http://download.savannah.gnu.org/releases-noredirect/ed/ed-${PV}.tar.bz2"
>> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/ed/ed-${PV}.tar.bz2"
>>
>> SRC_URI[md5sum] = "4ee21e9dcc9b5b6012c23038734e1632"
>> SRC_URI[sha256sum] = "edef2bbde0fbf0d88232782a0eded323f483a0519d6fde9a3b1809056fd35f3e"
>> diff --git a/meta/recipes-extended/texi2html/texi2html_5.0.bb b/meta/recipes-extended/texi2html/texi2html_5.0.bb
>> index a22b981..86cbc58 100644
>> --- a/meta/recipes-extended/texi2html/texi2html_5.0.bb
>> +++ b/meta/recipes-extended/texi2html/texi2html_5.0.bb
>> @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
>>
>> PR = "r2"
>>
>> -SRC_URI = "http://download.savannah.gnu.org/releases/texi2html/${BPN}-${PV}.tar.bz2 \
>> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/texi2html/${BPN}-${PV}.tar.bz2 \
>> file://fix_gettext_version.patch"
>>
>> SRC_URI[md5sum] = "f15ac876fcdc8be865b16535f480aa54"
>> diff --git a/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb b/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
>> index f124be9..830c053 100644
>> --- a/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
>> +++ b/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
>> @@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
>>
>> DEPENDS = "gtk+ intltool-native"
>> DEPENDS_append_poky = " libowl"
>> -SRC_URI = "http://savannah.nongnu.org/download/${BPN}/${BPN}-${PV}.tar.gz \
>> +SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \
>> file://leafpad.desktop"
>>
>> SRC_URI[md5sum] = "254a72fc67505e3aa52884c729cd7b97"
>> diff --git a/meta/recipes-support/attr/acl.inc b/meta/recipes-support/attr/acl.inc
>> index 355dbdd..bc9fd6d 100644
>> --- a/meta/recipes-support/attr/acl.inc
>> +++ b/meta/recipes-support/attr/acl.inc
>> @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://doc/COPYING;md5=c781d70ed2b4d48995b790403217a249 \
>> file://doc/COPYING.LGPL;md5=9e9a206917f8af112da634ce3ab41764"
>>
>> DEPENDS = "attr"
>> -SRC_URI = "http://download.savannah.gnu.org/releases/acl/${BP}.src.tar.gz \
>> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/acl/${BP}.src.tar.gz \
>> file://run-ptest \
>> file://acl-fix-the-order-of-expected-output-of-getfacl.patch \
>> "
>> diff --git a/meta/recipes-support/attr/attr.inc b/meta/recipes-support/attr/attr.inc
>> index 873c1ff..3468d0c 100644
>> --- a/meta/recipes-support/attr/attr.inc
>> +++ b/meta/recipes-support/attr/attr.inc
>> @@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://doc/COPYING;md5=2d0aa14b3fce4694e4f615e30186335f \
>> file://attr/attr.c;endline=17;md5=be0403261f0847e5f43ed5b08d19593c \
>> file://libattr/libattr.c;endline=17;md5=7970f77049f8fa1199fff62a7ab724fb"
>>
>> -SRC_URI = "http://download.savannah.gnu.org/releases/attr/${BP}.src.tar.gz \
>> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/attr/${BP}.src.tar.gz \
>> file://run-ptest \
>> "
>>
>> --
>> 1.7.9.5
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3] mirrors.bbclass: Add mirror site for savannah
2014-04-25 15:21 ` Saul Wold
@ 2014-04-27 0:53 ` Changhyeok Bae
0 siblings, 0 replies; 4+ messages in thread
From: Changhyeok Bae @ 2014-04-27 0:53 UTC (permalink / raw)
To: 'Saul Wold', 'Martin Jansa'; +Cc: openembedded-core
On 04/25/2014 05:42 AM, Martin Jansa wrote:
> On Fri, Apr 25, 2014 at 02:16:25PM +0900, Changhyeok Bae wrote:
>> * The SRC_URI is not accessible.
>> So need to add mirror site referred by the original site.
>> * The problem is that
>> http://download.savannah.nongnu.org/releases and
>> http://download.savannah.gnu.org/releases redirects to closest mirror
>> and few mirrors (e.g. .jp) weren't working correctly while
>> http://download-mirror.savannah.gnu.org/releases/ seems to be
reliable.
>> * Add SAVANNAH_GNU_MIRROR & SAVANNAH_NONGNU_MIRROR variable in
bitbake.conf.
>> * Change the SRC_URI using the new variable.
>>
>> Signed-off-by: Changhyeok Bae <changhyeok.bae@lge.com>
>> ---
>> meta/classes/mirrors.bbclass | 2 ++
>> meta/conf/bitbake.conf | 2 ++
>> meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb | 2 +-
>> meta/recipes-devtools/dmidecode/dmidecode_2.12.bb | 2 +-
>> meta/recipes-devtools/quilt/quilt-0.61.inc | 2 +-
>> meta/recipes-extended/ed/ed_0.5.bb | 2 +-
>> meta/recipes-extended/texi2html/texi2html_5.0.bb | 2 +-
>> meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb | 2 +-
>> meta/recipes-support/attr/acl.inc | 2 +-
>> meta/recipes-support/attr/attr.inc | 2 +-
>> 10 files changed, 12 insertions(+), 8 deletions(-)
>>
>> diff --git a/meta/classes/mirrors.bbclass
>> b/meta/classes/mirrors.bbclass index 1fd7cd8..5c5f8b6 100644
>> --- a/meta/classes/mirrors.bbclass
>> +++ b/meta/classes/mirrors.bbclass
>> @@ -45,6 +45,8 @@ ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
ftp://sunsite.ualberta.ca/pub/M
>> ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
ftp://the.wiretapped.net/pub/security/host-security/lsof/ \n \
>> http://www.apache.org/dist http://archive.apache.org/dist \n \
>> http://downloads.sourceforge.net/watchdog/
>> http://fossies.org/linux/misc/ \n \
>> +${SAVANNAH_GNU_MIRROR}
>> +http://download-mirror.savannah.gnu.org/releases \n \
>> +${SAVANNAH_NONGNU_MIRROR}
>> +http://download-mirror.savannah.gnu.org/releases \n \
>
> Shouldn't this one point to nongnu download-mirror? Or is there only
> one with both sources?
>
They seem to point to the same location, we could just from a consistent
naming, but they are the same downloads area.
Sau!
Right. Finally it points out "http://download.savannah.gnu.org/releases"
Then I'll re-check and if it's correct, I just use SAVANNAH_GNU_MIRROR.
Thanks
Changhyeok
>> cvs://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
>> svn://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
>> git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
>> diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index
>> b3786a7..4a08fac 100644
>> --- a/meta/conf/bitbake.conf
>> +++ b/meta/conf/bitbake.conf
>> @@ -568,6 +568,8 @@ KERNELORG_MIRROR = "http://kernel.org/pub"
>> SOURCEFORGE_MIRROR = "http://downloads.sourceforge.net"
>> XLIBS_MIRROR = "http://xlibs.freedesktop.org/release"
>> XORG_MIRROR = "http://xorg.freedesktop.org/releases"
>> +SAVANNAH_GNU_MIRROR = "http://download.savannah.gnu.org/releases"
>> +SAVANNAH_NONGNU_MIRROR = "http://download.savannah.nongnu.org/releases"
>>
>> # You can use the mirror of your country to get faster downloads by
putting
>> # export DEBIAN_MIRROR = "ftp://ftp.de.debian.org/debian/pool"
>> diff --git a/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
>> b/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
>> index 34e0a54..3080c08 100644
>> --- a/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
>> +++ b/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb
>> @@ -9,7 +9,7 @@ PR = "r13"
>>
>> RDEPENDS_${PN} = "${PN}-inittab"
>>
>> -SRC_URI =
>> "http://download.savannah.gnu.org/releases-noredirect/sysvinit/sysvin
>> it-${PV}.tar.bz2 \
>> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/sysvinit/sysvinit-${PV}.tar.bz2 \
>> file://install.patch \
>> file://crypt-lib.patch \
>> file://pidof-add-m-option.patch \ diff --git
>> a/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
>> b/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
>> index 61779fe..3e3a350 100644
>> --- a/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
>> +++ b/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb
>> @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.nongnu.org/dmidecode/"
>> LICENSE = "GPLv2"
>> LIC_FILES_CHKSUM =
"file://LICENSE;md5=393a5ca445f6965873eca0259a17f833"
>>
>> -SRC_URI = "http://savannah.nongnu.org/download/dmidecode/${BP}.tar.bz2"
>> +SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/dmidecode/${BP}.tar.bz2"
>>
>> COMPATIBLE_HOST = "(i.86|x86_64|aarch64|arm|powerpc).*-linux"
>>
>> diff --git a/meta/recipes-devtools/quilt/quilt-0.61.inc
>> b/meta/recipes-devtools/quilt/quilt-0.61.inc
>> index 4d915bf..9ae4377 100644
>> --- a/meta/recipes-devtools/quilt/quilt-0.61.inc
>> +++ b/meta/recipes-devtools/quilt/quilt-0.61.inc
>> @@ -4,7 +4,7 @@ SECTION = "devel"
>> LICENSE = "GPLv2"
>> LIC_FILES_CHKSUM =
"file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
>>
>> -SRC_URI =
>> "http://download.savannah.gnu.org/releases/quilt/quilt-${PV}.tar.gz \
>> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/quilt/quilt-${PV}.tar.gz \
>> file://install.patch \
>> file://run-ptest \
>> file://Makefile \
>> diff --git a/meta/recipes-extended/ed/ed_0.5.bb
>> b/meta/recipes-extended/ed/ed_0.5.bb
>> index a696c0c..927124c 100644
>> --- a/meta/recipes-extended/ed/ed_0.5.bb
>> +++ b/meta/recipes-extended/ed/ed_0.5.bb
>> @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM =
"file://COPYING;md5=6ddd5335ef96fb858a138230af773710 \
>>
file://main.c;beginline=1;endline=17;md5=36d4b85e5ae9028e918d1cc775c2475e"
>>
>> PR = "r2"
>> -SRC_URI =
"http://download.savannah.gnu.org/releases-noredirect/ed/ed-${PV}.tar.bz2"
>> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/ed/ed-${PV}.tar.bz2"
>>
>> SRC_URI[md5sum] = "4ee21e9dcc9b5b6012c23038734e1632"
>> SRC_URI[sha256sum] =
"edef2bbde0fbf0d88232782a0eded323f483a0519d6fde9a3b1809056fd35f3e"
>> diff --git a/meta/recipes-extended/texi2html/texi2html_5.0.bb
>> b/meta/recipes-extended/texi2html/texi2html_5.0.bb
>> index a22b981..86cbc58 100644
>> --- a/meta/recipes-extended/texi2html/texi2html_5.0.bb
>> +++ b/meta/recipes-extended/texi2html/texi2html_5.0.bb
>> @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM =
"file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
>>
>> PR = "r2"
>>
>> -SRC_URI =
"http://download.savannah.gnu.org/releases/texi2html/${BPN}-${PV}.tar.bz2 \
>> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/texi2html/${BPN}-${PV}.tar.bz2 \
>> file://fix_gettext_version.patch"
>>
>> SRC_URI[md5sum] = "f15ac876fcdc8be865b16535f480aa54"
>> diff --git a/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
>> b/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
>> index f124be9..830c053 100644
>> --- a/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
>> +++ b/meta/recipes-sato/leafpad/leafpad_0.8.18.1.bb
>> @@ -8,7 +8,7 @@ LIC_FILES_CHKSUM =
>> "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
>>
>> DEPENDS = "gtk+ intltool-native"
>> DEPENDS_append_poky = " libowl"
>> -SRC_URI =
>> "http://savannah.nongnu.org/download/${BPN}/${BPN}-${PV}.tar.gz \
>> +SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz \
>> file://leafpad.desktop"
>>
>> SRC_URI[md5sum] = "254a72fc67505e3aa52884c729cd7b97"
>> diff --git a/meta/recipes-support/attr/acl.inc
>> b/meta/recipes-support/attr/acl.inc
>> index 355dbdd..bc9fd6d 100644
>> --- a/meta/recipes-support/attr/acl.inc
>> +++ b/meta/recipes-support/attr/acl.inc
>> @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM =
"file://doc/COPYING;md5=c781d70ed2b4d48995b790403217a249 \
>>
file://doc/COPYING.LGPL;md5=9e9a206917f8af112da634ce3ab41764"
>>
>> DEPENDS = "attr"
>> -SRC_URI =
>> "http://download.savannah.gnu.org/releases/acl/${BP}.src.tar.gz \
>> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/acl/${BP}.src.tar.gz \
>> file://run-ptest \
>> file://acl-fix-the-order-of-expected-output-of-getfacl.patch
\
>> "
>> diff --git a/meta/recipes-support/attr/attr.inc
>> b/meta/recipes-support/attr/attr.inc
>> index 873c1ff..3468d0c 100644
>> --- a/meta/recipes-support/attr/attr.inc
>> +++ b/meta/recipes-support/attr/attr.inc
>> @@ -11,7 +11,7 @@ LIC_FILES_CHKSUM =
"file://doc/COPYING;md5=2d0aa14b3fce4694e4f615e30186335f \
>>
file://attr/attr.c;endline=17;md5=be0403261f0847e5f43ed5b08d19593c \
>>
file://libattr/libattr.c;endline=17;md5=7970f77049f8fa1199fff62a7ab724fb"
>>
>> -SRC_URI =
>> "http://download.savannah.gnu.org/releases/attr/${BP}.src.tar.gz \
>> +SRC_URI = "${SAVANNAH_GNU_MIRROR}/attr/${BP}.src.tar.gz \
>> file://run-ptest \
>> "
>>
>> --
>> 1.7.9.5
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-04-27 0:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-25 5:16 [PATCH v3] mirrors.bbclass: Add mirror site for savannah Changhyeok Bae
2014-04-25 12:42 ` Martin Jansa
2014-04-25 15:21 ` Saul Wold
2014-04-27 0:53 ` Changhyeok Bae
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox