* [PATCH] gnu: Add openntpd.
@ 2015-02-09 20:40 Taylan Ulrich Bayırlı/Kammer
2015-02-10 9:25 ` Ludovic Courtès
0 siblings, 1 reply; 4+ messages in thread
From: Taylan Ulrich Bayırlı/Kammer @ 2015-02-09 20:40 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1: patch --]
[-- Type: text/x-diff, Size: 1869 bytes --]
From d9e0a4d07ee7e82582589b1e1cd3be218dd6b08f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
<taylanbayirli@gmail.com>
Date: Mon, 9 Feb 2015 21:39:41 +0100
Subject: [PATCH] gnu: Add openntpd.
* gnu/packages/ntp.scm (openntpd): New variable.
---
gnu/packages/ntp.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/ntp.scm b/gnu/packages/ntp.scm
index 24ce2f5..c81484c 100644
--- a/gnu/packages/ntp.scm
+++ b/gnu/packages/ntp.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
+;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -61,3 +62,23 @@ computers over a network.")
"http://www.eecis.udel.edu/~mills/ntp/html/copyright.html"
"A non-copyleft free licence from the University of Delaware"))
(home-page "http://www.ntp.org")))
+
+(define-public openntpd
+ (package
+ (name "openntpd")
+ (version "5.7p3")
+ (source (origin
+ (method url-fetch)
+ ;; XXX Use mirror://openbsd
+ (uri (string-append
+ "http://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/openntpd-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0filjmb3b8rc39bvhm8q2azzj10ljfgq41qih71pxv919j57qhag"))))
+ (build-system gnu-build-system)
+ (home-page "http://www.openntpd.org/")
+ (synopsis "NTP client and server by the OpenBSD Project")
+ (description "OpenNTPD is the OpenBSD Project's implementation of a client
+and server for the Network Time Protocol.")
+ (license l:isc)))
--
2.2.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] gnu: Add openntpd.
2015-02-09 20:40 [PATCH] gnu: Add openntpd Taylan Ulrich Bayırlı/Kammer
@ 2015-02-10 9:25 ` Ludovic Courtès
2015-02-10 9:54 ` Taylan Ulrich Bayırlı/Kammer
0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2015-02-10 9:25 UTC (permalink / raw)
To: Taylan Ulrich "Bayırlı/Kammer"; +Cc: guix-devel
taylanbayirli@gmail.com (Taylan Ulrich "Bayırlı/Kammer") skribis:
> From d9e0a4d07ee7e82582589b1e1cd3be218dd6b08f Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
> <taylanbayirli@gmail.com>
> Date: Mon, 9 Feb 2015 21:39:41 +0100
> Subject: [PATCH] gnu: Add openntpd.
>
> * gnu/packages/ntp.scm (openntpd): New variable.
[...]
> +(define-public openntpd
> + (package
> + (name "openntpd")
> + (version "5.7p3")
> + (source (origin
> + (method url-fetch)
> + ;; XXX Use mirror://openbsd
> + (uri (string-append
> + "http://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/openntpd-"
> + version ".tar.gz"))
> + (sha256
> + (base32
> + "0filjmb3b8rc39bvhm8q2azzj10ljfgq41qih71pxv919j57qhag"))))
> + (build-system gnu-build-system)
> + (home-page "http://www.openntpd.org/")
> + (synopsis "NTP client and server by the OpenBSD Project")
> + (description "OpenNTPD is the OpenBSD Project's implementation of a client
> +and server for the Network Time Protocol.")
Could you write a bit about what sets it apart? Notably that it’s
minimalist compared to ntpd.
> + (license l:isc)))
The web site says it’s “under a BSD license”. Could you double-check
which license that is?
TIA,
Ludo’.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] gnu: Add openntpd.
2015-02-10 9:25 ` Ludovic Courtès
@ 2015-02-10 9:54 ` Taylan Ulrich Bayırlı/Kammer
2015-02-10 12:53 ` Ludovic Courtès
0 siblings, 1 reply; 4+ messages in thread
From: Taylan Ulrich Bayırlı/Kammer @ 2015-02-10 9:54 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 16 bytes --]
Updated patch:
[-- Attachment #2: patch --]
[-- Type: text/x-diff, Size: 2078 bytes --]
From 4ee696247b320144c16656fd525b20a3a4cf31d3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
<taylanbayirli@gmail.com>
Date: Mon, 9 Feb 2015 21:39:41 +0100
Subject: [PATCH] gnu: Add openntpd.
* gnu/packages/ntp.scm (openntpd): New variable.
---
gnu/packages/ntp.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/ntp.scm b/gnu/packages/ntp.scm
index 24ce2f5..0525882 100644
--- a/gnu/packages/ntp.scm
+++ b/gnu/packages/ntp.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 John Darrington <jmd@gnu.org>
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
+;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -61,3 +62,26 @@ computers over a network.")
"http://www.eecis.udel.edu/~mills/ntp/html/copyright.html"
"A non-copyleft free licence from the University of Delaware"))
(home-page "http://www.ntp.org")))
+
+(define-public openntpd
+ (package
+ (name "openntpd")
+ (version "5.7p3")
+ (source (origin
+ (method url-fetch)
+ ;; XXX Use mirror://openbsd
+ (uri (string-append
+ "http://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/openntpd-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0filjmb3b8rc39bvhm8q2azzj10ljfgq41qih71pxv919j57qhag"))))
+ (build-system gnu-build-system)
+ (home-page "http://www.openntpd.org/")
+ (synopsis "NTP client and server by the OpenBSD Project")
+ (description "OpenNTPD is the OpenBSD Project's implementation of a client
+and server for the Network Time Protocol. Its design goals include being
+secure, easy to configure, and accurate enough for most purposes, so it's more
+minimalist than ntpd.")
+ ;; A few of the source files are under bsd-3.
+ (license (list l:isc l:bsd-3))))
--
2.2.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] gnu: Add openntpd.
2015-02-10 9:54 ` Taylan Ulrich Bayırlı/Kammer
@ 2015-02-10 12:53 ` Ludovic Courtès
0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2015-02-10 12:53 UTC (permalink / raw)
To: Taylan Ulrich "Bayırlı/Kammer"; +Cc: guix-devel
taylanbayirli@gmail.com (Taylan Ulrich "Bayırlı/Kammer") skribis:
> From 4ee696247b320144c16656fd525b20a3a4cf31d3 Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Taylan=20Ulrich=20Bay=C4=B1rl=C4=B1/Kammer?=
> <taylanbayirli@gmail.com>
> Date: Mon, 9 Feb 2015 21:39:41 +0100
> Subject: [PATCH] gnu: Add openntpd.
>
> * gnu/packages/ntp.scm (openntpd): New variable.
Please push, thank you!
Ludo’.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-02-10 12:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-09 20:40 [PATCH] gnu: Add openntpd Taylan Ulrich Bayırlı/Kammer
2015-02-10 9:25 ` Ludovic Courtès
2015-02-10 9:54 ` Taylan Ulrich Bayırlı/Kammer
2015-02-10 12:53 ` Ludovic Courtès
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.