[arch-commits] Commit in ypserv/repos (10 files)
Tom Gundersen
tomegun at nymeria.archlinux.org
Fri Apr 12 17:03:07 UTC 2013
Date: Friday, April 12, 2013 @ 19:03:07
Author: tomegun
Revision: 182687
archrelease: copy trunk to testing-i686, testing-x86_64
Added:
ypserv/repos/testing-i686/
ypserv/repos/testing-i686/PKGBUILD
(from rev 182686, ypserv/trunk/PKGBUILD)
ypserv/repos/testing-i686/yppasswdd.service
(from rev 182686, ypserv/trunk/yppasswdd.service)
ypserv/repos/testing-i686/ypserv.service
(from rev 182686, ypserv/trunk/ypserv.service)
ypserv/repos/testing-i686/ypxfrd.service
(from rev 182686, ypserv/trunk/ypxfrd.service)
ypserv/repos/testing-x86_64/
ypserv/repos/testing-x86_64/PKGBUILD
(from rev 182686, ypserv/trunk/PKGBUILD)
ypserv/repos/testing-x86_64/yppasswdd.service
(from rev 182686, ypserv/trunk/yppasswdd.service)
ypserv/repos/testing-x86_64/ypserv.service
(from rev 182686, ypserv/trunk/ypserv.service)
ypserv/repos/testing-x86_64/ypxfrd.service
(from rev 182686, ypserv/trunk/ypxfrd.service)
----------------------------------+
testing-i686/PKGBUILD | 42 +++++++++++++++++++++++++++++++++++++
testing-i686/yppasswdd.service | 12 ++++++++++
testing-i686/ypserv.service | 12 ++++++++++
testing-i686/ypxfrd.service | 12 ++++++++++
testing-x86_64/PKGBUILD | 42 +++++++++++++++++++++++++++++++++++++
testing-x86_64/yppasswdd.service | 12 ++++++++++
testing-x86_64/ypserv.service | 12 ++++++++++
testing-x86_64/ypxfrd.service | 12 ++++++++++
8 files changed, 156 insertions(+)
Copied: ypserv/repos/testing-i686/PKGBUILD (from rev 182686, ypserv/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD (rev 0)
+++ testing-i686/PKGBUILD 2013-04-12 17:03:07 UTC (rev 182687)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Tom Gundersen <teg at jklm.no>
+# Contributor: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+
+pkgname=ypserv
+pkgver=2.31
+pkgrel=1
+pkgdesc='Linux NIS Server'
+arch=('i686' 'x86_64')
+url='http://www.linux-nis.org/nis/ypserv/'
+license=('GPL2')
+depends=('gdbm' 'openslp' 'inetutils' 'yp-tools')
+optdepends=('gawk: for printcap support')
+backup=('etc/ypserv.conf' 'etc/netgroup' 'var/yp/securenets')
+source=("http://www.linux-nis.org/download/${pkgname}/${pkgname}-${pkgver}.tar.bz2"
+ 'ypxfrd.service'
+ 'yppasswdd.service'
+ 'ypserv.service')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+
+ install -D -m644 etc/netgroup "${pkgdir}"/etc/netgroup
+ install -D -m644 etc/ypserv.conf "${pkgdir}"/etc/ypserv.conf
+ install -D -m644 etc/securenets "${pkgdir}"/var/yp/securenets
+ install -D -m644 ../ypxfrd.service "${pkgdir}"/usr/lib/systemd/system/ypxfrd.service
+ install -D -m644 ../ypserv.service "${pkgdir}"/usr/lib/systemd/system/ypserv.service
+ install -D -m644 ../yppasswdd.service "${pkgdir}"/usr/lib/systemd/system/yppasswdd.service
+}
+md5sums=('4537b8f0e917edca8f57b70b9cbc37f3'
+ 'c80e253756446d59a90c4c21b1cb8740'
+ '7cba3dd3544436c3c1f05e36c0018e92'
+ '3398271c3e0a054e64b06b99aa2dc63d')
Copied: ypserv/repos/testing-i686/yppasswdd.service (from rev 182686, ypserv/trunk/yppasswdd.service)
===================================================================
--- testing-i686/yppasswdd.service (rev 0)
+++ testing-i686/yppasswdd.service 2013-04-12 17:03:07 UTC (rev 182687)
@@ -0,0 +1,12 @@
+[Unit]
+Description=NIS/YP (Network Information Service) Users Passwords Change Server
+Requires=rpcbind.service
+After=network.target rpcbind.service
+
+[Service]
+Type=forking
+PIDFile=/run/yppasswdd.pid
+ExecStart=/usr/sbin/rpc.yppasswdd
+
+[Install]
+WantedBy=multi-user.target
Copied: ypserv/repos/testing-i686/ypserv.service (from rev 182686, ypserv/trunk/ypserv.service)
===================================================================
--- testing-i686/ypserv.service (rev 0)
+++ testing-i686/ypserv.service 2013-04-12 17:03:07 UTC (rev 182687)
@@ -0,0 +1,12 @@
+[Unit]
+Description=NIS/YP (Network Information Service) Server
+Requires=rpcbind.service
+After=network.target rpcbind.service
+
+[Service]
+Type=forking
+PIDFile=/run/ypserv.pid
+ExecStart=/usr/sbin/ypserv
+
+[Install]
+WantedBy=multi-user.target
Copied: ypserv/repos/testing-i686/ypxfrd.service (from rev 182686, ypserv/trunk/ypxfrd.service)
===================================================================
--- testing-i686/ypxfrd.service (rev 0)
+++ testing-i686/ypxfrd.service 2013-04-12 17:03:07 UTC (rev 182687)
@@ -0,0 +1,12 @@
+[Unit]
+Description=NIS/YP (Network Information Service) Maps Transferring Accelerator
+Requires=rpcbind.service
+After=network.target rpcbind.service
+
+[Service]
+Type=forking
+PIDFile=/run/ypxfrd.pid
+ExecStart=/usr/sbin/rpc.ypxfrd
+
+[Install]
+WantedBy=multi-user.target
Copied: ypserv/repos/testing-x86_64/PKGBUILD (from rev 182686, ypserv/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2013-04-12 17:03:07 UTC (rev 182687)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Tom Gundersen <teg at jklm.no>
+# Contributor: Gaetan Bisson <bisson at archlinux.org>
+# Contributor: judd <jvinet at zeroflux.org>
+# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
+
+pkgname=ypserv
+pkgver=2.31
+pkgrel=1
+pkgdesc='Linux NIS Server'
+arch=('i686' 'x86_64')
+url='http://www.linux-nis.org/nis/ypserv/'
+license=('GPL2')
+depends=('gdbm' 'openslp' 'inetutils' 'yp-tools')
+optdepends=('gawk: for printcap support')
+backup=('etc/ypserv.conf' 'etc/netgroup' 'var/yp/securenets')
+source=("http://www.linux-nis.org/download/${pkgname}/${pkgname}-${pkgver}.tar.bz2"
+ 'ypxfrd.service'
+ 'yppasswdd.service'
+ 'ypserv.service')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+
+ install -D -m644 etc/netgroup "${pkgdir}"/etc/netgroup
+ install -D -m644 etc/ypserv.conf "${pkgdir}"/etc/ypserv.conf
+ install -D -m644 etc/securenets "${pkgdir}"/var/yp/securenets
+ install -D -m644 ../ypxfrd.service "${pkgdir}"/usr/lib/systemd/system/ypxfrd.service
+ install -D -m644 ../ypserv.service "${pkgdir}"/usr/lib/systemd/system/ypserv.service
+ install -D -m644 ../yppasswdd.service "${pkgdir}"/usr/lib/systemd/system/yppasswdd.service
+}
+md5sums=('4537b8f0e917edca8f57b70b9cbc37f3'
+ 'c80e253756446d59a90c4c21b1cb8740'
+ '7cba3dd3544436c3c1f05e36c0018e92'
+ '3398271c3e0a054e64b06b99aa2dc63d')
Copied: ypserv/repos/testing-x86_64/yppasswdd.service (from rev 182686, ypserv/trunk/yppasswdd.service)
===================================================================
--- testing-x86_64/yppasswdd.service (rev 0)
+++ testing-x86_64/yppasswdd.service 2013-04-12 17:03:07 UTC (rev 182687)
@@ -0,0 +1,12 @@
+[Unit]
+Description=NIS/YP (Network Information Service) Users Passwords Change Server
+Requires=rpcbind.service
+After=network.target rpcbind.service
+
+[Service]
+Type=forking
+PIDFile=/run/yppasswdd.pid
+ExecStart=/usr/sbin/rpc.yppasswdd
+
+[Install]
+WantedBy=multi-user.target
Copied: ypserv/repos/testing-x86_64/ypserv.service (from rev 182686, ypserv/trunk/ypserv.service)
===================================================================
--- testing-x86_64/ypserv.service (rev 0)
+++ testing-x86_64/ypserv.service 2013-04-12 17:03:07 UTC (rev 182687)
@@ -0,0 +1,12 @@
+[Unit]
+Description=NIS/YP (Network Information Service) Server
+Requires=rpcbind.service
+After=network.target rpcbind.service
+
+[Service]
+Type=forking
+PIDFile=/run/ypserv.pid
+ExecStart=/usr/sbin/ypserv
+
+[Install]
+WantedBy=multi-user.target
Copied: ypserv/repos/testing-x86_64/ypxfrd.service (from rev 182686, ypserv/trunk/ypxfrd.service)
===================================================================
--- testing-x86_64/ypxfrd.service (rev 0)
+++ testing-x86_64/ypxfrd.service 2013-04-12 17:03:07 UTC (rev 182687)
@@ -0,0 +1,12 @@
+[Unit]
+Description=NIS/YP (Network Information Service) Maps Transferring Accelerator
+Requires=rpcbind.service
+After=network.target rpcbind.service
+
+[Service]
+Type=forking
+PIDFile=/run/ypxfrd.pid
+ExecStart=/usr/sbin/rpc.ypxfrd
+
+[Install]
+WantedBy=multi-user.target
More information about the arch-commits
mailing list