Your message dated Thu, 11 Jun 2015 04:05:25 +0000 with message-id <[email protected]> and subject line Bug#785746: fixed in devscripts 2.15.5 has caused the Debian Bug report #785746, regarding uscan: pypi.python.org watch files do not work anymore to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 785746: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785746 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: devscripts Version: 2.15.4 Severity: normal File: /usr/bin/uscan Tags: patch Hi, http{,s}://pypi.python.org/packages/foo/F/foo links no longer work. We now have a redirector (http://pypi.debian.net) and watch file generator (http://pypi.debian.net/foo/watch) but updating thousands of packages is not that easy. We'll get to it at some point, but please consider applying attached patch which will give maintainers some more time to update. Please note that this change doesn't touch https://pypi.python.org/pypi/foo/ watch files (as these still work fine)From f5269c40f5e14481aa3098fac96260c11fa975e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20O=C5=BCarowski?= <[email protected]> Date: Tue, 19 May 2015 21:17:50 +0200 Subject: [PATCH] uscan: use pypi.debian.net redirector instead of pypi.python.org --- scripts/uscan.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/uscan.pl b/scripts/uscan.pl index 841f8b5..441e73e 100755 --- a/scripts/uscan.pl +++ b/scripts/uscan.pl @@ -882,6 +882,9 @@ sub process_watchline ($$$$$$) $base =~ s%^http://sf\.net/%https://qa.debian.org/watch/sf.php/%; $filepattern .= '(?:\?.*)?'; } + # Handle pypi.python.org addresses specially + $base =~ s%^https?://pypi\.python\.org/packages/source/./%http://pypi.debian.net/%; + if ($base =~ m%^(\w+://[^/]+)%) { $site = $1; } else { -- 2.1.4
signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---Source: devscripts Source-Version: 2.15.5 We believe that the bug you reported is fixed in the latest version of devscripts, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [email protected], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. James McCoy <[email protected]> (supplier of updated devscripts package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Wed, 10 Jun 2015 23:07:03 -0400 Source: devscripts Binary: devscripts Architecture: source amd64 Version: 2.15.5 Distribution: unstable Urgency: low Maintainer: Devscripts Devel Team <[email protected]> Changed-By: James McCoy <[email protected]> Description: devscripts - scripts to make the life of a Debian Package maintainer easier Closes: 534987 587892 587970 640068 659330 690375 723723 736063 748611 755371 757194 771119 780667 783630 783634 784394 784812 784821 785421 785746 786518 786706 787276 787321 787767 788367 Changes: devscripts (2.15.5) unstable; urgency=low . [ Cyril Brulebois ] * Update chdist bash-completion file with the architectures currently (as of 2015-04-28) listed on buildd.debian.org and buildd.debian-ports.org. (Closes: #783634) * Add support for RMADISON_SSL_CA_FILE and RMADISON_SSL_CA_PATH, so that one can point to system-specific locations for CA-related files, and pass them to curl/wget via the appropriate options. (Closes: #784812) . [ James McCoy ] * wrap-and-sort: + Always remove empty elements from lists so “-t” doesn't add a new, empty element. (Closes: #783630) + Remove empty lines in debhelper-related files. (Closes: #780667) * Install Perl modules into $Config{vendorlib} and remove the hacks in various scripts to make them see devscript's modules. * Add bash completion scripts for uscan (thanks to Ben Finney) and mk-origtargz. (Closes: #784394) * Stop building and shipping libvfork.so since strace has handled vforks for at least a decade. * Move bash-completion scripts from /etc/bash_completion.d (compat directory) to /usr/share/bash-completion/completions. * debdiff: Inspect wdiff's return code rather than Dpkg::IPC::spawn's exception to determine if wdiff found differences. (Closes: #786518) * Store cached files in $XDG_CACHE_HOME instead of ~/.devscripts_cache. (Closes: #659330) * bts: + Use https to talk to bugs.debian.org + Use URI & URI::QueryParam to parse URIs rather than regexps. This fixes issues with not detecting BTS URLs as valid due to ordering of query parameters. (Closes: #786706) * debuild: Recognize -jauto as a valid option. Based on a patch by Reiner Herrmann. (Closes: #787276) * uscan: + Fix Github example in man page. (Closes: #757194) + Clear cached redirection URLs every time a watch line is processed. This ensures any relative URLs are built into absolute URLs using relevant sites. (Closes: #736063) * Devscripts::Debbugs: Retrieve bug status in chunks to avoid building large responses on bugs.d.o. * mk-build-deps: + Verify build-dep package was installed since the install tool may exit successfully even if the package couldn't be installed. Based on a patch by Dima Kogan. (Closes: #755371) * mergechanges: + Add -d option to delete input files on success. Thanks to Mark Hymers for the patch. (Closes: #640068) * dd-list: + Strip arch-qualifiers from given package names. (Closes: #788367) . [ Dominique Dumont ] * licensecheck: * check file encoding and decode properly when reading file (Closes: #784821) * improve GPL LGPL extraction * optimize regex used to extract © info * check Groovy, Scala and Clojure files (Closes: #771119) * fixed regexp used to detect discussion about © (Closes: #723723) * fix BSL parser (Closes: #690375) * support academic free license (Closes: #534987) * allow © owner to mention "and others" * support eclipse public license (Closes: #587892) * handle LGPL as written by IBM (Closes: #587970) * handle REM style comments (Closes: #748611) * uscan: use defined-or (//) instead of "||" to avoid loosing '0' version field (Closes: #787767) . [ Piotr Ożarowski ] * uscan: Use pypi.debian.net redirector instead of pypi.debian.org/packages/source URLs. (Closes: #785746) . [ Hideki Yamane ] * Add bash completion for dcut. (Closes: #787321) . [ Craig Small ] * debdiff: Honor DEBRELEASE_DEBS_DIR or --debs-dir. (Closes: #785421) Checksums-Sha1: 5973cf2e3252dfc6b470b447b49db4472622f051 2235 devscripts_2.15.5.dsc 5e5f4501807728655b03a27aac58b1108a8e96be 617680 devscripts_2.15.5.tar.xz 7d12d0add64762f2c2e78ad19569a8f0c52c1fbc 905842 devscripts_2.15.5_amd64.deb Checksums-Sha256: a9955591ebe01a0241544f849f69196be2a29d111dce65f3c4c7379f822d1446 2235 devscripts_2.15.5.dsc 19b9fdd343178370c2d0fc17a5aa2327126b0f5da8ca967f75445dbdd4f63c73 617680 devscripts_2.15.5.tar.xz 90581827a75fb2d10d6b479fc792a06910044f88a2690c6f8537f9cc6c483e41 905842 devscripts_2.15.5_amd64.deb Files: 933f5de312d8f53864933e0a3d7aa9aa 2235 devel optional devscripts_2.15.5.dsc dbcf6ba9a619f698a2136099ecb4f1af 617680 devel optional devscripts_2.15.5.tar.xz c729408b6465353a9840d891eb260938 905842 devel optional devscripts_2.15.5_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJVeQMMXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ5MUJGQkY0RDY5NTZCRDVERjdCNzJEMjNE RkU2OTFBRTMzMUJBM0RCAAoJEN/mka4zG6PbzigP/3zcZTzr5qFr3jtt+Jc2v1vo h8/tgEhx5tg9eiOpeLLyfBlSJvd62dRYPFdKRkk3op37QRUR2pdlltbPI3xO4N9o ZO7VPwAUJnjqA1x7NUFd50ffSe5zqS/7IzoSCm7Awt15XfDjPThpyZBqbz3VRwuR V0gaUJqIEWlj2qHIDyXSGmqjKaKpfjxO57nJm1rl/ZG1momaVwZw2nslDVbSdby2 dZPGFJNe3vPAGk8iQzNz0NdTSkE5s621eNpzbmcShAfFx0MgTnmlE1yEwOUnZHHH 1mJxAXf2n+YeAyIsUVeQfTFwcutfSKKybJ5R9qSxofclD3IcElEnvwFywVf23Caf JLBKVKcd3CcOb0fibuGggZjo0jfLpRr8lHYurOpdB0YlQQILxtr5BqhvvOWDo4Pj SFBNO83SrMsNNXvlNJRYUTbjX8ksGLLSjWoKhlfHVkLiYG1Fie8n/w+IpL1JTSjP 6rE94j6eJamFfET0Qu6EnQo6ibBsJtpOlWP7Z1+ZMtXgBcEGfS0Dr6t6RnRm4vkl 5NdaXadqlFUxTEhx3q5fqpKLZjT6RWBUhZl8RHM/GKhV8r4z7vGcVXir1OgzmMKo oI0ZXdEurM2N2Y+6fpuCY+u8ceSLT5tjq6k+dmNOcjqpblOMysVGMas31PKbsYvJ /KCFIGRLVosa3PVDRIl5 =zwuN -----END PGP SIGNATURE-----
--- End Message ---
_______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
