Files
python-stdeb/remove-python-helper-rules.patch
Matej Cepl 2ba87612c0 Accepting request 695310 from home:jayvdb:rpm
- Add missing runtime dependencies
- Remove 126.patch which does nothing
- Activate test suite, using tests-use-tablib.patch, and removing
  bcond test
- Add four patches to workaround problems relating to use
  of dpkg on openSUSE:
  * ignore-unmet-deps.patch and ignore-unmet-deps.patch:
    A real dpkg database can not be populated with the
    necessary dependencies
  * no-install-layout.patch and remove-python-helper-rules.patch:
    --install-layout=deb and the python helpers are not available
    on openSUSE.

OBS-URL: https://build.opensuse.org/request/show/695310
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stdeb?expand=0&rev=8
2019-04-18 08:58:37 +00:00

17 lines
709 B
Diff

Index: stdeb-0.8.5/stdeb/util.py
===================================================================
--- stdeb-0.8.5.orig/stdeb/util.py
+++ stdeb-0.8.5/stdeb/util.py
@@ -1114,7 +1114,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 = []
sequencer_options.append('--buildsystem=python_distutils')
self.sequencer_options = ' '.join(sequencer_options)