[arch-commits] Commit in ntp/repos (12 files)
Gaetan Bisson
bisson at nymeria.archlinux.org
Thu Aug 1 03:32:05 UTC 2013
Date: Thursday, August 1, 2013 @ 05:32:05
Author: bisson
Revision: 191879
archrelease: copy trunk to staging-i686, staging-x86_64
Added:
ntp/repos/staging-i686/
ntp/repos/staging-i686/PKGBUILD
(from rev 191878, ntp/trunk/PKGBUILD)
ntp/repos/staging-i686/install
(from rev 191878, ntp/trunk/install)
ntp/repos/staging-i686/ntp.conf
(from rev 191878, ntp/trunk/ntp.conf)
ntp/repos/staging-i686/ntpd.service
(from rev 191878, ntp/trunk/ntpd.service)
ntp/repos/staging-i686/ntpdate.service
(from rev 191878, ntp/trunk/ntpdate.service)
ntp/repos/staging-x86_64/
ntp/repos/staging-x86_64/PKGBUILD
(from rev 191878, ntp/trunk/PKGBUILD)
ntp/repos/staging-x86_64/install
(from rev 191878, ntp/trunk/install)
ntp/repos/staging-x86_64/ntp.conf
(from rev 191878, ntp/trunk/ntp.conf)
ntp/repos/staging-x86_64/ntpd.service
(from rev 191878, ntp/trunk/ntpd.service)
ntp/repos/staging-x86_64/ntpdate.service
(from rev 191878, ntp/trunk/ntpdate.service)
--------------------------------+
staging-i686/PKGBUILD | 60 +++++++++++++++++++++++++++++++++++++++
staging-i686/install | 37 ++++++++++++++++++++++++
staging-i686/ntp.conf | 19 ++++++++++++
staging-i686/ntpd.service | 12 +++++++
staging-i686/ntpdate.service | 11 +++++++
staging-x86_64/PKGBUILD | 60 +++++++++++++++++++++++++++++++++++++++
staging-x86_64/install | 37 ++++++++++++++++++++++++
staging-x86_64/ntp.conf | 19 ++++++++++++
staging-x86_64/ntpd.service | 12 +++++++
staging-x86_64/ntpdate.service | 11 +++++++
10 files changed, 278 insertions(+)
Copied: ntp/repos/staging-i686/PKGBUILD (from rev 191878, ntp/trunk/PKGBUILD)
===================================================================
--- staging-i686/PKGBUILD (rev 0)
+++ staging-i686/PKGBUILD 2013-08-01 03:32:05 UTC (rev 191879)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: kevin <kevin at archlinux.org>
+
+pkgname=ntp
+pkgver=4.2.6.p5
+_realver=4.2.6p5
+pkgrel=17
+pkgdesc='Network Time Protocol reference implementation'
+url='http://www.ntp.org/'
+license=('custom')
+arch=('i686' 'x86_64')
+makedepends=('perl-html-parser')
+depends=('openssl' 'libcap' 'libedit')
+backup=('etc/ntp.conf')
+source=("http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-${_realver}.tar.gz"
+ 'ntp.conf'
+ 'ntpd.service'
+ 'ntpdate.service')
+sha1sums=('4a5353a4791b6f4315a66c28d504ec6c7926b192'
+ 'd3496dbeb7d531dd6ab071dbce3262c3c9618d8b'
+ 'ff8370719f003f184563b7d6068c03086678482f'
+ 'e1c48cba549b7d21501aadf513926e463884c090'
+)
+
+install=install
+
+build() {
+ cd "${srcdir}/${pkgname}-${_realver}"
+
+ ./configure \
+ --prefix=/usr \
+ --mandir=/usr/share/man \
+ --enable-linuxcaps \
+ --enable-ntp-signd \
+
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${_realver}"
+
+ make DESTDIR="${pkgdir}" install
+
+ rmdir "${pkgdir}"/usr/{lib,sbin}
+ install -d -o 87 "${pkgdir}"/var/lib/ntp
+ install -Dm644 ../ntp.conf "${pkgdir}"/etc/ntp.conf
+ install -Dm644 ../ntpd.service "${pkgdir}"/usr/lib/systemd/system/ntpd.service
+ install -Dm644 ../ntpdate.service "${pkgdir}"/usr/lib/systemd/system/ntpdate.service
+ install -Dm644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+ cd html
+ ../scripts/html2man
+ install -d "${pkgdir}"/usr/share/man
+ mv man/man* "${pkgdir}"/usr/share/man
+ mv "${pkgdir}/usr/share/man/man8/ntpd.8" "${pkgdir}/usr/share/man/man8/ntp-ntpd.8" # we should ditch openntpd
+
+ install -dm755 "${pkgdir}/usr/lib/systemd/ntp-units.d"
+ echo 'ntpd.service' > "${pkgdir}/usr/lib/systemd/ntp-units.d/${pkgname}.list"
+}
Copied: ntp/repos/staging-i686/install (from rev 191878, ntp/trunk/install)
===================================================================
--- staging-i686/install (rev 0)
+++ staging-i686/install 2013-08-01 03:32:05 UTC (rev 191879)
@@ -0,0 +1,37 @@
+post_install() {
+ getent group ntp &>/dev/null || groupadd -g 87 ntp >/dev/null
+ getent passwd ntp &>/dev/null || useradd -u 87 -g ntp -d /var/lib/ntp -c 'Network Time Protocol' -s /bin/false ntp >/dev/null
+ true
+}
+
+post_upgrade() {
+ if [[ $(vercmp $2 4.2.6.p3) -le 0 ]]; then
+ cat <<EOF
+
+==> The file /etc/conf.d/ntp-client.conf has been renamed /etc/conf.d/ntpd.conf
+==> If you made changes to the former, please update the latter.
+
+EOF
+ fi
+ if [[ $(vercmp $2 4.2.6.p5-1) -le 0 ]]; then
+ cat <<EOF
+
+==> The PID file /var/run/ntpd.pid has been renamed /run/ntpd.pid
+==> and the new rc.d script only takes the latter into account.
+==> To stop your old ntpd process, please kill it manually.
+
+EOF
+ fi
+ if [[ $(vercmp $2 4.2.6.p5-3) -le 0 ]]; then
+ post_install
+ fi
+ if [[ $(vercmp $2 4.2.6.p5-5) -le 0 ]]; then
+ chown -R ntp /var/lib/ntp
+ fi
+}
+
+post_remove() {
+ getent passwd ntp &>/dev/null && userdel ntp >/dev/null
+ getent group ntp &>/dev/null && groupdel ntp >/dev/null
+ true
+}
Copied: ntp/repos/staging-i686/ntp.conf (from rev 191878, ntp/trunk/ntp.conf)
===================================================================
--- staging-i686/ntp.conf (rev 0)
+++ staging-i686/ntp.conf 2013-08-01 03:32:05 UTC (rev 191879)
@@ -0,0 +1,19 @@
+# With the default settings below, ntpd will only synchronize your clock.
+#
+# For details, see:
+# - the ntp.conf man page
+# - http://support.ntp.org/bin/view/Support/GettingStarted
+# - https://wiki.archlinux.org/index.php/Network_Time_Protocol_daemon
+
+# Associate to public NTP pool servers; see http://www.pool.ntp.org/
+server 0.pool.ntp.org
+server 1.pool.ntp.org
+server 2.pool.ntp.org
+
+# Only allow read-only access from localhost
+restrict default noquery nopeer
+restrict 127.0.0.1
+restrict ::1
+
+# Location of drift file
+driftfile /var/lib/ntp/ntp.drift
Copied: ntp/repos/staging-i686/ntpd.service (from rev 191878, ntp/trunk/ntpd.service)
===================================================================
--- staging-i686/ntpd.service (rev 0)
+++ staging-i686/ntpd.service 2013-08-01 03:32:05 UTC (rev 191879)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Network Time Service
+After=network.target nss-lookup.target
+
+[Service]
+Type=forking
+PrivateTmp=true
+ExecStart=/usr/bin/ntpd -g -u ntp:ntp
+Restart=always
+
+[Install]
+WantedBy=multi-user.target
Copied: ntp/repos/staging-i686/ntpdate.service (from rev 191878, ntp/trunk/ntpdate.service)
===================================================================
--- staging-i686/ntpdate.service (rev 0)
+++ staging-i686/ntpdate.service 2013-08-01 03:32:05 UTC (rev 191879)
@@ -0,0 +1,11 @@
+[Unit]
+Description=One-Shot Network Time Service
+After=network.target nss-lookup.target
+
+[Service]
+Type=oneshot
+PrivateTmp=true
+ExecStart=/usr/bin/ntpd -q -g -u ntp:ntp
+
+[Install]
+WantedBy=multi-user.target
Copied: ntp/repos/staging-x86_64/PKGBUILD (from rev 191878, ntp/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-08-01 03:32:05 UTC (rev 191879)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: kevin <kevin at archlinux.org>
+
+pkgname=ntp
+pkgver=4.2.6.p5
+_realver=4.2.6p5
+pkgrel=17
+pkgdesc='Network Time Protocol reference implementation'
+url='http://www.ntp.org/'
+license=('custom')
+arch=('i686' 'x86_64')
+makedepends=('perl-html-parser')
+depends=('openssl' 'libcap' 'libedit')
+backup=('etc/ntp.conf')
+source=("http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-${_realver}.tar.gz"
+ 'ntp.conf'
+ 'ntpd.service'
+ 'ntpdate.service')
+sha1sums=('4a5353a4791b6f4315a66c28d504ec6c7926b192'
+ 'd3496dbeb7d531dd6ab071dbce3262c3c9618d8b'
+ 'ff8370719f003f184563b7d6068c03086678482f'
+ 'e1c48cba549b7d21501aadf513926e463884c090'
+)
+
+install=install
+
+build() {
+ cd "${srcdir}/${pkgname}-${_realver}"
+
+ ./configure \
+ --prefix=/usr \
+ --mandir=/usr/share/man \
+ --enable-linuxcaps \
+ --enable-ntp-signd \
+
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${_realver}"
+
+ make DESTDIR="${pkgdir}" install
+
+ rmdir "${pkgdir}"/usr/{lib,sbin}
+ install -d -o 87 "${pkgdir}"/var/lib/ntp
+ install -Dm644 ../ntp.conf "${pkgdir}"/etc/ntp.conf
+ install -Dm644 ../ntpd.service "${pkgdir}"/usr/lib/systemd/system/ntpd.service
+ install -Dm644 ../ntpdate.service "${pkgdir}"/usr/lib/systemd/system/ntpdate.service
+ install -Dm644 COPYRIGHT "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+ cd html
+ ../scripts/html2man
+ install -d "${pkgdir}"/usr/share/man
+ mv man/man* "${pkgdir}"/usr/share/man
+ mv "${pkgdir}/usr/share/man/man8/ntpd.8" "${pkgdir}/usr/share/man/man8/ntp-ntpd.8" # we should ditch openntpd
+
+ install -dm755 "${pkgdir}/usr/lib/systemd/ntp-units.d"
+ echo 'ntpd.service' > "${pkgdir}/usr/lib/systemd/ntp-units.d/${pkgname}.list"
+}
Copied: ntp/repos/staging-x86_64/install (from rev 191878, ntp/trunk/install)
===================================================================
--- staging-x86_64/install (rev 0)
+++ staging-x86_64/install 2013-08-01 03:32:05 UTC (rev 191879)
@@ -0,0 +1,37 @@
+post_install() {
+ getent group ntp &>/dev/null || groupadd -g 87 ntp >/dev/null
+ getent passwd ntp &>/dev/null || useradd -u 87 -g ntp -d /var/lib/ntp -c 'Network Time Protocol' -s /bin/false ntp >/dev/null
+ true
+}
+
+post_upgrade() {
+ if [[ $(vercmp $2 4.2.6.p3) -le 0 ]]; then
+ cat <<EOF
+
+==> The file /etc/conf.d/ntp-client.conf has been renamed /etc/conf.d/ntpd.conf
+==> If you made changes to the former, please update the latter.
+
+EOF
+ fi
+ if [[ $(vercmp $2 4.2.6.p5-1) -le 0 ]]; then
+ cat <<EOF
+
+==> The PID file /var/run/ntpd.pid has been renamed /run/ntpd.pid
+==> and the new rc.d script only takes the latter into account.
+==> To stop your old ntpd process, please kill it manually.
+
+EOF
+ fi
+ if [[ $(vercmp $2 4.2.6.p5-3) -le 0 ]]; then
+ post_install
+ fi
+ if [[ $(vercmp $2 4.2.6.p5-5) -le 0 ]]; then
+ chown -R ntp /var/lib/ntp
+ fi
+}
+
+post_remove() {
+ getent passwd ntp &>/dev/null && userdel ntp >/dev/null
+ getent group ntp &>/dev/null && groupdel ntp >/dev/null
+ true
+}
Copied: ntp/repos/staging-x86_64/ntp.conf (from rev 191878, ntp/trunk/ntp.conf)
===================================================================
--- staging-x86_64/ntp.conf (rev 0)
+++ staging-x86_64/ntp.conf 2013-08-01 03:32:05 UTC (rev 191879)
@@ -0,0 +1,19 @@
+# With the default settings below, ntpd will only synchronize your clock.
+#
+# For details, see:
+# - the ntp.conf man page
+# - http://support.ntp.org/bin/view/Support/GettingStarted
+# - https://wiki.archlinux.org/index.php/Network_Time_Protocol_daemon
+
+# Associate to public NTP pool servers; see http://www.pool.ntp.org/
+server 0.pool.ntp.org
+server 1.pool.ntp.org
+server 2.pool.ntp.org
+
+# Only allow read-only access from localhost
+restrict default noquery nopeer
+restrict 127.0.0.1
+restrict ::1
+
+# Location of drift file
+driftfile /var/lib/ntp/ntp.drift
Copied: ntp/repos/staging-x86_64/ntpd.service (from rev 191878, ntp/trunk/ntpd.service)
===================================================================
--- staging-x86_64/ntpd.service (rev 0)
+++ staging-x86_64/ntpd.service 2013-08-01 03:32:05 UTC (rev 191879)
@@ -0,0 +1,12 @@
+[Unit]
+Description=Network Time Service
+After=network.target nss-lookup.target
+
+[Service]
+Type=forking
+PrivateTmp=true
+ExecStart=/usr/bin/ntpd -g -u ntp:ntp
+Restart=always
+
+[Install]
+WantedBy=multi-user.target
Copied: ntp/repos/staging-x86_64/ntpdate.service (from rev 191878, ntp/trunk/ntpdate.service)
===================================================================
--- staging-x86_64/ntpdate.service (rev 0)
+++ staging-x86_64/ntpdate.service 2013-08-01 03:32:05 UTC (rev 191879)
@@ -0,0 +1,11 @@
+[Unit]
+Description=One-Shot Network Time Service
+After=network.target nss-lookup.target
+
+[Service]
+Type=oneshot
+PrivateTmp=true
+ExecStart=/usr/bin/ntpd -q -g -u ntp:ntp
+
+[Install]
+WantedBy=multi-user.target
More information about the arch-commits
mailing list