[arch-commits] Commit in ypserv/repos (10 files)

Tom Gundersen tomegun at nymeria.archlinux.org
Sun May 12 23:49:03 UTC 2013


    Date: Monday, May 13, 2013 @ 01:49:03
  Author: tomegun
Revision: 185291

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

Added:
  ypserv/repos/testing-i686/
  ypserv/repos/testing-i686/PKGBUILD
    (from rev 185290, ypserv/trunk/PKGBUILD)
  ypserv/repos/testing-i686/yppasswdd.service
    (from rev 185290, ypserv/trunk/yppasswdd.service)
  ypserv/repos/testing-i686/ypserv.service
    (from rev 185290, ypserv/trunk/ypserv.service)
  ypserv/repos/testing-i686/ypxfrd.service
    (from rev 185290, ypserv/trunk/ypxfrd.service)
  ypserv/repos/testing-x86_64/
  ypserv/repos/testing-x86_64/PKGBUILD
    (from rev 185290, ypserv/trunk/PKGBUILD)
  ypserv/repos/testing-x86_64/yppasswdd.service
    (from rev 185290, ypserv/trunk/yppasswdd.service)
  ypserv/repos/testing-x86_64/ypserv.service
    (from rev 185290, ypserv/trunk/ypserv.service)
  ypserv/repos/testing-x86_64/ypxfrd.service
    (from rev 185290, 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 185290, ypserv/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2013-05-12 23:49:03 UTC (rev 185291)
@@ -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=2
+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 --sbindir=/usr/bin
+	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'
+         '0639cc2e8f667272335649eeede77206'
+         '9ff147310a5b83749357b6587cccdf34'
+         '89b8b608c81fd01bb81cdb551854833f')

Copied: ypserv/repos/testing-i686/yppasswdd.service (from rev 185290, ypserv/trunk/yppasswdd.service)
===================================================================
--- testing-i686/yppasswdd.service	                        (rev 0)
+++ testing-i686/yppasswdd.service	2013-05-12 23:49:03 UTC (rev 185291)
@@ -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/bin/rpc.yppasswdd
+
+[Install]
+WantedBy=multi-user.target

Copied: ypserv/repos/testing-i686/ypserv.service (from rev 185290, ypserv/trunk/ypserv.service)
===================================================================
--- testing-i686/ypserv.service	                        (rev 0)
+++ testing-i686/ypserv.service	2013-05-12 23:49:03 UTC (rev 185291)
@@ -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/bin/ypserv
+
+[Install]
+WantedBy=multi-user.target

Copied: ypserv/repos/testing-i686/ypxfrd.service (from rev 185290, ypserv/trunk/ypxfrd.service)
===================================================================
--- testing-i686/ypxfrd.service	                        (rev 0)
+++ testing-i686/ypxfrd.service	2013-05-12 23:49:03 UTC (rev 185291)
@@ -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/bin/rpc.ypxfrd
+
+[Install]
+WantedBy=multi-user.target

Copied: ypserv/repos/testing-x86_64/PKGBUILD (from rev 185290, ypserv/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2013-05-12 23:49:03 UTC (rev 185291)
@@ -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=2
+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 --sbindir=/usr/bin
+	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'
+         '0639cc2e8f667272335649eeede77206'
+         '9ff147310a5b83749357b6587cccdf34'
+         '89b8b608c81fd01bb81cdb551854833f')

Copied: ypserv/repos/testing-x86_64/yppasswdd.service (from rev 185290, ypserv/trunk/yppasswdd.service)
===================================================================
--- testing-x86_64/yppasswdd.service	                        (rev 0)
+++ testing-x86_64/yppasswdd.service	2013-05-12 23:49:03 UTC (rev 185291)
@@ -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/bin/rpc.yppasswdd
+
+[Install]
+WantedBy=multi-user.target

Copied: ypserv/repos/testing-x86_64/ypserv.service (from rev 185290, ypserv/trunk/ypserv.service)
===================================================================
--- testing-x86_64/ypserv.service	                        (rev 0)
+++ testing-x86_64/ypserv.service	2013-05-12 23:49:03 UTC (rev 185291)
@@ -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/bin/ypserv
+
+[Install]
+WantedBy=multi-user.target

Copied: ypserv/repos/testing-x86_64/ypxfrd.service (from rev 185290, ypserv/trunk/ypxfrd.service)
===================================================================
--- testing-x86_64/ypxfrd.service	                        (rev 0)
+++ testing-x86_64/ypxfrd.service	2013-05-12 23:49:03 UTC (rev 185291)
@@ -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/bin/rpc.ypxfrd
+
+[Install]
+WantedBy=multi-user.target




More information about the arch-commits mailing list