From acca2d6b37b5810b8f083221c086ebcb3d3443c2 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Apr 20 2019 13:26:20 +0000 Subject: Update to 0.17.0 Signed-off-by: Igor Gnatenko --- diff --git a/.gitignore b/.gitignore index 7d70741..13a2fe3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /gimli-0.15.0.crate /gimli-0.16.0.crate /gimli-0.16.1.crate +/gimli-0.17.0.crate diff --git a/rust-gimli.spec b/rust-gimli.spec index 600c107..9677b95 100644 --- a/rust-gimli.spec +++ b/rust-gimli.spec @@ -5,17 +5,14 @@ %global crate gimli Name: rust-%{crate} -Version: 0.16.1 -Release: 3%{?dist} -Summary: Blazing fast DWARF debugging format parser +Version: 0.17.0 +Release: 1%{?dist} +Summary: Library for reading and writing the DWARF debugging format # Upstream license specification: Apache-2.0/MIT License: ASL 2.0 or MIT URL: https://crates.io/crates/gimli Source: %{crates_source} -# Initial patched metadata -# * alloc feature is nightly -Patch0: gimli-fix-metadata.diff ExclusiveArch: %{rust_arches} @@ -24,14 +21,15 @@ BuildRequires: (crate(arrayvec) >= 0.4.6 with crate(arrayvec) < 0.5.0) BuildRequires: (crate(byteorder) >= 1.0.0 with crate(byteorder) < 2.0.0) BuildRequires: (crate(fallible-iterator) >= 0.1.4 with crate(fallible-iterator) < 0.2.0) BuildRequires: (crate(fallible-iterator/std) >= 0.1.4 with crate(fallible-iterator/std) < 0.2.0) +BuildRequires: (crate(indexmap/default) >= 1.0.0 with crate(indexmap/default) < 2.0.0) BuildRequires: (crate(stable_deref_trait) >= 1.1.0 with crate(stable_deref_trait) < 2.0.0) BuildRequires: (crate(stable_deref_trait/std) >= 1.1.0 with crate(stable_deref_trait/std) < 2.0.0) %if %{with check} -BuildRequires: (crate(crossbeam/default) >= 0.4.1 with crate(crossbeam/default) < 0.5.0) +BuildRequires: (crate(crossbeam/default) >= 0.7.1 with crate(crossbeam/default) < 0.8.0) BuildRequires: (crate(getopts/default) >= 0.2.0 with crate(getopts/default) < 0.3.0) -BuildRequires: (crate(memmap/default) >= 0.6.0 with crate(memmap/default) < 0.7.0) +BuildRequires: (crate(memmap/default) >= 0.7.0 with crate(memmap/default) < 0.8.0) BuildRequires: (crate(num_cpus/default) >= 1.0.0 with crate(num_cpus/default) < 2.0.0) -BuildRequires: (crate(object/default) >= 0.10.0 with crate(object/default) < 0.11.0) +BuildRequires: (crate(object/default) >= 0.11.0 with crate(object/default) < 0.12.0) BuildRequires: (crate(rayon/default) >= 1.0.0 with crate(rayon/default) < 2.0.0) BuildRequires: (crate(regex/default) >= 1.0.0 with crate(regex/default) < 2.0.0) BuildRequires: (crate(test-assembler/default) >= 0.1.3 with crate(test-assembler/default) < 0.2.0) @@ -39,7 +37,7 @@ BuildRequires: (crate(typed-arena/default) >= 1.0.0 with crate(typed-arena/defa %endif %global _description \ -A blazing fast DWARF debugging format parser. +A library for reading and writing the DWARF debugging format. %description %{_description} @@ -56,7 +54,6 @@ which use "%{crate}" crate. %license LICENSE-APACHE LICENSE-MIT %doc CHANGELOG.md CONTRIBUTING.md README.md %{cargo_registry}/%{crate}-%{version}/ -%exclude %{cargo_registry}/%{crate}-%{version}/{ci,coverage,format,releases} %package -n %{name}+default-devel Summary: %{summary} @@ -70,6 +67,30 @@ which use "default" feature of "%{crate}" crate. %files -n %{name}+default-devel %ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml +%package -n %{name}+indexmap-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+indexmap-devel %{_description} + +This package contains library source intended for building other packages +which use "indexmap" feature of "%{crate}" crate. + +%files -n %{name}+indexmap-devel +%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml + +%package -n %{name}+read-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+read-devel %{_description} + +This package contains library source intended for building other packages +which use "read" feature of "%{crate}" crate. + +%files -n %{name}+read-devel +%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml + %package -n %{name}+std-devel Summary: %{summary} BuildArch: noarch @@ -82,6 +103,18 @@ which use "std" feature of "%{crate}" crate. %files -n %{name}+std-devel %ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml +%package -n %{name}+write-devel +Summary: %{summary} +BuildArch: noarch + +%description -n %{name}+write-devel %{_description} + +This package contains library source intended for building other packages +which use "write" feature of "%{crate}" crate. + +%files -n %{name}+write-devel +%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml + %prep %autosetup -n %{crate}-%{version_no_tilde} -p1 %cargo_prep @@ -98,6 +131,9 @@ which use "std" feature of "%{crate}" crate. %endif %changelog +* Sat Apr 20 15:24:33 CEST 2019 Igor Gnatenko - 0.17.0-1 +- Update to 0.17.0 + * Sun Feb 10 2019 Igor Gnatenko - 0.16.1-3 - Adapt to new packaging diff --git a/sources b/sources index f1ab6a6..81e0d14 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (gimli-0.16.1.crate) = 69bdd8d4f68714c1c1c87b19c947f464abee87e999a35203a9d947baa06718dc3c58a32e71daffc197a618b6ed06e3e4eb33f9e104c239673b1764aa56857efe +SHA512 (gimli-0.17.0.crate) = 7b69d99ae40e590a4c0828c4119a1040aa5cfd22a35416823201582b69e17943d04aba0fb66bbe4507c823c72e275f79e8ecafa5b2d9fa642f927dc2583afa83