qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ci: Use libcap-ng
@ 2019-11-29 14:21 Dr. David Alan Gilbert (git)
  2019-11-29 14:35 ` Thomas Huth
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Dr. David Alan Gilbert (git) @ 2019-11-29 14:21 UTC (permalink / raw)
  To: qemu-devel, thuth, pbonzini

From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>

We currently enable libcap-dev in build-clang to pick up the 9p proxy
helper.  Paolo's patch changes that to use libcap-ng, so switch to using
it.  This also means we'll be testing the scsi pr manager and the bridge
helper.

Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index be57c6a454..62a9609798 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -59,7 +59,7 @@ build-user:
 
 build-clang:
  script:
- - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-dev
+ - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-ng-dev
       xfslibs-dev libiscsi-dev libnfs-dev libseccomp-dev gnutls-dev librbd-dev
  - ./configure --cc=clang --cxx=clang++ --enable-werror
       --target-list="alpha-softmmu arm-softmmu m68k-softmmu mips64-softmmu
-- 
2.23.0



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] ci: Use libcap-ng
  2019-11-29 14:21 [PATCH] ci: Use libcap-ng Dr. David Alan Gilbert (git)
@ 2019-11-29 14:35 ` Thomas Huth
  2019-11-29 14:46 ` Daniel P. Berrangé
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Thomas Huth @ 2019-11-29 14:35 UTC (permalink / raw)
  To: Dr. David Alan Gilbert (git), qemu-devel, pbonzini

On 29/11/2019 15.21, Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> 
> We currently enable libcap-dev in build-clang to pick up the 9p proxy
> helper.  Paolo's patch changes that to use libcap-ng, so switch to using
> it.  This also means we'll be testing the scsi pr manager and the bridge
> helper.
> 
> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
>  .gitlab-ci.yml | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index be57c6a454..62a9609798 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -59,7 +59,7 @@ build-user:
>  
>  build-clang:
>   script:
> - - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-dev
> + - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-ng-dev
>        xfslibs-dev libiscsi-dev libnfs-dev libseccomp-dev gnutls-dev librbd-dev
>   - ./configure --cc=clang --cxx=clang++ --enable-werror
>        --target-list="alpha-softmmu arm-softmmu m68k-softmmu mips64-softmmu

Acked-by: Thomas Huth <thuth@redhat.com>



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] ci: Use libcap-ng
  2019-11-29 14:21 [PATCH] ci: Use libcap-ng Dr. David Alan Gilbert (git)
  2019-11-29 14:35 ` Thomas Huth
@ 2019-11-29 14:46 ` Daniel P. Berrangé
  2019-11-29 15:51 ` Philippe Mathieu-Daudé
  2019-11-29 15:51 ` Philippe Mathieu-Daudé
  3 siblings, 0 replies; 7+ messages in thread
From: Daniel P. Berrangé @ 2019-11-29 14:46 UTC (permalink / raw)
  To: Dr. David Alan Gilbert (git); +Cc: pbonzini, thuth, qemu-devel

On Fri, Nov 29, 2019 at 02:21:26PM +0000, Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> 
> We currently enable libcap-dev in build-clang to pick up the 9p proxy
> helper.  Paolo's patch changes that to use libcap-ng, so switch to using
> it.  This also means we'll be testing the scsi pr manager and the bridge
> helper.
> 
> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
>  .gitlab-ci.yml | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index be57c6a454..62a9609798 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -59,7 +59,7 @@ build-user:
>  
>  build-clang:
>   script:
> - - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-dev
> + - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-ng-dev
>        xfslibs-dev libiscsi-dev libnfs-dev libseccomp-dev gnutls-dev librbd-dev
>   - ./configure --cc=clang --cxx=clang++ --enable-werror
>        --target-list="alpha-softmmu arm-softmmu m68k-softmmu mips64-softmmu

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] ci: Use libcap-ng
  2019-11-29 14:21 [PATCH] ci: Use libcap-ng Dr. David Alan Gilbert (git)
  2019-11-29 14:35 ` Thomas Huth
  2019-11-29 14:46 ` Daniel P. Berrangé
@ 2019-11-29 15:51 ` Philippe Mathieu-Daudé
  2019-11-29 15:51 ` Philippe Mathieu-Daudé
  3 siblings, 0 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-11-29 15:51 UTC (permalink / raw)
  To: Dr. David Alan Gilbert (git), qemu-devel, thuth, pbonzini

On 11/29/19 3:21 PM, Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> 
> We currently enable libcap-dev in build-clang to pick up the 9p proxy
> helper.  Paolo's patch changes that to use libcap-ng, so switch to using

It is not obvious you are referring to "virtfs-proxy-helper: switch from 
libcap to libcap-ng" he recently posted.

Since Greg is going to take Paolo's patch, I'd suggest he also takes 
this one, so he can update the commit description with either "the 
previous patch" or the commit sha1.

> it.  This also means we'll be testing the scsi pr manager and the bridge
> helper.

This is good news.

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
>   .gitlab-ci.yml | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index be57c6a454..62a9609798 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -59,7 +59,7 @@ build-user:
>   
>   build-clang:
>    script:
> - - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-dev
> + - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-ng-dev
>         xfslibs-dev libiscsi-dev libnfs-dev libseccomp-dev gnutls-dev librbd-dev
>    - ./configure --cc=clang --cxx=clang++ --enable-werror
>         --target-list="alpha-softmmu arm-softmmu m68k-softmmu mips64-softmmu
> 



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] ci: Use libcap-ng
  2019-11-29 14:21 [PATCH] ci: Use libcap-ng Dr. David Alan Gilbert (git)
                   ` (2 preceding siblings ...)
  2019-11-29 15:51 ` Philippe Mathieu-Daudé
@ 2019-11-29 15:51 ` Philippe Mathieu-Daudé
  2019-12-02 10:41   ` Greg Kurz
  3 siblings, 1 reply; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-11-29 15:51 UTC (permalink / raw)
  To: Dr. David Alan Gilbert (git), qemu-devel, thuth, pbonzini, Greg Kurz

On 11/29/19 3:21 PM, Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> 
> We currently enable libcap-dev in build-clang to pick up the 9p proxy
> helper.  Paolo's patch changes that to use libcap-ng, so switch to using

It is not obvious you are referring to "virtfs-proxy-helper: switch from 
libcap to libcap-ng" he recently posted.

Since Greg is going to take Paolo's patch, I'd suggest he also takes 
this one, so he can update the commit description with either "the 
previous patch" or the commit sha1.

> it.  This also means we'll be testing the scsi pr manager and the bridge
> helper.

This is good news.

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
>   .gitlab-ci.yml | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index be57c6a454..62a9609798 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -59,7 +59,7 @@ build-user:
>   
>   build-clang:
>    script:
> - - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-dev
> + - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-ng-dev
>         xfslibs-dev libiscsi-dev libnfs-dev libseccomp-dev gnutls-dev librbd-dev
>    - ./configure --cc=clang --cxx=clang++ --enable-werror
>         --target-list="alpha-softmmu arm-softmmu m68k-softmmu mips64-softmmu
> 



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] ci: Use libcap-ng
  2019-11-29 15:51 ` Philippe Mathieu-Daudé
@ 2019-12-02 10:41   ` Greg Kurz
  2019-12-02 10:44     ` Thomas Huth
  0 siblings, 1 reply; 7+ messages in thread
From: Greg Kurz @ 2019-12-02 10:41 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: pbonzini, thuth, Dr. David Alan Gilbert (git), qemu-devel

On Fri, 29 Nov 2019 16:51:29 +0100
Philippe Mathieu-Daudé <philmd@redhat.com> wrote:

> On 11/29/19 3:21 PM, Dr. David Alan Gilbert (git) wrote:
> > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> > 
> > We currently enable libcap-dev in build-clang to pick up the 9p proxy
> > helper.  Paolo's patch changes that to use libcap-ng, so switch to using
> 
> It is not obvious you are referring to "virtfs-proxy-helper: switch from 
> libcap to libcap-ng" he recently posted.
> 
> Since Greg is going to take Paolo's patch, I'd suggest he also takes 
> this one, so he can update the commit description with either "the 
> previous patch" or the commit sha1.
> 

I'm okay to take this one and to adapt the changelog if I get an ack from
Thomas.

> > it.  This also means we'll be testing the scsi pr manager and the bridge
> > helper.
> 
> This is good news.
> 
> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> 
> > Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> > ---
> >   .gitlab-ci.yml | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> > index be57c6a454..62a9609798 100644
> > --- a/.gitlab-ci.yml
> > +++ b/.gitlab-ci.yml
> > @@ -59,7 +59,7 @@ build-user:
> >   
> >   build-clang:
> >    script:
> > - - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-dev
> > + - apt-get install -y -qq clang libsdl2-dev libattr1-dev libcap-ng-dev
> >         xfslibs-dev libiscsi-dev libnfs-dev libseccomp-dev gnutls-dev librbd-dev
> >    - ./configure --cc=clang --cxx=clang++ --enable-werror
> >         --target-list="alpha-softmmu arm-softmmu m68k-softmmu mips64-softmmu
> > 
> 



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] ci: Use libcap-ng
  2019-12-02 10:41   ` Greg Kurz
@ 2019-12-02 10:44     ` Thomas Huth
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Huth @ 2019-12-02 10:44 UTC (permalink / raw)
  To: Greg Kurz, Philippe Mathieu-Daudé
  Cc: pbonzini, Dr. David Alan Gilbert (git), qemu-devel

On 02/12/2019 11.41, Greg Kurz wrote:
> On Fri, 29 Nov 2019 16:51:29 +0100
> Philippe Mathieu-Daudé <philmd@redhat.com> wrote:
> 
>> On 11/29/19 3:21 PM, Dr. David Alan Gilbert (git) wrote:
>>> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
>>>
>>> We currently enable libcap-dev in build-clang to pick up the 9p proxy
>>> helper.  Paolo's patch changes that to use libcap-ng, so switch to using
>>
>> It is not obvious you are referring to "virtfs-proxy-helper: switch from 
>> libcap to libcap-ng" he recently posted.
>>
>> Since Greg is going to take Paolo's patch, I'd suggest he also takes 
>> this one, so he can update the commit description with either "the 
>> previous patch" or the commit sha1.
>>
> 
> I'm okay to take this one and to adapt the changelog if I get an ack from
> Thomas.

Feel free to recycle my Ack from here:

https://lists.gnu.org/archive/html/qemu-devel/2019-11/msg05178.html

 Cheers,
  Thomas



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-12-02 10:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-29 14:21 [PATCH] ci: Use libcap-ng Dr. David Alan Gilbert (git)
2019-11-29 14:35 ` Thomas Huth
2019-11-29 14:46 ` Daniel P. Berrangé
2019-11-29 15:51 ` Philippe Mathieu-Daudé
2019-11-29 15:51 ` Philippe Mathieu-Daudé
2019-12-02 10:41   ` Greg Kurz
2019-12-02 10:44     ` Thomas Huth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).