From owner-svn-ports-head@freebsd.org Tue Jan 19 20:33:27 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 753DE4DE870; Tue, 19 Jan 2021 20:33:27 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DL0jM2y16z4gFy; Tue, 19 Jan 2021 20:33:27 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 589545125; Tue, 19 Jan 2021 20:33:27 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 10JKXRuX072238; Tue, 19 Jan 2021 20:33:27 GMT (envelope-from decke@FreeBSD.org) Received: (from decke@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10JKXREt072236; Tue, 19 Jan 2021 20:33:27 GMT (envelope-from decke@FreeBSD.org) Message-Id: <202101192033.10JKXREt072236@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: decke set sender to decke@FreeBSD.org using -f From: Bernhard Froehlich Date: Tue, 19 Jan 2021 20:33:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r562079 - in head/net: . chrony-lite X-SVN-Group: ports-head X-SVN-Commit-Author: decke X-SVN-Commit-Paths: in head/net: . chrony-lite X-SVN-Commit-Revision: 562079 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jan 2021 20:33:27 -0000 Author: decke Date: Tue Jan 19 20:33:26 2021 New Revision: 562079 URL: https://svnweb.freebsd.org/changeset/ports/562079 Log: net/chrony-lite: Slimmed down chrony without NTS support chrony is a pair of programs which are used to maintain the accuracy of the system clock on a computer; the two programs are called chronyd and chronyc. chronyd is a daemon which runs in background on the system. It obtains measurements via the network of the system clock's offset relative to time servers on other systems and adjusts the system time accordingly. For isolated systems, the user can periodically enter the correct time by hand (using chronyc). In either case, chronyd determines the rate at which the computer gains or loses time, and compensates for this. chronyd implements the NTP protocol and can act as either a client or a server. chronyc provides a user interface to chronyd for monitoring its performance and configuring various settings. It can do so while running on the same computer as the chronyd instance it is controlling or a different computer. WWW: http://chrony.tuxfamily.org/ PR: 252584 Submitted by: myself Added: head/net/chrony-lite/ head/net/chrony-lite/Makefile (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Jan 19 20:24:46 2021 (r562078) +++ head/net/Makefile Tue Jan 19 20:33:26 2021 (r562079) @@ -79,6 +79,7 @@ SUBDIR += cf SUBDIR += charm SUBDIR += chrony + SUBDIR += chrony-lite SUBDIR += citrix_ica SUBDIR += cjdns SUBDIR += clash Added: head/net/chrony-lite/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/chrony-lite/Makefile Tue Jan 19 20:33:26 2021 (r562079) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= chrony +PKGNAMESUFFIX= -lite + +MAINTAINER= decke@FreeBSD.org +COMMENT= System clock synchronization client and server (lite) + +MASTERDIR= ${.CURDIR}/../chrony + +CONFLICTS_INSTALL= chrony + +OPTIONS_EXCLUDE= HTMLDOCS NETTLE NSS NTS + +.include "${MASTERDIR}/Makefile"