unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add haveged.
@ 2016-07-23 22:09 Tobias Geerinckx-Rice
  2016-07-23 22:47 ` Leo Famulari
  0 siblings, 1 reply; 5+ messages in thread
From: Tobias Geerinckx-Rice @ 2016-07-23 22:09 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/linux.scm (haveged): New variable.
---

Hullo Guix,

- A package for haveged, for those who trust it.

- A question about licencing, for those with more knowledge than me.

Quoth Debian[1]:
> Files: nist/mconf.h
> Copyright: 1984, 1987, 1989, 1995 Stephen L. Moshier
> License: permissive-mconf
> Some software in this archive may be from the book _Methods and
> Programs for Mathematical Functions_ (Prentice-Hall or Simon &
> Schuster International, 1989) or from the Cephes Mathematical Library,
> a commercial product. In either event, it is copyrighted by the
> author. What you see here may be used freely but it comes with no
> support or guarantee.
>
> Files: nist/packtest.c
> Copyright: 1999 National Institute Of Standards & Technology
> License: permissive-nist
> Permission to use, copy, and modify this software without
> fee is hereby granted, provided that this entire notice is
> included in all copies of any software which is or includes
> a copy or modification of this software and in all copies
> of the supporting documentation for such software.

How'd I best encode these (presumably FSDG-compliant) licences?

Kind regards,

T G-R

[1]: http://metadata.ftp-master.debian.org/changelogs/main/h/haveged/haveged_1.9.1-4_copyright

 gnu/packages/linux.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 70c18f2..8665c18 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2791,3 +2791,31 @@ from that to the system kernel's @file{/dev/random} machinery.")
 Linux kernel to retrieve and control processor features related to power saving,
 such as frequency and voltage scaling.")
     (license license:gpl2)))
+
+(define-public haveged
+  (package
+    (name "haveged")
+    (version "1.9.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://www.issihosts.com/haveged/haveged-"
+                           version ".tar.gz"))
+       (sha256
+        (base32
+         "059pxlfd4l5dqhd6r3lynzfz4wby2f17294fy17pi9j2jpnn68ww"))))
+    (build-system gnu-build-system)
+    (home-page "http://www.issihosts.com/haveged")
+    (synopsis "Entropy source for the Linux random number generator")
+    (description
+     "haveged generates an unpredictable stream of random numbers for use by
+Linux's @file{/dev/random} and @file{/dev/urandom} devices.  The kernel's
+standard mechanisms for filling the entropy pool may not be sufficient for
+systems with high needs or limited user interaction, such as headless servers.
+@command{haveged} runs as a privileged daemon, harvesting randomness from the
+indirect effects of hardware events on hidden processor state using the HArdware
+Volatile Entropy Gathering and Expansion (HAVEGE) algorithm.  It tunes itself to
+its environment and provides the same built-in test suite for the output stream
+as used on certified hardware security devices.")
+    (license (list license:public-domain        ; nist/dfft.c
+                   license:gpl3+))))            ; everything else
-- 
2.9.1

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

* Re: [PATCH] gnu: Add haveged.
  2016-07-23 22:09 [PATCH] gnu: Add haveged Tobias Geerinckx-Rice
@ 2016-07-23 22:47 ` Leo Famulari
  2016-07-23 23:43   ` Tobias Geerinckx-Rice
  0 siblings, 1 reply; 5+ messages in thread
From: Leo Famulari @ 2016-07-23 22:47 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: guix-devel

On Sun, Jul 24, 2016 at 12:09:46AM +0200, Tobias Geerinckx-Rice wrote:
> How'd I best encode these (presumably FSDG-compliant) licences?

I would use 'non-copyleft'. There's an example in the libbsd package and
several others.

Otherwise, the package looks good to me, thanks!

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

* Re: [PATCH] gnu: Add haveged.
  2016-07-23 22:47 ` Leo Famulari
@ 2016-07-23 23:43   ` Tobias Geerinckx-Rice
  2016-07-24  0:06     ` Leo Famulari
  0 siblings, 1 reply; 5+ messages in thread
From: Tobias Geerinckx-Rice @ 2016-07-23 23:43 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel

Leo,

On 24/07/2016 0:47, Leo Famulari wrote:
> I would use 'non-copyleft'. There's an example in the libbsd package and
> several others.

That's the one. I've added:

  (license:non-copyleft "file://nist/mconf.h")
  (license:non-copyleft "file://nist/packtest.h")
  ...

but many packages — not all — also like to add a "See <filename> in the
distribution." Looking at guix/licenses.scm, this seems a bit redundant
to me. No?

> Otherwise, the package looks good to me, thanks!

Thanks! I'll push (\o/) in a day or so if no-one else comments.

Kind regards,

T G-R

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

* Re: [PATCH] gnu: Add haveged.
  2016-07-23 23:43   ` Tobias Geerinckx-Rice
@ 2016-07-24  0:06     ` Leo Famulari
  2016-07-26 10:47       ` Tobias Geerinckx-Rice
  0 siblings, 1 reply; 5+ messages in thread
From: Leo Famulari @ 2016-07-24  0:06 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: guix-devel

On Sun, Jul 24, 2016 at 01:43:12AM +0200, Tobias Geerinckx-Rice wrote:
> That's the one. I've added:
> 
>   (license:non-copyleft "file://nist/mconf.h")
>   (license:non-copyleft "file://nist/packtest.h")
>   ...
> 
> but many packages — not all — also like to add a "See <filename> in the
> distribution." Looking at guix/licenses.scm, this seems a bit redundant
> to me. No?

I think it's a matter of judgement. Sometimes it makes sense, sometimes
not. The important thing is to say where the license text is.

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

* Re: [PATCH] gnu: Add haveged.
  2016-07-24  0:06     ` Leo Famulari
@ 2016-07-26 10:47       ` Tobias Geerinckx-Rice
  0 siblings, 0 replies; 5+ messages in thread
From: Tobias Geerinckx-Rice @ 2016-07-26 10:47 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel

Leo,

On 24/07/2016 2:06, Leo Famulari wrote:
>> but many packages — not all — also like to add a "See <filename> in the
>> distribution." Looking at guix/licenses.scm, this seems a bit redundant
>> to me. No?
> 
> I think it's a matter of judgement. Sometimes it makes sense, sometimes
> not. The important thing is to say where the license text is.

Judged and pushed (without the apparent duplication).

Thanks,

T G-R

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

end of thread, other threads:[~2016-07-26 10:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-23 22:09 [PATCH] gnu: Add haveged Tobias Geerinckx-Rice
2016-07-23 22:47 ` Leo Famulari
2016-07-23 23:43   ` Tobias Geerinckx-Rice
2016-07-24  0:06     ` Leo Famulari
2016-07-26 10:47       ` Tobias Geerinckx-Rice

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