Codebase list rust-libslirp / dc6b50e
Package ansi_colours Paride Legovini 4 years ago
5 changed file(s) with 103 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 rust-ansi-colours (1.0.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package ansi_colours 1.0.1 from crates.io using debcargo 2.2.10
3
4 -- Paride Legovini <pl@ninthfloor.org> Wed, 5 Jun 2019 22:39:59 +0200
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: ansi_colours
2 Upstream-Contact: Michał Nazarewicz <mina86@mina86.com>
3 Source: https://github.com/mina86/ansi_colours
4
5 Files: *
6 Copyright: 2018 Michał Nazarewicz <mina86@mina86.com>
7 License: LGPL-3+
8
9 Files: debian/*
10 Copyright:
11 2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
12 2019 Paride Legovini <pl@ninthfloor.org>
13 License: LGPL-3+
14
15 License: LGPL-3+
16 Distributed under the terms of the GNU Lesser General Public License as
17 published by the Free Software Foundation; either version 3 of the License,
18 or (at your option) any later version.
19 .
20 On Debian systems, the full text of the GNU Lesser General Public License
21 version 3 can be found in the file '/usr/share/common-licenses/LGPL-3'.
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: ansi_colours
2 Upstream-Contact: Michał Nazarewicz <mina86@mina86.com>
3 Source: https://github.com/mina86/ansi_colours
4
5 Files: *
6 Copyright: FIXME (overlay) UNKNOWN-YEARS Michał Nazarewicz <mina86@mina86.com>
7 License: LGPL-3.0-or-later
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
15 Copyright: 2007 Free Software Foundation, Inc. <https://fsf.org/>
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/ansi256.c
22 Copyright: 2018 by Michał Nazarewicz <mina86@mina86.com>
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/ansi_colours.h
29 Copyright: 2018 by Michał Nazarewicz <mina86@mina86.com>
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/externs.rs
36 Copyright: 2018 by Michał Nazarewicz <mina86@mina86.com>
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/lib.rs
43 Copyright: 2018 by Michał Nazarewicz <mina86@mina86.com>
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: debian/*
50 Copyright:
51 2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
52 2019 Paride Legovini <pl@ninthfloor.org>
53 License: LGPL-3.0-or-later
54
55 License: -later
56 FIXME (overlay): Unrecognized crate license, please find the full license text in the rest of the crate source code and copy-paste it here
57
58 License: LGPL-3.0-
59 FIXME (overlay): Unrecognized crate license, please find the full license text in the rest of the crate source code and copy-paste it here
0 Patch build.rs to output the source distribution conditions of the library.
1
2 --- a/build.rs 2019-06-03 14:17:18.866924455 +0200
3 +++ b/build.rs 2019-06-03 14:17:49.042557720 +0200
4 @@ -1,6 +1,10 @@
5 extern crate cc;
6
7 +use std::env;
8 +
9 fn main() {
10 + println!("dh-cargo:deb-built-using=ansi256=1={}", env::var("CARGO_MANIFEST_DIR").unwrap());
11 +
12 cc::Build::new()
13 .file("src/ansi256.c")
14 .compile("ansi256");