[oe-commits] [openembedded-core] 01/17: package_manager.py: Split feed_archs for RPM repo URIs

git at git.openembedded.org git at git.openembedded.org
Mon Apr 10 23:26:58 UTC 2017


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 668abb249901a57ba609464b2ad6490db1273076
Author: Ian.Arkver <ian.arkver.dev at gmail.com>
AuthorDate: Mon Apr 10 11:50:14 2017 +0100

    package_manager.py: Split feed_archs for RPM repo URIs
    
    By default the feed_archs variable is split into single characters
    resulting in very many broken short repo_uris. Add a split() to
    split the string into words first.
    
    Signed-off-by: Ian.Arkver <ian.arkver.dev at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oe/package_manager.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py
index 54a3c5e..23bf51f 100644
--- a/meta/lib/oe/package_manager.py
+++ b/meta/lib/oe/package_manager.py
@@ -552,7 +552,7 @@ class RpmPM(PackageManager):
         for uri in remote_uris:
             repo_name = "oe-remote-repo" + "-".join(urlparse(uri).path.split("/"))
             if feed_archs is not None:
-                repo_uris = [uri + "/" + arch for arch in feed_archs]
+                repo_uris = [uri + "/" + arch for arch in feed_archs.split()]
             else:
                 repo_uris = [uri]
             open(oe.path.join(self.target_rootfs, "etc", "yum.repos.d", repo_name + ".repo"), 'w').write("[%s]\nbaseurl=%s\n" % (repo_name, " ".join(repo_uris)))

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


More information about the Openembedded-commits mailing list