Codebase list rust-libslirp / 3d26e20
packaging html2pango and its dependencies Henry-Nicolas Tourneur authored 3 years ago Sylvestre Ledru committed 3 years ago
31 changed file(s) with 581 addition(s) and 88 deletion(s). Raw diff Collapse all Expand all
(New empty file)
0 rust-ammonia (3.1.0-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Team upload.
3 * Package ammonia 3.1.0 from crates.io using debcargo 2.4.2
4
5 -- Henry-Nicolas Tourneur <debian@nilux.be> Fri, 03 Jul 2020 15:55:28 +0000
6
07 rust-ammonia (3.0.0-2) unstable; urgency=medium
18
29 * Team upload.
(New empty file)
0 rust-html2pango (0.3.2-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package html2pango 0.3.2 from crates.io using debcargo 2.4.2
3
4 -- Henry-Nicolas Tourneur <debian@nilux.be> Sat, 04 Jul 2020 17:37:07 +0000
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: html2pango
2 Upstream-Contact:
3 Daniel García Moreno <danigm@wadobo.com>
4 Jordan Petridis <jordanpetridis@protonmail.com>
5 Source: https://gitlab.gnome.org/World/html2pango
6
7 Files: *
8 Copyright:
9 2018-2019 Daniel García Moreno <danigm@wadobo.com>
10 2018-2020 Jordan Petridis <jordanpetridis@protonmail.com>
11 License: GPL-3.0
12
13 Files: debian/*
14 Copyright:
15 2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
16 2020 Henry-Nicolas Tourneur <debian@nilux.be>
17 License: GPL-3.0
18
19 License: GPL-3.0
20 Debian systems provide the GPL 3.0 in /usr/share/common-licenses/GPL-3
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: html2pango
2 Upstream-Contact:
3 Daniel García Moreno <danigm@wadobo.com>
4 Jordan Petridis <jordanpetridis@protonmail.com>
5 Source: https://gitlab.gnome.org/World/html2pango
6
7 Files: *
8 Copyright:
9 FIXME (overlay) UNKNOWN-YEARS Daniel García Moreno <danigm@wadobo.com>
10 FIXME (overlay) UNKNOWN-YEARS Jordan Petridis <jordanpetridis@protonmail.com>
11 License: GPL-3.0
12 Comment:
13 FIXME (overlay): Since upstream copyright years are not available in
14 Cargo.toml, they were extracted from the upstream Git repository. This may not
15 be correct information so you should review and fix this before uploading to
16 the archive.
17
18 Files: ./LICENSE
19 Copyright:
20 2007 Free Software Foundation, Inc. <http://fsf.org/>
21 2018 Daniel Garcia Moreno
22 2018 Daniel Garcia Moreno
23 License: UNKNOWN-LICENSE; FIXME (overlay)
24 Comment:
25 FIXME (overlay): These notices are extracted from files. Please review them
26 before uploading to the archive.
27
28 Files: debian/*
29 Copyright:
30 2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
31 2020 Henry-Nicolas Tourneur <debian@nilux.be>
32 License: GPL-3.0
33
34 License: GPL-3.0
35 Debian systems provide the GPL 3.0 in /usr/share/common-licenses/GPL-3
0 overlay = "."
1 uploaders = ["Henry-Nicolas Tourneur <debian@nilux.be>"]
0 --- a/Cargo.toml
1 +++ b/Cargo.toml
2 @@ -21,19 +21,19 @@
3 license = "GPL-3.0"
4 repository = "https://gitlab.gnome.org/World/html2pango"
5 [dependencies.ammonia]
6 -version = "2.0.0"
7 +version = "3.0.0"
8
9 [dependencies.failure]
10 -version = "0.1.5"
11 +version = "0.1.7"
12
13 [dependencies.html5ever]
14 -version = "0.23"
15 +version = "0.25"
16
17 [dependencies.lazy_static]
18 version = "1.3.0"
19
20 [dependencies.linkify]
21 -version = "0.3.1"
22 +version = "0.4"
23
24 [dependencies.maplit]
25 version = "1.0.1"
26 @@ -42,3 +42,6 @@
27 version = "1.1.2"
28 [dev-dependencies.pretty_assertions]
29 version = "0.6.1"
30 +
31 +[dependencies.markup5ever_rcdom]
32 +version = "0.1"
0 relax-dep-versions.patch
1 update-dep-markup5ever-rcdom.patch
0 Description: Update rcdom namespace following release 0.25 of
1 html5ever. The API has been changed and the features which used
2 to be available under html5ever::rcdom are now in a dedicated crate.
3 This patch cope for that change.
4 Author: Henry-Nicolas Tourneur <debian@nilux.be>
5 Forwarded: no
6 ---
7 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
8 --- a/src/block.rs
9 +++ b/src/block.rs
10 @@ -4,9 +4,9 @@
11
12 use super::markup_links;
13
14 -use html5ever::rcdom::Node;
15 -use html5ever::rcdom::NodeData;
16 -use html5ever::rcdom::RcDom;
17 +use markup5ever_rcdom::Node;
18 +use markup5ever_rcdom::NodeData;
19 +use markup5ever_rcdom::RcDom;
20 use html5ever::tendril::TendrilSink;
21 use html5ever::tree_builder::Attribute;
22 use html5ever::tree_builder::TreeBuilderOpts;
23 --- a/src/lib.rs
24 +++ b/src/lib.rs
25 @@ -1,9 +1,9 @@
26 use ammonia;
27 use failure;
28
29 -use html5ever::rcdom::Node;
30 -use html5ever::rcdom::NodeData;
31 -use html5ever::rcdom::RcDom;
32 +use markup5ever_rcdom::Node;
33 +use markup5ever_rcdom::NodeData;
34 +use markup5ever_rcdom::RcDom;
35 use html5ever::tendril::TendrilSink;
36 use html5ever::tree_builder::TreeBuilderOpts;
37 use html5ever::{parse_document, ParseOpts};
(New empty file)
0 rust-html5ever (0.25.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Team upload.
3 * Package html5ever 0.25.1 from crates.io using debcargo 2.4.2
4 * Removed patches relax-deps and proc-macro2, included upstream
5
6 -- Henry-Nicolas Tourneur <debian@nilux.be> Fri, 03 Jul 2020 15:59:09 +0000
7
08 rust-html5ever (0.24.0-1) unstable; urgency=medium
19
210 * Package html5ever 0.24.0 from crates.io using debcargo 2.4.0
2020
2121 Files: ./build.rs
2222 Copyright: 2014-2017 The html5ever Project Developers. See the
23 License: UNKNOWN-LICENSE; FIXME (overlay)
24 Comment:
25 FIXME (overlay): These notices are extracted from files. Please review them
26 before uploading to the archive.
27
28 Files: ./html5lib-tests/LICENSE
29 Copyright: 2006-2013 James Graham, Geoffrey Sneddon, and
3023 License: UNKNOWN-LICENSE; FIXME (overlay)
3124 Comment:
3225 FIXME (overlay): These notices are extracted from files. Please review them
137130 FIXME (overlay): These notices are extracted from files. Please review them
138131 before uploading to the archive.
139132
140 Files: ./tests/foreach_html5lib_test/mod.rs
141 Copyright: 2014-2017 The html5ever Project Developers. See the
142 License: UNKNOWN-LICENSE; FIXME (overlay)
143 Comment:
144 FIXME (overlay): These notices are extracted from files. Please review them
145 before uploading to the archive.
146
147 Files: ./tests/serializer.rs
148 Copyright: 2014-2017 The html5ever Project Developers. See the
149 License: UNKNOWN-LICENSE; FIXME (overlay)
150 Comment:
151 FIXME (overlay): These notices are extracted from files. Please review them
152 before uploading to the archive.
153
154 Files: ./tests/tokenizer.rs
155 Copyright: 2014-2017 The html5ever Project Developers. See the
156 License: UNKNOWN-LICENSE; FIXME (overlay)
157 Comment:
158 FIXME (overlay): These notices are extracted from files. Please review them
159 before uploading to the archive.
160
161 Files: ./tests/tree_builder.rs
162 Copyright: 2014-2017 The html5ever Project Developers. See the
163 License: UNKNOWN-LICENSE; FIXME (overlay)
164 Comment:
165 FIXME (overlay): These notices are extracted from files. Please review them
166 before uploading to the archive.
167
168133 Files: debian/*
169134 Copyright:
170 2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
171 2019 kpcyrd <git@rxv.cc>
135 2019-2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
136 2019-2020 kpcyrd <git@rxv.cc>
172137 License: MIT or Apache-2.0
173138
174139 License: Apache-2.0
+0
-32
src/html5ever/debian/patches/proc-macro2.patch less more
0 From 38e0dec90936dfbcd90420bb36ac5a69b2ab3477 Mon Sep 17 00:00:00 2001
1 From: Bastien Orivel <eijebong@bananium.fr>
2 Date: Tue, 13 Aug 2019 19:32:09 +0200
3 Subject: [PATCH] Update syn related crates to 1.0 and bump version
4
5 ---
6 html5ever/Cargo.toml | 8 ++++----
7 html5ever/macros/match_token.rs | 4 ++--
8 2 files changed, 6 insertions(+), 6 deletions(-)
9
10 diff --git a/html5ever/macros/match_token.rs b/html5ever/macros/match_token.rs
11 index 8671841..b434de7 100644
12 --- a/macros/match_token.rs
13 +++ b/macros/match_token.rs
14 @@ -421,7 +421,7 @@ impl Fold for MatchTokenParser {
15 if mac.path == parse_quote!(match_token) {
16 return syn::fold::fold_stmt(
17 self,
18 - syn::Stmt::Expr(expand_match_token(&mac.tts)),
19 + syn::Stmt::Expr(expand_match_token(&mac.tokens)),
20 );
21 }
22 },
23 @@ -435,7 +435,7 @@ impl Fold for MatchTokenParser {
24 match expr {
25 syn::Expr::Macro(syn::ExprMacro { ref mac, .. }) => {
26 if mac.path == parse_quote!(match_token) {
27 - return syn::fold::fold_expr(self, expand_match_token(&mac.tts));
28 + return syn::fold::fold_expr(self, expand_match_token(&mac.tokens));
29 }
30 },
31 _ => {},
+0
-17
src/html5ever/debian/patches/relax-deps.patch less more
0 --- a/Cargo.toml
1 +++ b/Cargo.toml
2 @@ -59,11 +59,11 @@
3 [dev-dependencies.typed-arena]
4 version = "1.3.0"
5 [build-dependencies.proc-macro2]
6 -version = "0.4"
7 +version = "1.0"
8
9 [build-dependencies.quote]
10 -version = "0.6"
11 +version = "1.0"
12
13 [build-dependencies.syn]
14 -version = "0.15"
15 +version = "1.0"
16 features = ["extra-traits", "full", "fold"]
+0
-2
src/html5ever/debian/patches/series less more
0 relax-deps.patch
1 proc-macro2.patch
(New empty file)
0 rust-linkify (0.4.0-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package linkify 0.4.0 from crates.io using debcargo 2.4.2
3
4 -- Henry-Nicolas Tourneur <debian@nilux.be> Fri, 03 Jul 2020 15:46:18 +0000
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: linkify
2 Upstream-Contact: Robin Stocker <robin@nibor.org>
3 Source: https://github.com/robinst/linkify
4
5 Files: *
6 Copyright: 2017-2019 Robin Stocker <robin@nibor.org>
7 License: MIT or Apache-2.0
8
9 Files: debian/*
10 Copyright:
11 2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
12 2020 Henry-Nicolas Tourneur <debian@nilux.be>
13 License: MIT or Apache-2.0
14
15 License: Apache-2.0
16 Debian systems provide the Apache 2.0 license in
17 /usr/share/common-licenses/Apache-2.0
18
19 License: MIT
20 Permission is hereby granted, free of charge, to any person obtaining a copy
21 of this software and associated documentation files (the "Software"), to deal
22 in the Software without restriction, including without limitation the rights
23 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24 copies of the Software, and to permit persons to whom the Software is
25 furnished to do so, subject to the following conditions:
26 .
27 The above copyright notice and this permission notice shall be included in all
28 copies or substantial portions of the Software.
29 .
30 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
31 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
32 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
33 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
34 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
35 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 SOFTWARE.
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: linkify
2 Upstream-Contact: Robin Stocker <robin@nibor.org>
3 Source: https://github.com/robinst/linkify
4
5 Files: *
6 Copyright: FIXME (overlay) UNKNOWN-YEARS Robin Stocker <robin@nibor.org>
7 License: MIT or Apache-2.0
8 Comment:
9 FIXME (overlay): Since upstream copyright years are not available in
10 Cargo.toml, they were extracted from the upstream Git repository. This may not
11 be correct information so you should review and fix this before uploading to
12 the archive.
13
14 Files: ./LICENSE-MIT
15 Copyright: 2017 Robin Stocker
16 License: UNKNOWN-LICENSE; FIXME (overlay)
17 Comment:
18 FIXME (overlay): These notices are extracted from files. Please review them
19 before uploading to the archive.
20
21 Files: debian/*
22 Copyright:
23 2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
24 2020 Henry-Nicolas Tourneur <debian@nilux.be>
25 License: MIT or Apache-2.0
26
27 License: Apache-2.0
28 Debian systems provide the Apache 2.0 license in
29 /usr/share/common-licenses/Apache-2.0
30
31 License: MIT
32 Permission is hereby granted, free of charge, to any person obtaining a copy
33 of this software and associated documentation files (the "Software"), to deal
34 in the Software without restriction, including without limitation the rights
35 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
36 copies of the Software, and to permit persons to whom the Software is
37 furnished to do so, subject to the following conditions:
38 .
39 The above copyright notice and this permission notice shall be included in all
40 copies or substantial portions of the Software.
41 .
42 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
45 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
47 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
48 SOFTWARE.
0 overlay = "."
1 uploaders = ["Henry-Nicolas Tourneur <debian@nilux.be>"]
2
0 rust-markup5ever-rcdom (0.1.0-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package markup5ever_rcdom 0.1.0 from crates.io using debcargo 2.4.2
3
4 -- Henry-Nicolas Tourneur <debian@nilux.be> Fri, 03 Jul 2020 15:55:12 +0000
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: markup5ever_rcdom
2 Upstream-Contact: The html5ever Project Developers
3 Source: https://github.com/servo/html5ever
4
5 Files: *
6 Copyright: 2019-2020 The html5ever Project Developers
7 License: MIT or Apache-2.0
8
9 Files: debian/*
10 Copyright:
11 2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
12 2020 Henry-Nicolas Tourneur <debian@nilux.be>
13 License: MIT or Apache-2.0
14
15 License: Apache-2.0
16 Debian systems provide the Apache 2.0 license in
17 /usr/share/common-licenses/Apache-2.0
18
19 License: MIT
20 Permission is hereby granted, free of charge, to any person obtaining a copy
21 of this software and associated documentation files (the "Software"), to deal
22 in the Software without restriction, including without limitation the rights
23 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24 copies of the Software, and to permit persons to whom the Software is
25 furnished to do so, subject to the following conditions:
26 .
27 The above copyright notice and this permission notice shall be included in all
28 copies or substantial portions of the Software.
29 .
30 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
31 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
32 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
33 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
34 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
35 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 SOFTWARE.
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: markup5ever_rcdom
2 Upstream-Contact: The html5ever Project Developers
3 Source: https://github.com/servo/html5ever
4
5 Files: *
6 Copyright: FIXME (overlay) UNKNOWN-YEARS The html5ever Project Developers
7 License: MIT or Apache-2.0
8 Comment:
9 FIXME (overlay): Since upstream copyright years are not available in
10 Cargo.toml, they were extracted from the upstream Git repository. This may not
11 be correct information so you should review and fix this before uploading to
12 the archive.
13
14 Files: ./examples/html2html.rs
15 Copyright: 2014-2017 The html5ever Project Developers. See the
16 License: UNKNOWN-LICENSE; FIXME (overlay)
17 Comment:
18 FIXME (overlay): These notices are extracted from files. Please review them
19 before uploading to the archive.
20
21 Files: ./examples/print-rcdom.rs
22 Copyright: 2014-2017 The html5ever Project Developers. See the
23 License: UNKNOWN-LICENSE; FIXME (overlay)
24 Comment:
25 FIXME (overlay): These notices are extracted from files. Please review them
26 before uploading to the archive.
27
28 Files: ./lib.rs
29 Copyright: 2014-2017 The html5ever Project Developers. See the
30 License: UNKNOWN-LICENSE; FIXME (overlay)
31 Comment:
32 FIXME (overlay): These notices are extracted from files. Please review them
33 before uploading to the archive.
34
35 Files: ./tests/foreach_html5lib_test/mod.rs
36 Copyright: 2014-2017 The html5ever Project Developers. See the
37 License: UNKNOWN-LICENSE; FIXME (overlay)
38 Comment:
39 FIXME (overlay): These notices are extracted from files. Please review them
40 before uploading to the archive.
41
42 Files: ./tests/html-serializer.rs
43 Copyright: 2014-2017 The html5ever Project Developers. See the
44 License: UNKNOWN-LICENSE; FIXME (overlay)
45 Comment:
46 FIXME (overlay): These notices are extracted from files. Please review them
47 before uploading to the archive.
48
49 Files: ./tests/html-tokenizer.rs
50 Copyright: 2014-2017 The html5ever Project Developers. See the
51 License: UNKNOWN-LICENSE; FIXME (overlay)
52 Comment:
53 FIXME (overlay): These notices are extracted from files. Please review them
54 before uploading to the archive.
55
56 Files: ./tests/html-tree-builder.rs
57 Copyright: 2014-2017 The html5ever Project Developers. See the
58 License: UNKNOWN-LICENSE; FIXME (overlay)
59 Comment:
60 FIXME (overlay): These notices are extracted from files. Please review them
61 before uploading to the archive.
62
63 Files: ./tests/util/find_tests.rs
64 Copyright: 2014-2017 The html5ever Project Developers. See the
65 License: UNKNOWN-LICENSE; FIXME (overlay)
66 Comment:
67 FIXME (overlay): These notices are extracted from files. Please review them
68 before uploading to the archive.
69
70 Files: ./tests/xml-tokenizer.rs
71 Copyright: 2014-2017 The html5ever Project Developers. See the
72 License: UNKNOWN-LICENSE; FIXME (overlay)
73 Comment:
74 FIXME (overlay): These notices are extracted from files. Please review them
75 before uploading to the archive.
76
77 Files: ./tests/xml-tree-builder.rs
78 Copyright: 2014-2017 The html5ever Project Developers. See the
79 License: UNKNOWN-LICENSE; FIXME (overlay)
80 Comment:
81 FIXME (overlay): These notices are extracted from files. Please review them
82 before uploading to the archive.
83
84 Files: debian/*
85 Copyright:
86 2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
87 2020 Henry-Nicolas Tourneur <debian@nilux.be>
88 License: MIT or Apache-2.0
89
90 License: Apache-2.0
91 Debian systems provide the Apache 2.0 license in
92 /usr/share/common-licenses/Apache-2.0
93
94 License: MIT
95 Permission is hereby granted, free of charge, to any person obtaining a copy
96 of this software and associated documentation files (the "Software"), to deal
97 in the Software without restriction, including without limitation the rights
98 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99 copies of the Software, and to permit persons to whom the Software is
100 furnished to do so, subject to the following conditions:
101 .
102 The above copyright notice and this permission notice shall be included in all
103 copies or substantial portions of the Software.
104 .
105 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
106 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
107 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
108 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
109 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
110 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
111 SOFTWARE.
0 overlay = "."
1 uploaders = ["Henry-Nicolas Tourneur <debian@nilux.be>"]
2
3 # The auto-generated summary is too long
4 summary="DOM structure for use by tests in html5ever/xml5ever"
5
6 [packages.lib]
7 # Missing dev-dep rustc-test (not packageable, outdated, does not compile)
8 test_is_broken = true
(New empty file)
0 rust-xml5ever (0.16.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package xml5ever 0.16.1 from crates.io using debcargo 2.4.2
3
4 -- Henry-Nicolas Tourneur <debian@nilux.be> Fri, 03 Jul 2020 15:54:19 +0000
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: xml5ever
2 Upstream-Contact: The xml5ever project developers
3 Source: https://github.com/servo/html5ever
4
5 Files: *
6 Copyright: 2017-2019 The xml5ever project developers
7 License: MIT or Apache-2.0
8
9 Files: debian/*
10 Copyright:
11 2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
12 2020 Henry-Nicolas Tourneur <debian@nilux.be>
13 License: MIT or Apache-2.0
14
15 License: Apache-2.0
16 Debian systems provide the Apache 2.0 license in
17 /usr/share/common-licenses/Apache-2.0
18
19 License: MIT
20 Permission is hereby granted, free of charge, to any person obtaining a copy
21 of this software and associated documentation files (the "Software"), to deal
22 in the Software without restriction, including without limitation the rights
23 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24 copies of the Software, and to permit persons to whom the Software is
25 furnished to do so, subject to the following conditions:
26 .
27 The above copyright notice and this permission notice shall be included in all
28 copies or substantial portions of the Software.
29 .
30 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
31 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
32 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
33 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
34 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
35 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 SOFTWARE.
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: xml5ever
2 Upstream-Contact: The xml5ever project developers
3 Source: https://github.com/servo/html5ever
4
5 Files: *
6 Copyright: FIXME (overlay) UNKNOWN-YEARS The xml5ever project developers
7 License: MIT or Apache-2.0
8 Comment:
9 FIXME (overlay): Since upstream copyright years are not available in
10 Cargo.toml, they were extracted from the upstream Git repository. This may not
11 be correct information so you should review and fix this before uploading to
12 the archive.
13
14 Files: ./LICENSE-MIT
15 Copyright: 2014 The html5ever Project Developers
16 License: UNKNOWN-LICENSE; FIXME (overlay)
17 Comment:
18 FIXME (overlay): These notices are extracted from files. Please review them
19 before uploading to the archive.
20
21 Files: ./src/driver.rs
22 Copyright: 2014-2017 The html5ever Project Developers. See the
23 License: UNKNOWN-LICENSE; FIXME (overlay)
24 Comment:
25 FIXME (overlay): These notices are extracted from files. Please review them
26 before uploading to the archive.
27
28 Files: ./src/lib.rs
29 Copyright: 2014-2017 The html5ever Project Developers. See the
30 License: UNKNOWN-LICENSE; FIXME (overlay)
31 Comment:
32 FIXME (overlay): These notices are extracted from files. Please review them
33 before uploading to the archive.
34
35 Files: ./src/serialize/mod.rs
36 Copyright: 2014-2017 The html5ever Project Developers. See the
37 License: UNKNOWN-LICENSE; FIXME (overlay)
38 Comment:
39 FIXME (overlay): These notices are extracted from files. Please review them
40 before uploading to the archive.
41
42 Files: ./src/tokenizer/char_ref/mod.rs
43 Copyright: 2014-2017 The html5ever Project Developers. See the
44 License: UNKNOWN-LICENSE; FIXME (overlay)
45 Comment:
46 FIXME (overlay): These notices are extracted from files. Please review them
47 before uploading to the archive.
48
49 Files: ./src/tokenizer/interface.rs
50 Copyright: 2014-2017 The html5ever Project Developers. See the
51 License: UNKNOWN-LICENSE; FIXME (overlay)
52 Comment:
53 FIXME (overlay): These notices are extracted from files. Please review them
54 before uploading to the archive.
55
56 Files: ./src/tokenizer/mod.rs
57 Copyright: 2014-2017 The html5ever Project Developers. See the
58 License: UNKNOWN-LICENSE; FIXME (overlay)
59 Comment:
60 FIXME (overlay): These notices are extracted from files. Please review them
61 before uploading to the archive.
62
63 Files: ./src/tokenizer/qname.rs
64 Copyright: 2014-2017 The html5ever Project Developers. See the
65 License: UNKNOWN-LICENSE; FIXME (overlay)
66 Comment:
67 FIXME (overlay): These notices are extracted from files. Please review them
68 before uploading to the archive.
69
70 Files: ./src/tokenizer/states.rs
71 Copyright: 2014-2017 The html5ever Project Developers. See the
72 License: UNKNOWN-LICENSE; FIXME (overlay)
73 Comment:
74 FIXME (overlay): These notices are extracted from files. Please review them
75 before uploading to the archive.
76
77 Files: ./src/tree_builder/mod.rs
78 Copyright: 2014-2017 The html5ever Project Developers. See the
79 License: UNKNOWN-LICENSE; FIXME (overlay)
80 Comment:
81 FIXME (overlay): These notices are extracted from files. Please review them
82 before uploading to the archive.
83
84 Files: ./src/tree_builder/types.rs
85 Copyright: 2014-2017 The html5ever Project Developers. See the
86 License: UNKNOWN-LICENSE; FIXME (overlay)
87 Comment:
88 FIXME (overlay): These notices are extracted from files. Please review them
89 before uploading to the archive.
90
91 Files: ./src/util/mod.rs
92 Copyright: 2014-2017 The html5ever Project Developers. See the
93 License: UNKNOWN-LICENSE; FIXME (overlay)
94 Comment:
95 FIXME (overlay): These notices are extracted from files. Please review them
96 before uploading to the archive.
97
98 Files: debian/*
99 Copyright:
100 2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
101 2020 Henry-Nicolas Tourneur <debian@nilux.be>
102 License: MIT or Apache-2.0
103
104 License: Apache-2.0
105 Debian systems provide the Apache 2.0 license in
106 /usr/share/common-licenses/Apache-2.0
107
108 License: MIT
109 Permission is hereby granted, free of charge, to any person obtaining a copy
110 of this software and associated documentation files (the "Software"), to deal
111 in the Software without restriction, including without limitation the rights
112 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
113 copies of the Software, and to permit persons to whom the Software is
114 furnished to do so, subject to the following conditions:
115 .
116 The above copyright notice and this permission notice shall be included in all
117 copies or substantial portions of the Software.
118 .
119 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
120 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
121 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
122 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
123 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
124 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
125 SOFTWARE.
0 overlay = "."
1 uploaders = ["Henry-Nicolas Tourneur <debian@nilux.be>"]