Compare commits

..

22 commits

Author SHA1 Message Date
Richard W.M. Jones
1af61ccd9e New upstream version 1.38.6. 2018-09-22 13:32:53 +01:00
Richard W.M. Jones
7430aa7942 v2v/TODO was removed upstream.
(cherry picked from commit b92cecbe15)
2018-08-10 20:05:16 +01:00
Richard W.M. Jones
7a898164ba New upstream version 1.38.4.
(cherry picked from commit a799f54ec0)
2018-08-10 19:46:18 +01:00
Richard W.M. Jones
73edbaa799 New upstream version 1.38.3.
(cherry picked from commit 0bc5311e0e)
2018-06-30 11:26:17 +01:00
Richard W.M. Jones
e743343fb4 Upload signature.
(cherry picked from commit d9ec64bbb2)
2018-05-16 13:28:42 +01:00
Richard W.M. Jones
600fa01eb5 New upstream version 1.38.2.
(cherry picked from commit c0235de37f)
2018-05-16 13:28:38 +01:00
Richard W.M. Jones
242f2b6fb2 Add signature libguestfs-1.38.1.tar.gz.sig
(cherry picked from commit b11b0189ee)
2018-05-02 18:36:06 +01:00
Richard W.M. Jones
a07b87fa8b New upstream version 1.38.1.
(cherry picked from commit 9e3d614213)
2018-05-02 18:36:01 +01:00
Richard W.M. Jones
76365c7ae3 Enable tarball signing since we are on a stable branch.
Fix Source URLs.

(cherry picked from commit 605bf58332)
2018-02-09 16:43:00 +00:00
Richard W.M. Jones
7bad2553cb New upstream version 1.38.0.
(cherry picked from commit f8c98eab62)
2018-02-09 16:42:58 +00:00
Richard W.M. Jones
5c683288c2 New upstream version 1.37.37.
(cherry picked from commit 6657479671)
2018-02-06 22:13:45 +00:00
Richard W.M. Jones
40bece23a6 New upstream version 1.37.36.
(cherry picked from commit 90a1a50306)
2018-01-26 08:39:31 +00:00
Richard W.M. Jones
79b955a8f4 Add virt-builder-repository and man page.
(cherry picked from commit ca07dae173)
2017-12-10 13:08:41 +00:00
Richard W.M. Jones
9702fa4dc4 New upstream version 1.37.35.
Remove upstream patch.
2017-12-10 12:24:34 +00:00
Richard W.M. Jones
ef400b6081 Fix locking on NBD drives. 2017-12-06 18:23:20 +00:00
Richard W.M. Jones
49271abdc9 New upstream version 1.37.34. 2017-11-17 15:07:25 +00:00
Richard W.M. Jones
1c13a7f9f6 New upstream version 1.37.31.
(cherry picked from commit 9362d4e48c)
2017-10-19 16:26:59 +01:00
Richard W.M. Jones
05f053b406 New upstream version 1.37.29. 2017-10-10 10:03:35 +01:00
Richard W.M. Jones
926225417b New upstream version 1.37.28.
(cherry picked from commit d5790479a7)
2017-09-28 21:40:51 +01:00
Richard W.M. Jones
1a75a73bad Remove glibc BR referencing Fedora 25.
(cherry picked from commit c483e7c7c1)
2017-09-28 20:42:05 +01:00
Richard W.M. Jones
70a09ca16e Remove grubby dependency, no longer needed with newest supermin.
(cherry picked from commit 48421ed08e)
2017-09-28 20:42:02 +01:00
Richard W.M. Jones
369007e7a5 New upstream version 1.37.27. 2017-09-23 10:51:23 +01:00
10 changed files with 744 additions and 1358 deletions

View file

@ -8,7 +8,8 @@ list:
http://www.redhat.com/mailman/listinfo/libguestfs
This package comes with a lot of help and examples to get you started.
This Fedora package comes with a lot of help and examples to get you
started.
The first place to start are the manual pages. Type:
@ -19,19 +20,19 @@ The first place to start are the manual pages. Type:
man virt-cat # and other virt-* tools
If you install the libguestfs-devel package, then in the
/usr/share/doc/libguestfs-devel/ directory you will find other
documentation including:
/usr/share/doc/libguestfs-devel/ directory you will also
find:
- BUGS: list of open bugs in this version
- ChangeLog.gz: the detailed list of changes in this version
- ChangeLog: the detailed list of changes in this version
- HACKING: how to extend libguestfs
- ROADMAP: the roadmap for future versions
- TODO: ideas for extending libguestfs
- *.c: example C programs using the API
- *.xml.gz: example virt-inspector output (compressed)
- *.xml: example virt-inspector output
- virt-inspector.rng: virt-inspector RelaxNG schema
- *.rng: virt-inspector RelaxNG schema

10
bump-and-build.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh -
set -e
rpmdev-bumpspec -c "- Bump and rebuild." libguestfs.spec
git diff ||:
echo "Press ENTER to commit, push and rebuild."
read line
fedpkg commit -m "Bump and rebuild." -p
fedpkg build

View file

@ -1,56 +0,0 @@
#!/bin/bash -
set -e
# Maintainer script to copy patches from the git repo to the current
# directory. It's normally only used downstream (ie. in RHEL). Use
# it like this:
# ./copy-patches.sh
rhel_version=9.0.0
# Check we're in the right directory.
if [ ! -f libguestfs.spec ]; then
echo "$0: run this from the directory containing 'libguestfs.spec'"
exit 1
fi
git_checkout=$HOME/d/libguestfs-rhel-$rhel_version
if [ ! -d $git_checkout ]; then
echo "$0: $git_checkout does not exist"
echo "This script is only for use by the maintainer when preparing a"
echo "libguestfs release on RHEL."
exit 1
fi
# Get the base version of libguestfs.
version=`grep '^Version:' libguestfs.spec | awk '{print $2}'`
tag="v$version"
# Remove any existing patches.
git rm -f [0-9]*.patch ||:
rm -f [0-9]*.patch
# Get the patches.
(cd $git_checkout; rm -f [0-9]*.patch; git format-patch -N --submodule=diff $tag)
mv $git_checkout/[0-9]*.patch .
# Remove any not to be applied.
rm -f *NOT-FOR-RPM*.patch
# Add the patches.
git add [0-9]*.patch
# Print out the patch lines.
echo
echo "--- Copy the following text into libguestfs.spec file"
echo
echo "# Patches."
for f in [0-9]*.patch; do
n=`echo $f | awk -F- '{print $1}'`
echo "Patch$n: $f"
done
echo
echo "--- End of text"

View file

@ -1,6 +0,0 @@
--- !Policy
product_versions:
- rhel-*
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: xen-ci.brew-build.tier1.functional}

File diff suppressed because it is too large Load diff

View file

@ -1,5 +0,0 @@
# Ignore copy-patches.sh. It is an internal script we use to
# manage the patches.
upstream:
ignore:
- copy-patches.sh

View file

@ -1,2 +1,2 @@
SHA512 (libguestfs-1.58.0.tar.gz) = 67abbd37fe64935ae5cca13dbe1860fe2eab9df492fd134eacbdc1831e6034c849855e76118ce0002d3ac83205122947582dbe47b66f12b94dcb51155881501a
SHA512 (libguestfs-1.58.0.tar.gz.sig) = e07758ed3901f9ae95dace16cbb4de194dbbde788155efcde7982226785928d1805af6939f201d74770923ad55997f1d465f9594cb81bc2435c0ea882ce546d8
SHA512 (libguestfs-1.38.6.tar.gz) = 20a254f1d6a4628a11f42c08947d1165430a020030da7e6ee7b22859b552245e8f3822a2d86c60055878ca00d8f17d346a0ad8274e8f0bb03ef4a9410b9630f1
SHA512 (libguestfs-1.38.6.tar.gz.sig) = 2ed7a7e7cfef10ae65cd81f71e47516c2722cda9906bb942b960bb56c20110fca5d98f6cc163972dd459801156a02d5f9ab0104cd0c4338a112d0f47f3ca6734

View file

@ -1,10 +0,0 @@
#!/bin/bash -
set -e
set -x
# This only makes sure that libguestfs isn't totally broken.
# Fix libvirt.
systemctl restart virtqemud virtsecretd virtstoraged virtnetworkd
libguestfs-test-tool

View file

@ -1,14 +0,0 @@
# https://fedoraproject.org/wiki/CI/Tests
# https://fedoraproject.org/wiki/CI/Standard_Test_Roles
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
required_packages:
- libguestfs
- libvirt-daemon-kvm
tests:
- libguestfs-test-tool:
dir: .
run: ./run-libguestfs-test-tool.sh

View file

@ -7,7 +7,6 @@ obsoletes=1
gpgcheck=0
assumeyes=1
reposdir=/dev/null
modulesdir=@PWD@/modules
[local]
name=local