Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2018-02-20 16:04:33 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2018-02-20 16:27:28 +0300
commit3691f731db4121d9db07aa3a69c90e6000895eae (patch)
treee5802b5a7060414fe4180883b82dd92a08f29e2e /calm/hint.py
parentdd5b9e83d5251aafe6880008b09ef59f9be4b634 (diff)
Tolerate comma or space separated obsoletes: in hints
Diffstat (limited to 'calm/hint.py')
-rwxr-xr-xcalm/hint.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/calm/hint.py b/calm/hint.py
index 98386ef..f5d7419 100755
--- a/calm/hint.py
+++ b/calm/hint.py
@@ -318,7 +318,11 @@ def hint_file_parse(fn, kind):
hints['depends'] = split_trim_sort_join(hints['depends'], ',')
if 'obsoletes' in hints:
- hints['obsoletes'] = split_trim_sort_join(hints['obsoletes'], ',')
+ # obsoletes is specified as comma separated, but cygport writes it space separated at the moment...
+ if ',' in hints['obsoletes']:
+ hints['obsoletes'] = split_trim_sort_join(hints['obsoletes'], ',')
+ else:
+ hints['obsoletes'] = split_trim_sort_join(hints['obsoletes'], None, ', ')
if 'replace-versions' in hints:
hints['replace-versions'] = split_trim_sort_join(hints['replace-versions'], None, ' ')