All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] fix SRC_URI and others
@ 2015-01-28  6:52 Robert Yang
  2015-01-28  6:52 ` [PATCH 01/12] dpkg: add perl to RDEPENDS Robert Yang
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

There are still other do_ferch errors after these fixes:
WARNING: Failed to fetch URL http://createrepo.baseurl.org/download/createrepo-0.4.11.tar.gz, attempting MIRRORS if available
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
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
WARNING: Failed to fetch URL http://www.xinetd.org/xinetd-2.3.15.tar.gz, attempting MIRRORS if available
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

I'd like to go on fixing them if this is fine, such as use
pkgs.fedoraproject.org or yocto's mirror to instead of.

// Robert

The following changes since commit 2a775ebbb175dd70fc7228607c306d4ccb9e4ba4:

  net-tools: Fix rerunning of do_patch task (2015-01-23 14:32:40 +0000)

are available in the git repository at:

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

Robert Yang (12):
  dpkg: add perl to RDEPENDS
  screen: add PACKAGECONFIG for libutempter
  perf: add LIBNUMA_DEFINES
  cdrtools-native: fix HOMEPAGE and SRC_URI
  base-passwd: fix SRC_URI
  dosfstools: fix SRC_URI
  cwautomacros: fix SRC_URI and HOMEPAGE
  man: fix SRC_URI
  pax: fix SRC_URI and HOMEPAGE
  latencytop: fix SRC_URI and HOMEPAGE
  pcmciautils: fix SRC_URI and HOMEPAGE
  mingetty: fix SRC_URI

 meta/recipes-bsp/pcmciautils/pcmciautils.inc       |    4 ++--
 .../recipes-core/base-passwd/base-passwd_3.5.29.bb |    2 +-
 .../cdrtools/cdrtools-native_3.01a20.bb            |    4 ++--
 .../recipes-devtools/dosfstools/dosfstools_2.11.bb |    3 ++-
 meta/recipes-devtools/dpkg/dpkg.inc                |    2 +-
 .../cwautomacros/cwautomacros_20110201.bb          |    4 ++--
 meta/recipes-extended/man/man_1.6g.bb              |    2 +-
 meta/recipes-extended/mingetty/mingetty_1.08.bb    |    2 +-
 meta/recipes-extended/pax/pax_3.4.bb               |    4 ++--
 meta/recipes-extended/screen/screen_4.0.3.bb       |    3 +++
 meta/recipes-kernel/latencytop/latencytop_0.5.bb   |    2 +-
 meta/recipes-kernel/perf/perf.bb                   |    4 +++-
 12 files changed, 21 insertions(+), 15 deletions(-)

-- 
1.7.9.5



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

* [PATCH 01/12] dpkg: add perl to RDEPENDS
  2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
@ 2015-01-28  6:52 ` Robert Yang
  2015-01-28  6:52 ` [PATCH 02/12] screen: add PACKAGECONFIG for libutempter Robert Yang
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

perl scripts:
packages-split/dpkg/usr/bin/dpkg-parsechangelog:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-mergechangelogs:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-architecture:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-vendor:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-shlibdeps:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-scanpackages:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-buildpackage:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-genchanges:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-gensymbols:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-distaddfile:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-buildflags:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-checkbuilddeps:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-gencontrol:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-scansources:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-source:#!/usr/bin/perl
packages-split/dpkg/usr/bin/dpkg-name:#!/usr/bin/perl
packages-split/dpkg/usr/lib/dpkg/parsechangelog/debian:#!/usr/bin/perl

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

diff --git a/meta/recipes-devtools/dpkg/dpkg.inc b/meta/recipes-devtools/dpkg/dpkg.inc
index c3c51eb..9ad86e3 100644
--- a/meta/recipes-devtools/dpkg/dpkg.inc
+++ b/meta/recipes-devtools/dpkg/dpkg.inc
@@ -6,7 +6,7 @@ SRC_URI = "${DEBIAN_MIRROR}/main/d/dpkg/dpkg_${PV}.tar.xz"
 
 DEPENDS = "zlib bzip2 perl ncurses"
 DEPENDS_class-native = "bzip2-replacement-native zlib-native virtual/update-alternatives-native gettext-native perl-native"
-RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} xz run-postinsts"
+RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} xz run-postinsts perl"
 RDEPENDS_${PN}_class-native = "xz-native"
 
 S = "${WORKDIR}/${BPN}-${PV}"
-- 
1.7.9.5



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

* [PATCH 02/12] screen: add PACKAGECONFIG for libutempter
  2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
  2015-01-28  6:52 ` [PATCH 01/12] dpkg: add perl to RDEPENDS Robert Yang
@ 2015-01-28  6:52 ` Robert Yang
  2015-01-28  6:52 ` [PATCH 03/12] perf: add LIBNUMA_DEFINES Robert Yang
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: QA Issue: screen rdepends on libutempter, but it isn't a build dependency? [build-deps]

The libutempter is in meta-oe.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-extended/screen/screen_4.0.3.bb |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/recipes-extended/screen/screen_4.0.3.bb b/meta/recipes-extended/screen/screen_4.0.3.bb
index c5218ec..962a499 100644
--- a/meta/recipes-extended/screen/screen_4.0.3.bb
+++ b/meta/recipes-extended/screen/screen_4.0.3.bb
@@ -34,6 +34,9 @@ SRC_URI[patch.sha256sum] = "10acb274b2fb0bb7137a0d66e52fa0f18125bc5198c7a8d5af38
 
 inherit autotools texinfo
 
+PACKAGECONFIG ??= ""
+PACKAGECONFIG[utempter] = "ac_cv_header_utempter_h=yes,ac_cv_header_utempter_h=no,libutempter,"
+
 EXTRA_OECONF = "--with-pty-mode=0620 --with-pty-group=5 \
                ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam', '--disable-pam', d)}"
 
-- 
1.7.9.5



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

* [PATCH 03/12] perf: add LIBNUMA_DEFINES
  2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
  2015-01-28  6:52 ` [PATCH 01/12] dpkg: add perl to RDEPENDS Robert Yang
  2015-01-28  6:52 ` [PATCH 02/12] screen: add PACKAGECONFIG for libutempter Robert Yang
@ 2015-01-28  6:52 ` Robert Yang
  2015-01-28  6:52 ` [PATCH 04/12] cdrtools-native: fix HOMEPAGE and SRC_URI Robert Yang
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: QA Issue: perf rdepends on numactl, but it isn't a build dependency? [build-deps]

The numactl is in meta-oe.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-kernel/perf/perf.bb |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb
index 6925eb2..fcfd0ad 100644
--- a/meta/recipes-kernel/perf/perf.bb
+++ b/meta/recipes-kernel/perf/perf.bb
@@ -65,6 +65,7 @@ B = "${WORKDIR}/${BPN}-${PV}"
 SCRIPTING_DEFINES = "${@perf_feature_enabled('perf-scripting', '', 'NO_LIBPERL=1 NO_LIBPYTHON=1',d)}"
 TUI_DEFINES = "${@perf_feature_enabled('perf-tui', '', 'NO_NEWT=1',d)}"
 LIBUNWIND_DEFINES = "${@perf_feature_enabled('perf-libunwind', '', 'NO_LIBUNWIND=1 NO_LIBDW_DWARF_UNWIND=1',d)}"
+LIBNUMA_DEFINES = "${@perf_feature_enabled('perf-libnuma', '', 'NO_LIBNUMA=1',d)}"
 
 # The LDFLAGS is required or some old kernels fails due missing
 # symbols and this is preferred than requiring patches to every old
@@ -80,7 +81,8 @@ EXTRA_OEMAKE = '\
     AR="${AR}" \
     EXTRA_CFLAGS="-ldw" \
     perfexecdir=${libexecdir} \
-    NO_GTK2=1 ${TUI_DEFINES} NO_DWARF=1 ${LIBUNWIND_DEFINES} ${SCRIPTING_DEFINES} \
+    NO_GTK2=1 ${TUI_DEFINES} NO_DWARF=1 ${LIBUNWIND_DEFINES} \
+    ${SCRIPTING_DEFINES} ${LIBNUMA_DEFINES} \
 '
 
 EXTRA_OEMAKE += "\
-- 
1.7.9.5



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

* [PATCH 04/12] cdrtools-native: fix HOMEPAGE and SRC_URI
  2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
                   ` (2 preceding siblings ...)
  2015-01-28  6:52 ` [PATCH 03/12] perf: add LIBNUMA_DEFINES Robert Yang
@ 2015-01-28  6:52 ` Robert Yang
  2015-01-28  6:52 ` [PATCH 05/12] base-passwd: fix SRC_URI Robert Yang
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

The old ones are invalid, fixed:
WARNING: Failed to fetch URL ftp://ftp.berlios.de/pub/cdrecord/alpha/cdrtools-3.01a20.tar.bz2, attempting MIRRORS if available

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 .../cdrtools/cdrtools-native_3.01a20.bb            |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/cdrtools/cdrtools-native_3.01a20.bb b/meta/recipes-devtools/cdrtools/cdrtools-native_3.01a20.bb
index 01f9e6e..2827109 100644
--- a/meta/recipes-devtools/cdrtools/cdrtools-native_3.01a20.bb
+++ b/meta/recipes-devtools/cdrtools/cdrtools-native_3.01a20.bb
@@ -2,12 +2,12 @@
 # Copyright (C) 2004-2006, Advanced Micro Devices, Inc.  All Rights Reserved
 # Released under the MIT license (see packages/COPYING)
 SUMMARY = "A set of tools for CD recording, including cdrecord"
-HOMEPAGE = "http://cdrecord.berlios.de/private/cdrecord.html"
+HOMEPAGE = "http://sourceforge.net/projects/cdrtools/"
 SECTION = "console/utils"
 LICENSE = "GPLv2 & CDDL-1.0 & LGPLv2.1+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=32f68170be424c2cd64804337726b312"
 
-SRC_URI = "ftp://ftp.berlios.de/pub/cdrecord/alpha/cdrtools-${PV}.tar.bz2"
+SRC_URI = "${SOURCEFORGE_MIRROR}/project/cdrtools/alpha/cdrtools-${PV}.tar.bz2"
 
 SRC_URI[md5sum] = "f8c6f0fdcba7df0606095498d10315a7"
 SRC_URI[sha256sum] = "e399ea964b8048793721b71461271e46d81f242bd2feefb8dbd259c30e75a5a9"
-- 
1.7.9.5



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

* [PATCH 05/12] base-passwd: fix SRC_URI
  2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
                   ` (3 preceding siblings ...)
  2015-01-28  6:52 ` [PATCH 04/12] cdrtools-native: fix HOMEPAGE and SRC_URI Robert Yang
@ 2015-01-28  6:52 ` Robert Yang
  2015-01-28  6:52 ` [PATCH 06/12] dosfstools: " Robert Yang
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: Failed to fetch URL ftp://ftp.debian.org/debian/pool/main/b/base-passwd/base-passwd_3.5.29.tar.gz, attempting MIRRORS if available

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 .../recipes-core/base-passwd/base-passwd_3.5.29.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/base-passwd/base-passwd_3.5.29.bb b/meta/recipes-core/base-passwd/base-passwd_3.5.29.bb
index ec8f2af..aa24d58 100644
--- a/meta/recipes-core/base-passwd/base-passwd_3.5.29.bb
+++ b/meta/recipes-core/base-passwd/base-passwd_3.5.29.bb
@@ -4,7 +4,7 @@ SECTION = "base"
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a"
 
-SRC_URI = "${DEBIAN_MIRROR}/main/b/base-passwd/base-passwd_${PV}.tar.gz \
+SRC_URI = "https://launchpad.net/debian/+archive/primary/+files/${BPN}_${PV}.tar.gz \
            file://add_shutdown.patch \
            file://nobash.patch \
            file://noshadow.patch \
-- 
1.7.9.5



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

* [PATCH 06/12] dosfstools: fix SRC_URI
  2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
                   ` (4 preceding siblings ...)
  2015-01-28  6:52 ` [PATCH 05/12] base-passwd: fix SRC_URI Robert Yang
@ 2015-01-28  6:52 ` Robert Yang
  2015-01-28  6:52 ` [PATCH 07/12] cwautomacros: fix SRC_URI and HOMEPAGE Robert Yang
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: Failed to fetch URL ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/dosfstools-2.11.src.tar.gz, attempting MIRRORS if available

And add a HOMEPAGE for it, there is no dosfstools 2.11 on its official
page (but 3.x).

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 .../recipes-devtools/dosfstools/dosfstools_2.11.bb |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/dosfstools/dosfstools_2.11.bb b/meta/recipes-devtools/dosfstools/dosfstools_2.11.bb
index b59b250..d1c24b8 100644
--- a/meta/recipes-devtools/dosfstools/dosfstools_2.11.bb
+++ b/meta/recipes-devtools/dosfstools/dosfstools_2.11.bb
@@ -2,13 +2,14 @@
 # Copyright (C) 2004-2006, Advanced Micro Devices, Inc.  All Rights Reserved
 # Released under the MIT license (see packages/COPYING)
 SUMMARY = "DOS FAT Filesystem Utilities"
+HOMEPAGE = "http://daniel-baumann.ch/software/dosfstools/"
 
 SECTION = "base"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://mkdosfs/COPYING;md5=cbe67f08d6883bff587f615f0cc81aa8"
 PR = "r5"
 
-SRC_URI = "ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/dosfstools-${PV}.src.tar.gz \
+SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/${BPN}/${BP}.src.tar.gz/407d405ade410f7597d364ab5dc8c9f6/${BP}.src.tar.gz \
            file://mkdosfs-bootcode.patch \
            file://mkdosfs-dir.patch \
            file://alignment_hack.patch \
-- 
1.7.9.5



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

* [PATCH 07/12] cwautomacros: fix SRC_URI and HOMEPAGE
  2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
                   ` (5 preceding siblings ...)
  2015-01-28  6:52 ` [PATCH 06/12] dosfstools: " Robert Yang
@ 2015-01-28  6:52 ` Robert Yang
  2015-01-28  6:52 ` [PATCH 08/12] man: fix SRC_URI Robert Yang
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: Failed to fetch URL http://download.berlios.de/cwautomacros/cwautomacros-20110201.tar.bz2, attempting MIRRORS if available

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

diff --git a/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb b/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb
index 4e12169..43ea3ce 100644
--- a/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb
+++ b/meta/recipes-extended/cwautomacros/cwautomacros_20110201.bb
@@ -1,10 +1,10 @@
 SUMMARY = "Collection of autoconf m4 macros"
 SECTION = "base"
-HOMEPAGE = "http://cwautomacros.berlios.de/"
+HOMEPAGE = "http://sourceforge.net/projects/cwautomacros.berlios/"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=eb723b61539feef013de476e68b5c50a"
 
-SRC_URI = "http://download.berlios.de/cwautomacros/cwautomacros-${PV}.tar.bz2"
+SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}.berlios/${BP}.tar.bz2"
 SRC_URI[md5sum] = "074afcb50d0a8bff10786a2954b2b02d"
 SRC_URI[sha256sum] = "3115603b891f3a163c0bbb5fea2f3742113a183fa6745ee5e89e5f6d0e9f6121"
 
-- 
1.7.9.5



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

* [PATCH 08/12] man: fix SRC_URI
  2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
                   ` (6 preceding siblings ...)
  2015-01-28  6:52 ` [PATCH 07/12] cwautomacros: fix SRC_URI and HOMEPAGE Robert Yang
@ 2015-01-28  6:52 ` Robert Yang
  2015-01-28  6:52 ` [PATCH 09/12] pax: fix SRC_URI and HOMEPAGE Robert Yang
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: Failed to fetch URL http://primates.ximian.com/~flucifredi/man/man-1.6g.tar.gz, attempting MIRRORS if available

Its HOMEPAGE is also down, but can't find one for it.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-extended/man/man_1.6g.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/man/man_1.6g.bb b/meta/recipes-extended/man/man_1.6g.bb
index 985ed99..cd9edbe 100644
--- a/meta/recipes-extended/man/man_1.6g.bb
+++ b/meta/recipes-extended/man/man_1.6g.bb
@@ -22,7 +22,7 @@ def compress_pkg(d):
 
 RDEPENDS_${PN} += "${@compress_pkg(d)}"
 
-SRC_URI = "http://primates.ximian.com/~flucifredi/${BPN}/${BPN}-${PV}.tar.gz \
+SRC_URI = "http://pkgs.fedoraproject.org/lookaside/pkgs/man2html/${BP}.tar.gz/ba154d5796928b841c9c69f0ae376660/${BP}.tar.gz \
            file://man-1.5k-confpath.patch;striplevel=0 \
            file://man-1.5h1-make.patch \
            file://man-1.5k-nonascii.patch \
-- 
1.7.9.5



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

* [PATCH 09/12] pax: fix SRC_URI and HOMEPAGE
  2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
                   ` (7 preceding siblings ...)
  2015-01-28  6:52 ` [PATCH 08/12] man: fix SRC_URI Robert Yang
@ 2015-01-28  6:52 ` Robert Yang
  2015-01-28  6:52 ` [PATCH 10/12] latencytop: " Robert Yang
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: Failed to fetch URL ftp://ftp.suse.com/pub/people/kukuk/pax/pax-3.4.tar.bz2, attempting MIRRORS if available

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

diff --git a/meta/recipes-extended/pax/pax_3.4.bb b/meta/recipes-extended/pax/pax_3.4.bb
index 0c10688..ad04871 100644
--- a/meta/recipes-extended/pax/pax_3.4.bb
+++ b/meta/recipes-extended/pax/pax_3.4.bb
@@ -1,6 +1,6 @@
 SUMMARY = "Portable Archive eXchange"
 DESCRIPTION = "pax (Portable Archive eXchange) is the POSIX standard archive tool"
-HOMEPAGE = "http://www.openbsd.org/cgi-bin/cvsweb/src/bin/pax/"
+HOMEPAGE = "http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/bin/pax/"
 BUGTRACKER = "http://www.openbsd.org/query-pr.html"
 
 LICENSE = "BSD"
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4b0b674dfdc56daa3832d4069b820ea0 \
 SECTION = "base"
 PR = "r2"
 
-SRC_URI = "ftp://ftp.suse.com/pub/people/kukuk/pax/pax-${PV}.tar.bz2 \
+SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/${BPN}/${BP}.tar.bz2/fbd9023b590b45ac3ade95870702a0d6/${BP}.tar.bz2 \
 	file://fix_for_compile_with_gcc-4.6.0.patch \
 	file://pax-3.4_fix_for_x32.patch"
 
-- 
1.7.9.5



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

* [PATCH 10/12] latencytop: fix SRC_URI and HOMEPAGE
  2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
                   ` (8 preceding siblings ...)
  2015-01-28  6:52 ` [PATCH 09/12] pax: fix SRC_URI and HOMEPAGE Robert Yang
@ 2015-01-28  6:52 ` Robert Yang
  2015-01-28  6:52 ` [PATCH 11/12] pcmciautils: " Robert Yang
  2015-01-28  6:52 ` [PATCH 12/12] mingetty: fix SRC_URI Robert Yang
  11 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: Failed to fetch URL http://www.latencytop.org/download/latencytop-0.5.tar.gz, attempting MIRRORS if available

Its homepage is also down, but can't find a proper one atm.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-kernel/latencytop/latencytop_0.5.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-kernel/latencytop/latencytop_0.5.bb b/meta/recipes-kernel/latencytop/latencytop_0.5.bb
index e910a96..cb0a3c5 100644
--- a/meta/recipes-kernel/latencytop/latencytop_0.5.bb
+++ b/meta/recipes-kernel/latencytop/latencytop_0.5.bb
@@ -8,7 +8,7 @@ DEPENDS = "virtual/libintl ncurses glib-2.0"
 
 PR = "r3"
 
-SRC_URI = "http://www.latencytop.org/download/latencytop-${PV}.tar.gz \
+SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/${BPN}/${BP}.tar.gz/73bb3371c6ee0b0e68e25289027e865c/${BP}.tar.gz \
             file://latencytop-makefile.patch \
             file://latencytop-fsync.patch"
 
-- 
1.7.9.5



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

* [PATCH 11/12] pcmciautils: fix SRC_URI and HOMEPAGE
  2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
                   ` (9 preceding siblings ...)
  2015-01-28  6:52 ` [PATCH 10/12] latencytop: " Robert Yang
@ 2015-01-28  6:52 ` Robert Yang
  2015-01-28  6:52 ` [PATCH 12/12] mingetty: fix SRC_URI Robert Yang
  11 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: Failed to fetch URL http://kernel.org/pub/linux/utils/kernel/pcmcia/pcmciautils-018.tar.bz2, attempting MIRRORS if available

The pcmciautils-018.tar.bz2 is gone from kernel.org.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-bsp/pcmciautils/pcmciautils.inc |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-bsp/pcmciautils/pcmciautils.inc b/meta/recipes-bsp/pcmciautils/pcmciautils.inc
index eafe820..04056e3 100644
--- a/meta/recipes-bsp/pcmciautils/pcmciautils.inc
+++ b/meta/recipes-bsp/pcmciautils/pcmciautils.inc
@@ -1,5 +1,5 @@
 SUMMARY = "Linux kernel userland utilities for the PCMCIA subsystem"
-HOMEPAGE = "http://kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html"
+HOMEPAGE = "https://www.kernel.org/pub/linux/utils/kernel/pcmcia/"
 SECTION = "kernel/userland"
 
 LICENSE = "GPLv2"
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 DEPENDS = "udev sysfsutils flex-native"
 RDEPENDS_${PN} = "udev module-init-tools"
 
-SRC_URI = "${KERNELORG_MIRROR}/linux/utils/kernel/pcmcia/pcmciautils-${PV}.tar.bz2"
+SRC_URI = "http://mirror.linux.org.au/linux/utils/kernel/pcmcia/${BP}.tar.bz2"
 
 S = "${WORKDIR}/pcmciautils-${PV}"
 
-- 
1.7.9.5



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

* [PATCH 12/12] mingetty: fix SRC_URI
  2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
                   ` (10 preceding siblings ...)
  2015-01-28  6:52 ` [PATCH 11/12] pcmciautils: " Robert Yang
@ 2015-01-28  6:52 ` Robert Yang
  11 siblings, 0 replies; 13+ messages in thread
From: Robert Yang @ 2015-01-28  6:52 UTC (permalink / raw)
  To: openembedded-core

Fixed:
WARNING: Failed to fetch URL http://cdnetworks-kr-1.dl.sourceforge.net/project/mingetty/mingetty/1.08/mingetty-1.08.tar.gz, attempting MIRRORS if available

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-extended/mingetty/mingetty_1.08.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/mingetty/mingetty_1.08.bb b/meta/recipes-extended/mingetty/mingetty_1.08.bb
index f1936af..3c16228 100644
--- a/meta/recipes-extended/mingetty/mingetty_1.08.bb
+++ b/meta/recipes-extended/mingetty/mingetty_1.08.bb
@@ -5,7 +5,7 @@ LICENSE = "GPLv2"
 PR = "r3"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=0c56db0143f4f80c369ee3af7425af6e"
-SRC_URI = "http://cdnetworks-kr-1.dl.sourceforge.net/project/mingetty/mingetty/${PV}/mingetty-${PV}.tar.gz"
+SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.tar.gz"
 
 SRC_URI[md5sum] = "2a75ad6487ff271424ffc00a64420990"
 SRC_URI[sha256sum] = "0f55c90ba4faa913d91ef99cbf5cb2eb4dbe2780314c3bb17953f849c8cddd17"
-- 
1.7.9.5



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

end of thread, other threads:[~2015-01-28  6:52 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-28  6:52 [PATCH 00/12] fix SRC_URI and others Robert Yang
2015-01-28  6:52 ` [PATCH 01/12] dpkg: add perl to RDEPENDS Robert Yang
2015-01-28  6:52 ` [PATCH 02/12] screen: add PACKAGECONFIG for libutempter Robert Yang
2015-01-28  6:52 ` [PATCH 03/12] perf: add LIBNUMA_DEFINES Robert Yang
2015-01-28  6:52 ` [PATCH 04/12] cdrtools-native: fix HOMEPAGE and SRC_URI Robert Yang
2015-01-28  6:52 ` [PATCH 05/12] base-passwd: fix SRC_URI Robert Yang
2015-01-28  6:52 ` [PATCH 06/12] dosfstools: " Robert Yang
2015-01-28  6:52 ` [PATCH 07/12] cwautomacros: fix SRC_URI and HOMEPAGE Robert Yang
2015-01-28  6:52 ` [PATCH 08/12] man: fix SRC_URI Robert Yang
2015-01-28  6:52 ` [PATCH 09/12] pax: fix SRC_URI and HOMEPAGE Robert Yang
2015-01-28  6:52 ` [PATCH 10/12] latencytop: " Robert Yang
2015-01-28  6:52 ` [PATCH 11/12] pcmciautils: " Robert Yang
2015-01-28  6:52 ` [PATCH 12/12] mingetty: fix SRC_URI 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.