Your message dated Fri, 16 Dec 2016 19:18:25 +0000 with message-id <[email protected]> and subject line Bug#848274: fixed in libparse-debianchangelog-perl 1.2.0-12 has caused the Debian Bug report #848274, regarding libparse-debianchangelog-perl: Fix errorneous escaping in POD 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.) -- 848274: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=848274 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: libparse-debianchangelog-perl Version: 1.2.0-11 Severity: minor Tags: Patch Upstream Dear Maintainer, The Parse::DebianChangelog manpage contains a table which was formatted as a "verbatim paragraph" i.e. "First character [is] a space or a tab". However some character still are escaped using C<> and E<> which is, by definition, rendered literally. And the resulting table is pretty ugly. The patch attached salvages this and also converts the tab characters to spaces to avoid any ambigousity. Please apply when conventient. And perhaps convenience might by achieved by re-visiting the sentence "Parse::DebianChangelog parses Debian changelogs as described in the Debian policy (version 3.6.2.1 at the time of this writing)." Perhaps it can be safely upgraded to 3.9.8? That would avoid any confusion whether the module still reflects the current policy. Cheers, and thanks for all your work Christoph -- System Information: Debian Release: stretch/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 4.9.0 (SMP w/4 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Init: unable to detect Versions of packages libparse-debianchangelog-perl depends on: ii libcgi-pm-perl 4.35-1 ii libclass-accessor-perl 0.34-1 ii libio-string-perl 1.08-3 ii liblocale-gettext-perl 1.07-3+b1 ii libtimedate-perl 2.3000-2 ii perl 5.24.1~rc4-1 libparse-debianchangelog-perl recommends no packages. Versions of packages libparse-debianchangelog-perl suggests: ii libhtml-parser-perl 3.72-3 pn libhtml-template-perl <none> pn libxml-simple-perl <none> -- no debconf information--- DebianChangelog.pm 2016-10-08 15:26:40.000000000 +0200 +++ DebianChangelog.pm 2016-12-15 21:46:02.434030787 +0100 @@ -1249,21 +1249,21 @@ Some examples for the above options. Imagine an example changelog with entries for the versions 1.2, 1.3, 2.0, 2.1, 2.2, 3.0 and 3.1. - Call Included entries - C<E<lt>formatE<gt>({ since =E<gt> '2.0' })> 3.1, 3.0, 2.2 - C<E<lt>formatE<gt>({ until =E<gt> '2.0' })> 1.3, 1.2 - C<E<lt>formatE<gt>({ from =E<gt> '2.0' })> 3.1, 3.0, 2.2, 2.1, 2.0 - C<E<lt>formatE<gt>({ to =E<gt> '2.0' })> 2.0, 1.3, 1.2 - C<E<lt>formatE<gt>({ count =E<gt> 2 }>> 3.1, 3.0 - C<E<lt>formatE<gt>({ count =E<gt> -2 }>> 1.3, 1.2 - C<E<lt>formatE<gt>({ count =E<gt> 3, - offset=E<gt> 2 }>> 2.2, 2.1, 2.0 - C<E<lt>formatE<gt>({ count =E<gt> 2, - offset=E<gt> -3 }>> 2.0, 1.3 - C<E<lt>formatE<gt>({ count =E<gt> -2, - offset=E<gt> 3 }>> 3.0, 2.2 - C<E<lt>formatE<gt>({ count =E<gt> -2, - offset=E<gt> -3 }>> 2.2, 2.1 + Call Included entries + format({ since => '2.0' }) 3.1, 3.0, 2.2 + format({ until => '2.0' }) 1.3, 1.2 + format({ from => '2.0' }) 3.1, 3.0, 2.2, 2.1, 2.0 + format({ to => '2.0' }) 2.0, 1.3, 1.2 + format({ count => 2 } 3.1, 3.0 + format({ count => -2 } 1.3, 1.2 + format({ count => 3, + offset => 2 } 2.2, 2.1, 2.0 + format({ count => 2, + offset => -3 } 2.0, 1.3 + format({ count => -2, + offset => 3 } 3.0, 2.2 + format({ count => -2, + offset => -3 } 2.2, 2.1 Any combination of one option of C<since> and C<from> and one of C<until> and C<to> returns the intersection of the two results
signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---Source: libparse-debianchangelog-perl Source-Version: 1.2.0-12 We believe that the bug you reported is fixed in the latest version of libparse-debianchangelog-perl, 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. Christoph Biedl <[email protected]> (supplier of updated libparse-debianchangelog-perl 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: Fri, 16 Dec 2016 20:02:18 +0100 Source: libparse-debianchangelog-perl Binary: libparse-debianchangelog-perl Architecture: source Version: 1.2.0-12 Distribution: unstable Urgency: medium Maintainer: Debian Perl Group <[email protected]> Changed-By: Christoph Biedl <[email protected]> Closes: 848274 Description: libparse-debianchangelog-perl - parse Debian changelogs and output them in other formats Changes: libparse-debianchangelog-perl (1.2.0-12) unstable; urgency=medium . * Team upload * Document parsechangelog fails on version numbers not present in the changelog * Bump the policy version number in parsechangelog manpage * Fix erroneous escaping and formatting in Parse::DebianChangelog documentation. Closes: #848274 Checksums-Sha1: 52191efa8b3740274564c8832657d40ba27906b7 2693 libparse-debianchangelog-perl_1.2.0-12.dsc c2d0f44d92c9df6ac0c0567d436a36068bfea065 13060 libparse-debianchangelog-perl_1.2.0-12.debian.tar.xz Checksums-Sha256: 44c81d6c82e90cfe95dc58ee818c1b0562e66cb60f56e705bd176f26d177af9f 2693 libparse-debianchangelog-perl_1.2.0-12.dsc 10e6821ea8905af3df39d9ec3b975631a0bc9a7a83f02344c9f5290a8cf2fec9 13060 libparse-debianchangelog-perl_1.2.0-12.debian.tar.xz Files: 28115225c11ea957bd962c657d18afd6 2693 perl optional libparse-debianchangelog-perl_1.2.0-12.dsc fe61d770beefbb50cbaf0f360ce6c7c4 13060 perl optional libparse-debianchangelog-perl_1.2.0-12.debian.tar.xz -----BEGIN PGP SIGNATURE----- iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlhUO7xfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ qgb1Tg/9ETzVUFmvBhx7cai1+blSpb9wLkcmgXm9IVqaYyz/p5NEFD3WSHYOBagn QIPq3gNrXA5kQHAtW0g09XKYUlrXyJZnIn5On4LFZ9bl7tXnnx79EEKftT6Tk5RR 2WHuVVhphmpfAKHg+oO5JB7n85cZG5gdi1rJan8Y/ojC0DYkqIhiZIeHpAQ0WBA2 LTRV9vng1so4phSMFj/N/jjGbnsPvOxMTuSCJGu/5AcmSYHGOuwxktywZXTwTAdf 8c3pOwTgm/+6Okt2DJ54vJqnsDH6X1GxiY+sR0/Awc8kOmi68/V3YbVrAIKxOTGW KCN9Nw9YmJ8BluHf58vqxTvfeRMI7Yn+jQsGzrN+SvHsaDRMa2TwOkEtWbRkXGH5 LA24rI3Ddzttd13oFkJPtRCkL/nENcVzCXwAqYiv1arEzh2AWBF5C5NuSM+xodI6 dx26f3Brl3EY3MlxXpRs/B7TSORdyLO7b/sAz7D7+ZQDGzDYkGJEUAiXmnl3QiZm XpBditK3sCQHbBjla9DPhwiAjHdYcBLjawVIdEzqnvjp1Sr+TIliRW7zOo/6ala2 UKUGfqvejDQsOjW9LMY/r0N75SRMqNkltZ57p4mhbb3wkIA360nRHPurTktXgW4V t62BCKM9yDfAdSL961EDFkkidmo5l+J3MPM9EXZiZMPx9Q9l5pQ= =tUWy -----END PGP SIGNATURE-----
--- End Message ---

