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

Andreas Radke andyrtr at archlinux.org
Thu Dec 1 21:08:22 UTC 2016


    Date: Thursday, December 1, 2016 @ 21:08:21
  Author: andyrtr
Revision: 282497

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

Added:
  rpcbind/repos/testing-i686/
  rpcbind/repos/testing-i686/PKGBUILD
    (from rev 282496, rpcbind/trunk/PKGBUILD)
  rpcbind/repos/testing-i686/rpcbind-sunrpc.patch
    (from rev 282496, rpcbind/trunk/rpcbind-sunrpc.patch)
  rpcbind/repos/testing-i686/rpcbind.conf
    (from rev 282496, rpcbind/trunk/rpcbind.conf)
  rpcbind/repos/testing-i686/rpcbind.install
    (from rev 282496, rpcbind/trunk/rpcbind.install)
  rpcbind/repos/testing-x86_64/
  rpcbind/repos/testing-x86_64/PKGBUILD
    (from rev 282496, rpcbind/trunk/PKGBUILD)
  rpcbind/repos/testing-x86_64/rpcbind-sunrpc.patch
    (from rev 282496, rpcbind/trunk/rpcbind-sunrpc.patch)
  rpcbind/repos/testing-x86_64/rpcbind.conf
    (from rev 282496, rpcbind/trunk/rpcbind.conf)
  rpcbind/repos/testing-x86_64/rpcbind.install
    (from rev 282496, rpcbind/trunk/rpcbind.install)

-------------------------------------+
 testing-i686/PKGBUILD               |   57 ++++++++++++++++++++++++++++++++++
 testing-i686/rpcbind-sunrpc.patch   |   11 ++++++
 testing-i686/rpcbind.conf           |    3 +
 testing-i686/rpcbind.install        |    8 ++++
 testing-x86_64/PKGBUILD             |   57 ++++++++++++++++++++++++++++++++++
 testing-x86_64/rpcbind-sunrpc.patch |   11 ++++++
 testing-x86_64/rpcbind.conf         |    3 +
 testing-x86_64/rpcbind.install      |    8 ++++
 8 files changed, 158 insertions(+)

Copied: rpcbind/repos/testing-i686/PKGBUILD (from rev 282496, rpcbind/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2016-12-01 21:08:21 UTC (rev 282497)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: AndyRTR <andyrtr at archlinux.org>
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+
+pkgname=rpcbind
+pkgver=0.2.4
+pkgrel=1
+pkgdesc="portmap replacement which supports RPC over various protocols"
+arch=(i686 x86_64)
+backup=('etc/conf.d/rpcbind')
+makedepends=('systemd')
+depends=('bash' 'glibc' 'libtirpc' 'libsystemd')
+url="http://rpcbind.sourceforge.net"
+license=('custom')
+replaces=('portmap')
+# see also http://git.infradead.org/users/steved/rpcbind.git
+source=(https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2
+        rpcbind-sunrpc.patch
+#        rpcbind.service
+#        rpcbind.socket
+        rpcbind.conf)
+install=rpcbind.install
+sha1sums=('8a6045dd3397e9f71bf3a7c9d269e255cca537bd'
+          '1b997ce76f9727efc8c72fc5f97189591c9a60e2'
+          '08246ff18d12cee01e5c9391c6ba8f5597cac936')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  # patch for iana services file # FS#20273
+  patch -Np1 -i ../rpcbind-sunrpc.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr \
+    --with-rpcuser=rpc \
+    --enable-warmstarts \
+    --with-statedir=/var/lib/rpcbind
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # install rpcbind config file
+  install -D -m644 $srcdir/rpcbind.conf $pkgdir/etc/conf.d/rpcbind
+  # install missing man page - https://bugs.archlinux.org/task/21271
+  install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/
+  # install systemd service file
+#  install -D -m644 $srcdir/rpcbind.service $pkgdir/usr/lib/systemd/system/rpcbind.service
+  # install system socket activation
+#  install -D -m644 $srcdir/rpcbind.socket $pkgdir/usr/lib/systemd/system/rpcbind.socket
+  # add state directory
+  install -d -m 700 -o 32 -g 32 $pkgdir/var/lib/rpcbind
+  # install license
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING
+}

Copied: rpcbind/repos/testing-i686/rpcbind-sunrpc.patch (from rev 282496, rpcbind/trunk/rpcbind-sunrpc.patch)
===================================================================
--- testing-i686/rpcbind-sunrpc.patch	                        (rev 0)
+++ testing-i686/rpcbind-sunrpc.patch	2016-12-01 21:08:21 UTC (rev 282497)
@@ -0,0 +1,11 @@
+--- rpcbind-0.2.3/src/rpcbind.c	2015-04-27 16:07:43.000000000 +0200
++++ rpcbind-0.2.3/src/rpcbind.c.new	2015-04-27 19:48:44.518124944 +0200
+@@ -132,7 +132,7 @@
+ char *udp_uaddr;	/* Universal UDP address */
+ char *tcp_uaddr;	/* Universal TCP address */
+ #endif
+-static char servname[] = "rpcbind";
++static char servname[] = "sunrpc";
+ static char superuser[] = "superuser";
+ 
+ int main __P((int, char *[]));

Copied: rpcbind/repos/testing-i686/rpcbind.conf (from rev 282496, rpcbind/trunk/rpcbind.conf)
===================================================================
--- testing-i686/rpcbind.conf	                        (rev 0)
+++ testing-i686/rpcbind.conf	2016-12-01 21:08:21 UTC (rev 282497)
@@ -0,0 +1,3 @@
+#
+# Optional arguments passed to rpcbind. See rpcbind(8)
+RPCBIND_ARGS=""

Copied: rpcbind/repos/testing-i686/rpcbind.install (from rev 282496, rpcbind/trunk/rpcbind.install)
===================================================================
--- testing-i686/rpcbind.install	                        (rev 0)
+++ testing-i686/rpcbind.install	2016-12-01 21:08:21 UTC (rev 282497)
@@ -0,0 +1,8 @@
+post_install() {
+	getent group rpc &>/dev/null || groupadd -r -g 32 rpc >/dev/null
+	getent passwd rpc &>/dev/null || useradd -r -u 32 -g rpc -d /dev/null -s /bin/false -c "Rpcbind Daemon" rpc >/dev/null
+}
+
+post_upgrade() {
+	post_install
+}

Copied: rpcbind/repos/testing-x86_64/PKGBUILD (from rev 282496, rpcbind/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2016-12-01 21:08:21 UTC (rev 282497)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: AndyRTR <andyrtr at archlinux.org>
+# Maintainer: Tobias Powalowski <tpowa at archlinux.org>
+
+pkgname=rpcbind
+pkgver=0.2.4
+pkgrel=1
+pkgdesc="portmap replacement which supports RPC over various protocols"
+arch=(i686 x86_64)
+backup=('etc/conf.d/rpcbind')
+makedepends=('systemd')
+depends=('bash' 'glibc' 'libtirpc' 'libsystemd')
+url="http://rpcbind.sourceforge.net"
+license=('custom')
+replaces=('portmap')
+# see also http://git.infradead.org/users/steved/rpcbind.git
+source=(https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2
+        rpcbind-sunrpc.patch
+#        rpcbind.service
+#        rpcbind.socket
+        rpcbind.conf)
+install=rpcbind.install
+sha1sums=('8a6045dd3397e9f71bf3a7c9d269e255cca537bd'
+          '1b997ce76f9727efc8c72fc5f97189591c9a60e2'
+          '08246ff18d12cee01e5c9391c6ba8f5597cac936')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+  # patch for iana services file # FS#20273
+  patch -Np1 -i ../rpcbind-sunrpc.patch
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr \
+    --with-rpcuser=rpc \
+    --enable-warmstarts \
+    --with-statedir=/var/lib/rpcbind
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  # install rpcbind config file
+  install -D -m644 $srcdir/rpcbind.conf $pkgdir/etc/conf.d/rpcbind
+  # install missing man page - https://bugs.archlinux.org/task/21271
+  install -m644 man/rpcinfo.8 $pkgdir/usr/share/man/man8/
+  # install systemd service file
+#  install -D -m644 $srcdir/rpcbind.service $pkgdir/usr/lib/systemd/system/rpcbind.service
+  # install system socket activation
+#  install -D -m644 $srcdir/rpcbind.socket $pkgdir/usr/lib/systemd/system/rpcbind.socket
+  # add state directory
+  install -d -m 700 -o 32 -g 32 $pkgdir/var/lib/rpcbind
+  # install license
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/rpcbind/COPYING
+}

Copied: rpcbind/repos/testing-x86_64/rpcbind-sunrpc.patch (from rev 282496, rpcbind/trunk/rpcbind-sunrpc.patch)
===================================================================
--- testing-x86_64/rpcbind-sunrpc.patch	                        (rev 0)
+++ testing-x86_64/rpcbind-sunrpc.patch	2016-12-01 21:08:21 UTC (rev 282497)
@@ -0,0 +1,11 @@
+--- rpcbind-0.2.3/src/rpcbind.c	2015-04-27 16:07:43.000000000 +0200
++++ rpcbind-0.2.3/src/rpcbind.c.new	2015-04-27 19:48:44.518124944 +0200
+@@ -132,7 +132,7 @@
+ char *udp_uaddr;	/* Universal UDP address */
+ char *tcp_uaddr;	/* Universal TCP address */
+ #endif
+-static char servname[] = "rpcbind";
++static char servname[] = "sunrpc";
+ static char superuser[] = "superuser";
+ 
+ int main __P((int, char *[]));

Copied: rpcbind/repos/testing-x86_64/rpcbind.conf (from rev 282496, rpcbind/trunk/rpcbind.conf)
===================================================================
--- testing-x86_64/rpcbind.conf	                        (rev 0)
+++ testing-x86_64/rpcbind.conf	2016-12-01 21:08:21 UTC (rev 282497)
@@ -0,0 +1,3 @@
+#
+# Optional arguments passed to rpcbind. See rpcbind(8)
+RPCBIND_ARGS=""

Copied: rpcbind/repos/testing-x86_64/rpcbind.install (from rev 282496, rpcbind/trunk/rpcbind.install)
===================================================================
--- testing-x86_64/rpcbind.install	                        (rev 0)
+++ testing-x86_64/rpcbind.install	2016-12-01 21:08:21 UTC (rev 282497)
@@ -0,0 +1,8 @@
+post_install() {
+	getent group rpc &>/dev/null || groupadd -r -g 32 rpc >/dev/null
+	getent passwd rpc &>/dev/null || useradd -r -u 32 -g rpc -d /dev/null -s /bin/false -c "Rpcbind Daemon" rpc >/dev/null
+}
+
+post_upgrade() {
+	post_install
+}



More information about the arch-commits mailing list