-
Notifications
You must be signed in to change notification settings - Fork 690
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop dh-virtualenv from packaging process
dh-virtualenv is responsible for creating the virtualenv, installing dependencies from requirements.txt, and then munging the virtualenv to use the path that it will be installed to. There are a number of issues with it however: * largely unmaintained in Debian (missed focal) * incompatible with debhelper compat 12 * cannot use --require-hashes * hides deprecation warnings and error messages It is now getting in the way of Rust packaging since we want to install a wheel into the virtualenv, however it needs to happen before the munging step, which dh-virtualenv doesn't really support. Since we already want to get rid of it, let's just do it now. Fixes #6538.
- Loading branch information
Showing
4 changed files
with
19 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ Source: securedrop | |
Section: web | ||
Priority: optional | ||
Maintainer: SecureDrop Team <[email protected]> | ||
Build-Depends: debhelper (>= 9), dh-python, python3-all, python3-setuptools, dh-systemd, dh-virtualenv | ||
Build-Depends: debhelper (>= 9), dh-python, python3-all, python3-setuptools, dh-systemd | ||
Homepage: https://securedrop.org | ||
Standards-Version: 4.5.1 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters