All of lore.kernel.org
 help / color / mirror / Atom feed
* [V2 PATCH 0/6] meta: fix SRC_URI
@ 2015-03-09  7:15 Robert Yang
  2015-03-09  7:15 ` [PATCH 1/6] xinetd: fixe HOMEPAGE and SRC_URI Robert Yang
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Robert Yang @ 2015-03-09  7:15 UTC (permalink / raw)
  To: openembedded-core

Changes of V2:
* Use snapshot.debian.org for the invalid SRC_URI when possible as Ross suggested.

// Robert

The following changes since commit 3c78468f12296abd02abce6eeac0f69bc7509958:

  build-appliance-image: Update to master head revision (2015-03-03 13:12:50 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib rbt/uri
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/uri

Robert Yang (6):
  xinetd: fixe HOMEPAGE and SRC_URI
  libevent: fix SRC_URI
  mailx: fix SRC_URI
  apt: fix SRC_URI
  net-tools: fix SRC_URI
  resolvconf: fix SRC_URI

 .../resolvconf/resolvconf_1.76.bb                  |    3 +--
 meta/recipes-devtools/apt/apt.inc                  |    2 +-
 meta/recipes-extended/mailx/mailx_12.5.bb          |    4 ++--
 .../net-tools/net-tools_1.60-25.bb                 |    4 ++--
 meta/recipes-extended/xinetd/xinetd_2.3.15.bb      |    4 ++--
 meta/recipes-support/libevent/libevent_2.0.21.bb   |    2 +-
 6 files changed, 9 insertions(+), 10 deletions(-)

-- 
1.7.9.5



^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/6] xinetd: fixe HOMEPAGE and SRC_URI
  2015-03-09  7:15 [V2 PATCH 0/6] meta: fix SRC_URI Robert Yang
@ 2015-03-09  7:15 ` Robert Yang
  2015-03-09 15:59   ` Khem Raj
  2015-03-09  7:15 ` [PATCH 2/6] libevent: fix SRC_URI Robert Yang
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Robert Yang @ 2015-03-09  7:15 UTC (permalink / raw)
  To: openembedded-core

The www.xinetd.org is not available, use github as the HOMEPAGE and
pkgs.fedoraproject.org as the SRC_URI.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-extended/xinetd/xinetd_2.3.15.bb |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb
index 288186e..f07a33f 100644
--- a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb
+++ b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb
@@ -1,5 +1,5 @@
 SUMMARY = "Socket-based service activation daemon"
-HOMEPAGE = "http://www.xinetd.org"
+HOMEPAGE = "https://github.com/xinetd-org/xinetd"
 
 # xinetd is a BSD-like license
 # Apple and Gentoo say BSD here.
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=8ad8615198542444f84d28a6cf226dd8"
 DEPENDS = ""
 PR = "r2"
 
-SRC_URI = "http://www.xinetd.org/xinetd-${PV}.tar.gz \
+SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/${BPN}/${BP}.tar.gz/77358478fd58efa6366accae99b8b04c/${BP}.tar.gz \
       file://xinetd.init \
       file://xinetd.conf \
       file://xinetd.default \
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 2/6] libevent: fix SRC_URI
  2015-03-09  7:15 [V2 PATCH 0/6] meta: fix SRC_URI Robert Yang
  2015-03-09  7:15 ` [PATCH 1/6] xinetd: fixe HOMEPAGE and SRC_URI Robert Yang
@ 2015-03-09  7:15 ` Robert Yang
  2015-03-09  7:15 ` [PATCH 3/6] mailx: " Robert Yang
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 12+ messages in thread
From: Robert Yang @ 2015-03-09  7:15 UTC (permalink / raw)
  To: openembedded-core

The wget reported errors for the past URI since it can't follow the redirection well:
Connecting to cloud.github.com (cloud.github.com)|54.192.140.6|:443... connected.
OpenSSL: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure
Unable to establish SSL connection.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-support/libevent/libevent_2.0.21.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-support/libevent/libevent_2.0.21.bb b/meta/recipes-support/libevent/libevent_2.0.21.bb
index 5a1ff3b..1230e92 100644
--- a/meta/recipes-support/libevent/libevent_2.0.21.bb
+++ b/meta/recipes-support/libevent/libevent_2.0.21.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=45c5316ff684bcfe2f9f86d8b1279559"
 
 PR = "r1"
 
-SRC_URI = "http://github.com/downloads/libevent/libevent/${BPN}-${PV}-stable.tar.gz \
+SRC_URI = "${SOURCEFORGE_MIRROR}/levent/${BP}-stable.tar.gz \
            file://obsolete_automake_macros.patch \
            file://disable_tests.patch \
 "
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 3/6] mailx: fix SRC_URI
  2015-03-09  7:15 [V2 PATCH 0/6] meta: fix SRC_URI Robert Yang
  2015-03-09  7:15 ` [PATCH 1/6] xinetd: fixe HOMEPAGE and SRC_URI Robert Yang
  2015-03-09  7:15 ` [PATCH 2/6] libevent: fix SRC_URI Robert Yang
@ 2015-03-09  7:15 ` Robert Yang
  2015-03-09  7:15 ` [PATCH 4/6] apt: " Robert Yang
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 12+ messages in thread
From: Robert Yang @ 2015-03-09  7:15 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: Failed to fetch URL ftp://ftp.debian.org/debian/pool/main/h/heirloom-mailx/heirloom-mailx_12.5-1.diff.gz;name=patch, attempting MIRRORS if available

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-extended/mailx/mailx_12.5.bb |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-extended/mailx/mailx_12.5.bb b/meta/recipes-extended/mailx/mailx_12.5.bb
index f2899d5..9103d53 100644
--- a/meta/recipes-extended/mailx/mailx_12.5.bb
+++ b/meta/recipes-extended/mailx/mailx_12.5.bb
@@ -12,8 +12,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4202a0a62910cf94f7af8a3436a2a2dd"
 
 DEPENDS = "openssl"
 
-SRC_URI = "${DEBIAN_MIRROR}/main/h/heirloom-mailx/heirloom-mailx_${PV}.orig.tar.gz;name=archive \
-           ${DEBIAN_MIRROR}/main/h/heirloom-mailx/heirloom-mailx_${PV}-1.diff.gz;name=patch \
+SRC_URI = "http://snapshot.debian.org/archive/debian/20110427T035506Z/pool/main/h/heirloom-mailx/heirloom-mailx_${PV}.orig.tar.gz;name=archive \
+           http://snapshot.debian.org/archive/debian/20110427T035506Z/pool/main/h/heirloom-mailx/heirloom-mailx_${PV}-1.diff.gz;name=patch \
            file://explicitly.disable.krb5.support.patch \
           "
 
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 4/6] apt: fix SRC_URI
  2015-03-09  7:15 [V2 PATCH 0/6] meta: fix SRC_URI Robert Yang
                   ` (2 preceding siblings ...)
  2015-03-09  7:15 ` [PATCH 3/6] mailx: " Robert Yang
@ 2015-03-09  7:15 ` Robert Yang
  2015-03-09  7:15 ` [PATCH 5/6] net-tools: " Robert Yang
  2015-03-09  7:15 ` [PATCH 6/6] resolvconf: " Robert Yang
  5 siblings, 0 replies; 12+ messages in thread
From: Robert Yang @ 2015-03-09  7:15 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: Failed to fetch URL ftp://ftp.debian.org/debian/pool/main/a/apt/apt_0.9.9.4.tar.gz, attempting MIRRORS if available

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-devtools/apt/apt.inc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/apt/apt.inc b/meta/recipes-devtools/apt/apt.inc
index 378021a..321934b 100644
--- a/meta/recipes-devtools/apt/apt.inc
+++ b/meta/recipes-devtools/apt/apt.inc
@@ -2,7 +2,7 @@ SUMMARY = "Advanced front-end for dpkg"
 LICENSE = "GPLv2.0+"
 SECTION = "base"
 
-SRC_URI = "${DEBIAN_MIRROR}/main/a/apt/apt_${PV}.tar.gz \
+SRC_URI = "http://snapshot.debian.org/archive/debian/20130726T154545Z/pool/main/a/${BPN}/${BPN}_${PV}.tar.gz \
            file://no-ko-translation.patch \
            file://use-host.patch \
            file://makerace.patch \
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 5/6] net-tools: fix SRC_URI
  2015-03-09  7:15 [V2 PATCH 0/6] meta: fix SRC_URI Robert Yang
                   ` (3 preceding siblings ...)
  2015-03-09  7:15 ` [PATCH 4/6] apt: " Robert Yang
@ 2015-03-09  7:15 ` Robert Yang
  2015-03-09 16:03   ` Khem Raj
  2015-03-09  7:15 ` [PATCH 6/6] resolvconf: " Robert Yang
  5 siblings, 1 reply; 12+ messages in thread
From: Robert Yang @ 2015-03-09  7:15 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: Failed to fetch URL ftp://ftp.debian.org/debian/pool/main/n/net-tools/net-tools_1.60-25.diff.gz;apply=no;name=patch, attempting MIRRORS if available

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 .../net-tools/net-tools_1.60-25.bb                 |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-extended/net-tools/net-tools_1.60-25.bb b/meta/recipes-extended/net-tools/net-tools_1.60-25.bb
index 0e4ee75..c47d69a 100644
--- a/meta/recipes-extended/net-tools/net-tools_1.60-25.bb
+++ b/meta/recipes-extended/net-tools/net-tools_1.60-25.bb
@@ -6,8 +6,8 @@ LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \
                     file://ifconfig.c;beginline=11;endline=15;md5=d1ca372080ad5401e23ca0afc35cf9ba"
 
-SRC_URI = "${DEBIAN_MIRROR}/main/n/net-tools/net-tools_1.60.orig.tar.gz;name=tarball \
-           ${DEBIAN_MIRROR}/main/n/net-tools/${BPN}_${PV}.diff.gz;apply=no;name=patch \
+SRC_URI = "http://snapshot.debian.org/archive/debian/20050312T000000Z/pool/main/n/${BPN}/${BPN}_1.60.orig.tar.gz;name=tarball \
+           http://snapshot.debian.org/archive/debian/20130511T214653Z/pool/main/n/${BPN}/${BPN}_${PV}.diff.gz;apply=no;name=patch \
            file://net-tools-config.h \
            file://net-tools-config.make \
            file://ifconfig-interface-0-del-IP-will-remove-the-aliased-.patch \
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 6/6] resolvconf: fix SRC_URI
  2015-03-09  7:15 [V2 PATCH 0/6] meta: fix SRC_URI Robert Yang
                   ` (4 preceding siblings ...)
  2015-03-09  7:15 ` [PATCH 5/6] net-tools: " Robert Yang
@ 2015-03-09  7:15 ` Robert Yang
  5 siblings, 0 replies; 12+ messages in thread
From: Robert Yang @ 2015-03-09  7:15 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: Failed to fetch URL ftp://ftp.debian.org/debian/pool/main/r/resolvconf/resolvconf_1.76.tar.xz, attempting MIRRORS if available

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 .../resolvconf/resolvconf_1.76.bb                  |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta/recipes-connectivity/resolvconf/resolvconf_1.76.bb b/meta/recipes-connectivity/resolvconf/resolvconf_1.76.bb
index 20a2c19..797e9b0 100644
--- a/meta/recipes-connectivity/resolvconf/resolvconf_1.76.bb
+++ b/meta/recipes-connectivity/resolvconf/resolvconf_1.76.bb
@@ -11,12 +11,11 @@ AUTHOR = "Thomas Hood"
 HOMEPAGE = "http://packages.debian.org/resolvconf"
 RDEPENDS_${PN} = "bash"
 
-SRC_URI = "${DEBIAN_MIRROR}/main/r/resolvconf/resolvconf_${PV}.tar.xz \
+SRC_URI = "http://snapshot.debian.org/archive/debian/20141013T184415Z/pool/main/r/${BPN}/${BPN}_1.76.tar.xz \
            file://fix-path-for-busybox.patch \
            file://99_resolvconf \
           "
 
-
 SRC_URI[md5sum] = "d78ce30ea068999cd3e0523300b27255"
 SRC_URI[sha256sum] = "c9f40f7405b37399ddbf29ca4205b4911ee35cb9ffd9be7671faa2385b1fa573"
 
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH 1/6] xinetd: fixe HOMEPAGE and SRC_URI
  2015-03-09  7:15 ` [PATCH 1/6] xinetd: fixe HOMEPAGE and SRC_URI Robert Yang
@ 2015-03-09 15:59   ` Khem Raj
  2015-03-10  3:20     ` Robert Yang
  0 siblings, 1 reply; 12+ messages in thread
From: Khem Raj @ 2015-03-09 15:59 UTC (permalink / raw)
  To: Robert Yang; +Cc: openembedded-core


> On Mar 9, 2015, at 12:15 AM, Robert Yang <liezhi.yang@windriver.com> wrote:
> 
> The www.xinetd.org is not available, use github as the HOMEPAGE and
> pkgs.fedoraproject.org as the SRC_URI.
> 
> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> ---
> meta/recipes-extended/xinetd/xinetd_2.3.15.bb |    4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb
> index 288186e..f07a33f 100644
> --- a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb
> +++ b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb
> @@ -1,5 +1,5 @@
> SUMMARY = "Socket-based service activation daemon"
> -HOMEPAGE = "http://www.xinetd.org"
> +HOMEPAGE = "https://github.com/xinetd-org/xinetd"
> 
> # xinetd is a BSD-like license
> # Apple and Gentoo say BSD here.
> @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=8ad8615198542444f84d28a6cf226dd8"
> DEPENDS = ""
> PR = "r2"
> 
> -SRC_URI = "http://www.xinetd.org/xinetd-${PV}.tar.gz \
> +SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/${BPN}/${BP}.tar.gz/77358478fd58efa6366accae99b8b04c/${BP}.tar.gz \

This snapshot can go away too. I would be more comfortable if you just checked it out from github straight.

>       file://xinetd.init \
>       file://xinetd.conf \
>       file://xinetd.default \
> -- 
> 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] 12+ messages in thread

* Re: [PATCH 5/6] net-tools: fix SRC_URI
  2015-03-09  7:15 ` [PATCH 5/6] net-tools: " Robert Yang
@ 2015-03-09 16:03   ` Khem Raj
  2015-03-09 16:06     ` Burton, Ross
  0 siblings, 1 reply; 12+ messages in thread
From: Khem Raj @ 2015-03-09 16:03 UTC (permalink / raw)
  To: Robert Yang; +Cc: openembedded-core


> On Mar 9, 2015, at 12:15 AM, Robert Yang <liezhi.yang@windriver.com> wrote:
> 
> -SRC_URI = "${DEBIAN_MIRROR}/main/n/net-tools/net-tools_1.60.orig.tar.gz;name=tarball \
> -           ${DEBIAN_MIRROR}/main/n/net-tools/${BPN}_${PV}.diff.gz;apply=no;name=patch \
> +SRC_URI = "http://snapshot.debian.org/archive/debian/20050312T000000Z/pool/main/n/${BPN}/${BPN}_1.60.orig.tar.gz;name=tarball \
> +           http://snapshot.debian.org/archive/debian/20130511T214653Z/pool/main/n/${BPN}/${BPN}_${PV}.diff.gz;apply=no;name=patch \

it would be nicer to use http://archive.debian.org/debian/pool/main/n/net-tools/ instead of snapshot.debian.org through out this series

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 5/6] net-tools: fix SRC_URI
  2015-03-09 16:03   ` Khem Raj
@ 2015-03-09 16:06     ` Burton, Ross
  2015-03-10  3:21       ` Robert Yang
  0 siblings, 1 reply; 12+ messages in thread
From: Burton, Ross @ 2015-03-09 16:06 UTC (permalink / raw)
  To: Khem Raj; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 325 bytes --]

On 9 March 2015 at 16:03, Khem Raj <raj.khem@gmail.com> wrote:

> it would be nicer to use
> http://archive.debian.org/debian/pool/main/n/net-tools/ instead of
> snapshot.debian.org through out this series
>

Apart from that 1.6.0-25.diff.gz isn't in
http://archive.debian.org/debian/pool/main/n/net-tools/.

Ross

[-- Attachment #2: Type: text/html, Size: 995 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 1/6] xinetd: fixe HOMEPAGE and SRC_URI
  2015-03-09 15:59   ` Khem Raj
@ 2015-03-10  3:20     ` Robert Yang
  0 siblings, 0 replies; 12+ messages in thread
From: Robert Yang @ 2015-03-10  3:20 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-core



On 03/09/2015 11:59 PM, Khem Raj wrote:
>
>> On Mar 9, 2015, at 12:15 AM, Robert Yang <liezhi.yang@windriver.com> wrote:
>>
>> The www.xinetd.org is not available, use github as the HOMEPAGE and
>> pkgs.fedoraproject.org as the SRC_URI.
>>
>> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>> ---
>> meta/recipes-extended/xinetd/xinetd_2.3.15.bb |    4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb
>> index 288186e..f07a33f 100644
>> --- a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb
>> +++ b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb
>> @@ -1,5 +1,5 @@
>> SUMMARY = "Socket-based service activation daemon"
>> -HOMEPAGE = "http://www.xinetd.org"
>> +HOMEPAGE = "https://github.com/xinetd-org/xinetd"
>>
>> # xinetd is a BSD-like license
>> # Apple and Gentoo say BSD here.
>> @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=8ad8615198542444f84d28a6cf226dd8"
>> DEPENDS = ""
>> PR = "r2"
>>
>> -SRC_URI = "http://www.xinetd.org/xinetd-${PV}.tar.gz \
>> +SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/${BPN}/${BP}.tar.gz/77358478fd58efa6366accae99b8b04c/${BP}.tar.gz \
>
> This snapshot can go away too. I would be more comfortable if you just checked it out from github straight.

Thanks, how about use git please ?
SRC_URI = "git://github.com/xinetd-org/xinetd.git;protocol=https

// Robert

>
>>        file://xinetd.init \
>>        file://xinetd.conf \
>>        file://xinetd.default \
>> --
>> 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] 12+ messages in thread

* Re: [PATCH 5/6] net-tools: fix SRC_URI
  2015-03-09 16:06     ` Burton, Ross
@ 2015-03-10  3:21       ` Robert Yang
  0 siblings, 0 replies; 12+ messages in thread
From: Robert Yang @ 2015-03-10  3:21 UTC (permalink / raw)
  To: Burton, Ross, Khem Raj; +Cc: OE-core



On 03/10/2015 12:06 AM, Burton, Ross wrote:
>
> On 9 March 2015 at 16:03, Khem Raj <raj.khem@gmail.com
> <mailto:raj.khem@gmail.com>> wrote:
>
>     it would be nicer to use
>     http://archive.debian.org/debian/pool/main/n/net-tools/ instead of
>     snapshot.debian.org <http://snapshot.debian.org> through out this series
>
>
> Apart from that 1.6.0-25.diff.gz isn't in
> http://archive.debian.org/debian/pool/main/n/net-tools/.

Yes, that's why we need fix it.

// Robert

>
> Ross


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2015-03-10  3:21 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-09  7:15 [V2 PATCH 0/6] meta: fix SRC_URI Robert Yang
2015-03-09  7:15 ` [PATCH 1/6] xinetd: fixe HOMEPAGE and SRC_URI Robert Yang
2015-03-09 15:59   ` Khem Raj
2015-03-10  3:20     ` Robert Yang
2015-03-09  7:15 ` [PATCH 2/6] libevent: fix SRC_URI Robert Yang
2015-03-09  7:15 ` [PATCH 3/6] mailx: " Robert Yang
2015-03-09  7:15 ` [PATCH 4/6] apt: " Robert Yang
2015-03-09  7:15 ` [PATCH 5/6] net-tools: " Robert Yang
2015-03-09 16:03   ` Khem Raj
2015-03-09 16:06     ` Burton, Ross
2015-03-10  3:21       ` Robert Yang
2015-03-09  7:15 ` [PATCH 6/6] resolvconf: " Robert Yang

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.