[arch-commits] Commit in pacrunner/trunk (PKGBUILD)

2020-01-06 Thread Jan Steffens via arch-commits
Date: Monday, January 6, 2020 @ 18:37:38
  Author: heftig
Revision: 372683

0.17-1

Modified:
  pacrunner/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-06 18:37:33 UTC (rev 372682)
+++ PKGBUILD2020-01-06 18:37:38 UTC (rev 372683)
@@ -1,7 +1,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) 
 
 pkgname=pacrunner
-pkgver=0.14
+pkgver=0.17
 pkgrel=1
 pkgdesc="Proxy configuration daemon"
 arch=(x86_64)
@@ -9,7 +9,7 @@
 license=(GPL2 LGPL2.1)
 depends=(glib2 dbus curl)
 makedepends=(git)
-_commit=531dd59c60ddbecb46eab820aa5314b4be0b7d30  # tags/0.14^0
+_commit=6f2ba9396ead9909c9f427651ee005834fbd05a8  # tags/0.17^0
 
source=("git+https://git.kernel.org/pub/scm/network/connman/pacrunner.git#commit=$_commit;)
 sha256sums=('SKIP')
 


[arch-commits] Commit in pacrunner/trunk (PKGBUILD)

2018-07-11 Thread Jan Steffens via arch-commits
Date: Wednesday, July 11, 2018 @ 20:05:29
  Author: heftig
Revision: 328272

0.14-1

Added:
  pacrunner/trunk/PKGBUILD

--+
 PKGBUILD |   70 +
 1 file changed, 70 insertions(+)

Added: PKGBUILD
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-11 20:05:29 UTC (rev 328272)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=pacrunner
+pkgver=0.14
+pkgrel=1
+pkgdesc="Proxy configuration daemon"
+arch=(x86_64)
+url="https://git.kernel.org/pub/scm/network/connman/pacrunner.git;
+license=(GPL2 LGPL2.1)
+depends=(glib2 dbus curl)
+makedepends=(git)
+_commit=531dd59c60ddbecb46eab820aa5314b4be0b7d30  # tags/0.14^0
+source=("git+https://git.kernel.org/pub/scm/network/connman/pacrunner.git#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  ./bootstrap
+}
+
+build() {
+  cd $pkgname
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--sbindir=/usr/bin \
+--libexecdir=/usr/lib \
+--with-dbusconfdir=/usr/share \
+--enable-pie \
+--enable-duktape \
+--enable-curl
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 /dev/stdin "$pkgdir/usr/lib/systemd/system/pacrunner.service" 
<