The package rpms/rust-just.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-just.git/commit/?id=3a0ab8ed4be... https://src.fedoraproject.org/cgit/rpms/rust-just.git/commit/?id=95c3469acd2....
Change: +ExclusiveArch: %{rust_arches} -ExclusiveArch: %{rust_arches}
Thanks.
Full change: ============
commit 98d290b726bb7e2c3493d95c9449c7b52bde9645 Author: Aleksei Bavshin alebastr@fedoraproject.org Date: Thu Sep 29 21:55:53 2022 -0700
Update to 1.5.0
- Drop rust-cradle dependency - Exclude unwanted files
Incorrect shebang in %{crate_instdir}/justfile was causing a broken dependency on the devel subpackage. Excluding the file fixed that.
diff --git a/.gitignore b/.gitignore index f91d57e..ed0f1a1 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -/just-0.9.8.crate +/*.src.rpm +/results_*/ +/just-1.5.0.crate diff --git a/just-1.5.0-no-cradle.patch b/just-1.5.0-no-cradle.patch new file mode 100644 index 0000000..d4cc034 --- /dev/null +++ b/just-1.5.0-no-cradle.patch @@ -0,0 +1,69 @@ +diff --git a/tests/choose.rs b/tests/choose.rs +index 6444f2a..a81e124 100644 +--- a/tests/choose.rs ++++ b/tests/choose.rs +@@ -140,7 +140,13 @@ fn status_error() { + "exit-2": "#!/usr/bin/env bash\nexit 2\n", + }; + +- ("chmod", "+x", tmp.path().join("exit-2")).run(); ++ let output = Command::new("chmod") ++ .arg("+x") ++ .arg(tmp.path().join("exit-2")) ++ .output() ++ .unwrap(); ++ ++ assert!(output.status.success()); + + let path = env::join_paths( + iter::once(tmp.path().to_owned()).chain(env::split_paths(&env::var_os("PATH").unwrap())), +diff --git a/tests/edit.rs b/tests/edit.rs +index c7d72c7..40c82c2 100644 +--- a/tests/edit.rs ++++ b/tests/edit.rs +@@ -64,7 +64,13 @@ fn status_error() { + "exit-2": "#!/usr/bin/env bash\nexit 2\n", + }; + +- ("chmod", "+x", tmp.path().join("exit-2")).run(); ++ let output = Command::new("chmod") ++ .arg("+x") ++ .arg(tmp.path().join("exit-2")) ++ .output() ++ .unwrap(); ++ ++ assert!(output.status.success()); + + let path = env::join_paths( + iter::once(tmp.path().to_owned()).chain(env::split_paths(&env::var_os("PATH").unwrap())), +diff --git a/tests/fmt.rs b/tests/fmt.rs +index e4c4687..ccf7f5d 100644 +--- a/tests/fmt.rs ++++ b/tests/fmt.rs +@@ -107,7 +107,13 @@ fn write_error() { + + let justfile_path = test.justfile_path(); + +- ("chmod", "400", &justfile_path).run(); ++ let output = Command::new("chmod") ++ .arg("400") ++ .arg(&justfile_path) ++ .output() ++ .unwrap(); ++ ++ assert!(output.status.success()); + + let _tempdir = test.run(); + +diff --git a/tests/lib.rs b/tests/lib.rs +index 9867e3d..2f47d90 100644 +--- a/tests/lib.rs ++++ b/tests/lib.rs +@@ -2,7 +2,6 @@ pub(crate) use { + crate::{ + assert_stdout::assert_stdout, assert_success::assert_success, tempdir::tempdir, test::Test, + }, +- cradle::input::Input, + executable_path::executable_path, + just::unindent, + libc::{EXIT_FAILURE, EXIT_SUCCESS}, diff --git a/just-fix-metadata.diff b/just-fix-metadata.diff new file mode 100644 index 0000000..63050da --- /dev/null +++ b/just-fix-metadata.diff @@ -0,0 +1,28 @@ +--- just-1.5.0/Cargo.toml 1970-01-01T00:00:01+00:00 ++++ just-1.5.0/Cargo.toml 2022-09-30T00:37:34.996094+00:00 +@@ -15,9 +15,15 @@ + version = "1.5.0" + authors = ["Casey Rodarmor casey@rodarmor.com"] + exclude = [ ++ "/Vagrantfile", ++ "/bin", + "/book", ++ "/completions", ++ "/extras", + "/icon.png", ++ "/justfile", + "/screenshot.png", ++ "/snapcraft.yaml", + "/www", + ] + autotests = false +@@ -133,9 +139,6 @@ + version = "1.0.0" + features = ["v4"] + +-[dev-dependencies.cradle] +-version = "0.2.0" +- + [dev-dependencies.executable-path] + version = "1.0.0" + diff --git a/rust-just.spec b/rust-just.spec index 43557c1..7db7b45 100644 --- a/rust-just.spec +++ b/rust-just.spec @@ -1,31 +1,32 @@ -# Generated by rust2rpm 17 +# Generated by rust2rpm 22 %bcond_without check
%global crate just
-Name: rust-%{crate} -Version: 0.9.8 +Name: rust-just +Version: 1.5.0 Release: %autorelease -Summary: A command runner +Summary: Just a command runner
-# Upstream license specification: CC0-1.0 -License: CC0 +License: CC0-1.0 URL: https://crates.io/crates/just Source: %{crates_source} +# Initial patched metadata +# - Exclude unwanted files +# - Drop cradle dependency, the crate cannot be packaged due to CC0 license +Patch0: just-fix-metadata.diff +# Remove all uses of cradle +Patch1: just-1.5.0-no-cradle.patch
ExclusiveArch: %{rust_arches} -%if %{__cargo_skip_build} -BuildArch: noarch -%endif
-BuildRequires: rust-packaging +BuildRequires: rust-packaging >= 21
%global _description %{expand: just is a handy way to save and run project-specific commands.}
%description %{_description}
-%if ! %{__cargo_skip_build} %package -n %{crate} Summary: %{summary}
@@ -33,14 +34,17 @@ Summary: %{summary}
%files -n %{crate} %license LICENSE -%doc README.adoc examples -%doc GRAMMAR.md CHANGELOG.md CONTRIBUTING.md +%doc CHANGELOG.md +%doc CONTRIBUTING.md +%doc GRAMMAR.md +%doc README.md +%doc README.中文.md +%doc crates-io-readme.md %{_bindir}/just %{_mandir}/man1/just.1* %{_datadir}/bash-completion %{_datadir}/fish/ %{_datadir}/zsh/site-functions -%endif
%package devel Summary: %{summary} @@ -48,14 +52,18 @@ BuildArch: noarch
%description devel %{_description}
-This package contains library source intended for building other packages -which use "%{crate}" crate. +This package contains library source intended for building other packages which +use the "%{crate}" crate.
%files devel -%license LICENSE -%doc crates-io-readme.md -%doc GRAMMAR.md CHANGELOG.md CONTRIBUTING.md -%{cargo_registry}/%{crate}-%{version_no_tilde}/ +%license %{crate_instdir}/LICENSE +%doc %{crate_instdir}/CHANGELOG.md +%doc %{crate_instdir}/CONTRIBUTING.md +%doc %{crate_instdir}/GRAMMAR.md +%doc %{crate_instdir}/README.md +%doc %{crate_instdir}/README.中文.md +%doc %{crate_instdir}/crates-io-readme.md +%{crate_instdir}/
%package -n %{name}+default-devel Summary: %{summary} @@ -63,11 +71,23 @@ BuildArch: noarch
%description -n %{name}+default-devel %{_description}
-This package contains library source intended for building other packages -which use "default" feature of "%{crate}" crate. +This package contains library source intended for building other packages which +use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel -%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml +%ghost %{crate_instdir}/Cargo.toml + +%package -n %{name}+help4help2man-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+help4help2man-devel %{_description} + +This package contains library source intended for building other packages which +use the "help4help2man" feature of the "%{crate}" crate. + +%files -n %{name}+help4help2man-devel +%ghost %{crate_instdir}/Cargo.toml
%prep %autosetup -n %{crate}-%{version_no_tilde} -p1 diff --git a/sources b/sources index 7ef680a..d13253d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (just-0.9.8.crate) = 46cb9da586f9b226d3632cb102dd3033778630b0501b65e27a8286dc0d8cd8862b4f2be0e2c43a1722c89a889519c885cd9057d3d73758cf7e68a977d9bb4505 +SHA512 (just-1.5.0.crate) = 500b75bf4d7f2958ff98173de40f8930b98291da09fef1e142606b41b65f73190cb7873e58181f2e0efee20b61fafd55c48a4df88d82e180100186109a18e8c2
commit e0b4e9dfbeab398616a01e5e37e423277dcc407c Author: Aleksei Bavshin alebastr@fedoraproject.org Date: Thu Sep 29 21:34:05 2022 -0700
Convert to rpmautospec
diff --git a/changelog b/changelog new file mode 100644 index 0000000..2cd28b9 --- /dev/null +++ b/changelog @@ -0,0 +1,18 @@ +* Sat Jul 23 2022 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Feb 15 2022 Zbigniew Jędrzejewski-Szmek zbyszek@in.waw.pl - 0.9.8-4 +- Rebuild with package notes + +* Fri Jan 21 2022 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Sun Jul 04 09:45:37 CEST 2021 Olivier Lemasle o.lemasle@gmail.com - 0.9.8-1 +- Update to upstream 0.9.8; enable tests +- Add shell completions + +* Sat Jul 03 12:57:26 CEST 2021 Olivier Lemasle o.lemasle@gmail.com - 0.9.6-1 +- Initial package diff --git a/rust-just.spec b/rust-just.spec index d141806..43557c1 100644 --- a/rust-just.spec +++ b/rust-just.spec @@ -5,7 +5,7 @@
Name: rust-%{crate} Version: 0.9.8 -Release: 5%{?dist} +Release: %autorelease Summary: A command runner
# Upstream license specification: CC0-1.0 @@ -96,21 +96,4 @@ install -p -m 644 completions/just.zsh %{buildroot}%{_datadir}/zsh/site-function %endif
%changelog -* Sat Jul 23 2022 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Tue Feb 15 2022 Zbigniew Jędrzejewski-Szmek zbyszek@in.waw.pl - 0.9.8-4 -- Rebuild with package notes - -* Fri Jan 21 2022 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jul 23 2021 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Sun Jul 04 09:45:37 CEST 2021 Olivier Lemasle o.lemasle@gmail.com - 0.9.8-1 -- Update to upstream 0.9.8; enable tests -- Add shell completions - -* Sat Jul 03 12:57:26 CEST 2021 Olivier Lemasle o.lemasle@gmail.com - 0.9.6-1 -- Initial package +%autochangelog
commit 3a0ab8ed4bea411f03043d51cf67db938f29d978 Author: Tomas Hrcka thrcka@redhat.com Date: Tue Oct 4 09:21:39 2022 +0200
Unretirement request: https://pagure.io/releng/issue/11060
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f91d57e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/just-0.9.8.crate diff --git a/README.md b/README.md new file mode 100644 index 0000000..21569f0 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# rust-just + +The rust-just package diff --git a/dead.package b/dead.package deleted file mode 100644 index d0fde9a..0000000 --- a/dead.package +++ /dev/null @@ -1,3 +0,0 @@ -Retired: Fails to install - -See https://pagure.io/releng/issue/11052 diff --git a/rust-just.spec b/rust-just.spec new file mode 100644 index 0000000..d141806 --- /dev/null +++ b/rust-just.spec @@ -0,0 +1,116 @@ +# Generated by rust2rpm 17 +%bcond_without check + +%global crate just + +Name: rust-%{crate} +Version: 0.9.8 +Release: 5%{?dist} +Summary: A command runner + +# Upstream license specification: CC0-1.0 +License: CC0 +URL: https://crates.io/crates/just +Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +just is a handy way to save and run project-specific commands.} + +%description %{_description} + +%if ! %{__cargo_skip_build} +%package -n %{crate} +Summary: %{summary} + +%description -n %{crate} %{_description} + +%files -n %{crate} +%license LICENSE +%doc README.adoc examples +%doc GRAMMAR.md CHANGELOG.md CONTRIBUTING.md +%{_bindir}/just +%{_mandir}/man1/just.1* +%{_datadir}/bash-completion +%{_datadir}/fish/ +%{_datadir}/zsh/site-functions +%endif + +%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 crates-io-readme.md +%doc GRAMMAR.md CHANGELOG.md CONTRIBUTING.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 +install -dp %{buildroot}%{_mandir}/man1 +install -p -m 644 man/just.1 %{buildroot}%{_mandir}/man1 +install -dp %{buildroot}%{_datadir}/bash-completion/completions/ +install -p -m 644 completions/just.bash %{buildroot}%{_datadir}/bash-completion/completions/just +install -dp %{buildroot}%{_datadir}/fish/vendor_completions.d +install -p -m 644 completions/just.fish %{buildroot}%{_datadir}/fish/vendor_completions.d/just.fish +install -dp %{buildroot}%{_datadir}/zsh/site-functions +install -p -m 644 completions/just.zsh %{buildroot}%{_datadir}/zsh/site-functions/_just + +%if %{with check} +%check +%cargo_test +%endif + +%changelog +* Sat Jul 23 2022 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Feb 15 2022 Zbigniew Jędrzejewski-Szmek zbyszek@in.waw.pl - 0.9.8-4 +- Rebuild with package notes + +* Fri Jan 21 2022 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Sun Jul 04 09:45:37 CEST 2021 Olivier Lemasle o.lemasle@gmail.com - 0.9.8-1 +- Update to upstream 0.9.8; enable tests +- Add shell completions + +* Sat Jul 03 12:57:26 CEST 2021 Olivier Lemasle o.lemasle@gmail.com - 0.9.6-1 +- Initial package diff --git a/sources b/sources new file mode 100644 index 0000000..7ef680a --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (just-0.9.8.crate) = 46cb9da586f9b226d3632cb102dd3033778630b0501b65e27a8286dc0d8cd8862b4f2be0e2c43a1722c89a889519c885cd9057d3d73758cf7e68a977d9bb4505
commit 95c3469acd200dea0c504ef41b973651e6532e78 Author: Miro Hrončok miro@hroncok.cz Date: Tue Sep 27 15:30:53 2022 +0200
Retired: Fails to install
See https://pagure.io/releng/issue/11052
diff --git a/.gitignore b/.gitignore deleted file mode 100644 index f91d57e..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/just-0.9.8.crate diff --git a/README.md b/README.md deleted file mode 100644 index 21569f0..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-just - -The rust-just package diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..d0fde9a --- /dev/null +++ b/dead.package @@ -0,0 +1,3 @@ +Retired: Fails to install + +See https://pagure.io/releng/issue/11052 diff --git a/rust-just.spec b/rust-just.spec deleted file mode 100644 index d141806..0000000 --- a/rust-just.spec +++ /dev/null @@ -1,116 +0,0 @@ -# Generated by rust2rpm 17 -%bcond_without check - -%global crate just - -Name: rust-%{crate} -Version: 0.9.8 -Release: 5%{?dist} -Summary: A command runner - -# Upstream license specification: CC0-1.0 -License: CC0 -URL: https://crates.io/crates/just -Source: %{crates_source} - -ExclusiveArch: %{rust_arches} -%if %{__cargo_skip_build} -BuildArch: noarch -%endif - -BuildRequires: rust-packaging - -%global _description %{expand: -just is a handy way to save and run project-specific commands.} - -%description %{_description} - -%if ! %{__cargo_skip_build} -%package -n %{crate} -Summary: %{summary} - -%description -n %{crate} %{_description} - -%files -n %{crate} -%license LICENSE -%doc README.adoc examples -%doc GRAMMAR.md CHANGELOG.md CONTRIBUTING.md -%{_bindir}/just -%{_mandir}/man1/just.1* -%{_datadir}/bash-completion -%{_datadir}/fish/ -%{_datadir}/zsh/site-functions -%endif - -%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 crates-io-readme.md -%doc GRAMMAR.md CHANGELOG.md CONTRIBUTING.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 -install -dp %{buildroot}%{_mandir}/man1 -install -p -m 644 man/just.1 %{buildroot}%{_mandir}/man1 -install -dp %{buildroot}%{_datadir}/bash-completion/completions/ -install -p -m 644 completions/just.bash %{buildroot}%{_datadir}/bash-completion/completions/just -install -dp %{buildroot}%{_datadir}/fish/vendor_completions.d -install -p -m 644 completions/just.fish %{buildroot}%{_datadir}/fish/vendor_completions.d/just.fish -install -dp %{buildroot}%{_datadir}/zsh/site-functions -install -p -m 644 completions/just.zsh %{buildroot}%{_datadir}/zsh/site-functions/_just - -%if %{with check} -%check -%cargo_test -%endif - -%changelog -* Sat Jul 23 2022 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Tue Feb 15 2022 Zbigniew Jędrzejewski-Szmek zbyszek@in.waw.pl - 0.9.8-4 -- Rebuild with package notes - -* Fri Jan 21 2022 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jul 23 2021 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Sun Jul 04 09:45:37 CEST 2021 Olivier Lemasle o.lemasle@gmail.com - 0.9.8-1 -- Update to upstream 0.9.8; enable tests -- Add shell completions - -* Sat Jul 03 12:57:26 CEST 2021 Olivier Lemasle o.lemasle@gmail.com - 0.9.6-1 -- Initial package diff --git a/sources b/sources deleted file mode 100644 index 7ef680a..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (just-0.9.8.crate) = 46cb9da586f9b226d3632cb102dd3033778630b0501b65e27a8286dc0d8cd8862b4f2be0e2c43a1722c89a889519c885cd9057d3d73758cf7e68a977d9bb4505
commit d88f7a5002c8bc59b7d64225d18048075b9cf017 Author: Fedora Release Engineering releng@fedoraproject.org Date: Sat Jul 23 04:48:18 2022 +0000
Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/rust-just.spec b/rust-just.spec index 6696c13..d141806 100644 --- a/rust-just.spec +++ b/rust-just.spec @@ -5,7 +5,7 @@
Name: rust-%{crate} Version: 0.9.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A command runner
# Upstream license specification: CC0-1.0 @@ -96,6 +96,9 @@ install -p -m 644 completions/just.zsh %{buildroot}%{_datadir}/zsh/site-function %endif
%changelog +* Sat Jul 23 2022 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Tue Feb 15 2022 Zbigniew Jędrzejewski-Szmek zbyszek@in.waw.pl - 0.9.8-4 - Rebuild with package notes
commit f1e330353769a0a46589b4bbaab558cbcb218c8d Author: Zbigniew Jędrzejewski-Szmek zbyszek@in.waw.pl Date: Tue Feb 15 16:31:38 2022 +0100
Rebuild with package notes
diff --git a/rust-just.spec b/rust-just.spec index 6563ff3..6696c13 100644 --- a/rust-just.spec +++ b/rust-just.spec @@ -5,7 +5,7 @@
Name: rust-%{crate} Version: 0.9.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A command runner
# Upstream license specification: CC0-1.0 @@ -96,6 +96,9 @@ install -p -m 644 completions/just.zsh %{buildroot}%{_datadir}/zsh/site-function %endif
%changelog +* Tue Feb 15 2022 Zbigniew Jędrzejewski-Szmek zbyszek@in.waw.pl - 0.9.8-4 +- Rebuild with package notes + * Fri Jan 21 2022 Fedora Release Engineering releng@fedoraproject.org - 0.9.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
arch-excludes@lists.fedoraproject.org