The package rpms/rust-tabwriter.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-tabwriter.git/commit/?id=fc5dc2... https://src.fedoraproject.org/cgit/rpms/rust-tabwriter.git/commit/?id=2d57a4... https://src.fedoraproject.org/cgit/rpms/rust-tabwriter.git/commit/?id=2d83ef... https://src.fedoraproject.org/cgit/rpms/rust-tabwriter.git/commit/?id=8e97de....
Change: -ExclusiveArch: %{rust_arches} +ExclusiveArch: %{rust_arches} -ExclusiveArch: %{rust_arches} +ExclusiveArch: %{rust_arches}
Thanks.
Full change: ============
commit fc5dc2d7a97c41d9dc42514a56e437e5d0cc19b9 Author: Benjamin A. Beasley code@musicinmybrain.net Date: Fri Aug 23 01:39:24 2024 -0400
Update to 1.4.0 (initial package after unretirement; close RHBZ#2307083)
diff --git a/.gitignore b/.gitignore index 7e9bc3d..8084224 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /tabwriter-1.0.4.crate /tabwriter-1.1.0.crate /tabwriter-1.2.1.crate +/tabwriter-1.4.0.crate diff --git a/rust-tabwriter.rpmlintrc b/rust-tabwriter.rpmlintrc new file mode 100644 index 0000000..866b508 --- /dev/null +++ b/rust-tabwriter.rpmlintrc @@ -0,0 +1,4 @@ +# Feature metapackages are not supposed to have documentation! +addFilter(r"+[-_\w]+-devel.noarch: W: no-documentation") +# Not a real spelling error +addFilter(r"spelling-error ('[Tt]abstops?',") diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index 9851453..de2a5b6 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -1,25 +1,20 @@ -# Generated by rust2rpm 13 -%bcond_with check +# Generated by rust2rpm 26 +%bcond_without check %global debug_package %{nil}
%global crate tabwriter
-Name: rust-%{crate} -Version: 1.2.1 +Name: rust-tabwriter +Version: 1.4.0 Release: %autorelease Summary: Elastic tabstops
# Upstream license specification: Unlicense/MIT -License: Unlicense or MIT +License: Unlicense OR MIT URL: https://crates.io/crates/tabwriter Source: %{crates_source}
-ExclusiveArch: %{rust_arches} -%if %{__cargo_skip_build} -BuildArch: noarch -%endif - -BuildRequires: rust-packaging +BuildRequires: cargo-rpm-macros >= 24
%global _description %{expand: Elastic tabstops.} @@ -32,14 +27,15 @@ 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 COPYING LICENSE-MIT UNLICENSE -%doc README.md -%{cargo_registry}/%{crate}-%{version_no_tilde}/ -%exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim} +%license %{crate_instdir}/COPYING +%license %{crate_instdir}/LICENSE-MIT +%license %{crate_instdir}/UNLICENSE +%doc %{crate_instdir}/README.md +%{crate_instdir}/
%package -n %{name}+default-devel Summary: %{summary} @@ -47,11 +43,11 @@ BuildArch: noarch
%description -n %{name}+default-devel %{_description}
-This package contains library source intended for building other packages -which use "default" feature of "%{crate}" crate. +This package contains library source intended for building other packages which +use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel -%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml +%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+ansi_formatting-devel Summary: %{summary} @@ -59,38 +55,14 @@ BuildArch: noarch
%description -n %{name}+ansi_formatting-devel %{_description}
-This package contains library source intended for building other packages -which use "ansi_formatting" feature of "%{crate}" crate. +This package contains library source intended for building other packages which +use the "ansi_formatting" feature of the "%{crate}" crate.
%files -n %{name}+ansi_formatting-devel -%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml - -%package -n %{name}+lazy_static-devel -Summary: %{summary} -BuildArch: noarch - -%description -n %{name}+lazy_static-devel %{_description} - -This package contains library source intended for building other packages -which use "lazy_static" feature of "%{crate}" crate. - -%files -n %{name}+lazy_static-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 +%ghost %{crate_instdir}/Cargo.toml
%prep -%autosetup -n %{crate}-%{version_no_tilde} -p1 +%autosetup -n %{crate}-%{version} -p1 %cargo_prep
%generate_buildrequires diff --git a/sources b/sources index b6426e8..e3b855e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (tabwriter-1.2.1.crate) = f5b909440aff00e09e2ddddc7b34556a38ad93b24ed249aa2e9405a9d02ff4d00324b353099ef17394ffa6c20b2c43131ecedf52079ab9dc0559db4d13ac68a5 +SHA512 (tabwriter-1.4.0.crate) = 066846124e3beee816f76ed3a59fb224593537ce5807aa472fbcd0cb98f638dba6801d171b6d1026e56b6eaae6f2e873d64c190c97bbd8d6ffeffc82f3b4d52f
commit d19c65eb12a27b9a481ac5fabc3144c528b114d5 Author: Benjamin A. Beasley code@musicinmybrain.net Date: Fri Aug 23 01:38:23 2024 -0400
Convert to %autorelease and %autochangelog
[skip changelog]
diff --git a/changelog b/changelog new file mode 100644 index 0000000..5a2a4c3 --- /dev/null +++ b/changelog @@ -0,0 +1,51 @@ +* Sat Jul 23 2022 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Fri Jan 21 2022 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Wed Jan 27 2021 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Aug 01 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-4 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Wed Jul 29 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Thu Jan 30 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Wed Jan 15 2020 Josh Stone jistone@redhat.com - 1.2.1-1 +- Update to 1.2.1 + +* Fri Jul 26 2019 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Mar 09 2019 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.1.0-4 +- Adapt to new packaging + +* Sat Feb 02 2019 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 14 2018 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Thu Jun 28 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.1.0-1 +- Update to 1.1.0 + +* Thu Jun 14 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.0.4-2 +- Bump regex to 1 + +* Thu Mar 08 2018 Josh Stone jistone@redhat.com - 1.0.4-1 +- Update to 1.0.4 + +* Fri Feb 09 2018 Fedora Release Engineering releng@fedoraproject.org - 1.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sat Jan 27 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.0.3-1 +- Initial package diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index 14dd575..9851453 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,7 +6,7 @@
Name: rust-%{crate} Version: 1.2.1 -Release: 8%{?dist} +Release: %autorelease Summary: Elastic tabstops
# Upstream license specification: Unlicense/MIT @@ -108,54 +108,4 @@ which use "regex" feature of "%{crate}" crate. %endif
%changelog -* Sat Jul 23 2022 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Fri Jan 21 2022 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jul 23 2021 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Wed Jan 27 2021 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Sat Aug 01 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-4 -- Second attempt - Rebuilt for - https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Wed Jul 29 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Thu Jan 30 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Wed Jan 15 2020 Josh Stone jistone@redhat.com - 1.2.1-1 -- Update to 1.2.1 - -* Fri Jul 26 2019 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sat Mar 09 2019 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.1.0-4 -- Adapt to new packaging - -* Sat Feb 02 2019 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sat Jul 14 2018 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Thu Jun 28 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.1.0-1 -- Update to 1.1.0 - -* Thu Jun 14 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.0.4-2 -- Bump regex to 1 - -* Thu Mar 08 2018 Josh Stone jistone@redhat.com - 1.0.4-1 -- Update to 1.0.4 - -* Fri Feb 09 2018 Fedora Release Engineering releng@fedoraproject.org - 1.0.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Sat Jan 27 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.0.3-1 -- Initial package +%autochangelog
commit 2d57a46cc98ce4c15db7b6cb9e92639002339dbb Author: Fedora Release Engineering releng@fedoraproject.org Date: Fri Aug 23 05:26:23 2024 +0000
Unretirement Releng Request: https://pagure.io/releng/issue/12281
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7e9bc3d --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/tabwriter-1.0.3.crate +/tabwriter-1.0.4.crate +/tabwriter-1.1.0.crate +/tabwriter-1.2.1.crate diff --git a/README.md b/README.md new file mode 100644 index 0000000..591730a --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# rust-tabwriter + +The rust-tabwriter package \ No newline at end of file diff --git a/dead.package b/dead.package deleted file mode 100644 index 5204a84..0000000 --- a/dead.package +++ /dev/null @@ -1 +0,0 @@ -Orphaned for 6+ weeks diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec new file mode 100644 index 0000000..14dd575 --- /dev/null +++ b/rust-tabwriter.spec @@ -0,0 +1,161 @@ +# Generated by rust2rpm 13 +%bcond_with check +%global debug_package %{nil} + +%global crate tabwriter + +Name: rust-%{crate} +Version: 1.2.1 +Release: 8%{?dist} +Summary: Elastic tabstops + +# Upstream license specification: Unlicense/MIT +License: Unlicense or MIT +URL: https://crates.io/crates/tabwriter +Source: %{crates_source} + +ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif + +BuildRequires: rust-packaging + +%global _description %{expand: +Elastic tabstops.} + +%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 COPYING LICENSE-MIT UNLICENSE +%doc README.md +%{cargo_registry}/%{crate}-%{version_no_tilde}/ +%exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim} + +%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_formatting-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+ansi_formatting-devel %{_description} + +This package contains library source intended for building other packages +which use "ansi_formatting" feature of "%{crate}" crate. + +%files -n %{name}+ansi_formatting-devel +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml + +%package -n %{name}+lazy_static-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+lazy_static-devel %{_description} + +This package contains library source intended for building other packages +which use "lazy_static" feature of "%{crate}" crate. + +%files -n %{name}+lazy_static-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 + +%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 +* Sat Jul 23 2022 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Fri Jan 21 2022 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Wed Jan 27 2021 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Aug 01 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-4 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Wed Jul 29 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Thu Jan 30 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Wed Jan 15 2020 Josh Stone jistone@redhat.com - 1.2.1-1 +- Update to 1.2.1 + +* Fri Jul 26 2019 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sat Mar 09 2019 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.1.0-4 +- Adapt to new packaging + +* Sat Feb 02 2019 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 14 2018 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Thu Jun 28 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.1.0-1 +- Update to 1.1.0 + +* Thu Jun 14 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.0.4-2 +- Bump regex to 1 + +* Thu Mar 08 2018 Josh Stone jistone@redhat.com - 1.0.4-1 +- Update to 1.0.4 + +* Fri Feb 09 2018 Fedora Release Engineering releng@fedoraproject.org - 1.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sat Jan 27 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.0.3-1 +- Initial package diff --git a/sources b/sources new file mode 100644 index 0000000..b6426e8 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (tabwriter-1.2.1.crate) = f5b909440aff00e09e2ddddc7b34556a38ad93b24ed249aa2e9405a9d02ff4d00324b353099ef17394ffa6c20b2c43131ecedf52079ab9dc0559db4d13ac68a5
commit 2d83efb886c02d18d4dd3a67c3acd024627b829d Author: Miro Hrončok miro@hroncok.cz Date: Fri Jan 13 23:47:07 2023 +0100
Orphaned for 6+ weeks
diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 7e9bc3d..0000000 --- a/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -/tabwriter-1.0.3.crate -/tabwriter-1.0.4.crate -/tabwriter-1.1.0.crate -/tabwriter-1.2.1.crate diff --git a/README.md b/README.md deleted file mode 100644 index 591730a..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-tabwriter - -The rust-tabwriter package \ No newline at end of file diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5204a84 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Orphaned for 6+ weeks diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec deleted file mode 100644 index 14dd575..0000000 --- a/rust-tabwriter.spec +++ /dev/null @@ -1,161 +0,0 @@ -# Generated by rust2rpm 13 -%bcond_with check -%global debug_package %{nil} - -%global crate tabwriter - -Name: rust-%{crate} -Version: 1.2.1 -Release: 8%{?dist} -Summary: Elastic tabstops - -# Upstream license specification: Unlicense/MIT -License: Unlicense or MIT -URL: https://crates.io/crates/tabwriter -Source: %{crates_source} - -ExclusiveArch: %{rust_arches} -%if %{__cargo_skip_build} -BuildArch: noarch -%endif - -BuildRequires: rust-packaging - -%global _description %{expand: -Elastic tabstops.} - -%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 COPYING LICENSE-MIT UNLICENSE -%doc README.md -%{cargo_registry}/%{crate}-%{version_no_tilde}/ -%exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim} - -%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_formatting-devel -Summary: %{summary} -BuildArch: noarch - -%description -n %{name}+ansi_formatting-devel %{_description} - -This package contains library source intended for building other packages -which use "ansi_formatting" feature of "%{crate}" crate. - -%files -n %{name}+ansi_formatting-devel -%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml - -%package -n %{name}+lazy_static-devel -Summary: %{summary} -BuildArch: noarch - -%description -n %{name}+lazy_static-devel %{_description} - -This package contains library source intended for building other packages -which use "lazy_static" feature of "%{crate}" crate. - -%files -n %{name}+lazy_static-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 - -%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 -* Sat Jul 23 2022 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Fri Jan 21 2022 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jul 23 2021 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Wed Jan 27 2021 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Sat Aug 01 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-4 -- Second attempt - Rebuilt for - https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Wed Jul 29 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Thu Jan 30 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Wed Jan 15 2020 Josh Stone jistone@redhat.com - 1.2.1-1 -- Update to 1.2.1 - -* Fri Jul 26 2019 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sat Mar 09 2019 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.1.0-4 -- Adapt to new packaging - -* Sat Feb 02 2019 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sat Jul 14 2018 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Thu Jun 28 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.1.0-1 -- Update to 1.1.0 - -* Thu Jun 14 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.0.4-2 -- Bump regex to 1 - -* Thu Mar 08 2018 Josh Stone jistone@redhat.com - 1.0.4-1 -- Update to 1.0.4 - -* Fri Feb 09 2018 Fedora Release Engineering releng@fedoraproject.org - 1.0.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Sat Jan 27 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.0.3-1 -- Initial package diff --git a/sources b/sources deleted file mode 100644 index b6426e8..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (tabwriter-1.2.1.crate) = f5b909440aff00e09e2ddddc7b34556a38ad93b24ed249aa2e9405a9d02ff4d00324b353099ef17394ffa6c20b2c43131ecedf52079ab9dc0559db4d13ac68a5
commit 3398cd452cb30c5743c7240589269a2cdc319f13 Author: Fedora Release Engineering releng@fedoraproject.org Date: Sat Jul 23 06:57:22 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-tabwriter.spec b/rust-tabwriter.spec index 3af8956..14dd575 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,7 +6,7 @@
Name: rust-%{crate} Version: 1.2.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Elastic tabstops
# Upstream license specification: Unlicense/MIT @@ -108,6 +108,9 @@ which use "regex" feature of "%{crate}" crate. %endif
%changelog +* Sat Jul 23 2022 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Fri Jan 21 2022 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
commit 0bbd396800e91d4658fe6e82afedda72fe23332e Author: Fedora Release Engineering releng@fedoraproject.org Date: Fri Jan 21 23:26:37 2022 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index ccc77f2..3af8956 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,7 +6,7 @@
Name: rust-%{crate} Version: 1.2.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Elastic tabstops
# Upstream license specification: Unlicense/MIT @@ -108,6 +108,9 @@ which use "regex" feature of "%{crate}" crate. %endif
%changelog +* Fri Jan 21 2022 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
commit 4538e7ac43eb01517636fa7620d5964fc3fb8823 Author: Fedora Release Engineering releng@fedoraproject.org Date: Fri Jul 23 16:13:12 2021 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index 0c0731e..ccc77f2 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,7 +6,7 @@
Name: rust-%{crate} Version: 1.2.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Elastic tabstops
# Upstream license specification: Unlicense/MIT @@ -108,6 +108,9 @@ which use "regex" feature of "%{crate}" crate. %endif
%changelog +* Fri Jul 23 2021 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
commit 33ac5e58416a206063393c4236db4a5dfacaf182 Author: Fedora Release Engineering releng@fedoraproject.org Date: Wed Jan 27 19:18:16 2021 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index aec1dd4..0c0731e 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,7 +6,7 @@
Name: rust-%{crate} Version: 1.2.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Elastic tabstops
# Upstream license specification: Unlicense/MIT @@ -108,6 +108,9 @@ which use "regex" feature of "%{crate}" crate. %endif
%changelog +* Wed Jan 27 2021 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sat Aug 01 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-4 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
commit 9c46ccb9edca242632fa149a36759a984462ac05 Author: Fedora Release Engineering releng@fedoraproject.org Date: Sat Aug 1 08:43:00 2020 +0000
- Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index 649c4e2..aec1dd4 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,7 +6,7 @@
Name: rust-%{crate} Version: 1.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Elastic tabstops
# Upstream license specification: Unlicense/MIT @@ -108,6 +108,10 @@ which use "regex" feature of "%{crate}" crate. %endif
%changelog +* Sat Aug 01 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-4 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
commit d2cafb4580c5ceb2bc883c32b9d8eaddeed9a802 Author: Fedora Release Engineering releng@fedoraproject.org Date: Wed Jul 29 09:38:32 2020 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index efbc3a5..649c4e2 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,7 +6,7 @@
Name: rust-%{crate} Version: 1.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Elastic tabstops
# Upstream license specification: Unlicense/MIT @@ -108,6 +108,9 @@ which use "regex" feature of "%{crate}" crate. %endif
%changelog +* Wed Jul 29 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Thu Jan 30 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
commit 1ace34aaa56f4051d5c11f9708e959062c05c073 Author: Igor Raits ignatenkobrain@fedoraproject.org Date: Wed Feb 12 12:25:25 2020 +0100
Drop tests
They do not work for quite long time.
Signed-off-by: Igor Raits ignatenkobrain@fedoraproject.org
diff --git a/tests/.fmf/version b/tests/.fmf/version deleted file mode 100644 index d00491f..0000000 --- a/tests/.fmf/version +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/tests/provision.fmf b/tests/provision.fmf deleted file mode 100644 index 503a97c..0000000 --- a/tests/provision.fmf +++ /dev/null @@ -1,5 +0,0 @@ ---- -standard-inventory-qcow2: - qemu: - # `cargo test` usually eats more than 1G. - m: 4G diff --git a/tests/tests.yml b/tests/tests.yml deleted file mode 100644 index 1dfa44b..0000000 --- a/tests/tests.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -- hosts: localhost - roles: - - role: standard-test-basic - tags: - - classic - repositories: - - repo: "https://src.fedoraproject.org/tests/rust.git" - dest: rust - tests: - - rust/cargo-test - environment: - pkg: rust-tabwriter
commit 6ab1c9cbd12b0b1a7aed75b3b7f27f2acef42322 Author: Fedora Release Engineering releng@fedoraproject.org Date: Thu Jan 30 22:10:26 2020 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index 0ee7ce4..efbc3a5 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,7 +6,7 @@
Name: rust-%{crate} Version: 1.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Elastic tabstops
# Upstream license specification: Unlicense/MIT @@ -108,6 +108,9 @@ which use "regex" feature of "%{crate}" crate. %endif
%changelog +* Thu Jan 30 2020 Fedora Release Engineering releng@fedoraproject.org - 1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Wed Jan 15 2020 Josh Stone jistone@redhat.com - 1.2.1-1 - Update to 1.2.1
commit 0cabdfad769a4da96de108c127fc8af0c13a9de1 Author: Josh Stone jistone@redhat.com Date: Tue Jan 14 22:38:10 2020 -0800
Update to 1.2.1
diff --git a/.gitignore b/.gitignore index 6e0c97f..7e9bc3d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /tabwriter-1.0.3.crate /tabwriter-1.0.4.crate /tabwriter-1.1.0.crate +/tabwriter-1.2.1.crate diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index f6e0227..0ee7ce4 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -1,12 +1,12 @@ -# Generated by rust2rpm +# Generated by rust2rpm 13 %bcond_with check %global debug_package %{nil}
%global crate tabwriter
Name: rust-%{crate} -Version: 1.1.0 -Release: 5%{?dist} +Version: 1.2.1 +Release: 1%{?dist} Summary: Elastic tabstops
# Upstream license specification: Unlicense/MIT @@ -15,14 +15,14 @@ URL: https://crates.io/crates/tabwriter Source: %{crates_source}
ExclusiveArch: %{rust_arches} +%if %{__cargo_skip_build} +BuildArch: noarch +%endif
BuildRequires: rust-packaging -BuildRequires: (crate(lazy_static/default) >= 1.0.0 with crate(lazy_static/default) < 2.0.0) -BuildRequires: (crate(regex/default) >= 1.0.0 with crate(regex/default) < 2.0.0) -BuildRequires: (crate(unicode-width/default) >= 0.1.0 with crate(unicode-width/default) < 0.2.0)
-%global _description \ -Elastic tabstops. +%global _description %{expand: +Elastic tabstops.}
%description %{_description}
@@ -38,7 +38,7 @@ which use "%{crate}" crate. %files devel %license COPYING LICENSE-MIT UNLICENSE %doc README.md -%{cargo_registry}/%{crate}-%{version}/ +%{cargo_registry}/%{crate}-%{version_no_tilde}/ %exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim}
%package -n %{name}+default-devel @@ -51,7 +51,7 @@ 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}/Cargo.toml +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+ansi_formatting-devel Summary: %{summary} @@ -63,7 +63,7 @@ This package contains library source intended for building other packages which use "ansi_formatting" feature of "%{crate}" crate.
%files -n %{name}+ansi_formatting-devel -%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+lazy_static-devel Summary: %{summary} @@ -75,7 +75,7 @@ This package contains library source intended for building other packages which use "lazy_static" feature of "%{crate}" crate.
%files -n %{name}+lazy_static-devel -%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml +%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+regex-devel Summary: %{summary} @@ -87,12 +87,15 @@ 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}/Cargo.toml +%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
@@ -105,6 +108,9 @@ which use "regex" feature of "%{crate}" crate. %endif
%changelog +* Wed Jan 15 2020 Josh Stone jistone@redhat.com - 1.2.1-1 +- Update to 1.2.1 + * Fri Jul 26 2019 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
diff --git a/sources b/sources index cfb6174..b6426e8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (tabwriter-1.1.0.crate) = ed80e5e0d31f5941c63bf8f311b71919bf9fe84d872dcd31b37a1eac57a4efe4025b56784fd4083b952c7cae47f08562d10ed679cff0edb8b8dc57ff87ac7ee5 +SHA512 (tabwriter-1.2.1.crate) = f5b909440aff00e09e2ddddc7b34556a38ad93b24ed249aa2e9405a9d02ff4d00324b353099ef17394ffa6c20b2c43131ecedf52079ab9dc0559db4d13ac68a5
commit da6793b0c8f0bcdb192a8317091b23850547e233 Author: Fedora Release Engineering releng@fedoraproject.org Date: Fri Jul 26 22:11:02 2019 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index 9df0198..f6e0227 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,7 +6,7 @@
Name: rust-%{crate} Version: 1.1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Elastic tabstops
# Upstream license specification: Unlicense/MIT @@ -105,6 +105,9 @@ which use "regex" feature of "%{crate}" crate. %endif
%changelog +* Fri Jul 26 2019 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Mar 09 2019 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.1.0-4 - Adapt to new packaging
commit 0f4cd15e3cdf1a1870fd615275ebc2b4795857f7 Author: Igor Gnatenko ignatenkobrain@fedoraproject.org Date: Sat Mar 9 14:39:14 2019 +0100
Adapt to new packaging
Signed-off-by: Igor Gnatenko ignatenkobrain@fedoraproject.org
diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index b331d93..9df0198 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -1,41 +1,96 @@ # Generated by rust2rpm -%bcond_without check +%bcond_with check %global debug_package %{nil}
%global crate tabwriter
Name: rust-%{crate} Version: 1.1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Elastic tabstops
+# Upstream license specification: Unlicense/MIT License: Unlicense or MIT URL: https://crates.io/crates/tabwriter -Source0: https://crates.io/api/v1/crates/%%7Bcrate%7D/%%7Bversion%7D/download#/%%7Bcr... +Source: %{crates_source}
ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging -# [dependencies] -BuildRequires: (crate(lazy_static) >= 1.0.0 with crate(lazy_static) < 2.0.0) -BuildRequires: (crate(regex) >= 1.0.0 with crate(regex) < 2.0.0) -BuildRequires: (crate(unicode-width) >= 0.1.0 with crate(unicode-width) < 0.2.0) +BuildRequires: (crate(lazy_static/default) >= 1.0.0 with crate(lazy_static/default) < 2.0.0) +BuildRequires: (crate(regex/default) >= 1.0.0 with crate(regex/default) < 2.0.0) +BuildRequires: (crate(unicode-width/default) >= 0.1.0 with crate(unicode-width/default) < 0.2.0)
-%description -%{summary}. +%global _description \ +Elastic tabstops. + +%description %{_description}
%package devel Summary: %{summary} BuildArch: noarch
-%description devel -Elastic tabstops. +%description devel %{_description} + +This package contains library source intended for building other packages +which use "%{crate}" crate. + +%files devel +%license COPYING LICENSE-MIT UNLICENSE +%doc README.md +%{cargo_registry}/%{crate}-%{version}/ +%exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim} + +%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}/Cargo.toml + +%package -n %{name}+ansi_formatting-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+ansi_formatting-devel %{_description}
This package contains library source intended for building other packages -which use %{crate} from crates.io. +which use "ansi_formatting" feature of "%{crate}" crate. + +%files -n %{name}+ansi_formatting-devel +%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml + +%package -n %{name}+lazy_static-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+lazy_static-devel %{_description} + +This package contains library source intended for building other packages +which use "lazy_static" feature of "%{crate}" crate. + +%files -n %{name}+lazy_static-devel +%ghost %{cargo_registry}/%{crate}-%{version}/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}/Cargo.toml
%prep -%autosetup -n %{crate}-%{version} -p1 +%autosetup -n %{crate}-%{version_no_tilde} -p1 %cargo_prep
%build @@ -49,13 +104,10 @@ which use %{crate} from crates.io. %cargo_test %endif
-%files devel -%license COPYING LICENSE-MIT UNLICENSE -%doc README.md -%{cargo_registry}/%{crate}-%{version}/ -%exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim} - %changelog +* Sat Mar 09 2019 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.1.0-4 +- Adapt to new packaging + * Sat Feb 02 2019 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
diff --git a/tests/.fmf/version b/tests/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/tests/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/tests/provision.fmf b/tests/provision.fmf new file mode 100644 index 0000000..503a97c --- /dev/null +++ b/tests/provision.fmf @@ -0,0 +1,5 @@ +--- +standard-inventory-qcow2: + qemu: + # `cargo test` usually eats more than 1G. + m: 4G diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..1dfa44b --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,13 @@ +--- +- hosts: localhost + roles: + - role: standard-test-basic + tags: + - classic + repositories: + - repo: "https://src.fedoraproject.org/tests/rust.git" + dest: rust + tests: + - rust/cargo-test + environment: + pkg: rust-tabwriter
commit 11070fc8a5d096adcb484b223c1eb48f83b32272 Author: Fedora Release Engineering releng@fedoraproject.org Date: Sat Feb 2 14:25:53 2019 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index f86ce94..b331d93 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,7 +6,7 @@
Name: rust-%{crate} Version: 1.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Elastic tabstops
License: Unlicense or MIT @@ -56,6 +56,9 @@ which use %{crate} from crates.io. %exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim}
%changelog +* Sat Feb 02 2019 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
commit e1db77c6d670ad81996a56af8cd5ab0dfb8e666c Author: Fedora Release Engineering releng@fedoraproject.org Date: Sat Jul 14 05:30:39 2018 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index 37e3a33..f86ce94 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,7 +6,7 @@
Name: rust-%{crate} Version: 1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Elastic tabstops
License: Unlicense or MIT @@ -56,6 +56,9 @@ which use %{crate} from crates.io. %exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim}
%changelog +* Sat Jul 14 2018 Fedora Release Engineering releng@fedoraproject.org - 1.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Thu Jun 28 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.1.0-1 - Update to 1.1.0
commit b1018045b62cdea4e640661a43817e40614a4c5d Author: Igor Gnatenko ignatenkobrain@fedoraproject.org Date: Thu Jun 28 10:57:52 2018 +0200
Update to 1.1.0
Signed-off-by: Igor Gnatenko ignatenkobrain@fedoraproject.org
diff --git a/.gitignore b/.gitignore index 529405f..6e0c97f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /tabwriter-1.0.3.crate /tabwriter-1.0.4.crate +/tabwriter-1.1.0.crate diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index cb5d538..37e3a33 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -5,16 +5,13 @@ %global crate tabwriter
Name: rust-%{crate} -Version: 1.0.4 -Release: 2%{?dist} +Version: 1.1.0 +Release: 1%{?dist} Summary: Elastic tabstops
License: Unlicense or MIT URL: https://crates.io/crates/tabwriter Source0: https://crates.io/api/v1/crates/%%7Bcrate%7D/%%7Bversion%7D/download#/%%7Bcr... -# Initial patched metadata -# * Bump regex to 1, https://github.com/BurntSushi/tabwriter/pull/18 -Patch0: tabwriter-1.0.4-fix-metadata.diff
ExclusiveArch: %{rust_arches}
@@ -59,6 +56,9 @@ which use %{crate} from crates.io. %exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim}
%changelog +* Thu Jun 28 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.1.0-1 +- Update to 1.1.0 + * Thu Jun 14 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.0.4-2 - Bump regex to 1
diff --git a/sources b/sources index f4f186c..cfb6174 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (tabwriter-1.0.4.crate) = 6bfac7e9b5db8fe5447248328bcc6dbccfb80f5893e2d307349cacaecfb5a892702afe02a66365d94d1fdf092c5828009ddba761ba775afefff80fe45ba0e543 +SHA512 (tabwriter-1.1.0.crate) = ed80e5e0d31f5941c63bf8f311b71919bf9fe84d872dcd31b37a1eac57a4efe4025b56784fd4083b952c7cae47f08562d10ed679cff0edb8b8dc57ff87ac7ee5 diff --git a/tabwriter-1.0.4-fix-metadata.diff b/tabwriter-1.0.4-fix-metadata.diff deleted file mode 100644 index 014c4d4..0000000 --- a/tabwriter-1.0.4-fix-metadata.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- tabwriter-1.0.4/Cargo.toml 1970-01-01T01:00:00+01:00 -+++ tabwriter-1.0.4/Cargo.toml 2018-06-14T08:15:47.566566+02:00 -@@ -26,7 +26,7 @@ - optional = true - - [dependencies.regex] --version = "^0.2.1" -+version = "1" - optional = true - - [dependencies.unicode-width]
commit 5353af7fd8c9bf742521c012818079792f7442c2 Author: Igor Gnatenko ignatenkobrain@fedoraproject.org Date: Thu Jun 14 08:15:17 2018 +0200
Bump regex to 1
Signed-off-by: Igor Gnatenko ignatenkobrain@fedoraproject.org
diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index 1ae849f..cb5d538 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,19 +6,22 @@
Name: rust-%{crate} Version: 1.0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Elastic tabstops
License: Unlicense or MIT URL: https://crates.io/crates/tabwriter Source0: https://crates.io/api/v1/crates/%%7Bcrate%7D/%%7Bversion%7D/download#/%%7Bcr... +# Initial patched metadata +# * Bump regex to 1, https://github.com/BurntSushi/tabwriter/pull/18 +Patch0: tabwriter-1.0.4-fix-metadata.diff
ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging # [dependencies] BuildRequires: (crate(lazy_static) >= 1.0.0 with crate(lazy_static) < 2.0.0) -BuildRequires: (crate(regex) >= 0.2.1 with crate(regex) < 0.3.0) +BuildRequires: (crate(regex) >= 1.0.0 with crate(regex) < 2.0.0) BuildRequires: (crate(unicode-width) >= 0.1.0 with crate(unicode-width) < 0.2.0)
%description @@ -56,6 +59,9 @@ which use %{crate} from crates.io. %exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim}
%changelog +* Thu Jun 14 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.0.4-2 +- Bump regex to 1 + * Thu Mar 08 2018 Josh Stone jistone@redhat.com - 1.0.4-1 - Update to 1.0.4
diff --git a/tabwriter-1.0.4-fix-metadata.diff b/tabwriter-1.0.4-fix-metadata.diff new file mode 100644 index 0000000..014c4d4 --- /dev/null +++ b/tabwriter-1.0.4-fix-metadata.diff @@ -0,0 +1,11 @@ +--- tabwriter-1.0.4/Cargo.toml 1970-01-01T01:00:00+01:00 ++++ tabwriter-1.0.4/Cargo.toml 2018-06-14T08:15:47.566566+02:00 +@@ -26,7 +26,7 @@ + optional = true + + [dependencies.regex] +-version = "^0.2.1" ++version = "1" + optional = true + + [dependencies.unicode-width]
commit cda5ca981690612e2f9333788d015b157c681286 Author: Josh Stone jistone@redhat.com Date: Wed Mar 7 17:20:14 2018 -0800
Update to 1.0.4
diff --git a/.gitignore b/.gitignore index 60d5f29..529405f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /tabwriter-1.0.3.crate +/tabwriter-1.0.4.crate diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index cd998ac..1ae849f 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -5,17 +5,13 @@ %global crate tabwriter
Name: rust-%{crate} -Version: 1.0.3 -Release: 2%{?dist} +Version: 1.0.4 +Release: 1%{?dist} Summary: Elastic tabstops
License: Unlicense or MIT URL: https://crates.io/crates/tabwriter Source0: https://crates.io/api/v1/crates/%%7Bcrate%7D/%%7Bversion%7D/download#/%%7Bcr... -# Initial patched metadata -# * Bump lazy_static to 1, -# * Bump ansi_term to 0.10, -Patch0: tabwriter-1.0.3-fix-metadata.diff
ExclusiveArch: %{rust_arches}
@@ -24,10 +20,6 @@ BuildRequires: rust-packaging BuildRequires: (crate(lazy_static) >= 1.0.0 with crate(lazy_static) < 2.0.0) BuildRequires: (crate(regex) >= 0.2.1 with crate(regex) < 0.3.0) BuildRequires: (crate(unicode-width) >= 0.1.0 with crate(unicode-width) < 0.2.0) -%if %{with check} -# [dev-dependencies] -BuildRequires: (crate(ansi_term) >= 0.10.0 with crate(ansi_term) < 0.11.0) -%endif
%description %{summary}. @@ -64,6 +56,9 @@ which use %{crate} from crates.io. %exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim}
%changelog +* Thu Mar 08 2018 Josh Stone jistone@redhat.com - 1.0.4-1 +- Update to 1.0.4 + * Fri Feb 09 2018 Fedora Release Engineering releng@fedoraproject.org - 1.0.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
diff --git a/sources b/sources index 8a2311c..f4f186c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (tabwriter-1.0.3.crate) = 23ed8b9e4273177c6225dc76a20723b4ca114244262b4588b3c30d6901f8287e2047d1e17668c4a16db1b71ac4c856232e8d72898ca299fa3b521a19837bfe1b +SHA512 (tabwriter-1.0.4.crate) = 6bfac7e9b5db8fe5447248328bcc6dbccfb80f5893e2d307349cacaecfb5a892702afe02a66365d94d1fdf092c5828009ddba761ba775afefff80fe45ba0e543 diff --git a/tabwriter-1.0.3-fix-metadata.diff b/tabwriter-1.0.3-fix-metadata.diff deleted file mode 100644 index 1472734..0000000 --- a/tabwriter-1.0.3-fix-metadata.diff +++ /dev/null @@ -1,15 +0,0 @@ ---- tabwriter-1.0.3/Cargo.toml 2017-01-03T23:46:06+01:00 -+++ tabwriter-1.0.3/Cargo.toml 2018-01-27T13:12:51.895617+01:00 -@@ -13,10 +13,10 @@ - [dependencies] - unicode-width = "0.1" - regex = { version = "^0.2.1", optional = true } --lazy_static = { version = "0.2", optional = true} -+lazy_static = { version = "1", optional = true} - - [dev-dependencies] --ansi_term = "0.7" -+ansi_term = "0.10" - - [features] - default = []
commit 7babbc2229e16fdc0727e9a05a155d26ef4c8d67 Author: Fedora Release Engineering releng@fedoraproject.org Date: Fri Feb 9 15:50:21 2018 +0000
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Signed-off-by: Fedora Release Engineering releng@fedoraproject.org
diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec index 638f9e3..cd998ac 100644 --- a/rust-tabwriter.spec +++ b/rust-tabwriter.spec @@ -6,7 +6,7 @@
Name: rust-%{crate} Version: 1.0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Elastic tabstops
License: Unlicense or MIT @@ -64,5 +64,8 @@ which use %{crate} from crates.io. %exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim}
%changelog +* Fri Feb 09 2018 Fedora Release Engineering releng@fedoraproject.org - 1.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Sat Jan 27 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.0.3-1 - Initial package
commit 8e97deac3ceab4849d125ee68613d03606159275 Author: Igor Gnatenko ignatenkobrain@fedoraproject.org Date: Sun Jan 28 21:36:43 2018 +0100
initial import
Signed-off-by: Igor Gnatenko ignatenkobrain@fedoraproject.org
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..60d5f29 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/tabwriter-1.0.3.crate diff --git a/rust-tabwriter.spec b/rust-tabwriter.spec new file mode 100644 index 0000000..638f9e3 --- /dev/null +++ b/rust-tabwriter.spec @@ -0,0 +1,68 @@ +# Generated by rust2rpm +%bcond_without check +%global debug_package %{nil} + +%global crate tabwriter + +Name: rust-%{crate} +Version: 1.0.3 +Release: 1%{?dist} +Summary: Elastic tabstops + +License: Unlicense or MIT +URL: https://crates.io/crates/tabwriter +Source0: https://crates.io/api/v1/crates/%%7Bcrate%7D/%%7Bversion%7D/download#/%%7Bcr... +# Initial patched metadata +# * Bump lazy_static to 1, +# * Bump ansi_term to 0.10, +Patch0: tabwriter-1.0.3-fix-metadata.diff + +ExclusiveArch: %{rust_arches} + +BuildRequires: rust-packaging +# [dependencies] +BuildRequires: (crate(lazy_static) >= 1.0.0 with crate(lazy_static) < 2.0.0) +BuildRequires: (crate(regex) >= 0.2.1 with crate(regex) < 0.3.0) +BuildRequires: (crate(unicode-width) >= 0.1.0 with crate(unicode-width) < 0.2.0) +%if %{with check} +# [dev-dependencies] +BuildRequires: (crate(ansi_term) >= 0.10.0 with crate(ansi_term) < 0.11.0) +%endif + +%description +%{summary}. + +%package devel +Summary: %{summary} +BuildArch: noarch + +%description devel +Elastic tabstops. + +This package contains library source intended for building other packages +which use %{crate} from crates.io. + +%prep +%autosetup -n %{crate}-%{version} -p1 +%cargo_prep + +%build +%cargo_build + +%install +%cargo_install + +%if %{with check} +%check +%cargo_test +%endif + +%files devel +%license COPYING LICENSE-MIT UNLICENSE +%doc README.md +%{cargo_registry}/%{crate}-%{version}/ +%exclude %{cargo_registry}/%{crate}-%{version}/{Makefile,session.vim} + +%changelog +* Sat Jan 27 2018 Igor Gnatenko ignatenkobrain@fedoraproject.org - 1.0.3-1 +- Initial package diff --git a/sources b/sources new file mode 100644 index 0000000..8a2311c --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (tabwriter-1.0.3.crate) = 23ed8b9e4273177c6225dc76a20723b4ca114244262b4588b3c30d6901f8287e2047d1e17668c4a16db1b71ac4c856232e8d72898ca299fa3b521a19837bfe1b diff --git a/tabwriter-1.0.3-fix-metadata.diff b/tabwriter-1.0.3-fix-metadata.diff new file mode 100644 index 0000000..1472734 --- /dev/null +++ b/tabwriter-1.0.3-fix-metadata.diff @@ -0,0 +1,15 @@ +--- tabwriter-1.0.3/Cargo.toml 2017-01-03T23:46:06+01:00 ++++ tabwriter-1.0.3/Cargo.toml 2018-01-27T13:12:51.895617+01:00 +@@ -13,10 +13,10 @@ + [dependencies] + unicode-width = "0.1" + regex = { version = "^0.2.1", optional = true } +-lazy_static = { version = "0.2", optional = true} ++lazy_static = { version = "1", optional = true} + + [dev-dependencies] +-ansi_term = "0.7" ++ansi_term = "0.10" + + [features] + default = []
arch-excludes@lists.fedoraproject.org