Codebase list rust-stfu8 / 747524b
Package dotenv Niklas Claesson 4 years ago
10 changed file(s) with 141 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
3535 packed_simd
3636 darling_core
3737 gettext-rs
38 dotenv
3839 env_proxy (update)
3940 num_cpus (update)
4041 pest_meta (update)
0 rust-dotenv (0.14.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Team upload.
3 * Package dotenv 0.14.1 from crates.io using debcargo 2.2.10
4
5 -- Niklas Claesson <nicke.claesson@gmail.com> Sat, 6 Jul 2019 23:40:06 +0200
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: dotenv
2 Upstream-Contact:
3 Noemi Lapresta <noemi.lapresta@gmail.com>
4 Craig Hills <chills@gmail.com>
5 Mike Piccolo <mfpiccolo@gmail.com>
6 Alice Maz <alice@alicemaz.com>
7 Sean Griffin <sean@seantheprogrammer.com>
8 Adam Sharp <adam@sharplet.me>
9 Source: https://github.com/dotenv-rs/dotenv
10
11 Files: *
12 Copyright:
13 2014-2019 Noemi Lapresta <noemi.lapresta@gmail.com>
14 2014-2019 Craig Hills <chills@gmail.com>
15 2014-2019 Mike Piccolo <mfpiccolo@gmail.com>
16 2014-2019 Alice Maz <alice@alicemaz.com>
17 2014-2019 Sean Griffin <sean@seantheprogrammer.com>
18 2014-2019 Adam Sharp <adam@sharplet.me>
19 License: MIT
20
21 Files: debian/*
22 Copyright:
23 2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
24 2019 Niklas Claesson <nicke.claesson@gmail.com>
25 License: MIT
26
27 License: MIT
28 Permission is hereby granted, free of charge, to any person obtaining a copy
29 of this software and associated documentation files (the "Software"), to deal
30 in the Software without restriction, including without limitation the rights
31 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
32 copies of the Software, and to permit persons to whom the Software is
33 furnished to do so, subject to the following conditions:
34 .
35 The above copyright notice and this permission notice shall be included in all
36 copies or substantial portions of the Software.
37 .
38 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
39 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
40 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
41 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
42 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
43 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
44 SOFTWARE.
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: dotenv
2 Upstream-Contact:
3 Noemi Lapresta <noemi.lapresta@gmail.com>
4 Craig Hills <chills@gmail.com>
5 Mike Piccolo <mfpiccolo@gmail.com>
6 Alice Maz <alice@alicemaz.com>
7 Sean Griffin <sean@seantheprogrammer.com>
8 Adam Sharp <adam@sharplet.me>
9 Source: https://github.com/dotenv-rs/dotenv
10
11 Files: *
12 Copyright:
13 FIXME (overlay) UNKNOWN-YEARS Noemi Lapresta <noemi.lapresta@gmail.com>
14 FIXME (overlay) UNKNOWN-YEARS Craig Hills <chills@gmail.com>
15 FIXME (overlay) UNKNOWN-YEARS Mike Piccolo <mfpiccolo@gmail.com>
16 FIXME (overlay) UNKNOWN-YEARS Alice Maz <alice@alicemaz.com>
17 FIXME (overlay) UNKNOWN-YEARS Sean Griffin <sean@seantheprogrammer.com>
18 FIXME (overlay) UNKNOWN-YEARS Adam Sharp <adam@sharplet.me>
19 License: MIT
20 Comment:
21 FIXME (overlay): Since upstream copyright years are not available in
22 Cargo.toml, they were extracted from the upstream Git repository. This may not
23 be correct information so you should review and fix this before uploading to
24 the archive.
25
26 Files: debian/*
27 Copyright:
28 2019 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
29 2019 Niklas Claesson <nicke.claesson@gmail.com>
30 License: MIT
31
32 License: MIT
33 Permission is hereby granted, free of charge, to any person obtaining a copy
34 of this software and associated documentation files (the "Software"), to deal
35 in the Software without restriction, including without limitation the rights
36 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
37 copies of the Software, and to permit persons to whom the Software is
38 furnished to do so, subject to the following conditions:
39 .
40 The above copyright notice and this permission notice shall be included in all
41 copies or substantial portions of the Software.
42 .
43 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
44 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
45 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
46 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
47 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
48 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
49 SOFTWARE.
0 overlay = "."
1 uploaders = ["Niklas Claesson <nicke.claesson@gmail.com>"]
2
3 [source]
4 build_depends = ["help2man"]
5
6 [packages.bin]
7 section = "devel"
0 Enable feature to build executable.
1 Index: dotenv/Cargo.toml
2 ===================================================================
3 --- dotenv.orig/Cargo.toml
4 +++ dotenv/Cargo.toml
5 @@ -45,4 +45,4 @@ version = "3.0.0"
6 [features]
7 backtrace = ["failure/backtrace"]
8 cli = ["clap"]
9 -default = ["backtrace"]
10 +default = ["backtrace", "cli"]
0 #!/usr/bin/make -f
1
2 include /usr/share/dpkg/pkg-info.mk
3
4 %:
5 dh $@ --buildsystem cargo
6
7 override_dh_installman:
8 help2man \
9 --name dotenv \
10 --no-info \
11 --no-discard-stderr \
12 --version-string $(DEB_VERSION_UPSTREAM) \
13 debian/dotenv/usr/bin/dotenv > debian/dotenv.1
14 dh_installman -O--buildsystem=cargo
0 #!/usr/bin/make -f
1 %:
2 dh $@ --buildsystem cargo