Update to 0.5.4
Signed-off-by: Igor Gnatenko <ignatenkobrain@fedoraproject.org>
This commit is contained in:
parent
dd0d8863ff
commit
d1de895d3b
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,3 +4,4 @@
|
||||
/stratisd-0.5.1.tar.gz
|
||||
/stratisd-0.5.2.tar.gz
|
||||
/stratisd-0.5.3.tar.gz
|
||||
/stratisd-0.5.4.tar.gz
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (stratisd-0.5.3.tar.gz) = 53c2c9e1271cb593c6ee03a04da676a32b261420df40d00af7719a8daad5da14c812b339270d482b494fdfdbc8f23b02b8a86bae81494375f8e2775988a53b0e
|
||||
SHA512 (stratisd-0.5.4.tar.gz) = ee3d1088317ced5d8c71a7775278a53e7f017e86d76ef834b5edb847e967f14d3e94f0d7f4b1f9a2043b16de35e6d55ef33bf3d11d99e4bc017d9a33db2af18b
|
||||
|
@ -5,8 +5,8 @@
|
||||
%global __cargo_is_lib() false
|
||||
|
||||
Name: stratisd
|
||||
Version: 0.5.3
|
||||
Release: 2%{?dist}
|
||||
Version: 0.5.4
|
||||
Release: 1%{?dist}
|
||||
Summary: Daemon that manages block devices to create filesystems
|
||||
|
||||
License: MPLv2.0
|
||||
@ -22,23 +22,25 @@ BuildRequires: (crate(chrono) >= 0.4.0 with crate(chrono) < 0.5.0)
|
||||
BuildRequires: (crate(clap) >= 2.0.0 with crate(clap) < 3.0.0)
|
||||
BuildRequires: (crate(crc) >= 1.0.0 with crate(crc) < 2.0.0)
|
||||
BuildRequires: (crate(dbus) >= 0.6.1 with crate(dbus) < 0.7.0)
|
||||
BuildRequires: (crate(devicemapper) >= 0.21.0 with crate(devicemapper) < 0.22.0)
|
||||
BuildRequires: (crate(env_logger) >= 0.4.0 with crate(env_logger) < 0.5.0)
|
||||
BuildRequires: (crate(devicemapper) >= 0.22.0 with crate(devicemapper) < 0.23.0)
|
||||
BuildRequires: (crate(env_logger) >= 0.5.0 with crate(env_logger) < 0.6.0)
|
||||
BuildRequires: (crate(error-chain) >= 0.11.0 with crate(error-chain) < 0.12.0)
|
||||
BuildRequires: (crate(lazy_static) >= 1.0.0 with crate(lazy_static) < 2.0.0)
|
||||
BuildRequires: (crate(libc) >= 0.2.36 with crate(libc) < 0.3.0)
|
||||
BuildRequires: (crate(libmount) >= 0.1.10 with crate(libmount) < 0.2.0)
|
||||
BuildRequires: (crate(libudev) >= 0.2.0 with crate(libudev) < 0.3.0)
|
||||
BuildRequires: (crate(log) >= 0.3.0 with crate(log) < 0.4.0)
|
||||
BuildRequires: (crate(log) >= 0.4.0 with crate(log) < 0.5.0)
|
||||
BuildRequires: (crate(macro-attr) >= 0.2.0 with crate(macro-attr) < 0.3.0)
|
||||
BuildRequires: (crate(mnt) >= 0.3.1 with crate(mnt) < 0.4.0)
|
||||
BuildRequires: (crate(nix) >= 0.10.0 with crate(nix) < 0.11.0)
|
||||
BuildRequires: (crate(rand) >= 0.4.0 with crate(rand) < 0.5.0)
|
||||
BuildRequires: (crate(serde) >= 1.0.0 with crate(serde) < 2.0.0)
|
||||
BuildRequires: (crate(serde_derive) >= 1.0.0 with crate(serde_derive) < 2.0.0)
|
||||
BuildRequires: (crate(serde_json) >= 1.0.0 with crate(serde_json) < 2.0.0)
|
||||
BuildRequires: (crate(tempfile) >= 3.0.0 with crate(tempfile) < 4.0.0)
|
||||
BuildRequires: (crate(tempfile) >= 3.0.1 with crate(tempfile) < 4.0.0)
|
||||
BuildRequires: ((crate(uuid) >= 0.6.0 with crate(uuid) < 0.7.0) with crate(uuid/serde) with crate(uuid/v4))
|
||||
%if %{with check}
|
||||
# [dev-dependencies]
|
||||
BuildRequires: (crate(either) >= 1.1.0 with crate(either) < 2.0.0)
|
||||
BuildRequires: (crate(loopdev) >= 0.2.0 with crate(loopdev) < 0.3.0)
|
||||
BuildRequires: (crate(quickcheck) >= 0.6.0 with crate(quickcheck) < 0.7.0)
|
||||
%endif
|
||||
@ -53,8 +55,6 @@ Requires: device-mapper-persistent-data
|
||||
%prep
|
||||
%autosetup -p1
|
||||
%cargo_prep
|
||||
# Not interested in clippy
|
||||
sed -i -e "/^clippy/d" Cargo.toml
|
||||
|
||||
%build
|
||||
%cargo_build
|
||||
@ -92,6 +92,9 @@ mv %{buildroot}%{_bindir}/stratisd %{buildroot}%{_sbindir}/stratisd-init
|
||||
%{_mandir}/man8/stratisd.8*
|
||||
|
||||
%changelog
|
||||
* Wed Jul 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.5.4-1
|
||||
- Update to 0.5.4
|
||||
|
||||
* Fri Jun 22 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.5.3-2
|
||||
- Add -init version of daemon
|
||||
- Own dbus-1 directory
|
||||
|
Loading…
Reference in New Issue
Block a user