Re: [libvirt] Entering freeze for libvirt-1.2.19

2015-08-28 Thread Martin Kletzander

On Fri, Aug 28, 2015 at 06:25:01AM +0200, Michal Privoznik wrote:

On 27.08.2015 11:41, Martin Kletzander wrote:

On Thu, Aug 27, 2015 at 09:52:53AM +0800, Daniel Veillard wrote:


  So I have tagged rc1 in git and pushed signed tarball and rpms to
the usual place:
 ftp://libvirt.org/libvirt/

The release works just fine in my limited testing, but others should
try it out to check portability and more advanced functionalities.

I will likely push rc2 at the end of the week-end and the final release
on Tuesday or Wednesday, assuming no big issue is raised in the meantime.

 thanks for giving it a try.
 I also note that we have some CI test failing, not for core libvirt
but perl bindings, virt-manager, ... it would be good to investigate
before
we push the release:
 https://ci.centos.org/view/libvirt-project/



Having a quick look it seems there's still the rename API missing in
libvirt-python and that's why all the stuff on top of python is
failing.  I'll see what I can do, even though I'm out till end of the
week.


I don't know what you mean. I can see this in build/libvirt.py after I build 
libvirt-python:



Sorry for that, I based that solely on the CI which seems broken
because it works for me.  And not that it only works for me, I also
already tried using the rename API in python myself and it was
successful.  Sorry for the noise then.

Anyway, some things in the CI are still weirdly broken, and I don't
know if it's all related to the CI settings or not.  But it might not
be limiting for us.

Martin


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

Re: [libvirt] Entering freeze for libvirt-1.2.19

2015-08-28 Thread Daniel P. Berrange
On Fri, Aug 28, 2015 at 08:20:22AM +0200, Martin Kletzander wrote:
 On Fri, Aug 28, 2015 at 06:25:01AM +0200, Michal Privoznik wrote:
 On 27.08.2015 11:41, Martin Kletzander wrote:
 On Thu, Aug 27, 2015 at 09:52:53AM +0800, Daniel Veillard wrote:
 
   So I have tagged rc1 in git and pushed signed tarball and rpms to
 the usual place:
  ftp://libvirt.org/libvirt/
 
 The release works just fine in my limited testing, but others should
 try it out to check portability and more advanced functionalities.
 
 I will likely push rc2 at the end of the week-end and the final release
 on Tuesday or Wednesday, assuming no big issue is raised in the meantime.
 
  thanks for giving it a try.
  I also note that we have some CI test failing, not for core libvirt
 but perl bindings, virt-manager, ... it would be good to investigate
 before
 we push the release:
  https://ci.centos.org/view/libvirt-project/
 
 
 Having a quick look it seems there's still the rename API missing in
 libvirt-python and that's why all the stuff on top of python is
 failing.  I'll see what I can do, even though I'm out till end of the
 week.
 
 I don't know what you mean. I can see this in build/libvirt.py after I build 
 libvirt-python:
 
 
 Sorry for that, I based that solely on the CI which seems broken
 because it works for me.  And not that it only works for me, I also
 already tried using the rename API in python myself and it was
 successful.  Sorry for the noise then.
 
 Anyway, some things in the CI are still weirdly broken, and I don't
 know if it's all related to the CI settings or not.  But it might not
 be limiting for us.

Yeah, the CI is somewhat broken for the Perl binding too - both show
issues finding the correct libvirt.so that was just built from git,
so fail to resolve symbols correctly. I think this is a CI configuration
mistake / build root corruption, as it previously used to work fine
about a week ago.


Regards,
Daniel
-- 
|: http://berrange.com  -o-http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org  -o- http://virt-manager.org :|
|: http://autobuild.org   -o- http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org   -o-   http://live.gnome.org/gtk-vnc :|

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


Re: [libvirt] Entering freeze for libvirt-1.2.19

2015-08-27 Thread Michal Privoznik
On 27.08.2015 11:41, Martin Kletzander wrote:
 On Thu, Aug 27, 2015 at 09:52:53AM +0800, Daniel Veillard wrote:

   So I have tagged rc1 in git and pushed signed tarball and rpms to
 the usual place:
  ftp://libvirt.org/libvirt/

 The release works just fine in my limited testing, but others should
 try it out to check portability and more advanced functionalities.

 I will likely push rc2 at the end of the week-end and the final release
 on Tuesday or Wednesday, assuming no big issue is raised in the meantime.

  thanks for giving it a try.
  I also note that we have some CI test failing, not for core libvirt
 but perl bindings, virt-manager, ... it would be good to investigate
 before
 we push the release:
  https://ci.centos.org/view/libvirt-project/

 
 Having a quick look it seems there's still the rename API missing in
 libvirt-python and that's why all the stuff on top of python is
 failing.  I'll see what I can do, even though I'm out till end of the
 week.

I don't know what you mean. I can see this in build/libvirt.py after I build 
libvirt-python:

class virDomain(object):
def __init__(self, conn, _obj=None):
self._conn = conn
self._o = _obj

...
def rename(self, new_name, flags=0):
Rename a domain. New domain name is specified in the second
argument. Depending on each driver implementation it may be
required that domain is in a specific state.

There might be some attributes and/or elements in domain XML that if no
value provided at XML defining time, libvirt will derive their value 
from
the domain name. These are not updated by this API. Users are strongly
advised to change these after the rename was successful. 
ret = libvirtmod.virDomainRename(self._o, new_name, flags)
if ret == -1: raise libvirtError ('virDomainRename() failed', dom=self)
return ret


What's failing anyway?

Michal

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


Re: [libvirt] Entering freeze for libvirt-1.2.19

2015-08-27 Thread Martin Kletzander

On Thu, Aug 27, 2015 at 09:52:53AM +0800, Daniel Veillard wrote:


  So I have tagged rc1 in git and pushed signed tarball and rpms to
the usual place:
 ftp://libvirt.org/libvirt/

The release works just fine in my limited testing, but others should
try it out to check portability and more advanced functionalities.

I will likely push rc2 at the end of the week-end and the final release
on Tuesday or Wednesday, assuming no big issue is raised in the meantime.

 thanks for giving it a try.
 I also note that we have some CI test failing, not for core libvirt
but perl bindings, virt-manager, ... it would be good to investigate before
we push the release:
 https://ci.centos.org/view/libvirt-project/



Having a quick look it seems there's still the rename API missing in
libvirt-python and that's why all the stuff on top of python is
failing.  I'll see what I can do, even though I'm out till end of the
week.


 thanks !

Daniel

--
Daniel Veillard  | Open Source and Standards, Red Hat
veill...@redhat.com  | libxml Gnome XML XSLT toolkit  http://xmlsoft.org/
http://veillard.com/ | virtualization library  http://libvirt.org/

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


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

[libvirt] Entering freeze for libvirt-1.2.19

2015-08-26 Thread Daniel Veillard

   So I have tagged rc1 in git and pushed signed tarball and rpms to
the usual place:
  ftp://libvirt.org/libvirt/

 The release works just fine in my limited testing, but others should
try it out to check portability and more advanced functionalities.

 I will likely push rc2 at the end of the week-end and the final release
on Tuesday or Wednesday, assuming no big issue is raised in the meantime.

  thanks for giving it a try.
  I also note that we have some CI test failing, not for core libvirt
but perl bindings, virt-manager, ... it would be good to investigate before
we push the release:
  https://ci.centos.org/view/libvirt-project/

  thanks !

Daniel

-- 
Daniel Veillard  | Open Source and Standards, Red Hat
veill...@redhat.com  | libxml Gnome XML XSLT toolkit  http://xmlsoft.org/
http://veillard.com/ | virtualization library  http://libvirt.org/

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