14 lines
659 B
Diff
14 lines
659 B
Diff
--- rpm-4.16.1.3/scripts/pythondistdeps.py.orig 2021-04-18 13:15:35.419281754 +0200
|
|
+++ rpm-4.16.1.3/scripts/pythondistdeps.py 2021-04-18 13:15:42.040402573 +0200
|
|
@@ -420,7 +420,9 @@
|
|
print(spec_list[0])
|
|
else:
|
|
# Sort spec_list so that the results can be tested easily
|
|
- print('({})'.format(' with '.join(sorted(spec_list))))
|
|
+ #print('({})'.format(' with '.join(sorted(spec_list))))
|
|
+ for spec_req in spec_list:
|
|
+ print(spec_req)
|
|
else:
|
|
# Print out unversioned provides, requires, recommends, conflicts
|
|
print(name)
|