Architecture specific change in rpms/rust-mbrman.git
by githook-noreply@fedoraproject.org
The package rpms/rust-mbrman.git has added or updated architecture specific content in its
spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s):
https://src.fedoraproject.org/cgit/rpms/rust-mbrman.git/commit/?id=59e3a1....
Change:
-ExclusiveArch: %{rust_arches}
Thanks.
Full change:
============
commit 59e3a163477cca94fbe00080257cc6deb4a04097
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 15:17:46 2023 +0100
bump bitvec dependency from 0.22 to 1.0
diff --git a/0001-port-to-bitvec-1.0.patch b/0001-port-to-bitvec-1.0.patch
new file mode 100644
index 0000000..dc79120
--- /dev/null
+++ b/0001-port-to-bitvec-1.0.patch
@@ -0,0 +1,51 @@
+From 59473fb8bb4f8e37e90ffccd1a1e3178bdd9c1c0 Mon Sep 17 00:00:00 2001
+From: Fabio Valentini <decathorpe(a)gmail.com>
+Date: Tue, 28 Feb 2023 15:15:43 +0100
+Subject: [PATCH] port to bitvec 1.0
+
+https://github.com/rust-disk-partition-management/mbrman/commit/8f10408
+---
+ src/lib.rs | 16 ++++++++--------
+ 1 file changed, 8 insertions(+), 8 deletions(-)
+
+diff --git a/src/lib.rs b/src/lib.rs
+index 84b5c82..a290b31 100644
+--- a/src/lib.rs
++++ b/src/lib.rs
+@@ -1455,15 +1455,15 @@ impl<'de> Visitor<'de> for CHSVisitor {
+ where
+ A: SeqAccess<'de>,
+ {
+- let head = BitVec::<Msb0, u8>::from_vec(vec![seq.next_element::<u8>()?.unwrap()]);
+- let mut bv = BitVec::<Msb0, u8>::from_vec(vec![seq.next_element::<u8>()?.unwrap()]);
+- let mut cylinder = BitVec::<Msb0, u16>::with_capacity(10);
++ let head = BitVec::<u8, Msb0>::from_vec(vec![seq.next_element::<u8>()?.unwrap()]);
++ let mut bv = BitVec::<u8, Msb0>::from_vec(vec![seq.next_element::<u8>()?.unwrap()]);
++ let mut cylinder = BitVec::<u16, Msb0>::with_capacity(10);
+ cylinder.extend(repeat(false).take(6));
+ cylinder.extend(bv.drain(..2));
+- cylinder.extend(BitVec::<Msb0, u8>::from_vec(vec![seq
++ cylinder.extend(BitVec::<u8, Msb0>::from_vec(vec![seq
+ .next_element::<u8>()?
+ .unwrap()]));
+- let mut sector = BitVec::<Msb0, u8>::with_capacity(8);
++ let mut sector = BitVec::<u8, Msb0>::with_capacity(8);
+ sector.push(false);
+ sector.push(false);
+ sector.extend(bv.drain(..));
+@@ -1490,9 +1490,9 @@ impl Serialize for CHS {
+ where
+ S: Serializer,
+ {
+- let mut bv = BitVec::<Msb0, u8>::from_vec(vec![self.head]);
+- let mut sector = BitVec::<Msb0, u8>::from_vec(vec![self.sector]);
+- let mut cylinder = BitVec::<Msb0, u16>::from_vec(vec![self.cylinder]);
++ let mut bv = BitVec::<u8, Msb0>::from_vec(vec![self.head]);
++ let mut sector = BitVec::<u8, Msb0>::from_vec(vec![self.sector]);
++ let mut cylinder = BitVec::<u16, Msb0>::from_vec(vec![self.cylinder]);
+ bv.extend(cylinder.drain(..8).skip(6));
+ bv.extend(sector.drain(2..));
+ bv.extend(cylinder.drain(..));
+--
+2.39.2
+
diff --git a/mbrman-fix-metadata.diff b/mbrman-fix-metadata.diff
index 90b805a..63ed451 100644
--- a/mbrman-fix-metadata.diff
+++ b/mbrman-fix-metadata.diff
@@ -1,11 +1,11 @@
---- mbrman-0.4.1/Cargo.toml 1970-01-01T00:00:00+00:00
-+++ mbrman-0.4.1/Cargo.toml 2021-03-16T10:18:41.674373+00:00
-@@ -28,7 +28,7 @@
+--- mbrman-0.5.0/Cargo.toml 1970-01-01T00:00:01+00:00
++++ mbrman-0.5.0/Cargo.toml 2023-02-28T14:13:57.095410+00:00
+@@ -40,7 +40,7 @@
version = "1.0.1"
[dependencies.bitvec]
-version = "0.22"
-+version = "0.19"
++version = "1.0"
[dependencies.serde]
version = "1.0.116"
diff --git a/rust-mbrman.spec b/rust-mbrman.spec
index d953851..0786ef7 100644
--- a/rust-mbrman.spec
+++ b/rust-mbrman.spec
@@ -1,4 +1,4 @@
-# Generated by rust2rpm 22
+# Generated by rust2rpm 24
%bcond_without check
%global debug_package %{nil}
@@ -6,19 +6,18 @@
Name: rust-mbrman
Version: 0.5.0
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: MBR Partition Management in Rust
License: MIT OR Apache-2.0
URL: https://crates.io/crates/mbrman
Source: %{crates_source}
-# Initial patched metadata
-# Change the version of bitvec to appease fedora CI
-# as bitvec 0.22 depends on funty 1.2.0, which is
-# broken: https://github.com/myrrlyn/funty/issues/3
-Patch0: mbrman-fix-metadata.diff
-
-ExclusiveArch: %{rust_arches}
+# Manually created patch for downstream crate metadata changes
+# * bump bitvec dependency from 0.22 to 1.0
+Patch: mbrman-fix-metadata.diff
+# * port to bitvec 1.0:
+# https://github.com/rust-disk-partition-management/mbrman/commit/8f10408
+Patch: 0001-port-to-bitvec-1.0.patch
BuildRequires: rust-packaging >= 21
@@ -73,6 +72,9 @@ use the "default" feature of the "%{crate}" crate.
%endif
%changelog
+* Tue Feb 28 2023 Fabio Valentini <decathorpe(a)gmail.com> - 0.5.0-3
+- Bump bitvec dependency from 0.22 to 1.0.
+
* Fri Jan 20 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.5.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
commit ae8dbb8bd75ea9d0d18b36182a710659b66a4ed2
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Fri Jan 20 23:55:20 2023 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
diff --git a/rust-mbrman.spec b/rust-mbrman.spec
index 86fd920..d953851 100644
--- a/rust-mbrman.spec
+++ b/rust-mbrman.spec
@@ -6,7 +6,7 @@
Name: rust-mbrman
Version: 0.5.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: MBR Partition Management in Rust
License: MIT OR Apache-2.0
@@ -73,6 +73,9 @@ use the "default" feature of the "%{crate}" crate.
%endif
%changelog
+* Fri Jan 20 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.5.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
* Fri Oct 14 2022 Benjamin Gilbert <bgilbert(a)redhat.com> - 0.5.0-1
- New release
- Regenerate with rust2rpm 22
3 months
Architecture specific change in rpms/rust-rkyv.git
by githook-noreply@fedoraproject.org
The package rpms/rust-rkyv.git has added or updated architecture specific content in its
spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s):
https://src.fedoraproject.org/cgit/rpms/rust-rkyv.git/commit/?id=ba46f6f9....
Change:
-ExclusiveArch: %{rust_arches}
Thanks.
Full change:
============
commit ba46f6f95e0e16c2e302f96d95a4c46230e64a8d
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 15:30:37 2023 +0100
Update to version 0.7.40; Fixes RHBZ#2169603
diff --git a/.gitignore b/.gitignore
index ecaebbe..74848ac 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,3 +16,4 @@
/rkyv-0.7.37.crate
/rkyv-0.7.38.crate
/rkyv-0.7.39.crate
+/rkyv-0.7.40.crate
diff --git a/README.md b/README.md
deleted file mode 100644
index 2c3c48f..0000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# rust-rkyv
-
-The rust-rkyv package
diff --git a/rkyv-fix-metadata.diff b/rkyv-fix-metadata.diff
deleted file mode 100644
index 3311fe4..0000000
--- a/rkyv-fix-metadata.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- rkyv-0.7.39/Cargo.toml 1970-01-01T00:00:01+00:00
-+++ rkyv-0.7.39/Cargo.toml 2022-07-16T11:24:10.982804+00:00
-@@ -40,7 +40,7 @@
- default-features = false
-
- [dependencies.hashbrown]
--version = "0.12"
-+version = "0.11"
- optional = true
-
- [dependencies.indexmap]
diff --git a/rust-rkyv.spec b/rust-rkyv.spec
index 6a54297..1e51c0a 100644
--- a/rust-rkyv.spec
+++ b/rust-rkyv.spec
@@ -1,23 +1,17 @@
-# Generated by rust2rpm 21
+# Generated by rust2rpm 24
%bcond_without check
%global debug_package %{nil}
%global crate rkyv
-Name: rust-%{crate}
-Version: 0.7.39
+Name: rust-rkyv
+Version: 0.7.40
Release: %autorelease
Summary: Zero-copy deserialization framework for Rust
-# Upstream license specification: MIT
License: MIT
URL: https://crates.io/crates/rkyv
Source: %{crates_source}
-# Initial patched metadata
-# * temporarily downgrade hashbrown dependency from 0.12 to 0.11
-Patch0: rkyv-fix-metadata.diff
-
-ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging >= 21
@@ -101,6 +95,42 @@ use the "archive_le" feature of the "%{crate}" crate.
%files -n %{name}+archive_le-devel
%ghost %{crate_instdir}/Cargo.toml
+%package -n %{name}+arrayvec-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+arrayvec-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "arrayvec" feature of the "%{crate}" crate.
+
+%files -n %{name}+arrayvec-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package -n %{name}+bitvec-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+bitvec-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "bitvec" feature of the "%{crate}" crate.
+
+%files -n %{name}+bitvec-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package -n %{name}+bitvec_alloc-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+bitvec_alloc-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "bitvec_alloc" feature of the "%{crate}" crate.
+
+%files -n %{name}+bitvec_alloc-devel
+%ghost %{crate_instdir}/Cargo.toml
+
%package -n %{name}+bytecheck-devel
Summary: %{summary}
BuildArch: noarch
diff --git a/sources b/sources
index 6e4e938..0361136 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (rkyv-0.7.39.crate) = 5f98986d40c2af06f61ad7d3b213282c133f1c10cf96f674c31926b15269299a1100344b82dda7f59c96d6891042a778777d4bddc2a5ee75b3a682104855ba6b
+SHA512 (rkyv-0.7.40.crate) = ee8b9a0db89cc34c019c16dc72457fa8f8e63b0905b3c9c166279378faf3d1d911f39a62c672cc1da8f06aabeeabf4976a87d592338b70d28a7c9df760583055
3 months
Architecture specific change in rpms/rust-radium.git
by githook-noreply@fedoraproject.org
The package rpms/rust-radium.git has added or updated architecture specific content in its
spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s):
https://src.fedoraproject.org/cgit/rpms/rust-radium.git/commit/?id=5d08ee....
Change:
-ExclusiveArch: %{rust_arches}
Thanks.
Full change:
============
commit 5d08eed6de89a8c8d47adb6d80a0855a046e0405
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 15:33:18 2023 +0100
Update to version 0.7.0
diff --git a/.gitignore b/.gitignore
index 784f7a5..7a3ba80 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
/radium-0.6.1.crate
/radium-0.6.2.crate
+/radium-0.7.0.crate
diff --git a/rust-radium.spec b/rust-radium.spec
index 69fc368..1bdf88c 100644
--- a/rust-radium.spec
+++ b/rust-radium.spec
@@ -1,25 +1,19 @@
-# Generated by rust2rpm 16
+# Generated by rust2rpm 24
%bcond_without check
%global debug_package %{nil}
%global crate radium
-Name: rust-%{crate}
-Version: 0.6.2
+Name: rust-radium
+Version: 0.7.0
Release: %autorelease
Summary: Portable interfaces for maybe-atomic types
-# Upstream license specification: MIT
License: MIT
URL: https://crates.io/crates/radium
Source: %{crates_source}
-ExclusiveArch: %{rust_arches}
-%if %{__cargo_skip_build}
-BuildArch: noarch
-%endif
-
-BuildRequires: rust-packaging
+BuildRequires: rust-packaging >= 21
%global _description %{expand:
Portable interfaces for maybe-atomic types.}
@@ -32,13 +26,13 @@ BuildArch: noarch
%description devel %{_description}
-This package contains library source intended for building other packages
-which use "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "%{crate}" crate.
%files devel
-%license LICENSE.txt
-%doc README.md
-%{cargo_registry}/%{crate}-%{version_no_tilde}/
+%license %{crate_instdir}/LICENSE.txt
+%doc %{crate_instdir}/README.md
+%{crate_instdir}/
%package -n %{name}+default-devel
Summary: %{summary}
@@ -46,11 +40,11 @@ BuildArch: noarch
%description -n %{name}+default-devel %{_description}
-This package contains library source intended for building other packages
-which use "default" feature of "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
diff --git a/sources b/sources
index 97733da..38cb1a9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (radium-0.6.2.crate) = a1850f2c044f9ae0e56a8992226396bf61e9f3f7f288b18bea3ba60584a6533eb94ce8532507c6d084e4b263139bf61a1193f23589dc3ed8ac7127d0f34a81fd
+SHA512 (radium-0.7.0.crate) = 51e23cf52997b46c0018a94b0259b29d7bf33ddba19f6db406ca57ee5b1417d7e5f27dda3bb487d0099886011a97f238e8b3dd4d6c86e8464c0b471c1a7622a0
commit 09694c6ffec82262fe14ab9fc2ee39f427df87e2
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 14:42:48 2023 +0100
Convert to %autorelease and %autochangelog
[skip changelog]
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..ec4807d
--- /dev/null
+++ b/changelog
@@ -0,0 +1,21 @@
+* Sat Jan 21 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
+* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
+* Fri Jan 21 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
+* Fri Jul 23 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
+
+* Thu Mar 04 2021 Fabio Valentini <decathorpe(a)gmail.com> - 0.6.2-1
+- Update to version 0.6.2.
+- Fixes RHBZ#1920154
+
+* Wed Jan 27 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Tue Nov 24 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.6.1-1
+- Initial package
diff --git a/rust-radium.spec b/rust-radium.spec
index 830bb92..69fc368 100644
--- a/rust-radium.spec
+++ b/rust-radium.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 0.6.2
-Release: 5%{?dist}
+Release: %autorelease
Summary: Portable interfaces for maybe-atomic types
# Upstream license specification: MIT
@@ -71,24 +71,4 @@ which use "default" feature of "%{crate}" crate.
%endif
%changelog
-* Sat Jan 21 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Fri Jan 21 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Fri Jul 23 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Thu Mar 04 2021 Fabio Valentini <decathorpe(a)gmail.com> - 0.6.2-1
-- Update to version 0.6.2.
-- Fixes RHBZ#1920154
-
-* Wed Jan 27 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.1-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Tue Nov 24 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.6.1-1
-- Initial package
+%autochangelog
commit a886042264bf2ab987403f031ac12b9132f5d5a8
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Sat Jan 21 00:51:28 2023 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
diff --git a/rust-radium.spec b/rust-radium.spec
index 845be48..830bb92 100644
--- a/rust-radium.spec
+++ b/rust-radium.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 0.6.2
-Release: 4%{?dist}
+Release: 5%{?dist}
Summary: Portable interfaces for maybe-atomic types
# Upstream license specification: MIT
@@ -71,6 +71,9 @@ which use "default" feature of "%{crate}" crate.
%endif
%changelog
+* Sat Jan 21 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
commit 531ed1e30514b9135ce367e3208b431446d0f402
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Sat Jul 23 06:04:13 2022 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
diff --git a/rust-radium.spec b/rust-radium.spec
index 3630d99..845be48 100644
--- a/rust-radium.spec
+++ b/rust-radium.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 0.6.2
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: Portable interfaces for maybe-atomic types
# Upstream license specification: MIT
@@ -71,6 +71,9 @@ which use "default" feature of "%{crate}" crate.
%endif
%changelog
+* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
* Fri Jan 21 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
3 months
Architecture specific change in rpms/rust-funty.git
by githook-noreply@fedoraproject.org
The package rpms/rust-funty.git has added or updated architecture specific content in its
spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s):
https://src.fedoraproject.org/cgit/rpms/rust-funty.git/commit/?id=ac7d586....
Change:
-ExclusiveArch: %{rust_arches}
Thanks.
Full change:
============
commit ac7d58624866acf6aa5a7c603f35009da0146a60
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 15:31:23 2023 +0100
Update to version 2.0.0; Fixes RHBZ#2027093
diff --git a/.gitignore b/.gitignore
index 55e7a2d..6d6565c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
/funty-1.1.0.crate
/funty-1.2.0.crate
+/funty-2.0.0.crate
diff --git a/rust-funty.spec b/rust-funty.spec
index 2a46ea1..279e493 100644
--- a/rust-funty.spec
+++ b/rust-funty.spec
@@ -1,26 +1,19 @@
-# Generated by rust2rpm 16
+# Generated by rust2rpm 24
%bcond_without check
%global debug_package %{nil}
%global crate funty
-Name: rust-%{crate}
-Version: 1.1.0
+Name: rust-funty
+Version: 2.0.0
Release: %autorelease
Summary: Trait generalization over the primitive types
-# Upstream license specification: MIT
-# https://github.com/myrrlyn/funty/issues/1
License: MIT
URL: https://crates.io/crates/funty
Source: %{crates_source}
-ExclusiveArch: %{rust_arches}
-%if %{__cargo_skip_build}
-BuildArch: noarch
-%endif
-
-BuildRequires: rust-packaging
+BuildRequires: rust-packaging >= 21
%global _description %{expand:
Trait generalization over the primitive types.}
@@ -33,11 +26,12 @@ BuildArch: noarch
%description devel %{_description}
-This package contains library source intended for building other packages
-which use "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "%{crate}" crate.
%files devel
-%{cargo_registry}/%{crate}-%{version_no_tilde}/
+%license %{crate_instdir}/LICENSE.txt
+%{crate_instdir}/
%package -n %{name}+default-devel
Summary: %{summary}
@@ -45,11 +39,11 @@ BuildArch: noarch
%description -n %{name}+default-devel %{_description}
-This package contains library source intended for building other packages
-which use "default" feature of "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+std-devel
Summary: %{summary}
@@ -57,11 +51,11 @@ BuildArch: noarch
%description -n %{name}+std-devel %{_description}
-This package contains library source intended for building other packages
-which use "std" feature of "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "std" feature of the "%{crate}" crate.
%files -n %{name}+std-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
diff --git a/sources b/sources
index 485a698..6c3ce3e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (funty-1.1.0.crate) = 771f42f601a0349a8e9344c8df552491c64af350b18eacc99463e972335d4a4c95416704ebf49e904503fb2d6f78bf201c8cb82fa20bfbf460ab1e7ed9f94a9e
+SHA512 (funty-2.0.0.crate) = 691e1c275b648110ef42c4adece8178cf037bad40d469780280eb2ebe07aa4b0406737c5ba02c9f9f63ee57a99fec27e5e51712e2113655f7522c8678f689155
commit 3ad229a3f693f67c22343ff0fe266eea0790785d
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 14:41:33 2023 +0100
Convert to %autorelease and %autochangelog
[skip changelog]
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..d10ceee
--- /dev/null
+++ b/changelog
@@ -0,0 +1,27 @@
+* Fri Jan 20 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
+* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
+* Fri Jan 21 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
+* Fri Jul 23 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
+
+* Wed Feb 17 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.1.0-3
+- Bump Release to fix NVR collision on f34.
+
+* Wed Feb 17 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.1.0-2
+- Downgrade to version 1.1.0 due to big issues in 1.2.0 breaking bitvec and nom.
+
+* Sun Feb 14 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.2.0-1
+- Update to version 1.2.0.
+- Fixes RHBZ#1928339
+
+* Wed Jan 27 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Thu Jan 07 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.1.0-1
+- Initial package
diff --git a/rust-funty.spec b/rust-funty.spec
index 16daac1..2a46ea1 100644
--- a/rust-funty.spec
+++ b/rust-funty.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 1.1.0
-Release: 7%{?dist}
+Release: %autorelease
Summary: Trait generalization over the primitive types
# Upstream license specification: MIT
@@ -82,30 +82,4 @@ which use "std" feature of "%{crate}" crate.
%endif
%changelog
-* Fri Jan 20 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Fri Jan 21 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Fri Jul 23 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Wed Feb 17 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.1.0-3
-- Bump Release to fix NVR collision on f34.
-
-* Wed Feb 17 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.1.0-2
-- Downgrade to version 1.1.0 due to big issues in 1.2.0 breaking bitvec and nom.
-
-* Sun Feb 14 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.2.0-1
-- Update to version 1.2.0.
-- Fixes RHBZ#1928339
-
-* Wed Jan 27 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Thu Jan 07 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.1.0-1
-- Initial package
+%autochangelog
commit da9dcfd62b33dc46861e64a9815d5727fe6f302f
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Fri Jan 20 22:57:08 2023 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
diff --git a/rust-funty.spec b/rust-funty.spec
index ef9f7de..16daac1 100644
--- a/rust-funty.spec
+++ b/rust-funty.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 1.1.0
-Release: 6%{?dist}
+Release: 7%{?dist}
Summary: Trait generalization over the primitive types
# Upstream license specification: MIT
@@ -82,6 +82,9 @@ which use "std" feature of "%{crate}" crate.
%endif
%changelog
+* Fri Jan 20 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
commit e483b65e8c73867b01b09801233f5921550af569
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Sat Jul 23 04:11:40 2022 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
diff --git a/rust-funty.spec b/rust-funty.spec
index b161290..ef9f7de 100644
--- a/rust-funty.spec
+++ b/rust-funty.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 1.1.0
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: Trait generalization over the primitive types
# Upstream license specification: MIT
@@ -82,6 +82,9 @@ which use "std" feature of "%{crate}" crate.
%endif
%changelog
+* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
* Fri Jan 21 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
3 months
Architecture specific change in rpms/rust-rkyv_derive.git
by githook-noreply@fedoraproject.org
The package rpms/rust-rkyv_derive.git has added or updated architecture specific content in its
spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s):
https://src.fedoraproject.org/cgit/rpms/rust-rkyv_derive.git/commit/?id=c....
Change:
-ExclusiveArch: %{rust_arches}
Thanks.
Full change:
============
commit c71f14445be5bc683b65e77d7494a8b029448844
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 15:29:58 2023 +0100
Update to version 0.7.40; Fixes RHBZ#2169602
diff --git a/.gitignore b/.gitignore
index 97e8506..bfe9d46 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,3 +16,4 @@
/rkyv_derive-0.7.37.crate
/rkyv_derive-0.7.38.crate
/rkyv_derive-0.7.39.crate
+/rkyv_derive-0.7.40.crate
diff --git a/README.md b/README.md
deleted file mode 100644
index 7d7fe20..0000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# rust-rkyv_derive
-
-The rust-rkyv_derive package
diff --git a/rust-rkyv_derive.spec b/rust-rkyv_derive.spec
index 13755fa..bda0fd2 100644
--- a/rust-rkyv_derive.spec
+++ b/rust-rkyv_derive.spec
@@ -1,21 +1,18 @@
-# Generated by rust2rpm 21
+# Generated by rust2rpm 24
%bcond_without check
%global debug_package %{nil}
%global crate rkyv_derive
-Name: rust-%{crate}
-Version: 0.7.39
+Name: rust-rkyv_derive
+Version: 0.7.40
Release: %autorelease
Summary: Derive macro for rkyv
-# Upstream license specification: MIT
License: MIT
URL: https://crates.io/crates/rkyv_derive
Source: %{crates_source}
-ExclusiveArch: %{rust_arches}
-
BuildRequires: rust-packaging >= 21
%global _description %{expand:
diff --git a/sources b/sources
index a352cd5..f488f96 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (rkyv_derive-0.7.39.crate) = 9f563fddb713a54eb0372cfa8236d0352e40f971114ae37fe76b83bf6b152a8aef8089103860b3c6bc6e181d80af9b8992e1c5a8a42f7e922499924001e7af40
+SHA512 (rkyv_derive-0.7.40.crate) = ce642e9b9562f05bee504ed8cada6f701a844a733de50eaa63cd8619cddb1da7a62637d693be1f5683f759999a0c2edaab73e52467d724b0f827da2539a7f16b
commit 6d663574b8710f4909e345a88286729335658ae3
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Sat Jan 21 01:03:21 2023 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
commit bc72cb9a394047c4a24af81df4e3bdb24009a90d
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Sat Jul 23 06:16:26 2022 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
3 months
Architecture specific change in rpms/rust-rend.git
by githook-noreply@fedoraproject.org
The package rpms/rust-rend.git has added or updated architecture specific content in its
spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s):
https://src.fedoraproject.org/cgit/rpms/rust-rend.git/commit/?id=d982c6d9....
Change:
-ExclusiveArch: %{rust_arches}
Thanks.
Full change:
============
commit d982c6d99b0544614dd8a9589bff23cc61617fbf
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 15:29:32 2023 +0100
Update to version 0.4.0; Fixes RHBZ#2122420
diff --git a/.gitignore b/.gitignore
index 1bb66a4..a2879e8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@
/rend-0.3.4.crate
/rend-0.3.5.crate
/rend-0.3.6.crate
+/rend-0.4.0.crate
diff --git a/README.md b/README.md
deleted file mode 100644
index 585d067..0000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# rust-rend
-
-The rust-rend package
diff --git a/rust-rend.spec b/rust-rend.spec
index a8edd91..e7249c7 100644
--- a/rust-rend.spec
+++ b/rust-rend.spec
@@ -1,22 +1,19 @@
-# Generated by rust2rpm 20
+# Generated by rust2rpm 24
%bcond_without check
%global debug_package %{nil}
%global crate rend
-Name: rust-%{crate}
-Version: 0.3.6
+Name: rust-rend
+Version: 0.4.0
Release: %autorelease
Summary: Endian-aware primitives for Rust
-# Upstream license specification: MIT
License: MIT
URL: https://crates.io/crates/rend
Source: %{crates_source}
-ExclusiveArch: %{rust_arches}
-
-BuildRequires: rust-packaging
+BuildRequires: rust-packaging >= 21
%global _description %{expand:
Endian-aware primitives for Rust.}
@@ -30,12 +27,13 @@ BuildArch: noarch
%description devel %{_description}
This package contains library source intended for building other packages which
-use "%{crate}" crate.
+use the "%{crate}" crate.
%files devel
-%license LICENSE
-%doc README.md crates-io.md
-%{cargo_registry}/%{crate}-%{version_no_tilde}/
+%license %{crate_instdir}/LICENSE
+%doc %{crate_instdir}/README.md
+%doc %{crate_instdir}/crates-io.md
+%{crate_instdir}/
%package -n %{name}+default-devel
Summary: %{summary}
@@ -44,10 +42,10 @@ BuildArch: noarch
%description -n %{name}+default-devel %{_description}
This package contains library source intended for building other packages which
-use "default" feature of "%{crate}" crate.
+use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+bytecheck-devel
Summary: %{summary}
@@ -56,10 +54,10 @@ BuildArch: noarch
%description -n %{name}+bytecheck-devel %{_description}
This package contains library source intended for building other packages which
-use "bytecheck" feature of "%{crate}" crate.
+use the "bytecheck" feature of the "%{crate}" crate.
%files -n %{name}+bytecheck-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+std-devel
Summary: %{summary}
@@ -68,10 +66,10 @@ BuildArch: noarch
%description -n %{name}+std-devel %{_description}
This package contains library source intended for building other packages which
-use "std" feature of "%{crate}" crate.
+use the "std" feature of the "%{crate}" crate.
%files -n %{name}+std-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+validation-devel
Summary: %{summary}
@@ -80,10 +78,10 @@ BuildArch: noarch
%description -n %{name}+validation-devel %{_description}
This package contains library source intended for building other packages which
-use "validation" feature of "%{crate}" crate.
+use the "validation" feature of the "%{crate}" crate.
%files -n %{name}+validation-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
diff --git a/sources b/sources
index c7cdcec..ca7d781 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (rend-0.3.6.crate) = 348c4e11373d80fead2db69556621f7291f4179c137b914e8acab1dae62e3bd7e2b5bd74f39aa93b732d30ed45f4f26012620abb90a8aedaa898d9a0378c807d
+SHA512 (rend-0.4.0.crate) = 81760a50e9957bad30e0c0a02c6be8a26700c87f712e8f8e841be9fa7390cc047e67699f1815021b943a50e570729b0ab16c86f13e5e35cf471432f2760841ee
commit a23aca0d41834242ac8797a6c3985686658d16fa
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Sat Jan 21 01:01:24 2023 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
commit bb4ea5477bd7fcca7d62c80ee4a1954c85358caf
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Sat Jul 23 06:14:11 2022 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
3 months
Architecture specific change in rpms/rust-wyz.git
by githook-noreply@fedoraproject.org
The package rpms/rust-wyz.git has added or updated architecture specific content in its
spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s):
https://src.fedoraproject.org/cgit/rpms/rust-wyz.git/commit/?id=bbb911d4f....
Change:
-ExclusiveArch: %{rust_arches}
Thanks.
Full change:
============
commit bbb911d4f52e02fcaf1e158272a0bf29d08ac9a5
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 15:32:30 2023 +0100
Update to version 0.5.1; Fixes RHBZ#1943994
diff --git a/.gitignore b/.gitignore
index 8b7188f..e61b413 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
/*.src.rpm
/wyz-0.2.0.crate
+/wyz-0.5.1.crate
diff --git a/rust-wyz.spec b/rust-wyz.spec
index 5b153a3..e6d8cad 100644
--- a/rust-wyz.spec
+++ b/rust-wyz.spec
@@ -1,26 +1,19 @@
-# Generated by rust2rpm 16
+# Generated by rust2rpm 24
%bcond_without check
%global debug_package %{nil}
%global crate wyz
-Name: rust-%{crate}
-Version: 0.2.0
+Name: rust-wyz
+Version: 0.5.1
Release: %autorelease
Summary: Myrrlyn’s utility collection
-# Upstream license specification: MIT
-# https://github.com/myrrlyn/wyz/issues/2
License: MIT
URL: https://crates.io/crates/wyz
Source: %{crates_source}
-ExclusiveArch: %{rust_arches}
-%if %{__cargo_skip_build}
-BuildArch: noarch
-%endif
-
-BuildRequires: rust-packaging
+BuildRequires: rust-packaging >= 21
%global _description %{expand:
Myrrlyn’s utility collection.}
@@ -33,11 +26,13 @@ BuildArch: noarch
%description devel %{_description}
-This package contains library source intended for building other packages
-which use "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "%{crate}" crate.
%files devel
-%{cargo_registry}/%{crate}-%{version_no_tilde}/
+%license %{crate_instdir}/LICENSE.txt
+%doc %{crate_instdir}/README.md
+%{crate_instdir}/
%package -n %{name}+default-devel
Summary: %{summary}
@@ -45,11 +40,11 @@ BuildArch: noarch
%description -n %{name}+default-devel %{_description}
-This package contains library source intended for building other packages
-which use "default" feature of "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+alloc-devel
Summary: %{summary}
@@ -57,11 +52,35 @@ BuildArch: noarch
%description -n %{name}+alloc-devel %{_description}
-This package contains library source intended for building other packages
-which use "alloc" feature of "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "alloc" feature of the "%{crate}" crate.
%files -n %{name}+alloc-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
+
+%package -n %{name}+garbage-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+garbage-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "garbage" feature of the "%{crate}" crate.
+
+%files -n %{name}+garbage-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package -n %{name}+once_cell-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+once_cell-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "once_cell" feature of the "%{crate}" crate.
+
+%files -n %{name}+once_cell-devel
+%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+std-devel
Summary: %{summary}
@@ -69,11 +88,23 @@ BuildArch: noarch
%description -n %{name}+std-devel %{_description}
-This package contains library source intended for building other packages
-which use "std" feature of "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "std" feature of the "%{crate}" crate.
%files -n %{name}+std-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
+
+%package -n %{name}+typemap-devel
+Summary: %{summary}
+BuildArch: noarch
+
+%description -n %{name}+typemap-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "typemap" feature of the "%{crate}" crate.
+
+%files -n %{name}+typemap-devel
+%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
@@ -90,8 +121,7 @@ which use "std" feature of "%{crate}" crate.
%if %{with check}
%check
-# * doctests seem to be broken with Rust 1.58+ for unknown reasons
-%cargo_test -- --lib
+%cargo_test
%endif
%changelog
diff --git a/sources b/sources
index 5ed0ff6..5a4ad87 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (wyz-0.2.0.crate) = 3a16c3e81d3595ddf1e7816e698eb4d07c7455dec579fd5e97b5d8b77e626cda52f3cdaee71e234e5e500a7ac58b9d1d5f12b17264686f3f225d5e5b0d315de7
+SHA512 (wyz-0.5.1.crate) = 15d86c167145c90e3fbabcefd11754fb1cb835896e32d1bb7f4b027e5b2092f5fdbdca4062c129bc38e655cb87c6a3f4e181747ee25d89db5e01fb1fcac18fe9
commit 1afbf8ef17af1508727fd4c3d2c856aaf66a712e
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 14:44:12 2023 +0100
Convert to %autorelease and %autochangelog
[skip changelog]
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..67dadfc
--- /dev/null
+++ b/changelog
@@ -0,0 +1,20 @@
+* Sat Jan 21 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
+* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
+* Thu Jan 27 2022 Fabio Valentini <decathorpe(a)gmail.com> - 0.2.0-5
+- Disable doctests as they seem to be broken with Rust 1.58+.
+
+* Sat Jan 22 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
+* Fri Jul 23 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
+
+* Wed Jan 27 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Tue Nov 24 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.2.0-1
+- Initial package
diff --git a/rust-wyz.spec b/rust-wyz.spec
index adffb53..5b153a3 100644
--- a/rust-wyz.spec
+++ b/rust-wyz.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 0.2.0
-Release: 7%{?dist}
+Release: %autorelease
Summary: Myrrlyn’s utility collection
# Upstream license specification: MIT
@@ -95,23 +95,4 @@ which use "std" feature of "%{crate}" crate.
%endif
%changelog
-* Sat Jan 21 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Thu Jan 27 2022 Fabio Valentini <decathorpe(a)gmail.com> - 0.2.0-5
-- Disable doctests as they seem to be broken with Rust 1.58+.
-
-* Sat Jan 22 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Fri Jul 23 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Wed Jan 27 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Tue Nov 24 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.2.0-1
-- Initial package
+%autochangelog
commit 017d11c0756165a01f6ad3a557765bc4aa0cd553
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Sat Jan 21 02:23:17 2023 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
diff --git a/rust-wyz.spec b/rust-wyz.spec
index d387a12..adffb53 100644
--- a/rust-wyz.spec
+++ b/rust-wyz.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 0.2.0
-Release: 6%{?dist}
+Release: 7%{?dist}
Summary: Myrrlyn’s utility collection
# Upstream license specification: MIT
@@ -95,6 +95,9 @@ which use "std" feature of "%{crate}" crate.
%endif
%changelog
+* Sat Jan 21 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
commit 554066c63a1fd11f963d5aefa4f72827d26deb7e
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Sat Jul 23 07:46:01 2022 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
diff --git a/rust-wyz.spec b/rust-wyz.spec
index 32892c6..d387a12 100644
--- a/rust-wyz.spec
+++ b/rust-wyz.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 0.2.0
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: Myrrlyn’s utility collection
# Upstream license specification: MIT
@@ -95,6 +95,9 @@ which use "std" feature of "%{crate}" crate.
%endif
%changelog
+* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.2.0-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
* Thu Jan 27 2022 Fabio Valentini <decathorpe(a)gmail.com> - 0.2.0-5
- Disable doctests as they seem to be broken with Rust 1.58+.
3 months
Architecture specific change in rpms/rust-mbrman.git
by githook-noreply@fedoraproject.org
The package rpms/rust-mbrman.git has added or updated architecture specific content in its
spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s):
https://src.fedoraproject.org/cgit/rpms/rust-mbrman.git/commit/?id=59e3a1....
Change:
-ExclusiveArch: %{rust_arches}
Thanks.
Full change:
============
commit 59e3a163477cca94fbe00080257cc6deb4a04097
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 15:17:46 2023 +0100
bump bitvec dependency from 0.22 to 1.0
diff --git a/0001-port-to-bitvec-1.0.patch b/0001-port-to-bitvec-1.0.patch
new file mode 100644
index 0000000..dc79120
--- /dev/null
+++ b/0001-port-to-bitvec-1.0.patch
@@ -0,0 +1,51 @@
+From 59473fb8bb4f8e37e90ffccd1a1e3178bdd9c1c0 Mon Sep 17 00:00:00 2001
+From: Fabio Valentini <decathorpe(a)gmail.com>
+Date: Tue, 28 Feb 2023 15:15:43 +0100
+Subject: [PATCH] port to bitvec 1.0
+
+https://github.com/rust-disk-partition-management/mbrman/commit/8f10408
+---
+ src/lib.rs | 16 ++++++++--------
+ 1 file changed, 8 insertions(+), 8 deletions(-)
+
+diff --git a/src/lib.rs b/src/lib.rs
+index 84b5c82..a290b31 100644
+--- a/src/lib.rs
++++ b/src/lib.rs
+@@ -1455,15 +1455,15 @@ impl<'de> Visitor<'de> for CHSVisitor {
+ where
+ A: SeqAccess<'de>,
+ {
+- let head = BitVec::<Msb0, u8>::from_vec(vec![seq.next_element::<u8>()?.unwrap()]);
+- let mut bv = BitVec::<Msb0, u8>::from_vec(vec![seq.next_element::<u8>()?.unwrap()]);
+- let mut cylinder = BitVec::<Msb0, u16>::with_capacity(10);
++ let head = BitVec::<u8, Msb0>::from_vec(vec![seq.next_element::<u8>()?.unwrap()]);
++ let mut bv = BitVec::<u8, Msb0>::from_vec(vec![seq.next_element::<u8>()?.unwrap()]);
++ let mut cylinder = BitVec::<u16, Msb0>::with_capacity(10);
+ cylinder.extend(repeat(false).take(6));
+ cylinder.extend(bv.drain(..2));
+- cylinder.extend(BitVec::<Msb0, u8>::from_vec(vec![seq
++ cylinder.extend(BitVec::<u8, Msb0>::from_vec(vec![seq
+ .next_element::<u8>()?
+ .unwrap()]));
+- let mut sector = BitVec::<Msb0, u8>::with_capacity(8);
++ let mut sector = BitVec::<u8, Msb0>::with_capacity(8);
+ sector.push(false);
+ sector.push(false);
+ sector.extend(bv.drain(..));
+@@ -1490,9 +1490,9 @@ impl Serialize for CHS {
+ where
+ S: Serializer,
+ {
+- let mut bv = BitVec::<Msb0, u8>::from_vec(vec![self.head]);
+- let mut sector = BitVec::<Msb0, u8>::from_vec(vec![self.sector]);
+- let mut cylinder = BitVec::<Msb0, u16>::from_vec(vec![self.cylinder]);
++ let mut bv = BitVec::<u8, Msb0>::from_vec(vec![self.head]);
++ let mut sector = BitVec::<u8, Msb0>::from_vec(vec![self.sector]);
++ let mut cylinder = BitVec::<u16, Msb0>::from_vec(vec![self.cylinder]);
+ bv.extend(cylinder.drain(..8).skip(6));
+ bv.extend(sector.drain(2..));
+ bv.extend(cylinder.drain(..));
+--
+2.39.2
+
diff --git a/mbrman-fix-metadata.diff b/mbrman-fix-metadata.diff
index 90b805a..63ed451 100644
--- a/mbrman-fix-metadata.diff
+++ b/mbrman-fix-metadata.diff
@@ -1,11 +1,11 @@
---- mbrman-0.4.1/Cargo.toml 1970-01-01T00:00:00+00:00
-+++ mbrman-0.4.1/Cargo.toml 2021-03-16T10:18:41.674373+00:00
-@@ -28,7 +28,7 @@
+--- mbrman-0.5.0/Cargo.toml 1970-01-01T00:00:01+00:00
++++ mbrman-0.5.0/Cargo.toml 2023-02-28T14:13:57.095410+00:00
+@@ -40,7 +40,7 @@
version = "1.0.1"
[dependencies.bitvec]
-version = "0.22"
-+version = "0.19"
++version = "1.0"
[dependencies.serde]
version = "1.0.116"
diff --git a/rust-mbrman.spec b/rust-mbrman.spec
index d953851..0786ef7 100644
--- a/rust-mbrman.spec
+++ b/rust-mbrman.spec
@@ -1,4 +1,4 @@
-# Generated by rust2rpm 22
+# Generated by rust2rpm 24
%bcond_without check
%global debug_package %{nil}
@@ -6,19 +6,18 @@
Name: rust-mbrman
Version: 0.5.0
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: MBR Partition Management in Rust
License: MIT OR Apache-2.0
URL: https://crates.io/crates/mbrman
Source: %{crates_source}
-# Initial patched metadata
-# Change the version of bitvec to appease fedora CI
-# as bitvec 0.22 depends on funty 1.2.0, which is
-# broken: https://github.com/myrrlyn/funty/issues/3
-Patch0: mbrman-fix-metadata.diff
-
-ExclusiveArch: %{rust_arches}
+# Manually created patch for downstream crate metadata changes
+# * bump bitvec dependency from 0.22 to 1.0
+Patch: mbrman-fix-metadata.diff
+# * port to bitvec 1.0:
+# https://github.com/rust-disk-partition-management/mbrman/commit/8f10408
+Patch: 0001-port-to-bitvec-1.0.patch
BuildRequires: rust-packaging >= 21
@@ -73,6 +72,9 @@ use the "default" feature of the "%{crate}" crate.
%endif
%changelog
+* Tue Feb 28 2023 Fabio Valentini <decathorpe(a)gmail.com> - 0.5.0-3
+- Bump bitvec dependency from 0.22 to 1.0.
+
* Fri Jan 20 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.5.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
3 months
Architecture specific change in rpms/rust-radium.git
by githook-noreply@fedoraproject.org
The package rpms/rust-radium.git has added or updated architecture specific content in its
spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s):
https://src.fedoraproject.org/cgit/rpms/rust-radium.git/commit/?id=5d08ee....
Change:
-ExclusiveArch: %{rust_arches}
Thanks.
Full change:
============
commit 5d08eed6de89a8c8d47adb6d80a0855a046e0405
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 15:33:18 2023 +0100
Update to version 0.7.0
diff --git a/.gitignore b/.gitignore
index 784f7a5..7a3ba80 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
/radium-0.6.1.crate
/radium-0.6.2.crate
+/radium-0.7.0.crate
diff --git a/rust-radium.spec b/rust-radium.spec
index 69fc368..1bdf88c 100644
--- a/rust-radium.spec
+++ b/rust-radium.spec
@@ -1,25 +1,19 @@
-# Generated by rust2rpm 16
+# Generated by rust2rpm 24
%bcond_without check
%global debug_package %{nil}
%global crate radium
-Name: rust-%{crate}
-Version: 0.6.2
+Name: rust-radium
+Version: 0.7.0
Release: %autorelease
Summary: Portable interfaces for maybe-atomic types
-# Upstream license specification: MIT
License: MIT
URL: https://crates.io/crates/radium
Source: %{crates_source}
-ExclusiveArch: %{rust_arches}
-%if %{__cargo_skip_build}
-BuildArch: noarch
-%endif
-
-BuildRequires: rust-packaging
+BuildRequires: rust-packaging >= 21
%global _description %{expand:
Portable interfaces for maybe-atomic types.}
@@ -32,13 +26,13 @@ BuildArch: noarch
%description devel %{_description}
-This package contains library source intended for building other packages
-which use "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "%{crate}" crate.
%files devel
-%license LICENSE.txt
-%doc README.md
-%{cargo_registry}/%{crate}-%{version_no_tilde}/
+%license %{crate_instdir}/LICENSE.txt
+%doc %{crate_instdir}/README.md
+%{crate_instdir}/
%package -n %{name}+default-devel
Summary: %{summary}
@@ -46,11 +40,11 @@ BuildArch: noarch
%description -n %{name}+default-devel %{_description}
-This package contains library source intended for building other packages
-which use "default" feature of "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
diff --git a/sources b/sources
index 97733da..38cb1a9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (radium-0.6.2.crate) = a1850f2c044f9ae0e56a8992226396bf61e9f3f7f288b18bea3ba60584a6533eb94ce8532507c6d084e4b263139bf61a1193f23589dc3ed8ac7127d0f34a81fd
+SHA512 (radium-0.7.0.crate) = 51e23cf52997b46c0018a94b0259b29d7bf33ddba19f6db406ca57ee5b1417d7e5f27dda3bb487d0099886011a97f238e8b3dd4d6c86e8464c0b471c1a7622a0
commit 09694c6ffec82262fe14ab9fc2ee39f427df87e2
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 14:42:48 2023 +0100
Convert to %autorelease and %autochangelog
[skip changelog]
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..ec4807d
--- /dev/null
+++ b/changelog
@@ -0,0 +1,21 @@
+* Sat Jan 21 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
+* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
+* Fri Jan 21 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
+* Fri Jul 23 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
+
+* Thu Mar 04 2021 Fabio Valentini <decathorpe(a)gmail.com> - 0.6.2-1
+- Update to version 0.6.2.
+- Fixes RHBZ#1920154
+
+* Wed Jan 27 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Tue Nov 24 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.6.1-1
+- Initial package
diff --git a/rust-radium.spec b/rust-radium.spec
index 830bb92..69fc368 100644
--- a/rust-radium.spec
+++ b/rust-radium.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 0.6.2
-Release: 5%{?dist}
+Release: %autorelease
Summary: Portable interfaces for maybe-atomic types
# Upstream license specification: MIT
@@ -71,24 +71,4 @@ which use "default" feature of "%{crate}" crate.
%endif
%changelog
-* Sat Jan 21 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Fri Jan 21 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Fri Jul 23 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Thu Mar 04 2021 Fabio Valentini <decathorpe(a)gmail.com> - 0.6.2-1
-- Update to version 0.6.2.
-- Fixes RHBZ#1920154
-
-* Wed Jan 27 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.1-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Tue Nov 24 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.6.1-1
-- Initial package
+%autochangelog
commit a886042264bf2ab987403f031ac12b9132f5d5a8
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Sat Jan 21 00:51:28 2023 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
diff --git a/rust-radium.spec b/rust-radium.spec
index 845be48..830bb92 100644
--- a/rust-radium.spec
+++ b/rust-radium.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 0.6.2
-Release: 4%{?dist}
+Release: 5%{?dist}
Summary: Portable interfaces for maybe-atomic types
# Upstream license specification: MIT
@@ -71,6 +71,9 @@ which use "default" feature of "%{crate}" crate.
%endif
%changelog
+* Sat Jan 21 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.6.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
3 months
Architecture specific change in rpms/rust-funty.git
by githook-noreply@fedoraproject.org
The package rpms/rust-funty.git has added or updated architecture specific content in its
spec file (ExclusiveArch/ExcludeArch or %ifarch/%ifnarch) in commit(s):
https://src.fedoraproject.org/cgit/rpms/rust-funty.git/commit/?id=ac7d586....
Change:
-ExclusiveArch: %{rust_arches}
Thanks.
Full change:
============
commit ac7d58624866acf6aa5a7c603f35009da0146a60
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 15:31:23 2023 +0100
Update to version 2.0.0; Fixes RHBZ#2027093
diff --git a/.gitignore b/.gitignore
index 55e7a2d..6d6565c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
/funty-1.1.0.crate
/funty-1.2.0.crate
+/funty-2.0.0.crate
diff --git a/rust-funty.spec b/rust-funty.spec
index 2a46ea1..279e493 100644
--- a/rust-funty.spec
+++ b/rust-funty.spec
@@ -1,26 +1,19 @@
-# Generated by rust2rpm 16
+# Generated by rust2rpm 24
%bcond_without check
%global debug_package %{nil}
%global crate funty
-Name: rust-%{crate}
-Version: 1.1.0
+Name: rust-funty
+Version: 2.0.0
Release: %autorelease
Summary: Trait generalization over the primitive types
-# Upstream license specification: MIT
-# https://github.com/myrrlyn/funty/issues/1
License: MIT
URL: https://crates.io/crates/funty
Source: %{crates_source}
-ExclusiveArch: %{rust_arches}
-%if %{__cargo_skip_build}
-BuildArch: noarch
-%endif
-
-BuildRequires: rust-packaging
+BuildRequires: rust-packaging >= 21
%global _description %{expand:
Trait generalization over the primitive types.}
@@ -33,11 +26,12 @@ BuildArch: noarch
%description devel %{_description}
-This package contains library source intended for building other packages
-which use "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "%{crate}" crate.
%files devel
-%{cargo_registry}/%{crate}-%{version_no_tilde}/
+%license %{crate_instdir}/LICENSE.txt
+%{crate_instdir}/
%package -n %{name}+default-devel
Summary: %{summary}
@@ -45,11 +39,11 @@ BuildArch: noarch
%description -n %{name}+default-devel %{_description}
-This package contains library source intended for building other packages
-which use "default" feature of "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+std-devel
Summary: %{summary}
@@ -57,11 +51,11 @@ BuildArch: noarch
%description -n %{name}+std-devel %{_description}
-This package contains library source intended for building other packages
-which use "std" feature of "%{crate}" crate.
+This package contains library source intended for building other packages which
+use the "std" feature of the "%{crate}" crate.
%files -n %{name}+std-devel
-%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
+%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
diff --git a/sources b/sources
index 485a698..6c3ce3e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (funty-1.1.0.crate) = 771f42f601a0349a8e9344c8df552491c64af350b18eacc99463e972335d4a4c95416704ebf49e904503fb2d6f78bf201c8cb82fa20bfbf460ab1e7ed9f94a9e
+SHA512 (funty-2.0.0.crate) = 691e1c275b648110ef42c4adece8178cf037bad40d469780280eb2ebe07aa4b0406737c5ba02c9f9f63ee57a99fec27e5e51712e2113655f7522c8678f689155
commit 3ad229a3f693f67c22343ff0fe266eea0790785d
Author: Fabio Valentini <decathorpe(a)gmail.com>
Date: Tue Feb 28 14:41:33 2023 +0100
Convert to %autorelease and %autochangelog
[skip changelog]
diff --git a/changelog b/changelog
new file mode 100644
index 0000000..d10ceee
--- /dev/null
+++ b/changelog
@@ -0,0 +1,27 @@
+* Fri Jan 20 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
+* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
+
+* Fri Jan 21 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
+* Fri Jul 23 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
+
+* Wed Feb 17 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.1.0-3
+- Bump Release to fix NVR collision on f34.
+
+* Wed Feb 17 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.1.0-2
+- Downgrade to version 1.1.0 due to big issues in 1.2.0 breaking bitvec and nom.
+
+* Sun Feb 14 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.2.0-1
+- Update to version 1.2.0.
+- Fixes RHBZ#1928339
+
+* Wed Jan 27 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
+
+* Thu Jan 07 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.1.0-1
+- Initial package
diff --git a/rust-funty.spec b/rust-funty.spec
index 16daac1..2a46ea1 100644
--- a/rust-funty.spec
+++ b/rust-funty.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 1.1.0
-Release: 7%{?dist}
+Release: %autorelease
Summary: Trait generalization over the primitive types
# Upstream license specification: MIT
@@ -82,30 +82,4 @@ which use "std" feature of "%{crate}" crate.
%endif
%changelog
-* Fri Jan 20 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Fri Jan 21 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Fri Jul 23 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Wed Feb 17 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.1.0-3
-- Bump Release to fix NVR collision on f34.
-
-* Wed Feb 17 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.1.0-2
-- Downgrade to version 1.1.0 due to big issues in 1.2.0 breaking bitvec and nom.
-
-* Sun Feb 14 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.2.0-1
-- Update to version 1.2.0.
-- Fixes RHBZ#1928339
-
-* Wed Jan 27 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Thu Jan 07 2021 Fabio Valentini <decathorpe(a)gmail.com> - 1.1.0-1
-- Initial package
+%autochangelog
commit da9dcfd62b33dc46861e64a9815d5727fe6f302f
Author: Fedora Release Engineering <releng(a)fedoraproject.org>
Date: Fri Jan 20 22:57:08 2023 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng(a)fedoraproject.org>
diff --git a/rust-funty.spec b/rust-funty.spec
index ef9f7de..16daac1 100644
--- a/rust-funty.spec
+++ b/rust-funty.spec
@@ -6,7 +6,7 @@
Name: rust-%{crate}
Version: 1.1.0
-Release: 6%{?dist}
+Release: 7%{?dist}
Summary: Trait generalization over the primitive types
# Upstream license specification: MIT
@@ -82,6 +82,9 @@ which use "std" feature of "%{crate}" crate.
%endif
%changelog
+* Fri Jan 20 2023 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
+
* Sat Jul 23 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
3 months