Compare commits

..

No commits in common. 'epel9' and 'i10ce' have entirely different histories.
epel9 ... i10ce

7
.gitignore vendored

@ -1,6 +1 @@
/anstream-0.2.6.crate
/anstream-0.3.2.crate
/anstream-0.5.0.crate
/anstream-0.6.4.crate
/anstream-0.6.5.crate
/anstream-0.6.7.crate
SOURCES/anstream-0.6.18.crate

@ -0,0 +1 @@
ab119351562edaaefaadd29a3d39daaa2496b09e SOURCES/anstream-0.6.18.crate

@ -0,0 +1,25 @@
From e0641952e15e81afd101652240828d30d7ee6726 Mon Sep 17 00:00:00 2001
From: Fabio Valentini <decathorpe@gmail.com>
Date: Tue, 2 Jul 2024 14:24:40 +0200
Subject: [PATCH] drop is_terminal_polyfill and replace with
std::io::IsTerminal
---
src/stream.rs | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/stream.rs b/src/stream.rs
index b30d232..e8472c1 100644
--- a/src/stream.rs
+++ b/src/stream.rs
@@ -1,5 +1,7 @@
//! Higher-level traits to describe writeable streams
+use std::io as is_terminal_polyfill;
+
/// Required functionality for underlying [`std::io::Write`] for adaptation
#[cfg(not(all(windows, feature = "wincon")))]
pub trait RawStream: std::io::Write + IsTerminal + private::Sealed {}
--
2.45.2

@ -0,0 +1,20 @@
--- anstream-0.6.18/Cargo.toml 1970-01-01T00:00:01+00:00
+++ anstream-0.6.18/Cargo.toml 2024-11-12T19:40:40.845345+00:00
@@ -155,11 +155,7 @@
"wincon",
]
test = []
-wincon = ["dep:anstyle-wincon"]
-
-[target."cfg(windows)".dependencies.anstyle-wincon]
-version = "3.0.5"
-optional = true
+wincon = []
[lints.clippy]
bool_assert_comparison = "allow"
@@ -231,3 +227,4 @@
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
+

@ -0,0 +1,39 @@
--- anstream-0.6.18/Cargo.toml 1970-01-01T00:00:01+00:00
+++ anstream-0.6.18/Cargo.toml 2024-11-12T19:40:54.672409+00:00
@@ -99,21 +99,6 @@
path = "examples/query-stream.rs"
required-features = ["auto"]
-[[bench]]
-name = "stream"
-path = "benches/stream.rs"
-harness = false
-
-[[bench]]
-name = "strip"
-path = "benches/strip.rs"
-harness = false
-
-[[bench]]
-name = "wincon"
-path = "benches/wincon.rs"
-harness = false
-
[dependencies.anstyle]
version = "1.0.0"
@@ -127,14 +112,8 @@
[dependencies.colorchoice]
version = "1.0.0"
-[dependencies.is_terminal_polyfill]
-version = "1.48"
-
[dependencies.utf8parse]
version = "0.2.1"
-
-[dev-dependencies.divan]
-version = "0.1.11"
[dev-dependencies.lexopt]
version = "0.3.0"

@ -0,0 +1,6 @@
[package]
cargo-toml-patch-comments = [
"drop unused, benchmark-only divan dev-dependency",
"drop unnecessary is-terminal polyfill (MSRV 1.65 -> 1.70 is OK downstream)",
]

@ -0,0 +1,173 @@
## START: Set by rpmautospec
## (rpmautospec version 0.7.3)
## 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 26
%bcond_without check
%global debug_package %{nil}
%global crate anstream
Name: rust-anstream
Version: 0.6.18
Release: %autorelease
Summary: Simple cross platform library for writing colored text to a terminal
License: MIT OR Apache-2.0
URL: https://crates.io/crates/anstream
Source: %{crates_source}
# Automatically generated patch to strip dependencies and normalize metadata
Patch: anstream-fix-metadata-auto.diff
# Manually created patch for downstream crate metadata changes
# * drop unused, benchmark-only divan dev-dependency
# * drop unnecessary is-terminal polyfill (MSRV 1.65 -> 1.70 is OK downstream)
Patch: anstream-fix-metadata.diff
Patch: 0001-drop-is_terminal_polyfill-and-replace-with-std-io-Is.patch
BuildRequires: cargo-rpm-macros >= 24
%global _description %{expand:
A simple cross platform library for writing colored text to a terminal.}
%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-APACHE
%license %{crate_instdir}/LICENSE-MIT
%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}+auto-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+auto-devel %{_description}
This package contains library source intended for building other packages which
use the "auto" feature of the "%{crate}" crate.
%files -n %{name}+auto-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+test-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+test-devel %{_description}
This package contains library source intended for building other packages which
use the "test" feature of the "%{crate}" crate.
%files -n %{name}+test-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+wincon-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+wincon-devel %{_description}
This package contains library source intended for building other packages which
use the "wincon" feature of the "%{crate}" crate.
%files -n %{name}+wincon-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
* Fri Dec 20 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 0.6.18-1
- Rebuilt for MSVSphere 10
## START: Generated by rpmautospec
* Tue Nov 12 2024 Fabio Valentini <decathorpe@gmail.com> - 0.6.18-1
- Update to version 0.6.18; Fixes RHBZ#2323703
* Wed Oct 30 2024 Fabio Valentini <decathorpe@gmail.com> - 0.6.17-1
- Update to version 0.6.17; Fixes RHBZ#2321633
* Sun Jul 28 2024 Fabio Valentini <decathorpe@gmail.com> - 0.6.15-1
- Update to version 0.6.15; Fixes RHBZ#2299840
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.14-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Tue Jul 02 2024 Fabio Valentini <decathorpe@gmail.com> - 0.6.14-1
- Update to version 0.6.14; Fixes RHBZ#2278697
* Thu Feb 29 2024 Fabio Valentini <decathorpe@gmail.com> - 0.6.13-1
- Update to version 0.6.13; Fixes RHBZ#2266420
* Sun Feb 18 2024 Fabio Valentini <decathorpe@gmail.com> - 0.6.12-1
- Update to version 0.6.12; Fixes RHBZ#2264707
* Tue Jan 30 2024 Fabio Valentini <decathorpe@gmail.com> - 0.6.11-1
- Update to version 0.6.11; Fixes RHBZ#2258660
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.7-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sat Jan 13 2024 Fabio Valentini <decathorpe@gmail.com> - 0.6.7-1
- Update to version 0.6.7; Fixes RHBZ#2257999
* Thu Jan 11 2024 Fabio Valentini <decathorpe@gmail.com> - 0.6.5-1
- Update to version 0.6.5; Fixes RHBZ#2253665
* Sat Oct 14 2023 Fabio Valentini <decathorpe@gmail.com> - 0.6.4-1
- Update to version 0.6.4; Fixes RHBZ#2241248
* Wed Sep 20 2023 Fabio Valentini <decathorpe@gmail.com> - 0.5.0-1
- Update to version 0.5.0; Fixes RHBZ#2233887
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Thu May 11 2023 Fabio Valentini <decathorpe@gmail.com> - 0.3.2-1
- Update to version 0.3.2; Fixes RHBZ#2193417
* Sat Apr 08 2023 Fabio Valentini <decathorpe@gmail.com> - 0.2.6-1
- Initial import (#2183204)
## END: Generated by rpmautospec

@ -1,12 +0,0 @@
--- anstream-0.6.7/Cargo.toml 1970-01-01T00:00:01+00:00
+++ anstream-0.6.7/Cargo.toml 2024-01-13T20:33:07.049395+00:00
@@ -137,8 +137,5 @@
"wincon",
]
test = []
-wincon = ["dep:anstyle-wincon"]
+wincon = []
-[target."cfg(windows)".dependencies.anstyle-wincon]
-version = "3.0.1"
-optional = true

@ -1,40 +0,0 @@
--- anstream-0.6.7/Cargo.toml 1970-01-01T00:00:01+00:00
+++ anstream-0.6.7/Cargo.toml 2024-01-13T20:33:29.402484+00:00
@@ -83,18 +83,6 @@
[Unreleased]: https://github.com/rust-cli/anstyle/compare/{{tag_name}}...HEAD"""
search = "<!-- next-url -->"
-[[bench]]
-name = "strip"
-harness = false
-
-[[bench]]
-name = "wincon"
-harness = false
-
-[[bench]]
-name = "stream"
-harness = false
-
[dependencies.anstyle]
version = "1.0.0"
@@ -111,9 +99,6 @@
[dependencies.utf8parse]
version = "0.2.1"
-
-[dev-dependencies.criterion]
-version = "0.5.1"
[dev-dependencies.lexopt]
version = "0.3.0"
@@ -134,8 +119,5 @@
]
default = [
"auto",
- "wincon",
]
test = []
-wincon = []
-

@ -1,99 +0,0 @@
# Generated by rust2rpm 25
%bcond_without check
%global debug_package %{nil}
%global crate anstream
Name: rust-anstream
Version: 0.6.7
Release: %autorelease
Summary: Simple cross platform library for writing colored text to a terminal
License: MIT OR Apache-2.0
URL: https://crates.io/crates/anstream
Source: %{crates_source}
# Automatically generated patch to strip dependencies and normalize metadata
Patch: anstream-fix-metadata-auto.diff
# Manually created patch for downstream crate metadata changes
# * drop unused, benchmark-only criterion dev-dependency
# * drop Windows-specific features
Patch: anstream-fix-metadata.diff
BuildRequires: cargo-rpm-macros >= 24
%global _description %{expand:
A simple cross platform library for writing colored text to a terminal.}
%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-APACHE
%license %{crate_instdir}/LICENSE-MIT
%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}+auto-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+auto-devel %{_description}
This package contains library source intended for building other packages which
use the "auto" feature of the "%{crate}" crate.
%files -n %{name}+auto-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+test-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+test-devel %{_description}
This package contains library source intended for building other packages which
use the "test" feature of the "%{crate}" crate.
%files -n %{name}+test-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 +0,0 @@
SHA512 (anstream-0.6.7.crate) = 54231141acec85947e4b24f2a27c02c406a2cfe40e92a39b4f38c4b5234e1ca8a27021bb15c759c927d40448ad6203656a3841cc51e480b962fb1ebf199a3522
Loading…
Cancel
Save