summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools
diff options
context:
space:
mode:
authorKlauer, Daniel <Daniel.Klauer@gin.de>2016-05-17 12:55:39 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-29 19:35:59 +0100
commit4007b48cf0731e419d03e150ceb01099a9a6eeb1 (patch)
tree8ff813201b89c256646632fe0a79aaca22b922fc /meta/recipes-devtools
parente506807f5493e4280165bedee1deab9075d50a97 (diff)
downloadpoky-4007b48cf0731e419d03e150ceb01099a9a6eeb1.tar.gz
python-smartpm: Fix channel command --remove-all option (again)
SmartPM's --remove-all option was unusable, because the fix from commit 03266e89a6 was lost in commit 5fc580fc44. Thus, add a new patch to fix --remove-all. It seems like the previous fix was lost by mistake: Upstream merged the *old* version of the patch (smartpm 406541f569), and when SmartPM in oe-core was upgraded to the new upstream release, the --remove-all fix from the *new* patch was not carried over. (From OE-Core rev: ba2adda60dd34b6a8feba413e3207dd8e4580294) (From OE-Core rev: df76bd9ff6289d2b561d8f79a39bc90ba3c6a488) Signed-off-by: Daniel Klauer <daniel.klauer@gin.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r--meta/recipes-devtools/python/python-smartpm/smart-channel-remove-all.patch33
-rw-r--r--meta/recipes-devtools/python/python-smartpm_git.bb1
2 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-smartpm/smart-channel-remove-all.patch b/meta/recipes-devtools/python/python-smartpm/smart-channel-remove-all.patch
new file mode 100644
index 0000000000..da23e7ce42
--- /dev/null
+++ b/meta/recipes-devtools/python/python-smartpm/smart-channel-remove-all.patch
@@ -0,0 +1,33 @@
1From 6d2363a705697f615d9e5af5d6703b291e618b46 Mon Sep 17 00:00:00 2001
2From: Daniel Klauer <daniel.klauer@gin.de>
3Date: Thu, 12 May 2016 17:55:01 +0200
4Subject: [PATCH] Fix channel command --remove-all option parsing
5
6Option.take_action() stores a list of options given for validation later.
7It strips leading dashes and turns remaining dashes into underscores.
8This list is what ensure_action() will compare its arguments against,
9thus we must use underscores here.
10
11Upstream-Status: Pending
12
13Signed-off-by: Daniel Klauer <daniel.klauer@gin.de>
14---
15 smart/commands/channel.py | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/smart/commands/channel.py b/smart/commands/channel.py
19index 108f3f1..6234f69 100644
20--- a/smart/commands/channel.py
21+++ b/smart/commands/channel.py
22@@ -164,7 +164,7 @@ def main(ctrl, opts):
23 opts.check_args_of_option("edit", 0)
24 opts.check_args_of_option("enable", -1)
25 opts.check_args_of_option("disable", -1)
26- opts.ensure_action("channel", ["add", "set", "remove", "remove-all",
27+ opts.ensure_action("channel", ["add", "set", "remove", "remove_all",
28 "list", "show", "yaml", "enable", "disable"])
29 opts.check_remaining_args()
30
31--
321.9.1
33
diff --git a/meta/recipes-devtools/python/python-smartpm_git.bb b/meta/recipes-devtools/python/python-smartpm_git.bb
index d9a908db2e..f030b3eb37 100644
--- a/meta/recipes-devtools/python/python-smartpm_git.bb
+++ b/meta/recipes-devtools/python/python-smartpm_git.bb
@@ -23,6 +23,7 @@ SRC_URI = "\
23 file://smart-already-installed-message.patch \ 23 file://smart-already-installed-message.patch \
24 file://smart-set-noprogress-for-pycurl.patch \ 24 file://smart-set-noprogress-for-pycurl.patch \
25 file://smart-cache.py-getPackages-matches-name-version.patch \ 25 file://smart-cache.py-getPackages-matches-name-version.patch \
26 file://smart-channel-remove-all.patch \
26 " 27 "
27 28
28SRCREV = "407a7eca766431257dcd1da15175cc36a1bb22d0" 29SRCREV = "407a7eca766431257dcd1da15175cc36a1bb22d0"