[oe-commits] [openembedded-core] 04/05: python3-pbr: Move src uri checksums out of .inc file

git at git.openembedded.org git at git.openembedded.org
Sun Jan 13 23:27:03 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 0a082617252bae2a84ef616548e5652842fc0d89
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Sun Jan 13 08:03:28 2019 -0800

    python3-pbr: Move src uri checksums out of .inc file
    
    python2 version of pbr is in meta-python and uses the same inc file but
    is not updated synchronously, which ends up breaking it, either we move
    py2 version into OE-core as well and then ensure that both recipes are
    updated atomically, or we move the checksums into recipe files
    
    Fixes errors like
    http://errors.yoctoproject.org/Errors/Details/216253/
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-devtools/python/python-pbr.inc       | 3 ---
 meta/recipes-devtools/python/python3-pbr_5.1.1.bb | 3 +++
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-devtools/python/python-pbr.inc b/meta/recipes-devtools/python/python-pbr.inc
index bfe3030..0e64501 100644
--- a/meta/recipes-devtools/python/python-pbr.inc
+++ b/meta/recipes-devtools/python/python-pbr.inc
@@ -5,9 +5,6 @@ SECTION = "devel/python"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
 
-SRC_URI[md5sum] = "dbc94417a8ff0432d6244501a7f1bd49"
-SRC_URI[sha256sum] = "f59d71442f9ece3dffc17bc36575768e1ee9967756e6b6535f0ee1f0054c3d68"
-
 inherit pypi
 
 RDEPENDS_${PN} += "${PYTHON_PN}-pip"
diff --git a/meta/recipes-devtools/python/python3-pbr_5.1.1.bb b/meta/recipes-devtools/python/python3-pbr_5.1.1.bb
index 97e7361..95d3d2b 100644
--- a/meta/recipes-devtools/python/python3-pbr_5.1.1.bb
+++ b/meta/recipes-devtools/python/python3-pbr_5.1.1.bb
@@ -1,2 +1,5 @@
 inherit setuptools3
 require python-pbr.inc
+SRC_URI[md5sum] = "dbc94417a8ff0432d6244501a7f1bd49"
+SRC_URI[sha256sum] = "f59d71442f9ece3dffc17bc36575768e1ee9967756e6b6535f0ee1f0054c3d68"
+

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list