forked from pool/libvirt
This commit is contained in:
parent
05e99c9dff
commit
845bf6072a
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1cbbd058b96058dae5fb5158b6b0fb20fc8c7070bdaa940c6bb0a90149e6ef08
|
||||
size 1333570
|
3
libvirt-0.3.3.tar.bz2
Normal file
3
libvirt-0.3.3.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:16a768338a261659cf3278f502a8741578cd654ecfee6dcd6a5425b6e1d18927
|
||||
size 1497646
|
@ -1,15 +0,0 @@
|
||||
removes incomplete check. Without it autoconf will fail.
|
||||
================================================================================
|
||||
Index: configure.in
|
||||
===================================================================
|
||||
--- configure.in.orig
|
||||
+++ configure.in
|
||||
@@ -232,7 +232,7 @@ AC_ARG_WITH(libxml, [ --with-libxml=[PF
|
||||
if test "z$with_libxml" = "zno" ; then
|
||||
AC_MSG_CHECKING(for libxml2 libraries >= $LIBXML_MIN_VERSION)
|
||||
AC_MSG_ERROR(libxml2 >= $LIBXML_MIN_VERSION is required for $XMLSEC_PACKAGE)
|
||||
-elif test "z$with_libxml" = "z" -a "z$PKG_CONFIG_ENABLED" = "zyes" ; then
|
||||
+elif test "z$with_libxml" = "z" ; then
|
||||
PKG_CHECK_MODULES(LIBXML, libxml-2.0 >= $LIBXML_MIN_VERSION,
|
||||
[LIBXML_FOUND=yes],
|
||||
[LIBXML_FOUND=no])
|
@ -1,3 +1,20 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 9 14:00:25 MDT 2007 - jfehlig@novell.com
|
||||
|
||||
- Updated to libvirt 0.3.3
|
||||
- Avahi mDNS daemon export
|
||||
- NUMA support
|
||||
- Bug fixes
|
||||
- Cleanup rpmlint warnings
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 8 09:56:02 MDT 2007 - jfehlig@novell.com
|
||||
|
||||
- Removed 'jobs' option from make invocation in spec file. Appears
|
||||
to be a subtle dependency issue in one of the makefiles which is
|
||||
causing problems with generation of python bindings when jobs > 1.
|
||||
Bug #329032.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 20 17:45:13 MDT 2007 - jfehlig@novell.com
|
||||
|
||||
|
29
libvirt.spec
29
libvirt.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package libvirt (Version 0.3.0)
|
||||
# spec file for package libvirt (Version 0.3.3)
|
||||
#
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
@ -11,19 +11,18 @@
|
||||
# norootforbuild
|
||||
|
||||
Name: libvirt
|
||||
BuildRequires: fdupes gettext gnutls-devel libxml2-devel ncurses-devel pkg-config python python-devel readline-devel xen-devel xhtml-dtd
|
||||
BuildRequires: bridge-utils fdupes gettext gnutls-devel libxml2-devel ncurses-devel pkg-config python-devel readline-devel xen-devel xhtml-dtd
|
||||
# Only for directory ownership:
|
||||
BuildRequires: gtk-doc
|
||||
URL: http://libvirt.org/
|
||||
Url: http://libvirt.org/
|
||||
License: LGPL v2 or later
|
||||
Group: Development/Libraries/C and C++
|
||||
Autoreqprov: yes
|
||||
Version: 0.3.0
|
||||
Release: 15
|
||||
AutoReqProv: yes
|
||||
Version: 0.3.3
|
||||
Release: 1
|
||||
Summary: A C toolkit to interract with the virtualization capabilities of Linux
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
Source1: libvirtd.init
|
||||
Patch: libvirt-cflags.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
ExclusiveArch: %ix86 x86_64
|
||||
%define _libexecdir %{_prefix}/lib/%{name}
|
||||
@ -90,7 +89,6 @@ Authors:
|
||||
Summary: A C toolkit to interract with the virtualization capabilities of Linux
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %{name} = %{version}
|
||||
|
||||
%py_requires
|
||||
|
||||
%description python
|
||||
@ -111,14 +109,13 @@ Authors:
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch
|
||||
rm po/no.*
|
||||
|
||||
%build
|
||||
autoreconf -f -i
|
||||
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
||||
%configure
|
||||
make %{?jobs:-j%jobs} DOCS_DIR=%{_docdir}/%{name}-python EXAMPLE_DIR=%{_docdir}/%{name}-python/examples HTML_DIR=%{_docdir}/%{name}
|
||||
make DOCS_DIR=%{_docdir}/%{name}-python EXAMPLE_DIR=%{_docdir}/%{name}-python/examples HTML_DIR=%{_docdir}/%{name}
|
||||
cd docs/examples ; make index.html ; cd ../..
|
||||
|
||||
%install
|
||||
@ -213,8 +210,18 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%doc %{_docdir}/%{name}-python
|
||||
%{py_sitedir}/libvirt.py*
|
||||
%{py_sitedir}/libvirtmod*
|
||||
|
||||
%changelog
|
||||
* Tue Oct 09 2007 - jfehlig@novell.com
|
||||
- Updated to libvirt 0.3.3
|
||||
- Avahi mDNS daemon export
|
||||
- NUMA support
|
||||
- Bug fixes
|
||||
- Cleanup rpmlint warnings
|
||||
* Mon Oct 08 2007 - jfehlig@novell.com
|
||||
- Removed 'jobs' option from make invocation in spec file. Appears
|
||||
to be a subtle dependency issue in one of the makefiles which is
|
||||
causing problems with generation of python bindings when jobs > 1.
|
||||
Bug #329032.
|
||||
* Mon Aug 20 2007 - jfehlig@novell.com
|
||||
- Added init script for libvirtd. libvirtd is needed to support
|
||||
management of qemu/kvm guests. Some Xen networking is handled
|
||||
|
@ -5,7 +5,7 @@
|
||||
#
|
||||
### BEGIN INIT INFO
|
||||
# Provides: libvirtd
|
||||
# Should-Start: xend
|
||||
# Should-Start: $remote_fs xend
|
||||
# Default-Start: 3 5
|
||||
# Default-Stop: 0 1 2 4 6
|
||||
# Short-Description: daemon for libvirt virtualization API
|
||||
|
Loading…
Reference in New Issue
Block a user