From mboxrd@z Thu Jan 1 00:00:00 1970 From: taylanbayirli@gmail.com (Taylan Ulrich =?utf-8?Q?Bay=C4=B1rl=C4=B1?= =?utf-8?Q?=2FKammer?=) Subject: [PATCH] gnu: Add openntpd. Date: Mon, 09 Feb 2015 21:40:29 +0100 Message-ID: <87iofag6o2.fsf@taylan.uni.cx> Mime-Version: 1.0 Content-Type: text/x-diff; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35536) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKv8F-00048S-JH for guix-devel@gnu.org; Mon, 09 Feb 2015 15:40:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YKv8E-0000D0-54 for guix-devel@gnu.org; Mon, 09 Feb 2015 15:40:35 -0500 Received: from mail-wi0-x234.google.com ([2a00:1450:400c:c05::234]:57099) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKv8D-0000C1-Sf for guix-devel@gnu.org; Mon, 09 Feb 2015 15:40:34 -0500 Received: by mail-wi0-f180.google.com with SMTP id z2so9274824wiv.1 for ; Mon, 09 Feb 2015 12:40:32 -0800 (PST) Received: from taylan.uni.cx (p200300514A1A69860213E8FFFEED36FB.dip0.t-ipconnect.de. [2003:51:4a1a:6986:213:e8ff:feed:36fb]) by mx.google.com with ESMTPSA id n10sm11434869wic.11.2015.02.09.12.40.30 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 09 Feb 2015 12:40:31 -0800 (PST) Content-Disposition: inline; filename=0001-gnu-Add-openntpd.patch Content-Description: patch List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org >From d9e0a4d07ee7e82582589b1e1cd3be218dd6b08f Mon Sep 17 00:00:00 2001 From: =3D?UTF-8?q?Taylan=3D20Ulrich=3D20Bay=3DC4=3DB1rl=3DC4=3DB1/Kammer?=3D 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 =C2=A9 2014 John Darrington ;;; Copyright =C2=A9 2014, 2015 Mark H Weaver +;;; Copyright =C2=A9 2015 Taylan Ulrich Bay=C4=B1rl=C4=B1/Kammer ;;; ;;; 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 cl= ient +and server for the Network Time Protocol.") + (license l:isc))) --=20 2.2.1