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

Anatol Pomozov anatolik at archlinux.org
Mon Apr 11 17:03:36 UTC 2016


    Date: Monday, April 11, 2016 @ 19:03:35
  Author: anatolik
Revision: 264672

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

Added:
  dhcpcd/repos/testing-i686/
  dhcpcd/repos/testing-i686/PKGBUILD
    (from rev 264671, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-i686/dhcpcd.service
    (from rev 264671, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-i686/dhcpcd_.service
    (from rev 264671, dhcpcd/trunk/dhcpcd_.service)
  dhcpcd/repos/testing-i686/queue_from_compat.patch
    (from rev 264671, dhcpcd/trunk/queue_from_compat.patch)
  dhcpcd/repos/testing-x86_64/
  dhcpcd/repos/testing-x86_64/PKGBUILD
    (from rev 264671, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.service
    (from rev 264671, dhcpcd/trunk/dhcpcd.service)
  dhcpcd/repos/testing-x86_64/dhcpcd_.service
    (from rev 264671, dhcpcd/trunk/dhcpcd_.service)
  dhcpcd/repos/testing-x86_64/queue_from_compat.patch
    (from rev 264671, dhcpcd/trunk/queue_from_compat.patch)

----------------------------------------+
 testing-i686/PKGBUILD                  |   69 +++++++++++++++++++++++++++++++
 testing-i686/dhcpcd.service            |   13 +++++
 testing-i686/dhcpcd_.service           |   15 ++++++
 testing-i686/queue_from_compat.patch   |   13 +++++
 testing-x86_64/PKGBUILD                |   69 +++++++++++++++++++++++++++++++
 testing-x86_64/dhcpcd.service          |   13 +++++
 testing-x86_64/dhcpcd_.service         |   15 ++++++
 testing-x86_64/queue_from_compat.patch |   13 +++++
 8 files changed, 220 insertions(+)

Copied: dhcpcd/repos/testing-i686/PKGBUILD (from rev 264671, dhcpcd/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2016-04-11 17:03:35 UTC (rev 264672)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Tom Killian <tom.archlinux.org>
+# Contributor: Judd Vinet <jvinet.zeroflux.org>
+
+pkgname=dhcpcd
+pkgver=6.10.2
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="http://roy.marples.name/projects/dhcpcd/"
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc' 'sh' 'udev')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz"
+        'queue_from_compat.patch'
+        'dhcpcd_.service'
+        'dhcpcd.service')
+sha1sums=('1ee99eb0319552f6b5f92d5ba85902f03776519b'
+          '393f02700d0078862a461a1fbdeac1542791749b'
+          '6f1633edde14d29b5cdc09c4f029a450ef2ebc96'
+          '52c1bad9ab43e9a253c1eb175e7eefb13497b8f9')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 < ../queue_from_compat.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # configure variables
+  ./configure \
+      --prefix=/usr \
+      --sysconfdir=/etc \
+      --sbindir=/usr/bin \
+      --libexecdir=/usr/lib/dhcpcd \
+      --dbdir=/var/lib/dhcpcd \
+      --rundir=/run
+
+  # Build
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make test
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  sed 26q "$srcdir/$pkgname-$pkgver/control.h" \
+      >>"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" "${pkgdir}/usr/lib/systemd/system/dhcpcd at .service"
+  install -Dm644 "${srcdir}/dhcpcd.service" "${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+}

Copied: dhcpcd/repos/testing-i686/dhcpcd.service (from rev 264671, dhcpcd/trunk/dhcpcd.service)
===================================================================
--- testing-i686/dhcpcd.service	                        (rev 0)
+++ testing-i686/dhcpcd.service	2016-04-11 17:03:35 UTC (rev 264672)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd.pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-i686/dhcpcd_.service (from rev 264671, dhcpcd/trunk/dhcpcd_.service)
===================================================================
--- testing-i686/dhcpcd_.service	                        (rev 0)
+++ testing-i686/dhcpcd_.service	2016-04-11 17:03:35 UTC (rev 264672)
@@ -0,0 +1,15 @@
+[Unit]
+Description=dhcpcd on %I
+Wants=network.target
+Before=network.target
+BindsTo=sys-subsystem-net-devices-%i.device
+After=sys-subsystem-net-devices-%i.device
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd-%I.pid
+ExecStart=/usr/bin/dhcpcd -q -w %I
+ExecStop=/usr/bin/dhcpcd -x %I
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-i686/queue_from_compat.patch (from rev 264671, dhcpcd/trunk/queue_from_compat.patch)
===================================================================
--- testing-i686/queue_from_compat.patch	                        (rev 0)
+++ testing-i686/queue_from_compat.patch	2016-04-11 17:03:35 UTC (rev 264672)
@@ -0,0 +1,13 @@
+diff --git a/eloop.c b/eloop.c
+index e3a748d..c87a226 100644
+--- a/eloop.c
++++ b/eloop.c
+@@ -132,7 +132,7 @@
+ #define _QUEUE_HEADER(x) __QUEUE_HEADER(x)
+ #include _QUEUE_HEADER(QUEUE_H)
+ #else
+-#include "queue.h"
++#include "compat/queue.h"
+ #endif
+ #endif
+ 

Copied: dhcpcd/repos/testing-x86_64/PKGBUILD (from rev 264671, dhcpcd/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2016-04-11 17:03:35 UTC (rev 264672)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Tom Killian <tom.archlinux.org>
+# Contributor: Judd Vinet <jvinet.zeroflux.org>
+
+pkgname=dhcpcd
+pkgver=6.10.2
+pkgrel=1
+pkgdesc="RFC2131 compliant DHCP client daemon"
+url="http://roy.marples.name/projects/dhcpcd/"
+arch=('i686' 'x86_64')
+license=('BSD')
+groups=('base')
+depends=('glibc' 'sh' 'udev')
+provides=('dhcp-client')
+backup=('etc/dhcpcd.conf')
+options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
+source=("http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.xz"
+        'queue_from_compat.patch'
+        'dhcpcd_.service'
+        'dhcpcd.service')
+sha1sums=('1ee99eb0319552f6b5f92d5ba85902f03776519b'
+          '393f02700d0078862a461a1fbdeac1542791749b'
+          '6f1633edde14d29b5cdc09c4f029a450ef2ebc96'
+          '52c1bad9ab43e9a253c1eb175e7eefb13497b8f9')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 < ../queue_from_compat.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # configure variables
+  ./configure \
+      --prefix=/usr \
+      --sysconfdir=/etc \
+      --sbindir=/usr/bin \
+      --libexecdir=/usr/lib/dhcpcd \
+      --dbdir=/var/lib/dhcpcd \
+      --rundir=/run
+
+  # Build
+  make
+}
+
+check() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  make test
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  # Install License
+  install -d "$pkgdir/usr/share/licenses/$pkgname"
+  sed 26q "$srcdir/$pkgname-$pkgver/control.h" \
+      >>"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Set Options in /etc/dhcpcd.conf
+  echo noipv4ll >> "${pkgdir}/etc/dhcpcd.conf" # Disable ip4vall
+
+  # install systemd files
+  install -Dm644 "${srcdir}/dhcpcd_.service" "${pkgdir}/usr/lib/systemd/system/dhcpcd at .service"
+  install -Dm644 "${srcdir}/dhcpcd.service" "${pkgdir}/usr/lib/systemd/system/dhcpcd.service" # FS#31543
+}

Copied: dhcpcd/repos/testing-x86_64/dhcpcd.service (from rev 264671, dhcpcd/trunk/dhcpcd.service)
===================================================================
--- testing-x86_64/dhcpcd.service	                        (rev 0)
+++ testing-x86_64/dhcpcd.service	2016-04-11 17:03:35 UTC (rev 264672)
@@ -0,0 +1,13 @@
+[Unit]
+Description=dhcpcd on all interfaces
+Wants=network.target
+Before=network.target
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd.pid
+ExecStart=/usr/bin/dhcpcd -q -b
+ExecStop=/usr/bin/dhcpcd -x
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/dhcpcd_.service (from rev 264671, dhcpcd/trunk/dhcpcd_.service)
===================================================================
--- testing-x86_64/dhcpcd_.service	                        (rev 0)
+++ testing-x86_64/dhcpcd_.service	2016-04-11 17:03:35 UTC (rev 264672)
@@ -0,0 +1,15 @@
+[Unit]
+Description=dhcpcd on %I
+Wants=network.target
+Before=network.target
+BindsTo=sys-subsystem-net-devices-%i.device
+After=sys-subsystem-net-devices-%i.device
+
+[Service]
+Type=forking
+PIDFile=/run/dhcpcd-%I.pid
+ExecStart=/usr/bin/dhcpcd -q -w %I
+ExecStop=/usr/bin/dhcpcd -x %I
+
+[Install]
+WantedBy=multi-user.target

Copied: dhcpcd/repos/testing-x86_64/queue_from_compat.patch (from rev 264671, dhcpcd/trunk/queue_from_compat.patch)
===================================================================
--- testing-x86_64/queue_from_compat.patch	                        (rev 0)
+++ testing-x86_64/queue_from_compat.patch	2016-04-11 17:03:35 UTC (rev 264672)
@@ -0,0 +1,13 @@
+diff --git a/eloop.c b/eloop.c
+index e3a748d..c87a226 100644
+--- a/eloop.c
++++ b/eloop.c
+@@ -132,7 +132,7 @@
+ #define _QUEUE_HEADER(x) __QUEUE_HEADER(x)
+ #include _QUEUE_HEADER(QUEUE_H)
+ #else
+-#include "queue.h"
++#include "compat/queue.h"
+ #endif
+ #endif
+ 



More information about the arch-commits mailing list