unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add libosinfo.
@ 2016-02-13 22:28 rennes
  2016-02-16 13:24 ` Ricardo Wurmus
  0 siblings, 1 reply; 6+ messages in thread
From: rennes @ 2016-02-13 22:28 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 276 bytes --]

Hi,
i attached libosinfo patch required for GNOME Boxes.

Considerations:

  a) In the source i used 
"https://fedorahosted.org/releases/l/i/libosinfo" instead 
"mirror://gnome/sources/".
  b) In native inputs, i used "vala" instead "glib:bin"; i follow the 
README.

Thanks.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-libosinfo.patch --]
[-- Type: text/x-diff; name=0001-gnu-Add-libosinfo.patch, Size: 2349 bytes --]

From 073a183499bd764b0b0efc246748638c6e4d3aeb Mon Sep 17 00:00:00 2001
From: Rene Saavedra <rennes@openmailbox.org>
Date: Sat, 13 Feb 2016 16:23:10 -0600
Subject: [PATCH] gnu: Add libosinfo.

* gnu/packages/gnome.scm (libosinfo): New variable.

---
 gnu/packages/gnome.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 49e6197..2d7ca89 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -93,6 +93,7 @@
   #:use-module (gnu packages tls)
   #:use-module (gnu packages web)
   #:use-module (gnu packages webkit)
+  #:use-module (gnu packages wget)
   #:use-module (gnu packages xorg)
   #:use-module (gnu packages xdisorg)
   #:use-module (gnu packages freedesktop)
@@ -4648,3 +4649,37 @@ as SASL, TLS and VeNCrypt.  Additionally it supports encoding extensions.")
 design and behaviour, giving the user a simple way to navigate and manage its
 files.")
     (license license:gpl2+)))
+
+(define-public libosinfo
+  (package
+    (name "libosinfo")
+    (version "0.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://fedorahosted.org/releases/l/i/libosinfo/"
+                            name "-" version ".tar.gz"))
+       (sha256
+       (base32
+        "1g7g5hc4lhi4y0j3mbcj19hawlqkflni1zk4aggrx49fg5l392jk"))))
+    (build-system glib-or-gtk-build-system)
+    (native-inputs
+     `(("check" ,check)
+       ("intltool" ,intltool)
+       ("libsoup" ,libsoup)
+       ("pkg-config" ,pkg-config)
+       ("vala" ,vala)
+       ("wget" ,wget)))
+    (inputs
+     `(("libxslt" ,libxslt)))
+    (home-page "https://libosinfo.org")
+    (synopsis "Library for managing information about operating systems")
+    (description
+     "libosinfo is a GObject based library API for managing information about
+operating systems, hypervisors and the (virtual) hardware devices they can
+support.  It includes a database containing device metadata and provides APIs
+to match/identify optimal devices for deploying an operating system on a
+hypervisor.  Via the magic of GObject Introspection, the API is available in all
+common programming languages with demos for javascript (GJS/Seed) and python
+(PyGObject).  Also provided are Vala bindings.")
+    (license license:lgpl2.1+)))
-- 
2.6.3


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

* Re: [PATCH] gnu: Add libosinfo.
  2016-02-13 22:28 [PATCH] gnu: Add libosinfo rennes
@ 2016-02-16 13:24 ` Ricardo Wurmus
  2016-02-18 15:00   ` rennes
  0 siblings, 1 reply; 6+ messages in thread
From: Ricardo Wurmus @ 2016-02-16 13:24 UTC (permalink / raw)
  To: rennes; +Cc: guix-devel


rennes@openmailbox.org writes:

> i attached libosinfo patch required for GNOME Boxes.

Thank you very much!  Below I’ll add a couple of comments.  I’m not sure
about a couple of things and I hope you can shed some light on these
issues.

> Considerations:
>
>   a) In the source i used 
> "https://fedorahosted.org/releases/l/i/libosinfo" instead 
> "mirror://gnome/sources/".

The project home page points to fedorahosted.org for downloading
releases.  I don’t even find the libosinfo sources on ftp.gnome.org, so
I think your choice is completely fine.

>   b) In native inputs, i used "vala" instead "glib:bin"; i follow the 
> README.

I don’t understand what you mean.  Vala and glib:bin are not the same
thing.  Following the README is a good idea.  If we don’t need
“glib:bin” then it’s the right thing not to add it.

> From 073a183499bd764b0b0efc246748638c6e4d3aeb Mon Sep 17 00:00:00 2001
> From: Rene Saavedra <rennes@openmailbox.org>
> Date: Sat, 13 Feb 2016 16:23:10 -0600
> Subject: [PATCH] gnu: Add libosinfo.

> * gnu/packages/gnome.scm (libosinfo): New variable.

OK.

> +
> +(define-public libosinfo
> +  (package
> +    (name "libosinfo")
> +    (version "0.3.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://fedorahosted.org/releases/l/i/libosinfo/"
> +                            name "-" version ".tar.gz"))
> +       (sha256
> +       (base32
> +        "1g7g5hc4lhi4y0j3mbcj19hawlqkflni1zk4aggrx49fg5l392jk"))))

The indentation of the “(base32” expression is wrong; the opening
parenthesis should be aligned with the ‘s’ of “(sha256”.  (Don’t worry
about this too much — I can fix this before pushing if you don’t get it
right.)

> +    (build-system glib-or-gtk-build-system)

Is this necessary or can we use the simpler “gnu-build-system” instead?

> +    (native-inputs
> +     `(("check" ,check)
> +       ("intltool" ,intltool)
> +       ("libsoup" ,libsoup)
> +       ("pkg-config" ,pkg-config)
> +       ("vala" ,vala)
> +       ("wget" ,wget)))

Why are “wget” and “libsoup” native inputs?  In the build environment
there is no network access, so wget cannot be used to download anything.
Is libosinfo linked with libsoup?  If so, it should be a regular input,
not among the native-inputs.

> +    (inputs
> +     `(("libxslt" ,libxslt)))

Does it link with libxslt?  Or is it used at build time only (e.g. for
building manuals from XML sources)?

> +    (home-page "https://libosinfo.org")
> +    (synopsis "Library for managing information about operating systems")
> +    (description
> +     "libosinfo is a GObject based library API for managing information about
> +operating systems, hypervisors and the (virtual) hardware devices they can
> +support.  It includes a database containing device metadata and provides APIs
> +to match/identify optimal devices for deploying an operating system on a
> +hypervisor.  Via the magic of GObject Introspection, the API is available in all
> +common programming languages with demos for javascript (GJS/Seed) and python
> +(PyGObject).  Also provided are Vala bindings.")

I would cut “the magic of”.  Please also replace “javascript” with
“JavaScript” and “python” with “Python”.  Are the examples and the Vala
bindings actually installed?  I see that gobject-introspection is not
among the inputs, so I wonder if 

> +    (license license:lgpl2.1+)))

At least “tools/osinfo-query.c” has a license header that says it’s
released under GPLv2+.  It is better to make the license field hold a
list of “(license:gpl2+ license:lgpl2.1+)” with a comment above it that
explains what files are under GPL (the tools) and what files are LGPL
(the library).

Could you please send an updated patch (after clarifying the points
above if they are confusing/contentious)?

Thanks again for the patch!

~~ Ricardo

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

* Re: [PATCH] gnu: Add libosinfo.
  2016-02-16 13:24 ` Ricardo Wurmus
@ 2016-02-18 15:00   ` rennes
  2016-08-01 14:50     ` ng0
  0 siblings, 1 reply; 6+ messages in thread
From: rennes @ 2016-02-18 15:00 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 4939 bytes --]

On 2016-02-16 07:24, Ricardo Wurmus wrote:
> rennes@openmailbox.org writes:
> 
>> i attached libosinfo patch required for GNOME Boxes.
> 
> Thank you very much!  Below I’ll add a couple of comments.  I’m not 
> sure
> about a couple of things and I hope you can shed some light on these
> issues.
> 
>> Considerations:
>> 
>>   a) In the source i used
>> "https://fedorahosted.org/releases/l/i/libosinfo" instead
>> "mirror://gnome/sources/".
> 
> The project home page points to fedorahosted.org for downloading
> releases.  I don’t even find the libosinfo sources on ftp.gnome.org, so
> I think your choice is completely fine.
> 
>>   b) In native inputs, i used "vala" instead "glib:bin"; i follow the
>> README.
> 
> I don’t understand what you mean.  Vala and glib:bin are not the same
> thing.  Following the README is a good idea.  If we don’t need
> “glib:bin” then it’s the right thing not to add it.
> 
>> From 073a183499bd764b0b0efc246748638c6e4d3aeb Mon Sep 17 00:00:00 2001
>> From: Rene Saavedra <rennes@openmailbox.org>
>> Date: Sat, 13 Feb 2016 16:23:10 -0600
>> Subject: [PATCH] gnu: Add libosinfo.
> 
>> * gnu/packages/gnome.scm (libosinfo): New variable.
> 
> OK.
> 
>> +
>> +(define-public libosinfo
>> +  (package
>> +    (name "libosinfo")
>> +    (version "0.3.0")
>> +    (source
>> +     (origin
>> +       (method url-fetch)
>> +       (uri (string-append 
>> "https://fedorahosted.org/releases/l/i/libosinfo/"
>> +                            name "-" version ".tar.gz"))
>> +       (sha256
>> +       (base32
>> +        "1g7g5hc4lhi4y0j3mbcj19hawlqkflni1zk4aggrx49fg5l392jk"))))
> 
> The indentation of the “(base32” expression is wrong; the opening
> parenthesis should be aligned with the ‘s’ of “(sha256”.  (Don’t worry
> about this too much — I can fix this before pushing if you don’t get it
> right.)
> 
>> +    (build-system glib-or-gtk-build-system)
> 
> Is this necessary or can we use the simpler “gnu-build-system” instead?
> 
>> +    (native-inputs
>> +     `(("check" ,check)
>> +       ("intltool" ,intltool)
>> +       ("libsoup" ,libsoup)
>> +       ("pkg-config" ,pkg-config)
>> +       ("vala" ,vala)
>> +       ("wget" ,wget)))
> 
> Why are “wget” and “libsoup” native inputs?  In the build environment
> there is no network access, so wget cannot be used to download 
> anything.
> Is libosinfo linked with libsoup?  If so, it should be a regular input,
> not among the native-inputs.
> 
>> +    (inputs
>> +     `(("libxslt" ,libxslt)))
> 
> Does it link with libxslt?  Or is it used at build time only (e.g. for
> building manuals from XML sources)?
> 
>> +    (home-page "https://libosinfo.org")
>> +    (synopsis "Library for managing information about operating 
>> systems")
>> +    (description
>> +     "libosinfo is a GObject based library API for managing 
>> information about
>> +operating systems, hypervisors and the (virtual) hardware devices 
>> they can
>> +support.  It includes a database containing device metadata and 
>> provides APIs
>> +to match/identify optimal devices for deploying an operating system 
>> on a
>> +hypervisor.  Via the magic of GObject Introspection, the API is 
>> available in all
>> +common programming languages with demos for javascript (GJS/Seed) and 
>> python
>> +(PyGObject).  Also provided are Vala bindings.")
> 
> I would cut “the magic of”.  Please also replace “javascript” with
> “JavaScript” and “python” with “Python”.  Are the examples and the Vala
> bindings actually installed?  I see that gobject-introspection is not
> among the inputs, so I wonder if
> 
>> +    (license license:lgpl2.1+)))
> 
> At least “tools/osinfo-query.c” has a license header that says it’s
> released under GPLv2+.  It is better to make the license field hold a
> list of “(license:gpl2+ license:lgpl2.1+)” with a comment above it that
> explains what files are under GPL (the tools) and what files are LGPL
> (the library).
> 
> Could you please send an updated patch (after clarifying the points
> above if they are confusing/contentious)?
> 
> Thanks again for the patch!
> 
> ~~ Ricardo


Hi Ricardo,

I made changes to the patch. I generated the patch for the file 
"gnu/packages/gnome.scm".

Explanations/ questions:

  a) I replace "build-system glib-or-gtk-build-system", in this case is a 
library(not GNOME applications); then i think is convenient use 
"build-system gnu-build-system".
  b) I don't know exactly the function in the package "libxslt", but is 
required(README). I can see the package "libxslt" in the output of the 
command "./pre-inst-env guix size libosinfo". I will look for more 
documentation.
  c) The examples are not installed, sorry for my mistake in the 
description. I removed that part.


Thanks


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-libosinfo.patch --]
[-- Type: text/x-diff; name=0001-gnu-Add-libosinfo.patch, Size: 2107 bytes --]

From 23b88e547c0950f0706dd240071f5953eb86ea00 Mon Sep 17 00:00:00 2001
From: Rene Saavedra <rennes@openmailbox.org>
Date: Thu, 18 Feb 2016 08:22:04 -0600
Subject: [PATCH] gnu: Add libosinfo.

---
 gnu/packages/gnome.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 363d920..d24fd41 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4711,6 +4711,41 @@ can add your own files to the collection.")
                    license:cc-by-sa2.0
                    license:cc-by-sa3.0))))
 
+(define-public libosinfo
+  (package
+    (name "libosinfo")
+    (version "0.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://fedorahosted.org/releases/l/i/libosinfo/"
+                           name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1g7g5hc4lhi4y0j3mbcj19hawlqkflni1zk4aggrx49fg5l392jk"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("check" ,check)
+       ("glib:bin" ,glib "bin") ;; XXX: Required for glib-mkenums.
+       ("intltool" ,intltool)
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("gobject-introspection" ,gobject-introspection)
+       ("libsoup" ,libsoup)
+       ("libxslt" ,libxslt)
+       ("wget" ,wget)))  ;; XXX: Required during make install.
+    (home-page "https://libosinfo.org")
+    (synopsis "Library for managing information about operating systems")
+    (description
+     "Libosinfo is a GObject based library API for managing information about
+operating systems, hypervisors and the (virtual) hardware devices they can
+support.  It includes a database containing device metadata and provides APIs
+to match/identify optimal devices for deploying an operating system on a
+hypervisor.  Via GObject Introspection, the API is available in all common
+programming languages.")
+    (license (list license:gpl2+
+                   license:lgpl2.1+)))) ;; XXX: for libraries(COPYING.LIB).
+
 (define-public gnome
   (package
     (name "gnome")
-- 
2.6.3


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

* Re: [PATCH] gnu: Add libosinfo.
  2016-02-18 15:00   ` rennes
@ 2016-08-01 14:50     ` ng0
  2016-08-01 15:01       ` Ricardo Wurmus
  0 siblings, 1 reply; 6+ messages in thread
From: ng0 @ 2016-08-01 14:50 UTC (permalink / raw)
  To: rennes, Ricardo Wurmus; +Cc: guix-devel

Hi Rene and Ricardo,

I found this contribution on my search for forgotten
packages/contributions.

Rene, was this simply forgotten or left due to whatever reasons, or do
you want someone else to move this over the finnishing line?

Thanks,
ng0

rennes@openmailbox.org writes:

> On 2016-02-16 07:24, Ricardo Wurmus wrote:
>> rennes@openmailbox.org writes:
>> 
>>> i attached libosinfo patch required for GNOME Boxes.
>> 
>> Thank you very much!  Below I’ll add a couple of comments.  I’m not 
>> sure
>> about a couple of things and I hope you can shed some light on these
>> issues.
>> 
>>> Considerations:
>>> 
>>>   a) In the source i used
>>> "https://fedorahosted.org/releases/l/i/libosinfo" instead
>>> "mirror://gnome/sources/".
>> 
>> The project home page points to fedorahosted.org for downloading
>> releases.  I don’t even find the libosinfo sources on ftp.gnome.org, so
>> I think your choice is completely fine.
>> 
>>>   b) In native inputs, i used "vala" instead "glib:bin"; i follow the
>>> README.
>> 
>> I don’t understand what you mean.  Vala and glib:bin are not the same
>> thing.  Following the README is a good idea.  If we don’t need
>> “glib:bin” then it’s the right thing not to add it.
>> 
>>> From 073a183499bd764b0b0efc246748638c6e4d3aeb Mon Sep 17 00:00:00 2001
>>> From: Rene Saavedra <rennes@openmailbox.org>
>>> Date: Sat, 13 Feb 2016 16:23:10 -0600
>>> Subject: [PATCH] gnu: Add libosinfo.
>> 
>>> * gnu/packages/gnome.scm (libosinfo): New variable.
>> 
>> OK.
>> 
>>> +
>>> +(define-public libosinfo
>>> +  (package
>>> +    (name "libosinfo")
>>> +    (version "0.3.0")
>>> +    (source
>>> +     (origin
>>> +       (method url-fetch)
>>> +       (uri (string-append 
>>> "https://fedorahosted.org/releases/l/i/libosinfo/"
>>> +                            name "-" version ".tar.gz"))
>>> +       (sha256
>>> +       (base32
>>> +        "1g7g5hc4lhi4y0j3mbcj19hawlqkflni1zk4aggrx49fg5l392jk"))))
>> 
>> The indentation of the “(base32” expression is wrong; the opening
>> parenthesis should be aligned with the ‘s’ of “(sha256”.  (Don’t worry
>> about this too much — I can fix this before pushing if you don’t get it
>> right.)
>> 
>>> +    (build-system glib-or-gtk-build-system)
>> 
>> Is this necessary or can we use the simpler “gnu-build-system” instead?
>> 
>>> +    (native-inputs
>>> +     `(("check" ,check)
>>> +       ("intltool" ,intltool)
>>> +       ("libsoup" ,libsoup)
>>> +       ("pkg-config" ,pkg-config)
>>> +       ("vala" ,vala)
>>> +       ("wget" ,wget)))
>> 
>> Why are “wget” and “libsoup” native inputs?  In the build environment
>> there is no network access, so wget cannot be used to download 
>> anything.
>> Is libosinfo linked with libsoup?  If so, it should be a regular input,
>> not among the native-inputs.
>> 
>>> +    (inputs
>>> +     `(("libxslt" ,libxslt)))
>> 
>> Does it link with libxslt?  Or is it used at build time only (e.g. for
>> building manuals from XML sources)?
>> 
>>> +    (home-page "https://libosinfo.org")
>>> +    (synopsis "Library for managing information about operating 
>>> systems")
>>> +    (description
>>> +     "libosinfo is a GObject based library API for managing 
>>> information about
>>> +operating systems, hypervisors and the (virtual) hardware devices 
>>> they can
>>> +support.  It includes a database containing device metadata and 
>>> provides APIs
>>> +to match/identify optimal devices for deploying an operating system 
>>> on a
>>> +hypervisor.  Via the magic of GObject Introspection, the API is 
>>> available in all
>>> +common programming languages with demos for javascript (GJS/Seed) and 
>>> python
>>> +(PyGObject).  Also provided are Vala bindings.")
>> 
>> I would cut “the magic of”.  Please also replace “javascript” with
>> “JavaScript” and “python” with “Python”.  Are the examples and the Vala
>> bindings actually installed?  I see that gobject-introspection is not
>> among the inputs, so I wonder if
>> 
>>> +    (license license:lgpl2.1+)))
>> 
>> At least “tools/osinfo-query.c” has a license header that says it’s
>> released under GPLv2+.  It is better to make the license field hold a
>> list of “(license:gpl2+ license:lgpl2.1+)” with a comment above it that
>> explains what files are under GPL (the tools) and what files are LGPL
>> (the library).
>> 
>> Could you please send an updated patch (after clarifying the points
>> above if they are confusing/contentious)?
>> 
>> Thanks again for the patch!
>> 
>> ~~ Ricardo
>
>
> Hi Ricardo,
>
> I made changes to the patch. I generated the patch for the file 
> "gnu/packages/gnome.scm".
>
> Explanations/ questions:
>
>   a) I replace "build-system glib-or-gtk-build-system", in this case is a 
> library(not GNOME applications); then i think is convenient use 
> "build-system gnu-build-system".
>   b) I don't know exactly the function in the package "libxslt", but is 
> required(README). I can see the package "libxslt" in the output of the 
> command "./pre-inst-env guix size libosinfo". I will look for more 
> documentation.
>   c) The examples are not installed, sorry for my mistake in the 
> description. I removed that part.
>
>
> Thanks
>
> From 23b88e547c0950f0706dd240071f5953eb86ea00 Mon Sep 17 00:00:00 2001
> From: Rene Saavedra <rennes@openmailbox.org>
> Date: Thu, 18 Feb 2016 08:22:04 -0600
> Subject: [PATCH] gnu: Add libosinfo.
>
> ---
>  gnu/packages/gnome.scm | 35 +++++++++++++++++++++++++++++++++++
>  1 file changed, 35 insertions(+)
>
> diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
> index 363d920..d24fd41 100644
> --- a/gnu/packages/gnome.scm
> +++ b/gnu/packages/gnome.scm
> @@ -4711,6 +4711,41 @@ can add your own files to the collection.")
>                     license:cc-by-sa2.0
>                     license:cc-by-sa3.0))))
>  
> +(define-public libosinfo
> +  (package
> +    (name "libosinfo")
> +    (version "0.3.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://fedorahosted.org/releases/l/i/libosinfo/"
> +                           name "-" version ".tar.gz"))
> +       (sha256
> +        (base32
> +         "1g7g5hc4lhi4y0j3mbcj19hawlqkflni1zk4aggrx49fg5l392jk"))))
> +    (build-system gnu-build-system)
> +    (native-inputs
> +     `(("check" ,check)
> +       ("glib:bin" ,glib "bin") ;; XXX: Required for glib-mkenums.
> +       ("intltool" ,intltool)
> +       ("pkg-config" ,pkg-config)))
> +    (inputs
> +     `(("gobject-introspection" ,gobject-introspection)
> +       ("libsoup" ,libsoup)
> +       ("libxslt" ,libxslt)
> +       ("wget" ,wget)))  ;; XXX: Required during make install.
> +    (home-page "https://libosinfo.org")
> +    (synopsis "Library for managing information about operating systems")
> +    (description
> +     "Libosinfo is a GObject based library API for managing information about
> +operating systems, hypervisors and the (virtual) hardware devices they can
> +support.  It includes a database containing device metadata and provides APIs
> +to match/identify optimal devices for deploying an operating system on a
> +hypervisor.  Via GObject Introspection, the API is available in all common
> +programming languages.")
> +    (license (list license:gpl2+
> +                   license:lgpl2.1+)))) ;; XXX: for libraries(COPYING.LIB).
> +
>  (define-public gnome
>    (package
>      (name "gnome")
> -- 
> 2.6.3
>

-- 
♥Ⓐ  ng0
Current Keys: https://we.make.ritual.n0.is/ng0.txt
For non-prism friendly talk find me on http://www.psyced.org

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

* Re: [PATCH] gnu: Add libosinfo.
  2016-08-01 14:50     ` ng0
@ 2016-08-01 15:01       ` Ricardo Wurmus
  2016-08-01 19:49         ` rennes
  0 siblings, 1 reply; 6+ messages in thread
From: Ricardo Wurmus @ 2016-08-01 15:01 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel, rennes


ng0 <ng0@we.make.ritual.n0.is> writes:

> Hi Rene and Ricardo,
>
> I found this contribution on my search for forgotten
> packages/contributions.
>
> Rene, was this simply forgotten or left due to whatever reasons, or do
> you want someone else to move this over the finnishing line?

It’s funny, because I did forget about it — and wrote the same package
as part of my patch set to add libvirt + virtmanager (which I haven’t
submitted to the ML yet).

~~ Ricardo

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

* Re: [PATCH] gnu: Add libosinfo.
  2016-08-01 15:01       ` Ricardo Wurmus
@ 2016-08-01 19:49         ` rennes
  0 siblings, 0 replies; 6+ messages in thread
From: rennes @ 2016-08-01 19:49 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

Hello,

> It’s funny, because I did forget about it — and wrote the same package
> as part of my patch set to add libvirt + virtmanager (which I haven’t
> submitted to the ML yet).
> 
> ~~ Ricardo


I will wait Ricardo include it in their set of patches. Thanks.

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

end of thread, other threads:[~2016-08-01 19:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-13 22:28 [PATCH] gnu: Add libosinfo rennes
2016-02-16 13:24 ` Ricardo Wurmus
2016-02-18 15:00   ` rennes
2016-08-01 14:50     ` ng0
2016-08-01 15:01       ` Ricardo Wurmus
2016-08-01 19:49         ` rennes

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).