Compare commits
No commits in common. 'epel9' and 'i9' have entirely different histories.
@ -1,21 +0,0 @@
|
|||||||
/console-0.6.1.crate
|
|
||||||
/console-0.6.2.crate
|
|
||||||
/console-0.7.5.crate
|
|
||||||
/console-0.7.6.crate
|
|
||||||
/console-0.7.7.crate
|
|
||||||
/console-0.9.1.crate
|
|
||||||
/console-0.9.2.crate
|
|
||||||
/console-0.10.0.crate
|
|
||||||
/console-0.10.1.crate
|
|
||||||
/console-0.11.2.crate
|
|
||||||
/console-0.11.3.crate
|
|
||||||
/console-0.13.0.crate
|
|
||||||
/console-0.14.0.crate
|
|
||||||
/console-0.14.1.crate
|
|
||||||
/console-0.15.0.crate
|
|
||||||
/console-0.15.1.crate
|
|
||||||
/console-0.15.2.crate
|
|
||||||
/console-0.15.5.crate
|
|
||||||
/console-0.15.6.crate
|
|
||||||
/console-0.15.7.crate
|
|
||||||
/console-0.15.8.crate
|
|
Binary file not shown.
@ -0,0 +1,204 @@
|
|||||||
|
## START: Set by rpmautospec
|
||||||
|
## (rpmautospec version 0.3.5)
|
||||||
|
## RPMAUTOSPEC: autorelease, autochangelog
|
||||||
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
||||||
|
release_number = 1;
|
||||||
|
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
||||||
|
print(release_number + base_release_number - 1);
|
||||||
|
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
||||||
|
## END: Set by rpmautospec
|
||||||
|
|
||||||
|
# Generated by rust2rpm 24
|
||||||
|
%bcond_without check
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
|
%global crate console
|
||||||
|
|
||||||
|
Name: rust-console
|
||||||
|
Version: 0.15.7
|
||||||
|
Release: %autorelease
|
||||||
|
Summary: Terminal and console abstraction for Rust
|
||||||
|
|
||||||
|
License: MIT
|
||||||
|
URL: https://crates.io/crates/console
|
||||||
|
Source: %{crates_source}
|
||||||
|
# Automatically generated patch to strip foreign dependencies
|
||||||
|
Patch: console-fix-metadata-auto.diff
|
||||||
|
|
||||||
|
BuildRequires: rust-packaging >= 21
|
||||||
|
|
||||||
|
%global _description %{expand:
|
||||||
|
A 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 the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%license %{crate_instdir}/LICENSE
|
||||||
|
%doc %{crate_instdir}/CHANGELOG.md
|
||||||
|
%doc %{crate_instdir}/README.md
|
||||||
|
%{crate_instdir}/
|
||||||
|
|
||||||
|
%package -n %{name}+default-devel
|
||||||
|
Summary: %{summary}
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n %{name}+default-devel %{_description}
|
||||||
|
|
||||||
|
This package contains library source intended for building other packages which
|
||||||
|
use the "default" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+default-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%package -n %{name}+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 the "ansi-parsing" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+ansi-parsing-devel
|
||||||
|
%ghost %{crate_instdir}/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 the "unicode-width" feature of the "%{crate}" crate.
|
||||||
|
|
||||||
|
%files -n %{name}+unicode-width-devel
|
||||||
|
%ghost %{crate_instdir}/Cargo.toml
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -n %{crate}-%{version_no_tilde} -p1
|
||||||
|
%cargo_prep
|
||||||
|
|
||||||
|
%generate_buildrequires
|
||||||
|
%cargo_generate_buildrequires
|
||||||
|
|
||||||
|
%build
|
||||||
|
%cargo_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%cargo_install
|
||||||
|
|
||||||
|
%if %{with check}
|
||||||
|
%check
|
||||||
|
%cargo_test
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Oct 13 2023 Arkady L. Shane <tigro@msvsphere-os.ru> - 0.15.7-1
|
||||||
|
- Rebuilt for MSVSphere 9.2
|
||||||
|
|
||||||
|
* Mon May 29 2023 Fabio Valentini <decathorpe@gmail.com> - 0.15.7-1
|
||||||
|
- Update to version 0.15.7; Fixes RHBZ#2208887
|
||||||
|
|
||||||
|
* Thu May 18 2023 Fabio Valentini <decathorpe@gmail.com> - 0.15.6-1
|
||||||
|
- Update to version 0.15.6; Fixes RHBZ#2208233
|
||||||
|
|
||||||
|
* Sun Jan 29 2023 Fabio Valentini <decathorpe@gmail.com> - 0.15.5-1
|
||||||
|
- Update to version 0.15.5; Fixes RHBZ#2156592
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Oct 05 2022 Fabio Valentini <decathorpe@gmail.com> - 0.15.2-1
|
||||||
|
- Update to version 0.15.2; Fixes RHBZ#2130589
|
||||||
|
|
||||||
|
* Sat Aug 06 2022 Fabio Valentini <decathorpe@gmail.com> - 0.15.1-1
|
||||||
|
- Update to version 0.15.1; Fixes RHBZ#2111568
|
||||||
|
|
||||||
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.15.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 12 2022 Fabio Valentini <decathorpe@gmail.com> - 0.15.0-1
|
||||||
|
- Update to version 0.15.0; Fixes RHBZ#2014317
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Mar 23 2021 Fabio Valentini <decathorpe@gmail.com> - 0.14.1-1
|
||||||
|
- Update to version 0.14.1.
|
||||||
|
- Fixes RHBZ#1938616
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jan 10 17:45:33 CET 2021 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.14.0-1
|
||||||
|
- Update to 0.14.0 (Fixes: RHBZ#1910977)
|
||||||
|
|
||||||
|
* Sun Oct 25 2020 Fabio Valentini <decathorpe@gmail.com> - 0.13.0-1
|
||||||
|
- Update to version 0.13.0.
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 18 2020 Josh Stone <jistone@redhat.com> - 0.11.3-1
|
||||||
|
- Update to 0.11.3
|
||||||
|
|
||||||
|
* Sat May 02 10:56:03 CEST 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.11.2-1
|
||||||
|
- Update to 0.11.2
|
||||||
|
|
||||||
|
* Mon Apr 27 08:18:46 CEST 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.10.1-1
|
||||||
|
- Update to 0.10.1
|
||||||
|
|
||||||
|
* Mon Mar 23 07:04:01 CET 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.10.0-1
|
||||||
|
- Update to 0.10.0
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 27 2020 Josh Stone <jistone@redhat.com> - 0.9.2-1
|
||||||
|
- Update to 0.9.2
|
||||||
|
|
||||||
|
* Fri Dec 06 17:31:03 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.9.1-1
|
||||||
|
- Update to 0.9.1
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.7-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jun 20 11:03:42 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.7-1
|
||||||
|
- Update to 0.7.7
|
||||||
|
|
||||||
|
* Tue Jun 18 23:43:14 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.6-1
|
||||||
|
- Update to 0.7.6
|
||||||
|
|
||||||
|
* Sun Jun 09 14:26:32 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.5-3
|
||||||
|
- Regenerate
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 28 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.5-1
|
||||||
|
- Update to 0.7.5
|
||||||
|
|
||||||
|
* Thu Dec 20 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.2-3
|
||||||
|
- Run tests in infrastructure
|
||||||
|
|
||||||
|
* Sat Nov 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.2-2
|
||||||
|
- Adapt to new packaging
|
||||||
|
|
||||||
|
* Tue Sep 11 2018 Josh Stone <jistone@redhat.com> - 0.6.2-1
|
||||||
|
- Update to 0.6.2
|
||||||
|
|
||||||
|
* Mon Sep 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.1-1
|
||||||
|
- Initial package
|
||||||
|
|
@ -1,69 +0,0 @@
|
|||||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Mar 23 2021 Fabio Valentini <decathorpe@gmail.com> - 0.14.1-1
|
|
||||||
- Update to version 0.14.1.
|
|
||||||
- Fixes RHBZ#1938616
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.14.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Jan 10 17:45:33 CET 2021 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.14.0-1
|
|
||||||
- Update to 0.14.0 (Fixes: RHBZ#1910977)
|
|
||||||
|
|
||||||
* Sun Oct 25 2020 Fabio Valentini <decathorpe@gmail.com> - 0.13.0-1
|
|
||||||
- Update to version 0.13.0.
|
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon May 18 2020 Josh Stone <jistone@redhat.com> - 0.11.3-1
|
|
||||||
- Update to 0.11.3
|
|
||||||
|
|
||||||
* Sat May 02 10:56:03 CEST 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.11.2-1
|
|
||||||
- Update to 0.11.2
|
|
||||||
|
|
||||||
* Mon Apr 27 08:18:46 CEST 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.10.1-1
|
|
||||||
- Update to 0.10.1
|
|
||||||
|
|
||||||
* Mon Mar 23 07:04:01 CET 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 0.10.0-1
|
|
||||||
- Update to 0.10.0
|
|
||||||
|
|
||||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 27 2020 Josh Stone <jistone@redhat.com> - 0.9.2-1
|
|
||||||
- Update to 0.9.2
|
|
||||||
|
|
||||||
* Fri Dec 06 17:31:03 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.9.1-1
|
|
||||||
- Update to 0.9.1
|
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.7-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jun 20 11:03:42 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.7-1
|
|
||||||
- Update to 0.7.7
|
|
||||||
|
|
||||||
* Tue Jun 18 23:43:14 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.6-1
|
|
||||||
- Update to 0.7.6
|
|
||||||
|
|
||||||
* Sun Jun 09 14:26:32 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.5-3
|
|
||||||
- Regenerate
|
|
||||||
|
|
||||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.5-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 28 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.7.5-1
|
|
||||||
- Update to 0.7.5
|
|
||||||
|
|
||||||
* Thu Dec 20 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.2-3
|
|
||||||
- Run tests in infrastructure
|
|
||||||
|
|
||||||
* Sat Nov 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.2-2
|
|
||||||
- Adapt to new packaging
|
|
||||||
|
|
||||||
* Tue Sep 11 2018 Josh Stone <jistone@redhat.com> - 0.6.2-1
|
|
||||||
- Update to 0.6.2
|
|
||||||
|
|
||||||
* Mon Sep 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.1-1
|
|
||||||
- Initial package
|
|
@ -1,10 +0,0 @@
|
|||||||
--- console-0.15.8/Cargo.toml 1970-01-01T00:00:01+00:00
|
|
||||||
+++ console-0.15.8/Cargo.toml 2024-01-10T15:47:55.890916+00:00
|
|
||||||
@@ -44,7 +44,6 @@
|
|
||||||
features = [
|
|
||||||
"std",
|
|
||||||
"bit-set",
|
|
||||||
- "break-dead-code",
|
|
||||||
]
|
|
||||||
default-features = false
|
|
||||||
|
|
@ -1,98 +0,0 @@
|
|||||||
# Generated by rust2rpm 25
|
|
||||||
%bcond_without check
|
|
||||||
%global debug_package %{nil}
|
|
||||||
|
|
||||||
%global crate console
|
|
||||||
|
|
||||||
Name: rust-console
|
|
||||||
Version: 0.15.8
|
|
||||||
Release: %autorelease
|
|
||||||
Summary: Terminal and console abstraction for Rust
|
|
||||||
|
|
||||||
License: MIT
|
|
||||||
URL: https://crates.io/crates/console
|
|
||||||
Source: %{crates_source}
|
|
||||||
# Automatically generated patch to strip dependencies and normalize metadata
|
|
||||||
Patch: console-fix-metadata-auto.diff
|
|
||||||
# Manually created patch for downstream crate metadata changes
|
|
||||||
# * drop obsolete "proptest/break-dead-code" dev-dependency
|
|
||||||
Patch: console-fix-metadata.diff
|
|
||||||
|
|
||||||
BuildRequires: cargo-rpm-macros >= 24
|
|
||||||
|
|
||||||
%global _description %{expand:
|
|
||||||
A 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 the "%{crate}" crate.
|
|
||||||
|
|
||||||
%files devel
|
|
||||||
%license %{crate_instdir}/LICENSE
|
|
||||||
%doc %{crate_instdir}/CHANGELOG.md
|
|
||||||
%doc %{crate_instdir}/README.md
|
|
||||||
%{crate_instdir}/
|
|
||||||
|
|
||||||
%package -n %{name}+default-devel
|
|
||||||
Summary: %{summary}
|
|
||||||
BuildArch: noarch
|
|
||||||
|
|
||||||
%description -n %{name}+default-devel %{_description}
|
|
||||||
|
|
||||||
This package contains library source intended for building other packages which
|
|
||||||
use the "default" feature of the "%{crate}" crate.
|
|
||||||
|
|
||||||
%files -n %{name}+default-devel
|
|
||||||
%ghost %{crate_instdir}/Cargo.toml
|
|
||||||
|
|
||||||
%package -n %{name}+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 the "ansi-parsing" feature of the "%{crate}" crate.
|
|
||||||
|
|
||||||
%files -n %{name}+ansi-parsing-devel
|
|
||||||
%ghost %{crate_instdir}/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 the "unicode-width" feature of the "%{crate}" crate.
|
|
||||||
|
|
||||||
%files -n %{name}+unicode-width-devel
|
|
||||||
%ghost %{crate_instdir}/Cargo.toml
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -n %{crate}-%{version} -p1
|
|
||||||
%cargo_prep
|
|
||||||
|
|
||||||
%generate_buildrequires
|
|
||||||
%cargo_generate_buildrequires
|
|
||||||
|
|
||||||
%build
|
|
||||||
%cargo_build
|
|
||||||
|
|
||||||
%install
|
|
||||||
%cargo_install
|
|
||||||
|
|
||||||
%if %{with check}
|
|
||||||
%check
|
|
||||||
%cargo_test
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
%autochangelog
|
|
@ -1,3 +0,0 @@
|
|||||||
[features]
|
|
||||||
hide = ["windows-console-colors"]
|
|
||||||
|
|
Loading…
Reference in new issue