From unknown Tue Jun 24 17:27:13 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#40347] [PATCH] gnu: Add chrony. Resent-From: Tobias Geerinckx-Rice Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 31 Mar 2020 12:32:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 40347 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 40347@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.15856579072316 (code B ref -1); Tue, 31 Mar 2020 12:32:02 +0000 Received: (at submit) by debbugs.gnu.org; 31 Mar 2020 12:31:47 +0000 Received: from localhost ([127.0.0.1]:35699 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJG3X-0000bH-67 for submit@debbugs.gnu.org; Tue, 31 Mar 2020 08:31:47 -0400 Received: from lists.gnu.org ([209.51.188.17]:34170) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJG3V-0000b8-5v for submit@debbugs.gnu.org; Tue, 31 Mar 2020 08:31:45 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:35960) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jJG3T-00019D-MN for guix-patches@gnu.org; Tue, 31 Mar 2020 08:31:44 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jJG3S-0007XK-C7 for guix-patches@gnu.org; Tue, 31 Mar 2020 08:31:43 -0400 Received: from tobias.gr ([2a02:c205:2020:6054::1]:50278) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jJG3R-0007TB-Q2 for guix-patches@gnu.org; Tue, 31 Mar 2020 08:31:42 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id fb384219 for ; Tue, 31 Mar 2020 12:31:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to :subject:date:message-id:mime-version:content-transfer-encoding; s=2018; i=me@tobias.gr; bh=hVy1j/lCcGq7r9KJRuq+/WQPKSMFTeZKLmPO gUEqi+Y=; b=PgayAfDsLPqoOikukyMrxTwoL8ADdNeFBk6FjrOUaSqKXBp1kOX9 /1gVVVsRxNZUbxTKLQrPfohZ3iqnlIDqEUaeESy1CkYbBR0HLFOPG2nZ1zRPpmX+ UEiaCOUeWyiq/62LqW39I5mnlTuVuy1qERjupAGBUUv/GIdbCaEKBV2IBTLU3qNF /Z3CrU0CdYjSCQZkwgK4+Uyn1vLJWNbRFxfQZMhH05QAjFQHAALEx1aAzmNcVQY5 zCGDQVMCG88L3LVI+gefA+tUFxiY+q4tztwR2An+UaRT1hBjVC1ma617CiiVMesi EIoNSUGzYyRb2bEWH13kl+eILTWALMgMdQ== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 6255a612 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Tue, 31 Mar 2020 12:31:38 +0000 (UTC) From: Tobias Geerinckx-Rice Date: Tue, 31 Mar 2020 14:31:31 +0200 Message-Id: <20200331123131.21520-1-me@tobias.gr> X-Mailer: git-send-email 2.25.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2a02:c205:2020:6054::1 X-Spam-Score: 0.2 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.8 (/) * gnu/packages/ntp.scm (chrony): New public variable. --- gnu/packages/ntp.scm | 66 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/gnu/packages/ntp.scm b/gnu/packages/ntp.scm index dfcdb58de4..554317e2d4 100644 --- a/gnu/packages/ntp.scm +++ b/gnu/packages/ntp.scm @@ -28,7 +28,9 @@ #:use-module (gnu packages base) #:use-module (gnu packages libevent) #:use-module (gnu packages linux) + #:use-module (gnu packages nettle) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages readline) #:use-module (gnu packages tls) #:use-module (guix build-system gnu) #:use-module (guix download) @@ -38,6 +40,70 @@ #:use-module (guix utils) #:use-module (srfi srfi-1)) +(define-public chrony + (package + (name "chrony") + (version "3.5") + (source + (origin + (method url-fetch) + (uri (string-append "https://download.tuxfamily.org/chrony/" + "chrony-" version ".tar.gz")) + (sha256 + (base32 "1d9r2dhslll4kzdmxrj0qfgwq1b30d4l3s5cwr8yr93029dpj0jf")))) + (build-system gnu-build-system) + (arguments + `(#:modules ((srfi srfi-26) + (guix build utils) + (guix build gnu-build-system)) + #:configure-flags + (list "--enable-scfilter" + "--with-sendmail=sendmail" + "--with-user=chrony") + #:phases + (modify-phases %standard-phases + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out"))) + (invoke "make" "-j" (number->string (parallel-job-count)) + (string-append "CHRONYVARDIR=ignored") + "install")))) + (add-after 'install 'install-more-documentation + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (doc (string-append out "/share/doc/" ,name "-" ,version))) + (for-each (cut install-file <> doc) + (list "README" "FAQ")) + (copy-recursively "examples" (string-append doc "/examples")) + #t)))))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("libcap" ,libcap) + ("libseccomp" ,libseccomp) + ("nettle" ,nettle) + ("readline" ,readline))) + (home-page "https://chrony.tuxfamily.org/") + (synopsis "System clock synchronisation service that speaks NTP") + (description + "Chrony keeps your system time accurate. It synchronises your computer's +clock with @acronym{NTP, Network Time Protocol} servers, reference clocks such +as GPS receivers, or even manual input of the correct time from a wristwatch. + +Chrony will determine the rate at which the computer gains or loses time, and +compensate for it. It can also operate as an NTPv4 (RFC 5905) server and peer +to provide a time service to other computers on the network. + +It's designed to perform well even under adverse conditions: congested +networks, unreliable clocks drifting with changes in temperature, and devices +or virtual machines that are frequently turned off and connect to the Internet +for only a few minutes at a time. + +Typical accuracy when synchronised over the Internet is several milliseconds. +On a local network this can reach tens of microseconds. With hardware +time-stamping or reference clock, sub-microsecond accuracy is possible.") + (license l:gpl2))) + (define-public ntp (package (name "ntp") -- 2.25.2 From unknown Tue Jun 24 17:27:13 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Tobias Geerinckx-Rice Subject: bug#40347: closed (Re: [bug#40347] [PATCH] gnu: Add chrony.) Message-ID: References: <877dyqp0dy.fsf@nckx> <20200331123131.21520-1-me@tobias.gr> X-Gnu-PR-Message: they-closed 40347 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 40347@debbugs.gnu.org Date: Wed, 08 Apr 2020 13:35:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1586352902-7899-1" This is a multi-part message in MIME format... ------------=_1586352902-7899-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #40347: [PATCH] gnu: Add chrony. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 40347@debbugs.gnu.org. --=20 40347: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D40347 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1586352902-7899-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 40347-done) by debbugs.gnu.org; 8 Apr 2020 13:34:06 +0000 Received: from localhost ([127.0.0.1]:51525 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jMAqD-00022E-Mc for submit@debbugs.gnu.org; Wed, 08 Apr 2020 09:34:05 -0400 Received: from tobias.gr ([80.241.217.52]:58924) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jMAqA-00021p-6y for 40347-done@debbugs.gnu.org; Wed, 08 Apr 2020 09:34:03 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id 1add4a9b for <40347-done@debbugs.gnu.org>; Wed, 8 Apr 2020 13:34:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to :subject:references:in-reply-to:date:message-id:mime-version :content-type; s=2018; i=me@tobias.gr; bh=2/j/0QyOcV4xh5lcLjIjQX S4feB1ZKfiWCuY8ozj+3g=; b=T1wbY8t5hoQspd4UfqA1L3XQnmyvhEmtcqkQ14 eVI9QCNiFmAgXJ+95XXFR+hhJSE32vyhUoL9XDpwQ+NyJwJj+ugcs97P1YAOh8A6 CmLZ44Xi6e/7isXpLuUYg41opvFPXA4N27pFOhXrrzMIV/4QZGL7m6wMqD0qbv3O /7JRxLKX3eafmrVbjspSBNrWGYB27WtQpQbQIesOOYI4KeLywyZtLJYt8Sxaxs5t pjMcZ2o25yKdpZJj9yhdMK6KrhyzvDFycbs7JfbntMIgVn1jqt0HStakO61ndhbT 0ZXef9SFSxl2zRRn8oPTfQxWbhhGuWswDpnIxu16Row7Z4dQ== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 9d3d9eb3 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for <40347-done@debbugs.gnu.org>; Wed, 8 Apr 2020 13:34:00 +0000 (UTC) From: Tobias Geerinckx-Rice To: 40347-done@debbugs.gnu.org Subject: Re: [bug#40347] [PATCH] gnu: Add chrony. References: <20200331123131.21520-1-me@tobias.gr> In-reply-to: <20200331123131.21520-1-me@tobias.gr> Date: Wed, 08 Apr 2020 15:34:01 +0200 Message-ID: <877dyqp0dy.fsf@nckx> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 40347-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --=-=-= Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Tobias Geerinckx-Rice via Guix-patches via =E5=86=99=E9=81=93=EF=BC=9A > * gnu/packages/ntp.scm (chrony): New public variable. Pushed as 9f12e06bb3c84c148a28491a480c7b8f55a3c131. Kind regards, T G-R --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEfo+u0AlEeO9y5k0W2Imw8BjFSTwFAl6N0skACgkQ2Imw8BjF STxYfxAAoNaFEPdpZ9x3FYWNby7YBgvuXx1hPjCLjQg4TD1tROVzXKIOw5yP0lHY USKmWOxFKtbTKTgAR+sLijTpcbI/FtLBfG3hosbfk/mzb93PJAba8EO+abVM+2Mc uXEVfPDjW4FJHlj65u70bQEX/UOj8JecCpZAhz8fG22hbMziWkwrUJRm8I3q22oL l0eQyyCnhGmtn03n+rIN3kFb0HpF+zozWHL4mT1WXpoWviQ1G3oUiOjctQtUaQVM iZmbrnWObTioUl5UN/A+rJceWBOrrWZTvbdtilYdQDw+qKiBZQNhUiQhT3UFGhf6 QVuwUmNOWB9ANBxCtxvTk/yadx4xb8SyeeEWVpCgWh0p8z45RFO/nuQUITcLhxpj iifkLTtgmICBADIzJhtxpw8HtzmTFWS7Thb5dBazF+EOqMrJhbFJK0XawhQX4uSZ tTlLdeD0z1ALwgWdsev4qslZbFqt12ZC5zA/IjZ70xUO/xRvW4H5dllyLaCBy037 jkQgZcifICc3QY9O4VFa0+/XjMyYGUlvFOtmv/Zd1C0ehWPq/v/Dx8EnENahh34K krns0bcrWKbKgw335So9/Cjgb2ZEijrSJeNoUovz5kFpKFCCdnBnxXSTpE6JqHNx KcQHx8UVf4/zS7Difmytr1PAsfcS/J5LP/r4YOPIqq5Tt6YgE2g= =Aa5X -----END PGP SIGNATURE----- --=-=-=-- ------------=_1586352902-7899-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 31 Mar 2020 12:31:47 +0000 Received: from localhost ([127.0.0.1]:35699 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJG3X-0000bH-67 for submit@debbugs.gnu.org; Tue, 31 Mar 2020 08:31:47 -0400 Received: from lists.gnu.org ([209.51.188.17]:34170) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJG3V-0000b8-5v for submit@debbugs.gnu.org; Tue, 31 Mar 2020 08:31:45 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:35960) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jJG3T-00019D-MN for guix-patches@gnu.org; Tue, 31 Mar 2020 08:31:44 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jJG3S-0007XK-C7 for guix-patches@gnu.org; Tue, 31 Mar 2020 08:31:43 -0400 Received: from tobias.gr ([2a02:c205:2020:6054::1]:50278) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jJG3R-0007TB-Q2 for guix-patches@gnu.org; Tue, 31 Mar 2020 08:31:42 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id fb384219 for ; Tue, 31 Mar 2020 12:31:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to :subject:date:message-id:mime-version:content-transfer-encoding; s=2018; i=me@tobias.gr; bh=hVy1j/lCcGq7r9KJRuq+/WQPKSMFTeZKLmPO gUEqi+Y=; b=PgayAfDsLPqoOikukyMrxTwoL8ADdNeFBk6FjrOUaSqKXBp1kOX9 /1gVVVsRxNZUbxTKLQrPfohZ3iqnlIDqEUaeESy1CkYbBR0HLFOPG2nZ1zRPpmX+ UEiaCOUeWyiq/62LqW39I5mnlTuVuy1qERjupAGBUUv/GIdbCaEKBV2IBTLU3qNF /Z3CrU0CdYjSCQZkwgK4+Uyn1vLJWNbRFxfQZMhH05QAjFQHAALEx1aAzmNcVQY5 zCGDQVMCG88L3LVI+gefA+tUFxiY+q4tztwR2An+UaRT1hBjVC1ma617CiiVMesi EIoNSUGzYyRb2bEWH13kl+eILTWALMgMdQ== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 6255a612 (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Tue, 31 Mar 2020 12:31:38 +0000 (UTC) From: Tobias Geerinckx-Rice To: guix-patches@gnu.org Subject: [PATCH] gnu: Add chrony. Date: Tue, 31 Mar 2020 14:31:31 +0200 Message-Id: <20200331123131.21520-1-me@tobias.gr> X-Mailer: git-send-email 2.25.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2a02:c205:2020:6054::1 X-Spam-Score: 0.2 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.8 (/) * gnu/packages/ntp.scm (chrony): New public variable. --- gnu/packages/ntp.scm | 66 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/gnu/packages/ntp.scm b/gnu/packages/ntp.scm index dfcdb58de4..554317e2d4 100644 --- a/gnu/packages/ntp.scm +++ b/gnu/packages/ntp.scm @@ -28,7 +28,9 @@ #:use-module (gnu packages base) #:use-module (gnu packages libevent) #:use-module (gnu packages linux) + #:use-module (gnu packages nettle) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages readline) #:use-module (gnu packages tls) #:use-module (guix build-system gnu) #:use-module (guix download) @@ -38,6 +40,70 @@ #:use-module (guix utils) #:use-module (srfi srfi-1)) +(define-public chrony + (package + (name "chrony") + (version "3.5") + (source + (origin + (method url-fetch) + (uri (string-append "https://download.tuxfamily.org/chrony/" + "chrony-" version ".tar.gz")) + (sha256 + (base32 "1d9r2dhslll4kzdmxrj0qfgwq1b30d4l3s5cwr8yr93029dpj0jf")))) + (build-system gnu-build-system) + (arguments + `(#:modules ((srfi srfi-26) + (guix build utils) + (guix build gnu-build-system)) + #:configure-flags + (list "--enable-scfilter" + "--with-sendmail=sendmail" + "--with-user=chrony") + #:phases + (modify-phases %standard-phases + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out"))) + (invoke "make" "-j" (number->string (parallel-job-count)) + (string-append "CHRONYVARDIR=ignored") + "install")))) + (add-after 'install 'install-more-documentation + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (doc (string-append out "/share/doc/" ,name "-" ,version))) + (for-each (cut install-file <> doc) + (list "README" "FAQ")) + (copy-recursively "examples" (string-append doc "/examples")) + #t)))))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("libcap" ,libcap) + ("libseccomp" ,libseccomp) + ("nettle" ,nettle) + ("readline" ,readline))) + (home-page "https://chrony.tuxfamily.org/") + (synopsis "System clock synchronisation service that speaks NTP") + (description + "Chrony keeps your system time accurate. It synchronises your computer's +clock with @acronym{NTP, Network Time Protocol} servers, reference clocks such +as GPS receivers, or even manual input of the correct time from a wristwatch. + +Chrony will determine the rate at which the computer gains or loses time, and +compensate for it. It can also operate as an NTPv4 (RFC 5905) server and peer +to provide a time service to other computers on the network. + +It's designed to perform well even under adverse conditions: congested +networks, unreliable clocks drifting with changes in temperature, and devices +or virtual machines that are frequently turned off and connect to the Internet +for only a few minutes at a time. + +Typical accuracy when synchronised over the Internet is several milliseconds. +On a local network this can reach tens of microseconds. With hardware +time-stamping or reference clock, sub-microsecond accuracy is possible.") + (license l:gpl2))) + (define-public ntp (package (name "ntp") -- 2.25.2 ------------=_1586352902-7899-1--