All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226]
@ 2017-04-06  8:35 yin.thong.choong
  2017-04-06  8:35 ` [PATCH v3 1/8] selftest/recipetool: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
                   ` (8 more replies)
  0 siblings, 9 replies; 13+ messages in thread
From: yin.thong.choong @ 2017-04-06  8:35 UTC (permalink / raw)
  To: openembedded-core

From: Choong YinThong <yin.thong.choong@intel.com>

Fedorahosted.org was retired on March 1st, 2017.
Replace all fedorahosted.org SRC_URI with source pagure.io and github.com.

Choong YinThong (8):
  selftest/recipetool: replace fedorahosted.org SRC_URI with github.com
    source
  xmlto: replace fedorahosted.org SRC_URI with pagure.io source
  libuser: replace fedorahosted.org SRC_URI with pagure.io source
  logrotate: replace fedorahosted.org SRC_URI with github.com source
  libnewt: replace fedorahosted.org SRC_URI with pagure.io source
  liberation-fonts: replace fedorahosted.org SRC_URI with pagure.io
    source
  chkconfig: replace fedorahosted.org SRC_URI with github.com source
  cronie: replace fedorahosted.org SRC_URI with github.com source

 meta/lib/oeqa/selftest/recipetool.py                  |  8 ++++----
 meta/recipes-devtools/xmlto/xmlto_0.0.28.bb           |  4 ++--
 meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb   | 14 ++++++++++----
 meta/recipes-extended/cronie/cronie_1.5.1.bb          |  6 ++++--
 meta/recipes-extended/libuser/libuser_0.62.bb         |  6 +++---
 meta/recipes-extended/logrotate/logrotate_3.9.1.bb    | 19 +++++++++++++++----
 meta/recipes-extended/newt/libnewt_0.52.19.bb         |  4 ++--
 .../ttf-fonts/liberation-fonts_1.04.bb                |  4 ++--
 8 files changed, 42 insertions(+), 23 deletions(-)

-- 
2.7.4



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

* [PATCH v3 1/8] selftest/recipetool: replace fedorahosted.org SRC_URI with github.com source
  2017-04-06  8:35 [PATCH v3 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
@ 2017-04-06  8:35 ` yin.thong.choong
  2017-04-06  8:35 ` [PATCH v3 2/8] xmlto: replace fedorahosted.org SRC_URI with pagure.io source yin.thong.choong
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 13+ messages in thread
From: yin.thong.choong @ 2017-04-06  8:35 UTC (permalink / raw)
  To: openembedded-core

From: Choong YinThong <yin.thong.choong@intel.com>

fedorahosted.org was retired on March 1st, 2017. This is to
update the SRC_URI to point to github.com.

[YOCTO #11226]

Signed-off-by: Choong YinThong <yin.thong.choong@intel.com>
---
 meta/lib/oeqa/selftest/recipetool.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta/lib/oeqa/selftest/recipetool.py b/meta/lib/oeqa/selftest/recipetool.py
index d62c8bb..d47b9dd 100644
--- a/meta/lib/oeqa/selftest/recipetool.py
+++ b/meta/lib/oeqa/selftest/recipetool.py
@@ -369,15 +369,15 @@ class RecipetoolTests(RecipetoolBase):
         tempsrc = os.path.join(self.tempdir, 'srctree')
         os.makedirs(tempsrc)
         recipefile = os.path.join(self.tempdir, 'logrotate_3.8.7.bb')
-        srcuri = 'https://fedorahosted.org/releases/l/o/logrotate/logrotate-3.8.7.tar.gz'
+        srcuri = 'https://github.com/logrotate/logrotate/archive/r3-8-7.tar.gz'
         result = runCmd('recipetool create -o %s %s -x %s' % (recipefile, srcuri, tempsrc))
         self.assertTrue(os.path.isfile(recipefile))
         checkvars = {}
         checkvars['LICENSE'] = 'GPLv2'
         checkvars['LIC_FILES_CHKSUM'] = 'file://COPYING;md5=18810669f13b87348459e611d31ab760'
-        checkvars['SRC_URI'] = 'https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.gz'
-        checkvars['SRC_URI[md5sum]'] = '99e08503ef24c3e2e3ff74cc5f3be213'
-        checkvars['SRC_URI[sha256sum]'] = 'f6ba691f40e30e640efa2752c1f9499a3f9738257660994de70a45fe00d12b64'
+        checkvars['SRC_URI'] = 'https://github.com/logrotate/logrotate/archive/r3-8-7.tar.gz'
+        checkvars['SRC_URI[md5sum]'] = '6b1aa0e0d07eda3c9a2526520850397a'
+        checkvars['SRC_URI[sha256sum]'] = 'dece4bfeb9d8374a0ecafa34be139b5a697db5c926dcc69a9b8715431a22e733'
         self._test_recipe_contents(recipefile, checkvars, [])
 
     @testcase(1194)
-- 
2.7.4



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

* [PATCH v3 2/8] xmlto: replace fedorahosted.org SRC_URI with pagure.io source
  2017-04-06  8:35 [PATCH v3 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
  2017-04-06  8:35 ` [PATCH v3 1/8] selftest/recipetool: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
@ 2017-04-06  8:35 ` yin.thong.choong
  2017-04-06  8:35 ` [PATCH v3 3/8] libuser: " yin.thong.choong
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 13+ messages in thread
From: yin.thong.choong @ 2017-04-06  8:35 UTC (permalink / raw)
  To: openembedded-core

From: Choong YinThong <yin.thong.choong@intel.com>

fedorahosted.org was retired on March 1st, 2017. This is to
update the SRC_URI to point to pagure.io. pagure.io is a
replacement for fedorahosted.

[YOCTO #11226]

Signed-off-by: Choong YinThong <yin.thong.choong@intel.com>
---
 meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
index ce5d1e0..6216d77 100644
--- a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
+++ b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
@@ -1,11 +1,11 @@
 SUMMARY = "A shell-script tool for converting XML files to various formats"
-HOMEPAGE = "https://fedorahosted.org/xmlto/"
+HOMEPAGE = "https://releases.pagure.org/xmlto/"
 SECTION = "docs/xmlto"
 LICENSE = "GPLv2"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
 
-SRC_URI = "https://fedorahosted.org/releases/x/m/xmlto/xmlto-${PV}.tar.gz \
+SRC_URI = "https://releases.pagure.org/xmlto/xmlto-${PV}.tar.gz \
            file://configure.in-drop-the-test-of-xmllint-and-xsltproc.patch \
            file://catalog.xml \
 "
-- 
2.7.4



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

* [PATCH v3 3/8] libuser: replace fedorahosted.org SRC_URI with pagure.io source
  2017-04-06  8:35 [PATCH v3 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
  2017-04-06  8:35 ` [PATCH v3 1/8] selftest/recipetool: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
  2017-04-06  8:35 ` [PATCH v3 2/8] xmlto: replace fedorahosted.org SRC_URI with pagure.io source yin.thong.choong
@ 2017-04-06  8:35 ` yin.thong.choong
  2017-04-06  8:35 ` [PATCH v3 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 13+ messages in thread
From: yin.thong.choong @ 2017-04-06  8:35 UTC (permalink / raw)
  To: openembedded-core

From: Choong YinThong <yin.thong.choong@intel.com>

fedorahosted.org was retired on March 1st, 2017. This is to
update the SRC_URI to point to pagure.io. pagure.io is a
replacement for fedorahosted.

[YOCTO #11226]

Signed-off-by: Choong YinThong <yin.thong.choong@intel.com>
---
 meta/recipes-extended/libuser/libuser_0.62.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-extended/libuser/libuser_0.62.bb b/meta/recipes-extended/libuser/libuser_0.62.bb
index 6960d71..1765346 100644
--- a/meta/recipes-extended/libuser/libuser_0.62.bb
+++ b/meta/recipes-extended/libuser/libuser_0.62.bb
@@ -1,8 +1,8 @@
 SUMMARY = "user and group account administration library"
 DESCRIPTION = "The libuser library implements a standardized interface for manipulating and administering user \
 and group accounts"
-HOMEPAGE = "https://fedorahosted.org/libuser/"
-BUGTRACKER = "https://fedorahosted.org/libuser/newticket"
+HOMEPAGE = "https://pagure.io/libuser"
+BUGTRACKER = "https://pagure.io/libuser/issues"
 
 LICENSE = "LGPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
 
 SECTION = "base"
 
-SRC_URI = "https://fedorahosted.org/releases/l/i/libuser/libuser-${PV}.tar.xz \
+SRC_URI = "https://releases.pagure.org/libuser/libuser-${PV}.tar.xz \
            file://0001-Check-for-issetugid.patch \
            file://0002-remove-unused-execinfo.h.patch \
            file://0001-modules-files.c-parse_field-fix-string-formating-in-.patch \
-- 
2.7.4



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

* [PATCH v3 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source
  2017-04-06  8:35 [PATCH v3 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
                   ` (2 preceding siblings ...)
  2017-04-06  8:35 ` [PATCH v3 3/8] libuser: " yin.thong.choong
@ 2017-04-06  8:35 ` yin.thong.choong
  2017-04-07  7:36   ` Richard Purdie
  2017-04-06  8:35 ` [PATCH v3 5/8] libnewt: replace fedorahosted.org SRC_URI with pagure.io source yin.thong.choong
                   ` (4 subsequent siblings)
  8 siblings, 1 reply; 13+ messages in thread
From: yin.thong.choong @ 2017-04-06  8:35 UTC (permalink / raw)
  To: openembedded-core

From: Choong YinThong <yin.thong.choong@intel.com>

fedorahosted.org was retired on March 1st, 2017. This is to
update the SRC_URI to point to github.com.

[YOCTO #11226]

Signed-off-by: Choong YinThong <yin.thong.choong@intel.com>
---
 meta/recipes-extended/logrotate/logrotate_3.9.1.bb | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)

diff --git a/meta/recipes-extended/logrotate/logrotate_3.9.1.bb b/meta/recipes-extended/logrotate/logrotate_3.9.1.bb
index 9c2dfe0..5cbd9ff 100644
--- a/meta/recipes-extended/logrotate/logrotate_3.9.1.bb
+++ b/meta/recipes-extended/logrotate/logrotate_3.9.1.bb
@@ -1,6 +1,6 @@
 SUMMARY = "Rotates, compresses, removes and mails system log files"
 SECTION = "console/utils"
-HOMEPAGE = "https://fedorahosted.org/logrotate/"
+HOMEPAGE = "https://github.com/logrotate/logrotate/issues"
 LICENSE = "GPLv2"
 
 # TODO: logrotate 3.8.8 adds autotools/automake support, update recipe to use it.
@@ -10,14 +10,25 @@ DEPENDS="coreutils popt"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760"
 
-SRC_URI = "https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.gz \
+# When updating logrotate to latest upstream, SRC_URI should point to
+# a proper release tarball from https://github.com/logrotate/logrotate/releases
+# and we have to take the snapshot for now because there is no such
+# tarball available for 3.9.1.
+
+S = "${WORKDIR}/${PN}-r3-9-1"
+
+UPSTREAM_CHECK_URI = "https://github.com/${PN}/${PN}/releases"
+
+SRC_URI = "https://github.com/${PN}/${PN}/archive/r3-9-1.tar.gz \
            file://act-as-mv-when-rotate.patch \
            file://update-the-manual.patch \
            file://disable-check-different-filesystems.patch \
             "
 
-SRC_URI[md5sum] = "4492b145b6d542e4a2f41e77fa199ab0"
-SRC_URI[sha256sum] = "022769e3288c80981559a8421703c88e8438b447235e36dd3c8e97cd94c52545"
+# Checksum changed due to tarball source folder changes in upstream
+			
+SRC_URI[md5sum] = "8572b7c2cf9ade09a8a8e10098500fb3"
+SRC_URI[sha256sum] = "5bf8e478c428e7744fefa465118f8296e7e771c981fb6dffb7527856a0ea3617"
 
 PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'acl selinux', d)}"
 
-- 
2.7.4



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

* [PATCH v3 5/8] libnewt: replace fedorahosted.org SRC_URI with pagure.io source
  2017-04-06  8:35 [PATCH v3 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
                   ` (3 preceding siblings ...)
  2017-04-06  8:35 ` [PATCH v3 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
@ 2017-04-06  8:35 ` yin.thong.choong
  2017-04-06  8:35 ` [PATCH v3 6/8] liberation-fonts: " yin.thong.choong
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 13+ messages in thread
From: yin.thong.choong @ 2017-04-06  8:35 UTC (permalink / raw)
  To: openembedded-core

From: Choong YinThong <yin.thong.choong@intel.com>

fedorahosted.org was retired on March 1st, 2017. This is to
update the SRC_URI to point to pagure.io. pagure.io is a
replacement for fedorahosted.

[YOCTO #11226]

Signed-off-by: Choong YinThong <yin.thong.choong@intel.com>
---
 meta/recipes-extended/newt/libnewt_0.52.19.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-extended/newt/libnewt_0.52.19.bb b/meta/recipes-extended/newt/libnewt_0.52.19.bb
index a26ce1f..de76ce2 100644
--- a/meta/recipes-extended/newt/libnewt_0.52.19.bb
+++ b/meta/recipes-extended/newt/libnewt_0.52.19.bb
@@ -8,7 +8,7 @@ shared library needed by programs built with newt, as well as a \
 /usr/bin/dialog replacement called whiptail.  Newt is based on the \
 slang library."
 
-HOMEPAGE = "https://fedorahosted.org/newt/"
+HOMEPAGE = "https://releases.pagure.org/newt/"
 SECTION = "libs"
 
 LICENSE = "LGPLv2"
@@ -17,7 +17,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2"
 # slang needs to be >= 2.2
 DEPENDS = "slang popt"
 
-SRC_URI = "https://fedorahosted.org/releases/n/e/newt/newt-${PV}.tar.gz \
+SRC_URI = "https://releases.pagure.org/newt/newt-${PV}.tar.gz \
            file://fix_SHAREDDIR.patch \
            file://cross_ar.patch \
            file://Makefile.in-Add-tinfo-library-to-the-linking-librari.patch \
-- 
2.7.4



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

* [PATCH v3 6/8] liberation-fonts: replace fedorahosted.org SRC_URI with pagure.io source
  2017-04-06  8:35 [PATCH v3 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
                   ` (4 preceding siblings ...)
  2017-04-06  8:35 ` [PATCH v3 5/8] libnewt: replace fedorahosted.org SRC_URI with pagure.io source yin.thong.choong
@ 2017-04-06  8:35 ` yin.thong.choong
  2017-04-06  8:35 ` [PATCH v3 7/8] chkconfig: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 13+ messages in thread
From: yin.thong.choong @ 2017-04-06  8:35 UTC (permalink / raw)
  To: openembedded-core

From: Choong YinThong <yin.thong.choong@intel.com>

fedorahosted.org was retired on March 1st, 2017. This is to
update the SRC_URI to point to pagure.io. pagure.io is a
replacement for fedorahosted.

[YOCTO #11226]

Signed-off-by: Choong YinThong <yin.thong.choong@intel.com>
---
 meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb b/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb
index bda82e7..74212e7 100644
--- a/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb
+++ b/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb
@@ -2,7 +2,7 @@ SUMMARY = "Liberation(tm) Fonts"
 DESCRIPTION = "The Liberation(tm) Fonts is a font family originally \
 created by Ascender(c) which aims at metric compatibility with \
 Arial, Times New Roman, Courier New."
-HOMEPAGE = "https://fedorahosted.org/liberation-fonts/"
+HOMEPAGE = "https://releases.pagure.org/liberation-fonts/"
 BUGTRACKER = "https://bugzilla.redhat.com/"
 
 RECIPE_NO_UPDATE_REASON = "2.x depends on fontforge package, which is not yet provided in oe-core"
@@ -17,7 +17,7 @@ inherit allarch fontcache
 
 FONT_PACKAGES = "${PN}"
 
-SRC_URI = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-${PV}.tar.gz \
+SRC_URI = "https://releases.pagure.org/liberation-fonts/liberation-fonts-${PV}.tar.gz \
            file://30-liberation-aliases.conf"
 
 SRC_URI[md5sum] = "4846797ef0fc70b0cbaede2514677c58"
-- 
2.7.4



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

* [PATCH v3 7/8] chkconfig: replace fedorahosted.org SRC_URI with github.com source
  2017-04-06  8:35 [PATCH v3 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
                   ` (5 preceding siblings ...)
  2017-04-06  8:35 ` [PATCH v3 6/8] liberation-fonts: " yin.thong.choong
@ 2017-04-06  8:35 ` yin.thong.choong
  2017-04-06  8:35 ` [PATCH v3 8/8] cronie: " yin.thong.choong
  2017-04-06  9:02 ` ✗ patchtest: failure for Remove all use of fedorahosted SRC_URI [YOCTO #11226] (rev3) Patchwork
  8 siblings, 0 replies; 13+ messages in thread
From: yin.thong.choong @ 2017-04-06  8:35 UTC (permalink / raw)
  To: openembedded-core

From: Choong YinThong <yin.thong.choong@intel.com>

fedorahosted.org was retired on March 1st, 2017. This is to update
the SRC_URI to point to github.com.

[YOCTO #11226]

Signed-off-by: Choong YinThong <yin.thong.choong@intel.com>
---
 meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb b/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb
index e839026..e29fb99 100644
--- a/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb
+++ b/meta/recipes-extended/chkconfig/chkconfig_1.3.58.bb
@@ -6,7 +6,7 @@ of the drudgery of manually editing the symbolic links."
 
 RECIPE_NO_UPDATE_REASON = "Version 1.5 requires selinux"
 
-HOMEPAGE = "http://fedorahosted.org/releases/c/h/chkconfig"
+HOMEPAGE = "https://github.com/fedora-sysv"
 
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=5574c6965ae5f583e55880e397fbb018"
@@ -16,12 +16,18 @@ PROVIDES += "virtual/update-alternatives"
 
 PR = "r7"
 
-SRC_URI = "http://fedorahosted.org/releases/c/h/chkconfig/${BPN}-${PV}.tar.bz2 \
+S = "${WORKDIR}/${BPN}-${BPN}-${PV}"
+
+UPSTREAM_CHECK_URI = "https://github.com/fedora-sysv/${BPN}/releases"
+
+SRC_URI = "https://github.com/fedora-sysv/chkconfig/archive/chkconfig-${PV}.tar.gz \
            file://replace_caddr_t.patch \
           "
 
-SRC_URI[md5sum] = "c2039ca67f2749fe0c06ef7c6f8ee246"
-SRC_URI[sha256sum] = "18b497d25b2cada955c72810e45fcad8280d105f17cf45e2970f18271211de68"
+# Checksum changed due to tarball source folder changes in upstream
+
+SRC_URI[md5sum] = "3f51ac38a234be5278b3a2d9705eda5e"
+SRC_URI[sha256sum] = "bf1e81f0d7cc999b536c9fe7877abf584a4082fd03c9d2597b6f090966579b40"
 
 inherit gettext
 
-- 
2.7.4



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

* [PATCH v3 8/8] cronie: replace fedorahosted.org SRC_URI with github.com source
  2017-04-06  8:35 [PATCH v3 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
                   ` (6 preceding siblings ...)
  2017-04-06  8:35 ` [PATCH v3 7/8] chkconfig: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
@ 2017-04-06  8:35 ` yin.thong.choong
  2017-04-06  9:02 ` ✗ patchtest: failure for Remove all use of fedorahosted SRC_URI [YOCTO #11226] (rev3) Patchwork
  8 siblings, 0 replies; 13+ messages in thread
From: yin.thong.choong @ 2017-04-06  8:35 UTC (permalink / raw)
  To: openembedded-core

From: Choong YinThong <yin.thong.choong@intel.com>

fedorahosted.org was retired on March 1st, 2017. This is to
update the SRC_URI to point to github.com. This github link
is distributions to fedoreproject.org and the contact
Mailing list: cronie-devel AT lists.fedorahosted DOT org

[YOCTO #11226]

Signed-off-by: Choong YinThong <yin.thong.choong@intel.com>
---
 meta/recipes-extended/cronie/cronie_1.5.1.bb | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-extended/cronie/cronie_1.5.1.bb b/meta/recipes-extended/cronie/cronie_1.5.1.bb
index ad616d5..cfb8c21 100644
--- a/meta/recipes-extended/cronie/cronie_1.5.1.bb
+++ b/meta/recipes-extended/cronie/cronie_1.5.1.bb
@@ -3,7 +3,7 @@ DESCRIPTION = "Cronie contains the standard UNIX daemon crond that runs \
 specified programs at scheduled times and related tools. It is based on the \
 original cron and has security and configuration enhancements like the \
 ability to use pam and SELinux."
-HOMEPAGE = "https://fedorahosted.org/cronie/"
+HOMEPAGE = "https://github.com/cronie-crond/cronie/"
 BUGTRACKER = "https://bugzilla.redhat.com"
 
 # Internet Systems Consortium License
@@ -14,7 +14,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=dd2a592170760e1386c769e1043b3722 \
 
 SECTION = "utils"
 
-SRC_URI = "https://fedorahosted.org/releases/c/r/cronie/cronie-${PV}.tar.gz \
+UPSTREAM_CHECK_URI = "https://github.com/cronie-crond/${BPN}/releases/"
+
+SRC_URI = "https://github.com/cronie-crond/cronie/releases/download/cronie-${PV}/cronie-${PV}.tar.gz \
            file://crond.init \
            file://crontab \
            file://crond.service \
-- 
2.7.4



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

* ✗ patchtest: failure for Remove all use of fedorahosted SRC_URI [YOCTO #11226] (rev3)
  2017-04-06  8:35 [PATCH v3 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
                   ` (7 preceding siblings ...)
  2017-04-06  8:35 ` [PATCH v3 8/8] cronie: " yin.thong.choong
@ 2017-04-06  9:02 ` Patchwork
  8 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2017-04-06  9:02 UTC (permalink / raw)
  To: yin.thong.choong; +Cc: openembedded-core

== Series Details ==

Series: Remove all use of fedorahosted SRC_URI [YOCTO #11226] (rev3)
Revision: 3
URL   : https://patchwork.openembedded.org/series/6116/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Issue             Series does not apply on top of target branch [test_series_merge_on_head] 
  Suggested fix    Rebase your series on top of targeted branch
  Targeted branch  master (currently at 3a1cce6591)



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite:     http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe



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

* Re: [PATCH v3 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source
  2017-04-06  8:35 ` [PATCH v3 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
@ 2017-04-07  7:36   ` Richard Purdie
  2017-04-07  9:10     ` Choong, Yin Thong
  0 siblings, 1 reply; 13+ messages in thread
From: Richard Purdie @ 2017-04-07  7:36 UTC (permalink / raw)
  To: yin.thong.choong, openembedded-core

On Thu, 2017-04-06 at 01:35 -0700, yin.thong.choong@intel.com wrote:
> From: Choong YinThong <yin.thong.choong@intel.com>
> 
> fedorahosted.org was retired on March 1st, 2017. This is to
> update the SRC_URI to point to github.com.
> 
> [YOCTO #11226]
> 
> Signed-off-by: Choong YinThong <yin.thong.choong@intel.com>

This failed autobuilder testing in multilib builds:

https://autobuilder.yocto.io/builders/nightly-world-lsb/builds/214/steps/BuildImages/logs/stdio
https://autobuilder.yocto.io/builders/nightly-world/builds/214/steps/BuildImages/logs/stdio

Probably you need ${BPN}, not ${PN}.

>  meta/recipes-extended/logrotate/logrotate_3.9.1.bb | 19
> +++++++++++++++----
>  1 file changed, 15 insertions(+), 4 deletions(-)
> 
> diff --git a/meta/recipes-extended/logrotate/logrotate_3.9.1.bb
> b/meta/recipes-extended/logrotate/logrotate_3.9.1.bb
> index 9c2dfe0..5cbd9ff 100644
> --- a/meta/recipes-extended/logrotate/logrotate_3.9.1.bb
> +++ b/meta/recipes-extended/logrotate/logrotate_3.9.1.bb
> @@ -1,6 +1,6 @@
>  SUMMARY = "Rotates, compresses, removes and mails system log files"
>  SECTION = "console/utils"
> -HOMEPAGE = "https://fedorahosted.org/logrotate/"
> +HOMEPAGE = "https://github.com/logrotate/logrotate/issues"
>  LICENSE = "GPLv2"
>  
>  # TODO: logrotate 3.8.8 adds autotools/automake support, update
> recipe to use it.
> @@ -10,14 +10,25 @@ DEPENDS="coreutils popt"
>  
>  LIC_FILES_CHKSUM =
> "file://COPYING;md5=18810669f13b87348459e611d31ab760"
>  
> -SRC_URI = "https://fedorahosted.org/releases/l/o/logrotate/logrotate
> -${PV}.tar.gz \
> +# When updating logrotate to latest upstream, SRC_URI should point
> to
> +# a proper release tarball from https://github.com/logrotate/logrota
> te/releases
> +# and we have to take the snapshot for now because there is no such
> +# tarball available for 3.9.1.
> +
> +S = "${WORKDIR}/${PN}-r3-9-1"
> +
> +UPSTREAM_CHECK_URI = "https://github.com/${PN}/${PN}/releases"
> +
> +SRC_URI = "https://github.com/${PN}/${PN}/archive/r3-9-1.tar.gz \
>             file://act-as-mv-when-rotate.patch \
>             file://update-the-manual.patch \
>             file://disable-check-different-filesystems.patch \
>              "
>  
> -SRC_URI[md5sum] = "4492b145b6d542e4a2f41e77fa199ab0"
> -SRC_URI[sha256sum] =
> "022769e3288c80981559a8421703c88e8438b447235e36dd3c8e97cd94c52545"
> +# Checksum changed due to tarball source folder changes in upstream
> +			
> +SRC_URI[md5sum] = "8572b7c2cf9ade09a8a8e10098500fb3"
> +SRC_URI[sha256sum] =
> "5bf8e478c428e7744fefa465118f8296e7e771c981fb6dffb7527856a0ea3617"
>  
>  PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'acl
> selinux', d)}"
>  
> -- 
> 2.7.4
> 


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

* Re: [PATCH v3 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source
  2017-04-07  7:36   ` Richard Purdie
@ 2017-04-07  9:10     ` Choong, Yin Thong
  2017-04-07 10:57       ` Richard Purdie
  0 siblings, 1 reply; 13+ messages in thread
From: Choong, Yin Thong @ 2017-04-07  9:10 UTC (permalink / raw)
  To: Richard Purdie, openembedded-core
  Cc: Phoong, Stanley Cheong Kwan, Khor, Chin Kooi, Gan, Yau Wai, Ang,
	Chin Huat, Tan,  Shen Joon, Ng, Wei Tee, Yeoh, Ee Peng

Is wired. I bitbake successful on my machine. bitbake logrotate -ccleanall and bitbake logrotate.
In this case, I should submit my entire patch or only resubmit this patch [PATCH v3 4/8] with cover letter?

Thanks and Regards
Choong YinThong

-----Original Message-----
From: Richard Purdie [mailto:richard.purdie@linuxfoundation.org] 
Sent: Friday, April 7, 2017 3:37 PM
To: Choong, Yin Thong <yin.thong.choong@intel.com>; openembedded-core@lists.openembedded.org
Subject: Re: [OE-core] [PATCH v3 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source

On Thu, 2017-04-06 at 01:35 -0700, yin.thong.choong@intel.com wrote:
> From: Choong YinThong <yin.thong.choong@intel.com>
> 
> fedorahosted.org was retired on March 1st, 2017. This is to update the 
> SRC_URI to point to github.com.
> 
> [YOCTO #11226]
> 
> Signed-off-by: Choong YinThong <yin.thong.choong@intel.com>

This failed autobuilder testing in multilib builds:

https://autobuilder.yocto.io/builders/nightly-world-lsb/builds/214/steps/BuildImages/logs/stdio
https://autobuilder.yocto.io/builders/nightly-world/builds/214/steps/BuildImages/logs/stdio

Probably you need ${BPN}, not ${PN}.

>  meta/recipes-extended/logrotate/logrotate_3.9.1.bb | 19
> +++++++++++++++----
>  1 file changed, 15 insertions(+), 4 deletions(-)
> 
> diff --git a/meta/recipes-extended/logrotate/logrotate_3.9.1.bb
> b/meta/recipes-extended/logrotate/logrotate_3.9.1.bb
> index 9c2dfe0..5cbd9ff 100644
> --- a/meta/recipes-extended/logrotate/logrotate_3.9.1.bb
> +++ b/meta/recipes-extended/logrotate/logrotate_3.9.1.bb
> @@ -1,6 +1,6 @@
>  SUMMARY = "Rotates, compresses, removes and mails system log files"
>  SECTION = "console/utils"
> -HOMEPAGE = "https://fedorahosted.org/logrotate/"
> +HOMEPAGE = "https://github.com/logrotate/logrotate/issues"
>  LICENSE = "GPLv2"
>  
>  # TODO: logrotate 3.8.8 adds autotools/automake support, update 
> recipe to use it.
> @@ -10,14 +10,25 @@ DEPENDS="coreutils popt"
>  
>  LIC_FILES_CHKSUM =
> "file://COPYING;md5=18810669f13b87348459e611d31ab760"
>  
> -SRC_URI = "https://fedorahosted.org/releases/l/o/logrotate/logrotate
> -${PV}.tar.gz \
> +# When updating logrotate to latest upstream, SRC_URI should point
> to
> +# a proper release tarball from https://github.com/logrotate/logrota
> te/releases
> +# and we have to take the snapshot for now because there is no such # 
> +tarball available for 3.9.1.
> +
> +S = "${WORKDIR}/${PN}-r3-9-1"
> +
> +UPSTREAM_CHECK_URI = "https://github.com/${PN}/${PN}/releases"
> +
> +SRC_URI = "https://github.com/${PN}/${PN}/archive/r3-9-1.tar.gz \
>             file://act-as-mv-when-rotate.patch \
>             file://update-the-manual.patch \
>             file://disable-check-different-filesystems.patch \
>              "
>  
> -SRC_URI[md5sum] = "4492b145b6d542e4a2f41e77fa199ab0"
> -SRC_URI[sha256sum] =
> "022769e3288c80981559a8421703c88e8438b447235e36dd3c8e97cd94c52545"
> +# Checksum changed due to tarball source folder changes in upstream
> +			
> +SRC_URI[md5sum] = "8572b7c2cf9ade09a8a8e10098500fb3"
> +SRC_URI[sha256sum] =
> "5bf8e478c428e7744fefa465118f8296e7e771c981fb6dffb7527856a0ea3617"
>  
>  PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'acl 
> selinux', d)}"
>  
> --
> 2.7.4
> 

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

* Re: [PATCH v3 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source
  2017-04-07  9:10     ` Choong, Yin Thong
@ 2017-04-07 10:57       ` Richard Purdie
  0 siblings, 0 replies; 13+ messages in thread
From: Richard Purdie @ 2017-04-07 10:57 UTC (permalink / raw)
  To: Choong, Yin Thong, openembedded-core
  Cc: Phoong, Stanley Cheong Kwan, Khor, Chin Kooi, Gan, Yau Wai, Ang,
	Chin Huat, Tan, Shen Joon, Ng, Wei Tee, Yeoh, Ee Peng

On Fri, 2017-04-07 at 09:10 +0000, Choong, Yin Thong wrote:
> Is wired. I bitbake successful on my machine. bitbake logrotate
> -ccleanall and bitbake logrotate.
> In this case, I should submit my entire patch or only resubmit this
> patch [PATCH v3 4/8] with cover letter?

Please send just this patch. If you setup a multiconfig configuration
and then "bitbake lib32-logrotate" you'd see this error.

You can see the configuration the autobuilder used here:
https://autobuilder.yocto.io/builders/nightly-world/builds/214/steps/CreateAutoConf/logs/stdio
for that world build for example.

Cheers,

Richard


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

end of thread, other threads:[~2017-04-07 11:03 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-06  8:35 [PATCH v3 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
2017-04-06  8:35 ` [PATCH v3 1/8] selftest/recipetool: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
2017-04-06  8:35 ` [PATCH v3 2/8] xmlto: replace fedorahosted.org SRC_URI with pagure.io source yin.thong.choong
2017-04-06  8:35 ` [PATCH v3 3/8] libuser: " yin.thong.choong
2017-04-06  8:35 ` [PATCH v3 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
2017-04-07  7:36   ` Richard Purdie
2017-04-07  9:10     ` Choong, Yin Thong
2017-04-07 10:57       ` Richard Purdie
2017-04-06  8:35 ` [PATCH v3 5/8] libnewt: replace fedorahosted.org SRC_URI with pagure.io source yin.thong.choong
2017-04-06  8:35 ` [PATCH v3 6/8] liberation-fonts: " yin.thong.choong
2017-04-06  8:35 ` [PATCH v3 7/8] chkconfig: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
2017-04-06  8:35 ` [PATCH v3 8/8] cronie: " yin.thong.choong
2017-04-06  9:02 ` ✗ patchtest: failure for Remove all use of fedorahosted SRC_URI [YOCTO #11226] (rev3) Patchwork

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.