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
2024
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
August 2021
----- 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
250 discussions
Start a n
N
ew thread
Architecture specific change in rpms/rust-mockall_double.git
by githook-noreply@fedoraproject.org
27 Aug '21
27 Aug '21
The package rpms/rust-mockall_double.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-mockall_double.git/commit/?id=…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit bc0bb7dcf1d3439170b647b76e6357c83ba4dfbc Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Fri Aug 27 16:26:14 2021 +0200 Initial import (#1993472) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fe7011d --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +/results_*/ +/*.src.rpm + +/mockall_double-0.2.0.crate +/LICENSE-APACHE +/LICENSE-MIT diff --git a/.rust2rpm.conf b/.rust2rpm.conf new file mode 100644 index 0000000..1715b93 --- /dev/null +++ b/.rust2rpm.conf @@ -0,0 +1,3 @@ +[DEFAULT] +unwanted-features = + nightly diff --git a/README.md b/README.md deleted file mode 100644 index af2ce69..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-mockall_double - -The rust-mockall_double package diff --git a/rust-mockall_double.spec b/rust-mockall_double.spec new file mode 100644 index 0000000..edd6884 --- /dev/null +++ b/rust-mockall_double.spec @@ -0,0 +1,78 @@ +# Generated by rust2rpm 18 +%bcond_without check +%global debug_package %{nil} + +%global crate mockall_double + +Name: rust-%{crate} +Version: 0.2.0 +Release: %autorelease +Summary: Test double adapter for Mockall + +# Upstream license specification: MIT/Apache-2.0 +License: MIT or ASL 2.0 +URL:
https://crates.io/crates/mockall_double
+Source: %{crates_source} +#
https://github.com/asomers/mockall/issues/328
+Source1:
https://github.com/asomers/mockall/raw/mockall_double-v0.2.0/LICENSE-APACHE
+Source2:
https://github.com/asomers/mockall/raw/mockall_double-v0.2.0/LICENSE-MIT
+ +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Test double adapter for Mockall.} + +%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 +cp %{SOURCE1} %{SOURCE2} . + +%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..811ea1d --- /dev/null +++ b/sources @@ -0,0 +1,3 @@ +SHA512 (mockall_double-0.2.0.crate) = ecc21b427393f7165031247613479fc993afd2ce5784ec627b50c3664cea0cd2899c19d1de4591a62efb1f7f308e9fe6e365ae03d7009f5fcd891b5c3badee74 +SHA512 (LICENSE-APACHE) = 175a88be0fdec82e81809921d4e03113c369534f7c1de0594438af5b0c596f26cb713ae0de52de682dbbf725a88340d051631577e10b0092c17b9b04465de3c8 +SHA512 (LICENSE-MIT) = e70db24309be386c1782fc311fbfcbc00555418fcfbae26ef5aab7292f0a4a506952f4146f738337b51af766add80930e396102d071051a072b55ad093e9bd91
1
0
0
0
Architecture specific change in rpms/rust-mockall_double.git
by githook-noreply@fedoraproject.org
27 Aug '21
27 Aug '21
The package rpms/rust-mockall_double.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-mockall_double.git/commit/?id=…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit bc0bb7dcf1d3439170b647b76e6357c83ba4dfbc Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Fri Aug 27 16:26:14 2021 +0200 Initial import (#1993472) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fe7011d --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +/results_*/ +/*.src.rpm + +/mockall_double-0.2.0.crate +/LICENSE-APACHE +/LICENSE-MIT diff --git a/.rust2rpm.conf b/.rust2rpm.conf new file mode 100644 index 0000000..1715b93 --- /dev/null +++ b/.rust2rpm.conf @@ -0,0 +1,3 @@ +[DEFAULT] +unwanted-features = + nightly diff --git a/README.md b/README.md deleted file mode 100644 index af2ce69..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-mockall_double - -The rust-mockall_double package diff --git a/rust-mockall_double.spec b/rust-mockall_double.spec new file mode 100644 index 0000000..edd6884 --- /dev/null +++ b/rust-mockall_double.spec @@ -0,0 +1,78 @@ +# Generated by rust2rpm 18 +%bcond_without check +%global debug_package %{nil} + +%global crate mockall_double + +Name: rust-%{crate} +Version: 0.2.0 +Release: %autorelease +Summary: Test double adapter for Mockall + +# Upstream license specification: MIT/Apache-2.0 +License: MIT or ASL 2.0 +URL:
https://crates.io/crates/mockall_double
+Source: %{crates_source} +#
https://github.com/asomers/mockall/issues/328
+Source1:
https://github.com/asomers/mockall/raw/mockall_double-v0.2.0/LICENSE-APACHE
+Source2:
https://github.com/asomers/mockall/raw/mockall_double-v0.2.0/LICENSE-MIT
+ +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Test double adapter for Mockall.} + +%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 +cp %{SOURCE1} %{SOURCE2} . + +%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..811ea1d --- /dev/null +++ b/sources @@ -0,0 +1,3 @@ +SHA512 (mockall_double-0.2.0.crate) = ecc21b427393f7165031247613479fc993afd2ce5784ec627b50c3664cea0cd2899c19d1de4591a62efb1f7f308e9fe6e365ae03d7009f5fcd891b5c3badee74 +SHA512 (LICENSE-APACHE) = 175a88be0fdec82e81809921d4e03113c369534f7c1de0594438af5b0c596f26cb713ae0de52de682dbbf725a88340d051631577e10b0092c17b9b04465de3c8 +SHA512 (LICENSE-MIT) = e70db24309be386c1782fc311fbfcbc00555418fcfbae26ef5aab7292f0a4a506952f4146f738337b51af766add80930e396102d071051a072b55ad093e9bd91
1
0
0
0
Architecture specific change in rpms/rust-downcast.git
by githook-noreply@fedoraproject.org
27 Aug '21
27 Aug '21
The package rpms/rust-downcast.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-downcast.git/commit/?id=5a6e4c…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit 5a6e4c083c6aa3e5734d7c1d6c4088d5623409aa Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Fri Aug 27 16:19:21 2021 +0200 Initial import (#1993471) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c746bf6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/downcast-0.10.0.crate diff --git a/.rust2rpm.conf b/.rust2rpm.conf new file mode 100644 index 0000000..1715b93 --- /dev/null +++ b/.rust2rpm.conf @@ -0,0 +1,3 @@ +[DEFAULT] +unwanted-features = + nightly diff --git a/README.md b/README.md deleted file mode 100644 index c9f3181..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-downcast - -The rust-downcast package diff --git a/rust-downcast.spec b/rust-downcast.spec new file mode 100644 index 0000000..98cd98a --- /dev/null +++ b/rust-downcast.spec @@ -0,0 +1,86 @@ +# Generated by rust2rpm 18 +%bcond_without check +%global debug_package %{nil} + +%global crate downcast + +Name: rust-%{crate} +Version: 0.10.0 +Release: %autorelease +Summary: Trait for downcasting trait objects back to their original types + +# Upstream license specification: MIT +License: MIT +URL:
https://crates.io/crates/downcast
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Trait for downcasting trait objects back to their original types.} + +%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 +%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 + +%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 "std" feature of "%{crate}" crate. + +%files -n %{name}+std-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..a6511f1 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (downcast-0.10.0.crate) = f618ec81bcdf74e8851703c6dfe92b36c9a035214635fdae598af20258549ef31a1c23a4d220c67505aa403fcc8a0b99a990fda01305a71b801acd5044f91c12
1
0
0
0
Architecture specific change in rpms/rust-downcast.git
by githook-noreply@fedoraproject.org
27 Aug '21
27 Aug '21
The package rpms/rust-downcast.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-downcast.git/commit/?id=5a6e4c…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit 5a6e4c083c6aa3e5734d7c1d6c4088d5623409aa Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Fri Aug 27 16:19:21 2021 +0200 Initial import (#1993471) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c746bf6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/downcast-0.10.0.crate diff --git a/.rust2rpm.conf b/.rust2rpm.conf new file mode 100644 index 0000000..1715b93 --- /dev/null +++ b/.rust2rpm.conf @@ -0,0 +1,3 @@ +[DEFAULT] +unwanted-features = + nightly diff --git a/README.md b/README.md deleted file mode 100644 index c9f3181..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-downcast - -The rust-downcast package diff --git a/rust-downcast.spec b/rust-downcast.spec new file mode 100644 index 0000000..98cd98a --- /dev/null +++ b/rust-downcast.spec @@ -0,0 +1,86 @@ +# Generated by rust2rpm 18 +%bcond_without check +%global debug_package %{nil} + +%global crate downcast + +Name: rust-%{crate} +Version: 0.10.0 +Release: %autorelease +Summary: Trait for downcasting trait objects back to their original types + +# Upstream license specification: MIT +License: MIT +URL:
https://crates.io/crates/downcast
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Trait for downcasting trait objects back to their original types.} + +%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 +%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 + +%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 "std" feature of "%{crate}" crate. + +%files -n %{name}+std-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..a6511f1 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (downcast-0.10.0.crate) = f618ec81bcdf74e8851703c6dfe92b36c9a035214635fdae598af20258549ef31a1c23a4d220c67505aa403fcc8a0b99a990fda01305a71b801acd5044f91c12
1
0
0
0
Architecture specific change in rpms/rust-cpufeatures.git
by githook-noreply@fedoraproject.org
27 Aug '21
27 Aug '21
The package rpms/rust-cpufeatures.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-cpufeatures.git/commit/?id=506…
. Change: +%ifarch %{supported_arches} Thanks. Full change: ============ commit 506836b05402495319f1b693253ce115a10a25d5 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Tue Aug 24 21:44:20 2021 +0200 Build everywhere, but compile and run tests only on supported arches diff --git a/rust-cpufeatures.spec b/rust-cpufeatures.spec index 9cd3a0b..ea6deb0 100644 --- a/rust-cpufeatures.spec +++ b/rust-cpufeatures.spec @@ -4,6 +4,9 @@ %global crate cpufeatures +# compile and run tests only on supported architectures +%global supported_arches x86_64 aarch64 %{ix86} + Name: rust-%{crate} Version: 0.1.5 Release: %autorelease @@ -14,8 +17,7 @@ License: MIT or ASL 2.0 URL:
https://crates.io/crates/cpufeatures
Source: %{crates_source} -# cpufeatures crate only supports x86_64 and aarch64 -ExclusiveArch: x86_64 aarch64 +ExclusiveArch: %{rust_arches} %if %{__cargo_skip_build} BuildArch: noarch %endif @@ -62,15 +64,19 @@ which use "default" feature of "%{crate}" crate. %cargo_generate_buildrequires %build +%ifarch %{supported_arches} %cargo_build +%endif %install %cargo_install %if %{with check} %check +%ifarch %{supported_arches} %cargo_test %endif +%endif %changelog %autochangelog
1
0
0
0
Architecture specific change in rpms/rust-cpufeatures.git
by githook-noreply@fedoraproject.org
27 Aug '21
27 Aug '21
The package rpms/rust-cpufeatures.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-cpufeatures.git/commit/?id=506…
. Change: +%ifarch %{supported_arches} Thanks. Full change: ============ commit 506836b05402495319f1b693253ce115a10a25d5 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Tue Aug 24 21:44:20 2021 +0200 Build everywhere, but compile and run tests only on supported arches diff --git a/rust-cpufeatures.spec b/rust-cpufeatures.spec index 9cd3a0b..ea6deb0 100644 --- a/rust-cpufeatures.spec +++ b/rust-cpufeatures.spec @@ -4,6 +4,9 @@ %global crate cpufeatures +# compile and run tests only on supported architectures +%global supported_arches x86_64 aarch64 %{ix86} + Name: rust-%{crate} Version: 0.1.5 Release: %autorelease @@ -14,8 +17,7 @@ License: MIT or ASL 2.0 URL:
https://crates.io/crates/cpufeatures
Source: %{crates_source} -# cpufeatures crate only supports x86_64 and aarch64 -ExclusiveArch: x86_64 aarch64 +ExclusiveArch: %{rust_arches} %if %{__cargo_skip_build} BuildArch: noarch %endif @@ -62,15 +64,19 @@ which use "default" feature of "%{crate}" crate. %cargo_generate_buildrequires %build +%ifarch %{supported_arches} %cargo_build +%endif %install %cargo_install %if %{with check} %check +%ifarch %{supported_arches} %cargo_test %endif +%endif %changelog %autochangelog
1
0
0
0
Architecture specific change in rpms/rust-streebog.git
by githook-noreply@fedoraproject.org
27 Aug '21
27 Aug '21
The package rpms/rust-streebog.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-streebog.git/commit/?id=3d96a1…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit 3d96a1e8b3cb96691b53ecdf0bff5cb9821d2713 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Fri Aug 27 12:34:54 2021 +0200 Initial import (#1997247) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2a93c71 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/streebog-0.9.2.crate diff --git a/README.md b/README.md deleted file mode 100644 index a1daffe..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-streebog - -The rust-streebog package diff --git a/rust-streebog.spec b/rust-streebog.spec new file mode 100644 index 0000000..8d795a6 --- /dev/null +++ b/rust-streebog.spec @@ -0,0 +1,86 @@ +# Generated by rust2rpm 18 +%bcond_without check +%global debug_package %{nil} + +%global crate streebog + +Name: rust-%{crate} +Version: 0.9.2 +Release: %autorelease +Summary: Streebog (GOST R 34.11-2012) hash function + +# Upstream license specification: MIT OR Apache-2.0 +License: MIT or ASL 2.0 +URL:
https://crates.io/crates/streebog
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Streebog (GOST R 34.11-2012) hash function.} + +%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 CHANGELOG.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 + +%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 "std" feature of "%{crate}" crate. + +%files -n %{name}+std-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..3f7cf71 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (streebog-0.9.2.crate) = 3e62d9fb61a7692a3bc05da3e99cbb42eb1ffee4222b29c55881cf160c1ee20c015e40d2cce96da1ff9fdb149a7a3df11345012667015c5c71603a2e23907869
1
0
0
0
Architecture specific change in rpms/rust-streebog.git
by githook-noreply@fedoraproject.org
27 Aug '21
27 Aug '21
The package rpms/rust-streebog.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-streebog.git/commit/?id=3d96a1…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit 3d96a1e8b3cb96691b53ecdf0bff5cb9821d2713 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Fri Aug 27 12:34:54 2021 +0200 Initial import (#1997247) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2a93c71 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/streebog-0.9.2.crate diff --git a/README.md b/README.md deleted file mode 100644 index a1daffe..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-streebog - -The rust-streebog package diff --git a/rust-streebog.spec b/rust-streebog.spec new file mode 100644 index 0000000..8d795a6 --- /dev/null +++ b/rust-streebog.spec @@ -0,0 +1,86 @@ +# Generated by rust2rpm 18 +%bcond_without check +%global debug_package %{nil} + +%global crate streebog + +Name: rust-%{crate} +Version: 0.9.2 +Release: %autorelease +Summary: Streebog (GOST R 34.11-2012) hash function + +# Upstream license specification: MIT OR Apache-2.0 +License: MIT or ASL 2.0 +URL:
https://crates.io/crates/streebog
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Streebog (GOST R 34.11-2012) hash function.} + +%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 CHANGELOG.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 + +%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 "std" feature of "%{crate}" crate. + +%files -n %{name}+std-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..3f7cf71 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (streebog-0.9.2.crate) = 3e62d9fb61a7692a3bc05da3e99cbb42eb1ffee4222b29c55881cf160c1ee20c015e40d2cce96da1ff9fdb149a7a3df11345012667015c5c71603a2e23907869
1
0
0
0
Architecture specific change in rpms/rust-tiger.git
by githook-noreply@fedoraproject.org
27 Aug '21
27 Aug '21
The package rpms/rust-tiger.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-tiger.git/commit/?id=b4a2870f6…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit b4a2870f60e2e1548e2827914f443022bc04b5cc Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Fri Aug 27 12:29:50 2021 +0200 Initial import (#1997271) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b240e8e --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/tiger-0.1.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index 5dca2fb..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-tiger - -The rust-tiger package diff --git a/rust-tiger.spec b/rust-tiger.spec new file mode 100644 index 0000000..2e62ef7 --- /dev/null +++ b/rust-tiger.spec @@ -0,0 +1,86 @@ +# Generated by rust2rpm 18 +%bcond_without check +%global debug_package %{nil} + +%global crate tiger + +Name: rust-%{crate} +Version: 0.1.0 +Release: %autorelease +Summary: Tiger hash function + +# Upstream license specification: MIT OR Apache-2.0 +License: MIT or ASL 2.0 +URL:
https://crates.io/crates/tiger
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Tiger hash function.} + +%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 CHANGELOG.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 + +%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 "std" feature of "%{crate}" crate. + +%files -n %{name}+std-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..22592bc --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (tiger-0.1.0.crate) = 2a7dc5a5fbced881573e7b1054d371739f7770a0c15752de39e7fd91544239e67804c28b4167297a030ae9d171b5c13dbd39bc9b857c274537d375bdd24c925d
1
0
0
0
Architecture specific change in rpms/rust-tiger.git
by githook-noreply@fedoraproject.org
27 Aug '21
27 Aug '21
The package rpms/rust-tiger.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-tiger.git/commit/?id=b4a2870f6…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit b4a2870f60e2e1548e2827914f443022bc04b5cc Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Fri Aug 27 12:29:50 2021 +0200 Initial import (#1997271) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b240e8e --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/tiger-0.1.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index 5dca2fb..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-tiger - -The rust-tiger package diff --git a/rust-tiger.spec b/rust-tiger.spec new file mode 100644 index 0000000..2e62ef7 --- /dev/null +++ b/rust-tiger.spec @@ -0,0 +1,86 @@ +# Generated by rust2rpm 18 +%bcond_without check +%global debug_package %{nil} + +%global crate tiger + +Name: rust-%{crate} +Version: 0.1.0 +Release: %autorelease +Summary: Tiger hash function + +# Upstream license specification: MIT OR Apache-2.0 +License: MIT or ASL 2.0 +URL:
https://crates.io/crates/tiger
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Tiger hash function.} + +%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 CHANGELOG.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 + +%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 "std" feature of "%{crate}" crate. + +%files -n %{name}+std-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..22592bc --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (tiger-0.1.0.crate) = 2a7dc5a5fbced881573e7b1054d371739f7770a0c15752de39e7fd91544239e67804c28b4167297a030ae9d171b5c13dbd39bc9b857c274537d375bdd24c925d
1
0
0
0
← Newer
1
2
3
4
5
6
7
...
25
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
23
24
25
Results per page:
10
25
50
100
200