Date: Tue, 22 Nov 2016 13:45:29 +0000 (UTC) From: Cy Schubert <cy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426825 - in head/net: kea ntp ntp-devel Message-ID: <201611221345.uAMDjT9O060928@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cy Date: Tue Nov 22 13:45:29 2016 New Revision: 426825 URL: https://svnweb.freebsd.org/changeset/ports/426825 Log: Configure leap-second smearing (always). Leap-second smearing is an experimental option that may be specified in ntp.conf(5) to spread the effect of a leap-second over an interval as specified by the leapsmearinterval config file statement. Recommended values are between 7200 (2 hours) and 86400 (24 hours). It is advised that leap-second smearing not be used for public NTP servers (https://www.meinbergglobal.com/download/burnicki/Leap\ %20Second%20Smearing%20With%20NTP.pdf). It is also advised that NTP clients not use a mix of NTP servers using leap-second smearing with NTP servers not using leap-second smearing as that could cause undefined client behaviour. Suggested by: des Modified: head/net/kea/pkg-plist head/net/ntp-devel/Makefile head/net/ntp/Makefile Modified: head/net/kea/pkg-plist ============================================================================== --- head/net/kea/pkg-plist Tue Nov 22 13:31:47 2016 (r426824) +++ head/net/kea/pkg-plist Tue Nov 22 13:45:29 2016 (r426825) @@ -1,4 +1,5 @@ bin/kea-msg-compiler +include/kea/cc/data.h include/kea/config.h include/kea/asiolink/io_address.h include/kea/cc/data.h @@ -154,13 +155,19 @@ sbin/perfdhcp %%DATADIR%%/dhcp4.spec %%DATADIR%%/dhcp6.spec %%DATADIR%%/scripts/admin-utils.sh +%%DATADIR%%/scripts/cql/dhcpdb_create.cql +%%DATADIR%%/scripts/cql/dhcpdb_drop.cql %%DATADIR%%/scripts/mysql/dhcpdb_create.mysql +%%DATADIR%%/scripts/pgsql/dhcpdb_create.pgsql +%%DATADIR%%/scripts/mysql/dhcpdb_drop.mysql +%%DATADIR%%/scripts/pgsql/dhcpdb_drop.pgsql %%DATADIR%%/scripts/mysql/upgrade_1.0_to_2.0.sh %%DATADIR%%/scripts/mysql/upgrade_2.0_to_3.0.sh %%DATADIR%%/scripts/mysql/upgrade_3.0_to_4.0.sh +%%DATADIR%%/scripts/mysql/upgrade_4.1_to_5.0.sh %%DATADIR%%/scripts/mysql/upgrade_4.0_to_4.1.sh %%DATADIR%%/scripts/pgsql/upgrade_1.0_to_2.0.sh -%%DATADIR%%/scripts/pgsql/dhcpdb_create.pgsql +%%DATADIR%%/scripts/pgsql/upgrade_2.0_to_3.0.sh %%DATADIR%%/scripts/cql/dhcpdb_create.cql %%DATADIR%%/scripts/cql/dhcpdb_drop.cql %%DATADIR%%/scripts/mysql/dhcpdb_drop.mysql Modified: head/net/ntp-devel/Makefile ============================================================================== --- head/net/ntp-devel/Makefile Tue Nov 22 13:31:47 2016 (r426824) +++ head/net/ntp-devel/Makefile Tue Nov 22 13:45:29 2016 (r426825) @@ -3,7 +3,7 @@ PORTNAME= ntp PORTVERSION= 4.3.93 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-dev/ \ http://archive.ntp.org/ntp4/ntp-dev/ @@ -22,6 +22,7 @@ USES= cpe pathfix shebangfix libedit li pkgconfig ssl gettext-runtime GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-leap-smear TEST_TARGET= check Modified: head/net/ntp/Makefile ============================================================================== --- head/net/ntp/Makefile Tue Nov 22 13:31:47 2016 (r426824) +++ head/net/ntp/Makefile Tue Nov 22 13:45:29 2016 (r426825) @@ -3,6 +3,7 @@ PORTNAME= ntp PORTVERSION= 4.2.8p9 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ \ http://archive.ntp.org/ntp4/ntp-4.2/ \ @@ -21,6 +22,7 @@ USES= cpe pathfix shebangfix libedit li pkgconfig ssl GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-leap-smear TEST_TARGET= check
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611221345.uAMDjT9O060928>