All of lore.kernel.org
 help / color / mirror / Atom feed
* [daisy][PATCH 00/15] SRC_URI and minor dependency fixes
@ 2017-09-08 23:21 Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 01/15] setserial: add missing depends on groff-native Andre McCurdy
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

Daisy has now (long since) left upstream maintenance and entered into
community support. As a member of a community which still actively
develops against this version of OE, I would like to propose the
following updates.

The SRC_URI fixes address fetcher failures which have crept in over
time and now cause build failures for new users etc who don't already
have a fully populated downloads directory.

The two dependency fixes are historical but often go unnoticed when
building on a fully installed host system. Unfortunately they become
more problematic when building within a minimal docker container etc
where the host versions of the tools are not installed by default.

Alejandro Hernandez (1):
  kernel: Added bc-native as DEPENDS

Alexander Kanavin (1):
  ossp-uuid: update SRC_URI to not use Google Code

Andre McCurdy (5):
  dpkg: update SRC_URI
  libproxy: update SRC_URI
  lsof: update SRC_URI
  netbase: update SRC_URI
  mklibs-native: update SRC_URI

Chang Rebecca Swee Fun (1):
  cryptodev-linux: update SRC_URI

Maxin B. John (1):
  ossp-uuid: use snapshot.debian.org for SRC_URI

Richard Purdie (1):
  pigz: Update SRC_URI

Robert Yang (4):
  base-passwd: fix SRC_URI
  dosfstools: fix SRC_URI
  mailx: fix SRC_URI
  stat: fix SRC_URI

Yue Tao (1):
  setserial: add missing depends on groff-native

 meta/classes/kernel.bbclass                          | 2 +-
 meta/recipes-bsp/setserial/setserial_2.17.bb         | 2 ++
 meta/recipes-core/base-passwd/base-passwd_3.5.29.bb  | 2 +-
 meta/recipes-core/netbase/netbase_5.2.bb             | 2 +-
 meta/recipes-devtools/dosfstools/dosfstools_2.11.bb  | 3 ++-
 meta/recipes-devtools/dpkg/dpkg.inc                  | 2 +-
 meta/recipes-devtools/mklibs/mklibs-native_0.1.38.bb | 2 +-
 meta/recipes-devtools/ossp-uuid/ossp-uuid_1.6.2.bb   | 3 ++-
 meta/recipes-extended/lsof/lsof_4.87.bb              | 2 +-
 meta/recipes-extended/mailx/mailx_12.5.bb            | 4 ++--
 meta/recipes-extended/pigz/pigz.inc                  | 2 +-
 meta/recipes-extended/stat/stat_3.3.bb               | 2 +-
 meta/recipes-kernel/cryptodev/cryptodev_1.6.inc      | 2 +-
 meta/recipes-support/libproxy/libproxy_0.4.11.bb     | 2 +-
 14 files changed, 18 insertions(+), 14 deletions(-)

-- 
1.9.1



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

* [daisy][PATCH 01/15] setserial: add missing depends on groff-native
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 02/15] kernel: Added bc-native as DEPENDS Andre McCurdy
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core; +Cc: Yue Tao, Jonas Zetterberg

From: Yue Tao <Yue.Tao@windriver.com>

[YOCTO #6526]

setserial needs groff-native to build

Signed-off-by: Jonas Zetterberg <jonas.zetterberg@windriver.com>
Signed-off-by: Yue Tao <yue.tao@windriver.com>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 1a1d1d89b490703ec163b82ba93f10a7d3e93270)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-bsp/setserial/setserial_2.17.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-bsp/setserial/setserial_2.17.bb b/meta/recipes-bsp/setserial/setserial_2.17.bb
index 65d6068..f1e8cd3 100644
--- a/meta/recipes-bsp/setserial/setserial_2.17.bb
+++ b/meta/recipes-bsp/setserial/setserial_2.17.bb
@@ -8,6 +8,8 @@ LICENSE = "GPLv2.0"
 LIC_FILES_CHKSUM = "file://version.h;beginline=1;endline=6;md5=2e7c59cb9e57e356ae81f50f4e4dfd99"
 PR = "r3"
 
+DEPENDS += "groff-native"
+
 inherit autotools-brokensep
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/setserial/${BPN}-${PV}.tar.gz \
-- 
1.9.1



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

* [daisy][PATCH 02/15] kernel: Added bc-native as DEPENDS
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 01/15] setserial: add missing depends on groff-native Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 03/15] base-passwd: fix SRC_URI Andre McCurdy
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

From: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>

The makefile checks for bc during for compilation

[YOCTO #6781]

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c067e52cffe002de3b39aa1bced308dd532859c1)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/classes/kernel.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 58b0ec8..922752b 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -1,7 +1,7 @@
 inherit linux-kernel-base kernel-module-split
 
 PROVIDES += "virtual/kernel"
-DEPENDS += "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}gcc kmod-native depmodwrapper-cross"
+DEPENDS += "virtual/${TARGET_PREFIX}binutils virtual/${TARGET_PREFIX}gcc kmod-native depmodwrapper-cross bc-native"
 
 # we include gcc above, we dont need virtual/libc
 INHIBIT_DEFAULT_DEPS = "1"
-- 
1.9.1



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

* [daisy][PATCH 03/15] base-passwd: fix SRC_URI
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 01/15] setserial: add missing depends on groff-native Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 02/15] kernel: Added bc-native as DEPENDS Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 04/15] dosfstools: " Andre McCurdy
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

From: Robert Yang <liezhi.yang@windriver.com>

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>
(cherry picked from commit 9ac88e3a9ac36ed83f01ac21db57a3c01a24385e)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/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 59bd413..ace94a6 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.9.1



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

* [daisy][PATCH 04/15] dosfstools: fix SRC_URI
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
                   ` (2 preceding siblings ...)
  2017-09-08 23:21 ` [daisy][PATCH 03/15] base-passwd: fix SRC_URI Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 05/15] mailx: " Andre McCurdy
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

From: Robert Yang <liezhi.yang@windriver.com>

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>
(cherry picked from commit cba73a598abc396fae4fb582be98fc04cb2a580f)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/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 a6a7ddc..c797c2a 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.9.1



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

* [daisy][PATCH 05/15] mailx: fix SRC_URI
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
                   ` (3 preceding siblings ...)
  2017-09-08 23:21 ` [daisy][PATCH 04/15] dosfstools: " Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 06/15] stat: " Andre McCurdy
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

From: Robert Yang <liezhi.yang@windriver.com>

The old one is not available any more.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
(cherry picked from commit 3569d434e754a62ec998fbf48380d653d1524dc4)
Signed-off-by: Andre McCurdy <armccurdy@gmail.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 cc0b6bf..77e2607 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 = "https://launchpad.net/ubuntu/+archive/primary/+files/heirloom-mailx_12.5.orig.tar.gz;name=archive \
+           https://launchpad.net/ubuntu/+archive/primary/+files/heirloom-mailx_12.5-1.diff.gz;name=patch \
            file://explicitly.disable.krb5.support.patch \
           "
 
-- 
1.9.1



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

* [daisy][PATCH 06/15] stat: fix SRC_URI
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
                   ` (4 preceding siblings ...)
  2017-09-08 23:21 ` [daisy][PATCH 05/15] mailx: " Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 07/15] ossp-uuid: update SRC_URI to not use Google Code Andre McCurdy
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

From: Robert Yang <liezhi.yang@windriver.com>

The old SRC_URI is redirected to the new one, fixed:
WARNING: Failed to fetch URL ftp://metalab.unc.edu/pub/Linux/utils/file/stat-3.3.tar.gz, attempting MIRRORS if available

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 45034239c7e38ec991aa75d7c30417c22bfdef28)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-extended/stat/stat_3.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/stat/stat_3.3.bb b/meta/recipes-extended/stat/stat_3.3.bb
index c9edb1d..afee06e 100644
--- a/meta/recipes-extended/stat/stat_3.3.bb
+++ b/meta/recipes-extended/stat/stat_3.3.bb
@@ -5,7 +5,7 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=39886b077fd072e876e5c4c16310b631 \
                     file://GPL;md5=94d55d512a9ba36caa9b7df079bae19f"
 
-SRC_URI = "ftp://metalab.unc.edu/pub/Linux/utils/file/stat-${PV}.tar.gz \
+SRC_URI = "http://www.ibiblio.org/pub/Linux/utils/file/${BP}.tar.gz \
            file://fix-error-return.patch"
 
 SRC_URI[md5sum] = "37e247e8e400ad9205f1b0500b728fd3"
-- 
1.9.1



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

* [daisy][PATCH 07/15] ossp-uuid: update SRC_URI to not use Google Code
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
                   ` (5 preceding siblings ...)
  2017-09-08 23:21 ` [daisy][PATCH 06/15] stat: " Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 08/15] ossp-uuid: use snapshot.debian.org for SRC_URI Andre McCurdy
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

From: Alexander Kanavin <alexander.kanavin@linux.intel.com>

Google Code is shutting down so tarballs will be fetched from a Debian mirror
instead

Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
(cherry picked from commit 779c53911da663f06437e8a06c9a8c361d614fe6)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-devtools/ossp-uuid/ossp-uuid_1.6.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/ossp-uuid/ossp-uuid_1.6.2.bb b/meta/recipes-devtools/ossp-uuid/ossp-uuid_1.6.2.bb
index f524854..e77be99 100644
--- a/meta/recipes-devtools/ossp-uuid/ossp-uuid_1.6.2.bb
+++ b/meta/recipes-devtools/ossp-uuid/ossp-uuid_1.6.2.bb
@@ -17,7 +17,7 @@ LIC_FILES_CHKSUM = "file://README;beginline=30;endline=55;md5=b394fadb039bbfca6a
 
 PR = "r2"
 
-SRC_URI = "http://gnome-build-stage-1.googlecode.com/files/uuid-1.6.2.tar.gz \
+SRC_URI = "${DEBIAN_MIRROR}/main/o/${BPN}/${BPN}_${PV}.orig.tar.gz \
 	   file://0001-Change-library-name.patch \
 	   file://0002-uuid-preserve-m-option-status-in-v-option-handling.patch \
 	   file://0003-Fix-whatis-entries.patch \
-- 
1.9.1



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

* [daisy][PATCH 08/15] ossp-uuid: use snapshot.debian.org for SRC_URI
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
                   ` (6 preceding siblings ...)
  2017-09-08 23:21 ` [daisy][PATCH 07/15] ossp-uuid: update SRC_URI to not use Google Code Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 09/15] pigz: Update SRC_URI Andre McCurdy
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

From: "Maxin B. John" <maxin.john@intel.com>

Using ${DEBIAN_MIRROR} for SRC_URI doesn't work very well as that will
only contain releases that are currently in Debian. So, move all of SRC_URI
to the .bb so it can use snapshot.debian.org instead, and set
UPSTREAM_CHECK_URI to ${DEBIAN_MIRROR} so upstream release checking continues
to work.

[YOCTO #10040]

Signed-off-by: Maxin B. John <maxin.john@intel.com>
(cherry picked from commit 1b38ad4cb8faeb86c5e8cb6b7201194722c5ef31)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-devtools/ossp-uuid/ossp-uuid_1.6.2.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/ossp-uuid/ossp-uuid_1.6.2.bb b/meta/recipes-devtools/ossp-uuid/ossp-uuid_1.6.2.bb
index e77be99..fef3fb7 100644
--- a/meta/recipes-devtools/ossp-uuid/ossp-uuid_1.6.2.bb
+++ b/meta/recipes-devtools/ossp-uuid/ossp-uuid_1.6.2.bb
@@ -16,8 +16,9 @@ LIC_FILES_CHKSUM = "file://README;beginline=30;endline=55;md5=b394fadb039bbfca6a
 	   file://uuid_md5.c;beginline=1;endline=28;md5=9c1f4b2218546deae24c91be1dcf00dd"
 
 PR = "r2"
+UPSTREAM_CHECK_URI = "${DEBIAN_MIRROR}/main/o/ossp-uuid/"
 
-SRC_URI = "${DEBIAN_MIRROR}/main/o/${BPN}/${BPN}_${PV}.orig.tar.gz \
+SRC_URI = "http://snapshot.debian.org/archive/debian/20160728T043443Z/pool/main/o/${BPN}/${BPN}_${PV}.orig.tar.gz \
 	   file://0001-Change-library-name.patch \
 	   file://0002-uuid-preserve-m-option-status-in-v-option-handling.patch \
 	   file://0003-Fix-whatis-entries.patch \
-- 
1.9.1



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

* [daisy][PATCH 09/15] pigz: Update SRC_URI
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
                   ` (7 preceding siblings ...)
  2017-09-08 23:21 ` [daisy][PATCH 08/15] ossp-uuid: use snapshot.debian.org for SRC_URI Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 10/15] cryptodev-linux: update SRC_URI Andre McCurdy
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

From: Richard Purdie <richard.purdie@linuxfoundation.org>

Upstream have released a new tarball and removed the old one. Revert to
the Yocto Project source mirror instead, preserving the upstream version
check.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 839b17ffd96abff3e9cf47fb4a6d680637c865b1)

Tweak commit to apply to older pigz v2.3.1 recipe in OE 1.6

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-extended/pigz/pigz.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/pigz/pigz.inc b/meta/recipes-extended/pigz/pigz.inc
index 355fb2a..5a9f982 100644
--- a/meta/recipes-extended/pigz/pigz.inc
+++ b/meta/recipes-extended/pigz/pigz.inc
@@ -7,7 +7,7 @@ HOMEPAGE = "http://zlib.net/pigz/"
 SECTION = "console/utils"
 LICENSE = "Zlib"
 
-SRC_URI = "http://zlib.net/pigz/pigz-${PV}.tar.gz"
+SRC_URI = "http://downloads.yoctoproject.org/mirror/sources/${BP}.tar.gz"
 
 PROVIDES_class-native += "gzip-native"
 
-- 
1.9.1



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

* [daisy][PATCH 10/15] cryptodev-linux: update SRC_URI
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
                   ` (8 preceding siblings ...)
  2017-09-08 23:21 ` [daisy][PATCH 09/15] pigz: Update SRC_URI Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 11/15] dpkg: " Andre McCurdy
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

From: Chang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com>

Gna! project announced that the download site from gna.org HTTP server
will soon be closing down. We have verified that the site is no longer
accessible without network proxy cache. We need to update SRC_URI to
point to new alternative (nwl.cc HTTP server) in order to avoid fetcher
issues in future.

[YOCTO #11575]

Signed-off-by: Chang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit dc8b21ae0ed3bceb9f3df4f6cd8f8f55b9c306fb)

Tweak commit to apply to older cryptodev 1.6 recipe in OE 1.6

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-kernel/cryptodev/cryptodev_1.6.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-kernel/cryptodev/cryptodev_1.6.inc b/meta/recipes-kernel/cryptodev/cryptodev_1.6.inc
index 946faac..4a9d0ab 100644
--- a/meta/recipes-kernel/cryptodev/cryptodev_1.6.inc
+++ b/meta/recipes-kernel/cryptodev/cryptodev_1.6.inc
@@ -3,7 +3,7 @@ HOMEPAGE = "http://cryptodev-linux.org/"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
 
-SRC_URI = "http://download.gna.org/cryptodev-linux/cryptodev-linux-${PV}.tar.gz"
+SRC_URI = "http://nwl.cc/pub/cryptodev-linux/cryptodev-linux-${PV}.tar.gz"
 
 SRC_URI[md5sum] = "eade38998313c25fd7934719cdf8a2ea"
 SRC_URI[sha256sum] = "75f1425c8ea1f8cae523905a5a046a35092327a6152800b0b86efc4e56fb3e2f"
-- 
1.9.1



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

* [daisy][PATCH 11/15] dpkg: update SRC_URI
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
                   ` (9 preceding siblings ...)
  2017-09-08 23:21 ` [daisy][PATCH 10/15] cryptodev-linux: update SRC_URI Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 12/15] libproxy: " Andre McCurdy
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

The upstream oe-core recipe fixed similar fetcher issues by switching
to a specific debian snapshot version. However, the debian snapshot
doesn't provide dpkg v1.17.4 so fetch from yoctoproject.org mirror
instead.

Signed-off-by: Andre McCurdy <armccurdy@gmail.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 eef7ce9..33bbb3b 100644
--- a/meta/recipes-devtools/dpkg/dpkg.inc
+++ b/meta/recipes-devtools/dpkg/dpkg.inc
@@ -2,7 +2,7 @@ SUMMARY = "Package maintenance system from Debian"
 LICENSE = "GPLv2.0+"
 SECTION = "base"
 
-SRC_URI = "${DEBIAN_MIRROR}/main/d/dpkg/dpkg_${PV}.tar.xz \
+SRC_URI = "http://downloads.yoctoproject.org/mirror/sources/dpkg_${PV}.tar.xz \
            file://ignore_extra_fields.patch"
 
 DEPENDS = "zlib bzip2 perl ncurses"
-- 
1.9.1



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

* [daisy][PATCH 12/15] libproxy: update SRC_URI
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
                   ` (10 preceding siblings ...)
  2017-09-08 23:21 ` [daisy][PATCH 11/15] dpkg: " Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 13/15] lsof: " Andre McCurdy
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

Google Code has been shut down so libproxy tarball needs to be
fetched from elsewhere.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-support/libproxy/libproxy_0.4.11.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-support/libproxy/libproxy_0.4.11.bb b/meta/recipes-support/libproxy/libproxy_0.4.11.bb
index aecb7b5..acfe8e5 100644
--- a/meta/recipes-support/libproxy/libproxy_0.4.11.bb
+++ b/meta/recipes-support/libproxy/libproxy_0.4.11.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \
 
 DEPENDS = "gconf glib-2.0"
 
-SRC_URI = "http://libproxy.googlecode.com/files/libproxy-${PV}.zip \
+SRC_URI = "http://downloads.yoctoproject.org/mirror/sources/libproxy-${PV}.zip \
           "
 
 SRC_URI[md5sum] = "06be230b8b612e64997f8f15af6373aa"
-- 
1.9.1



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

* [daisy][PATCH 13/15] lsof: update SRC_URI
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
                   ` (11 preceding siblings ...)
  2017-09-08 23:21 ` [daisy][PATCH 12/15] libproxy: " Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 14/15] netbase: " Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 15/15] mklibs-native: " Andre McCurdy
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

The official lsof ftp site rejects download attempts from hosts for
which it can not perform a DNS reverse-lookup. See:

  https://people.freebsd.org/~abe/

Fix for long download timeout and warnings from the bitbake fetcher.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-extended/lsof/lsof_4.87.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/lsof/lsof_4.87.bb b/meta/recipes-extended/lsof/lsof_4.87.bb
index 5676cd9..f17a700 100644
--- a/meta/recipes-extended/lsof/lsof_4.87.bb
+++ b/meta/recipes-extended/lsof/lsof_4.87.bb
@@ -4,7 +4,7 @@ Its name stands for LiSt Open Files, and it does just that."
 SECTION = "devel"
 LICENSE = "BSD"
 
-SRC_URI = "ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof_${PV}.tar.bz2"
+SRC_URI = "http://downloads.yoctoproject.org/mirror/sources/lsof_${PV}.tar.bz2"
 
 SRC_URI[md5sum] = "80e2a76d0e05826db910ec88e631296c"
 SRC_URI[sha256sum] = "dfdd3709d82bc79ccdf3e404b84aafa9aede5948642a824ecaefd0aac589da2c"
-- 
1.9.1



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

* [daisy][PATCH 14/15] netbase: update SRC_URI
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
                   ` (12 preceding siblings ...)
  2017-09-08 23:21 ` [daisy][PATCH 13/15] lsof: " Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  2017-09-08 23:21 ` [daisy][PATCH 15/15] mklibs-native: " Andre McCurdy
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

The upstream oe-core recipe fixed similar fetcher issues by switching
to a specific debian snapshot version. However, the debian snapshot
doesn't provide netbase v5.2 so fetch from yoctoproject.org mirror
instead.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-core/netbase/netbase_5.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/netbase/netbase_5.2.bb b/meta/recipes-core/netbase/netbase_5.2.bb
index ab7ae65..65bf549 100644
--- a/meta/recipes-core/netbase/netbase_5.2.bb
+++ b/meta/recipes-core/netbase/netbase_5.2.bb
@@ -6,7 +6,7 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://debian/copyright;md5=3dd6192d306f582dee7687da3d8748ab"
 PE = "1"
 
-SRC_URI = "${DEBIAN_MIRROR}/main/n/netbase/netbase_${PV}.tar.gz \
+SRC_URI = "http://downloads.yoctoproject.org/mirror/sources/netbase_${PV}.tar.gz \
            file://hosts"
 
 SRC_URI[md5sum] = "3a01bfce6a28e1743412198abd241262"
-- 
1.9.1



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

* [daisy][PATCH 15/15] mklibs-native: update SRC_URI
  2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
                   ` (13 preceding siblings ...)
  2017-09-08 23:21 ` [daisy][PATCH 14/15] netbase: " Andre McCurdy
@ 2017-09-08 23:21 ` Andre McCurdy
  14 siblings, 0 replies; 16+ messages in thread
From: Andre McCurdy @ 2017-09-08 23:21 UTC (permalink / raw)
  To: openembedded-core

The upstream oe-core recipe fixed similar fetcher issues by switching
to a specific debian snapshot version. However, the debian snapshot
doesn't provide mklibs 0.1.38 so fetch from yoctoproject.org mirror
instead.

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
---
 meta/recipes-devtools/mklibs/mklibs-native_0.1.38.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/mklibs/mklibs-native_0.1.38.bb b/meta/recipes-devtools/mklibs/mklibs-native_0.1.38.bb
index fd04c97..5db795f 100644
--- a/meta/recipes-devtools/mklibs/mklibs-native_0.1.38.bb
+++ b/meta/recipes-devtools/mklibs/mklibs-native_0.1.38.bb
@@ -6,7 +6,7 @@ LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://debian/copyright;md5=98d31037b13d896e33890738ef01af64"
 DEPENDS = "python-native dpkg-native"
 
-SRC_URI = "http://ftp.de.debian.org/debian/pool/main/m/mklibs/${BPN}_${PV}.tar.gz \
+SRC_URI = "http://downloads.yoctoproject.org/mirror/sources/${BPN}_${PV}.tar.gz \
 	file://ac_init_fix.patch\
 	file://fix_STT_GNU_IFUNC.patch\
 "
-- 
1.9.1



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

end of thread, other threads:[~2017-09-08 23:22 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-08 23:21 [daisy][PATCH 00/15] SRC_URI and minor dependency fixes Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 01/15] setserial: add missing depends on groff-native Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 02/15] kernel: Added bc-native as DEPENDS Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 03/15] base-passwd: fix SRC_URI Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 04/15] dosfstools: " Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 05/15] mailx: " Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 06/15] stat: " Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 07/15] ossp-uuid: update SRC_URI to not use Google Code Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 08/15] ossp-uuid: use snapshot.debian.org for SRC_URI Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 09/15] pigz: Update SRC_URI Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 10/15] cryptodev-linux: update SRC_URI Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 11/15] dpkg: " Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 12/15] libproxy: " Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 13/15] lsof: " Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 14/15] netbase: " Andre McCurdy
2017-09-08 23:21 ` [daisy][PATCH 15/15] mklibs-native: " Andre McCurdy

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.