- New upstream version 1.11.19.

- Remove upstream patch.
- Add Ukrainian (uk) man pages subpackage.
This commit is contained in:
Richard W.M. Jones 2011-07-18 13:02:56 +01:00
parent 28ba20e9d9
commit 0ed64160b5
4 changed files with 25 additions and 61 deletions

1
.gitignore vendored
View File

@ -84,3 +84,4 @@ libguestfs-1.5.3.tar.gz
/libguestfs-1.11.16.tar.gz
/libguestfs-1.11.17.tar.gz
/libguestfs-1.11.18.tar.gz
/libguestfs-1.11.19.tar.gz

View File

@ -1,49 +0,0 @@
From 9f135be96e21d899b36ef2287a6ba8cea9beb4ff Mon Sep 17 00:00:00 2001
From: "Richard W.M. Jones" <rjones@redhat.com>
Date: Fri, 15 Jul 2011 22:09:29 +0100
Subject: [PATCH] Fix test-guestfish-escapes regression test to work with
debug/trace enabled.
If debugging or tracing is enabled, extra messages are sent to stderr
which mess with this test. Remove the extra messages before checking
stderr.
This updates commit 617e7f6bafa7de2303c08e1715004aae3141c389.
---
regressions/test-guestfish-escapes.sh | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/regressions/test-guestfish-escapes.sh b/regressions/test-guestfish-escapes.sh
index 6f4f434..3ba37d2 100755
--- a/regressions/test-guestfish-escapes.sh
+++ b/regressions/test-guestfish-escapes.sh
@@ -20,7 +20,7 @@
set -e
-rm -f test.output test.error
+rm -f test.output test.error test.error.old
../fish/guestfish <<'EOF' 2>test.error | od > test.output
echo ""
@@ -47,6 +47,11 @@ echo "\100"
-echo """
EOF
+# Since trace and debug output also goes to stderr, we must
+# remove it before testing.
+mv test.error test.error.old
+grep -v '^libguestfs: ' < test.error.old > test.error
+
if [ "$(cat test.error)" != "\
guestfish: invalid escape sequence in string (starting at offset 0)
guestfish: invalid escape sequence in string (starting at offset 0)
@@ -75,4 +80,4 @@ if [ "$(cat test.output)" != "\
exit 1
fi
-rm -f test.output test.error
+rm -f test.output test.error test.error.old
--
1.7.5.2

View File

@ -29,8 +29,8 @@
Summary: Access and modify virtual machine disk images
Name: libguestfs
Epoch: 1
Version: 1.11.18
Release: 2%{?dist}
Version: 1.11.19
Release: 1%{?dist}
License: LGPLv2+
Group: Development/Libraries
URL: http://libguestfs.org/
@ -44,9 +44,6 @@ Patch0: libguestfs-1.7.13-no-fuse-test.patch
# See: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628522
Patch1: 0001-perl-Don-t-set-CCFLAGS.patch
# Upstream patch to fix regression test.
Patch2: 0001-Fix-test-guestfish-escapes-regression-test-to-work-w.patch
# Basic build requirements:
BuildRequires: /usr/bin/pod2man
BuildRequires: /usr/bin/pod2text
@ -481,12 +478,21 @@ Requires: php
php-%{name} contains PHP bindings for %{name}.
%package man-pages-uk
Summary: Ukrainian (uk) man pages for %{name}
Group: Development/Libraries
Requires: %{name} = %{epoch}:%{version}-%{release}
%description man-pages-uk
%{name}-man-pages-uk contains Ukrainian (uk) man pages
for %{name}.
%prep
%setup -q
%patch0 -p1
%patch1 -p1
%patch2 -p1
mkdir -p daemon/m4
@ -649,11 +655,6 @@ mv $RPM_BUILD_ROOT%{_docdir}/libguestfs installed-docs
# them back.
rm -rf $RPM_BUILD_ROOT%{_mandir}/ja/man{1,3}/
# Remove Ukrainian manpages, since these are not translated fully at
# the moment. When these are translated properly we intend to add
# them back.
rm -rf $RPM_BUILD_ROOT%{_mandir}/uk/man{1,3}/
# For the libguestfs-live-service subpackage install the systemd
# service and udev rules.
mkdir -p $RPM_BUILD_ROOT%{_unitdir}
@ -841,7 +842,18 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/php/modules/guestfs_php.so
%files man-pages-uk
%defattr(-,root,root,-)
%lang(uk) %{_mandir}/uk/man1/*.1*
%lang(uk) %{_mandir}/uk/man3/*.3*
%changelog
* Mon Jul 18 2011 Richard W.M. Jones <rjones@redhat.com> - 1:1.11.19-1
- New upstream version 1.11.19.
- Remove upstream patch.
- Add Ukrainian (uk) man pages subpackage.
* Fri Jul 15 2011 Richard W.M. Jones <rjones@redhat.com> - 1:1.11.18-2
- Add upstream patch to fix regression test.

View File

@ -1 +1 @@
8d4a28a129d2bf654f9242f6cfbb517e libguestfs-1.11.18.tar.gz
ac937d6d2518088dbf07f45feb4a27b9 libguestfs-1.11.19.tar.gz