forked from pool/python-stdeb
- Fixed %check by adding missing $
- Update to v0.10.0
* The default Debian compat version has been changed from 7 to 9
as well as new
- from v0.9.1
* A few improvements for Python 3 as well as new options.
- Updated patches
OBS-URL: https://build.opensuse.org/request/show/972333
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stdeb?expand=0&rev=15
17 lines
644 B
Diff
17 lines
644 B
Diff
Index: stdeb-0.10.0/stdeb/util.py
|
|
===================================================================
|
|
--- stdeb-0.10.0.orig/stdeb/util.py
|
|
+++ stdeb-0.10.0/stdeb/util.py
|
|
@@ -1214,7 +1214,10 @@ class DebianInfo:
|
|
else:
|
|
self.override_dh_python3 = ''
|
|
|
|
- sequencer_options = ['--with '+','.join(sequencer_with)]
|
|
+ # These depend on the dh_python helpers in the Debian python packages
|
|
+ # https://salsa.debian.org/cpython-team/python-defaults
|
|
+ # sequencer_options = ['--with '+','.join(sequencer_with)]
|
|
+ sequencer_options = []
|
|
|
|
if with_dh_virtualenv:
|
|
if with_python2:
|