-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix broken
make deb-from-pypi
(switch to GH releases) (#12)
PyPI no longer serves PGP signatures: ``` uscan info: Downloading OpenPGP signature from: https://pypi.debian.net/afancontrol/afancontrol-3.1.0.tar.gz.asc (pgpsigurlmangled) as afancontrol-3.1.0.tar.gz.asc uscan info: Requesting URL: https://pypi.debian.net/afancontrol/afancontrol-3.1.0.tar.gz.asc uscan warn: In directory ., downloading https://pypi.debian.net/afancontrol/afancontrol-3.1.0.tar.gz.asc failed: 404 NOT FOUND uscan die: FAIL Checking OpenPGP signature (no signature file downloaded). ```
- Loading branch information
1 parent
a289bec
commit dc6dcee
Showing
4 changed files
with
15 additions
and
6 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 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 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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
version=3 | ||
opts=uversionmangle=s/(rc|a|b|c)/~$1/,pgpsigurlmangle=s/$/.asc/ \ | ||
https://pypi.debian.net/afancontrol/afancontrol-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) | ||
version=4 | ||
opts="repack,compression=gz,repacksuffix=+dfsg,dversionmangle=s/\+dfsg//,\ | ||
uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/,\ | ||
pgpsigurlmangle=s@archive/refs/tags@releases/download@;\ | ||
s@([^\/]+)\.tar\.gz@$1/afancontrol-$1\.tar\.gz@;\ | ||
s/$/.asc/" \ | ||
https://github.com/KostyaEsmukov/afancontrol/tags .*/v?(\d\.\d\.\d[a-z]?)\.tar\.gz |
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