stdeb
stdeb copied to clipboard
produce Debian packages from Python packages
I didn't get ${python\3:Depends} resolved by dh_python2/3 when building my package. Build depends on dh-python is present. Think I found the culprit in the self.dh_binary_arch_lines = '\tdh binary-arch' and -indep...
It should be possible to add a debian/watch file automatically, with a default path being the Cheeseshop (a.k.a. PyPI) path to an uploaded package. E.g. for flufl.enum: version=3 http://pypi.python.org/packages/source/f/flufl.enum/flufl.enum-(.*).tar.gz Of...
The C extension is only built for the default python version, which causes dh_python2 to output the following error message: > E: dh_python2:145: extension for python2.6 is missing. Build extensions...
# don't know the root of the issue ## python-stdeb 0.8.2-1 ## problems: > pypi-install clawpack --release 5.2.2 > ... > subprocess.CalledProcessError: Command 'py2dsc-deb clawpack-5.2.2.tar.gz' returned non-zero exit status 1...
Command line options, such as forced-upstream-version, is not parsed correctly in util.py. It is currently parsed as such: ``` forced_upstream_version = parse_val(cfg,module_name, 'Forced-Upstream-Version') ``` where 'Forced-Upstream-Version' is not the key...
The requests package is used by stdeb but it's not listed as a dependency in setup.py. This means that the requests package will not be automatically installed when doing pip...
This pull request provides option --guess-depends-package-name=True to guess depends package name in cases it cannot be found in repository. It useful when autobuilding deb-package from Python source distributions. It prevents...
Add possibility to define init, default, preinst, prerm, postinst and postrm files.
Some projects (e.g. Babel) use the PyPI download_url to point to a download webpage rather than a download tarball. We should automatically detect these and do the right thing. For...
When building a .deb for pycryptopp, you have to pass the "--disable-embedded-cryptopp" option to "python ./setup.py build". How do I configure stdeb so that dpkg-buildpackage will do that?