]> git.proxmox.com Git - debcargo-conf.git/commitdiff
upgraded static_assertions to version 1
authorAlexander Kjäll <alexander.kjall@gmail.com>
Thu, 21 May 2020 20:08:50 +0000 (22:08 +0200)
committerAlexander Kjäll <alexander.kjall@gmail.com>
Thu, 21 May 2020 20:08:50 +0000 (22:08 +0200)
src/lexical-core/debian/RFS [new file with mode: 0644]
src/lexical-core/debian/changelog
src/lexical-core/debian/patches/series [new file with mode: 0644]
src/lexical-core/debian/patches/upgrade-static_assertions-to-1.patch [new file with mode: 0644]
src/static-assertions-0.3/debian/RFS [deleted file]
src/static-assertions-0.3/debian/changelog [deleted file]
src/static-assertions-0.3/debian/copyright [deleted file]
src/static-assertions-0.3/debian/copyright.debcargo.hint [deleted file]
src/static-assertions-0.3/debian/debcargo.toml [deleted file]

diff --git a/src/lexical-core/debian/RFS b/src/lexical-core/debian/RFS
new file mode 100644 (file)
index 0000000..e69de29
index a7b0f4da7eb64bdcceeb3a00c754792885bf9df1..ef82b2dd1affcd6ad6729c5545f3423d46948826 100644 (file)
@@ -1,3 +1,9 @@
+rust-lexical-core (0.4.3-2) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
+
+  * Upgraded dependency static_assertions to version 1
+
+ -- Alexander Kjäll <alexander.kjall@gmail.com>  Thu, 21 May 2020 22:05:49 +0200
+
 rust-lexical-core (0.4.3-1) unstable; urgency=medium
 
   * Package lexical-core 0.4.3 from crates.io using debcargo 2.4.0
diff --git a/src/lexical-core/debian/patches/series b/src/lexical-core/debian/patches/series
new file mode 100644 (file)
index 0000000..99f57e9
--- /dev/null
@@ -0,0 +1 @@
+upgrade-static_assertions-to-1.patch
diff --git a/src/lexical-core/debian/patches/upgrade-static_assertions-to-1.patch b/src/lexical-core/debian/patches/upgrade-static_assertions-to-1.patch
new file mode 100644 (file)
index 0000000..cf1aabd
--- /dev/null
@@ -0,0 +1,361 @@
+diff --git a/lexical-core/Cargo.toml b/lexical-core/Cargo.toml
+index a2acd42..e09d34d 100644
+--- a/lexical-core/Cargo.toml
++++ b/lexical-core/Cargo.toml
+@@ -22,7 +22,7 @@ travis-ci = { repository = "Alexhuszagh/rust-lexical" }
+ [dependencies]
+ cfg-if = "0.1"
+-static_assertions = "0.3.3"
++static_assertions = "1"
+ # Use stack-vector for the correct parser.
+ stackvector = { version = "^1.0.5", optional = true }
+ # Optimized Grisu3 implementation, a well-tested, correct algorithm.
+diff --git a/lexical-core/src/atof/algorithm/small_powers.rs b/lexical-core/src/atof/algorithm/small_powers.rs
+index b36bbfc..0e68fe6 100644
+--- a/lexical-core/src/atof/algorithm/small_powers.rs
++++ b/lexical-core/src/atof/algorithm/small_powers.rs
+@@ -13,46 +13,46 @@ use super::small_powers_64::*;
+ cfg_if! {
+ if #[cfg(has_const_index)] {
+-const_assert!(small_powers_radix5; POW5[1] / POW5[0] == 5);
+-const_assert!(small_powers_radix10; POW10[1] / POW10[0] == 10);
++const_assert!(POW5[1] / POW5[0] == 5);
++const_assert!(POW10[1] / POW10[0] == 10);
+ }}  //cfg_if
+ cfg_if! {
+ if #[cfg(all(has_const_index, feature = "radix"))] {
+ // Ensure our small powers are valid.
+-const_assert!(small_powers_radix2; POW2[1] / POW2[0] == 2);
+-const_assert!(small_powers_radix3; POW3[1] / POW3[0] == 3);
+-const_assert!(small_powers_radix4; POW4[1] / POW4[0] == 4);
+-const_assert!(small_powers_radix6; POW6[1] / POW6[0] == 6);
+-const_assert!(small_powers_radix7; POW7[1] / POW7[0] == 7);
+-const_assert!(small_powers_radix8; POW8[1] / POW8[0] == 8);
+-const_assert!(small_powers_radix9; POW9[1] / POW9[0] == 9);
+-const_assert!(small_powers_radix11; POW11[1] / POW11[0] == 11);
+-const_assert!(small_powers_radix12; POW12[1] / POW12[0] == 12);
+-const_assert!(small_powers_radix13; POW13[1] / POW13[0] == 13);
+-const_assert!(small_powers_radix14; POW14[1] / POW14[0] == 14);
+-const_assert!(small_powers_radix15; POW15[1] / POW15[0] == 15);
+-const_assert!(small_powers_radix16; POW16[1] / POW16[0] == 16);
+-const_assert!(small_powers_radix17; POW17[1] / POW17[0] == 17);
+-const_assert!(small_powers_radix18; POW18[1] / POW18[0] == 18);
+-const_assert!(small_powers_radix19; POW19[1] / POW19[0] == 19);
+-const_assert!(small_powers_radix20; POW20[1] / POW20[0] == 20);
+-const_assert!(small_powers_radix21; POW21[1] / POW21[0] == 21);
+-const_assert!(small_powers_radix22; POW22[1] / POW22[0] == 22);
+-const_assert!(small_powers_radix23; POW23[1] / POW23[0] == 23);
+-const_assert!(small_powers_radix24; POW24[1] / POW24[0] == 24);
+-const_assert!(small_powers_radix25; POW25[1] / POW25[0] == 25);
+-const_assert!(small_powers_radix26; POW26[1] / POW26[0] == 26);
+-const_assert!(small_powers_radix27; POW27[1] / POW27[0] == 27);
+-const_assert!(small_powers_radix28; POW28[1] / POW28[0] == 28);
+-const_assert!(small_powers_radix29; POW29[1] / POW29[0] == 29);
+-const_assert!(small_powers_radix30; POW30[1] / POW30[0] == 30);
+-const_assert!(small_powers_radix31; POW31[1] / POW31[0] == 31);
+-const_assert!(small_powers_radix32; POW32[1] / POW32[0] == 32);
+-const_assert!(small_powers_radix33; POW33[1] / POW33[0] == 33);
+-const_assert!(small_powers_radix34; POW34[1] / POW34[0] == 34);
+-const_assert!(small_powers_radix35; POW35[1] / POW35[0] == 35);
+-const_assert!(small_powers_radix36; POW36[1] / POW36[0] == 36);
++const_assert!(POW2[1] / POW2[0] == 2);
++const_assert!(POW3[1] / POW3[0] == 3);
++const_assert!(POW4[1] / POW4[0] == 4);
++const_assert!(POW6[1] / POW6[0] == 6);
++const_assert!(POW7[1] / POW7[0] == 7);
++const_assert!(POW8[1] / POW8[0] == 8);
++const_assert!(POW9[1] / POW9[0] == 9);
++const_assert!(POW11[1] / POW11[0] == 11);
++const_assert!(POW12[1] / POW12[0] == 12);
++const_assert!(POW13[1] / POW13[0] == 13);
++const_assert!(POW14[1] / POW14[0] == 14);
++const_assert!(POW15[1] / POW15[0] == 15);
++const_assert!(POW16[1] / POW16[0] == 16);
++const_assert!(POW17[1] / POW17[0] == 17);
++const_assert!(POW18[1] / POW18[0] == 18);
++const_assert!(POW19[1] / POW19[0] == 19);
++const_assert!(POW20[1] / POW20[0] == 20);
++const_assert!(POW21[1] / POW21[0] == 21);
++const_assert!(POW22[1] / POW22[0] == 22);
++const_assert!(POW23[1] / POW23[0] == 23);
++const_assert!(POW24[1] / POW24[0] == 24);
++const_assert!(POW25[1] / POW25[0] == 25);
++const_assert!(POW26[1] / POW26[0] == 26);
++const_assert!(POW27[1] / POW27[0] == 27);
++const_assert!(POW28[1] / POW28[0] == 28);
++const_assert!(POW29[1] / POW29[0] == 29);
++const_assert!(POW30[1] / POW30[0] == 30);
++const_assert!(POW31[1] / POW31[0] == 31);
++const_assert!(POW32[1] / POW32[0] == 32);
++const_assert!(POW33[1] / POW33[0] == 33);
++const_assert!(POW34[1] / POW34[0] == 34);
++const_assert!(POW35[1] / POW35[0] == 35);
++const_assert!(POW36[1] / POW36[0] == 36);
+ }}  //cfg_if
+diff --git a/lexical-core/src/util/table.rs b/lexical-core/src/util/table.rs
+index acaa39b..7876b3a 100644
+--- a/lexical-core/src/util/table.rs
++++ b/lexical-core/src/util/table.rs
+@@ -752,97 +752,97 @@ const F32_POW36: [f32; 8] = [1.0, 36.0, 1296.0, 46656.0, 1679616.0, 60466176.0,
+ // Compile-time guarantees for our tables.
+ #[cfg(has_const_index)]
+-const_assert!(f32_pow10; F32_POW10[1] / F32_POW10[0] == 10.0);
++const_assert!(F32_POW10[1] / F32_POW10[0] == 10.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow2; F32_POW2[1] / F32_POW2[0] == 2.0);
++const_assert!(F32_POW2[1] / F32_POW2[0] == 2.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow3; F32_POW3[1] / F32_POW3[0] == 3.0);
++const_assert!(F32_POW3[1] / F32_POW3[0] == 3.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow5; F32_POW5[1] / F32_POW5[0] == 5.0);
++const_assert!(F32_POW5[1] / F32_POW5[0] == 5.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow6; F32_POW6[1] / F32_POW6[0] == 6.0);
++const_assert!(F32_POW6[1] / F32_POW6[0] == 6.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow7; F32_POW7[1] / F32_POW7[0] == 7.0);
++const_assert!(F32_POW7[1] / F32_POW7[0] == 7.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow9; F32_POW9[1] / F32_POW9[0] == 9.0);
++const_assert!(F32_POW9[1] / F32_POW9[0] == 9.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow11; F32_POW11[1] / F32_POW11[0] == 11.0);
++const_assert!(F32_POW11[1] / F32_POW11[0] == 11.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow12; F32_POW12[1] / F32_POW12[0] == 12.0);
++const_assert!(F32_POW12[1] / F32_POW12[0] == 12.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow13; F32_POW13[1] / F32_POW13[0] == 13.0);
++const_assert!(F32_POW13[1] / F32_POW13[0] == 13.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow14; F32_POW14[1] / F32_POW14[0] == 14.0);
++const_assert!(F32_POW14[1] / F32_POW14[0] == 14.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow15; F32_POW15[1] / F32_POW15[0] == 15.0);
++const_assert!(F32_POW15[1] / F32_POW15[0] == 15.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow17; F32_POW17[1] / F32_POW17[0] == 17.0);
++const_assert!(F32_POW17[1] / F32_POW17[0] == 17.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow18; F32_POW18[1] / F32_POW18[0] == 18.0);
++const_assert!(F32_POW18[1] / F32_POW18[0] == 18.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow19; F32_POW19[1] / F32_POW19[0] == 19.0);
++const_assert!(F32_POW19[1] / F32_POW19[0] == 19.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow20; F32_POW20[1] / F32_POW20[0] == 20.0);
++const_assert!(F32_POW20[1] / F32_POW20[0] == 20.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow21; F32_POW21[1] / F32_POW21[0] == 21.0);
++const_assert!(F32_POW21[1] / F32_POW21[0] == 21.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow22; F32_POW22[1] / F32_POW22[0] == 22.0);
++const_assert!(F32_POW22[1] / F32_POW22[0] == 22.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow23; F32_POW23[1] / F32_POW23[0] == 23.0);
++const_assert!(F32_POW23[1] / F32_POW23[0] == 23.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow24; F32_POW24[1] / F32_POW24[0] == 24.0);
++const_assert!(F32_POW24[1] / F32_POW24[0] == 24.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow25; F32_POW25[1] / F32_POW25[0] == 25.0);
++const_assert!(F32_POW25[1] / F32_POW25[0] == 25.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow26; F32_POW26[1] / F32_POW26[0] == 26.0);
++const_assert!(F32_POW26[1] / F32_POW26[0] == 26.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow27; F32_POW27[1] / F32_POW27[0] == 27.0);
++const_assert!(F32_POW27[1] / F32_POW27[0] == 27.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow28; F32_POW28[1] / F32_POW28[0] == 28.0);
++const_assert!(F32_POW28[1] / F32_POW28[0] == 28.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow29; F32_POW29[1] / F32_POW29[0] == 29.0);
++const_assert!(F32_POW29[1] / F32_POW29[0] == 29.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow30; F32_POW30[1] / F32_POW30[0] == 30.0);
++const_assert!(F32_POW30[1] / F32_POW30[0] == 30.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow31; F32_POW31[1] / F32_POW31[0] == 31.0);
++const_assert!(F32_POW31[1] / F32_POW31[0] == 31.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow33; F32_POW33[1] / F32_POW33[0] == 33.0);
++const_assert!(F32_POW33[1] / F32_POW33[0] == 33.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow34; F32_POW34[1] / F32_POW34[0] == 34.0);
++const_assert!(F32_POW34[1] / F32_POW34[0] == 34.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow35; F32_POW35[1] / F32_POW35[0] == 35.0);
++const_assert!(F32_POW35[1] / F32_POW35[0] == 35.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f32_pow36; F32_POW36[1] / F32_POW36[0] == 36.0);
++const_assert!(F32_POW36[1] / F32_POW36[0] == 36.0);
+ impl TablePower for f32 {
+     const POW2_EXPONENT_BIAS: i32 = 149;
+@@ -3106,97 +3106,97 @@ const F64_POW36: [f64; 17] = [1.0, 36.0, 1296.0, 46656.0, 1679616.0, 60466176.0,
+ // Compile-time guarantees for our tables.
+ #[cfg(has_const_index)]
+-const_assert!(f64_pow10; F64_POW10[1] / F64_POW10[0] == 10.0);
++const_assert!(F64_POW10[1] / F64_POW10[0] == 10.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow2; F64_POW2[1] / F64_POW2[0] == 2.0);
++const_assert!(F64_POW2[1] / F64_POW2[0] == 2.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow3; F64_POW3[1] / F64_POW3[0] == 3.0);
++const_assert!(F64_POW3[1] / F64_POW3[0] == 3.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow5; F64_POW5[1] / F64_POW5[0] == 5.0);
++const_assert!(F64_POW5[1] / F64_POW5[0] == 5.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow6; F64_POW6[1] / F64_POW6[0] == 6.0);
++const_assert!(F64_POW6[1] / F64_POW6[0] == 6.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow7; F64_POW7[1] / F64_POW7[0] == 7.0);
++const_assert!(F64_POW7[1] / F64_POW7[0] == 7.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow9; F64_POW9[1] / F64_POW9[0] == 9.0);
++const_assert!(F64_POW9[1] / F64_POW9[0] == 9.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow11; F64_POW11[1] / F64_POW11[0] == 11.0);
++const_assert!(F64_POW11[1] / F64_POW11[0] == 11.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow12; F64_POW12[1] / F64_POW12[0] == 12.0);
++const_assert!(F64_POW12[1] / F64_POW12[0] == 12.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow13; F64_POW13[1] / F64_POW13[0] == 13.0);
++const_assert!(F64_POW13[1] / F64_POW13[0] == 13.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow14; F64_POW14[1] / F64_POW14[0] == 14.0);
++const_assert!(F64_POW14[1] / F64_POW14[0] == 14.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow15; F64_POW15[1] / F64_POW15[0] == 15.0);
++const_assert!(F64_POW15[1] / F64_POW15[0] == 15.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow17; F64_POW17[1] / F64_POW17[0] == 17.0);
++const_assert!(F64_POW17[1] / F64_POW17[0] == 17.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow18; F64_POW18[1] / F64_POW18[0] == 18.0);
++const_assert!(F64_POW18[1] / F64_POW18[0] == 18.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow19; F64_POW19[1] / F64_POW19[0] == 19.0);
++const_assert!(F64_POW19[1] / F64_POW19[0] == 19.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow20; F64_POW20[1] / F64_POW20[0] == 20.0);
++const_assert!(F64_POW20[1] / F64_POW20[0] == 20.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow21; F64_POW21[1] / F64_POW21[0] == 21.0);
++const_assert!(F64_POW21[1] / F64_POW21[0] == 21.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow22; F64_POW22[1] / F64_POW22[0] == 22.0);
++const_assert!(F64_POW22[1] / F64_POW22[0] == 22.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow23; F64_POW23[1] / F64_POW23[0] == 23.0);
++const_assert!(F64_POW23[1] / F64_POW23[0] == 23.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow24; F64_POW24[1] / F64_POW24[0] == 24.0);
++const_assert!(F64_POW24[1] / F64_POW24[0] == 24.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow25; F64_POW25[1] / F64_POW25[0] == 25.0);
++const_assert!(F64_POW25[1] / F64_POW25[0] == 25.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow26; F64_POW26[1] / F64_POW26[0] == 26.0);
++const_assert!(F64_POW26[1] / F64_POW26[0] == 26.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow27; F64_POW27[1] / F64_POW27[0] == 27.0);
++const_assert!(F64_POW27[1] / F64_POW27[0] == 27.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow28; F64_POW28[1] / F64_POW28[0] == 28.0);
++const_assert!(F64_POW28[1] / F64_POW28[0] == 28.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow29; F64_POW29[1] / F64_POW29[0] == 29.0);
++const_assert!(F64_POW29[1] / F64_POW29[0] == 29.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow30; F64_POW30[1] / F64_POW30[0] == 30.0);
++const_assert!(F64_POW30[1] / F64_POW30[0] == 30.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow31; F64_POW31[1] / F64_POW31[0] == 31.0);
++const_assert!(F64_POW31[1] / F64_POW31[0] == 31.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow33; F64_POW33[1] / F64_POW33[0] == 33.0);
++const_assert!(F64_POW33[1] / F64_POW33[0] == 33.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow34; F64_POW34[1] / F64_POW34[0] == 34.0);
++const_assert!(F64_POW34[1] / F64_POW34[0] == 34.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow35; F64_POW35[1] / F64_POW35[0] == 35.0);
++const_assert!(F64_POW35[1] / F64_POW35[0] == 35.0);
+ #[cfg(all(has_const_index, feature = "radix"))]
+-const_assert!(f64_pow36; F64_POW36[1] / F64_POW36[0] == 36.0);
++const_assert!(F64_POW36[1] / F64_POW36[0] == 36.0);
+ impl TablePower for f64 {
+     const POW2_EXPONENT_BIAS: i32 = 1074;
diff --git a/src/static-assertions-0.3/debian/RFS b/src/static-assertions-0.3/debian/RFS
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/src/static-assertions-0.3/debian/changelog b/src/static-assertions-0.3/debian/changelog
deleted file mode 100644 (file)
index a7610e9..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-rust-static-assertions-0.3 (0.3.4-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
-
-  * Package static_assertions 0.3.4 from crates.io using debcargo 2.4.2
-
- -- Alexander Kjäll <alexander.kjall@gmail.com>  Thu, 21 May 2020 17:14:15 +0200
diff --git a/src/static-assertions-0.3/debian/copyright b/src/static-assertions-0.3/debian/copyright
deleted file mode 100644 (file)
index 771a0d5..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
-Upstream-Name: static_assertions
-Upstream-Contact: Nikolai Vazquez
-Source: https://github.com/nvzqz/static-assertions-rs
-
-Files: *
-Copyright: 2017-2019 Nikolai Vazquez
-License: MIT or Apache-2.0
-
-Files: debian/*
-Copyright:
- 2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
- 2020 Alexander Kjäll <alexander.kjall@gmail.com>
-License: MIT or Apache-2.0
-
-License: Apache-2.0
- Debian systems provide the Apache 2.0 license in
- /usr/share/common-licenses/Apache-2.0
-
-License: MIT
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- .
- The above copyright notice and this permission notice shall be included in all
- copies or substantial portions of the Software.
- .
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- SOFTWARE.
-
diff --git a/src/static-assertions-0.3/debian/copyright.debcargo.hint b/src/static-assertions-0.3/debian/copyright.debcargo.hint
deleted file mode 100644 (file)
index 101f18c..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
-Upstream-Name: static_assertions
-Upstream-Contact: Nikolai Vazquez
-Source: https://github.com/nvzqz/static-assertions-rs
-
-Files: *
-Copyright: FIXME (overlay) UNKNOWN-YEARS Nikolai Vazquez
-License: MIT or Apache-2.0
-Comment:
- FIXME (overlay): Since upstream copyright years are not available in
- Cargo.toml, they were extracted from the upstream Git repository. This may not
- be correct information so you should review and fix this before uploading to
- the archive.
-
-Files: ./LICENSE-MIT
-Copyright: 2017 Nikolai Vazquez
-License: UNKNOWN-LICENSE; FIXME (overlay)
-Comment:
- FIXME (overlay): These notices are extracted from files. Please review them
- before uploading to the archive.
-
-Files: debian/*
-Copyright:
- 2020 Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
- 2020 Alexander Kjäll <alexander.kjall@gmail.com>
-License: MIT or Apache-2.0
-
-License: Apache-2.0
- Debian systems provide the Apache 2.0 license in
- /usr/share/common-licenses/Apache-2.0
-
-License: MIT
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- .
- The above copyright notice and this permission notice shall be included in all
- copies or substantial portions of the Software.
- .
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- SOFTWARE.
diff --git a/src/static-assertions-0.3/debian/debcargo.toml b/src/static-assertions-0.3/debian/debcargo.toml
deleted file mode 100644 (file)
index 983c1cf..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-semver_suffix = true
-overlay = "."
-uploaders = ["Alexander Kjäll <alexander.kjall@gmail.com>"]