Regenerate

Signed-off-by: Igor Gnatenko <ignatenkobrain@fedoraproject.org>
This commit is contained in:
Igor Gnatenko 2019-07-20 21:02:24 +02:00
parent aafda93c4b
commit 75b21c36e7
No known key found for this signature in database
GPG Key ID: 695714BD1BBC5F4C
1 changed files with 28 additions and 9 deletions

View File

@ -6,9 +6,10 @@
Name: rust-%{crate}
Version: 0.6.5
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Intuitive find & replace CLI
# Upstream license specification: MIT
License: MIT
URL: https://crates.io/crates/sd
Source: %{crates_source}
@ -16,16 +17,28 @@ Source: %{crates_source}
ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging
BuildRequires: (crate(man/default) >= 0.3.0 with crate(man/default) < 0.4.0)
BuildRequires: (crate(memmap/default) >= 0.7.0 with crate(memmap/default) < 0.8.0)
BuildRequires: (crate(rayon/default) >= 1.1.0 with crate(rayon/default) < 2.0.0)
BuildRequires: (crate(regex/default) >= 1.1.7 with crate(regex/default) < 2.0.0)
BuildRequires: (crate(structopt/default) >= 0.2.16 with crate(structopt/default) < 0.3.0)
BuildRequires: (crate(tempfile/default) >= 3.0.8 with crate(tempfile/default) < 4.0.0)
BuildRequires: (crate(unescape/default) >= 0.1.0 with crate(unescape/default) < 0.2.0)
%global _description %{expand:
Intuitive find & replace CLI.}
Intuitive find & replace CLI.
* Painless regular expressions
sd uses regex syntax that you already know from JavaScript and Python.
Forget about dealing with quirks of sed or awk - get productive immediately.
* String-literal mode
Non-regex find & replace. No more backslashes or remembering which characters
are special and need to be escaped.
* Easy to read, easy to write
Find & replace expressions are split up, which makes them easy to read
and write. No more messing with unclosed and escaped slashes.
* Smart, common-sense defaults
Defaults follow common sense and are tailored for typical daily use.}
%description %{_description}
@ -43,6 +56,9 @@ Summary: %{summary}
%autosetup -n %{crate}-%{version_no_tilde} -p1
%cargo_prep
%generate_buildrequires
%cargo_generate_buildrequires
%build
%cargo_build
@ -55,6 +71,9 @@ Summary: %{summary}
%endif
%changelog
* Sat Jul 20 21:02:05 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.6.5-2
- Regenerate
* Tue Jun 18 23:58:04 CEST 2019 Robert-André Mauchin <zebob.m@gmail.com> - 0.6.5-1
- Release 0.6.5 (#1721651)