Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
June
May
April
March
February
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
2021
December
November
October
September
August
July
June
May
April
March
February
January
2020
December
November
October
September
August
July
June
May
April
March
February
January
2019
December
November
October
September
August
July
June
May
April
March
February
January
2018
December
November
October
September
August
July
June
May
April
March
February
January
2017
December
November
October
September
August
July
June
May
April
March
February
January
List overview
Download
Arch-excludes
July 2022
----- 2025 -----
June 2025
May 2025
April 2025
March 2025
February 2025
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
----- 2021 -----
December 2021
November 2021
October 2021
September 2021
August 2021
July 2021
June 2021
May 2021
April 2021
March 2021
February 2021
January 2021
----- 2020 -----
December 2020
November 2020
October 2020
September 2020
August 2020
July 2020
June 2020
May 2020
April 2020
March 2020
February 2020
January 2020
----- 2019 -----
December 2019
November 2019
October 2019
September 2019
August 2019
July 2019
June 2019
May 2019
April 2019
March 2019
February 2019
January 2019
----- 2018 -----
December 2018
November 2018
October 2018
September 2018
August 2018
July 2018
June 2018
May 2018
April 2018
March 2018
February 2018
January 2018
----- 2017 -----
December 2017
November 2017
October 2017
September 2017
August 2017
July 2017
June 2017
May 2017
April 2017
March 2017
February 2017
January 2017
arch-excludes@lists.fedoraproject.org
2 participants
220 discussions
Start a n
N
ew thread
Architecture specific change in rpms/rust-prost0.8.git
by githook-noreply@fedoraproject.org
28 Jul '22
28 Jul '22
The package rpms/rust-prost0.8.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-prost0.8.git/commit/?id=b5dfbf…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit b5dfbf99e6624067ce5727e5f3d9d20018adcc1d Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Thu Jul 28 23:10:55 2022 +0200 Initial import (prost 0.8 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bf2b3cd --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/prost-0.8.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index f5f773b..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-prost0.8 - -The rust-prost0.8 package diff --git a/prost-fix-metadata.diff b/prost-fix-metadata.diff new file mode 100644 index 0000000..37542ee --- /dev/null +++ b/prost-fix-metadata.diff @@ -0,0 +1,11 @@ +--- prost-0.8.0/Cargo.toml 1970-01-01T00:00:00+00:00 ++++ prost-0.8.0/Cargo.toml 2022-07-28T19:03:42.004939+00:00 +@@ -38,8 +38,6 @@ + [dependencies.prost-derive] + version = "0.8.0" + optional = true +-[dev-dependencies.criterion] +-version = "0.3" + + [dev-dependencies.env_logger] + version = "0.8" diff --git a/rust-prost0.8.spec b/rust-prost0.8.spec new file mode 100644 index 0000000..3355a63 --- /dev/null +++ b/rust-prost0.8.spec @@ -0,0 +1,115 @@ +# Generated by rust2rpm 22 +# * compiling tests fails with OOM issues on 32-bit architectures +%ifarch %{ix86} %{arm} +%bcond_with check +%else +%bcond_without check +%endif +%global debug_package %{nil} + +%global crate prost + +Name: rust-prost0.8 +Version: 0.8.0 +Release: %autorelease +Summary: Protocol Buffers implementation for the Rust Language + +License: Apache-2.0 +URL:
https://crates.io/crates/prost
+Source: %{crates_source} +# Manually created patch for downstream crate metadata changes +# * drop unused, benchmark-only criterion dev-dependency to speed up builds +Patch: prost-fix-metadata.diff + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging >= 21 + +%global _description %{expand: +Protocol Buffers implementation for the Rust Language.} + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages which +use the "%{crate}" crate. + +%files devel +%license %{crate_instdir}/LICENSE +%doc %{crate_instdir}/FUZZING.md +%doc %{crate_instdir}/README.md +%{crate_instdir}/ + +%package -n %{name}+default-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+default-devel %{_description} + +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 %{crate_instdir}/Cargo.toml + +%package -n %{name}+no-recursion-limit-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+no-recursion-limit-devel %{_description} + +This package contains library source intended for building other packages which +use the "no-recursion-limit" feature of the "%{crate}" crate. + +%files -n %{name}+no-recursion-limit-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+prost-derive-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+prost-derive-devel %{_description} + +This package contains library source intended for building other packages which +use the "prost-derive" feature of the "%{crate}" crate. + +%files -n %{name}+prost-derive-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+std-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+std-devel %{_description} + +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 %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +%autochangelog diff --git a/sources b/sources new file mode 100644 index 0000000..c4693f3 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (prost-0.8.0.crate) = 6a1502d868a6140576e28ba72dca83cf316ab2f3da32a1ed489444480dce3b7844dfd0b5d5895d6f5cf7f3b35ff317023aa91562ae1c11b9f1ba27357a7ab6f4
1
0
0
0
Architecture specific change in rpms/rust-prost0.8.git
by githook-noreply@fedoraproject.org
28 Jul '22
28 Jul '22
The package rpms/rust-prost0.8.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-prost0.8.git/commit/?id=b5dfbf…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit b5dfbf99e6624067ce5727e5f3d9d20018adcc1d Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Thu Jul 28 23:10:55 2022 +0200 Initial import (prost 0.8 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bf2b3cd --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/prost-0.8.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index f5f773b..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-prost0.8 - -The rust-prost0.8 package diff --git a/prost-fix-metadata.diff b/prost-fix-metadata.diff new file mode 100644 index 0000000..37542ee --- /dev/null +++ b/prost-fix-metadata.diff @@ -0,0 +1,11 @@ +--- prost-0.8.0/Cargo.toml 1970-01-01T00:00:00+00:00 ++++ prost-0.8.0/Cargo.toml 2022-07-28T19:03:42.004939+00:00 +@@ -38,8 +38,6 @@ + [dependencies.prost-derive] + version = "0.8.0" + optional = true +-[dev-dependencies.criterion] +-version = "0.3" + + [dev-dependencies.env_logger] + version = "0.8" diff --git a/rust-prost0.8.spec b/rust-prost0.8.spec new file mode 100644 index 0000000..3355a63 --- /dev/null +++ b/rust-prost0.8.spec @@ -0,0 +1,115 @@ +# Generated by rust2rpm 22 +# * compiling tests fails with OOM issues on 32-bit architectures +%ifarch %{ix86} %{arm} +%bcond_with check +%else +%bcond_without check +%endif +%global debug_package %{nil} + +%global crate prost + +Name: rust-prost0.8 +Version: 0.8.0 +Release: %autorelease +Summary: Protocol Buffers implementation for the Rust Language + +License: Apache-2.0 +URL:
https://crates.io/crates/prost
+Source: %{crates_source} +# Manually created patch for downstream crate metadata changes +# * drop unused, benchmark-only criterion dev-dependency to speed up builds +Patch: prost-fix-metadata.diff + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging >= 21 + +%global _description %{expand: +Protocol Buffers implementation for the Rust Language.} + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages which +use the "%{crate}" crate. + +%files devel +%license %{crate_instdir}/LICENSE +%doc %{crate_instdir}/FUZZING.md +%doc %{crate_instdir}/README.md +%{crate_instdir}/ + +%package -n %{name}+default-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+default-devel %{_description} + +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 %{crate_instdir}/Cargo.toml + +%package -n %{name}+no-recursion-limit-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+no-recursion-limit-devel %{_description} + +This package contains library source intended for building other packages which +use the "no-recursion-limit" feature of the "%{crate}" crate. + +%files -n %{name}+no-recursion-limit-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+prost-derive-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+prost-derive-devel %{_description} + +This package contains library source intended for building other packages which +use the "prost-derive" feature of the "%{crate}" crate. + +%files -n %{name}+prost-derive-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+std-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+std-devel %{_description} + +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 %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +%autochangelog diff --git a/sources b/sources new file mode 100644 index 0000000..c4693f3 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (prost-0.8.0.crate) = 6a1502d868a6140576e28ba72dca83cf316ab2f3da32a1ed489444480dce3b7844dfd0b5d5895d6f5cf7f3b35ff317023aa91562ae1c11b9f1ba27357a7ab6f4
1
0
0
0
Architecture specific change in rpms/rust-str_stack.git
by githook-noreply@fedoraproject.org
28 Jul '22
28 Jul '22
The package rpms/rust-str_stack.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-str_stack.git/commit/?id=e71ec…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit e71ec5ec9446040126ec1fb704f057a6c1a1ac3d Author: Davide Cavalca <dcavalca(a)fedoraproject.org> Date: Thu Nov 18 10:10:36 2021 -0800 Initial import; Fixes: RHBZ#2020464 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..87c1b6c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/str_stack-0.1.0.crate diff --git a/rust-str_stack.spec b/rust-str_stack.spec new file mode 100644 index 0000000..a52d2a9 --- /dev/null +++ b/rust-str_stack.spec @@ -0,0 +1,77 @@ +# Generated by rust2rpm 18 +%bcond_without check +%global debug_package %{nil} + +%global crate str_stack + +Name: rust-%{crate} +Version: 0.1.0 +Release: %autorelease +Summary: String allocator for allocating many write-once strings + +# Upstream license specification: MIT/Apache-2.0 +License: MIT or ASL 2.0 +URL:
https://crates.io/crates/str_stack
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +String allocator for allocating many write-once strings. +This library is primarily useful for parsing where you need to repeatedly build +many strings, use them, and then throw them away. Instead of allocating many +independent strings, this library will put them all in the same buffer.} + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages +which use "%{crate}" crate. + +%files devel +%license LICENSE-MIT LICENSE-APACHE +%doc README.md +%{cargo_registry}/%{crate}-%{version_no_tilde}/ + +%package -n %{name}+default-devel +Summary: %{summary} +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. + +%files -n %{name}+default-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +%autochangelog diff --git a/sources b/sources new file mode 100644 index 0000000..0e4ea16 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (str_stack-0.1.0.crate) = 8d910f07cfc699262a8204888a62f01c991bc1fed01b35b34359b62a5f1f8ec21781b623ee246679fa5d726b23bd5381cb697408fa4fd37d3e25e1ac8a7f4c07
1
0
0
0
Architecture specific change in rpms/rust-elf.git
by githook-noreply@fedoraproject.org
28 Jul '22
28 Jul '22
The package rpms/rust-elf.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-elf.git/commit/?id=1d6108e3070…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit 1d6108e3070432b26db3261e65aec2790dbceee4 Author: Davide Cavalca <dcavalca(a)fedoraproject.org> Date: Tue Nov 16 15:56:28 2021 -0800 Initial import; Fixes: RHBZ#2020461 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96739ab --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/elf-0.0.10.crate diff --git a/elf-fix-metadata.diff b/elf-fix-metadata.diff new file mode 100644 index 0000000..9ed3107 --- /dev/null +++ b/elf-fix-metadata.diff @@ -0,0 +1,8 @@ +--- elf-0.0.10/Cargo.toml 2016-09-23T04:28:18+00:00 ++++ elf-0.0.10/Cargo.toml 2021-11-04T23:02:01.054753+00:00 +@@ -14,4 +14,4 @@ + name = "elf" + + [dependencies] +-byteorder = "0.*" ++byteorder = "1.4" diff --git a/rust-elf.spec b/rust-elf.spec new file mode 100644 index 0000000..88710dd --- /dev/null +++ b/rust-elf.spec @@ -0,0 +1,77 @@ +# Generated by rust2rpm 18 +%bcond_without check +%global debug_package %{nil} + +%global crate elf + +Name: rust-%{crate} +Version: 0.0.10 +Release: %autorelease +Summary: Pure-rust library for parsing ELF files + +# Upstream license specification: MIT/Apache-2.0 +License: MIT or ASL 2.0 +URL:
https://crates.io/crates/elf
+Source: %{crates_source} +# Initial patched metadata +# Bump byteorder to 1.4 +Patch0: elf-fix-metadata.diff + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Pure-rust library for parsing ELF files.} + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages +which use "%{crate}" crate. + +%files devel +%license LICENSE-MIT LICENSE-APACHE COPYRIGHT +%doc README.md +%{cargo_registry}/%{crate}-%{version_no_tilde}/ + +%package -n %{name}+default-devel +Summary: %{summary} +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. + +%files -n %{name}+default-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +%autochangelog diff --git a/sources b/sources new file mode 100644 index 0000000..ea012ec --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (elf-0.0.10.crate) = 1934d441e6c227d079a61930e6280dfaf0f3497941b251c0eb4481a8d0c5492ef8cf4a5c7b6fba707c804bf828bb2d271f955fa1d10e726025fb85173d1d1461
1
0
0
0
Architecture specific change in rpms/rust-quick-xml0.22.git
by githook-noreply@fedoraproject.org
28 Jul '22
28 Jul '22
The package rpms/rust-quick-xml0.22.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-quick-xml0.22.git/commit/?id=a…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit af3e0b865e1ae72428a22010c926cce7092260a8 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Thu Jul 28 22:36:13 2022 +0200 Initial import (quick-xml 0.22 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..48033d4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/quick-xml-0.22.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index a26f330..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-quick-xml0.22 - -The rust-quick-xml0.22 package diff --git a/rust-quick-xml0.22.spec b/rust-quick-xml0.22.spec new file mode 100644 index 0000000..10e1859 --- /dev/null +++ b/rust-quick-xml0.22.spec @@ -0,0 +1,131 @@ +# Generated by rust2rpm 22 +%bcond_without check +%global debug_package %{nil} + +%global crate quick-xml + +Name: rust-quick-xml0.22 +Version: 0.22.0 +Release: %autorelease +Summary: High performance xml reader and writer + +License: MIT +URL:
https://crates.io/crates/quick-xml
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging >= 21 + +%global _description %{expand: +High performance xml reader and writer.} + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages which +use the "%{crate}" crate. + +%files devel +%license %{crate_instdir}/LICENSE-MIT.md +%doc %{crate_instdir}/Changelog.md +%doc %{crate_instdir}/README.md +%{crate_instdir}/ + +%package -n %{name}+default-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+default-devel %{_description} + +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 %{crate_instdir}/Cargo.toml + +%package -n %{name}+encoding-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+encoding-devel %{_description} + +This package contains library source intended for building other packages which +use the "encoding" feature of the "%{crate}" crate. + +%files -n %{name}+encoding-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+encoding_rs-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+encoding_rs-devel %{_description} + +This package contains library source intended for building other packages which +use the "encoding_rs" feature of the "%{crate}" crate. + +%files -n %{name}+encoding_rs-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+escape-html-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+escape-html-devel %{_description} + +This package contains library source intended for building other packages which +use the "escape-html" feature of the "%{crate}" crate. + +%files -n %{name}+escape-html-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+serde-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+serde-devel %{_description} + +This package contains library source intended for building other packages which +use the "serde" feature of the "%{crate}" crate. + +%files -n %{name}+serde-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+serialize-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+serialize-devel %{_description} + +This package contains library source intended for building other packages which +use the "serialize" feature of the "%{crate}" crate. + +%files -n %{name}+serialize-devel +%ghost %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +%autochangelog diff --git a/sources b/sources new file mode 100644 index 0000000..be2efa6 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (quick-xml-0.22.0.crate) = 15e56fafc84e62b219977c5ab0f07a021bb71216d7cbb673a7ffec4ec6bda36f97d7b7034751b0b7d745df7c17c1a591a281cf2c97aa4fada7327979711ae3dd
1
0
0
0
Architecture specific change in rpms/rust-quick-xml0.22.git
by githook-noreply@fedoraproject.org
28 Jul '22
28 Jul '22
The package rpms/rust-quick-xml0.22.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-quick-xml0.22.git/commit/?id=a…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit af3e0b865e1ae72428a22010c926cce7092260a8 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Thu Jul 28 22:36:13 2022 +0200 Initial import (quick-xml 0.22 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..48033d4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/quick-xml-0.22.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index a26f330..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-quick-xml0.22 - -The rust-quick-xml0.22 package diff --git a/rust-quick-xml0.22.spec b/rust-quick-xml0.22.spec new file mode 100644 index 0000000..10e1859 --- /dev/null +++ b/rust-quick-xml0.22.spec @@ -0,0 +1,131 @@ +# Generated by rust2rpm 22 +%bcond_without check +%global debug_package %{nil} + +%global crate quick-xml + +Name: rust-quick-xml0.22 +Version: 0.22.0 +Release: %autorelease +Summary: High performance xml reader and writer + +License: MIT +URL:
https://crates.io/crates/quick-xml
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging >= 21 + +%global _description %{expand: +High performance xml reader and writer.} + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages which +use the "%{crate}" crate. + +%files devel +%license %{crate_instdir}/LICENSE-MIT.md +%doc %{crate_instdir}/Changelog.md +%doc %{crate_instdir}/README.md +%{crate_instdir}/ + +%package -n %{name}+default-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+default-devel %{_description} + +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 %{crate_instdir}/Cargo.toml + +%package -n %{name}+encoding-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+encoding-devel %{_description} + +This package contains library source intended for building other packages which +use the "encoding" feature of the "%{crate}" crate. + +%files -n %{name}+encoding-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+encoding_rs-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+encoding_rs-devel %{_description} + +This package contains library source intended for building other packages which +use the "encoding_rs" feature of the "%{crate}" crate. + +%files -n %{name}+encoding_rs-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+escape-html-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+escape-html-devel %{_description} + +This package contains library source intended for building other packages which +use the "escape-html" feature of the "%{crate}" crate. + +%files -n %{name}+escape-html-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+serde-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+serde-devel %{_description} + +This package contains library source intended for building other packages which +use the "serde" feature of the "%{crate}" crate. + +%files -n %{name}+serde-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+serialize-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+serialize-devel %{_description} + +This package contains library source intended for building other packages which +use the "serialize" feature of the "%{crate}" crate. + +%files -n %{name}+serialize-devel +%ghost %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +%autochangelog diff --git a/sources b/sources new file mode 100644 index 0000000..be2efa6 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (quick-xml-0.22.0.crate) = 15e56fafc84e62b219977c5ab0f07a021bb71216d7cbb673a7ffec4ec6bda36f97d7b7034751b0b7d745df7c17c1a591a281cf2c97aa4fada7327979711ae3dd
1
0
0
0
Architecture specific change in rpms/rust-dashmap4.git
by githook-noreply@fedoraproject.org
28 Jul '22
28 Jul '22
The package rpms/rust-dashmap4.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-dashmap4.git/commit/?id=e62c7c…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit e62c7c8859bff05c67c029ea6ae283e2f256343c Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Thu Jul 28 22:32:45 2022 +0200 Initial import (dashmap 4 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3681972 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/dashmap-4.0.2.crate diff --git a/README.md b/README.md deleted file mode 100644 index d948d0a..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-dashmap4 - -The rust-dashmap4 package diff --git a/rust-dashmap4.spec b/rust-dashmap4.spec new file mode 100644 index 0000000..4d77d27 --- /dev/null +++ b/rust-dashmap4.spec @@ -0,0 +1,106 @@ +# Generated by rust2rpm 22 +%bcond_without check +%global debug_package %{nil} + +%global crate dashmap + +Name: rust-dashmap4 +Version: 4.0.2 +Release: %autorelease +Summary: Blazing fast concurrent HashMap for Rust + +License: MIT +URL:
https://crates.io/crates/dashmap
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging >= 21 + +%global _description %{expand: +Blazing fast concurrent HashMap for Rust.} + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages which +use the "%{crate}" crate. + +%files devel +%license %{crate_instdir}/LICENSE +%doc %{crate_instdir}/README.md +%{crate_instdir}/ + +%package -n %{name}+default-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+default-devel %{_description} + +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 %{crate_instdir}/Cargo.toml + +%package -n %{name}+raw-api-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+raw-api-devel %{_description} + +This package contains library source intended for building other packages which +use the "raw-api" feature of the "%{crate}" crate. + +%files -n %{name}+raw-api-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+rayon-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+rayon-devel %{_description} + +This package contains library source intended for building other packages which +use the "rayon" feature of the "%{crate}" crate. + +%files -n %{name}+rayon-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+serde-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+serde-devel %{_description} + +This package contains library source intended for building other packages which +use the "serde" feature of the "%{crate}" crate. + +%files -n %{name}+serde-devel +%ghost %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +%autochangelog diff --git a/sources b/sources new file mode 100644 index 0000000..2b4cf67 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (dashmap-4.0.2.crate) = 1658183be619b781c5d9e33a2c709805053ab81187145517eb4bd22e12acb42426fef841a91618e889f4e7da792b88437bbf26e3899144222562c54575107d0e
1
0
0
0
Architecture specific change in rpms/rust-dashmap4.git
by githook-noreply@fedoraproject.org
28 Jul '22
28 Jul '22
The package rpms/rust-dashmap4.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-dashmap4.git/commit/?id=e62c7c…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit e62c7c8859bff05c67c029ea6ae283e2f256343c Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Thu Jul 28 22:32:45 2022 +0200 Initial import (dashmap 4 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3681972 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/dashmap-4.0.2.crate diff --git a/README.md b/README.md deleted file mode 100644 index d948d0a..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-dashmap4 - -The rust-dashmap4 package diff --git a/rust-dashmap4.spec b/rust-dashmap4.spec new file mode 100644 index 0000000..4d77d27 --- /dev/null +++ b/rust-dashmap4.spec @@ -0,0 +1,106 @@ +# Generated by rust2rpm 22 +%bcond_without check +%global debug_package %{nil} + +%global crate dashmap + +Name: rust-dashmap4 +Version: 4.0.2 +Release: %autorelease +Summary: Blazing fast concurrent HashMap for Rust + +License: MIT +URL:
https://crates.io/crates/dashmap
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging >= 21 + +%global _description %{expand: +Blazing fast concurrent HashMap for Rust.} + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages which +use the "%{crate}" crate. + +%files devel +%license %{crate_instdir}/LICENSE +%doc %{crate_instdir}/README.md +%{crate_instdir}/ + +%package -n %{name}+default-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+default-devel %{_description} + +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 %{crate_instdir}/Cargo.toml + +%package -n %{name}+raw-api-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+raw-api-devel %{_description} + +This package contains library source intended for building other packages which +use the "raw-api" feature of the "%{crate}" crate. + +%files -n %{name}+raw-api-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+rayon-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+rayon-devel %{_description} + +This package contains library source intended for building other packages which +use the "rayon" feature of the "%{crate}" crate. + +%files -n %{name}+rayon-devel +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+serde-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+serde-devel %{_description} + +This package contains library source intended for building other packages which +use the "serde" feature of the "%{crate}" crate. + +%files -n %{name}+serde-devel +%ghost %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +%autochangelog diff --git a/sources b/sources new file mode 100644 index 0000000..2b4cf67 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (dashmap-4.0.2.crate) = 1658183be619b781c5d9e33a2c709805053ab81187145517eb4bd22e12acb42426fef841a91618e889f4e7da792b88437bbf26e3899144222562c54575107d0e
1
0
0
0
Architecture specific change in rpms/rust-prost-derive0.8.git
by githook-noreply@fedoraproject.org
28 Jul '22
28 Jul '22
The package rpms/rust-prost-derive0.8.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-prost-derive0.8.git/commit/?id…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit f06bc6b6e40940119bd682fbf76110d74498b665 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Thu Jul 28 22:26:51 2022 +0200 Initial import (prost-derive 0.8 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7c42a78 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/prost-derive-0.8.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index 4c1755f..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-prost-derive0.8 - -The rust-prost-derive0.8 package diff --git a/rust-prost-derive0.8.spec b/rust-prost-derive0.8.spec new file mode 100644 index 0000000..c0fab9b --- /dev/null +++ b/rust-prost-derive0.8.spec @@ -0,0 +1,69 @@ +# Generated by rust2rpm 22 +%bcond_without check +%global debug_package %{nil} + +%global crate prost-derive + +Name: rust-prost-derive0.8 +Version: 0.8.0 +Release: %autorelease +Summary: Protocol Buffers implementation for the Rust Language + +License: Apache-2.0 +URL:
https://crates.io/crates/prost-derive
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging >= 21 + +%global _description %{expand: +Protocol Buffers implementation for the Rust Language.} + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages which +use the "%{crate}" crate. + +%files devel +%doc %{crate_instdir}/README.md +%{crate_instdir}/ + +%package -n %{name}+default-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+default-devel %{_description} + +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 %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +%autochangelog diff --git a/sources b/sources new file mode 100644 index 0000000..5155c78 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (prost-derive-0.8.0.crate) = 8a290adf9c84b6750e56aa93187c2b1487d00449a56af570d5c937a0b995418c18123b128110499b03584d5eb6ee92b30827d3f2f36c7410144bfae81bf31ac3
1
0
0
0
Architecture specific change in rpms/rust-prost-derive0.8.git
by githook-noreply@fedoraproject.org
28 Jul '22
28 Jul '22
The package rpms/rust-prost-derive0.8.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-prost-derive0.8.git/commit/?id…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit f06bc6b6e40940119bd682fbf76110d74498b665 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Thu Jul 28 22:26:51 2022 +0200 Initial import (prost-derive 0.8 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7c42a78 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/prost-derive-0.8.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index 4c1755f..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-prost-derive0.8 - -The rust-prost-derive0.8 package diff --git a/rust-prost-derive0.8.spec b/rust-prost-derive0.8.spec new file mode 100644 index 0000000..c0fab9b --- /dev/null +++ b/rust-prost-derive0.8.spec @@ -0,0 +1,69 @@ +# Generated by rust2rpm 22 +%bcond_without check +%global debug_package %{nil} + +%global crate prost-derive + +Name: rust-prost-derive0.8 +Version: 0.8.0 +Release: %autorelease +Summary: Protocol Buffers implementation for the Rust Language + +License: Apache-2.0 +URL:
https://crates.io/crates/prost-derive
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging >= 21 + +%global _description %{expand: +Protocol Buffers implementation for the Rust Language.} + +%description %{_description} + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel %{_description} + +This package contains library source intended for building other packages which +use the "%{crate}" crate. + +%files devel +%doc %{crate_instdir}/README.md +%{crate_instdir}/ + +%package -n %{name}+default-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+default-devel %{_description} + +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 %{crate_instdir}/Cargo.toml + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +%autochangelog diff --git a/sources b/sources new file mode 100644 index 0000000..5155c78 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (prost-derive-0.8.0.crate) = 8a290adf9c84b6750e56aa93187c2b1487d00449a56af570d5c937a0b995418c18123b128110499b03584d5eb6ee92b30827d3f2f36c7410144bfae81bf31ac3
1
0
0
0
← Newer
1
2
3
4
5
6
...
22
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Results per page:
10
25
50
100
200