unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add dmidecode.
@ 2016-07-31 18:36 Kei Kebreau
  2016-07-31 19:29 ` ng0
  0 siblings, 1 reply; 9+ messages in thread
From: Kei Kebreau @ 2016-07-31 18:36 UTC (permalink / raw)
  To: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 212 bytes --]


A package for those who like to roam around the lower levels of their
machines. As soon as this package is verified to build successfully and
reproducibly on another user's machine, I can push it to the repos.


[-- Attachment #1.2: 0001-gnu-Add-dmidecode.patch --]
[-- Type: text/plain, Size: 2810 bytes --]

From 37c3cc1021671d93dca2c34c4d3b392173b84ef1 Mon Sep 17 00:00:00 2001
From: Kei Kebreau <kei@openmailbox.org>
Date: Sun, 31 Jul 2016 13:59:59 -0400
Subject: [PATCH] gnu: Add dmidecode.

* gnu/packages/linux.scm (dmidecode): New variable.
---
 gnu/packages/linux.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index fad5a63..dc9e649 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -14,6 +14,7 @@
 ;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
 ;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2016 David Craven <david@craven.ch>
+;;; Copyright © 2016 Kei Kebreau <kei@openmailbox.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2822,3 +2823,37 @@ as used on certified hardware security devices.")
                    (license:non-copyleft "file://nist/packtest.c")
                    license:public-domain        ; nist/dfft.c
                    license:gpl3+))))            ; everything else
+
+(define-public dmidecode
+  (package
+    (name "dmidecode")
+    (version "3.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://download.savannah.gnu.org/releases/"
+                                  name "/" name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "0iby0xfk5x3cdr0x0gxj5888jjyjhafvaq0l79civ73jjfqmphvy"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f ; no check target
+       #:phases (modify-phases %standard-phases
+                  (delete 'configure) ; no configure script
+                  (add-before 'install 'patch-prefix-directory
+                    (lambda* (#:key inputs outputs #:allow-other-keys)
+                      (let ((out (assoc-ref outputs "out")))
+                        (substitute* "Makefile"
+                          (("prefix  = /usr/local")
+                           (string-append "prefix  = " %output)))))))))
+    (home-page "http://www.nongnu.org/dmidecode/")
+    (synopsis "SMBIOS/DMI table decoder")
+    (description
+     "Dmidecode reports information about your system's hardware as described in
+your system BIOS according to the SMBIOS/DMI standard.  This information
+typically includes system manufacturer, model name, serial number, BIOS version,
+asset tag as well as a lot of other details of varying level of interest and
+reliability depending on the manufacturer.  This will often include usage
+status for the CPU sockets, expansion slots (e.g. AGP, PCI, ISA) and memory
+module slots, and the list of I/O ports (e.g. serial, parallel, USB).")
+    (license license:gpl2+)))
-- 
2.9.2


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

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

* Re: [PATCH] gnu: Add dmidecode.
  2016-07-31 18:36 [PATCH] gnu: Add dmidecode Kei Kebreau
@ 2016-07-31 19:29 ` ng0
  2016-07-31 20:01   ` [PATCH] gnu: dmidecode: Update to 3.0. (was: Re: [PATCH] gnu: Add dmidecode.) Kei Kebreau
  0 siblings, 1 reply; 9+ messages in thread
From: ng0 @ 2016-07-31 19:29 UTC (permalink / raw)
  To: guix-devel

Hi,

Kei Kebreau <kei@openmailbox.org> writes:

> A package for those who like to roam around the lower levels of their
> machines. As soon as this package is verified to build successfully and
> reproducibly on another user's machine, I can push it to the repos.
>
> From 37c3cc1021671d93dca2c34c4d3b392173b84ef1 Mon Sep 17 00:00:00 2001
> From: Kei Kebreau <kei@openmailbox.org>
> Date: Sun, 31 Jul 2016 13:59:59 -0400
> Subject: [PATCH] gnu: Add dmidecode.
>
> * gnu/packages/linux.scm (dmidecode): New variable.
> ---

I don't understand.. is an upgrade not enough?

ng0@shadowwalker ~$ guix package -s dmidecode
name: dmidecode
version: 2.12
outputs: out
systems: x86_64-linux i686-linux armhf-linux mips64el-linux
dependencies:
location: gnu/packages/admin.scm:982:2
homepage: http://www.nongnu.org/dmidecode/
license: GPL 2+
synopsis: Read hardware information from the BIOS
description: Dmidecode reports information about your system's hardware
as
+ described in your system BIOS according to the SMBIOS/DMI standard.
This
+ typically includes system manufacturer, model name, serial number,
BIOS
+ version, asset tag as well as a lot of other details of varying level
of
+ interest and reliability depending on the manufacturer.  This will
often
+ include usage status for the CPU sockets, expansion slots (e.g.  AGP,
PCI,
+ ISA) and memory module slots, and the list of I/O ports (e.g.  serial,
+ parallel, USB).




-- 
♥Ⓐ  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] 9+ messages in thread

* Re: [PATCH] gnu: dmidecode: Update to 3.0. (was: Re: [PATCH] gnu: Add dmidecode.)
  2016-07-31 19:29 ` ng0
@ 2016-07-31 20:01   ` Kei Kebreau
  2016-07-31 20:12     ` [PATCH] gnu: dmidecode: Update to 3.0 Ludovic Courtès
  2016-07-31 20:13     ` [PATCH] gnu: dmidecode: Update to 3.0. (was: Re: [PATCH] gnu: Add dmidecode.) ng0
  0 siblings, 2 replies; 9+ messages in thread
From: Kei Kebreau @ 2016-07-31 20:01 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 1740 bytes --]

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

> Hi,
>
> Kei Kebreau <kei@openmailbox.org> writes:
>
>> A package for those who like to roam around the lower levels of their
>> machines. As soon as this package is verified to build successfully and
>> reproducibly on another user's machine, I can push it to the repos.
>>
>> From 37c3cc1021671d93dca2c34c4d3b392173b84ef1 Mon Sep 17 00:00:00 2001
>> From: Kei Kebreau <kei@openmailbox.org>
>> Date: Sun, 31 Jul 2016 13:59:59 -0400
>> Subject: [PATCH] gnu: Add dmidecode.
>>
>> * gnu/packages/linux.scm (dmidecode): New variable.
>> ---
>
> I don't understand.. is an upgrade not enough?
>
> ng0@shadowwalker ~$ guix package -s dmidecode
> name: dmidecode
> version: 2.12
> outputs: out
> systems: x86_64-linux i686-linux armhf-linux mips64el-linux
> dependencies:
> location: gnu/packages/admin.scm:982:2
> homepage: http://www.nongnu.org/dmidecode/
> license: GPL 2+
> synopsis: Read hardware information from the BIOS
> description: Dmidecode reports information about your system's hardware
> as
> + described in your system BIOS according to the SMBIOS/DMI standard.
> This
> + typically includes system manufacturer, model name, serial number,
> BIOS
> + version, asset tag as well as a lot of other details of varying level
> of
> + interest and reliability depending on the manufacturer.  This will
> often
> + include usage status for the CPU sockets, expansion slots (e.g.  AGP,
> PCI,
> + ISA) and memory module slots, and the list of I/O ports (e.g.  serial,
> + parallel, USB).

Wow! I must have misspelled dmidecode when I searched for it! Silly me. :-P

I've attached a new patch. I don't know whether updating a version
number necessitates a copyright assignment, so I omitted it.


[-- Attachment #1.2: 0001-gnu-dmidecode-Update-to-3.0.patch --]
[-- Type: text/plain, Size: 1537 bytes --]

From 0ddaeaeefbcc39143f3538448a37de974e38d0b5 Mon Sep 17 00:00:00 2001
From: Kei Kebreau <kei@openmailbox.org>
Date: Sun, 31 Jul 2016 15:55:08 -0400
Subject: [PATCH] gnu: dmidecode: Update to 3.0.

* gnu/packages/admin.scm (dmidecode): Update to 3.0.
---
 gnu/packages/admin.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 195959e..a80ee9d 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -981,18 +981,18 @@ network, which causes enabled computers to power on.")
 (define-public dmidecode
   (package
     (name "dmidecode")
-    (version "2.12")
+    (version "3.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
                     "mirror://savannah/dmidecode/dmidecode-"
-                    version ".tar.bz2"))
+                    version ".tar.xz"))
               (sha256
                (base32
-                "122hgaw8mpqdfra159lfl6pyk3837giqx6vq42j64fjnbl2z6gwi"))))
+                "0iby0xfk5x3cdr0x0gxj5888jjyjhafvaq0l79civ73jjfqmphvy"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:phases (alist-delete 'configure %standard-phases)
+     '(#:phases (modify-phases %standard-phases (delete 'configure))
        #:tests? #f                                ; no 'check' target
        #:make-flags (list (string-append "prefix="
                                          (assoc-ref %outputs "out")))))
-- 
2.9.2


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

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

* Re: [PATCH] gnu: dmidecode: Update to 3.0.
  2016-07-31 20:01   ` [PATCH] gnu: dmidecode: Update to 3.0. (was: Re: [PATCH] gnu: Add dmidecode.) Kei Kebreau
@ 2016-07-31 20:12     ` Ludovic Courtès
  2016-07-31 20:13     ` [PATCH] gnu: dmidecode: Update to 3.0. (was: Re: [PATCH] gnu: Add dmidecode.) ng0
  1 sibling, 0 replies; 9+ messages in thread
From: Ludovic Courtès @ 2016-07-31 20:12 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: guix-devel

Hi,

Kei Kebreau <kei@openmailbox.org> skribis:

> I've attached a new patch. I don't know whether updating a version
> number necessitates a copyright assignment, so I omitted it.

You mean a copyright line (no copyright assignment here :-)).  I’d argue
it doesn’t require one.

> From 0ddaeaeefbcc39143f3538448a37de974e38d0b5 Mon Sep 17 00:00:00 2001
> From: Kei Kebreau <kei@openmailbox.org>
> Date: Sun, 31 Jul 2016 15:55:08 -0400
> Subject: [PATCH] gnu: dmidecode: Update to 3.0.
>
> * gnu/packages/admin.scm (dmidecode): Update to 3.0.

Please add:

  [argument]: Use ’modify-phases’ instead of ‘alist-delete’.

Otherwise LGTM, thank you!

Ludo’.

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

* Re: [PATCH] gnu: dmidecode: Update to 3.0. (was: Re: [PATCH] gnu: Add dmidecode.)
  2016-07-31 20:01   ` [PATCH] gnu: dmidecode: Update to 3.0. (was: Re: [PATCH] gnu: Add dmidecode.) Kei Kebreau
  2016-07-31 20:12     ` [PATCH] gnu: dmidecode: Update to 3.0 Ludovic Courtès
@ 2016-07-31 20:13     ` ng0
  2016-07-31 21:24       ` [PATCH] gnu: dmidecode: Update to 3.0 Kei Kebreau
  1 sibling, 1 reply; 9+ messages in thread
From: ng0 @ 2016-07-31 20:13 UTC (permalink / raw)
  To: guix-devel

Kei Kebreau <kei@openmailbox.org> writes:

> ng0 <ng0@we.make.ritual.n0.is> writes:
>
>> Hi,
>>
>> Kei Kebreau <kei@openmailbox.org> writes:
>>
>>> A package for those who like to roam around the lower levels of their
>>> machines. As soon as this package is verified to build successfully and
>>> reproducibly on another user's machine, I can push it to the repos.

snip

> Wow! I must have misspelled dmidecode when I searched for it! Silly me. :-P
>
> I've attached a new patch. I don't know whether updating a version
> number necessitates a copyright assignment, so I omitted it.

Thanks. No problem. I can not review it (or at least not right now), but
version bumps get copyright assignments too.
I think I could review it on tuesday or tomorrow night. Could you send
it as .patch in addition to inlined? I have not figured out how to
extract inlined patches in notmuch yet.

> From 0ddaeaeefbcc39143f3538448a37de974e38d0b5 Mon Sep 17 00:00:00 2001
> From: Kei Kebreau <kei@openmailbox.org>
> Date: Sun, 31 Jul 2016 15:55:08 -0400
> Subject: [PATCH] gnu: dmidecode: Update to 3.0.
>
> * gnu/packages/admin.scm (dmidecode): Update to 3.0.
> ---
>  gnu/packages/admin.scm | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index 195959e..a80ee9d 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
> @@ -981,18 +981,18 @@ network, which causes enabled computers to power on.")
>  (define-public dmidecode
>    (package
>      (name "dmidecode")
> -    (version "2.12")
> +    (version "3.0")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append
>                      "mirror://savannah/dmidecode/dmidecode-"
> -                    version ".tar.bz2"))
> +                    version ".tar.xz"))
>                (sha256
>                 (base32
> -                "122hgaw8mpqdfra159lfl6pyk3837giqx6vq42j64fjnbl2z6gwi"))))
> +                "0iby0xfk5x3cdr0x0gxj5888jjyjhafvaq0l79civ73jjfqmphvy"))))
>      (build-system gnu-build-system)
>      (arguments
> -     '(#:phases (alist-delete 'configure %standard-phases)
> +     '(#:phases (modify-phases %standard-phases (delete 'configure))
>         #:tests? #f                                ; no 'check' target
>         #:make-flags (list (string-append "prefix="
>                                           (assoc-ref %outputs "out")))))
> -- 
> 2.9.2
>

-- 
♥Ⓐ  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] 9+ messages in thread

* Re: [PATCH] gnu: dmidecode: Update to 3.0.
  2016-07-31 20:13     ` [PATCH] gnu: dmidecode: Update to 3.0. (was: Re: [PATCH] gnu: Add dmidecode.) ng0
@ 2016-07-31 21:24       ` Kei Kebreau
  2016-08-01 12:03         ` Ludovic Courtès
  2016-08-01 13:02         ` ng0
  0 siblings, 2 replies; 9+ messages in thread
From: Kei Kebreau @ 2016-07-31 21:24 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 2698 bytes --]

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

> Kei Kebreau <kei@openmailbox.org> writes:
>
>> ng0 <ng0@we.make.ritual.n0.is> writes:
>>
>>> Hi,
>>>
>>> Kei Kebreau <kei@openmailbox.org> writes:
>>>
>>>> A package for those who like to roam around the lower levels of their
>>>> machines. As soon as this package is verified to build successfully and
>>>> reproducibly on another user's machine, I can push it to the repos.
>
> snip
>
>> Wow! I must have misspelled dmidecode when I searched for it! Silly me. :-P
>>
>> I've attached a new patch. I don't know whether updating a version
>> number necessitates a copyright assignment, so I omitted it.
>
> Thanks. No problem. I can not review it (or at least not right now), but
> version bumps get copyright assignments too.
> I think I could review it on tuesday or tomorrow night. Could you send
> it as .patch in addition to inlined? I have not figured out how to
> extract inlined patches in notmuch yet.
>

Sure thing:

From 06770d6275aacdb0c5763bcc8aff4d27fe6ae2f5 Mon Sep 17 00:00:00 2001
From: Kei Kebreau <kei@openmailbox.org>
Date: Sun, 31 Jul 2016 17:15:25 -0400
Subject: [PATCH] gnu: dmidecode: Update to 3.0.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

* gnu/packages/admin.scm (dmidecode): Update to 3.0.
[arguments]: Use ’modify-phases’ instead of ‘alist-delete’.
---
 gnu/packages/admin.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 195959e..a80ee9d 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -981,18 +981,18 @@ network, which causes enabled computers to power on.")
 (define-public dmidecode
   (package
     (name "dmidecode")
-    (version "2.12")
+    (version "3.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
                     "mirror://savannah/dmidecode/dmidecode-"
-                    version ".tar.bz2"))
+                    version ".tar.xz"))
               (sha256
                (base32
-                "122hgaw8mpqdfra159lfl6pyk3837giqx6vq42j64fjnbl2z6gwi"))))
+                "0iby0xfk5x3cdr0x0gxj5888jjyjhafvaq0l79civ73jjfqmphvy"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:phases (alist-delete 'configure %standard-phases)
+     '(#:phases (modify-phases %standard-phases (delete 'configure))
        #:tests? #f                                ; no 'check' target
        #:make-flags (list (string-append "prefix="
                                          (assoc-ref %outputs "out")))))
-- 
2.9.2


[-- Attachment #1.2: 0001-gnu-dmidecode-Update-to-3.0.patch --]
[-- Type: text/plain, Size: 1699 bytes --]

From 06770d6275aacdb0c5763bcc8aff4d27fe6ae2f5 Mon Sep 17 00:00:00 2001
From: Kei Kebreau <kei@openmailbox.org>
Date: Sun, 31 Jul 2016 17:15:25 -0400
Subject: [PATCH] gnu: dmidecode: Update to 3.0.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

* gnu/packages/admin.scm (dmidecode): Update to 3.0.
[arguments]: Use ’modify-phases’ instead of ‘alist-delete’.
---
 gnu/packages/admin.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 195959e..a80ee9d 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -981,18 +981,18 @@ network, which causes enabled computers to power on.")
 (define-public dmidecode
   (package
     (name "dmidecode")
-    (version "2.12")
+    (version "3.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
                     "mirror://savannah/dmidecode/dmidecode-"
-                    version ".tar.bz2"))
+                    version ".tar.xz"))
               (sha256
                (base32
-                "122hgaw8mpqdfra159lfl6pyk3837giqx6vq42j64fjnbl2z6gwi"))))
+                "0iby0xfk5x3cdr0x0gxj5888jjyjhafvaq0l79civ73jjfqmphvy"))))
     (build-system gnu-build-system)
     (arguments
-     '(#:phases (alist-delete 'configure %standard-phases)
+     '(#:phases (modify-phases %standard-phases (delete 'configure))
        #:tests? #f                                ; no 'check' target
        #:make-flags (list (string-append "prefix="
                                          (assoc-ref %outputs "out")))))
-- 
2.9.2


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

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

* Re: [PATCH] gnu: dmidecode: Update to 3.0.
  2016-07-31 21:24       ` [PATCH] gnu: dmidecode: Update to 3.0 Kei Kebreau
@ 2016-08-01 12:03         ` Ludovic Courtès
  2016-08-01 13:02         ` ng0
  1 sibling, 0 replies; 9+ messages in thread
From: Ludovic Courtès @ 2016-08-01 12:03 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: guix-devel

Kei Kebreau <kei@openmailbox.org> skribis:

> From 06770d6275aacdb0c5763bcc8aff4d27fe6ae2f5 Mon Sep 17 00:00:00 2001
> From: Kei Kebreau <kei@openmailbox.org>
> Date: Sun, 31 Jul 2016 17:15:25 -0400
> Subject: [PATCH] gnu: dmidecode: Update to 3.0.
> MIME-Version: 1.0
> Content-Type: text/plain; charset=UTF-8
> Content-Transfer-Encoding: 8bit
>
> * gnu/packages/admin.scm (dmidecode): Update to 3.0.
> [arguments]: Use ’modify-phases’ instead of ‘alist-delete’.

LGTM! :-)

Ludo'.

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

* Re: [PATCH] gnu: dmidecode: Update to 3.0.
  2016-07-31 21:24       ` [PATCH] gnu: dmidecode: Update to 3.0 Kei Kebreau
  2016-08-01 12:03         ` Ludovic Courtès
@ 2016-08-01 13:02         ` ng0
  2016-08-01 15:45           ` Kei Kebreau
  1 sibling, 1 reply; 9+ messages in thread
From: ng0 @ 2016-08-01 13:02 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: guix-devel

Kei Kebreau <kei@openmailbox.org> writes:

> ng0 <ng0@we.make.ritual.n0.is> writes:
>
>> Kei Kebreau <kei@openmailbox.org> writes:
>>
>>> ng0 <ng0@we.make.ritual.n0.is> writes:
>>>
>>>> Hi,
>>>>
>>>> Kei Kebreau <kei@openmailbox.org> writes:
>>>>
>>>>> A package for those who like to roam around the lower levels of their
>>>>> machines. As soon as this package is verified to build successfully and
>>>>> reproducibly on another user's machine, I can push it to the repos.
>>
>> snip
>>
>>> Wow! I must have misspelled dmidecode when I searched for it! Silly me. :-P
>>>
>>> I've attached a new patch. I don't know whether updating a version
>>> number necessitates a copyright assignment, so I omitted it.
>>
>> Thanks. No problem. I can not review it (or at least not right now), but
>> version bumps get copyright assignments too.
>> I think I could review it on tuesday or tomorrow night. Could you send
>> it as .patch in addition to inlined? I have not figured out how to
>> extract inlined patches in notmuch yet.
>>

Weird, did you sent it as patch the first time already and not inlined?
I should really allow myself a vacation at some point.

Builds here, patch looks good to me.
>
> Sure thing:
>
> From 06770d6275aacdb0c5763bcc8aff4d27fe6ae2f5 Mon Sep 17 00:00:00 2001
> From: Kei Kebreau <kei@openmailbox.org>
> Date: Sun, 31 Jul 2016 17:15:25 -0400
> Subject: [PATCH] gnu: dmidecode: Update to 3.0.
> MIME-Version: 1.0
> Content-Type: text/plain; charset=UTF-8
> Content-Transfer-Encoding: 8bit
>
> * gnu/packages/admin.scm (dmidecode): Update to 3.0.
> [arguments]: Use ’modify-phases’ instead of ‘alist-delete’.
> ---
>  gnu/packages/admin.scm | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index 195959e..a80ee9d 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
> @@ -981,18 +981,18 @@ network, which causes enabled computers to power on.")
>  (define-public dmidecode
>    (package
>      (name "dmidecode")
> -    (version "2.12")
> +    (version "3.0")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append
>                      "mirror://savannah/dmidecode/dmidecode-"
> -                    version ".tar.bz2"))
> +                    version ".tar.xz"))
>                (sha256
>                 (base32
> -                "122hgaw8mpqdfra159lfl6pyk3837giqx6vq42j64fjnbl2z6gwi"))))
> +                "0iby0xfk5x3cdr0x0gxj5888jjyjhafvaq0l79civ73jjfqmphvy"))))
>      (build-system gnu-build-system)
>      (arguments
> -     '(#:phases (alist-delete 'configure %standard-phases)
> +     '(#:phases (modify-phases %standard-phases (delete 'configure))
>         #:tests? #f                                ; no 'check' target
>         #:make-flags (list (string-append "prefix="
>                                           (assoc-ref %outputs "out")))))
> -- 
> 2.9.2
>
> From 06770d6275aacdb0c5763bcc8aff4d27fe6ae2f5 Mon Sep 17 00:00:00 2001
> From: Kei Kebreau <kei@openmailbox.org>
> Date: Sun, 31 Jul 2016 17:15:25 -0400
> Subject: [PATCH] gnu: dmidecode: Update to 3.0.
> MIME-Version: 1.0
> Content-Type: text/plain; charset=UTF-8
> Content-Transfer-Encoding: 8bit
>
> * gnu/packages/admin.scm (dmidecode): Update to 3.0.
> [arguments]: Use ’modify-phases’ instead of ‘alist-delete’.
> ---
>  gnu/packages/admin.scm | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index 195959e..a80ee9d 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
> @@ -981,18 +981,18 @@ network, which causes enabled computers to power on.")
>  (define-public dmidecode
>    (package
>      (name "dmidecode")
> -    (version "2.12")
> +    (version "3.0")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append
>                      "mirror://savannah/dmidecode/dmidecode-"
> -                    version ".tar.bz2"))
> +                    version ".tar.xz"))
>                (sha256
>                 (base32
> -                "122hgaw8mpqdfra159lfl6pyk3837giqx6vq42j64fjnbl2z6gwi"))))
> +                "0iby0xfk5x3cdr0x0gxj5888jjyjhafvaq0l79civ73jjfqmphvy"))))
>      (build-system gnu-build-system)
>      (arguments
> -     '(#:phases (alist-delete 'configure %standard-phases)
> +     '(#:phases (modify-phases %standard-phases (delete 'configure))
>         #:tests? #f                                ; no 'check' target
>         #:make-flags (list (string-append "prefix="
>                                           (assoc-ref %outputs "out")))))
> -- 
> 2.9.2
>

-- 
♥Ⓐ  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] 9+ messages in thread

* Re: [PATCH] gnu: dmidecode: Update to 3.0.
  2016-08-01 13:02         ` ng0
@ 2016-08-01 15:45           ` Kei Kebreau
  0 siblings, 0 replies; 9+ messages in thread
From: Kei Kebreau @ 2016-08-01 15:45 UTC (permalink / raw)
  To: ng0; +Cc: guix-devel

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

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

> Kei Kebreau <kei@openmailbox.org> writes:
>
>> ng0 <ng0@we.make.ritual.n0.is> writes:
>>
>>> Kei Kebreau <kei@openmailbox.org> writes:
>>>
>>>> ng0 <ng0@we.make.ritual.n0.is> writes:
>>>>
>>>>> Hi,
>>>>>
>>>>> Kei Kebreau <kei@openmailbox.org> writes:
>>>>>
>>>>>> A package for those who like to roam around the lower levels of their
>>>>>> machines. As soon as this package is verified to build successfully and
>>>>>> reproducibly on another user's machine, I can push it to the repos.
>>>
>>> snip
>>>
>>>> Wow! I must have misspelled dmidecode when I searched for it! Silly me. :-P
>>>>
>>>> I've attached a new patch. I don't know whether updating a version
>>>> number necessitates a copyright assignment, so I omitted it.
>>>
>>> Thanks. No problem. I can not review it (or at least not right now), but
>>> version bumps get copyright assignments too.
>>> I think I could review it on tuesday or tomorrow night. Could you send
>>> it as .patch in addition to inlined? I have not figured out how to
>>> extract inlined patches in notmuch yet.
>>>
>
> Weird, did you sent it as patch the first time already and not inlined?
> I should really allow myself a vacation at some point.
>

I did indeed. You have my permission to take a break any time you like! :-)

> Builds here, patch looks good to me.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

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

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

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-31 18:36 [PATCH] gnu: Add dmidecode Kei Kebreau
2016-07-31 19:29 ` ng0
2016-07-31 20:01   ` [PATCH] gnu: dmidecode: Update to 3.0. (was: Re: [PATCH] gnu: Add dmidecode.) Kei Kebreau
2016-07-31 20:12     ` [PATCH] gnu: dmidecode: Update to 3.0 Ludovic Courtès
2016-07-31 20:13     ` [PATCH] gnu: dmidecode: Update to 3.0. (was: Re: [PATCH] gnu: Add dmidecode.) ng0
2016-07-31 21:24       ` [PATCH] gnu: dmidecode: Update to 3.0 Kei Kebreau
2016-08-01 12:03         ` Ludovic Courtès
2016-08-01 13:02         ` ng0
2016-08-01 15:45           ` Kei Kebreau

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).