Re: [libvirt] availability of release candidate 2 of 0.9.13

2012-06-29 Thread Jim Fehlig
Daniel Veillard wrote:
I just tagged the git tree and I pushed the tarball for rc2:
  ftp://libvirt.org/libvirt/libvirt-0.9.13-rc2.tar.gz

  the rpms are being built and will be pushed soon too
 I didn't get any feedback on other platforms or OSes for rc1,
 hopefully this will get a bit of testing before the actual
 release, probably on Monday early next week.
   

No problems noted with standard builds in the openSUSE build service

https://build.opensuse.org/package/show?package=libvirtproject=home%3Ajfehlig

Same for SLES builds on the internal build service, which includes more
architectures.

Regards,
Jim

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list


Re: [libvirt] availability of release candidate 2 of 0.9.13

2012-06-29 Thread Ruben Kerkhof
On Thu, Jun 28, 2012 at 5:36 AM, Daniel Veillard veill...@redhat.com wrote:
   I just tagged the git tree and I pushed the tarball for rc2:
     ftp://libvirt.org/libvirt/libvirt-0.9.13-rc2.tar.gz

Builds fine on OSX Lion.

Regards,

Ruben

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] availability of release candidate 2 of 0.9.13

2012-06-29 Thread Jason Helfman

On Fri, Jun 29, 2012 at 10:27:22PM +0200, Ruben Kerkhof thus spake:

On Thu, Jun 28, 2012 at 5:36 AM, Daniel Veillard veill...@redhat.com wrote:

  I just tagged the git tree and I pushed the tarball for rc2:
    ftp://libvirt.org/libvirt/libvirt-0.9.13-rc2.tar.gz


Builds fine on OSX Lion.

Regards,

Ruben


FreeBSD fails on this here:

include-dirs -Wunused -Wunknown-pragmas -Wstrict-aliasing -Wshadow 
-Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings 
-Waggregate-return -Wstrict-prototypes -Wold-style-definition 
-Wmissing-prototypes -Wmissing-declarations -Wmissing-noreturn 
-Wmissing-format-attribute -Wredundant-decls -Wnested-externs -Winline 
-Winvalid-pch -Wvolatile-register-var -Wdisabled-optimization -Wattributes 
-Wdeprecated-declarations -Wdiv-by-zero -Wendif-labels -Wextra 
-Wformat-extra-args -Wformat-zero-length -Wformat=2 -Wmultichar 
-Wnormalized=nfc -Woverflow -Wpointer-to-int-cast -Wpragmas -Wtrampolines 
-Wno-missing-field-initializers -Wno-sign-compare -Wno-format-nonliteral 
-fexceptions -fasynchronous-unwind-tables -fdiagnostics-show-option 
-funit-at-a-time -fipa-pure-const -O2 -pipe -fno-strict-aliasing -MT 
libvirt_conf_la-domain_conf.lo -MD -MP -MF 
.deps/libvirt_conf_la-domain_conf.Tpo -c conf/domain_conf.c  -fPIC -DPIC -o 
.libs/libvirt_conf_la-domain_conf.o
conf/domain_conf.c: In function 'virDomainDiskDefParseXML':
conf/domain_conf.c:3662: warning: null format string [-Wformat]
conf/domain_conf.c:3679: warning: null format string [-Wformat]
conf/domain_conf.c: In function 'virDomainFSDefParseXML':
conf/domain_conf.c:4252: error: 'ULONG_LONG_MAX' undeclared (first use in this 
function)
conf/domain_conf.c:4252: error: (Each undeclared identifier is reported only 
once
conf/domain_conf.c:4252: error: for each function it appears in.)
conf/domain_conf.c:4314: warning: null format string [-Wformat]
conf/domain_conf.c:4320: warning: null format string [-Wformat]
conf/domain_conf.c: In function 'virDomainDefParseXML':
conf/domain_conf.c:7982: warning: null format string [-Wformat]
gmake[3]: *** [libvirt_conf_la-domain_conf.lo] Error 1
gmake[3]: Leaving directory 
`/usr/local/workspace/ports/devel/libvirt/work/libvirt-0.9.13/src'
gmake[2]: *** [all] Error 2
gmake[2]: Leaving directory 
`/usr/local/workspace/ports/devel/libvirt/work/libvirt-0.9.13/src'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory 
`/usr/local/workspace/ports/devel/libvirt/work/libvirt-0.9.13'
gmake: *** [all] Error 2
*** Error code 1

-jgh

--
Jason Helfman
System Administrator
experts-exchange.com
http://www.experts-exchange.com/M_4830110.html
E4AD 7CF1 1396 27F6 79DD  4342 5E92 AD66 8C8C FBA5

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list


Re: [libvirt] availability of release candidate 2 of 0.9.13

2012-06-29 Thread Eric Blake
On 06/29/2012 02:47 PM, Jason Helfman wrote:

 FreeBSD fails on this here:
 

 conf/domain_conf.c: In function 'virDomainFSDefParseXML':
 conf/domain_conf.c:4252: error: 'ULONG_LONG_MAX' undeclared (first use
 in this function)

POSIX requires limits.h to spell it ULLONG_MAX, not ULONG_LONG_MAX.
We've got a bug in our code for using the non-standard name; I'll
propose a patch soon.

-- 
Eric Blake   ebl...@redhat.com+1-919-301-3266
Libvirt virtualization library http://libvirt.org





signature.asc
Description: OpenPGP digital signature
--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

Re: [libvirt] availability of release candidate 2 of 0.9.13

2012-06-29 Thread Jason Helfman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On Fri, Jun 29, 2012 at 03:07:52PM -0600, Eric Blake thus spake:
On 06/29/2012 02:47 PM, Jason Helfman wrote:

 FreeBSD fails on this here:


 conf/domain_conf.c: In function 'virDomainFSDefParseXML':
 conf/domain_conf.c:4252: error: 'ULONG_LONG_MAX' undeclared (first use
 in this function)

POSIX requires limits.h to spell it ULLONG_MAX, not ULONG_LONG_MAX.
We've got a bug in our code for using the non-standard name; I'll
propose a patch soon.


Here is a link to the build logs with the patch:
https://redports.org/buildarchive/20120630004335-48297/

- -jgh

- -- 
Jason Helfman
System Administrator
experts-exchange.com
http://www.experts-exchange.com/M_4830110.html
E4AD 7CF1 1396 27F6 79DD  4342 5E92 AD66 8C8C FBA5
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.19 (FreeBSD)

iF4EAREIAAYFAk/uTW0ACgkQXpKtZoyM+6X4swD+Ib387L0WgF0VumhmWRxBHb6Y
xXr3aYw6bheKGv0BopcA/jJjNhnBgXzeLUvbNmthcOt5n+uTTnXDKYQpd3eEDMvQ
=sIXU
-END PGP SIGNATURE-

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list


Re: [libvirt] availability of release candidate 2 of 0.9.13

2012-06-29 Thread Doug Goldstein
On Wed, Jun 27, 2012 at 10:36 PM, Daniel Veillard veill...@redhat.com wrote:
   I just tagged the git tree and I pushed the tarball for rc2:
     ftp://libvirt.org/libvirt/libvirt-0.9.13-rc2.tar.gz

  the rpms are being built and will be pushed soon too
 I didn't get any feedback on other platforms or OSes for rc1,
 hopefully this will get a bit of testing before the actual
 release, probably on Monday early next week.

  thanks !

 Daniel


Build fine on Gentoo, however it fails a test. Here's the stdout from
the overall run, I'll dig in deeper over the weekend.

TEST: virdrivermoduletest
  !!.  7   FAIL

-- 
Doug Goldstein

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list

[libvirt] availability of release candidate 2 of 0.9.13

2012-06-27 Thread Daniel Veillard
   I just tagged the git tree and I pushed the tarball for rc2:
 ftp://libvirt.org/libvirt/libvirt-0.9.13-rc2.tar.gz

 the rpms are being built and will be pushed soon too
I didn't get any feedback on other platforms or OSes for rc1,
hopefully this will get a bit of testing before the actual
release, probably on Monday early next week.

  thanks !

Daniel

-- 
Daniel Veillard  | libxml Gnome XML XSLT toolkit  http://xmlsoft.org/
dan...@veillard.com  | Rpmfind RPM search engine http://rpmfind.net/
http://veillard.com/ | virtualization library  http://libvirt.org/

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list