[arch-commits] Commit in radvd/repos (6 files)

Sébastien Luttringer seblu at archlinux.org
Tue Jul 22 23:02:18 UTC 2014


    Date: Wednesday, July 23, 2014 @ 01:02:18
  Author: seblu
Revision: 116121

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

Added:
  radvd/repos/community-testing-i686/
  radvd/repos/community-testing-i686/PKGBUILD
    (from rev 116120, radvd/trunk/PKGBUILD)
  radvd/repos/community-testing-i686/radvd.service
    (from rev 116120, radvd/trunk/radvd.service)
  radvd/repos/community-testing-x86_64/
  radvd/repos/community-testing-x86_64/PKGBUILD
    (from rev 116120, radvd/trunk/PKGBUILD)
  radvd/repos/community-testing-x86_64/radvd.service
    (from rev 116120, radvd/trunk/radvd.service)

----------------------------------------+
 community-testing-i686/PKGBUILD        |   49 +++++++++++++++++++++++++++++++
 community-testing-i686/radvd.service   |    9 +++++
 community-testing-x86_64/PKGBUILD      |   49 +++++++++++++++++++++++++++++++
 community-testing-x86_64/radvd.service |    9 +++++
 4 files changed, 116 insertions(+)

Copied: radvd/repos/community-testing-i686/PKGBUILD (from rev 116120, radvd/trunk/PKGBUILD)
===================================================================
--- community-testing-i686/PKGBUILD	                        (rev 0)
+++ community-testing-i686/PKGBUILD	2014-07-22 23:02:18 UTC (rev 116121)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Kaiting Chen <kaitocracy at gmail.com>
+# Contributor: Mark Smith <markzzzsmith at yahoo.com.au>
+
+pkgname=radvd
+pkgver=2.1
+pkgrel=1
+pkgdesc='IPv6 Router Advertisement Daemon'
+url='http://www.litech.org/radvd/'
+license=('custom')
+depends=('glibc')
+makedepends=('check')
+arch=('i686' 'x86_64')
+backup=('etc/radvd.conf')
+source=("http://www.litech.org/radvd/dist/$pkgname-$pkgver.tar.xz"{,.asc}
+        "$pkgname.service")
+sha1sums=('385ca18da5c1ef40a1b27854b081b0856f053a4a'
+          'SKIP'
+          '2fdba3b0ed28c67dc1c04bfd1439fa4dece88bbc')
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+    --prefix=/usr \
+    --sbindir=/usr/bin \
+    --sysconfdir=/etc \
+    --with-pidfile=/run/radvd.pid \
+    --mandir=/usr/share/man
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # default config
+  install -D -m 644 radvd.conf.example "$pkgdir/etc/radvd.conf"
+  # license
+  install -D -m 644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT"
+  # systemd
+  install -D -m 644 ../$pkgname.service \
+    "$pkgdir/usr/lib/systemd/system/$pkgname.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: radvd/repos/community-testing-i686/radvd.service (from rev 116120, radvd/trunk/radvd.service)
===================================================================
--- community-testing-i686/radvd.service	                        (rev 0)
+++ community-testing-i686/radvd.service	2014-07-22 23:02:18 UTC (rev 116121)
@@ -0,0 +1,9 @@
+[Unit]
+Description=IPv6 Router Advertisement Daemon
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/radvd --nodaemon --logmethod=stderr
+
+[Install]
+WantedBy=multi-user.target

Copied: radvd/repos/community-testing-x86_64/PKGBUILD (from rev 116120, radvd/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2014-07-22 23:02:18 UTC (rev 116121)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Kaiting Chen <kaitocracy at gmail.com>
+# Contributor: Mark Smith <markzzzsmith at yahoo.com.au>
+
+pkgname=radvd
+pkgver=2.1
+pkgrel=1
+pkgdesc='IPv6 Router Advertisement Daemon'
+url='http://www.litech.org/radvd/'
+license=('custom')
+depends=('glibc')
+makedepends=('check')
+arch=('i686' 'x86_64')
+backup=('etc/radvd.conf')
+source=("http://www.litech.org/radvd/dist/$pkgname-$pkgver.tar.xz"{,.asc}
+        "$pkgname.service")
+sha1sums=('385ca18da5c1ef40a1b27854b081b0856f053a4a'
+          'SKIP'
+          '2fdba3b0ed28c67dc1c04bfd1439fa4dece88bbc')
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+    --prefix=/usr \
+    --sbindir=/usr/bin \
+    --sysconfdir=/etc \
+    --with-pidfile=/run/radvd.pid \
+    --mandir=/usr/share/man
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+  # default config
+  install -D -m 644 radvd.conf.example "$pkgdir/etc/radvd.conf"
+  # license
+  install -D -m 644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT"
+  # systemd
+  install -D -m 644 ../$pkgname.service \
+    "$pkgdir/usr/lib/systemd/system/$pkgname.service"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: radvd/repos/community-testing-x86_64/radvd.service (from rev 116120, radvd/trunk/radvd.service)
===================================================================
--- community-testing-x86_64/radvd.service	                        (rev 0)
+++ community-testing-x86_64/radvd.service	2014-07-22 23:02:18 UTC (rev 116121)
@@ -0,0 +1,9 @@
+[Unit]
+Description=IPv6 Router Advertisement Daemon
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/radvd --nodaemon --logmethod=stderr
+
+[Install]
+WantedBy=multi-user.target




More information about the arch-commits mailing list