[arch-commits] Commit in ntp/repos (12 files)

2017-02-25 Thread Lukas Fleischer
Date: Saturday, February 25, 2017 @ 15:40:09
  Author: lfleischer
Revision: 289539

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  ntp/repos/staging-i686/
  ntp/repos/staging-i686/PKGBUILD
(from rev 289538, ntp/trunk/PKGBUILD)
  ntp/repos/staging-i686/ntp.conf
(from rev 289538, ntp/trunk/ntp.conf)
  ntp/repos/staging-i686/ntp.install
(from rev 289538, ntp/trunk/ntp.install)
  ntp/repos/staging-i686/ntpd.service
(from rev 289538, ntp/trunk/ntpd.service)
  ntp/repos/staging-i686/ntpdate.service
(from rev 289538, ntp/trunk/ntpdate.service)
  ntp/repos/staging-x86_64/
  ntp/repos/staging-x86_64/PKGBUILD
(from rev 289538, ntp/trunk/PKGBUILD)
  ntp/repos/staging-x86_64/ntp.conf
(from rev 289538, ntp/trunk/ntp.conf)
  ntp/repos/staging-x86_64/ntp.install
(from rev 289538, ntp/trunk/ntp.install)
  ntp/repos/staging-x86_64/ntpd.service
(from rev 289538, ntp/trunk/ntpd.service)
  ntp/repos/staging-x86_64/ntpdate.service
(from rev 289538, ntp/trunk/ntpdate.service)

+
 staging-i686/PKGBUILD  |   47 +++
 staging-i686/ntp.conf  |   24 +++
 staging-i686/ntp.install   |5 
 staging-i686/ntpd.service  |   13 ++
 staging-i686/ntpdate.service   |   12 +
 staging-x86_64/PKGBUILD|   47 +++
 staging-x86_64/ntp.conf|   24 +++
 staging-x86_64/ntp.install |5 
 staging-x86_64/ntpd.service|   13 ++
 staging-x86_64/ntpdate.service |   12 +
 10 files changed, 202 insertions(+)

Copied: ntp/repos/staging-i686/PKGBUILD (from rev 289538, ntp/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2017-02-25 15:40:09 UTC (rev 289539)
@@ -0,0 +1,47 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Gaetan Bisson 
+# Contributor: kevin 
+
+pkgname=ntp
+_pkgname=ntp #-dev
+_pkgver=4.2.8p9
+pkgver=${_pkgver/p/.p}
+pkgrel=2
+pkgdesc='Network Time Protocol reference implementation'
+url='http://www.ntp.org/'
+license=('custom')
+arch=('i686' 'x86_64')
+depends=('openssl' 'libcap' 'libedit')
+backup=('etc/ntp.conf')
+source=("https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/${_pkgname}-${_pkgver}.tar.gz;
+'ntp.conf'
+'ntpd.service'
+'ntpdate.service')
+sha1sums=('032e58e7e416ffa1cbdcbb81021785fce4ed4d4b'
+  'ad1d6ee2e9aca64a84a7224c88bf6008ac6c69e1'
+  '0a872385e0142888ab48d273fec0669b30a8'
+  '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')
+
+options=('!emptydirs')
+install=ntp.install
+
+build() {
+   cd "${srcdir}/${_pkgname}-${_pkgver}"
+
+   ./configure --prefix=/usr --libexecdir=/usr/lib --enable-linuxcaps 
--enable-ntp-signd
+   make
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${_pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   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"
+
+   install -d -o 87 "${pkgdir}"/var/lib/ntp
+   echo > "${pkgdir}/var/lib/ntp/.placeholder"
+}

Copied: ntp/repos/staging-i686/ntp.conf (from rev 289538, ntp/trunk/ntp.conf)
===
--- staging-i686/ntp.conf   (rev 0)
+++ staging-i686/ntp.conf   2017-02-25 15:40:09 UTC (rev 289539)
@@ -0,0 +1,24 @@
+# Please consider joining the pool:
+#
+# http://www.pool.ntp.org/join.html
+#
+# For additional information see:
+# - https://wiki.archlinux.org/index.php/Network_Time_Protocol_daemon
+# - http://support.ntp.org/bin/view/Support/GettingStarted
+# - the ntp.conf man page
+
+# Associate to Arch's NTP pool
+server 0.arch.pool.ntp.org
+server 1.arch.pool.ntp.org
+server 2.arch.pool.ntp.org
+server 3.arch.pool.ntp.org
+
+# By default, the server allows:
+# - all queries from the local host
+# - only time queries from remote hosts, protected by rate limiting and kod
+restrict default kod limited nomodify nopeer noquery notrap
+restrict 127.0.0.1
+restrict ::1
+
+# Location of drift file
+driftfile /var/lib/ntp/ntp.drift

Copied: ntp/repos/staging-i686/ntp.install (from rev 289538, 
ntp/trunk/ntp.install)
===
--- staging-i686/ntp.install(rev 0)
+++ staging-i686/ntp.install2017-02-25 15:40:09 UTC (rev 289539)
@@ -0,0 +1,5 @@
+post_install() {
+   getent group ntp &>/dev/null || groupadd -g 87 ntp >/dev/null
+   getent passwd ntp &>/dev/null || 

[arch-commits] Commit in ntp/repos (12 files)

2016-06-04 Thread Lukas Fleischer
Date: Saturday, June 4, 2016 @ 17:10:03
  Author: lfleischer
Revision: 268951

archrelease: copy trunk to community-i686, community-x86_64

Added:
  ntp/repos/community-i686/
  ntp/repos/community-i686/PKGBUILD
(from rev 268950, ntp/trunk/PKGBUILD)
  ntp/repos/community-i686/ntp.conf
(from rev 268950, ntp/trunk/ntp.conf)
  ntp/repos/community-i686/ntp.install
(from rev 268950, ntp/trunk/ntp.install)
  ntp/repos/community-i686/ntpd.service
(from rev 268950, ntp/trunk/ntpd.service)
  ntp/repos/community-i686/ntpdate.service
(from rev 268950, ntp/trunk/ntpdate.service)
  ntp/repos/community-x86_64/
  ntp/repos/community-x86_64/PKGBUILD
(from rev 268950, ntp/trunk/PKGBUILD)
  ntp/repos/community-x86_64/ntp.conf
(from rev 268950, ntp/trunk/ntp.conf)
  ntp/repos/community-x86_64/ntp.install
(from rev 268950, ntp/trunk/ntp.install)
  ntp/repos/community-x86_64/ntpd.service
(from rev 268950, ntp/trunk/ntpd.service)
  ntp/repos/community-x86_64/ntpdate.service
(from rev 268950, ntp/trunk/ntpdate.service)

--+
 community-i686/PKGBUILD  |   47 +
 community-i686/ntp.conf  |   24 ++
 community-i686/ntp.install   |5 +++
 community-i686/ntpd.service  |   13 ++
 community-i686/ntpdate.service   |   12 +
 community-x86_64/PKGBUILD|   47 +
 community-x86_64/ntp.conf|   24 ++
 community-x86_64/ntp.install |5 +++
 community-x86_64/ntpd.service|   13 ++
 community-x86_64/ntpdate.service |   12 +
 10 files changed, 202 insertions(+)

Copied: ntp/repos/community-i686/PKGBUILD (from rev 268950, ntp/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-06-04 15:10:03 UTC (rev 268951)
@@ -0,0 +1,47 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Gaetan Bisson 
+# Contributor: kevin 
+
+pkgname=ntp
+_pkgname=ntp #-dev
+_pkgver=4.2.8p8
+pkgver=${_pkgver/p/.p}
+pkgrel=1
+pkgdesc='Network Time Protocol reference implementation'
+url='http://www.ntp.org/'
+license=('custom')
+arch=('i686' 'x86_64')
+depends=('openssl' 'libcap' 'libedit')
+backup=('etc/ntp.conf')
+source=("https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/${_pkgname}-${_pkgver}.tar.gz;
+'ntp.conf'
+'ntpd.service'
+'ntpdate.service')
+sha1sums=('208ae3e2ce1237ad684c3bc818b6314d28636e46'
+  'ad1d6ee2e9aca64a84a7224c88bf6008ac6c69e1'
+  '0a872385e0142888ab48d273fec0669b30a8'
+  '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')
+
+options=('!emptydirs')
+install=ntp.install
+
+build() {
+   cd "${srcdir}/${_pkgname}-${_pkgver}"
+
+   ./configure --prefix=/usr --libexecdir=/usr/lib --enable-linuxcaps 
--enable-ntp-signd
+   make
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${_pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   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"
+
+   install -d -o 87 "${pkgdir}"/var/lib/ntp
+   echo > "${pkgdir}/var/lib/ntp/.placeholder"
+}

Copied: ntp/repos/community-i686/ntp.conf (from rev 268950, ntp/trunk/ntp.conf)
===
--- community-i686/ntp.conf (rev 0)
+++ community-i686/ntp.conf 2016-06-04 15:10:03 UTC (rev 268951)
@@ -0,0 +1,24 @@
+# Please consider joining the pool:
+#
+# http://www.pool.ntp.org/join.html
+#
+# For additional information see:
+# - https://wiki.archlinux.org/index.php/Network_Time_Protocol_daemon
+# - http://support.ntp.org/bin/view/Support/GettingStarted
+# - the ntp.conf man page
+
+# Associate to Arch's NTP pool
+server 0.arch.pool.ntp.org
+server 1.arch.pool.ntp.org
+server 2.arch.pool.ntp.org
+server 3.arch.pool.ntp.org
+
+# By default, the server allows:
+# - all queries from the local host
+# - only time queries from remote hosts, protected by rate limiting and kod
+restrict default kod limited nomodify nopeer noquery notrap
+restrict 127.0.0.1
+restrict ::1
+
+# Location of drift file
+driftfile /var/lib/ntp/ntp.drift

Copied: ntp/repos/community-i686/ntp.install (from rev 268950, 
ntp/trunk/ntp.install)
===
--- community-i686/ntp.install  (rev 0)
+++ community-i686/ntp.install  2016-06-04 15:10:03 UTC (rev 268951)
@@ -0,0 +1,5 @@
+post_install() {
+   getent group ntp &>/dev/null || groupadd -g 87 ntp 

[arch-commits] Commit in ntp/repos (12 files)

2016-02-07 Thread Evangelos Foutras
Date: Monday, February 8, 2016 @ 00:54:05
  Author: foutrelis
Revision: 258954

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  ntp/repos/staging-i686/
  ntp/repos/staging-i686/PKGBUILD
(from rev 258953, ntp/trunk/PKGBUILD)
  ntp/repos/staging-i686/ntp.conf
(from rev 258953, ntp/trunk/ntp.conf)
  ntp/repos/staging-i686/ntp.install
(from rev 258953, ntp/trunk/ntp.install)
  ntp/repos/staging-i686/ntpd.service
(from rev 258953, ntp/trunk/ntpd.service)
  ntp/repos/staging-i686/ntpdate.service
(from rev 258953, ntp/trunk/ntpdate.service)
  ntp/repos/staging-x86_64/
  ntp/repos/staging-x86_64/PKGBUILD
(from rev 258953, ntp/trunk/PKGBUILD)
  ntp/repos/staging-x86_64/ntp.conf
(from rev 258953, ntp/trunk/ntp.conf)
  ntp/repos/staging-x86_64/ntp.install
(from rev 258953, ntp/trunk/ntp.install)
  ntp/repos/staging-x86_64/ntpd.service
(from rev 258953, ntp/trunk/ntpd.service)
  ntp/repos/staging-x86_64/ntpdate.service
(from rev 258953, ntp/trunk/ntpdate.service)

+
 staging-i686/PKGBUILD  |   52 +++
 staging-i686/ntp.conf  |   24 ++
 staging-i686/ntp.install   |5 +++
 staging-i686/ntpd.service  |   13 +
 staging-i686/ntpdate.service   |   12 +
 staging-x86_64/PKGBUILD|   52 +++
 staging-x86_64/ntp.conf|   24 ++
 staging-x86_64/ntp.install |5 +++
 staging-x86_64/ntpd.service|   13 +
 staging-x86_64/ntpdate.service |   12 +
 10 files changed, 212 insertions(+)

Copied: ntp/repos/staging-i686/PKGBUILD (from rev 258953, ntp/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2016-02-07 23:54:05 UTC (rev 258954)
@@ -0,0 +1,52 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Gaetan Bisson 
+# Contributor: kevin 
+
+pkgname=ntp
+_pkgname=ntp #-dev
+_pkgver=4.2.8p6
+pkgver=${_pkgver/p/.p}
+pkgrel=3
+pkgdesc='Network Time Protocol reference implementation'
+url='http://www.ntp.org/'
+license=('custom')
+arch=('i686' 'x86_64')
+depends=('openssl' 'libcap' 'libedit')
+backup=('etc/ntp.conf')
+source=("https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/${_pkgname}-${_pkgver}.tar.gz;
+'ntp.conf'
+'ntpd.service'
+'ntpdate.service')
+sha1sums=('7244b0fb66ceb66283480e8f83a4c4a2099f9cd7'
+  'ad1d6ee2e9aca64a84a7224c88bf6008ac6c69e1'
+  '0a872385e0142888ab48d273fec0669b30a8'
+  '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')
+
+options=('!emptydirs')
+install=ntp.install
+
+build() {
+   cd "${srcdir}/${_pkgname}-${_pkgver}"
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib \
+   --enable-linuxcaps \
+   --enable-ntp-signd \
+
+   make
+}
+
+package() {
+   cd "${srcdir}/${_pkgname}-${_pkgver}"
+
+   make DESTDIR="${pkgdir}" install
+
+   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"
+
+   install -d -o 87 "${pkgdir}"/var/lib/ntp
+   echo > "${pkgdir}/var/lib/ntp/.placeholder"
+}

Copied: ntp/repos/staging-i686/ntp.conf (from rev 258953, ntp/trunk/ntp.conf)
===
--- staging-i686/ntp.conf   (rev 0)
+++ staging-i686/ntp.conf   2016-02-07 23:54:05 UTC (rev 258954)
@@ -0,0 +1,24 @@
+# Please consider joining the pool:
+#
+# http://www.pool.ntp.org/join.html
+#
+# For additional information see:
+# - https://wiki.archlinux.org/index.php/Network_Time_Protocol_daemon
+# - http://support.ntp.org/bin/view/Support/GettingStarted
+# - the ntp.conf man page
+
+# Associate to Arch's NTP pool
+server 0.arch.pool.ntp.org
+server 1.arch.pool.ntp.org
+server 2.arch.pool.ntp.org
+server 3.arch.pool.ntp.org
+
+# By default, the server allows:
+# - all queries from the local host
+# - only time queries from remote hosts, protected by rate limiting and kod
+restrict default kod limited nomodify nopeer noquery notrap
+restrict 127.0.0.1
+restrict ::1
+
+# Location of drift file
+driftfile /var/lib/ntp/ntp.drift

Copied: ntp/repos/staging-i686/ntp.install (from rev 258953, 
ntp/trunk/ntp.install)
===
--- staging-i686/ntp.install(rev 0)
+++ staging-i686/ntp.install2016-02-07 23:54:05 UTC (rev 258954)
@@ -0,0 +1,5 @@
+post_install() {
+   getent group ntp &>/dev/null || 

[arch-commits] Commit in ntp/repos (12 files)

2015-07-01 Thread Anatol Pomozov
Date: Wednesday, July 1, 2015 @ 18:06:06
  Author: anatolik
Revision: 241667

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  ntp/repos/testing-i686/
  ntp/repos/testing-i686/PKGBUILD
(from rev 241666, ntp/trunk/PKGBUILD)
  ntp/repos/testing-i686/install
(from rev 241666, ntp/trunk/install)
  ntp/repos/testing-i686/ntp.conf
(from rev 241666, ntp/trunk/ntp.conf)
  ntp/repos/testing-i686/ntpd.service
(from rev 241666, ntp/trunk/ntpd.service)
  ntp/repos/testing-i686/ntpdate.service
(from rev 241666, ntp/trunk/ntpdate.service)
  ntp/repos/testing-x86_64/
  ntp/repos/testing-x86_64/PKGBUILD
(from rev 241666, ntp/trunk/PKGBUILD)
  ntp/repos/testing-x86_64/install
(from rev 241666, ntp/trunk/install)
  ntp/repos/testing-x86_64/ntp.conf
(from rev 241666, ntp/trunk/ntp.conf)
  ntp/repos/testing-x86_64/ntpd.service
(from rev 241666, ntp/trunk/ntpd.service)
  ntp/repos/testing-x86_64/ntpdate.service
(from rev 241666, ntp/trunk/ntpdate.service)

+
 testing-i686/PKGBUILD  |   53 +++
 testing-i686/install   |   11 
 testing-i686/ntp.conf  |   24 +
 testing-i686/ntpd.service  |   13 +
 testing-i686/ntpdate.service   |   12 
 testing-x86_64/PKGBUILD|   53 +++
 testing-x86_64/install |   11 
 testing-x86_64/ntp.conf|   24 +
 testing-x86_64/ntpd.service|   13 +
 testing-x86_64/ntpdate.service |   12 
 10 files changed, 226 insertions(+)

Copied: ntp/repos/testing-i686/PKGBUILD (from rev 241666, ntp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-07-01 16:06:06 UTC (rev 241667)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: kevin ke...@archlinux.org
+
+pkgname=ntp
+_pkgname=ntp #-dev
+_pkgver=4.2.8p3
+pkgver=${_pkgver/p/.p}
+pkgrel=1
+pkgdesc='Network Time Protocol reference implementation'
+url='http://www.ntp.org/'
+license=('custom')
+arch=('i686' 'x86_64')
+depends=('openssl' 'libcap' 'libedit')
+backup=('etc/ntp.conf')
+#source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz;
+source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}-${_pkgver}.tar.gz;
+'ntp.conf'
+'ntpd.service'
+'ntpdate.service')
+sha1sums=('fc624396f8d9f9bc282da30c8e8e527ade7d420f'
+  'ad1d6ee2e9aca64a84a7224c88bf6008ac6c69e1'
+  '0a872385e0142888ab48d273fec0669b30a8'
+  '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')
+
+options=('!emptydirs')
+install=install
+
+build() {
+   cd ${srcdir}/${_pkgname}-${_pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib \
+   --enable-linuxcaps \
+   --enable-ntp-signd \
+
+   make
+}
+
+package() {
+   cd ${srcdir}/${_pkgname}-${_pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   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
+
+   install -d -o 87 ${pkgdir}/var/lib/ntp
+   echo  ${pkgdir}/var/lib/ntp/.placeholder
+}

Copied: ntp/repos/testing-i686/install (from rev 241666, ntp/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2015-07-01 16:06:06 UTC (rev 241667)
@@ -0,0 +1,11 @@
+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_remove() {
+   getent passwd ntp /dev/null  userdel ntp /dev/null
+   getent group ntp /dev/null  groupdel ntp /dev/null
+   true
+}

Copied: ntp/repos/testing-i686/ntp.conf (from rev 241666, ntp/trunk/ntp.conf)
===
--- testing-i686/ntp.conf   (rev 0)
+++ testing-i686/ntp.conf   2015-07-01 16:06:06 UTC (rev 241667)
@@ -0,0 +1,24 @@
+# Please consider joining the pool:
+#
+# http://www.pool.ntp.org/join.html
+#
+# For additional information see:
+# - https://wiki.archlinux.org/index.php/Network_Time_Protocol_daemon
+# - http://support.ntp.org/bin/view/Support/GettingStarted
+# - the ntp.conf man page
+
+# Associate to Arch's NTP pool
+server 0.arch.pool.ntp.org
+server 1.arch.pool.ntp.org
+server 2.arch.pool.ntp.org
+server 

[arch-commits] Commit in ntp/repos (12 files)

2014-06-29 Thread Gaetan Bisson
Date: Sunday, June 29, 2014 @ 18:48:02
  Author: bisson
Revision: 215578

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  ntp/repos/testing-i686/
  ntp/repos/testing-i686/PKGBUILD
(from rev 215577, ntp/trunk/PKGBUILD)
  ntp/repos/testing-i686/install
(from rev 215577, ntp/trunk/install)
  ntp/repos/testing-i686/ntp.conf
(from rev 215577, ntp/trunk/ntp.conf)
  ntp/repos/testing-i686/ntpd.service
(from rev 215577, ntp/trunk/ntpd.service)
  ntp/repos/testing-i686/ntpdate.service
(from rev 215577, ntp/trunk/ntpdate.service)
  ntp/repos/testing-x86_64/
  ntp/repos/testing-x86_64/PKGBUILD
(from rev 215577, ntp/trunk/PKGBUILD)
  ntp/repos/testing-x86_64/install
(from rev 215577, ntp/trunk/install)
  ntp/repos/testing-x86_64/ntp.conf
(from rev 215577, ntp/trunk/ntp.conf)
  ntp/repos/testing-x86_64/ntpd.service
(from rev 215577, ntp/trunk/ntpd.service)
  ntp/repos/testing-x86_64/ntpdate.service
(from rev 215577, ntp/trunk/ntpdate.service)

+
 testing-i686/PKGBUILD  |   55 +++
 testing-i686/install   |   11 +++
 testing-i686/ntp.conf  |   19 +
 testing-i686/ntpd.service  |   13 +
 testing-i686/ntpdate.service   |   12 
 testing-x86_64/PKGBUILD|   55 +++
 testing-x86_64/install |   11 +++
 testing-x86_64/ntp.conf|   19 +
 testing-x86_64/ntpd.service|   13 +
 testing-x86_64/ntpdate.service |   12 
 10 files changed, 220 insertions(+)

Copied: ntp/repos/testing-i686/PKGBUILD (from rev 215577, ntp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-06-29 16:48:02 UTC (rev 215578)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: kevin ke...@archlinux.org
+
+pkgname=ntp
+_pkgname=ntp-dev
+_pkgver=4.2.7p446
+pkgver=${_pkgver/p/.p}
+pkgrel=1
+pkgdesc='Network Time Protocol reference implementation'
+url='http://www.ntp.org/'
+license=('custom')
+arch=('i686' 'x86_64')
+depends=('openssl' 'libcap' 'libedit')
+backup=('etc/ntp.conf')
+source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz;
+'ntp.conf'
+'ntpd.service'
+'ntpdate.service')
+sha1sums=('634afa46e77c1fd7f0a797f4d46a4f0654b9ca8d'
+  'd3496dbeb7d531dd6ab071dbce3262c3c9618d8b'
+  'dd24216e8333e12d5080965696602591c72537b1'
+  '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')
+
+options=('!emptydirs')
+install=install
+
+build() {
+   cd ${srcdir}/${_pkgname}-${_pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib \
+   --enable-linuxcaps \
+   --enable-ntp-signd \
+
+   make
+}
+
+package() {
+   cd ${srcdir}/${_pkgname}-${_pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   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
+
+   install -d -o 87 ${pkgdir}/var/lib/ntp
+   echo  ${pkgdir}/var/lib/ntp/.placeholder
+
+   install -dm755 ${pkgdir}/usr/lib/systemd/ntp-units.d
+   echo 'ntpd.service'  
${pkgdir}/usr/lib/systemd/ntp-units.d/50-${pkgname}.list
+}

Copied: ntp/repos/testing-i686/install (from rev 215577, ntp/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2014-06-29 16:48:02 UTC (rev 215578)
@@ -0,0 +1,11 @@
+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_remove() {
+   getent passwd ntp /dev/null  userdel ntp /dev/null
+   getent group ntp /dev/null  groupdel ntp /dev/null
+   true
+}

Copied: ntp/repos/testing-i686/ntp.conf (from rev 215577, ntp/trunk/ntp.conf)
===
--- testing-i686/ntp.conf   (rev 0)
+++ testing-i686/ntp.conf   2014-06-29 16:48:02 UTC (rev 215578)
@@ -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 

[arch-commits] Commit in ntp/repos (12 files)

2014-05-06 Thread Gaetan Bisson
Date: Tuesday, May 6, 2014 @ 12:24:41
  Author: bisson
Revision: 212070

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  ntp/repos/testing-i686/
  ntp/repos/testing-i686/PKGBUILD
(from rev 212069, ntp/trunk/PKGBUILD)
  ntp/repos/testing-i686/install
(from rev 212069, ntp/trunk/install)
  ntp/repos/testing-i686/ntp.conf
(from rev 212069, ntp/trunk/ntp.conf)
  ntp/repos/testing-i686/ntpd.service
(from rev 212069, ntp/trunk/ntpd.service)
  ntp/repos/testing-i686/ntpdate.service
(from rev 212069, ntp/trunk/ntpdate.service)
  ntp/repos/testing-x86_64/
  ntp/repos/testing-x86_64/PKGBUILD
(from rev 212069, ntp/trunk/PKGBUILD)
  ntp/repos/testing-x86_64/install
(from rev 212069, ntp/trunk/install)
  ntp/repos/testing-x86_64/ntp.conf
(from rev 212069, ntp/trunk/ntp.conf)
  ntp/repos/testing-x86_64/ntpd.service
(from rev 212069, ntp/trunk/ntpd.service)
  ntp/repos/testing-x86_64/ntpdate.service
(from rev 212069, ntp/trunk/ntpdate.service)

+
 testing-i686/PKGBUILD  |   56 +++
 testing-i686/install   |   11 +++
 testing-i686/ntp.conf  |   19 +
 testing-i686/ntpd.service  |   13 +
 testing-i686/ntpdate.service   |   12 
 testing-x86_64/PKGBUILD|   56 +++
 testing-x86_64/install |   11 +++
 testing-x86_64/ntp.conf|   19 +
 testing-x86_64/ntpd.service|   13 +
 testing-x86_64/ntpdate.service |   12 
 10 files changed, 222 insertions(+)

Copied: ntp/repos/testing-i686/PKGBUILD (from rev 212069, ntp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-05-06 10:24:41 UTC (rev 212070)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: kevin ke...@archlinux.org
+
+pkgname=ntp
+_pkgname=ntp-dev
+_pkgver=4.2.7p441
+pkgver=${_pkgver/p/.p}
+pkgrel=1
+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/${_pkgname}/${_pkgname}-${_pkgver}.tar.gz;
+'ntp.conf'
+'ntpd.service'
+'ntpdate.service')
+sha1sums=('8113350982f92f99885f201b50df24a14201'
+  'd3496dbeb7d531dd6ab071dbce3262c3c9618d8b'
+  'dd24216e8333e12d5080965696602591c72537b1'
+  '059b382d1af0c55202e2d17f2ae065a2cbfec9ee')
+
+options=('!emptydirs')
+install=install
+
+build() {
+   cd ${srcdir}/${_pkgname}-${_pkgver}
+
+   ./configure \
+   --prefix=/usr \
+   --libexecdir=/usr/lib \
+   --enable-linuxcaps \
+   --enable-ntp-signd \
+
+   make
+}
+
+package() {
+   cd ${srcdir}/${_pkgname}-${_pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   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
+
+   install -d -o 87 ${pkgdir}/var/lib/ntp
+   echo  ${pkgdir}/var/lib/ntp/.placeholder
+
+   install -dm755 ${pkgdir}/usr/lib/systemd/ntp-units.d
+   echo 'ntpd.service'  
${pkgdir}/usr/lib/systemd/ntp-units.d/${pkgname}.list
+}

Copied: ntp/repos/testing-i686/install (from rev 212069, ntp/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2014-05-06 10:24:41 UTC (rev 212070)
@@ -0,0 +1,11 @@
+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_remove() {
+   getent passwd ntp /dev/null  userdel ntp /dev/null
+   getent group ntp /dev/null  groupdel ntp /dev/null
+   true
+}

Copied: ntp/repos/testing-i686/ntp.conf (from rev 212069, ntp/trunk/ntp.conf)
===
--- testing-i686/ntp.conf   (rev 0)
+++ testing-i686/ntp.conf   2014-05-06 10:24:41 UTC (rev 212070)
@@ -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 

[arch-commits] Commit in ntp/repos (12 files)

2013-07-31 Thread Gaetan Bisson
Date: Thursday, August 1, 2013 @ 04:23:42
  Author: bisson
Revision: 191877

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  ntp/repos/testing-i686/
  ntp/repos/testing-i686/PKGBUILD
(from rev 191876, ntp/trunk/PKGBUILD)
  ntp/repos/testing-i686/install
(from rev 191876, ntp/trunk/install)
  ntp/repos/testing-i686/ntp.conf
(from rev 191876, ntp/trunk/ntp.conf)
  ntp/repos/testing-i686/ntpd.service
(from rev 191876, ntp/trunk/ntpd.service)
  ntp/repos/testing-i686/ntpdate.service
(from rev 191876, ntp/trunk/ntpdate.service)
  ntp/repos/testing-x86_64/
  ntp/repos/testing-x86_64/PKGBUILD
(from rev 191876, ntp/trunk/PKGBUILD)
  ntp/repos/testing-x86_64/install
(from rev 191876, ntp/trunk/install)
  ntp/repos/testing-x86_64/ntp.conf
(from rev 191876, ntp/trunk/ntp.conf)
  ntp/repos/testing-x86_64/ntpd.service
(from rev 191876, ntp/trunk/ntpd.service)
  ntp/repos/testing-x86_64/ntpdate.service
(from rev 191876, ntp/trunk/ntpdate.service)

+
 testing-i686/PKGBUILD  |   60 +++
 testing-i686/install   |   37 
 testing-i686/ntp.conf  |   19 
 testing-i686/ntpd.service  |   12 +++
 testing-i686/ntpdate.service   |   12 +++
 testing-x86_64/PKGBUILD|   60 +++
 testing-x86_64/install |   37 
 testing-x86_64/ntp.conf|   19 
 testing-x86_64/ntpd.service|   12 +++
 testing-x86_64/ntpdate.service |   12 +++
 10 files changed, 280 insertions(+)

Copied: ntp/repos/testing-i686/PKGBUILD (from rev 191876, ntp/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2013-08-01 02:23:42 UTC (rev 191877)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: kevin ke...@archlinux.org
+
+pkgname=ntp
+pkgver=4.2.6.p5
+_realver=4.2.6p5
+pkgrel=16
+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'
+  '0cb9dbd285e2e8ac51ff47dee08af69e12a09855'
+)
+
+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/testing-i686/install (from rev 191876, ntp/trunk/install)
===
--- testing-i686/install(rev 0)
+++ testing-i686/install2013-08-01 02:23:42 UTC (rev 191877)
@@ -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 

[arch-commits] Commit in ntp/repos (12 files)

2013-07-31 Thread Gaetan Bisson
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 bis...@archlinux.org
+# Contributor: kevin ke...@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/install2013-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