Codebase list rust-stfu8 / 45b7220
core-arch: replace 'issue = "0"' with 'issue = "none"' Peter Michael Green 3 years ago
3 changed file(s) with 41 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 rust-core-arch (0.1.5-4) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Team upload.
3 * Package core_arch 0.1.5 from crates.io using debcargo 2.4.3
4 * Change 'issue = "0"' to 'issue = "none"' as suggested in error
5 message to fix FTBFS (Closes: 964651)
6
7 -- Peter Michael Green <plugwash@debian.org> Tue, 01 Sep 2020 15:25:27 +0000
8
09 rust-core-arch (0.1.5-3) unstable; urgency=medium
110
211 * Team upload.
0 Index: core-arch/src/x86/mod.rs
1 ===================================================================
2 --- core-arch.orig/src/x86/mod.rs
3 +++ core-arch/src/x86/mod.rs
4 @@ -352,7 +352,7 @@ mod test;
5 pub use self::test::*;
6
7 #[allow(non_camel_case_types)]
8 -#[unstable(feature = "stdimd_internal", issue = "0")]
9 +#[unstable(feature = "stdimd_internal", issue = "none")]
10 pub(crate) trait m128iExt: Sized {
11 fn as_m128i(self) -> __m128i;
12
13 @@ -405,7 +405,7 @@ impl m128iExt for __m128i {
14 }
15
16 #[allow(non_camel_case_types)]
17 -#[unstable(feature = "stdimd_internal", issue = "0")]
18 +#[unstable(feature = "stdimd_internal", issue = "none")]
19 pub(crate) trait m256iExt: Sized {
20 fn as_m256i(self) -> __m256i;
21
22 @@ -458,7 +458,7 @@ impl m256iExt for __m256i {
23 }
24
25 #[allow(non_camel_case_types)]
26 -#[unstable(feature = "stdimd_internal", issue = "0")]
27 +#[unstable(feature = "stdimd_internal", issue = "none")]
28 pub(crate) trait m512iExt: Sized {
29 fn as_m512i(self) -> __m512i;
30
00 add-feature-custom-inner-attributes.patch
1 change-issue-from-0-to-none.patch