Codebase list libhtml-gumbo-perl / aa7d5df1-f1e8-40f5-b4d8-d40a57db1850/main
Reading package lists... 0%Reading package lists... 0%Reading package lists... 0%Reading package lists... 99%Reading package lists... 99%Reading package lists... Done Building dependency tree... 0%Building dependency tree... 0%Building dependency tree... 50%Building dependency tree... 50%Building dependency tree... 84%Building dependency tree... Done Reading state information... 0% Reading state information... 0%Reading state information... Done Connecting to api.ftp-master.debian.org to check 3 package versions. Please wait... Got info from api.ftp-master.debian.org for 3 packages. Config::Model::Backend::DpkgStoreRole::store_section_leaf_element Subject should be only one line. Gluing together the lines (line 66) Changes applied to dpkg configuration: - patches:"tree_to_callback-don-t-check-document-nodes-for-void.patch" Subject: Gluing together lines - control source Standards-Version: '4.1.5' -> '4.6.0' # applied fix for :Current standards version is '4.6.0'. Please read https://www.debian.org/doc/debian-policy/upgrading-checklist.html for the changes that may be needed on your package to upgrade it from standard version '4.1.5' to '4.6.0'. - control source Build-Depends:4: 'libmodule-build-perl (>= 0.420000) | perl (<< 5.19.0)' -> 'libmodule-build-perl' # applied fix for :unnecessary greater-than versioned dependency: libmodule-build-perl (>= 0.420000). Debian has oldstable -> 0.422400-1; stable -> 0.423100-1; testing -> 0.423100-1; unstable -> 0.423100-1;; unnecessary older-than versioned dependency: perl (<< 5.19.0). Debian has oldstable -> 5.28.1-6+deb10u1; stable -> 5.32.1-4; proposed-updates -> 5.32.1-4+deb11u1; testing -> 5.32.1-5; unstable -> 5.32.1-5; experimental -> 5.34.0-2; Debian Janitor 2 years ago
3 changed file(s) with 32 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
1111 Repository-Browse.
1212 * Remove obsolete fields Contact, Name from debian/upstream/metadata (already
1313 present in machine-readable debian/copyright).
14 * Reading package lists... 0%Reading package lists... 0%Reading package
15 lists... 0%Reading package lists... 99%Reading package lists... 99%Reading
16 package lists... Done Building dependency tree... 0%Building dependency
17 tree... 0%Building dependency tree... 50%Building dependency tree...
18 50%Building dependency tree... 84%Building dependency tree... Done Reading
19 state information... 0% Reading state information... 0%Reading state
20 information... Done Connecting to api.ftp-master.debian.org to check 3
21 package versions. Please wait... Got info from api.ftp-master.debian.org for
22 3 packages.
23 Config::Model::Backend::DpkgStoreRole::store_section_leaf_element Subject
24 should be only one line. Gluing together the lines (line 66) Changes
25 applied to dpkg configuration: -
26 patches:"tree_to_callback-don-t-check-document-nodes-for-void.patch"
27 Subject: Gluing together lines - control source Standards-Version: '4.1.5'
28 -> '4.6.0' # applied fix for :Current standards version is '4.6.0'. Please
29 read https://www.debian.org/doc/debian-policy/upgrading-checklist.html for
30 the changes that may be needed on your package to upgrade it from standard
31 version '4.1.5' to '4.6.0'. - control source Build-Depends:4:
32 'libmodule-build-perl (>= 0.420000) | perl (<< 5.19.0)' ->
33 'libmodule-build-perl' # applied fix for :unnecessary greater-than versioned
34 dependency: libmodule-build-perl (>= 0.420000). Debian has oldstable ->
35 0.422400-1; stable -> 0.423100-1; testing -> 0.423100-1; unstable ->
36 0.423100-1;; unnecessary older-than versioned dependency: perl (<< 5.19.0).
37 Debian has oldstable -> 5.28.1-6+deb10u1; stable -> 5.32.1-4;
38 proposed-updates -> 5.32.1-4+deb11u1; testing -> 5.32.1-5; unstable ->
39 5.32.1-5; experimental -> 5.34.0-2;
1440
1541 -- gregor herrmann <gregoa@debian.org> Fri, 21 Feb 2020 17:47:39 +0100
1642
77 libextutils-pkgconfig-perl,
88 libgumbo-dev,
99 libhtml-tree-perl,
10 libmodule-build-perl (>= 0.420000) | perl (<< 5.19.0),
10 libmodule-build-perl,
1111 perl-xs-dev,
1212 perl:native
13 Standards-Version: 4.1.5
13 Standards-Version: 4.6.0
1414 Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libhtml-gumbo-perl
1515 Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libhtml-gumbo-perl.git
1616 Homepage: https://metacpan.org/release/HTML-Gumbo
0 From cc8d278d2737f55ac2ef262c89849597c5929f90 Mon Sep 17 00:00:00 2001
0 Subject: [PATCH] tree_to_callback: don't check document nodes for void elements
1 Bug-Debian: https://bugs.debian.org/904914
12 From: Niko Tyni <ntyni@debian.org>
3
24 Date: Mon, 30 Jul 2018 15:08:10 +0300
3 Subject: [PATCH] tree_to_callback: don't check document nodes for void
4 elements
55
66 walk_tree() will call this with PHG_ELEMENT_END for both document
77 and element nodes, but only the latter ones have tag types defined.
1111 to have a valid (void) tag code at the same offset, triggering
1212 an early return.
1313
14 Bug-Debian: https://bugs.debian.org/904914
14
1515 ---
1616 lib/HTML/Gumbo.xs | 2 +-
1717 1 file changed, 1 insertion(+), 1 deletion(-)