Compare commits

...

10 Commits

Author SHA1 Message Date
Fabio Valentini f01e744fb0
Update to version 2.1.0; Fixes RHBZ#2247331
1 year ago
Fabio Valentini 557719ba00
Update to version 2.0.2; Fixes RHBZ#2241422
1 year ago
Fabio Valentini 27b86cdaa1
Update to version 2.0.1; Fixes RHBZ#2241021
1 year ago
Fabio Valentini ce0b22cd53
Update to version 2.0.0; Fixes RHBZ#2217109
2 years ago
Fabio Valentini 7ced4fc7eb
Update to version 1.9.3; Fixes RHBZ#2181678
2 years ago
Fabio Valentini b562e10f10
Update to version 1.9.2; Fixes RHBZ#2143796
2 years ago
Fabio Valentini 4cc5b4cd53
Merge branch 'rawhide' into epel9
2 years ago
Fabio Valentini a60f6123ab
Revert "Bootstrap (disable tests)"
2 years ago
Igor Raits f3b99888e9
Rebuild
3 years ago
Igor Raits b568b1c17f
Bootstrap (disable tests)
3 years ago

6
.gitignore vendored

@ -19,3 +19,9 @@
/indexmap-1.8.1.crate
/indexmap-1.8.2.crate
/indexmap-1.9.1.crate
/indexmap-1.9.2.crate
/indexmap-1.9.3.crate
/indexmap-2.0.0.crate
/indexmap-2.0.1.crate
/indexmap-2.0.2.crate
/indexmap-2.1.0.crate

@ -1,3 +0,0 @@
[DEFAULT]
unwanted-features =
rustc-rayon

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

@ -1,25 +1,22 @@
# Generated by rust2rpm 21
# Generated by rust2rpm 25
%bcond_without check
%global debug_package %{nil}
%global crate indexmap
Name: rust-%{crate}
Version: 1.9.1
Name: rust-indexmap
Version: 2.1.0
Release: %autorelease
Summary: Hash table with consistent order and fast iteration
# Upstream license specification: Apache-2.0 OR MIT
License: ASL 2.0 or MIT
License: Apache-2.0 OR MIT
URL: https://crates.io/crates/indexmap
Source: %{crates_source}
ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging >= 21
BuildRequires: cargo-rpm-macros >= 24
%global _description %{expand:
Hash table with consistent order and fast iteration.}
A hash table with consistent order and fast iteration.}
%description %{_description}
@ -51,80 +48,80 @@ use the "default" feature of the "%{crate}" crate.
%files -n %{name}+default-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+rayon-devel
%package -n %{name}+arbitrary-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+rayon-devel %{_description}
%description -n %{name}+arbitrary-devel %{_description}
This package contains library source intended for building other packages which
use the "rayon" feature of the "%{crate}" crate.
use the "arbitrary" feature of the "%{crate}" crate.
%files -n %{name}+rayon-devel
%files -n %{name}+arbitrary-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+serde-devel
%package -n %{name}+quickcheck-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+serde-devel %{_description}
%description -n %{name}+quickcheck-devel %{_description}
This package contains library source intended for building other packages which
use the "serde" feature of the "%{crate}" crate.
use the "quickcheck" feature of the "%{crate}" crate.
%files -n %{name}+serde-devel
%files -n %{name}+quickcheck-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+serde-1-devel
%package -n %{name}+rayon-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+serde-1-devel %{_description}
%description -n %{name}+rayon-devel %{_description}
This package contains library source intended for building other packages which
use the "serde-1" feature of the "%{crate}" crate.
use the "rayon" feature of the "%{crate}" crate.
%files -n %{name}+serde-1-devel
%files -n %{name}+rayon-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+std-devel
%package -n %{name}+serde-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+std-devel %{_description}
%description -n %{name}+serde-devel %{_description}
This package contains library source intended for building other packages which
use the "std" feature of the "%{crate}" crate.
use the "serde" feature of the "%{crate}" crate.
%files -n %{name}+std-devel
%files -n %{name}+serde-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+test_debug-devel
%package -n %{name}+std-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+test_debug-devel %{_description}
%description -n %{name}+std-devel %{_description}
This package contains library source intended for building other packages which
use the "test_debug" feature of the "%{crate}" crate.
use the "std" feature of the "%{crate}" crate.
%files -n %{name}+test_debug-devel
%files -n %{name}+std-devel
%ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+test_low_transition_point-devel
%package -n %{name}+test_debug-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+test_low_transition_point-devel %{_description}
%description -n %{name}+test_debug-devel %{_description}
This package contains library source intended for building other packages which
use the "test_low_transition_point" feature of the "%{crate}" crate.
use the "test_debug" feature of the "%{crate}" crate.
%files -n %{name}+test_low_transition_point-devel
%files -n %{name}+test_debug-devel
%ghost %{crate_instdir}/Cargo.toml
%prep
%autosetup -n %{crate}-%{version_no_tilde} -p1
%autosetup -n %{crate}-%{version} -p1
%cargo_prep
%generate_buildrequires

@ -0,0 +1,5 @@
[features]
hide = [
"rustc-rayon",
]

@ -1 +1 @@
SHA512 (indexmap-1.9.1.crate) = 7eac99056123332ad38ef32eb65235c810e8b4d051d9b0ddd5582348c9cd3b162d36defe8e46a532e2066562f224e37fae94b52b4649ee9cfac7673b76a2513e
SHA512 (indexmap-2.1.0.crate) = 9d303eef918b9264b9fe326cc1d71f4095f7ed5639ed8696efa3e9be65dff2c50ada4495409e109e7718997db51ae1fd865cf8e88978107d7823faba14380600

Loading…
Cancel
Save