All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe-classic][udev][PATCH 0/5] update recipe SRC_URI
@ 2012-06-23 19:16 Apelete Seketeli
  2012-06-23 19:19 ` [oe-classic][udev][PATCH 1/5] udev: update SRC_URI of udev-151 recipe Apelete Seketeli
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Apelete Seketeli @ 2012-06-23 19:16 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Kristoffer Ericson

Hello,

Some of the udev source tarballs are no longer available on the
kernel.org repository. As a consequence, the corresponding recipes in
oe classic fail to build. I found a mirror where these source tarballs
are still available, and updated the recipes in oe classic
accordingly.

The five patches that come as a follow-up of this message are what
it's all about.

Apelete Seketeli (5):
  udev: update SRC_URI of udev-151 recipe
  udev: update SRC_URI of udev-154 recipe
  udev: update SRC_URI of udev-162 recipe
  udev: update SRC_URI of udev-165 recipe
  udev: update SRC_URI of udev-168 recipe

 recipes/udev/udev_151.bb |    2 +-
 recipes/udev/udev_154.bb |    2 +-
 recipes/udev/udev_162.bb |    2 +-
 recipes/udev/udev_165.bb |    2 +-
 recipes/udev/udev_168.bb |    2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

-- 
1.7.10


-- 
        Apelete



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

* [oe-classic][udev][PATCH 1/5] udev: update SRC_URI of udev-151 recipe
  2012-06-23 19:16 [oe-classic][udev][PATCH 0/5] update recipe SRC_URI Apelete Seketeli
@ 2012-06-23 19:19 ` Apelete Seketeli
  2012-06-23 19:20 ` [oe-classic][udev][PATCH 2/5] udev: update SRC_URI of udev-154 recipe Apelete Seketeli
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Apelete Seketeli @ 2012-06-23 19:19 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Kristoffer Ericson

This patch updates the SRC_URI of udev_151.bb to www.mirrorservice.org
because the corresponding source package is no longer available at
kernel.org.

Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
 recipes/udev/udev_151.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes/udev/udev_151.bb b/recipes/udev/udev_151.bb
index b977b7d..2f28a1c 100644
--- a/recipes/udev/udev_151.bb
+++ b/recipes/udev/udev_151.bb
@@ -12,7 +12,7 @@ DEFAULT_PREFERENCE = "-1"
 DEPENDS = "gperf-native usbutils acl glib-2.0"
 RDEPENDS_${PN} += "module-init-tools-depmod udev-utils"
 
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
+SRC_URI = "http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
 	   file://udev-replace-le16toh.patch \
 	   file://udev-replace-lutimes.patch \
 	   file://mount.blacklist \
-- 
1.7.10

-- 
        Apelete



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

* [oe-classic][udev][PATCH 2/5] udev: update SRC_URI of udev-154 recipe
  2012-06-23 19:16 [oe-classic][udev][PATCH 0/5] update recipe SRC_URI Apelete Seketeli
  2012-06-23 19:19 ` [oe-classic][udev][PATCH 1/5] udev: update SRC_URI of udev-151 recipe Apelete Seketeli
@ 2012-06-23 19:20 ` Apelete Seketeli
  2012-06-23 19:21 ` [oe-classic][udev][PATCH 3/5] udev: update SRC_URI of udev-162 recipe Apelete Seketeli
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Apelete Seketeli @ 2012-06-23 19:20 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Kristoffer Ericson

This patch updates the SRC_URI of udev_154.bb to www.mirrorservice.org
because the corresponding source package is no longer available at
kernel.org.

Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
 recipes/udev/udev_154.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes/udev/udev_154.bb b/recipes/udev/udev_154.bb
index fcb6471..95162da 100644
--- a/recipes/udev/udev_154.bb
+++ b/recipes/udev/udev_154.bb
@@ -15,7 +15,7 @@ RDEPENDS_${PN} += "module-init-tools-depmod udev-utils"
 SRC_URI[md5sum] = "4ee3bcc4e326e967167ccb6a6ba04514"
 SRC_URI[sha256sum] = "29d66a5a8499cc6e4f2bcc7f79f2c6b44f4d720cecef2e552f0354d792e40a83"
 
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
+SRC_URI = "http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
 	   file://mount.blacklist \
 	   file://run.rules \
 	   "
-- 
1.7.10

-- 
        Apelete



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

* [oe-classic][udev][PATCH 3/5] udev: update SRC_URI of udev-162 recipe
  2012-06-23 19:16 [oe-classic][udev][PATCH 0/5] update recipe SRC_URI Apelete Seketeli
  2012-06-23 19:19 ` [oe-classic][udev][PATCH 1/5] udev: update SRC_URI of udev-151 recipe Apelete Seketeli
  2012-06-23 19:20 ` [oe-classic][udev][PATCH 2/5] udev: update SRC_URI of udev-154 recipe Apelete Seketeli
@ 2012-06-23 19:21 ` Apelete Seketeli
  2012-06-23 19:22 ` [oe-classic][udev][PATCH 4/5] udev: update SRC_URI of udev-165 recipe Apelete Seketeli
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Apelete Seketeli @ 2012-06-23 19:21 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Kristoffer Ericson

This patch updates the SRC_URI of udev_162.bb to www.mirrorservice.org
because the corresponding source package is no longer available at
kernel.org.

Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
 recipes/udev/udev_162.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes/udev/udev_162.bb b/recipes/udev/udev_162.bb
index c0b7529..8a15ae5 100644
--- a/recipes/udev/udev_162.bb
+++ b/recipes/udev/udev_162.bb
@@ -16,7 +16,7 @@ RDEPENDS_${PN} += "module-init-tools-depmod udev-utils"
 SRC_URI[md5sum] = "7c537de77442317ef1b93f9dba38fd4e"
 SRC_URI[sha256sum] = "f536de7fc0ec231cb793aae9501c648763901d4360c27a864d1bdf3ed8aca00f"
 
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
+SRC_URI = "http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
 	   file://mount.blacklist \
 	   file://run.rules \
 	   "
-- 
1.7.10

-- 
        Apelete



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

* [oe-classic][udev][PATCH 4/5] udev: update SRC_URI of udev-165 recipe
  2012-06-23 19:16 [oe-classic][udev][PATCH 0/5] update recipe SRC_URI Apelete Seketeli
                   ` (2 preceding siblings ...)
  2012-06-23 19:21 ` [oe-classic][udev][PATCH 3/5] udev: update SRC_URI of udev-162 recipe Apelete Seketeli
@ 2012-06-23 19:22 ` Apelete Seketeli
  2012-06-23 19:23 ` [oe-classic][udev][PATCH 5/5] udev: update SRC_URI of udev-168 recipe Apelete Seketeli
  2012-06-27 16:36 ` [oe-classic][udev][PATCH 0/5] update recipe SRC_URI Apelete Seketeli
  5 siblings, 0 replies; 7+ messages in thread
From: Apelete Seketeli @ 2012-06-23 19:22 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Kristoffer Ericson


This patch updates the SRC_URI of udev_165.bb to www.mirrorservice.org
because the corresponding source package is no longer available at
kernel.org.

Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
 recipes/udev/udev_165.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes/udev/udev_165.bb b/recipes/udev/udev_165.bb
index 423e101..c50af10 100644
--- a/recipes/udev/udev_165.bb
+++ b/recipes/udev/udev_165.bb
@@ -12,7 +12,7 @@ DEFAULT_PREFERENCE = "-1"
 DEPENDS = "gperf-native usbutils acl glib-2.0 mtd-utils"
 RDEPENDS_${PN} += "module-init-tools-depmod udev-utils"
 
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
+SRC_URI = "http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
 	   file://mount.blacklist \
 	   file://run.rules \
 	   "
-- 
1.7.10

-- 
        Apelete



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

* [oe-classic][udev][PATCH 5/5] udev: update SRC_URI of udev-168 recipe
  2012-06-23 19:16 [oe-classic][udev][PATCH 0/5] update recipe SRC_URI Apelete Seketeli
                   ` (3 preceding siblings ...)
  2012-06-23 19:22 ` [oe-classic][udev][PATCH 4/5] udev: update SRC_URI of udev-165 recipe Apelete Seketeli
@ 2012-06-23 19:23 ` Apelete Seketeli
  2012-06-27 16:36 ` [oe-classic][udev][PATCH 0/5] update recipe SRC_URI Apelete Seketeli
  5 siblings, 0 replies; 7+ messages in thread
From: Apelete Seketeli @ 2012-06-23 19:23 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Kristoffer Ericson


This patch updates the SRC_URI of udev_168.bb to www.mirrorservice.org
because the corresponding source package is no longer available at
kernel.org.

Signed-off-by: Apelete Seketeli <apelete@seketeli.net>
---
 recipes/udev/udev_168.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes/udev/udev_168.bb b/recipes/udev/udev_168.bb
index 4ff2e22..744def1 100644
--- a/recipes/udev/udev_168.bb
+++ b/recipes/udev/udev_168.bb
@@ -15,7 +15,7 @@ PR = "r2"
 # Needed for udev-extras
 DEPENDS = "gperf-native usbutils acl glib-2.0"
 
-SRC_URI = "http://kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz"
+SRC_URI = "http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz"
 SRC_URI[md5sum] = "08eb7c2564bc89defcefdaa6ec4a9fc1"
 SRC_URI[sha256sum] = "1d5c548d7c85d30b3508b82ad88d853e28dddb6c526d0e67aa92ac18af93d218"
 
-- 
1.7.10

-- 
        Apelete



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

* Re: [oe-classic][udev][PATCH 0/5] update recipe SRC_URI
  2012-06-23 19:16 [oe-classic][udev][PATCH 0/5] update recipe SRC_URI Apelete Seketeli
                   ` (4 preceding siblings ...)
  2012-06-23 19:23 ` [oe-classic][udev][PATCH 5/5] udev: update SRC_URI of udev-168 recipe Apelete Seketeli
@ 2012-06-27 16:36 ` Apelete Seketeli
  5 siblings, 0 replies; 7+ messages in thread
From: Apelete Seketeli @ 2012-06-27 16:36 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Kristoffer Ericson

Hello,

Le 23-Jun-12, Apelete Seketeli a écrit:
> 
> Some of the udev source tarballs are no longer available on the
> kernel.org repository. As a consequence, the corresponding recipes in
> oe classic fail to build. I found a mirror where these source tarballs
> are still available, and updated the recipes in oe classic
> accordingly.
> 
> The five patches that come as a follow-up of this message are what
> it's all about.
> 
> Apelete Seketeli (5):
>   udev: update SRC_URI of udev-151 recipe
>   udev: update SRC_URI of udev-154 recipe
>   udev: update SRC_URI of udev-162 recipe
>   udev: update SRC_URI of udev-165 recipe
>   udev: update SRC_URI of udev-168 recipe
> 
>  recipes/udev/udev_151.bb |    2 +-
>  recipes/udev/udev_154.bb |    2 +-
>  recipes/udev/udev_162.bb |    2 +-
>  recipes/udev/udev_165.bb |    2 +-
>  recipes/udev/udev_168.bb |    2 +-
>  5 files changed, 5 insertions(+), 5 deletions(-)
> 
> -- 
> 1.7.10

I need the five patches for udev found in this thread in order to
build muffinman-image in oe-classic (it does not build anymore in its
current state). Can someone please review those patches ?

Cheers.
-- 
        Apelete



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

end of thread, other threads:[~2012-06-27 16:47 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-23 19:16 [oe-classic][udev][PATCH 0/5] update recipe SRC_URI Apelete Seketeli
2012-06-23 19:19 ` [oe-classic][udev][PATCH 1/5] udev: update SRC_URI of udev-151 recipe Apelete Seketeli
2012-06-23 19:20 ` [oe-classic][udev][PATCH 2/5] udev: update SRC_URI of udev-154 recipe Apelete Seketeli
2012-06-23 19:21 ` [oe-classic][udev][PATCH 3/5] udev: update SRC_URI of udev-162 recipe Apelete Seketeli
2012-06-23 19:22 ` [oe-classic][udev][PATCH 4/5] udev: update SRC_URI of udev-165 recipe Apelete Seketeli
2012-06-23 19:23 ` [oe-classic][udev][PATCH 5/5] udev: update SRC_URI of udev-168 recipe Apelete Seketeli
2012-06-27 16:36 ` [oe-classic][udev][PATCH 0/5] update recipe SRC_URI Apelete Seketeli

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.