[arch-commits] Commit in dnsmasq/trunk (PKGBUILD dnsmasq.install)

2017-01-11 Thread Christian Hesse
Date: Wednesday, January 11, 2017 @ 15:28:04
  Author: eworm
Revision: 285677

upgpkg: dnsmasq 2.76-4

pacman hook: do not call systemd-sysusers from install script

Modified:
  dnsmasq/trunk/PKGBUILD
Deleted:
  dnsmasq/trunk/dnsmasq.install

-+
 PKGBUILD|3 +--
 dnsmasq.install |   13 -
 2 files changed, 1 insertion(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-11 15:27:20 UTC (rev 285676)
+++ PKGBUILD2017-01-11 15:28:04 UTC (rev 285677)
@@ -5,13 +5,12 @@
 
 pkgname=dnsmasq
 pkgver=2.76
-pkgrel=3
+pkgrel=4
 pkgdesc="Lightweight, easy to configure DNS forwarder and DHCP server"
 url="http://www.thekelleys.org.uk/dnsmasq/doc.html;
 arch=('i686' 'x86_64')
 license=('GPL')
 depends=('glibc' 'gmp' 'libidn' 'libdbus' 'libnetfilter_conntrack' 'nettle')
-install=$pkgname.install
 backup=('etc/dnsmasq.conf')
 source=("http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz"{,.asc}
 '0001-Handle-binding-upstream-servers-to-an-interface.patch'

Deleted: dnsmasq.install
===
--- dnsmasq.install 2017-01-11 15:27:20 UTC (rev 285676)
+++ dnsmasq.install 2017-01-11 15:28:04 UTC (rev 285677)
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-post_install() {
-  if hash systemd-sysusers &> /dev/null; then
-systemd-sysusers dnsmasq.conf
-  fi
-}
-
-post_upgrade(){
-  if hash systemd-sysusers &> /dev/null; then
-systemd-sysusers dnsmasq.conf
-  fi
-}


[arch-commits] Commit in dnsmasq/trunk (PKGBUILD dnsmasq.install)

2015-06-16 Thread Dave Reisner
Date: Wednesday, June 17, 2015 @ 00:42:45
  Author: dreisner
Revision: 240965

upgpkg: dnsmasq 2.73-1

- drop removal of user on uninstall

Modified:
  dnsmasq/trunk/PKGBUILD
  dnsmasq/trunk/dnsmasq.install

-+
 PKGBUILD|   19 +--
 dnsmasq.install |6 --
 2 files changed, 13 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-06-16 19:56:14 UTC (rev 240964)
+++ PKGBUILD2015-06-16 22:42:45 UTC (rev 240965)
@@ -4,8 +4,8 @@
 # Contributor: Tom Newsom jeeps...@gmx.co.uk
 
 pkgname=dnsmasq
-pkgver=2.72
-pkgrel=2
+pkgver=2.73
+pkgrel=1
 pkgdesc=Lightweight, easy to configure DNS forwarder and DHCP server
 url=http://www.thekelleys.org.uk/dnsmasq/doc.html;
 arch=('i686' 'x86_64')
@@ -13,11 +13,15 @@
 depends=('glibc' 'libdbus' 'gmp' 'nettle')
 install=$pkgname.install
 backup=('etc/dnsmasq.conf')
-source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz;
+source=(http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
 'dnsmasq.service')
-md5sums=('0256e0a71e27c8d8a5c89a0d18f3cfe2'
+md5sums=('b8bfe96d22945c8cf4466826ba9b21bd'
+ 'SKIP'
  'b87f68013c3e8b4bb37117de968d4603')
+validpgpkeys=('269322E7D9255916E0394DD628FC869A289B82B7')  # Simon Kelley
 
+build_copts=-DHAVE_DNSSEC -DHAVE_DBUS
+
 build() {
   cd $pkgname-$pkgver
 
@@ -24,13 +28,16 @@
   make \
 CFLAGS=$CPPFLAGS $CFLAGS \
 LDFLAGS=$LDFLAGS \
-COPTS=-DHAVE_DNSSEC -DHAVE_DBUS
+COPTS=$build_copts
 }
 
 package() {
   cd $pkgname-$pkgver
 
-  make BINDIR=/usr/bin PREFIX=/usr DESTDIR=$pkgdir install
+  # need to pass COPTS here to avoid rebuilding the binary.
+  make \
+COPTS=$build_copts \
+BINDIR=/usr/bin PREFIX=/usr DESTDIR=$pkgdir install
 
   install -Dm644 dbus/dnsmasq.conf $pkgdir/etc/dbus-1/system.d/dnsmasq.conf
   install -Dm644 dnsmasq.conf.example $pkgdir/etc/dnsmasq.conf

Modified: dnsmasq.install
===
--- dnsmasq.install 2015-06-16 19:56:14 UTC (rev 240964)
+++ dnsmasq.install 2015-06-16 22:42:45 UTC (rev 240965)
@@ -13,9 +13,3 @@
 post_upgrade() {
   add_dnsmasq_user
 }
-
-post_remove() {
-  if getent passwd dnsmasq /dev/null; then
-userdel dnsmasq
-  fi
-}