Compare commits
22 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1af61ccd9e | ||
|
|
7430aa7942 | ||
|
|
7a898164ba | ||
|
|
73edbaa799 | ||
|
|
e743343fb4 | ||
|
|
600fa01eb5 | ||
|
|
242f2b6fb2 | ||
|
|
a07b87fa8b | ||
|
|
76365c7ae3 | ||
|
|
7bad2553cb | ||
|
|
5c683288c2 | ||
|
|
40bece23a6 | ||
|
|
79b955a8f4 | ||
|
|
9702fa4dc4 | ||
|
|
ef400b6081 | ||
|
|
49271abdc9 | ||
|
|
1c13a7f9f6 | ||
|
|
05f053b406 | ||
|
|
926225417b | ||
|
|
1a75a73bad | ||
|
|
70a09ca16e | ||
|
|
369007e7a5 |
3 changed files with 62 additions and 18 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -6,3 +6,4 @@ clog
|
|||
/i386/
|
||||
/noarch/
|
||||
/libguestfs-*.tar.gz
|
||||
/libguestfs-*.tar.gz.sig
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
%global _changelog_trimtime %(date +%s -d "2 years ago")
|
||||
|
||||
# Verify tarball signature with GPGv2 (only possible for stable branches).
|
||||
%global verify_tarball_signature %{nil}
|
||||
%global verify_tarball_signature 1
|
||||
|
||||
# Filter perl provides
|
||||
%{?perl_default_filter}
|
||||
|
|
@ -35,15 +35,15 @@
|
|||
Summary: Access and modify virtual machine disk images
|
||||
Name: libguestfs
|
||||
Epoch: 1
|
||||
Version: 1.37.21
|
||||
Release: 2%{?dist}
|
||||
Version: 1.38.6
|
||||
Release: 1%{?dist}
|
||||
License: LGPLv2+
|
||||
|
||||
# Source and patches.
|
||||
URL: http://libguestfs.org/
|
||||
Source0: http://libguestfs.org/download/1.35-development/%{name}-%{version}.tar.gz
|
||||
Source0: http://libguestfs.org/download/1.38-stable/%{name}-%{version}.tar.gz
|
||||
%if 0%{verify_tarball_signature}
|
||||
Source1: http://libguestfs.org/download/1.35-development/%{name}-%{version}.tar.gz.sig
|
||||
Source1: http://libguestfs.org/download/1.38-stable/%{name}-%{version}.tar.gz.sig
|
||||
%endif
|
||||
|
||||
# Replacement README file for Fedora users.
|
||||
|
|
@ -62,7 +62,7 @@ Source7: libguestfs.keyring
|
|||
|
||||
# Basic build requirements for the library and virt tools.
|
||||
BuildRequires: gcc
|
||||
BuildRequires: supermin-devel >= 5.1.12-4
|
||||
BuildRequires: supermin-devel >= 5.1.18
|
||||
BuildRequires: hivex-devel >= 1.2.7-7
|
||||
BuildRequires: ocaml-hivex-devel
|
||||
BuildRequires: perl(Pod::Simple)
|
||||
|
|
@ -179,17 +179,8 @@ BuildRequires: ntfs-3g ntfsprogs
|
|||
BuildRequires: syslinux syslinux-extlinux
|
||||
%endif
|
||||
|
||||
# For complicated reasons, this is required so that
|
||||
# /bin/kernel-install puts the kernel directly into /boot, instead of
|
||||
# into a /boot/<machine-id> subdirectory (in Fedora >= 23). Read the
|
||||
# kernel-install script to understand why.
|
||||
BuildRequires: grubby
|
||||
|
||||
# Minimum version containing fix for armv7 pwritev bug (RHBZ#1346070).
|
||||
BuildRequires: glibc >= 2.23.90-24.fc25
|
||||
|
||||
# For building the appliance.
|
||||
Requires: supermin >= 5.1.12
|
||||
Requires: supermin >= 5.1.18
|
||||
|
||||
# The daemon dependencies are not included automatically, because it
|
||||
# is buried inside the appliance, so list them here.
|
||||
|
|
@ -1166,6 +1157,8 @@ install -m 0644 utils/boot-benchmark/boot-benchmark.1 $RPM_BUILD_ROOT%{_mandir}/
|
|||
%{_mandir}/man1/virt-alignment-scan.1*
|
||||
%{_bindir}/virt-builder
|
||||
%{_mandir}/man1/virt-builder.1*
|
||||
%{_bindir}/virt-builder-repository
|
||||
%{_mandir}/man1/virt-builder-repository.1*
|
||||
%{_bindir}/virt-cat
|
||||
%{_mandir}/man1/virt-cat.1*
|
||||
%{_bindir}/virt-copy-in
|
||||
|
|
@ -1226,7 +1219,7 @@ install -m 0644 utils/boot-benchmark/boot-benchmark.1 $RPM_BUILD_ROOT%{_mandir}/
|
|||
|
||||
|
||||
%files -n virt-v2v
|
||||
%doc COPYING README v2v/TODO
|
||||
%doc COPYING README
|
||||
%{_bindir}/virt-v2v
|
||||
%{_bindir}/virt-v2v-copy-to-local
|
||||
%{_mandir}/man1/virt-v2v.1*
|
||||
|
|
@ -1382,6 +1375,55 @@ install -m 0644 utils/boot-benchmark/boot-benchmark.1 $RPM_BUILD_ROOT%{_mandir}/
|
|||
|
||||
|
||||
%changelog
|
||||
* Sat Sep 22 2018 Richard W.M. Jones <rjones@redhat.com> - 1:1.38.6-1
|
||||
- New upstream version 1.38.6.
|
||||
|
||||
* Fri Aug 10 2018 Richard W.M. Jones <rjones@redhat.com> - 1:1.38.4-1
|
||||
- New upstream version 1.38.4.
|
||||
|
||||
* Sat Jun 30 2018 Richard W.M. Jones <rjones@redhat.com> - 1:1.38.3-1
|
||||
- New upstream version 1.38.3.
|
||||
|
||||
* Wed May 16 2018 Richard W.M. Jones <rjones@redhat.com> - 1:1.38.2-1
|
||||
- New upstream version 1.38.2.
|
||||
|
||||
* Wed May 02 2018 Richard W.M. Jones <rjones@redhat.com> - 1:1.38.1-1
|
||||
- New upstream version 1.38.1.
|
||||
|
||||
* Fri Feb 09 2018 Richard W.M. Jones <rjones@redhat.com> - 1:1.38.0-1
|
||||
- New upstream version 1.38.0.
|
||||
- Enable tarball signing since we are on a stable branch.
|
||||
- Fix Source URLs.
|
||||
|
||||
* Tue Feb 06 2018 Richard W.M. Jones <rjones@redhat.com> - 1:1.37.37-1
|
||||
- New upstream version 1.37.37.
|
||||
|
||||
* Thu Jan 25 2018 Richard W.M. Jones <rjones@redhat.com> - 1:1.37.36-1
|
||||
- New upstream version 1.37.36.
|
||||
|
||||
* Sun Dec 10 2017 Richard W.M. Jones <rjones@redhat.com> - 1:1.37.35-1
|
||||
- New upstream version 1.37.35.
|
||||
- Remove upstream patch.
|
||||
- Add virt-builder-repository and man page.
|
||||
|
||||
* Sun Dec 3 2017 Richard W.M. Jones <rjones@redhat.com> - 1:1.37.34-3
|
||||
- Fix locking on NBD drives.
|
||||
|
||||
* Fri Nov 17 2017 Richard W.M. Jones <rjones@redhat.com> - 1:1.37.34-1
|
||||
- New upstream version 1.37.34.
|
||||
|
||||
* Thu Oct 19 2017 Richard W.M. Jones <rjones@redhat.com> - 1:1.37.31-1
|
||||
- New upstream version 1.37.31.
|
||||
|
||||
* Tue Oct 10 2017 Richard W.M. Jones <rjones@redhat.com> - 1:1.37.29-1
|
||||
- New upstream version 1.37.29.
|
||||
|
||||
* Thu Sep 28 2017 Richard W.M. Jones <rjones@redhat.com> - 1:1.37.28-1
|
||||
- New upstream version 1.37.28.
|
||||
|
||||
* Sat Sep 23 2017 Richard W.M. Jones <rjones@redhat.com> - 1:1.37.27-1
|
||||
- New upstream version 1.37.27.
|
||||
|
||||
* Sat Aug 19 2017 Richard W.M. Jones <rjones@redhat.com> - 1:1.37.21-2
|
||||
- Disable zfs subpackage on s390, s390x.
|
||||
|
||||
|
|
|
|||
3
sources
3
sources
|
|
@ -1 +1,2 @@
|
|||
SHA512 (libguestfs-1.37.21.tar.gz) = ac4856605d7221e7566f272d6e2b9f007df0babdcdc84c8107c70a287e279a74acee1b7504040b691dc8d38a84b8161d56ac993db7da84c07fbe173b8b62212b
|
||||
SHA512 (libguestfs-1.38.6.tar.gz) = 20a254f1d6a4628a11f42c08947d1165430a020030da7e6ee7b22859b552245e8f3822a2d86c60055878ca00d8f17d346a0ad8274e8f0bb03ef4a9410b9630f1
|
||||
SHA512 (libguestfs-1.38.6.tar.gz.sig) = 2ed7a7e7cfef10ae65cd81f71e47516c2722cda9906bb942b960bb56c20110fca5d98f6cc163972dd459801156a02d5f9ab0104cd0c4338a112d0f47f3ca6734
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue