[arch-commits] Commit in ndisc6/repos (10 files)
Sébastien Luttringer
seblu at archlinux.org
Mon Aug 25 13:58:05 UTC 2014
Date: Monday, August 25, 2014 @ 15:58:05
Author: seblu
Revision: 117873
archrelease: copy trunk to community-testing-i686, community-testing-x86_64
Added:
ndisc6/repos/community-testing-i686/
ndisc6/repos/community-testing-i686/PKGBUILD
(from rev 117872, ndisc6/trunk/PKGBUILD)
ndisc6/repos/community-testing-i686/ndisc6.install
(from rev 117872, ndisc6/trunk/ndisc6.install)
ndisc6/repos/community-testing-i686/rdnssd at .service
(from rev 117872, ndisc6/trunk/rdnssd at .service)
ndisc6/repos/community-testing-i686/resolvconf-hook
(from rev 117872, ndisc6/trunk/resolvconf-hook)
ndisc6/repos/community-testing-x86_64/
ndisc6/repos/community-testing-x86_64/PKGBUILD
(from rev 117872, ndisc6/trunk/PKGBUILD)
ndisc6/repos/community-testing-x86_64/ndisc6.install
(from rev 117872, ndisc6/trunk/ndisc6.install)
ndisc6/repos/community-testing-x86_64/rdnssd at .service
(from rev 117872, ndisc6/trunk/rdnssd at .service)
ndisc6/repos/community-testing-x86_64/resolvconf-hook
(from rev 117872, ndisc6/trunk/resolvconf-hook)
------------------------------------------+
community-testing-i686/PKGBUILD | 56 +++++++++++++++++++++++++++++
community-testing-i686/ndisc6.install | 19 +++++++++
community-testing-i686/rdnssd at .service | 10 +++++
community-testing-i686/resolvconf-hook | 5 ++
community-testing-x86_64/PKGBUILD | 56 +++++++++++++++++++++++++++++
community-testing-x86_64/ndisc6.install | 19 +++++++++
community-testing-x86_64/rdnssd at .service | 10 +++++
community-testing-x86_64/resolvconf-hook | 5 ++
8 files changed, 180 insertions(+)
Copied: ndisc6/repos/community-testing-i686/PKGBUILD (from rev 117872, ndisc6/trunk/PKGBUILD)
===================================================================
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2014-08-25 13:58:05 UTC (rev 117873)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Chris Brannon <chris at the-brannons.com>
+# Contributor: Mark Smith <markzzzsmith at yahoo.com.au>
+
+pkgname=ndisc6
+pkgver=1.0.2
+pkgrel=8
+pkgdesc='Collection of IPv6 networking utilities'
+arch=('i686' 'x86_64')
+url='http://www.remlab.net/ndisc6/'
+license=('GPL')
+depends=('glibc' 'perl')
+makedepends=('glibc' 'gcc' 'systemd')
+options=('!emptydirs')
+install=$pkgname.install
+source=("http://www.remlab.net/files/ndisc6/$pkgname-$pkgver.tar.bz2"
+ 'rdnssd at .service'
+ 'resolvconf-hook')
+md5sums=('50cb4c19606cf6ff2b7388e71832f579'
+ '58b44cbe6d38082fb299eb136754bf31'
+ '48d0a77ed9536cd0d4642e1f1ca0b255')
+
+prepare() {
+ # patch invalid path
+ sed -ri 's,PATH=/sbin:/bin,PATH=/sbin:/bin:/usr/sbin:/usr/bin,' \
+ $pkgname-$pkgver/rdnssd/merge-hook.in
+}
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure \
+ --prefix=/usr \
+ --sbindir=/usr/bin \
+ --localstatedir=/var \
+ --sysconfdir=/etc
+ make
+}
+
+package() {
+ pushd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+ popd
+
+ # service
+ install -Dm644 "$srcdir/rdnssd at .service" "$pkgdir/usr/lib/systemd/system/rdnssd at .service"
+
+ # tmpfiles
+ install -Dm644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+ echo 'd /run/rdnssd 0755 nobody root' > "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+
+ # resolvconf merge hook
+ install -Dm755 "$srcdir/resolvconf-hook" "$pkgdir/etc/rdnssd/resolvconf-hook"
+}
+
+# vim:set ts=2 sw=2 et:
Copied: ndisc6/repos/community-testing-i686/ndisc6.install (from rev 117872, ndisc6/trunk/ndisc6.install)
===================================================================
--- community-testing-i686/ndisc6.install (rev 0)
+++ community-testing-i686/ndisc6.install 2014-08-25 13:58:05 UTC (rev 117873)
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+# arg 1: the new package version
+post_install() {
+ systemd-tmpfiles --create ndisc6.conf
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+ if (( "$(vercmp $2 1.0.2-7)" <= 0 )); then
+ cat << EOF
+===> rdnssd.service has been replaced by rdnssd at .service. Update your setup.
+===> hint: systemctl enable rdnssd at merge-hook.service
+EOF
+ fi
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
Copied: ndisc6/repos/community-testing-i686/rdnssd at .service (from rev 117872, ndisc6/trunk/rdnssd at .service)
===================================================================
--- community-testing-i686/rdnssd at .service (rev 0)
+++ community-testing-i686/rdnssd at .service 2014-08-25 13:58:05 UTC (rev 117873)
@@ -0,0 +1,10 @@
+[Unit]
+Description=RDNSS daemon for Linux
+Before=network.target
+Requires=network.target
+
+[Service]
+ExecStart=/usr/bin/rdnssd -f -H /etc/rdnssd/%i
+
+[Install]
+WantedBy=multi-user.target
Copied: ndisc6/repos/community-testing-i686/resolvconf-hook (from rev 117872, ndisc6/trunk/resolvconf-hook)
===================================================================
--- community-testing-i686/resolvconf-hook (rev 0)
+++ community-testing-i686/resolvconf-hook 2014-08-25 13:58:05 UTC (rev 117873)
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+if [[ -f /run/rdnssd/resolv.conf ]]; then
+ /usr/bin/resolvconf -a rdnssd < /run/rdnssd/resolv.conf
+fi
Copied: ndisc6/repos/community-testing-x86_64/PKGBUILD (from rev 117872, ndisc6/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD (rev 0)
+++ community-testing-x86_64/PKGBUILD 2014-08-25 13:58:05 UTC (rev 117873)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Chris Brannon <chris at the-brannons.com>
+# Contributor: Mark Smith <markzzzsmith at yahoo.com.au>
+
+pkgname=ndisc6
+pkgver=1.0.2
+pkgrel=8
+pkgdesc='Collection of IPv6 networking utilities'
+arch=('i686' 'x86_64')
+url='http://www.remlab.net/ndisc6/'
+license=('GPL')
+depends=('glibc' 'perl')
+makedepends=('glibc' 'gcc' 'systemd')
+options=('!emptydirs')
+install=$pkgname.install
+source=("http://www.remlab.net/files/ndisc6/$pkgname-$pkgver.tar.bz2"
+ 'rdnssd at .service'
+ 'resolvconf-hook')
+md5sums=('50cb4c19606cf6ff2b7388e71832f579'
+ '58b44cbe6d38082fb299eb136754bf31'
+ '48d0a77ed9536cd0d4642e1f1ca0b255')
+
+prepare() {
+ # patch invalid path
+ sed -ri 's,PATH=/sbin:/bin,PATH=/sbin:/bin:/usr/sbin:/usr/bin,' \
+ $pkgname-$pkgver/rdnssd/merge-hook.in
+}
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure \
+ --prefix=/usr \
+ --sbindir=/usr/bin \
+ --localstatedir=/var \
+ --sysconfdir=/etc
+ make
+}
+
+package() {
+ pushd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+ popd
+
+ # service
+ install -Dm644 "$srcdir/rdnssd at .service" "$pkgdir/usr/lib/systemd/system/rdnssd at .service"
+
+ # tmpfiles
+ install -Dm644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+ echo 'd /run/rdnssd 0755 nobody root' > "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+
+ # resolvconf merge hook
+ install -Dm755 "$srcdir/resolvconf-hook" "$pkgdir/etc/rdnssd/resolvconf-hook"
+}
+
+# vim:set ts=2 sw=2 et:
Copied: ndisc6/repos/community-testing-x86_64/ndisc6.install (from rev 117872, ndisc6/trunk/ndisc6.install)
===================================================================
--- community-testing-x86_64/ndisc6.install (rev 0)
+++ community-testing-x86_64/ndisc6.install 2014-08-25 13:58:05 UTC (rev 117873)
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+# arg 1: the new package version
+post_install() {
+ systemd-tmpfiles --create ndisc6.conf
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+ if (( "$(vercmp $2 1.0.2-7)" <= 0 )); then
+ cat << EOF
+===> rdnssd.service has been replaced by rdnssd at .service. Update your setup.
+===> hint: systemctl enable rdnssd at merge-hook.service
+EOF
+ fi
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
Copied: ndisc6/repos/community-testing-x86_64/rdnssd at .service (from rev 117872, ndisc6/trunk/rdnssd at .service)
===================================================================
--- community-testing-x86_64/rdnssd at .service (rev 0)
+++ community-testing-x86_64/rdnssd at .service 2014-08-25 13:58:05 UTC (rev 117873)
@@ -0,0 +1,10 @@
+[Unit]
+Description=RDNSS daemon for Linux
+Before=network.target
+Requires=network.target
+
+[Service]
+ExecStart=/usr/bin/rdnssd -f -H /etc/rdnssd/%i
+
+[Install]
+WantedBy=multi-user.target
Copied: ndisc6/repos/community-testing-x86_64/resolvconf-hook (from rev 117872, ndisc6/trunk/resolvconf-hook)
===================================================================
--- community-testing-x86_64/resolvconf-hook (rev 0)
+++ community-testing-x86_64/resolvconf-hook 2014-08-25 13:58:05 UTC (rev 117873)
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+if [[ -f /run/rdnssd/resolv.conf ]]; then
+ /usr/bin/resolvconf -a rdnssd < /run/rdnssd/resolv.conf
+fi
More information about the arch-commits
mailing list