Update to version 1.3.0

- Update to version 1.3.0
- Build on all rust arches except i686 (32-bit targets are not supported)

Signed-off-by: Sergio Lopez <slp@redhat.com>
This commit is contained in:
Sergio Lopez 2022-06-07 09:31:03 +02:00
parent 125ecbf437
commit c970c6555c
3 changed files with 11 additions and 7 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/virtiofsd-1.2.0.crate
/virtiofsd-1.3.0.crate

View File

@ -1 +1 @@
SHA512 (virtiofsd-1.2.0.crate) = d27c6fea8861dba8b39e950a2b372153630ae947577b1c4c7a327961b942f1a3bc072008e2edffb25d2bb1492f93436372127dae57158e5994814dfeb0994b3f
SHA512 (virtiofsd-1.3.0.crate) = 4f18646298ed4a151f54943a4c059fa33ae226f57f6bbeac22fb90b2024dbe3a3b88ea256c34c64483e90b09c7f007956efbfec3e0187aa863f4ef561142a9c6

View File

@ -1,5 +1,5 @@
Name: virtiofsd
Version: 1.2.0
Version: 1.3.0
Release: 1%{?dist}
Summary: Virtio-fs vhost-user device daemon (Rust version)
@ -8,11 +8,10 @@ License: ASL 2.0 and BSD
URL: https://gitlab.com/virtio-fs/virtiofsd
Source: %{crates_source}
# Some of our deps (i.e. vm-memory) are only available on x86_64, aarch64 and
# ppc64le while others (i.e. virtio-queue) only support x86_64, aarch64 and
# s390x.
# This restricts us to the intersection of those sets: x86_64 and aarch64.
ExclusiveArch: x86_64 aarch64
ExclusiveArch: %{rust_arches}
# Some of our deps (i.e. vm-memory) are not available on 32 bits targets.
ExcludeArch: i686
BuildRequires: rust-packaging >= 21
BuildRequires: libcap-ng-devel
BuildRequires: libseccomp-devel
@ -45,6 +44,10 @@ install -D -p -m 0644 50-qemu-virtiofsd.json %{buildroot}%{_datadir}/qemu/vhost-
%{_datadir}/qemu/vhost-user/50-qemu-virtiofsd.json
%changelog
* Mon Jun 06 2022 Sergio Lopez <slp@redhat.com> - 1.3.0-1
- Update to version 1.3.0
- Build on all rust arches except i686 (32-bit targets are not supported)
* Mon May 16 2022 Sergio Lopez <slp@redhat.com> - 1.2.0-1
- Initial package