Codebase list rust-fixedbitset / 31f9345
Merge branch 'pending-alacritty-config-derive' James McCoy 2 years ago
8 changed file(s) with 140 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 rust-alacritty-config-derive (0.1.0-2) unstable; urgency=medium
1
2 * Set mtime to $SOURCE_DATE_EPOCH on files flagging
3 package-contains-ancient-file
4
5 -- James McCoy <jamessan@debian.org> Sat, 21 Aug 2021 19:57:43 -0400
6
7 rust-alacritty-config-derive (0.1.0-1) unstable; urgency=medium
8
9 * Package alacritty_config_derive 0.1.0 from crates.io using debcargo 2.4.4
10
11 -- James McCoy <jamessan@debian.org> Sun, 15 Aug 2021 15:41:11 -0400
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: alacritty_config_derive
2 Upstream-Contact: Christian Duerr <contact@christianduerr.com>
3
4 Files: *
5 Copyright: 2020-2021 The Alacritty Project
6 License: MIT or Apache-2.0
7
8 Files: debian/*
9 Copyright:
10 2021 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
11 2021 James McCoy <jamessan@debian.org>
12 License: MIT or Apache-2.0
13
14 License: Apache-2.0
15 Debian systems provide the Apache 2.0 license in
16 /usr/share/common-licenses/Apache-2.0
17
18 License: MIT
19 Permission is hereby granted, free of charge, to any person obtaining a copy
20 of this software and associated documentation files (the "Software"), to deal
21 in the Software without restriction, including without limitation the rights
22 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
23 copies of the Software, and to permit persons to whom the Software is
24 furnished to do so, subject to the following conditions:
25 .
26 The above copyright notice and this permission notice shall be included in all
27 copies or substantial portions of the Software.
28 .
29 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
34 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
35 SOFTWARE.
0 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: alacritty_config_derive
2 Upstream-Contact: Christian Duerr <contact@christianduerr.com>
3
4 Files: *
5 Copyright: FIXME (overlay) UNKNOWN-YEARS Christian Duerr <contact@christianduerr.com>
6 License: MIT or Apache-2.0
7 Comment:
8 FIXME (overlay): Since upstream copyright years are not available in
9 Cargo.toml, they were extracted from the upstream Git repository. This may not
10 be correct information so you should review and fix this before uploading to
11 the archive.
12
13 Files: ./LICENSE-APACHE
14 Copyright: 2020 The Alacritty Project
15 License: UNKNOWN-LICENSE; FIXME (overlay)
16 Comment:
17 FIXME (overlay): These notices are extracted from files. Please review them
18 before uploading to the archive.
19
20 Files: debian/*
21 Copyright:
22 2021 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
23 2021 James McCoy <jamessan@debian.org>
24 License: MIT or Apache-2.0
25
26 License: Apache-2.0
27 Debian systems provide the Apache 2.0 license in
28 /usr/share/common-licenses/Apache-2.0
29
30 License: MIT
31 Permission is hereby granted, free of charge, to any person obtaining a copy
32 of this software and associated documentation files (the "Software"), to deal
33 in the Software without restriction, including without limitation the rights
34 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
35 copies of the Software, and to permit persons to whom the Software is
36 furnished to do so, subject to the following conditions:
37 .
38 The above copyright notice and this permission notice shall be included in all
39 copies or substantial portions of the Software.
40 .
41 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
42 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
43 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
44 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
45 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
46 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
47 SOFTWARE.
0 overlay = "."
1 uploaders = ["James McCoy <jamessan@debian.org>"]
0 --- rust-alacritty-config-derive-0.1.0.orig/Cargo.toml
1 +++ rust-alacritty-config-derive-0.1.0/Cargo.toml
2 @@ -22,13 +22,13 @@ license = "MIT/Apache-2.0"
3 [lib]
4 proc-macro = true
5 [dependencies.proc-macro2]
6 -version = "1.0.24"
7 +version = "1.0.18"
8
9 [dependencies.quote]
10 version = "1.0.7"
11
12 [dependencies.syn]
13 -version = "1.0.53"
14 +version = "1.0.12"
15 features = ["derive", "parsing", "proc-macro", "printing"]
16 default-features = false
17 [dev-dependencies.log]
18 @@ -35,7 +35,7 @@
19 version = "0.4.11"
20
21 [dev-dependencies.serde]
22 -version = "1.0.117"
23 +version = "1.0.106"
24
25 [dev-dependencies.serde_yaml]
26 -version = "0.8.14"
27 +version = "0.8.11"
0 #!/usr/bin/make -f
1
2 include /usr/share/dpkg/pkg-info.mk
3
4 %:
5 dh $@ --buildsystem cargo
6
7 MTIME = $(shell date -d @$(SOURCE_DATE_EPOCH) -R)
8 execute_after_dh_testdir:
9 find . ! -newermt "jan 01, 2000" -exec touch -d "$(MTIME)" {} +
0 #!/usr/bin/make -f
1 %:
2 dh $@ --buildsystem cargo