Compare commits

...

21 Commits

Author SHA1 Message Date
Fabio Valentini 36f714a766
Update to version 1.11.1; Fixes RHBZ#2321524
3 months ago
Fabio Valentini 471538e3e1
Update to version 1.11.0; Fixes RHBZ#2315561
4 months ago
Fabio Valentini 7060365f65
Update to version 1.10.6; Fixes RHBZ#2302521
6 months ago
Fedora Release Engineering 8795e976ce Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
6 months ago
Fabio Valentini f0a5c01e82
Update to version 1.10.5; Fixes RHBZ#2291081
7 months ago
Fabio Valentini 33aa7cd456
Update to version 1.10.4; Fixes RHBZ#2271150
9 months ago
Fabio Valentini 6d04d642fc
Update to version 1.10.3; Fixes RHBZ#2259421
12 months ago
Fedora Release Engineering ae932c5041 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
12 months ago
Fabio Valentini e7fe7a8443
Update to version 1.10.2; Fixes RHBZ#2244494
1 year ago
Fabio Valentini ccb889f830
Update to version 1.10.1; Fixes RHBZ#2241488
1 year ago
Fabio Valentini 61b4f5afe7
Update to version 1.9.5; Fixes RHBZ#2236987
1 year ago
Fabio Valentini c140501e0b
Update to version 1.9.4; Fixes RHBZ#2229409
1 year ago
Fedora Release Engineering 99444e31ca Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
2 years ago
Fabio Valentini 0a61c6821f
Ignore harmless test failures on 32-bit architectures
2 years ago
Fabio Valentini e7e499f80f
Update to version 1.9.1; Fixes RHBZ#2219813
2 years ago
Fabio Valentini 5706ba74e0
Update to version 1.8.4; Fixes RHBZ#2212388
2 years ago
Fabio Valentini 8ce51ec609
Update to version 1.8.3; Fixes RHBZ#2188500
2 years ago
Fabio Valentini 1c6fdb6639
Update to version 1.7.3; Fixes RHBZ#2180502
2 years ago
Fabio Valentini 07a83afac4
Update to version 1.7.1; Fixes RHBZ#2159439
2 years ago
Fedora Release Engineering 7242e65511 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
2 years ago
Fabio Valentini 1b239fc24d
Update to version 1.7.0; Fixes RHBZ#2140336
2 years ago

16
.gitignore vendored

@ -36,3 +36,19 @@
/regex-1.5.5.crate
/regex-1.5.6.crate
/regex-1.6.0.crate
/regex-1.7.0.crate
/regex-1.7.1.crate
/regex-1.7.3.crate
/regex-1.8.3.crate
/regex-1.8.4.crate
/regex-1.9.1.crate
/regex-1.9.4.crate
/regex-1.9.5.crate
/regex-1.10.1.crate
/regex-1.10.2.crate
/regex-1.10.3.crate
/regex-1.10.4.crate
/regex-1.10.5.crate
/regex-1.10.6.crate
/regex-1.11.0.crate
/regex-1.11.1.crate

@ -1,3 +0,0 @@
# rust-regex
The rust-regex package

@ -1,26 +1,23 @@
# Generated by rust2rpm 21
# Generated by rust2rpm 26
%bcond_without check
%global debug_package %{nil}
%global crate regex
Name: rust-%{crate}
Version: 1.6.0
Name: rust-regex
Version: 1.11.1
Release: %autorelease
Summary: Implementation of regular expressions for Rust
# Upstream license specification: MIT OR Apache-2.0
License: MIT or ASL 2.0
License: MIT OR Apache-2.0
URL: https://crates.io/crates/regex
Source: %{crates_source}
ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging >= 21
BuildRequires: cargo-rpm-macros >= 24
%global _description %{expand:
Implementation of regular expressions for Rust. This implementation uses finite
automata and guarantees linear time matching on all inputs.}
An implementation of regular expressions for Rust. This implementation
uses finite automata and guarantees linear time matching on all inputs.}
%description %{_description}
@ -37,8 +34,6 @@ use the "%{crate}" crate.
%license %{crate_instdir}/LICENSE-APACHE
%license %{crate_instdir}/LICENSE-MIT
%doc %{crate_instdir}/CHANGELOG.md
%doc %{crate_instdir}/HACKING.md
%doc %{crate_instdir}/PERFORMANCE.md
%doc %{crate_instdir}/README.md
%doc %{crate_instdir}/UNICODE.md
%{crate_instdir}/
@ -55,28 +50,16 @@ use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+aho-corasick-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+aho-corasick-devel %{_description}
This package contains library source intended for building other packages which
use the "aho-corasick" feature of the "%{crate}" crate.
%files -n %{name}+aho-corasick-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+memchr-devel
%package -n %{name}+logging-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+memchr-devel %{_description}
%description -n %{name}+logging-devel %{_description}
This package contains library source intended for building other packages which
use the "memchr" feature of the "%{crate}" crate.
use the "logging" feature of the "%{crate}" crate.
%files -n %{name}+memchr-devel
%files -n %{name}+logging-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+pattern-devel
@ -103,6 +86,18 @@ use the "perf" feature of the "%{crate}" crate.
%files -n %{name}+perf-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+perf-backtrack-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+perf-backtrack-devel %{_description}
This package contains library source intended for building other packages which
use the "perf-backtrack" feature of the "%{crate}" crate.
%files -n %{name}+perf-backtrack-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+perf-cache-devel
Summary: %{summary}
BuildArch: noarch
@ -127,6 +122,18 @@ use the "perf-dfa" feature of the "%{crate}" crate.
%files -n %{name}+perf-dfa-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+perf-dfa-full-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+perf-dfa-full-devel %{_description}
This package contains library source intended for building other packages which
use the "perf-dfa-full" feature of the "%{crate}" crate.
%files -n %{name}+perf-dfa-full-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+perf-inline-devel
Summary: %{summary}
BuildArch: noarch
@ -151,6 +158,18 @@ use the "perf-literal" feature of the "%{crate}" crate.
%files -n %{name}+perf-literal-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+perf-onepass-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+perf-onepass-devel %{_description}
This package contains library source intended for building other packages which
use the "perf-onepass" feature of the "%{crate}" crate.
%files -n %{name}+perf-onepass-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+std-devel
Summary: %{summary}
BuildArch: noarch
@ -284,7 +303,7 @@ use the "use_std" feature of the "%{crate}" crate.
%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
%autosetup -n %{crate}-%{version} -p1
%cargo_prep
%generate_buildrequires

@ -1 +1 @@
SHA512 (regex-1.6.0.crate) = b4861c9cc13d6fb224f67057fd3522f04576591b3d7ae0d3581dce42ca2b2bff96860cf2a7f4dfab00e46a1d29e6473f6723c4aeb02e34ed6d5f205b66f07876
SHA512 (regex-1.11.1.crate) = d065f6dc405771518260425f39a5eaaf8cab62e78c91ceed3b3994a9a121674d2484cadaaf816bdad89c87a40550d57b66a3d9de6618a7119a658301ce7e67d8

Loading…
Cancel
Save