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
November
October
September
August
July
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
October 2020
----- 2025 -----
November 2025
October 2025
September 2025
August 2025
July 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
300 discussions
Start a n
N
ew thread
Architecture specific change in rpms/rust-semver0.10.git
by githook-noreply@fedoraproject.org
26 Oct '20
26 Oct '20
The package rpms/rust-semver0.10.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-semver0.10.git/commit/?id=f582…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit f58200c4249e51851d06a93b0e746ba77682c878 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Mon Oct 26 22:38:45 2020 +0100 initial import (semver 0.10 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed51b1e --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/semver-0.10.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index e69d583..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-semver0.10 - -The rust-semver0.10 package diff --git a/rust-semver0.10.spec b/rust-semver0.10.spec new file mode 100644 index 0000000..c6ae291 --- /dev/null +++ b/rust-semver0.10.spec @@ -0,0 +1,111 @@ +# Generated by rust2rpm 13 +%bcond_without check +%global debug_package %{nil} + +%global crate semver + +Name: rust-%{crate}0.10 +Version: 0.10.0 +Release: 1%{?dist} +Summary: Semantic version parsing and comparison + +# Upstream license specification: MIT/Apache-2.0 +License: MIT or ASL 2.0 +URL:
https://crates.io/crates/semver
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Semantic version parsing and comparison.} + +%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 + +%package -n %{name}+ci-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+ci-devel %{_description} + +This package contains library source intended for building other packages +which use "ci" feature of "%{crate}" crate. + +%files -n %{name}+ci-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+diesel-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+diesel-devel %{_description} + +This package contains library source intended for building other packages +which use "diesel" feature of "%{crate}" crate. + +%files -n %{name}+diesel-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/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 "serde" feature of "%{crate}" crate. + +%files -n %{name}+serde-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 +* Mon Oct 26 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.10.0-1 +- Initial compat package for semver 0.10 diff --git a/sources b/sources new file mode 100644 index 0000000..8a2c325 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (semver-0.10.0.crate) = 75e39076a551cd1f4e7c011e79ac762258b7995bb021298cf2fbc7b3bc9e6715ca3c5165429834738f1cfb5ea9fa3daf173ebe1e9e0f04135845c89675c89ad4
1
0
0
0
Architecture specific change in rpms/rust-semver0.9.git
by githook-noreply@fedoraproject.org
26 Oct '20
26 Oct '20
The package rpms/rust-semver0.9.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-semver0.9.git/commit/?id=629b2…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit 629b2324c568999e0e254c74d87f884cc7a3b3eb Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Mon Oct 26 22:28:12 2020 +0100 initial import (semver 0.9 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c5fa18d --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/semver-0.9.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index b74bdb6..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-semver0.9 - -The rust-semver0.9 package diff --git a/rust-semver0.9.spec b/rust-semver0.9.spec new file mode 100644 index 0000000..30577b8 --- /dev/null +++ b/rust-semver0.9.spec @@ -0,0 +1,100 @@ +# Generated by rust2rpm 13 +# * crates-index is not packaged +%bcond_with check +%global debug_package %{nil} + +%global crate semver + +Name: rust-%{crate}0.9 +Version: 0.9.0 +Release: 1%{?dist} +Summary: Semantic version parsing and comparison + +# Upstream license specification: MIT/Apache-2.0 +License: MIT or ASL 2.0 +URL:
https://crates.io/crates/semver
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Semantic version parsing and comparison.} + +%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 + +%package -n %{name}+ci-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+ci-devel %{_description} + +This package contains library source intended for building other packages +which use "ci" feature of "%{crate}" crate. + +%files -n %{name}+ci-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/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 "serde" feature of "%{crate}" crate. + +%files -n %{name}+serde-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 +* Mon Oct 26 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.9.0-1 +- Initial compat package for semver 0.9 diff --git a/sources b/sources new file mode 100644 index 0000000..f5e90ca --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (semver-0.9.0.crate) = 03a2ea563456f812c301721c3572370fe4934a22db60079da0dd6ffa33fa789e5e2436ef09e62fc35e0b742b06fabc290992c74eed80419a353c9de9449928dc
1
0
0
0
Architecture specific change in rpms/rust-semver-parser0.9.git
by githook-noreply@fedoraproject.org
26 Oct '20
26 Oct '20
The package rpms/rust-semver-parser0.9.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-semver-parser0.9.git/commit/?i…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit 7cb85768a2a0302954198f52034f638d67373987 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Mon Oct 26 22:13:13 2020 +0100 initial import (semver-parser 0.9 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9ac8ac7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/semver-parser-0.9.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index bbaa00b..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-semver-parser0.9 - -The rust-semver-parser0.9 package diff --git a/rust-semver-parser0.9.spec b/rust-semver-parser0.9.spec new file mode 100644 index 0000000..ef1f3bf --- /dev/null +++ b/rust-semver-parser0.9.spec @@ -0,0 +1,75 @@ +# Generated by rust2rpm 13 +%bcond_without check +%global debug_package %{nil} + +%global crate semver-parser + +Name: rust-%{crate}0.9 +Version: 0.9.0 +Release: 1%{?dist} +Summary: Parsing of the semver spec + +# Upstream license specification: MIT/Apache-2.0 +License: MIT or ASL 2.0 +URL:
https://crates.io/crates/semver-parser
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Parsing of the semver spec.} + +%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 +* Mon Oct 26 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.9.0-1 +- Initial compat package for semver-parser 0.9 diff --git a/sources b/sources new file mode 100644 index 0000000..9f8afcf --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (semver-parser-0.9.0.crate) = fde99e00d48c36afe09e115f86bf7d0a19877add99d55fce52b53f9f7e1f83cf9493e15a8a38f64f59e0585f919a989befc36e012c025e2e7ce809fb54bc695b
1
0
0
0
Architecture specific change in rpms/rust-bootupd.git
by githook-noreply@fedoraproject.org
26 Oct '20
26 Oct '20
The package rpms/rust-bootupd.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-bootupd.git/commit/?id=4afeac6…
https://src.fedoraproject.org/cgit/rpms/rust-bootupd.git/commit/?id=b4a97b2…
. Change: +ExclusiveArch: x86_64 aarch64 +ExclusiveArch: x86_64 Thanks. Full change: ============ commit 445e446323294f9249c39cbfa73691a752b4f2ff Author: Colin Walters <walters(a)verbum.org> Date: Mon Oct 26 15:07:02 2020 +0000
https://github.com/coreos/bootupd/releases/tag/v0.2.0
diff --git a/.gitignore b/.gitignore index ad60bb5..4c04025 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /bootupd-0.1.1.crate /bootupd-0.1.2.crate /bootupd-0.1.3.crate +/bootupd-0.2.0.crate diff --git a/rust-bootupd.spec b/rust-bootupd.spec index f315bb8..a061d22 100644 --- a/rust-bootupd.spec +++ b/rust-bootupd.spec @@ -4,7 +4,7 @@ %global crate bootupd Name: rust-%{crate} -Version: 0.1.3 +Version: 0.2.0 Release: 2%{?dist} Summary: Bootloader updater @@ -63,6 +63,9 @@ License: ASL 2.0 %systemd_postun bootupd.service bootupd.socket %changelog +* Mon Oct 26 15:06:37 UTC 2020 Colin Walters <walters(a)verbum.org> - 0.2.0-2 +-
https://github.com/coreos/bootupd/releases/tag/v0.2.0
+ * Tue Oct 13 2020 Colin Walters <walters(a)verbum.org> - 0.1.3-2 -
https://github.com/coreos/bootupd/releases/tag/v0.1.3
diff --git a/sources b/sources index 772f3d2..802f9f9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (bootupd-0.1.3.crate) = 69709d915e0cf9d51df9dc6527ea27ac7afad2aebf03d4240d1cc8c2f548fe253ff4d869251cbeb14fa3f90a86a8784d4c6d414dd72fb3ae07fe92e1987260ea +SHA512 (bootupd-0.2.0.crate) = 78fdf2ccaf467b0a4d5a45eb7737951cfa44132b6d9205339931bc8d6ec81ca6956c31d4974afc05a0749602688973e33f66c50b72732026766d637c26aef061 commit 7f5905f818432f6339c1ede5dd3465f91e50fa00 Author: Colin Walters <walters(a)verbum.org> Date: Tue Oct 13 15:46:26 2020 -0400 Update files diff --git a/rust-bootupd.spec b/rust-bootupd.spec index 5f31b44..f315bb8 100644 --- a/rust-bootupd.spec +++ b/rust-bootupd.spec @@ -37,6 +37,7 @@ License: ASL 2.0 %license LICENSE %doc README.md %{_bindir}/bootupctl +%{_libexecdir}/bootupd %{_unitdir}/* %prep commit 380ad04bcfe6672453e5a6a80917844850ff0a90 Author: Colin Walters <walters(a)verbum.org> Date: Tue Oct 13 14:22:45 2020 -0400 Release 0.1.3 diff --git a/.gitignore b/.gitignore index 1676dd2..ad60bb5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /bootupd-0.1.1.crate /bootupd-0.1.2.crate +/bootupd-0.1.3.crate diff --git a/rust-bootupd.spec b/rust-bootupd.spec index 7b27257..5f31b44 100644 --- a/rust-bootupd.spec +++ b/rust-bootupd.spec @@ -4,7 +4,7 @@ %global crate bootupd Name: rust-%{crate} -Version: 0.1.2 +Version: 0.1.3 Release: 2%{?dist} Summary: Bootloader updater @@ -62,6 +62,9 @@ License: ASL 2.0 %systemd_postun bootupd.service bootupd.socket %changelog +* Tue Oct 13 2020 Colin Walters <walters(a)verbum.org> - 0.1.3-2 +-
https://github.com/coreos/bootupd/releases/tag/v0.1.3
+ * Tue Sep 22 2020 Colin Walters <walters(a)verbum.org> - 0.1.2-2 - New upstream diff --git a/sources b/sources index 17c3fa2..772f3d2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (bootupd-0.1.2.crate) = c45993581a96da84f9b9a5c3ee682889c2585207ec4170990a98cd26c15d4328dccf1c723639e10346bf5cbbd882a0b085b606fce098cebad3bfcb69687beb43 +SHA512 (bootupd-0.1.3.crate) = 69709d915e0cf9d51df9dc6527ea27ac7afad2aebf03d4240d1cc8c2f548fe253ff4d869251cbeb14fa3f90a86a8784d4c6d414dd72fb3ae07fe92e1987260ea commit f911ddd620461b4648dffc764765ef2388762e16 Author: Colin Walters <walters(a)verbum.org> Date: Tue Sep 22 14:38:45 2020 +0000 Update sources diff --git a/.gitignore b/.gitignore index c13ce66..1676dd2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /bootupd-0.1.1.crate +/bootupd-0.1.2.crate diff --git a/sources b/sources index dfd1690..17c3fa2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (bootupd-0.1.1.crate) = 53a2e10a81d720bd3bfa8de39f67427ad18fa6a76dfcb2eb1516fee62d7a3a182fe60e86166266d4a05aa88a69a5549e288957e32815135a85dbec767df10930 +SHA512 (bootupd-0.1.2.crate) = c45993581a96da84f9b9a5c3ee682889c2585207ec4170990a98cd26c15d4328dccf1c723639e10346bf5cbbd882a0b085b606fce098cebad3bfcb69687beb43 commit e27fb64e0a93d65800c697e5159941f201d6cec0 Author: Colin Walters <walters(a)verbum.org> Date: Tue Sep 22 14:30:19 2020 +0000 Release 0.1.2 diff --git a/rust-bootupd.spec b/rust-bootupd.spec index 89c4f16..7b27257 100644 --- a/rust-bootupd.spec +++ b/rust-bootupd.spec @@ -4,7 +4,7 @@ %global crate bootupd Name: rust-%{crate} -Version: 0.1.1 +Version: 0.1.2 Release: 2%{?dist} Summary: Bootloader updater @@ -62,6 +62,9 @@ License: ASL 2.0 %systemd_postun bootupd.service bootupd.socket %changelog +* Tue Sep 22 2020 Colin Walters <walters(a)verbum.org> - 0.1.2-2 +- New upstream + * Mon Sep 21 2020 Colin Walters <walters(a)verbum.org> - 0.1.1-2 - Also build on aarch64 commit 4afeac676cff759d7871c232be1868d6f35d111a Author: Colin Walters <walters(a)verbum.org> Date: Mon Sep 21 13:43:38 2020 +0000 Also build on aarch64 diff --git a/rust-bootupd.spec b/rust-bootupd.spec index d5cbbfc..89c4f16 100644 --- a/rust-bootupd.spec +++ b/rust-bootupd.spec @@ -5,7 +5,7 @@ Name: rust-%{crate} Version: 0.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Bootloader updater License: ASL 2.0 @@ -13,7 +13,7 @@ URL:
https://crates.io/crates/bootupd
Source: %{crates_source} # For now, see upstream -ExclusiveArch: x86_64 +ExclusiveArch: x86_64 aarch64 BuildRequires: openssl-devel %if 0%{?rhel} && !0%{?eln} BuildRequires: rust-toolset @@ -62,6 +62,9 @@ License: ASL 2.0 %systemd_postun bootupd.service bootupd.socket %changelog +* Mon Sep 21 2020 Colin Walters <walters(a)verbum.org> - 0.1.1-2 +- Also build on aarch64 + * Fri Sep 11 2020 Colin Walters <walters(a)verbum.org> - 0.1.0-3 - Initial package commit b4a97b2f9fbaa808d3cea70dfe6564a0f77fd8be Author: Colin Walters <walters(a)verbum.org> Date: Fri Sep 18 18:14:18 2020 +0000 Initial import diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c13ce66 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/bootupd-0.1.1.crate diff --git a/rust-bootupd.spec b/rust-bootupd.spec new file mode 100644 index 0000000..d5cbbfc --- /dev/null +++ b/rust-bootupd.spec @@ -0,0 +1,67 @@ +%bcond_without check +%global __cargo_skip_build 0 + +%global crate bootupd + +Name: rust-%{crate} +Version: 0.1.1 +Release: 1%{?dist} +Summary: Bootloader updater + +License: ASL 2.0 +URL:
https://crates.io/crates/bootupd
+Source: %{crates_source} + +# For now, see upstream +ExclusiveArch: x86_64 +BuildRequires: openssl-devel +%if 0%{?rhel} && !0%{?eln} +BuildRequires: rust-toolset +%else +BuildRequires: rust-packaging +%endif +BuildRequires: systemd + +%global _description %{expand: +Bootloader updater} +%description %{_description} + +%package -n %{crate} +Summary: %{summary} +License: ASL 2.0 +%{?systemd_requires} + +%description -n %{crate} %{_description} + +%files -n %{crate} +%license LICENSE +%doc README.md +%{_bindir}/bootupctl +%{_unitdir}/* + +%prep +%autosetup -n %{crate}-%{version_no_tilde} -p1 +%cargo_prep + +%generate_buildrequires +%cargo_generate_buildrequires + +%build +%cargo_build + +%install +%make_install INSTALL="install -p -c" + +%post -n %{crate} +%systemd_post bootupd.service bootupd.socket + +%preun -n %{crate} +%systemd_preun bootupd.service bootupd.socket + +%postun -n %{crate} +%systemd_postun bootupd.service bootupd.socket + +%changelog +* Fri Sep 11 2020 Colin Walters <walters(a)verbum.org> - 0.1.0-3 +- Initial package + diff --git a/sources b/sources new file mode 100644 index 0000000..dfd1690 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (bootupd-0.1.1.crate) = 53a2e10a81d720bd3bfa8de39f67427ad18fa6a76dfcb2eb1516fee62d7a3a182fe60e86166266d4a05aa88a69a5549e288957e32815135a85dbec767df10930
1
0
0
0
Architecture specific change in rpms/rust-bootupd.git
by githook-noreply@fedoraproject.org
26 Oct '20
26 Oct '20
The package rpms/rust-bootupd.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-bootupd.git/commit/?id=4afeac6…
. Change: +ExclusiveArch: x86_64 aarch64 Thanks. Full change: ============ commit 445e446323294f9249c39cbfa73691a752b4f2ff Author: Colin Walters <walters(a)verbum.org> Date: Mon Oct 26 15:07:02 2020 +0000
https://github.com/coreos/bootupd/releases/tag/v0.2.0
diff --git a/.gitignore b/.gitignore index ad60bb5..4c04025 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /bootupd-0.1.1.crate /bootupd-0.1.2.crate /bootupd-0.1.3.crate +/bootupd-0.2.0.crate diff --git a/rust-bootupd.spec b/rust-bootupd.spec index f315bb8..a061d22 100644 --- a/rust-bootupd.spec +++ b/rust-bootupd.spec @@ -4,7 +4,7 @@ %global crate bootupd Name: rust-%{crate} -Version: 0.1.3 +Version: 0.2.0 Release: 2%{?dist} Summary: Bootloader updater @@ -63,6 +63,9 @@ License: ASL 2.0 %systemd_postun bootupd.service bootupd.socket %changelog +* Mon Oct 26 15:06:37 UTC 2020 Colin Walters <walters(a)verbum.org> - 0.2.0-2 +-
https://github.com/coreos/bootupd/releases/tag/v0.2.0
+ * Tue Oct 13 2020 Colin Walters <walters(a)verbum.org> - 0.1.3-2 -
https://github.com/coreos/bootupd/releases/tag/v0.1.3
diff --git a/sources b/sources index 772f3d2..802f9f9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (bootupd-0.1.3.crate) = 69709d915e0cf9d51df9dc6527ea27ac7afad2aebf03d4240d1cc8c2f548fe253ff4d869251cbeb14fa3f90a86a8784d4c6d414dd72fb3ae07fe92e1987260ea +SHA512 (bootupd-0.2.0.crate) = 78fdf2ccaf467b0a4d5a45eb7737951cfa44132b6d9205339931bc8d6ec81ca6956c31d4974afc05a0749602688973e33f66c50b72732026766d637c26aef061 commit 7f5905f818432f6339c1ede5dd3465f91e50fa00 Author: Colin Walters <walters(a)verbum.org> Date: Tue Oct 13 15:46:26 2020 -0400 Update files diff --git a/rust-bootupd.spec b/rust-bootupd.spec index 5f31b44..f315bb8 100644 --- a/rust-bootupd.spec +++ b/rust-bootupd.spec @@ -37,6 +37,7 @@ License: ASL 2.0 %license LICENSE %doc README.md %{_bindir}/bootupctl +%{_libexecdir}/bootupd %{_unitdir}/* %prep commit 380ad04bcfe6672453e5a6a80917844850ff0a90 Author: Colin Walters <walters(a)verbum.org> Date: Tue Oct 13 14:22:45 2020 -0400 Release 0.1.3 diff --git a/.gitignore b/.gitignore index 1676dd2..ad60bb5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /bootupd-0.1.1.crate /bootupd-0.1.2.crate +/bootupd-0.1.3.crate diff --git a/rust-bootupd.spec b/rust-bootupd.spec index 7b27257..5f31b44 100644 --- a/rust-bootupd.spec +++ b/rust-bootupd.spec @@ -4,7 +4,7 @@ %global crate bootupd Name: rust-%{crate} -Version: 0.1.2 +Version: 0.1.3 Release: 2%{?dist} Summary: Bootloader updater @@ -62,6 +62,9 @@ License: ASL 2.0 %systemd_postun bootupd.service bootupd.socket %changelog +* Tue Oct 13 2020 Colin Walters <walters(a)verbum.org> - 0.1.3-2 +-
https://github.com/coreos/bootupd/releases/tag/v0.1.3
+ * Tue Sep 22 2020 Colin Walters <walters(a)verbum.org> - 0.1.2-2 - New upstream diff --git a/sources b/sources index 17c3fa2..772f3d2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (bootupd-0.1.2.crate) = c45993581a96da84f9b9a5c3ee682889c2585207ec4170990a98cd26c15d4328dccf1c723639e10346bf5cbbd882a0b085b606fce098cebad3bfcb69687beb43 +SHA512 (bootupd-0.1.3.crate) = 69709d915e0cf9d51df9dc6527ea27ac7afad2aebf03d4240d1cc8c2f548fe253ff4d869251cbeb14fa3f90a86a8784d4c6d414dd72fb3ae07fe92e1987260ea commit f911ddd620461b4648dffc764765ef2388762e16 Author: Colin Walters <walters(a)verbum.org> Date: Tue Sep 22 14:38:45 2020 +0000 Update sources diff --git a/.gitignore b/.gitignore index c13ce66..1676dd2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /bootupd-0.1.1.crate +/bootupd-0.1.2.crate diff --git a/sources b/sources index dfd1690..17c3fa2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (bootupd-0.1.1.crate) = 53a2e10a81d720bd3bfa8de39f67427ad18fa6a76dfcb2eb1516fee62d7a3a182fe60e86166266d4a05aa88a69a5549e288957e32815135a85dbec767df10930 +SHA512 (bootupd-0.1.2.crate) = c45993581a96da84f9b9a5c3ee682889c2585207ec4170990a98cd26c15d4328dccf1c723639e10346bf5cbbd882a0b085b606fce098cebad3bfcb69687beb43 commit e27fb64e0a93d65800c697e5159941f201d6cec0 Author: Colin Walters <walters(a)verbum.org> Date: Tue Sep 22 14:30:19 2020 +0000 Release 0.1.2 diff --git a/rust-bootupd.spec b/rust-bootupd.spec index 89c4f16..7b27257 100644 --- a/rust-bootupd.spec +++ b/rust-bootupd.spec @@ -4,7 +4,7 @@ %global crate bootupd Name: rust-%{crate} -Version: 0.1.1 +Version: 0.1.2 Release: 2%{?dist} Summary: Bootloader updater @@ -62,6 +62,9 @@ License: ASL 2.0 %systemd_postun bootupd.service bootupd.socket %changelog +* Tue Sep 22 2020 Colin Walters <walters(a)verbum.org> - 0.1.2-2 +- New upstream + * Mon Sep 21 2020 Colin Walters <walters(a)verbum.org> - 0.1.1-2 - Also build on aarch64 commit 4afeac676cff759d7871c232be1868d6f35d111a Author: Colin Walters <walters(a)verbum.org> Date: Mon Sep 21 13:43:38 2020 +0000 Also build on aarch64 diff --git a/rust-bootupd.spec b/rust-bootupd.spec index d5cbbfc..89c4f16 100644 --- a/rust-bootupd.spec +++ b/rust-bootupd.spec @@ -5,7 +5,7 @@ Name: rust-%{crate} Version: 0.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Bootloader updater License: ASL 2.0 @@ -13,7 +13,7 @@ URL:
https://crates.io/crates/bootupd
Source: %{crates_source} # For now, see upstream -ExclusiveArch: x86_64 +ExclusiveArch: x86_64 aarch64 BuildRequires: openssl-devel %if 0%{?rhel} && !0%{?eln} BuildRequires: rust-toolset @@ -62,6 +62,9 @@ License: ASL 2.0 %systemd_postun bootupd.service bootupd.socket %changelog +* Mon Sep 21 2020 Colin Walters <walters(a)verbum.org> - 0.1.1-2 +- Also build on aarch64 + * Fri Sep 11 2020 Colin Walters <walters(a)verbum.org> - 0.1.0-3 - Initial package
1
0
0
0
Architecture specific change in rpms/rust-tui0.11.git
by githook-noreply@fedoraproject.org
26 Oct '20
26 Oct '20
The package rpms/rust-tui0.11.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-tui0.11.git/commit/?id=3be5ce3…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit 3be5ce31b8784e51b5eb49ba772757b4c7b68b98 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Mon Oct 26 16:20:05 2020 +0100 initial import (tui 0.11 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..80c4380 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/tui-0.11.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index feb9c7e..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-tui0.11 - -The rust-tui0.11 package diff --git a/rust-tui0.11.spec b/rust-tui0.11.spec new file mode 100644 index 0000000..ec388d6 --- /dev/null +++ b/rust-tui0.11.spec @@ -0,0 +1,160 @@ +# Generated by rust2rpm 13 +# * argh is not packaged +%bcond_with check +%global debug_package %{nil} + +%global crate tui + +Name: rust-%{crate}0.11 +Version: 0.11.0 +Release: 1%{?dist} +Summary: Library to build rich terminal user interfaces or dashboards + +# Upstream license specification: MIT +License: MIT +URL:
https://crates.io/crates/tui
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Library to build rich terminal user interfaces or dashboards.} + +%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 +%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}+crossterm-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+crossterm-devel %{_description} + +This package contains library source intended for building other packages +which use "crossterm" feature of "%{crate}" crate. + +%files -n %{name}+crossterm-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+curses-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+curses-devel %{_description} + +This package contains library source intended for building other packages +which use "curses" feature of "%{crate}" crate. + +%files -n %{name}+curses-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+easycurses-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+easycurses-devel %{_description} + +This package contains library source intended for building other packages +which use "easycurses" feature of "%{crate}" crate. + +%files -n %{name}+easycurses-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+pancurses-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+pancurses-devel %{_description} + +This package contains library source intended for building other packages +which use "pancurses" feature of "%{crate}" crate. + +%files -n %{name}+pancurses-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+rustbox-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+rustbox-devel %{_description} + +This package contains library source intended for building other packages +which use "rustbox" feature of "%{crate}" crate. + +%files -n %{name}+rustbox-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/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 "serde" feature of "%{crate}" crate. + +%files -n %{name}+serde-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+termion-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+termion-devel %{_description} + +This package contains library source intended for building other packages +which use "termion" feature of "%{crate}" crate. + +%files -n %{name}+termion-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 +* Mon Oct 26 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.11.0-1 +- Initial compat package for tui 0.11 diff --git a/sources b/sources new file mode 100644 index 0000000..1b1d7a1 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (tui-0.11.0.crate) = f4a03223996c37836328229601baee6522ef1a7d4b16011d39c091d94a46e19f3869dab1f272bd653f1c0ff091d38a6c0e60307907da58eae8af56ab5a1d45db
1
0
0
0
Architecture specific change in rpms/rust-tui0.9.git
by githook-noreply@fedoraproject.org
26 Oct '20
26 Oct '20
The package rpms/rust-tui0.9.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-tui0.9.git/commit/?id=31323b9b…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit 31323b9b2a41eaf4fe14e436b4cd6d835a7ba515 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Mon Oct 26 16:15:30 2020 +0100 initial import (tui 0.9 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c965ba8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/tui-0.9.5.crate diff --git a/README.md b/README.md deleted file mode 100644 index e2b01d5..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-tui0.9 - -The rust-tui0.9 package diff --git a/rust-tui0.9.spec b/rust-tui0.9.spec new file mode 100644 index 0000000..bdbb340 --- /dev/null +++ b/rust-tui0.9.spec @@ -0,0 +1,148 @@ +# Generated by rust2rpm 13 +# * argh is not packaged +%bcond_with check +%global debug_package %{nil} + +%global crate tui + +Name: rust-%{crate}0.9 +Version: 0.9.5 +Release: 1%{?dist} +Summary: Library to build rich terminal user interfaces or dashboards + +# Upstream license specification: MIT +License: MIT +URL:
https://crates.io/crates/tui
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Library to build rich terminal user interfaces or dashboards.} + +%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 +%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}+crossterm-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+crossterm-devel %{_description} + +This package contains library source intended for building other packages +which use "crossterm" feature of "%{crate}" crate. + +%files -n %{name}+crossterm-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+curses-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+curses-devel %{_description} + +This package contains library source intended for building other packages +which use "curses" feature of "%{crate}" crate. + +%files -n %{name}+curses-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+easycurses-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+easycurses-devel %{_description} + +This package contains library source intended for building other packages +which use "easycurses" feature of "%{crate}" crate. + +%files -n %{name}+easycurses-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+pancurses-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+pancurses-devel %{_description} + +This package contains library source intended for building other packages +which use "pancurses" feature of "%{crate}" crate. + +%files -n %{name}+pancurses-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+rustbox-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+rustbox-devel %{_description} + +This package contains library source intended for building other packages +which use "rustbox" feature of "%{crate}" crate. + +%files -n %{name}+rustbox-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+termion-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+termion-devel %{_description} + +This package contains library source intended for building other packages +which use "termion" feature of "%{crate}" crate. + +%files -n %{name}+termion-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 +* Mon Oct 26 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.9.5-1 +- Initial compat package for tui 0.9 diff --git a/sources b/sources new file mode 100644 index 0000000..4f3f33f --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (tui-0.9.5.crate) = b71ff85a56e4d6a7f3611bfc5b042fa377703db23a9f6eebc169fc08bf7cb0c41d74ddb02cf65ebacd5d86ae2b1ebad1fefa44fdd914210cf88a2ba031a24b81
1
0
0
0
Architecture specific change in rpms/rust-console0.12.git
by githook-noreply@fedoraproject.org
26 Oct '20
26 Oct '20
The package rpms/rust-console0.12.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-console0.12.git/commit/?id=289…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit 28952857c493c71e6c7c9c51ea3884651a380e57 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Mon Oct 26 15:55:56 2020 +0100 initial import (console 0.12 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e6f16ca --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/console-0.12.0.crate diff --git a/README.md b/README.md deleted file mode 100644 index fdd4652..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-console0.12 - -The rust-console0.12 package diff --git a/console-fix-metadata.diff b/console-fix-metadata.diff new file mode 100644 index 0000000..dc7d3a7 --- /dev/null +++ b/console-fix-metadata.diff @@ -0,0 +1,21 @@ +--- console-0.12.0/Cargo.toml 2020-08-10T00:26:06+00:00 ++++ console-0.12.0/Cargo.toml 2020-10-26T14:53:08.624426+00:00 +@@ -43,17 +43,6 @@ + + [features] + ansi-parsing = ["regex"] +-default = ["unicode-width", "ansi-parsing", "windows-console-colors"] +-windows-console-colors = ["ansi-parsing", "winapi-util"] ++default = ["unicode-width", "ansi-parsing"] + [target."cfg(unix)".dependencies.termios] + version = "0.3" +-[target."cfg(windows)".dependencies.encode_unicode] +-version = "0.3" +- +-[target."cfg(windows)".dependencies.winapi] +-version = "0.3" +-features = ["winbase", "winuser", "consoleapi", "processenv", "wincon"] +- +-[target."cfg(windows)".dependencies.winapi-util] +-version = "0.1.3" +-optional = true diff --git a/rust-console0.12.spec b/rust-console0.12.spec new file mode 100644 index 0000000..27ffa8d --- /dev/null +++ b/rust-console0.12.spec @@ -0,0 +1,114 @@ +# Generated by rust2rpm 13 +%bcond_without check +%global debug_package %{nil} + +%global crate console + +Name: rust-%{crate}0.12 +Version: 0.12.0 +Release: 1%{?dist} +Summary: Terminal and console abstraction for Rust + +# Upstream license specification: MIT +License: MIT +URL:
https://crates.io/crates/console
+Source: %{crates_source} +# Initial patched metadata +# * No Windows +Patch0: console-fix-metadata.diff + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Terminal and console abstraction 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 "%{crate}" crate. + +%files devel +%license LICENSE +%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}+ansi-parsing-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+ansi-parsing-devel %{_description} + +This package contains library source intended for building other packages +which use "ansi-parsing" feature of "%{crate}" crate. + +%files -n %{name}+ansi-parsing-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+regex-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+regex-devel %{_description} + +This package contains library source intended for building other packages +which use "regex" feature of "%{crate}" crate. + +%files -n %{name}+regex-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+unicode-width-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+unicode-width-devel %{_description} + +This package contains library source intended for building other packages +which use "unicode-width" feature of "%{crate}" crate. + +%files -n %{name}+unicode-width-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 +* Mon Oct 26 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.12.0-1 +- Initial compat package for console 0.12 diff --git a/sources b/sources new file mode 100644 index 0000000..78af3bb --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (console-0.12.0.crate) = f35d40ef5f91d99eddaa498b8e043f884fd624afd39215a7f207ca79b99d9eb563b47595974af345ce68542d76d58da17c358ce60231bcb0a1dcb9da31f7c6c7
1
0
0
0
Architecture specific change in rpms/rust-console0.11.git
by githook-noreply@fedoraproject.org
26 Oct '20
26 Oct '20
The package rpms/rust-console0.11.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-console0.11.git/commit/?id=5bd…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit 5bd75ed3b4d0b5b23ee81f935d98917afb360b71 Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Mon Oct 26 15:35:42 2020 +0100 initial import (console 0.11 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..205cd9b --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/console-0.11.3.crate diff --git a/README.md b/README.md deleted file mode 100644 index 67b37cf..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-console0.11 - -The rust-console0.11 package diff --git a/console-fix-metadata.diff b/console-fix-metadata.diff new file mode 100644 index 0000000..a658186 --- /dev/null +++ b/console-fix-metadata.diff @@ -0,0 +1,21 @@ +--- console-0.11.3/Cargo.toml 2020-05-18T15:45:22+00:00 ++++ console-0.11.3/Cargo.toml 2020-10-26T14:32:05.114136+00:00 +@@ -43,17 +43,6 @@ + + [features] + ansi-parsing = ["regex"] +-default = ["unicode-width", "ansi-parsing", "windows-console-colors"] +-windows-console-colors = ["ansi-parsing", "winapi-util"] ++default = ["unicode-width", "ansi-parsing"] + [target."cfg(unix)".dependencies.termios] + version = "0.3" +-[target."cfg(windows)".dependencies.encode_unicode] +-version = "0.3" +- +-[target."cfg(windows)".dependencies.winapi] +-version = "0.3" +-features = ["winbase", "winuser", "consoleapi", "processenv", "wincon"] +- +-[target."cfg(windows)".dependencies.winapi-util] +-version = "0.1.3" +-optional = true diff --git a/rust-console0.11.spec b/rust-console0.11.spec new file mode 100644 index 0000000..9fe0e71 --- /dev/null +++ b/rust-console0.11.spec @@ -0,0 +1,114 @@ +# Generated by rust2rpm 13 +%bcond_without check +%global debug_package %{nil} + +%global crate console + +Name: rust-%{crate}0.11 +Version: 0.11.3 +Release: 1%{?dist} +Summary: Terminal and console abstraction for Rust + +# Upstream license specification: MIT +License: MIT +URL:
https://crates.io/crates/console
+Source: %{crates_source} +# Initial patched metadata +# * No Windows +Patch0: console-fix-metadata.diff + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Terminal and console abstraction 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 "%{crate}" crate. + +%files devel +%license LICENSE +%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}+ansi-parsing-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+ansi-parsing-devel %{_description} + +This package contains library source intended for building other packages +which use "ansi-parsing" feature of "%{crate}" crate. + +%files -n %{name}+ansi-parsing-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+regex-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+regex-devel %{_description} + +This package contains library source intended for building other packages +which use "regex" feature of "%{crate}" crate. + +%files -n %{name}+regex-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+unicode-width-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+unicode-width-devel %{_description} + +This package contains library source intended for building other packages +which use "unicode-width" feature of "%{crate}" crate. + +%files -n %{name}+unicode-width-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 +* Mon Oct 26 2020 Fabio Valentini <decathorpe(a)gmail.com> - 0.11.3-1 +- Initial compat package for console 0.11 diff --git a/sources b/sources new file mode 100644 index 0000000..982c23e --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (console-0.11.3.crate) = 9eae29976d27c46de43e8839ec909fd6fa392a630b47610097e5d8882d3c3bfdbed5be5fe2b8f88a6c01e53ec89e9d4840cf834da7bee334cdf76f337ace3eb5
1
0
0
0
Architecture specific change in rpms/rust-quick-error1.git
by githook-noreply@fedoraproject.org
26 Oct '20
26 Oct '20
The package rpms/rust-quick-error1.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-error1.git/commit/?id=fc…
. Change: +ExclusiveArch: %{rust_arches} Thanks. Full change: ============ commit fc676573548c7c94195caabb90e00c8e7ed4198b Author: Fabio Valentini <decathorpe(a)gmail.com> Date: Mon Oct 26 15:17:44 2020 +0100 initial import (quick-error 1 compat package) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cda1183 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/results_*/ +/*.src.rpm + +/quick-error-1.2.3.crate diff --git a/README.md b/README.md deleted file mode 100644 index dcca833..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-quick-error1 - -The rust-quick-error1 package diff --git a/rust-quick-error1.spec b/rust-quick-error1.spec new file mode 100644 index 0000000..de8acf0 --- /dev/null +++ b/rust-quick-error1.spec @@ -0,0 +1,76 @@ +# Generated by rust2rpm 13 +%bcond_without check +%global debug_package %{nil} + +%global crate quick-error + +Name: rust-%{crate}1 +Version: 1.2.3 +Release: 1%{?dist} +Summary: Macro which makes error types pleasant to write + +# Upstream license specification: MIT/Apache-2.0 +License: MIT or ASL 2.0 +URL:
https://crates.io/crates/quick-error
+Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Macro which makes error types pleasant to write.} + +%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.rst +%{cargo_registry}/%{crate}-%{version_no_tilde}/ +%exclude %{cargo_registry}/%{crate}-%{version}/{bulk.yaml,vagga.yaml} + +%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 +* Mon Oct 26 2020 Fabio Valentini <decathorpe(a)gmail.com> - 1.2.3-1 +- Initial compat package for quick-error 1 diff --git a/sources b/sources new file mode 100644 index 0000000..918e108 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (quick-error-1.2.3.crate) = f8aaf9024d20ccd42b706c756eed8320aee339f8776392b47a41cc82ca06b03df1a5b1f00854cea96689c5af261b4d8c5d2b1a242d10f2755e7e33dc41be35b9
1
0
0
0
← Newer
1
2
3
4
5
6
7
8
9
...
30
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
26
27
28
29
30
Results per page:
10
25
50
100
200