diff -Nru rust-chrono-tz-0.6.1/debian/cargo-checksum.json rust-chrono-tz-0.6.1/debian/cargo-checksum.json --- rust-chrono-tz-0.6.1/debian/cargo-checksum.json 2022-06-25 12:58:05.000000000 +0000 +++ rust-chrono-tz-0.6.1/debian/cargo-checksum.json 2022-12-28 14:11:22.000000000 +0000 @@ -1 +1 @@ -{"package":"58549f1842da3080ce63002102d5bc954c7bc843d4f47818e642abdc36253552","files":{}} +{"package":"Could not get crate checksum","files":{}} diff -Nru rust-chrono-tz-0.6.1/debian/changelog rust-chrono-tz-0.6.1/debian/changelog --- rust-chrono-tz-0.6.1/debian/changelog 2022-06-25 12:58:05.000000000 +0000 +++ rust-chrono-tz-0.6.1/debian/changelog 2022-12-28 14:11:22.000000000 +0000 @@ -1,3 +1,11 @@ +rust-chrono-tz (0.6.1-3) unstable; urgency=medium + + * Team upload. + * Package chrono-tz 0.6.1 from crates.io using debcargo 2.6.0 + * fix tests with --no-default-features. + + -- Peter Michael Green Wed, 28 Dec 2022 14:11:22 +0000 + rust-chrono-tz (0.6.1-2) unstable; urgency=medium * Team upload. diff -Nru rust-chrono-tz-0.6.1/debian/control rust-chrono-tz-0.6.1/debian/control --- rust-chrono-tz-0.6.1/debian/control 2022-06-25 12:58:05.000000000 +0000 +++ rust-chrono-tz-0.6.1/debian/control 2022-12-28 14:11:22.000000000 +0000 @@ -12,9 +12,10 @@ Maintainer: Debian Rust Maintainers Uploaders: Carlos F. Sanz -Standards-Version: 4.5.1 +Standards-Version: 4.6.1 Vcs-Git: https://salsa.debian.org/rust-team/debcargo-conf.git [src/chrono-tz] Vcs-Browser: https://salsa.debian.org/rust-team/debcargo-conf/tree/master/src/chrono-tz +X-Cargo-Crate: chrono-tz Rules-Requires-Root: no Package: librust-chrono-tz-dev diff -Nru rust-chrono-tz-0.6.1/debian/copyright.debcargo.hint rust-chrono-tz-0.6.1/debian/copyright.debcargo.hint --- rust-chrono-tz-0.6.1/debian/copyright.debcargo.hint 2022-06-25 12:58:05.000000000 +0000 +++ rust-chrono-tz-0.6.1/debian/copyright.debcargo.hint 2022-12-28 14:11:22.000000000 +0000 @@ -12,7 +12,7 @@ be correct information so you should review and fix this before uploading to the archive. -Files: ./LICENSE +Files: LICENSE Copyright: 2016 Djzin 2016 Djzin @@ -21,21 +21,21 @@ FIXME (overlay): These notices are extracted from files. Please review them before uploading to the archive. -Files: ./tz/date.c +Files: tz/date.c Copyright: 1985, 1987, 1988 The Regents of the University of California. License: UNKNOWN-LICENSE; FIXME (overlay) Comment: FIXME (overlay): These notices are extracted from files. Please review them before uploading to the archive. -Files: ./tz/newstrftime.3 +Files: tz/newstrftime.3 Copyright: 1989, 1991 The Regents of the University of California. License: UNKNOWN-LICENSE; FIXME (overlay) Comment: FIXME (overlay): These notices are extracted from files. Please review them before uploading to the archive. -Files: ./tz/strftime.c +Files: tz/strftime.c Copyright: 1989 The Regents of the University of California. License: UNKNOWN-LICENSE; FIXME (overlay) Comment: diff -Nru rust-chrono-tz-0.6.1/debian/patches/fix-tests-no-default-features.patch rust-chrono-tz-0.6.1/debian/patches/fix-tests-no-default-features.patch --- rust-chrono-tz-0.6.1/debian/patches/fix-tests-no-default-features.patch 1970-01-01 00:00:00.000000000 +0000 +++ rust-chrono-tz-0.6.1/debian/patches/fix-tests-no-default-features.patch 2022-12-28 14:11:22.000000000 +0000 @@ -0,0 +1,35 @@ +Index: chrono-tz/src/lib.rs +=================================================================== +--- chrono-tz.orig/src/lib.rs ++++ chrono-tz/src/lib.rs +@@ -176,6 +176,10 @@ pub use timezones::Tz; + pub use timezones::TZ_VARIANTS; + + #[cfg(test)] ++#[macro_use] ++extern crate alloc; ++ ++#[cfg(test)] + mod tests { + use super::America::Danmarkshavn; + use super::Asia::Dhaka; +@@ -192,6 +196,7 @@ mod tests { + use super::Tz; + use super::US::Eastern; + use super::UTC; ++ use alloc::string::ToString; + use chrono::{Duration, TimeZone}; + + #[test] +Index: chrono-tz/src/serde.rs +=================================================================== +--- chrono-tz.orig/src/serde.rs ++++ chrono-tz/src/serde.rs +@@ -46,6 +46,7 @@ mod tests { + } + + #[test] ++ #[cfg(feature = "std")] + fn serde_de_error() { + assert_de_tokens_error::( + &[Token::Str("Europe/L")], diff -Nru rust-chrono-tz-0.6.1/debian/patches/series rust-chrono-tz-0.6.1/debian/patches/series --- rust-chrono-tz-0.6.1/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ rust-chrono-tz-0.6.1/debian/patches/series 2022-12-28 14:11:22.000000000 +0000 @@ -0,0 +1 @@ +fix-tests-no-default-features.patch diff -Nru rust-chrono-tz-0.6.1/debian/tests/control rust-chrono-tz-0.6.1/debian/tests/control --- rust-chrono-tz-0.6.1/debian/tests/control 2022-06-25 12:58:05.000000000 +0000 +++ rust-chrono-tz-0.6.1/debian/tests/control 2022-12-28 14:11:22.000000000 +0000 @@ -8,7 +8,7 @@ Depends: dh-cargo (>= 18), librust-chrono-0.4+alloc-dev, librust-serde-test-1+default-dev, @ Restrictions: allow-stderr, skip-not-installable -Test-Command: /usr/share/cargo/bin/cargo-auto-test chrono-tz 0.6.1 --all-targets +Test-Command: /usr/share/cargo/bin/cargo-auto-test chrono-tz 0.6.1 --all-targets Features: test-name=librust-chrono-tz-dev:default Depends: dh-cargo (>= 18), librust-chrono-0.4+alloc-dev, librust-serde-test-1+default-dev, @ Restrictions: allow-stderr, skip-not-installable