[ubuntu/artful-proposed] dupload 2.9.0ubuntu1 (Accepted)
Gianfranco Costamagna
locutusofborg at debian.org
Sat Aug 26 10:46:13 UTC 2017
dupload (2.9.0ubuntu1) artful; urgency=low
* Merge from Debian unstable. Remaining changes:
- Use /ubuntu for incoming packages (CFR: LP: #1340130)
- Add upload.ubuntu.com to the list of upload hosts
- Make ubuntu the default upload host
dupload (2.9.0) unstable; urgency=medium
* Update the TODO list.
* Add Vcs-Browser and Vcs-Git fields to debian/control.
* Bump Standards-Version to 4.1.0 (no changes needed).
* Rename man pages to from Npod to N.pod extensions.
* Remove trailing whitespace.
* Remove PGP support, we always have GnuPG now.
* Do not consider the default_host as the only host to dump on --print.
* Add a new default hook to ask whether the user has been authorized to
do Debian security uploads, and enable all security queues by default.
* Add support for specifying a filename argument to --configfile, and
deprecate using it without the argument due to being a security risk.
* Add a basic unit test suite.
* Fix fatal error for pre-upload package hook to include the actual hook.
* Use $changes instead of $_ for the sourcepackage postupload hook, so that
we compute the hook arguments properly.
* Do not try to operate on the job log filehandle if we cannot open it.
* Add new "copy" upload method. Closes: #259981
* Do not expect incoming nor queuedir options to end in a slash. This was
affecting the ftp and scp methods.
* Always print a newline before printing a fatal error to make sure we do
not start on a partially written line.
* Insert a colon after the program name in errors and warnings.
* Only set the batch mode command variables when in that mode.
* Add Ubuntu host to dupload.conf.
Thanks to Oliver Grawert (ogra) <hostmaster at grawert.net>.
* Switch to debhelper compatibility level 10.
* Perl code cleanup:
- Do not access the @_ array as @_[0].
- Declare Getopt::Long option variables.
- Declare dupload.conf configuration variables.
- Use strict and warnings in dupload and dupload.conf.
- Remove ancient perl version requirement.
- Replace hard tabs with 4 spaces.
- Switch a deep conditional into an early return.
- Remove unused variables.
- Fold batch method statistics conditional into subsequent conditional.
- Fix indentation and spacing. Split each statement into its own line.
- Use IO::Handle autoflush instead of single argument select.
- Do not use parenthesis with built-ins.
- Use parenthesis for non-built-in functions.
- Use block form for grep.
- Declare every global variable on its own my.
- Improve code comments.
- Remove unnecessary parenthesis in conditionals.
- Switch trivial one-liner conditionals to postfix notation.
- Switch comma separated statements into prefix conditionals.
- Refactor job logging into a new log_job() function.
- Use scalars for filehandles instead of barewords.
- Use braced filehandles with print.
- Use three argument open form.
- Use lexical loop iterators.
- Rework hook execution to not require an eval.
- Do not use stringy split.
- Do not interpolate literal strings.
- Do not use undefined $queuedir variable.
- Do not use undefined $debian when checking announce filenames.
- Use uppercase names for HERE-doc terminators.
- Quote HERE-doc terminators.
- Use glob function instead of the <> operator.
- Use negative indices instead of $#var.
- Use {} instead of # as regex delimiter.
- Use List::Util any function instead of grep in boolean context.
- Stop using the English module.
- Do not mix boolean operators with different precedence.
- Use octals instead of decimal values for file modes.
- Move declaration of @f to its initialization.
- Do not use «and do» or «or do» constructs.
- Do not use «and» or «or» for non-control-flow actions.
- Unify fatal error handling with other surrounding flow control logic.
- Avoid explicit usage of the topic variable.
- Simplify and cleanup fatal error reporting.
- Use non-capturing groups in regexes.
- Refactor pre and post upload hooks into two new functions.
- Check open return value for redirection of announcement to stdout.
- Use fatal() instead of die.
- Do not use contracted forms in output messages nor documentation.
- Chain method conditionals into if/elsif blocks.
- Rename $server variable to $ftp.
Date: Sat, 26 Aug 2017 12:38:22 +0200
Changed-By: Gianfranco Costamagna <locutusofborg at debian.org>
Maintainer: Ubuntu Developers <ubuntu-devel-discuss at lists.ubuntu.com>
https://launchpad.net/ubuntu/+source/dupload/2.9.0ubuntu1
-------------- next part --------------
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Sat, 26 Aug 2017 12:38:22 +0200
Source: dupload
Binary: dupload
Architecture: source
Version: 2.9.0ubuntu1
Distribution: artful
Urgency: medium
Maintainer: Ubuntu Developers <ubuntu-devel-discuss at lists.ubuntu.com>
Changed-By: Gianfranco Costamagna <locutusofborg at debian.org>
Description:
dupload - Debian package upload tool
Closes: 259981
Launchpad-Bugs-Fixed: 1340130
Changes:
dupload (2.9.0ubuntu1) artful; urgency=low
.
* Merge from Debian unstable. Remaining changes:
- Use /ubuntu for incoming packages (CFR: LP: #1340130)
- Add upload.ubuntu.com to the list of upload hosts
- Make ubuntu the default upload host
.
dupload (2.9.0) unstable; urgency=medium
.
* Update the TODO list.
* Add Vcs-Browser and Vcs-Git fields to debian/control.
* Bump Standards-Version to 4.1.0 (no changes needed).
* Rename man pages to from Npod to N.pod extensions.
* Remove trailing whitespace.
* Remove PGP support, we always have GnuPG now.
* Do not consider the default_host as the only host to dump on --print.
* Add a new default hook to ask whether the user has been authorized to
do Debian security uploads, and enable all security queues by default.
* Add support for specifying a filename argument to --configfile, and
deprecate using it without the argument due to being a security risk.
* Add a basic unit test suite.
* Fix fatal error for pre-upload package hook to include the actual hook.
* Use $changes instead of $_ for the sourcepackage postupload hook, so that
we compute the hook arguments properly.
* Do not try to operate on the job log filehandle if we cannot open it.
* Add new "copy" upload method. Closes: #259981
* Do not expect incoming nor queuedir options to end in a slash. This was
affecting the ftp and scp methods.
* Always print a newline before printing a fatal error to make sure we do
not start on a partially written line.
* Insert a colon after the program name in errors and warnings.
* Only set the batch mode command variables when in that mode.
* Add Ubuntu host to dupload.conf.
Thanks to Oliver Grawert (ogra) <hostmaster at grawert.net>.
* Switch to debhelper compatibility level 10.
* Perl code cleanup:
- Do not access the @_ array as @_[0].
- Declare Getopt::Long option variables.
- Declare dupload.conf configuration variables.
- Use strict and warnings in dupload and dupload.conf.
- Remove ancient perl version requirement.
- Replace hard tabs with 4 spaces.
- Switch a deep conditional into an early return.
- Remove unused variables.
- Fold batch method statistics conditional into subsequent conditional.
- Fix indentation and spacing. Split each statement into its own line.
- Use IO::Handle autoflush instead of single argument select.
- Do not use parenthesis with built-ins.
- Use parenthesis for non-built-in functions.
- Use block form for grep.
- Declare every global variable on its own my.
- Improve code comments.
- Remove unnecessary parenthesis in conditionals.
- Switch trivial one-liner conditionals to postfix notation.
- Switch comma separated statements into prefix conditionals.
- Refactor job logging into a new log_job() function.
- Use scalars for filehandles instead of barewords.
- Use braced filehandles with print.
- Use three argument open form.
- Use lexical loop iterators.
- Rework hook execution to not require an eval.
- Do not use stringy split.
- Do not interpolate literal strings.
- Do not use undefined $queuedir variable.
- Do not use undefined $debian when checking announce filenames.
- Use uppercase names for HERE-doc terminators.
- Quote HERE-doc terminators.
- Use glob function instead of the <> operator.
- Use negative indices instead of $#var.
- Use {} instead of # as regex delimiter.
- Use List::Util any function instead of grep in boolean context.
- Stop using the English module.
- Do not mix boolean operators with different precedence.
- Use octals instead of decimal values for file modes.
- Move declaration of @f to its initialization.
- Do not use «and do» or «or do» constructs.
- Do not use «and» or «or» for non-control-flow actions.
- Unify fatal error handling with other surrounding flow control logic.
- Avoid explicit usage of the topic variable.
- Simplify and cleanup fatal error reporting.
- Use non-capturing groups in regexes.
- Refactor pre and post upload hooks into two new functions.
- Check open return value for redirection of announcement to stdout.
- Use fatal() instead of die.
- Do not use contracted forms in output messages nor documentation.
- Chain method conditionals into if/elsif blocks.
- Rename $server variable to $ftp.
Checksums-Sha1:
0e9999a25e143d5f5bede5f8d655ca01187a55e7 1684 dupload_2.9.0ubuntu1.dsc
252d55e8bb53891a79a44f6ed4138a478067a286 29908 dupload_2.9.0ubuntu1.tar.xz
Checksums-Sha256:
be5fe193a87c6c0dfee4e2a7aa5e4f2cf646219c4dd41e44e0f6848e916d46b6 1684 dupload_2.9.0ubuntu1.dsc
631013bc14a3697e0e068dea253879a87fa0bc75e7423d6d2604df41bdca2505 29908 dupload_2.9.0ubuntu1.tar.xz
Files:
5d24cbfd51421cec2075db035979354e 1684 devel optional dupload_2.9.0ubuntu1.dsc
cd088e9d8ef3105c3fc7a94dfb35dc77 29908 devel optional dupload_2.9.0ubuntu1.tar.xz
Original-Maintainer: Dpkg Developers <debian-dpkg at lists.debian.org>
-----BEGIN PGP SIGNATURE-----
iQIcBAEBCAAGBQJZoU/WAAoJEPNPCXROn13ZBMAQAJSOFKA095LzOWhBdw53fcIB
RfZhTID4Un8jPXJng48JozCLR8KddqxR7FohNG2y9b1Tq0v5+7v+cAt4RxLUzQ00
0Hz7/f9FT+oMFIprC/acomiIdXdnM9T1b2eSVl9YMO5Fb0W7X63qiwhHLQuTHneo
+/N3qlhns5xOvnQRTOSSsAPMxDBbZTCCpKz7iQsskCLeLLUufXcRAUcBkiBP7eHm
JWBPI9j+7ZONuntShaatwbm8LswcvweeUBhcdOm70SmOmFvsLw5Si9EDN1aYNlOE
qoc1Hual1Gcqp5f/HARg6sqtXJnUOIifw8XaqtJ5n19WBSoycP7+WT4FaqgF+o0K
yrL4jCJJvJAD+0Zbpk6DJtBvnqZAdOpOwwu7UxKLC+SzIzfMLELFuYheGIdETSDK
DuCwJXvoCTuaRsdhqg+mYyHtJOSNlqH8Lp/+0Kcfeh2+6Tit2PtaUkuvUDz6bimd
tPTNYLh8WmRxb8Tb04LsjZZ/3D5s9p84qAcg8WzsfhSIN9B2EOEcOusdwiN5d7Kf
w6xg98r7fssmgRHrhTRhlUa8xh3BzQzqrXP7etvFzr52i3uzMp2GkH156fSzVVZt
Ah7mNJgLlWSf0lvL0MLZtsxsNqoAhfTSnNl4n9vl4ubsMHHcdZ8iT0V0ex/Ji/Xp
mkEPYlzaBYhNI5lyDEin
=tPPC
-----END PGP SIGNATURE-----
More information about the Artful-changes
mailing list