all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add smartmontools.
@ 2015-02-08 20:05 Taylan Ulrich Bayırlı/Kammer
  2015-02-08 20:09 ` Taylan Ulrich Bayırlı/Kammer
  2015-02-09  4:12 ` Mark H Weaver
  0 siblings, 2 replies; 7+ messages in thread
From: Taylan Ulrich Bayırlı/Kammer @ 2015-02-08 20:05 UTC (permalink / raw)
  To: guix-devel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: patch --]
[-- Type: text/x-diff, Size: 1809 bytes --]

From db4d182a8da67102ef83e1e8f882a83bcaa69d58 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
 <taylanbayirli@gmail.com>
Date: Sun, 8 Feb 2015 11:26:46 +0100
Subject: [PATCH 2/2] gnu: Add smartmontools.

* gnu/packages/admin.scm (smartmontools): New variable.
---
 gnu/packages/admin.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index dacae60..40e9b80 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -1026,3 +1026,27 @@ any capabilities and whether or not it has an open ended bounding set.  The
 included utilities are designed to let admins and developers spot apps from
 various ways that may be running with too much privilege.")
     (license gpl2+)))
+
+(define-public smartmontools
+  (package
+    (name "smartmontools")
+    (version "6.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://sourceforge/smartmontools/smartmontools/"
+                    version "/smartmontools-" version ".tar.gz"))
+              (sha256
+               (base32
+                "06gy71jh2d3gcfmlbbrsqw7215knkfq59q3j6qdxfrar39fhcxx7"))))
+    (build-system gnu-build-system)
+    (inputs `(("libcap-ng" ,libcap-ng)))
+    (home-page "http://www.smartmontools.org/")
+    (synopsis "SMART harddisk control and monitoring tools")
+    (description
+     "The smartmontools package contains utility programs to control and
+monitor storage systems using the Self-Monitoring, Analysis and Reporting
+Technology System (SMART) built into most modern ATA and SCSI harddisks.  In
+many cases, these utilities will provide advanced warning of disk degradation
+and failure.")
+    (license gpl2+)))
-- 
2.2.1

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

* Re: [PATCH] gnu: Add smartmontools.
  2015-02-08 20:05 [PATCH] gnu: Add smartmontools Taylan Ulrich Bayırlı/Kammer
@ 2015-02-08 20:09 ` Taylan Ulrich Bayırlı/Kammer
  2015-02-09  4:12 ` Mark H Weaver
  1 sibling, 0 replies; 7+ messages in thread
From: Taylan Ulrich Bayırlı/Kammer @ 2015-02-08 20:09 UTC (permalink / raw)
  To: guix-devel

This should have been in the [PATCH 0/1] [PATCH 1/1] format together
with the libcap-ng one I just sent, since it builds upon that one.  Also
added a copyright line.  Sorry about the mess!

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

* Re: [PATCH] gnu: Add smartmontools.
  2015-02-08 20:05 [PATCH] gnu: Add smartmontools Taylan Ulrich Bayırlı/Kammer
  2015-02-08 20:09 ` Taylan Ulrich Bayırlı/Kammer
@ 2015-02-09  4:12 ` Mark H Weaver
  2015-02-09  8:48   ` Taylan Ulrich Bayırlı/Kammer
  1 sibling, 1 reply; 7+ messages in thread
From: Mark H Weaver @ 2015-02-09  4:12 UTC (permalink / raw)
  To: Taylan Ulrich "Bayırlı/Kammer"; +Cc: guix-devel

taylanbayirli@gmail.com (Taylan Ulrich "Bayırlı/Kammer") writes:

> From db4d182a8da67102ef83e1e8f882a83bcaa69d58 Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
>  <taylanbayirli@gmail.com>
> Date: Sun, 8 Feb 2015 11:26:46 +0100
> Subject: [PATCH 2/2] gnu: Add smartmontools.
>
> * gnu/packages/admin.scm (smartmontools): New variable.
> ---
>  gnu/packages/admin.scm | 24 ++++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
>
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index dacae60..40e9b80 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
> @@ -1026,3 +1026,27 @@ any capabilities and whether or not it has an open ended bounding set.  The
>  included utilities are designed to let admins and developers spot apps from
>  various ways that may be running with too much privilege.")
>      (license gpl2+)))
> +
> +(define-public smartmontools
> +  (package
> +    (name "smartmontools")
> +    (version "6.3")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append
> +                    "mirror://sourceforge/smartmontools/smartmontools/"
> +                    version "/smartmontools-" version ".tar.gz"))
> +              (sha256
> +               (base32
> +                "06gy71jh2d3gcfmlbbrsqw7215knkfq59q3j6qdxfrar39fhcxx7"))))
> +    (build-system gnu-build-system)
> +    (inputs `(("libcap-ng" ,libcap-ng)))
> +    (home-page "http://www.smartmontools.org/")
> +    (synopsis "SMART harddisk control and monitoring tools")
> +    (description
> +     "The smartmontools package contains utility programs to control and
> +monitor storage systems using the Self-Monitoring, Analysis and Reporting
> +Technology System (SMART) built into most modern ATA and SCSI harddisks.  In
> +many cases, these utilities will provide advanced warning of disk degradation
> +and failure.")
> +    (license gpl2+)))

Debian claims that the license is gpl2, not gpl2+.

Please be more careful checking licenses.  Debian tends to be very
thorough about this, so a good method is to find the package on Debian,
e.g. <http://packages.debian.org/smartmontools>, select the appropriate
package (preferably the same version or close to it) and then choose the
"Copyright File" link in the right column.

Otherwise looks good to me.  Okay to push this (and libcap-ng) with
these problems fixed.

     Thanks!
       Mark

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

* Re: [PATCH] gnu: Add smartmontools.
  2015-02-09  4:12 ` Mark H Weaver
@ 2015-02-09  8:48   ` Taylan Ulrich Bayırlı/Kammer
  2015-02-10  6:15     ` Mark H Weaver
  0 siblings, 1 reply; 7+ messages in thread
From: Taylan Ulrich Bayırlı/Kammer @ 2015-02-09  8:48 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: guix-devel

Mark H Weaver <mhw@netris.org> writes:

> Debian claims that the license is gpl2, not gpl2+.
>
> Please be more careful checking licenses.  Debian tends to be very
> thorough about this, so a good method is to find the package on Debian,
> e.g. <http://packages.debian.org/smartmontools>, select the appropriate
> package (preferably the same version or close to it) and then choose the
> "Copyright File" link in the right column.

OK, thanks for the tip.  However, both the README and individual source
files use the "or (at your option) any later version" phrasing.  I
wonder why Debian marked it gpl2?

Taylan

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

* Re: [PATCH] gnu: Add smartmontools.
  2015-02-09  8:48   ` Taylan Ulrich Bayırlı/Kammer
@ 2015-02-10  6:15     ` Mark H Weaver
  2015-02-10  8:27       ` Taylan Ulrich Bayırlı/Kammer
  2015-02-15  1:56       ` Mark H Weaver
  0 siblings, 2 replies; 7+ messages in thread
From: Mark H Weaver @ 2015-02-10  6:15 UTC (permalink / raw)
  To: Taylan Ulrich "Bayırlı/Kammer"; +Cc: guix-devel

taylanbayirli@gmail.com (Taylan Ulrich "Bayırlı/Kammer") writes:

> Mark H Weaver <mhw@netris.org> writes:
>
>> Debian claims that the license is gpl2, not gpl2+.
>>
>> Please be more careful checking licenses.  Debian tends to be very
>> thorough about this, so a good method is to find the package on Debian,
>> e.g. <http://packages.debian.org/smartmontools>, select the appropriate
>> package (preferably the same version or close to it) and then choose the
>> "Copyright File" link in the right column.
>
> OK, thanks for the tip.  However, both the README and individual source
> files use the "or (at your option) any later version" phrasing.  I
> wonder why Debian marked it gpl2?

Indeed, you are right, and Debian is wrong.  Nevermind :)

One more unrelated suggestion, while I'm at it: in the synopsis and
description, I think it would be better to write "S.M.A.R.T." rather
than "SMART".  What do you think?

Anyway, okay to push.

    Thanks!
      Mark

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

* Re: [PATCH] gnu: Add smartmontools.
  2015-02-10  6:15     ` Mark H Weaver
@ 2015-02-10  8:27       ` Taylan Ulrich Bayırlı/Kammer
  2015-02-15  1:56       ` Mark H Weaver
  1 sibling, 0 replies; 7+ messages in thread
From: Taylan Ulrich Bayırlı/Kammer @ 2015-02-10  8:27 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: guix-devel

Mark H Weaver <mhw@netris.org> writes:

> One more unrelated suggestion, while I'm at it: in the synopsis and
> description, I think it would be better to write "S.M.A.R.T." rather
> than "SMART".  What do you think?

Done.  Thanks for the review. :-)

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

* Re: [PATCH] gnu: Add smartmontools.
  2015-02-10  6:15     ` Mark H Weaver
  2015-02-10  8:27       ` Taylan Ulrich Bayırlı/Kammer
@ 2015-02-15  1:56       ` Mark H Weaver
  1 sibling, 0 replies; 7+ messages in thread
From: Mark H Weaver @ 2015-02-15  1:56 UTC (permalink / raw)
  To: Taylan Ulrich "Bayırlı/Kammer"; +Cc: guix-devel

Mark H Weaver <mhw@netris.org> writes:

> taylanbayirli@gmail.com (Taylan Ulrich "Bayırlı/Kammer") writes:
>
>> Mark H Weaver <mhw@netris.org> writes:
>>
>>> Debian claims that the license is gpl2, not gpl2+.
>>>
>>> Please be more careful checking licenses.  Debian tends to be very
>>> thorough about this, so a good method is to find the package on Debian,
>>> e.g. <http://packages.debian.org/smartmontools>, select the appropriate
>>> package (preferably the same version or close to it) and then choose the
>>> "Copyright File" link in the right column.
>>
>> OK, thanks for the tip.  However, both the README and individual source
>> files use the "or (at your option) any later version" phrasing.  I
>> wonder why Debian marked it gpl2?
>
> Indeed, you are right, and Debian is wrong.  Nevermind :)

FYI, I reported this problem, which turns out to be a violation of
Debian policy, and the responses have been disappointing.

  https://bugs.debian.org/777583

     Mark

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

end of thread, other threads:[~2015-02-15  1:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-08 20:05 [PATCH] gnu: Add smartmontools Taylan Ulrich Bayırlı/Kammer
2015-02-08 20:09 ` Taylan Ulrich Bayırlı/Kammer
2015-02-09  4:12 ` Mark H Weaver
2015-02-09  8:48   ` Taylan Ulrich Bayırlı/Kammer
2015-02-10  6:15     ` Mark H Weaver
2015-02-10  8:27       ` Taylan Ulrich Bayırlı/Kammer
2015-02-15  1:56       ` Mark H Weaver

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.