All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source
@ 2017-03-31 11:37 Martin Jansa
  2017-03-31 11:37 ` [PATCH][meta-oe][morty 2/7] libqb: use github.com instead of retired fedorahosted.org Martin Jansa
                   ` (6 more replies)
  0 siblings, 7 replies; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 11:37 UTC (permalink / raw)
  To: openembedded-devel

From: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com>

Changed SRC_URI source to official web-site, which keeps tarballs with
old releases.

Cherry-picked from master, but without the upgrade to 4.7.5.

Signed-off-by: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb b/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
index 287821194..d62453745 100644
--- a/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
+++ b/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
@@ -6,7 +6,7 @@ SECTION = "console/network"
 LICENSE = "GPLv3"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 
-SRC_URI = "http://fossies.org/linux/misc/lftp-${PV}.tar.gz \
+SRC_URI = "http://lftp.yar.ru/ftp/lftp-${PV}.tar.gz \
            file://fix-gcc-6-conflicts-signbit.patch \
           "
 SRC_URI[md5sum] = "8eb1fe5f113126b60f172643c7f6c2e6"
-- 
2.12.2



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

* [PATCH][meta-oe][morty 2/7] libqb: use github.com instead of retired fedorahosted.org
  2017-03-31 11:37 [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source Martin Jansa
@ 2017-03-31 11:37 ` Martin Jansa
  2017-03-31 11:37 ` [PATCH][meta-oe][morty 3/7] libqb: inherit autotools-brokensep Martin Jansa
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 11:37 UTC (permalink / raw)
  To: openembedded-devel

* https://fedoraproject.org/wiki/Infrastructure/Fedorahosted-retirement

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-extended/libqb/libqb_0.17.2.bb | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb b/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb
index 40d06f379..2d3278ce8 100644
--- a/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb
+++ b/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb
@@ -3,20 +3,19 @@ DESCRIPTION = "libqb is a library with the primary purpose of providing high per
 It provides high performance logging, tracing, ipc, and poll."
 
 HOMEPAGE = "https://github.com/clusterlabs/libqb/wiki"
-
 SECTION = "libs"
 
-inherit autotools pkgconfig
+LICENSE = "LGPL-2.1"
+LIC_FILES_CHKSUM = "file://COPYING;md5=321bf41f280cf805086dd5a720b37785"
 
-SRC_URI = "https://fedorahosted.org/releases/q/u/quarterback/${BP}.tar.xz \
-          "
+inherit autotools pkgconfig
 
-SRC_URI[md5sum] = "de1e5d38fa449b4d127940c10d117260"
-SRC_URI[sha256sum] = "9a419c649ed51f275dc780da8a15babb8a5d33633567bd9e0cb6193b6e21f4fe"
+PV = "0.17.2+git${SRCPV}"
 
-LICENSE = "LGPL-2.1"
+SRCREV = "bd2c587f6ccacd8a5644b275d99324d200c2b378"
+SRC_URI = "git://github.com/ClusterLabs/${BPN}.git"
 
-LIC_FILES_CHKSUM = "file://COPYING;md5=321bf41f280cf805086dd5a720b37785"
+S = "${WORKDIR}/git"
 
 do_configure_prepend() {
     ( cd ${S}
-- 
2.12.2



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

* [PATCH][meta-oe][morty 3/7] libqb: inherit autotools-brokensep
  2017-03-31 11:37 [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source Martin Jansa
  2017-03-31 11:37 ` [PATCH][meta-oe][morty 2/7] libqb: use github.com instead of retired fedorahosted.org Martin Jansa
@ 2017-03-31 11:37 ` Martin Jansa
  2017-03-31 11:38 ` [PATCH][meta-oe][morty 4/7] ttf-liberation-sans-narrow: use pagure.org instead of retired fedorahosted.org Martin Jansa
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 11:37 UTC (permalink / raw)
  To: openembedded-devel

* otherwise build fails with:
  http://errors.yoctoproject.org/Errors/Details/138387/
  make[2]: *** No rule to make target 'auto_check_header_qbconfig.c', needed by 'auto_check_header_qbconfig.o'.  Stop.

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-extended/libqb/libqb_0.17.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb b/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb
index 2d3278ce8..94030b2ea 100644
--- a/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb
+++ b/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb
@@ -8,7 +8,7 @@ SECTION = "libs"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=321bf41f280cf805086dd5a720b37785"
 
-inherit autotools pkgconfig
+inherit autotools-brokensep pkgconfig
 
 PV = "0.17.2+git${SRCPV}"
 
-- 
2.12.2



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

* [PATCH][meta-oe][morty 4/7] ttf-liberation-sans-narrow: use pagure.org instead of retired fedorahosted.org
  2017-03-31 11:37 [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source Martin Jansa
  2017-03-31 11:37 ` [PATCH][meta-oe][morty 2/7] libqb: use github.com instead of retired fedorahosted.org Martin Jansa
  2017-03-31 11:37 ` [PATCH][meta-oe][morty 3/7] libqb: inherit autotools-brokensep Martin Jansa
@ 2017-03-31 11:38 ` Martin Jansa
  2017-03-31 11:38 ` [PATCH][meta-oe][morty 5/7] hwdata: use github instead of fedorahosted.org Martin Jansa
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 11:38 UTC (permalink / raw)
  To: openembedded-devel

* https://fedoraproject.org/wiki/Infrastructure/Fedorahosted-retirement

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb
index f36cf4b18..5b406bc65 100644
--- a/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb
+++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb
@@ -9,7 +9,7 @@ HOMEPAGE = "https://fedorahosted.org/liberation-fonts/"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
 
-SRC_URI = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-ttf-${PV}.tar.gz \
+SRC_URI = "https://releases.pagure.org/liberation-fonts/liberation-fonts-ttf-${PV}.tar.gz \
            file://30-0-liberation-sans-narrow.conf \
 "
 
-- 
2.12.2



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

* [PATCH][meta-oe][morty 5/7] hwdata: use github instead of fedorahosted.org
  2017-03-31 11:37 [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source Martin Jansa
                   ` (2 preceding siblings ...)
  2017-03-31 11:38 ` [PATCH][meta-oe][morty 4/7] ttf-liberation-sans-narrow: use pagure.org instead of retired fedorahosted.org Martin Jansa
@ 2017-03-31 11:38 ` Martin Jansa
  2017-03-31 11:38 ` [PATCH][meta-oe][morty 6/7] mailcap: use pagure.org instead of retired fedorahosted.org Martin Jansa
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 11:38 UTC (permalink / raw)
  To: openembedded-devel

* fedorahosted is retired
  https://fedoraproject.org/wiki/Infrastructure/Fedorahosted-retirement

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 .../recipes-support/hwdata/{hwdata_0.291.bb => hwdata_git.bb}  | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
 rename meta-oe/recipes-support/hwdata/{hwdata_0.291.bb => hwdata_git.bb} (57%)

diff --git a/meta-oe/recipes-support/hwdata/hwdata_0.291.bb b/meta-oe/recipes-support/hwdata/hwdata_git.bb
similarity index 57%
rename from meta-oe/recipes-support/hwdata/hwdata_0.291.bb
rename to meta-oe/recipes-support/hwdata/hwdata_git.bb
index f00f73b91..50d35c682 100644
--- a/meta-oe/recipes-support/hwdata/hwdata_0.291.bb
+++ b/meta-oe/recipes-support/hwdata/hwdata_git.bb
@@ -1,13 +1,15 @@
 DESCRIPTION = "Hardware identification and configuration data"
-HOMEPAGE = "http://git.fedorahosted.org/git/hwdata.git"
+HOMEPAGE = "https://github.com/vcrhonek/hwdata"
 SECTION = "System/Base"
 
 LICENSE = "GPL-2.0+"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=1556547711e8246992b999edd9445a57"
-SRC_URI = "https://git.fedorahosted.org/cgit/${BPN}.git/snapshot/${BP}.tar.gz"
 
-SRC_URI[md5sum] = "90ffce584bbcb1a5e77eac8503949f71"
-SRC_URI[sha256sum] = "e1007a96645cb3390aa9c0ed3f090a69d2302ce4d801914b6af1ab4ec85ede4e"
+PV = "0.291+git${SRCPV}"
+SRCREV = "4bfbdcf5913d6dd53336d31b8035708075e6fdfa"
+SRC_URI = "git://github.com/vcrhonek/${BPN}.git"
+
+S = "${WORKDIR}/git"
 
 do_configure() {
     ${S}/configure --datadir=${datadir} --libdir=${libdir}
-- 
2.12.2



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

* [PATCH][meta-oe][morty 6/7] mailcap: use pagure.org instead of retired fedorahosted.org
  2017-03-31 11:37 [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source Martin Jansa
                   ` (3 preceding siblings ...)
  2017-03-31 11:38 ` [PATCH][meta-oe][morty 5/7] hwdata: use github instead of fedorahosted.org Martin Jansa
@ 2017-03-31 11:38 ` Martin Jansa
  2017-03-31 13:41   ` akuster808
  2017-03-31 11:38 ` [PATCH][meta-oe][morty 7/7] alsa-equal: Update SRC_URI to something valid Martin Jansa
  2017-03-31 13:38 ` [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source akuster808
  6 siblings, 1 reply; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 11:38 UTC (permalink / raw)
  To: openembedded-devel

* https://fedoraproject.org/wiki/Infrastructure/Fedorahosted-retirement

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb b/meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb
index 7d87a5f1d..58b8f029e 100644
--- a/meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb
+++ b/meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb
@@ -12,12 +12,14 @@ by several applications e.g. to determine MIME types for filenames."
 
 SECTION = "System Environment/Base"
 
-SRC_URI = "https://git.fedorahosted.org/cgit/${BPN}.git/snapshot/${BPN}-r2-1-46.tar.gz"
-SRC_URI[md5sum] = "eee03824bf86480dc1db20be4f78237f"
-SRC_URI[sha256sum] = "309059163fa3ef368f8a43fc38f7a45d9345fd725970d5b437ba175a0ee7ebc9"
 LICENSE = "PD & MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=100fcfb84512ccc03ffc7d89ac391305"
-S = "${WORKDIR}/${BPN}-r2-1-46"
+
+SRC_URI = "https://releases.pagure.org/${BPN}/${BP}.tar.xz"
+
+SRC_URI[md5sum] = "d865a1baf574ae5d309f5c1f79315800"
+SRC_URI[sha256sum] = "c68eb3b531d731476d5980c9b7cc287bd64c2a13bec5a537009a2c4af63f9bb0"
+
 do_install() {
     oe_runmake install DESTDIR=${D} sysconfdir=${sysconfdir} mandir=${mandir}
 }
-- 
2.12.2



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

* [PATCH][meta-oe][morty 7/7] alsa-equal: Update SRC_URI to something valid
  2017-03-31 11:37 [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source Martin Jansa
                   ` (4 preceding siblings ...)
  2017-03-31 11:38 ` [PATCH][meta-oe][morty 6/7] mailcap: use pagure.org instead of retired fedorahosted.org Martin Jansa
@ 2017-03-31 11:38 ` Martin Jansa
  2017-03-31 13:38   ` akuster808
  2017-03-31 13:38 ` [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source akuster808
  6 siblings, 1 reply; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 11:38 UTC (permalink / raw)
  To: openembedded-devel

From: Khem Raj <raj.khem@gmail.com>

www.thedigitalmachine.net has disappeared

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb b/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb
index 637d029ba..3bed70e1a 100644
--- a/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb
+++ b/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb
@@ -1,12 +1,12 @@
 DESCRIPTION = "A real-time adjustable equalizer plugin for ALSA"
-HOMEPAGE = "http://www.thedigitalmachine.net/alsaequal.html"
+HOMEPAGE = "https://web.archive.org/web/20161105202833/http://thedigitalmachine.net/alsaequal.html"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=243b725d71bb5df4a1e5920b344b86ad"
 
 DEPENDS = "alsa-lib"
 
 SRC_URI = " \
-    http://www.thedigitalmachine.net/tools/alsaequal-${PV}.tar.bz2 \
+    https://launchpad.net/ubuntu/+archive/primary/+files/alsaequal_${PV}.orig.tar.bz2 \
     file://0001-Fix-asneeded.patch \
     file://0002-Fix-Eq-CAPS-plugin-name.patch \
     file://0003-Fix-mixer.patch \
-- 
2.12.2



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

* Re: [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source
  2017-03-31 11:37 [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source Martin Jansa
                   ` (5 preceding siblings ...)
  2017-03-31 11:38 ` [PATCH][meta-oe][morty 7/7] alsa-equal: Update SRC_URI to something valid Martin Jansa
@ 2017-03-31 13:38 ` akuster808
  2017-03-31 15:18   ` [meta-oe][morty][PATCHv2 " Martin Jansa
  6 siblings, 1 reply; 19+ messages in thread
From: akuster808 @ 2017-03-31 13:38 UTC (permalink / raw)
  To: Martin Jansa, openembedded-devel

Martin


On 03/31/2017 04:37 AM, Martin Jansa wrote:
> From: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com>
>
> Changed SRC_URI source to official web-site, which keeps tarballs with
> old releases.
>
> Cherry-picked from master, but without the upgrade to 4.7.5.
Missing hash from master.

- armin
>
> Signed-off-by: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>   meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb b/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
> index 287821194..d62453745 100644
> --- a/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
> +++ b/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
> @@ -6,7 +6,7 @@ SECTION = "console/network"
>   LICENSE = "GPLv3"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
>   
> -SRC_URI = "http://fossies.org/linux/misc/lftp-${PV}.tar.gz \
> +SRC_URI = "http://lftp.yar.ru/ftp/lftp-${PV}.tar.gz \
>              file://fix-gcc-6-conflicts-signbit.patch \
>             "
>   SRC_URI[md5sum] = "8eb1fe5f113126b60f172643c7f6c2e6"



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

* Re: [PATCH][meta-oe][morty 7/7] alsa-equal: Update SRC_URI to something valid
  2017-03-31 11:38 ` [PATCH][meta-oe][morty 7/7] alsa-equal: Update SRC_URI to something valid Martin Jansa
@ 2017-03-31 13:38   ` akuster808
  0 siblings, 0 replies; 19+ messages in thread
From: akuster808 @ 2017-03-31 13:38 UTC (permalink / raw)
  To: Martin Jansa, openembedded-devel

not in master

- armin


On 03/31/2017 04:38 AM, Martin Jansa wrote:
> From: Khem Raj <raj.khem@gmail.com>
>
> www.thedigitalmachine.net has disappeared
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>   meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb b/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb
> index 637d029ba..3bed70e1a 100644
> --- a/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb
> +++ b/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb
> @@ -1,12 +1,12 @@
>   DESCRIPTION = "A real-time adjustable equalizer plugin for ALSA"
> -HOMEPAGE = "http://www.thedigitalmachine.net/alsaequal.html"
> +HOMEPAGE = "https://web.archive.org/web/20161105202833/http://thedigitalmachine.net/alsaequal.html"
>   LICENSE = "LGPL-2.1"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=243b725d71bb5df4a1e5920b344b86ad"
>   
>   DEPENDS = "alsa-lib"
>   
>   SRC_URI = " \
> -    http://www.thedigitalmachine.net/tools/alsaequal-${PV}.tar.bz2 \
> +    https://launchpad.net/ubuntu/+archive/primary/+files/alsaequal_${PV}.orig.tar.bz2 \
>       file://0001-Fix-asneeded.patch \
>       file://0002-Fix-Eq-CAPS-plugin-name.patch \
>       file://0003-Fix-mixer.patch \



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

* Re: [PATCH][meta-oe][morty 6/7] mailcap: use pagure.org instead of retired fedorahosted.org
  2017-03-31 11:38 ` [PATCH][meta-oe][morty 6/7] mailcap: use pagure.org instead of retired fedorahosted.org Martin Jansa
@ 2017-03-31 13:41   ` akuster808
  0 siblings, 0 replies; 19+ messages in thread
From: akuster808 @ 2017-03-31 13:41 UTC (permalink / raw)
  To: Martin Jansa, openembedded-devel

not in master

- armin


On 03/31/2017 04:38 AM, Martin Jansa wrote:
> * https://fedoraproject.org/wiki/Infrastructure/Fedorahosted-retirement
>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>   meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb | 10 ++++++----
>   1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb b/meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb
> index 7d87a5f1d..58b8f029e 100644
> --- a/meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb
> +++ b/meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb
> @@ -12,12 +12,14 @@ by several applications e.g. to determine MIME types for filenames."
>   
>   SECTION = "System Environment/Base"
>   
> -SRC_URI = "https://git.fedorahosted.org/cgit/${BPN}.git/snapshot/${BPN}-r2-1-46.tar.gz"
> -SRC_URI[md5sum] = "eee03824bf86480dc1db20be4f78237f"
> -SRC_URI[sha256sum] = "309059163fa3ef368f8a43fc38f7a45d9345fd725970d5b437ba175a0ee7ebc9"
>   LICENSE = "PD & MIT"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=100fcfb84512ccc03ffc7d89ac391305"
> -S = "${WORKDIR}/${BPN}-r2-1-46"
> +
> +SRC_URI = "https://releases.pagure.org/${BPN}/${BP}.tar.xz"
> +
> +SRC_URI[md5sum] = "d865a1baf574ae5d309f5c1f79315800"
> +SRC_URI[sha256sum] = "c68eb3b531d731476d5980c9b7cc287bd64c2a13bec5a537009a2c4af63f9bb0"
> +
>   do_install() {
>       oe_runmake install DESTDIR=${D} sysconfdir=${sysconfdir} mandir=${mandir}
>   }



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

* [meta-oe][morty][PATCHv2 1/7] lftp: change SRC_URI source
  2017-03-31 13:38 ` [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source akuster808
@ 2017-03-31 15:18   ` Martin Jansa
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 2/7] libqb: use github.com instead of retired fedorahosted.org Martin Jansa
                       ` (6 more replies)
  0 siblings, 7 replies; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 15:18 UTC (permalink / raw)
  To: openembedded-devel

From: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com>

Changed SRC_URI source to official web-site, which keeps tarballs with
old releases.

Cherry-picked from master, but without the upgrade to 4.7.5.

  commit a2e075ba656a89da58ca4f849c2f08ec6d50a96f
  Author: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com>
  Date:   Mon Jan 9 15:34:07 2017 +0100

    lftp: update to 4.7.5 and change SRC_URI source

    Updated lftp to version 4.7.5 and changed SRC_URI source to official
    web-site, which keeps tarballs with old releases.

Signed-off-by: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb b/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
index 287821194..d62453745 100644
--- a/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
+++ b/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
@@ -6,7 +6,7 @@ SECTION = "console/network"
 LICENSE = "GPLv3"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 
-SRC_URI = "http://fossies.org/linux/misc/lftp-${PV}.tar.gz \
+SRC_URI = "http://lftp.yar.ru/ftp/lftp-${PV}.tar.gz \
            file://fix-gcc-6-conflicts-signbit.patch \
           "
 SRC_URI[md5sum] = "8eb1fe5f113126b60f172643c7f6c2e6"
-- 
2.12.2



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

* [meta-oe][morty][PATCHv2 2/7] libqb: use github.com instead of retired fedorahosted.org
  2017-03-31 15:18   ` [meta-oe][morty][PATCHv2 " Martin Jansa
@ 2017-03-31 15:18     ` Martin Jansa
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 3/7] libqb: inherit autotools-brokensep Martin Jansa
                       ` (5 subsequent siblings)
  6 siblings, 0 replies; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 15:18 UTC (permalink / raw)
  To: openembedded-devel

* https://fedoraproject.org/wiki/Infrastructure/Fedorahosted-retirement
* cherry picked from master:
  commit 18893ec9498cbb5bf9259f36c2bee03cedc4b6de
  Author: Martin Jansa <Martin.Jansa@gmail.com>
  Date:   Wed Mar 29 10:18:01 2017 +0200

    libqb: use github.com instead of retired fedorahosted.org

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-extended/libqb/libqb_0.17.2.bb | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb b/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb
index 40d06f379..2d3278ce8 100644
--- a/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb
+++ b/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb
@@ -3,20 +3,19 @@ DESCRIPTION = "libqb is a library with the primary purpose of providing high per
 It provides high performance logging, tracing, ipc, and poll."
 
 HOMEPAGE = "https://github.com/clusterlabs/libqb/wiki"
-
 SECTION = "libs"
 
-inherit autotools pkgconfig
+LICENSE = "LGPL-2.1"
+LIC_FILES_CHKSUM = "file://COPYING;md5=321bf41f280cf805086dd5a720b37785"
 
-SRC_URI = "https://fedorahosted.org/releases/q/u/quarterback/${BP}.tar.xz \
-          "
+inherit autotools pkgconfig
 
-SRC_URI[md5sum] = "de1e5d38fa449b4d127940c10d117260"
-SRC_URI[sha256sum] = "9a419c649ed51f275dc780da8a15babb8a5d33633567bd9e0cb6193b6e21f4fe"
+PV = "0.17.2+git${SRCPV}"
 
-LICENSE = "LGPL-2.1"
+SRCREV = "bd2c587f6ccacd8a5644b275d99324d200c2b378"
+SRC_URI = "git://github.com/ClusterLabs/${BPN}.git"
 
-LIC_FILES_CHKSUM = "file://COPYING;md5=321bf41f280cf805086dd5a720b37785"
+S = "${WORKDIR}/git"
 
 do_configure_prepend() {
     ( cd ${S}
-- 
2.12.2



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

* [meta-oe][morty][PATCHv2 3/7] libqb: inherit autotools-brokensep
  2017-03-31 15:18   ` [meta-oe][morty][PATCHv2 " Martin Jansa
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 2/7] libqb: use github.com instead of retired fedorahosted.org Martin Jansa
@ 2017-03-31 15:18     ` Martin Jansa
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 4/7] ttf-liberation-sans-narrow: use pagure.org instead of retired fedorahosted.org Martin Jansa
                       ` (4 subsequent siblings)
  6 siblings, 0 replies; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 15:18 UTC (permalink / raw)
  To: openembedded-devel

* otherwise build fails with:
  http://errors.yoctoproject.org/Errors/Details/138387/
  make[2]: *** No rule to make target 'auto_check_header_qbconfig.c', needed by 'auto_check_header_qbconfig.o'.  Stop.
* cherry picked from master:
  commit 1a9dc230315a77ade7a36baf3a2c2a0c9745af46
  Author: Martin Jansa <Martin.Jansa@gmail.com>
  Date:   Wed Mar 29 12:08:37 2017 +0200

    libqb: inherit autotools-brokensep

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-extended/libqb/libqb_0.17.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb b/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb
index 2d3278ce8..94030b2ea 100644
--- a/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb
+++ b/meta-oe/recipes-extended/libqb/libqb_0.17.2.bb
@@ -8,7 +8,7 @@ SECTION = "libs"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=321bf41f280cf805086dd5a720b37785"
 
-inherit autotools pkgconfig
+inherit autotools-brokensep pkgconfig
 
 PV = "0.17.2+git${SRCPV}"
 
-- 
2.12.2



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

* [meta-oe][morty][PATCHv2 4/7] ttf-liberation-sans-narrow: use pagure.org instead of retired fedorahosted.org
  2017-03-31 15:18   ` [meta-oe][morty][PATCHv2 " Martin Jansa
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 2/7] libqb: use github.com instead of retired fedorahosted.org Martin Jansa
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 3/7] libqb: inherit autotools-brokensep Martin Jansa
@ 2017-03-31 15:18     ` Martin Jansa
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 5/7] hwdata: use github instead of fedorahosted.org Martin Jansa
                       ` (3 subsequent siblings)
  6 siblings, 0 replies; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 15:18 UTC (permalink / raw)
  To: openembedded-devel

* https://fedoraproject.org/wiki/Infrastructure/Fedorahosted-retirement
* cherry picked from master:
  commit 2c4b17449d0178e830bedcbe3e2fbe348984b589
  Author: Martin Jansa <Martin.Jansa@gmail.com>
  Date:   Wed Mar 29 10:23:12 2017 +0200

    ttf-liberation-sans-narrow: use pagure.org instead of retired fedorahosted.org

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb b/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb
index f36cf4b18..5b406bc65 100644
--- a/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb
+++ b/meta-oe/recipes-graphics/ttf-fonts/ttf-liberation-sans-narrow_1.07.4.bb
@@ -9,7 +9,7 @@ HOMEPAGE = "https://fedorahosted.org/liberation-fonts/"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
 
-SRC_URI = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-ttf-${PV}.tar.gz \
+SRC_URI = "https://releases.pagure.org/liberation-fonts/liberation-fonts-ttf-${PV}.tar.gz \
            file://30-0-liberation-sans-narrow.conf \
 "
 
-- 
2.12.2



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

* [meta-oe][morty][PATCHv2 5/7] hwdata: use github instead of fedorahosted.org
  2017-03-31 15:18   ` [meta-oe][morty][PATCHv2 " Martin Jansa
                       ` (2 preceding siblings ...)
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 4/7] ttf-liberation-sans-narrow: use pagure.org instead of retired fedorahosted.org Martin Jansa
@ 2017-03-31 15:18     ` Martin Jansa
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 6/7] mailcap: use pagure.org instead of retired fedorahosted.org Martin Jansa
                       ` (2 subsequent siblings)
  6 siblings, 0 replies; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 15:18 UTC (permalink / raw)
  To: openembedded-devel

* fedorahosted is retired
  https://fedoraproject.org/wiki/Infrastructure/Fedorahosted-retirement
* cherry picked from master:
  commit 8e804afebc057c304f5b9c127f6d7f438cd551c6
  Author: Martin Jansa <Martin.Jansa@gmail.com>
  Date:   Wed Mar 29 10:13:59 2017 +0200

    hwdata: use github instead of fedorahosted.org

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 .../recipes-support/hwdata/{hwdata_0.291.bb => hwdata_git.bb}  | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
 rename meta-oe/recipes-support/hwdata/{hwdata_0.291.bb => hwdata_git.bb} (57%)

diff --git a/meta-oe/recipes-support/hwdata/hwdata_0.291.bb b/meta-oe/recipes-support/hwdata/hwdata_git.bb
similarity index 57%
rename from meta-oe/recipes-support/hwdata/hwdata_0.291.bb
rename to meta-oe/recipes-support/hwdata/hwdata_git.bb
index f00f73b91..50d35c682 100644
--- a/meta-oe/recipes-support/hwdata/hwdata_0.291.bb
+++ b/meta-oe/recipes-support/hwdata/hwdata_git.bb
@@ -1,13 +1,15 @@
 DESCRIPTION = "Hardware identification and configuration data"
-HOMEPAGE = "http://git.fedorahosted.org/git/hwdata.git"
+HOMEPAGE = "https://github.com/vcrhonek/hwdata"
 SECTION = "System/Base"
 
 LICENSE = "GPL-2.0+"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=1556547711e8246992b999edd9445a57"
-SRC_URI = "https://git.fedorahosted.org/cgit/${BPN}.git/snapshot/${BP}.tar.gz"
 
-SRC_URI[md5sum] = "90ffce584bbcb1a5e77eac8503949f71"
-SRC_URI[sha256sum] = "e1007a96645cb3390aa9c0ed3f090a69d2302ce4d801914b6af1ab4ec85ede4e"
+PV = "0.291+git${SRCPV}"
+SRCREV = "4bfbdcf5913d6dd53336d31b8035708075e6fdfa"
+SRC_URI = "git://github.com/vcrhonek/${BPN}.git"
+
+S = "${WORKDIR}/git"
 
 do_configure() {
     ${S}/configure --datadir=${datadir} --libdir=${libdir}
-- 
2.12.2



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

* [meta-oe][morty][PATCHv2 6/7] mailcap: use pagure.org instead of retired fedorahosted.org
  2017-03-31 15:18   ` [meta-oe][morty][PATCHv2 " Martin Jansa
                       ` (3 preceding siblings ...)
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 5/7] hwdata: use github instead of fedorahosted.org Martin Jansa
@ 2017-03-31 15:18     ` Martin Jansa
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 7/7] alsa-equal: Update SRC_URI to something valid Martin Jansa
  2017-08-08 19:04     ` [meta-oe][morty][PATCHv2 1/7] lftp: change SRC_URI source Martin Jansa
  6 siblings, 0 replies; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 15:18 UTC (permalink / raw)
  To: openembedded-devel

* https://fedoraproject.org/wiki/Infrastructure/Fedorahosted-retirement
* cherry picked from master:
  commit 23361dfa39c2356b57e8b25baf08bde62454fcb4
  Author: Martin Jansa <Martin.Jansa@gmail.com>
  Date:   Wed Mar 29 10:14:33 2017 +0200

    mailcap: use pagure.org instead of retired fedorahosted.org

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb b/meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb
index 7d87a5f1d..58b8f029e 100644
--- a/meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb
+++ b/meta-oe/recipes-support/mailcap/mailcap_2.1.46.bb
@@ -12,12 +12,14 @@ by several applications e.g. to determine MIME types for filenames."
 
 SECTION = "System Environment/Base"
 
-SRC_URI = "https://git.fedorahosted.org/cgit/${BPN}.git/snapshot/${BPN}-r2-1-46.tar.gz"
-SRC_URI[md5sum] = "eee03824bf86480dc1db20be4f78237f"
-SRC_URI[sha256sum] = "309059163fa3ef368f8a43fc38f7a45d9345fd725970d5b437ba175a0ee7ebc9"
 LICENSE = "PD & MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=100fcfb84512ccc03ffc7d89ac391305"
-S = "${WORKDIR}/${BPN}-r2-1-46"
+
+SRC_URI = "https://releases.pagure.org/${BPN}/${BP}.tar.xz"
+
+SRC_URI[md5sum] = "d865a1baf574ae5d309f5c1f79315800"
+SRC_URI[sha256sum] = "c68eb3b531d731476d5980c9b7cc287bd64c2a13bec5a537009a2c4af63f9bb0"
+
 do_install() {
     oe_runmake install DESTDIR=${D} sysconfdir=${sysconfdir} mandir=${mandir}
 }
-- 
2.12.2



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

* [meta-oe][morty][PATCHv2 7/7] alsa-equal: Update SRC_URI to something valid
  2017-03-31 15:18   ` [meta-oe][morty][PATCHv2 " Martin Jansa
                       ` (4 preceding siblings ...)
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 6/7] mailcap: use pagure.org instead of retired fedorahosted.org Martin Jansa
@ 2017-03-31 15:18     ` Martin Jansa
  2017-08-08 19:04     ` [meta-oe][morty][PATCHv2 1/7] lftp: change SRC_URI source Martin Jansa
  6 siblings, 0 replies; 19+ messages in thread
From: Martin Jansa @ 2017-03-31 15:18 UTC (permalink / raw)
  To: openembedded-devel

From: Khem Raj <raj.khem@gmail.com>

www.thedigitalmachine.net has disappeared
* cherry picked from master:
  commit a02ec57e144b768c8d5e383622a83f87d86425b5
  Author: Khem Raj <raj.khem@gmail.com>
  Date:   Wed Mar 22 11:45:33 2017 -0700

    alsa-equal: Update SRC_URI to something valid

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb b/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb
index 637d029ba..3bed70e1a 100644
--- a/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb
+++ b/meta-multimedia/recipes-multimedia/alsa-equal/alsa-equal_0.6.bb
@@ -1,12 +1,12 @@
 DESCRIPTION = "A real-time adjustable equalizer plugin for ALSA"
-HOMEPAGE = "http://www.thedigitalmachine.net/alsaequal.html"
+HOMEPAGE = "https://web.archive.org/web/20161105202833/http://thedigitalmachine.net/alsaequal.html"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=243b725d71bb5df4a1e5920b344b86ad"
 
 DEPENDS = "alsa-lib"
 
 SRC_URI = " \
-    http://www.thedigitalmachine.net/tools/alsaequal-${PV}.tar.bz2 \
+    https://launchpad.net/ubuntu/+archive/primary/+files/alsaequal_${PV}.orig.tar.bz2 \
     file://0001-Fix-asneeded.patch \
     file://0002-Fix-Eq-CAPS-plugin-name.patch \
     file://0003-Fix-mixer.patch \
-- 
2.12.2



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

* Re: [meta-oe][morty][PATCHv2 1/7] lftp: change SRC_URI source
  2017-03-31 15:18   ` [meta-oe][morty][PATCHv2 " Martin Jansa
                       ` (5 preceding siblings ...)
  2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 7/7] alsa-equal: Update SRC_URI to something valid Martin Jansa
@ 2017-08-08 19:04     ` Martin Jansa
  2017-08-10 19:00       ` akuster808
  6 siblings, 1 reply; 19+ messages in thread
From: Martin Jansa @ 2017-08-08 19:04 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Oleksandr Kravchuk

ping

On Fri, Mar 31, 2017 at 5:18 PM, Martin Jansa <martin.jansa@gmail.com>
wrote:

> From: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com>
>
> Changed SRC_URI source to official web-site, which keeps tarballs with
> old releases.
>
> Cherry-picked from master, but without the upgrade to 4.7.5.
>
>   commit a2e075ba656a89da58ca4f849c2f08ec6d50a96f
>   Author: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com>
>   Date:   Mon Jan 9 15:34:07 2017 +0100
>
>     lftp: update to 4.7.5 and change SRC_URI source
>
>     Updated lftp to version 4.7.5 and changed SRC_URI source to official
>     web-site, which keeps tarballs with old releases.
>
> Signed-off-by: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>  meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
> b/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
> index 287821194..d62453745 100644
> --- a/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
> +++ b/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
> @@ -6,7 +6,7 @@ SECTION = "console/network"
>  LICENSE = "GPLv3"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
>
> -SRC_URI = "http://fossies.org/linux/misc/lftp-${PV}.tar.gz \
> +SRC_URI = "http://lftp.yar.ru/ftp/lftp-${PV}.tar.gz \
>             file://fix-gcc-6-conflicts-signbit.patch \
>            "
>  SRC_URI[md5sum] = "8eb1fe5f113126b60f172643c7f6c2e6"
> --
> 2.12.2
>
>


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

* Re: [meta-oe][morty][PATCHv2 1/7] lftp: change SRC_URI source
  2017-08-08 19:04     ` [meta-oe][morty][PATCHv2 1/7] lftp: change SRC_URI source Martin Jansa
@ 2017-08-10 19:00       ` akuster808
  0 siblings, 0 replies; 19+ messages in thread
From: akuster808 @ 2017-08-10 19:00 UTC (permalink / raw)
  To: Martin Jansa, openembedded-devel; +Cc: Oleksandr Kravchuk

ok. I dont' see this in the patch queue.

I work on this the next day or too.

- armin


On 08/08/2017 12:04 PM, Martin Jansa wrote:
> ping
>
> On Fri, Mar 31, 2017 at 5:18 PM, Martin Jansa <martin.jansa@gmail.com 
> <mailto:martin.jansa@gmail.com>> wrote:
>
>     From: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com
>     <mailto:oleksandr.kravchuk@pelagicore.com>>
>
>     Changed SRC_URI source to official web-site, which keeps tarballs with
>     old releases.
>
>     Cherry-picked from master, but without the upgrade to 4.7.5.
>
>       commit a2e075ba656a89da58ca4f849c2f08ec6d50a96f
>       Author: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com
>     <mailto:oleksandr.kravchuk@pelagicore.com>>
>       Date:   Mon Jan 9 15:34:07 2017 +0100
>
>         lftp: update to 4.7.5 and change SRC_URI source
>
>         Updated lftp to version 4.7.5 and changed SRC_URI source to
>     official
>         web-site, which keeps tarballs with old releases.
>
>     Signed-off-by: Oleksandr Kravchuk
>     <oleksandr.kravchuk@pelagicore.com
>     <mailto:oleksandr.kravchuk@pelagicore.com>>
>     Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com
>     <mailto:Martin.Jansa@gmail.com>>
>     Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com
>     <mailto:joe_macdonald@mentor.com>>
>     Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com
>     <mailto:Martin.Jansa@gmail.com>>
>     ---
>      meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
>     <http://lftp_4.7.3.bb> | 2 +-
>      1 file changed, 1 insertion(+), 1 deletion(-)
>
>     diff --git
>     a/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
>     <http://lftp_4.7.3.bb>
>     b/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
>     <http://lftp_4.7.3.bb>
>     index 287821194..d62453745 100644
>     --- a/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
>     <http://lftp_4.7.3.bb>
>     +++ b/meta-networking/recipes-connectivity/lftp/lftp_4.7.3.bb
>     <http://lftp_4.7.3.bb>
>     @@ -6,7 +6,7 @@ SECTION = "console/network"
>      LICENSE = "GPLv3"
>      LIC_FILES_CHKSUM =
>     "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
>
>     -SRC_URI = "http://fossies.org/linux/misc/lftp-${PV}.tar.gz
>     <http://fossies.org/linux/misc/lftp-$%7BPV%7D.tar.gz> \
>     +SRC_URI = "http://lftp.yar.ru/ftp/lftp-${PV}.tar.gz
>     <http://lftp.yar.ru/ftp/lftp-$%7BPV%7D.tar.gz> \
>                 file://fix-gcc-6-conflicts-signbit.patch \
>                "
>      SRC_URI[md5sum] = "8eb1fe5f113126b60f172643c7f6c2e6"
>     --
>     2.12.2
>
>



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

end of thread, other threads:[~2017-08-10 19:00 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-31 11:37 [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source Martin Jansa
2017-03-31 11:37 ` [PATCH][meta-oe][morty 2/7] libqb: use github.com instead of retired fedorahosted.org Martin Jansa
2017-03-31 11:37 ` [PATCH][meta-oe][morty 3/7] libqb: inherit autotools-brokensep Martin Jansa
2017-03-31 11:38 ` [PATCH][meta-oe][morty 4/7] ttf-liberation-sans-narrow: use pagure.org instead of retired fedorahosted.org Martin Jansa
2017-03-31 11:38 ` [PATCH][meta-oe][morty 5/7] hwdata: use github instead of fedorahosted.org Martin Jansa
2017-03-31 11:38 ` [PATCH][meta-oe][morty 6/7] mailcap: use pagure.org instead of retired fedorahosted.org Martin Jansa
2017-03-31 13:41   ` akuster808
2017-03-31 11:38 ` [PATCH][meta-oe][morty 7/7] alsa-equal: Update SRC_URI to something valid Martin Jansa
2017-03-31 13:38   ` akuster808
2017-03-31 13:38 ` [PATCH][meta-oe][morty 1/7] lftp: change SRC_URI source akuster808
2017-03-31 15:18   ` [meta-oe][morty][PATCHv2 " Martin Jansa
2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 2/7] libqb: use github.com instead of retired fedorahosted.org Martin Jansa
2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 3/7] libqb: inherit autotools-brokensep Martin Jansa
2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 4/7] ttf-liberation-sans-narrow: use pagure.org instead of retired fedorahosted.org Martin Jansa
2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 5/7] hwdata: use github instead of fedorahosted.org Martin Jansa
2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 6/7] mailcap: use pagure.org instead of retired fedorahosted.org Martin Jansa
2017-03-31 15:18     ` [meta-oe][morty][PATCHv2 7/7] alsa-equal: Update SRC_URI to something valid Martin Jansa
2017-08-08 19:04     ` [meta-oe][morty][PATCHv2 1/7] lftp: change SRC_URI source Martin Jansa
2017-08-10 19:00       ` akuster808

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.