All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226]
@ 2017-04-04  9:29 yin.thong.choong
  2017-04-04  9:29 ` [PATCH v2 1/8] selftest/recipetool: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
                   ` (7 more replies)
  0 siblings, 8 replies; 11+ messages in thread
From: yin.thong.choong @ 2017-04-04  9:29 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      | 12 ++++++++----
 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       | 12 ++++++++----
 meta/recipes-extended/newt/libnewt_0.52.19.bb            |  4 ++--
 meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb |  4 ++--
 8 files changed, 33 insertions(+), 23 deletions(-)

-- 
2.7.4



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

* [PATCH v2 1/8] selftest/recipetool: replace fedorahosted.org SRC_URI with github.com source
  2017-04-04  9:29 [PATCH v2 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
@ 2017-04-04  9:29 ` yin.thong.choong
  2017-04-04  9:29 ` [PATCH v2 2/8] xmlto: replace fedorahosted.org SRC_URI with pagure.io source yin.thong.choong
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: yin.thong.choong @ 2017-04-04  9:29 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] 11+ messages in thread

* [PATCH v2 2/8] xmlto: replace fedorahosted.org SRC_URI with pagure.io source
  2017-04-04  9:29 [PATCH v2 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
  2017-04-04  9:29 ` [PATCH v2 1/8] selftest/recipetool: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
@ 2017-04-04  9:29 ` yin.thong.choong
  2017-04-04  9:29 ` [PATCH v2 3/8] libuser: " yin.thong.choong
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: yin.thong.choong @ 2017-04-04  9:29 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] 11+ messages in thread

* [PATCH v2 3/8] libuser: replace fedorahosted.org SRC_URI with pagure.io source
  2017-04-04  9:29 [PATCH v2 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
  2017-04-04  9:29 ` [PATCH v2 1/8] selftest/recipetool: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
  2017-04-04  9:29 ` [PATCH v2 2/8] xmlto: replace fedorahosted.org SRC_URI with pagure.io source yin.thong.choong
@ 2017-04-04  9:29 ` yin.thong.choong
  2017-04-04  9:29 ` [PATCH v2 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: yin.thong.choong @ 2017-04-04  9:29 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] 11+ messages in thread

* [PATCH v2 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source
  2017-04-04  9:29 [PATCH v2 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
                   ` (2 preceding siblings ...)
  2017-04-04  9:29 ` [PATCH v2 3/8] libuser: " yin.thong.choong
@ 2017-04-04  9:29 ` yin.thong.choong
  2017-04-04 10:40   ` Alexander Kanavin
  2017-04-04  9:29 ` [PATCH v2 5/8] libnewt: replace fedorahosted.org SRC_URI with pagure.io source yin.thong.choong
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 11+ messages in thread
From: yin.thong.choong @ 2017-04-04  9:29 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 | 12 ++++++++----
 1 file changed, 8 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..586338c 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,18 @@ DEPENDS="coreutils popt"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760"
 
-SRC_URI = "https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.gz \
+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"
+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] 11+ messages in thread

* [PATCH v2 5/8] libnewt: replace fedorahosted.org SRC_URI with pagure.io source
  2017-04-04  9:29 [PATCH v2 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
                   ` (3 preceding siblings ...)
  2017-04-04  9:29 ` [PATCH v2 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
@ 2017-04-04  9:29 ` yin.thong.choong
  2017-04-04  9:29 ` [PATCH v2 6/8] liberation-fonts: " yin.thong.choong
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: yin.thong.choong @ 2017-04-04  9:29 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] 11+ messages in thread

* [PATCH v2 6/8] liberation-fonts: replace fedorahosted.org SRC_URI with pagure.io source
  2017-04-04  9:29 [PATCH v2 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
                   ` (4 preceding siblings ...)
  2017-04-04  9:29 ` [PATCH v2 5/8] libnewt: replace fedorahosted.org SRC_URI with pagure.io source yin.thong.choong
@ 2017-04-04  9:29 ` yin.thong.choong
  2017-04-04  9:29 ` [PATCH v2 7/8] chkconfig: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
  2017-04-04  9:29 ` [PATCH v2 8/8] cronie: " yin.thong.choong
  7 siblings, 0 replies; 11+ messages in thread
From: yin.thong.choong @ 2017-04-04  9:29 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] 11+ messages in thread

* [PATCH v2 7/8] chkconfig: replace fedorahosted.org SRC_URI with github.com source
  2017-04-04  9:29 [PATCH v2 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
                   ` (5 preceding siblings ...)
  2017-04-04  9:29 ` [PATCH v2 6/8] liberation-fonts: " yin.thong.choong
@ 2017-04-04  9:29 ` yin.thong.choong
  2017-04-04  9:29 ` [PATCH v2 8/8] cronie: " yin.thong.choong
  7 siblings, 0 replies; 11+ messages in thread
From: yin.thong.choong @ 2017-04-04  9:29 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 | 12 ++++++++----
 1 file changed, 8 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..2f1f6c0 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,16 @@ 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"
+SRC_URI[md5sum] = "3f51ac38a234be5278b3a2d9705eda5e"
+SRC_URI[sha256sum] = "bf1e81f0d7cc999b536c9fe7877abf584a4082fd03c9d2597b6f090966579b40"
 
 inherit gettext
 
-- 
2.7.4



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

* [PATCH v2 8/8] cronie: replace fedorahosted.org SRC_URI with github.com source
  2017-04-04  9:29 [PATCH v2 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
                   ` (6 preceding siblings ...)
  2017-04-04  9:29 ` [PATCH v2 7/8] chkconfig: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
@ 2017-04-04  9:29 ` yin.thong.choong
  7 siblings, 0 replies; 11+ messages in thread
From: yin.thong.choong @ 2017-04-04  9:29 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] 11+ messages in thread

* Re: [PATCH v2 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source
  2017-04-04  9:29 ` [PATCH v2 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
@ 2017-04-04 10:40   ` Alexander Kanavin
  2017-04-05  7:55     ` Choong, Yin Thong
  0 siblings, 1 reply; 11+ messages in thread
From: Alexander Kanavin @ 2017-04-04 10:40 UTC (permalink / raw)
  To: openembedded-core, Choong, Yin Thong

On 04/04/2017 12:29 PM, yin.thong.choong@intel.com wrote:
> -SRC_URI = "https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.gz \
> +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 \

Why are we taking a github snapshot tarball (which is not standard 
parctice in oe-core)? Put a comment here that 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.

Generally, don't be afraid to put comments next to your changes, the 
more the better! And especially when you are doing something unusual 
that is not self-explanatory like above.

Otherwise, I am happy with the patchset!

Alex



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

* Re: [PATCH v2 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source
  2017-04-04 10:40   ` Alexander Kanavin
@ 2017-04-05  7:55     ` Choong, Yin Thong
  0 siblings, 0 replies; 11+ messages in thread
From: Choong, Yin Thong @ 2017-04-05  7:55 UTC (permalink / raw)
  To: Alexander Kanavin, openembedded-core

Thanks for the review. We will upstream the V3 patch once amended.

Thanks and Regards
Choong YinThong

-----Original Message-----
From: Alexander Kanavin [mailto:alexander.kanavin@linux.intel.com] 
Sent: Tuesday, April 4, 2017 6:40 PM
To: openembedded-core@lists.openembedded.org; Choong, Yin Thong <yin.thong.choong@intel.com>
Subject: Re: [OE-core] [PATCH v2 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source

On 04/04/2017 12:29 PM, yin.thong.choong@intel.com wrote:
> -SRC_URI = 
> "https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.g
> z \
> +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 \

Why are we taking a github snapshot tarball (which is not standard parctice in oe-core)? Put a comment here that 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.

Generally, don't be afraid to put comments next to your changes, the more the better! And especially when you are doing something unusual that is not self-explanatory like above.

Otherwise, I am happy with the patchset!

Alex



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

end of thread, other threads:[~2017-04-05  7:56 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-04  9:29 [PATCH v2 0/8] Remove all use of fedorahosted SRC_URI [yocto #11226] yin.thong.choong
2017-04-04  9:29 ` [PATCH v2 1/8] selftest/recipetool: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
2017-04-04  9:29 ` [PATCH v2 2/8] xmlto: replace fedorahosted.org SRC_URI with pagure.io source yin.thong.choong
2017-04-04  9:29 ` [PATCH v2 3/8] libuser: " yin.thong.choong
2017-04-04  9:29 ` [PATCH v2 4/8] logrotate: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
2017-04-04 10:40   ` Alexander Kanavin
2017-04-05  7:55     ` Choong, Yin Thong
2017-04-04  9:29 ` [PATCH v2 5/8] libnewt: replace fedorahosted.org SRC_URI with pagure.io source yin.thong.choong
2017-04-04  9:29 ` [PATCH v2 6/8] liberation-fonts: " yin.thong.choong
2017-04-04  9:29 ` [PATCH v2 7/8] chkconfig: replace fedorahosted.org SRC_URI with github.com source yin.thong.choong
2017-04-04  9:29 ` [PATCH v2 8/8] cronie: " yin.thong.choong

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.