From fe790e69c0105bf5dee110ea5436c4b499f7bf4d Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Jun 16 2018 00:15:06 +0000 Subject: Bump regex to 1 Signed-off-by: Igor Gnatenko --- diff --git a/rust-rustfilt.spec b/rust-rustfilt.spec index 7a4fcdb..b0d415f 100644 --- a/rust-rustfilt.spec +++ b/rust-rustfilt.spec @@ -5,7 +5,7 @@ Name: rust-%{crate} Version: 0.2.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Demangle Rust symbol names License: ASL 2.0 @@ -13,6 +13,7 @@ URL: https://crates.io/crates/rustfilt Source0: https://crates.io/api/v1/crates/%{crate}/%{version}/download#/%{crate}-%{version}.crate # Initial patched metadata # * Bump lazy_static to 1, https://github.com/luser/rustfilt/pull/6 +# * Bump regex to 1, https://github.com/luser/rustfilt/commit/b95d861b61a68d56a639fb3e5c893f95416daad1 Patch0: rustfilt-0.2.0-fix-metadata.diff ExclusiveArch: %{rust_arches} @@ -21,7 +22,7 @@ BuildRequires: rust-packaging # [dependencies] BuildRequires: ((crate(clap) >= 2.21.1 with crate(clap) < 3.0.0) with crate(clap/wrap_help)) BuildRequires: (crate(lazy_static) >= 1.0.0 with crate(lazy_static) < 2.0.0) -BuildRequires: (crate(regex) >= 0.2.1 with crate(regex) < 0.3.0) +BuildRequires: (crate(regex) >= 1.0.0 with crate(regex) < 2.0.0) BuildRequires: (crate(rustc-demangle) >= 0.1.4 with crate(rustc-demangle) < 0.2.0) %description @@ -54,6 +55,9 @@ Summary: %{summary} %{_bindir}/rustfilt %changelog +* Sat Jun 16 2018 Igor Gnatenko - 0.2.0-7 +- Bump regex to 1 + * Fri Feb 09 2018 Fedora Release Engineering - 0.2.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild diff --git a/rustfilt-0.2.0-fix-metadata.diff b/rustfilt-0.2.0-fix-metadata.diff index 7cf14ec..fda9a16 100644 --- a/rustfilt-0.2.0-fix-metadata.diff +++ b/rustfilt-0.2.0-fix-metadata.diff @@ -1,11 +1,13 @@ --- rustfilt-0.2.0/Cargo.toml 2017-05-09T16:20:59+02:00 -+++ rustfilt-0.2.0/Cargo.toml 2017-11-30T20:18:22.227234+01:00 -@@ -10,7 +10,7 @@ ++++ rustfilt-0.2.0/Cargo.toml 2018-06-16T02:14:39.565214+02:00 +@@ -10,8 +10,8 @@ [dependencies] rustc-demangle = "^0.1.4" -lazy_static = "^0.2.4" +-regex = "^0.2.1" +lazy_static = "^1" - regex = "^0.2.1" ++regex = "^1" [dependencies.clap] + version = "^2.21.1"