* [PATCH 00/10] Add missing SRC_URI checksums
@ 2011-12-13 8:13 Saul Wold
2011-12-13 8:14 ` [PATCH 01/10] coreutils: Add SRC_URI Checksums for GPLv2 Saul Wold
` (10 more replies)
0 siblings, 11 replies; 12+ messages in thread
From: Saul Wold @ 2011-12-13 8:13 UTC (permalink / raw)
To: openembedded-core
Richard,
Add missing checksums for non-GPLv3 recipes since we enabled
the error. Also fix the ed recipe to remove an not-yet supported
option.
Sau!
The following changes since commit 9244a3b0565fd52d7973fda42a4f706b16240316:
eglibc: Generate cross testing script during install (2011-12-12 21:50:10 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib sgw/fix
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/fix
Saul Wold (10):
coreutils: Add SRC_URI Checksums for GPLv2
readline: Add SRC_URI Checksums for GPLv2
ed: Add SRC_URI Checksums for GPLv2
findutils: Add SRC_URI Checksums for GPLv2
gawk: Add SRC_URI Checksums for GPLv2
gzip: Add SRC_URI Checksums for GPLv2
sed: Add SRC_URI Checksums for GPLv2
gmp: Add SRC_URI Checksums for GPLv2
bash: Add SRC_URI Checksums for GPLv2
ed: remove unsupported option
meta/recipes-core/coreutils/coreutils_6.9.bb | 3 ++
meta/recipes-core/readline/readline_5.2.bb | 3 ++
meta/recipes-extended/bash/bash_3.2.48.bb | 21 ++++++++++++++-----
meta/recipes-extended/ed/ed_0.5.bb | 5 ++++
.../recipes-extended/findutils/findutils_4.2.31.bb | 3 ++
meta/recipes-extended/gawk/gawk_3.1.5.bb | 3 ++
meta/recipes-extended/gzip/gzip_1.3.12.bb | 3 ++
meta/recipes-extended/sed/sed_4.1.2.bb | 3 ++
meta/recipes-support/gmp/gmp_4.2.1.bb | 3 ++
9 files changed, 41 insertions(+), 6 deletions(-)
--
1.7.6.4
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 01/10] coreutils: Add SRC_URI Checksums for GPLv2
2011-12-13 8:13 [PATCH 00/10] Add missing SRC_URI checksums Saul Wold
@ 2011-12-13 8:14 ` Saul Wold
2011-12-13 8:14 ` [PATCH 02/10] readline: " Saul Wold
` (9 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2011-12-13 8:14 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-core/coreutils/coreutils_6.9.bb | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-core/coreutils/coreutils_6.9.bb b/meta/recipes-core/coreutils/coreutils_6.9.bb
index c9aea38..8a47a60 100644
--- a/meta/recipes-core/coreutils/coreutils_6.9.bb
+++ b/meta/recipes-core/coreutils/coreutils_6.9.bb
@@ -27,6 +27,9 @@ SRC_URI_BASE = "${GNU_MIRROR}/coreutils/${BP}.tar.bz2 \
SRC_URI = "${SRC_URI_BASE} file://fix_for_manpage_building.patch"
SRC_URI_virtclass-native = "${SRC_URI_BASE}"
+SRC_URI[md5sum] = "c9607d8495f16e98906e7ed2d9751a06"
+SRC_URI[sha256sum] = "89c2895ad157de50e53298b22d91db116ee4e1dd3fdf4019260254e2e31497b0"
+
# [ gets a special treatment and is not included in this
bindir_progs = "base64 basename cksum comm csplit cut dir dircolors dirname du \
env expand expr factor fmt fold groups head hostid id install \
--
1.7.6.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 02/10] readline: Add SRC_URI Checksums for GPLv2
2011-12-13 8:13 [PATCH 00/10] Add missing SRC_URI checksums Saul Wold
2011-12-13 8:14 ` [PATCH 01/10] coreutils: Add SRC_URI Checksums for GPLv2 Saul Wold
@ 2011-12-13 8:14 ` Saul Wold
2011-12-13 8:14 ` [PATCH 03/10] ed: " Saul Wold
` (8 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2011-12-13 8:14 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-core/readline/readline_5.2.bb | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-core/readline/readline_5.2.bb b/meta/recipes-core/readline/readline_5.2.bb
index b054ad7..d838e64 100644
--- a/meta/recipes-core/readline/readline_5.2.bb
+++ b/meta/recipes-core/readline/readline_5.2.bb
@@ -15,6 +15,9 @@ SRC_URI = "${GNU_MIRROR}/readline/${BPN}-${PV}.tar.gz \
file://configure-fix.patch \
file://acinclude.m4"
+SRC_URI[md5sum] = "e39331f32ad14009b9ff49cc10c5e751"
+SRC_URI[sha256sum] = "12e88d96aee2cd1192500356f0535540db499282ca7f76339fb4228c31249f45"
+
S = "${WORKDIR}/${BPN}-${PV}"
inherit autotools
--
1.7.6.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 03/10] ed: Add SRC_URI Checksums for GPLv2
2011-12-13 8:13 [PATCH 00/10] Add missing SRC_URI checksums Saul Wold
2011-12-13 8:14 ` [PATCH 01/10] coreutils: Add SRC_URI Checksums for GPLv2 Saul Wold
2011-12-13 8:14 ` [PATCH 02/10] readline: " Saul Wold
@ 2011-12-13 8:14 ` Saul Wold
2011-12-13 8:14 ` [PATCH 04/10] findutils: " Saul Wold
` (7 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2011-12-13 8:14 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-extended/ed/ed_0.5.bb | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-extended/ed/ed_0.5.bb b/meta/recipes-extended/ed/ed_0.5.bb
index a652332..706c0af 100644
--- a/meta/recipes-extended/ed/ed_0.5.bb
+++ b/meta/recipes-extended/ed/ed_0.5.bb
@@ -8,6 +8,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6ddd5335ef96fb858a138230af773710 \
PR = "r1"
SRC_URI = "http://download.savannah.gnu.org/releases-noredirect/ed/ed-${PV}.tar.bz2"
+SRC_URI[md5sum] = "4ee21e9dcc9b5b6012c23038734e1632"
+SRC_URI[sha256sum] = "edef2bbde0fbf0d88232782a0eded323f483a0519d6fde9a3b1809056fd35f3e"
+
inherit autotools
CONFIGUREOPTS := "${@d.getVar('CONFIGUREOPTS', True).replace('--disable-silent-rules', ' ')}"
--
1.7.6.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 04/10] findutils: Add SRC_URI Checksums for GPLv2
2011-12-13 8:13 [PATCH 00/10] Add missing SRC_URI checksums Saul Wold
` (2 preceding siblings ...)
2011-12-13 8:14 ` [PATCH 03/10] ed: " Saul Wold
@ 2011-12-13 8:14 ` Saul Wold
2011-12-13 8:14 ` [PATCH 05/10] gawk: " Saul Wold
` (6 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2011-12-13 8:14 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
.../recipes-extended/findutils/findutils_4.2.31.bb | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-extended/findutils/findutils_4.2.31.bb b/meta/recipes-extended/findutils/findutils_4.2.31.bb
index 0889f0f..bd455a5 100644
--- a/meta/recipes-extended/findutils/findutils_4.2.31.bb
+++ b/meta/recipes-extended/findutils/findutils_4.2.31.bb
@@ -13,6 +13,9 @@ PR = "r1"
SRC_URI = "${GNU_MIRROR}/findutils/findutils-${PV}.tar.gz \
file://gnulib-extension.patch"
+SRC_URI[md5sum] = "a0e31a0f18a49709bf5a449867c8049a"
+SRC_URI[sha256sum] = "e0d34b8faca0b3cca0703f6c6b498afbe72f0ba16c35980c10ec9ef7724d6204"
+
inherit autotools gettext
# diffutils assumes non-glibc compilation with uclibc and
--
1.7.6.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 05/10] gawk: Add SRC_URI Checksums for GPLv2
2011-12-13 8:13 [PATCH 00/10] Add missing SRC_URI checksums Saul Wold
` (3 preceding siblings ...)
2011-12-13 8:14 ` [PATCH 04/10] findutils: " Saul Wold
@ 2011-12-13 8:14 ` Saul Wold
2011-12-13 8:14 ` [PATCH 06/10] gzip: " Saul Wold
` (5 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2011-12-13 8:14 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-extended/gawk/gawk_3.1.5.bb | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-extended/gawk/gawk_3.1.5.bb b/meta/recipes-extended/gawk/gawk_3.1.5.bb
index eba410e..bd8460d 100644
--- a/meta/recipes-extended/gawk/gawk_3.1.5.bb
+++ b/meta/recipes-extended/gawk/gawk_3.1.5.bb
@@ -17,6 +17,9 @@ PR = "r0"
SRC_URI = "${GNU_MIRROR}/gawk/gawk-${PV}.tar.gz"
+SRC_URI[md5sum] = "4760325489479cac17fe0114b8f62f30"
+SRC_URI[sha256sum] = "463dcb9d0ca398b1d4f5a332f6cd9cec56441265fca616f2ea1b44d459e9f0f8"
+
inherit autotools gettext update-alternatives
PACKAGES += "gawk-common pgawk"
--
1.7.6.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 06/10] gzip: Add SRC_URI Checksums for GPLv2
2011-12-13 8:13 [PATCH 00/10] Add missing SRC_URI checksums Saul Wold
` (4 preceding siblings ...)
2011-12-13 8:14 ` [PATCH 05/10] gawk: " Saul Wold
@ 2011-12-13 8:14 ` Saul Wold
2011-12-13 8:14 ` [PATCH 07/10] sed: " Saul Wold
` (4 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2011-12-13 8:14 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-extended/gzip/gzip_1.3.12.bb | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-extended/gzip/gzip_1.3.12.bb b/meta/recipes-extended/gzip/gzip_1.3.12.bb
index f0752e4..2836942 100644
--- a/meta/recipes-extended/gzip/gzip_1.3.12.bb
+++ b/meta/recipes-extended/gzip/gzip_1.3.12.bb
@@ -13,6 +13,9 @@ SRC_URI = "${GNU_MIRROR}/gzip/gzip-${PV}.tar.gz \
file://m4-extensions-fix.patch \
file://dup-def-fix.patch"
+SRC_URI[md5sum] = "b5bac2d21840ae077e0217bc5e4845b1"
+SRC_URI[sha256sum] = "3f565be05f7f3d1aff117c030eb7c738300510b7d098cedea796ca8e4cd587af"
+
PR = "r0"
inherit autotools
--
1.7.6.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 07/10] sed: Add SRC_URI Checksums for GPLv2
2011-12-13 8:13 [PATCH 00/10] Add missing SRC_URI checksums Saul Wold
` (5 preceding siblings ...)
2011-12-13 8:14 ` [PATCH 06/10] gzip: " Saul Wold
@ 2011-12-13 8:14 ` Saul Wold
2011-12-13 8:14 ` [PATCH 08/10] gmp: " Saul Wold
` (3 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2011-12-13 8:14 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-extended/sed/sed_4.1.2.bb | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-extended/sed/sed_4.1.2.bb b/meta/recipes-extended/sed/sed_4.1.2.bb
index 89b1f34..713524c 100644
--- a/meta/recipes-extended/sed/sed_4.1.2.bb
+++ b/meta/recipes-extended/sed/sed_4.1.2.bb
@@ -9,6 +9,9 @@ PR = "r5"
SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz \
file://fix_return_type.patch"
+SRC_URI[md5sum] = "928f0e06422f414091917401f1a834d0"
+SRC_URI[sha256sum] = "638e837ba765d5da0a30c98b57c2953cecea96827882f594612acace93ceeeab"
+
inherit autotools update-alternatives gettext
do_install () {
--
1.7.6.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 08/10] gmp: Add SRC_URI Checksums for GPLv2
2011-12-13 8:13 [PATCH 00/10] Add missing SRC_URI checksums Saul Wold
` (6 preceding siblings ...)
2011-12-13 8:14 ` [PATCH 07/10] sed: " Saul Wold
@ 2011-12-13 8:14 ` Saul Wold
2011-12-13 8:14 ` [PATCH 09/10] bash: " Saul Wold
` (2 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2011-12-13 8:14 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-support/gmp/gmp_4.2.1.bb | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-support/gmp/gmp_4.2.1.bb b/meta/recipes-support/gmp/gmp_4.2.1.bb
index 74da6b8..5f3929f 100644
--- a/meta/recipes-support/gmp/gmp_4.2.1.bb
+++ b/meta/recipes-support/gmp/gmp_4.2.1.bb
@@ -11,4 +11,7 @@ PR = "r0"
SRC_URI = "${GNU_MIRROR}/gmp/${BP}.tar.bz2 \
file://disable-stdc.patch"
+SRC_URI[md5sum] = "091c56e0e1cca6b09b17b69d47ef18e3"
+SRC_URI[sha256sum] = "d07ffcb37eecec35c5ec72516d10b35fdf6e6fef1fcf1dcd37e30b8cbf8bf941"
+
inherit autotools
--
1.7.6.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 09/10] bash: Add SRC_URI Checksums for GPLv2
2011-12-13 8:13 [PATCH 00/10] Add missing SRC_URI checksums Saul Wold
` (7 preceding siblings ...)
2011-12-13 8:14 ` [PATCH 08/10] gmp: " Saul Wold
@ 2011-12-13 8:14 ` Saul Wold
2011-12-13 8:14 ` [PATCH 10/10] ed: remove unsupported option Saul Wold
2011-12-13 12:30 ` [PATCH 00/10] Add missing SRC_URI checksums Richard Purdie
10 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2011-12-13 8:14 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-extended/bash/bash_3.2.48.bb | 21 +++++++++++++++------
1 files changed, 15 insertions(+), 6 deletions(-)
diff --git a/meta/recipes-extended/bash/bash_3.2.48.bb b/meta/recipes-extended/bash/bash_3.2.48.bb
index f2ba572..1f70263 100644
--- a/meta/recipes-extended/bash/bash_3.2.48.bb
+++ b/meta/recipes-extended/bash/bash_3.2.48.bb
@@ -6,12 +6,21 @@ LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=fd5d9bcabd8ed5a54a01ce8d183d592a"
DEPENDS = "ncurses"
-PR = "r8"
-
-SRC_URI = "${GNU_MIRROR}/bash/bash-${PV}.tar.gz \
- ${GNU_MIRROR}/bash/bash-3.2-patches/bash32-049;apply=yes;striplevel=0 \
- ${GNU_MIRROR}/bash/bash-3.2-patches/bash32-050;apply=yes;striplevel=0 \
- ${GNU_MIRROR}/bash/bash-3.2-patches/bash32-051;apply=yes;striplevel=0"
+PR = "r9"
+
+SRC_URI = "${GNU_MIRROR}/bash/bash-${PV}.tar.gz;name=tarball \
+ ${GNU_MIRROR}/bash/bash-3.2-patches/bash32-049;apply=yes;striplevel=0;name=patch001 \
+ ${GNU_MIRROR}/bash/bash-3.2-patches/bash32-050;apply=yes;striplevel=0;name=patch002 \
+ ${GNU_MIRROR}/bash/bash-3.2-patches/bash32-051;apply=yes;striplevel=0;name=patch003"
+
+SRC_URI[tarball.md5sum] = "338dcf975a93640bb3eaa843ca42e3f8"
+SRC_URI[tarball.sha256sum] = "128d281bd5682ba5f6953122915da71976357d7a76490d266c9173b1d0426348"
+SRC_URI[patch001.md5sum] = "af571a2d164d5abdcae4499e94e8892c"
+SRC_URI[patch001.sha256sum] = "b1217ed94bdb95dc878fa5cabbf8a164435eb0d9da23a392198f48566ee34a2f"
+SRC_URI[patch002.md5sum] = "8443d4385d73ec835abe401d90591377"
+SRC_URI[patch002.sha256sum] = "081bb03c580ecee63ba03b40beb3caf509eca29515b2e8dd3c078503609a1642"
+SRC_URI[patch003.md5sum] = "15c6653042e9814aa87120098fc7a849"
+SRC_URI[patch003.sha256sum] = "354886097cd95b4def77028f32ee01e2e088d58a98184fede9d3ce9320e218ef"
inherit autotools gettext
--
1.7.6.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH 10/10] ed: remove unsupported option
2011-12-13 8:13 [PATCH 00/10] Add missing SRC_URI checksums Saul Wold
` (8 preceding siblings ...)
2011-12-13 8:14 ` [PATCH 09/10] bash: " Saul Wold
@ 2011-12-13 8:14 ` Saul Wold
2011-12-13 12:30 ` [PATCH 00/10] Add missing SRC_URI checksums Richard Purdie
10 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2011-12-13 8:14 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-extended/ed/ed_0.5.bb | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-extended/ed/ed_0.5.bb b/meta/recipes-extended/ed/ed_0.5.bb
index 706c0af..205822f 100644
--- a/meta/recipes-extended/ed/ed_0.5.bb
+++ b/meta/recipes-extended/ed/ed_0.5.bb
@@ -13,4 +13,6 @@ SRC_URI[sha256sum] = "edef2bbde0fbf0d88232782a0eded323f483a0519d6fde9a3b1809056f
inherit autotools
+CONFIGUREOPTS := "${@d.getVar('CONFIGUREOPTS', True).replace('--disable-dependency-tracking', ' ')}"
CONFIGUREOPTS := "${@d.getVar('CONFIGUREOPTS', True).replace('--disable-silent-rules', ' ')}"
+
--
1.7.6.4
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH 00/10] Add missing SRC_URI checksums
2011-12-13 8:13 [PATCH 00/10] Add missing SRC_URI checksums Saul Wold
` (9 preceding siblings ...)
2011-12-13 8:14 ` [PATCH 10/10] ed: remove unsupported option Saul Wold
@ 2011-12-13 12:30 ` Richard Purdie
10 siblings, 0 replies; 12+ messages in thread
From: Richard Purdie @ 2011-12-13 12:30 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Tue, 2011-12-13 at 00:13 -0800, Saul Wold wrote:
> Richard,
>
> Add missing checksums for non-GPLv3 recipes since we enabled
> the error. Also fix the ed recipe to remove an not-yet supported
> option.
>
> Sau!
>
>
> The following changes since commit 9244a3b0565fd52d7973fda42a4f706b16240316:
>
> eglibc: Generate cross testing script during install (2011-12-12 21:50:10 +0000)
>
> are available in the git repository at:
> git://git.openembedded.org/openembedded-core-contrib sgw/fix
> http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/fix
>
> Saul Wold (10):
> coreutils: Add SRC_URI Checksums for GPLv2
> readline: Add SRC_URI Checksums for GPLv2
> ed: Add SRC_URI Checksums for GPLv2
> findutils: Add SRC_URI Checksums for GPLv2
> gawk: Add SRC_URI Checksums for GPLv2
> gzip: Add SRC_URI Checksums for GPLv2
> sed: Add SRC_URI Checksums for GPLv2
> gmp: Add SRC_URI Checksums for GPLv2
> bash: Add SRC_URI Checksums for GPLv2
> ed: remove unsupported option
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2011-12-13 12:37 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-13 8:13 [PATCH 00/10] Add missing SRC_URI checksums Saul Wold
2011-12-13 8:14 ` [PATCH 01/10] coreutils: Add SRC_URI Checksums for GPLv2 Saul Wold
2011-12-13 8:14 ` [PATCH 02/10] readline: " Saul Wold
2011-12-13 8:14 ` [PATCH 03/10] ed: " Saul Wold
2011-12-13 8:14 ` [PATCH 04/10] findutils: " Saul Wold
2011-12-13 8:14 ` [PATCH 05/10] gawk: " Saul Wold
2011-12-13 8:14 ` [PATCH 06/10] gzip: " Saul Wold
2011-12-13 8:14 ` [PATCH 07/10] sed: " Saul Wold
2011-12-13 8:14 ` [PATCH 08/10] gmp: " Saul Wold
2011-12-13 8:14 ` [PATCH 09/10] bash: " Saul Wold
2011-12-13 8:14 ` [PATCH 10/10] ed: remove unsupported option Saul Wold
2011-12-13 12:30 ` [PATCH 00/10] Add missing SRC_URI checksums Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.