[arch-commits] Commit in (5 files)

2017-03-27 Thread Christian Rebischke
Date: Monday, March 27, 2017 @ 19:17:50
  Author: shibumi
Revision: 219416

moved systemtap to community from AUR

Added:
  systemtap/
  systemtap/repos/
  systemtap/trunk/
  systemtap/trunk/PKGBUILD
  systemtap/trunk/systemtap.install

---+
 PKGBUILD  |   27 +++
 systemtap.install |4 
 2 files changed, 31 insertions(+)

Added: systemtap/trunk/PKGBUILD
===
--- systemtap/trunk/PKGBUILD(rev 0)
+++ systemtap/trunk/PKGBUILD2017-03-27 19:17:50 UTC (rev 219416)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor:dront78 <dron...@gmail.com>
+pkgname=systemtap
+pkgver=3.1
+pkgrel=3
+pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the 
gathering of information about the running Linux system."
+url="http://sourceware.org/systemtap/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('elfutils' 'nss' 'python2' 'texlive-fontsextra' 'texlive-latexextra' 
'latex2html')
+optdepends=('sqlite3')
+source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d')
+install='systemtap.install'
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}
+


Property changes on: systemtap/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: systemtap/trunk/systemtap.install
===
--- systemtap/trunk/systemtap.install   (rev 0)
+++ systemtap/trunk/systemtap.install   2017-03-27 19:17:50 UTC (rev 219416)
@@ -0,0 +1,4 @@
+post_install() {
+  echo "CONFIG_DEBUG_INFO is disabled on default. You need to recompile"
+  echo "the kernel with CONFIG_DEBUG_INFO enabled."
+}


[arch-commits] Commit in (4 files)

2017-03-26 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 23:20:54
  Author: shibumi
Revision: 219200

moved arch-audit to community

Added:
  arch-audit/
  arch-audit/repos/
  arch-audit/trunk/
  arch-audit/trunk/PKGBUILD

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

Added: arch-audit/trunk/PKGBUILD
===
--- arch-audit/trunk/PKGBUILD   (rev 0)
+++ arch-audit/trunk/PKGBUILD   2017-03-26 23:20:54 UTC (rev 219200)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Andrea Scarpino <and...@archlinux.org>
+
+pkgname=arch-audit
+pkgver=0.1.8
+pkgrel=2
+pkgdesc='An utility like pkg-audit based on Arch CVE Monitoring Team data'
+url='https://github.com/ilpianista/arch-audit'
+depends=('curl')
+makedepends=('cargo' 'pkg-config')
+arch=('i686' 'x86_64')
+license=('MIT')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ilpianista/arch-audit/archive/${pkgver}.tar.gz;)
+sha512sums=('e71f9d6d2f557097db3c552808b4603e')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  install -Dm644 doc/arch-audit.1 "${pkgdir}/usr/share/man/man1/arch-audit.1"
+
+  install -Dm644 systemd/arch-audit.service \
+"${pkgdir}/usr/share/${pkgname}/arch-audit.service"
+  install -Dm644 systemd/arch-audit.timer \
+"${pkgdir}/usr/share/${pkgname}/arch-audit.timer"
+
+  install -Dm644 completions/zsh/_arch-audit \
+"${pkgdir}"/usr/share/zsh/site-functions/_arch-audit
+}


Property changes on: arch-audit/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in arch-audit/repos (4 files)

2017-03-26 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 23:43:44
  Author: shibumi
Revision: 219202

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

Added:
  arch-audit/repos/community-i686/
  arch-audit/repos/community-i686/PKGBUILD
(from rev 219201, arch-audit/trunk/PKGBUILD)
  arch-audit/repos/community-x86_64/
  arch-audit/repos/community-x86_64/PKGBUILD
(from rev 219201, arch-audit/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   37 +
 community-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: arch-audit/repos/community-i686/PKGBUILD (from rev 219201, 
arch-audit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 23:43:44 UTC (rev 219202)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Andrea Scarpino <and...@archlinux.org>
+
+pkgname=arch-audit
+pkgver=0.1.8
+pkgrel=2
+pkgdesc='An utility like pkg-audit based on Arch CVE Monitoring Team data'
+url='https://github.com/ilpianista/arch-audit'
+depends=('curl')
+makedepends=('cargo' 'pkg-config')
+arch=('i686' 'x86_64')
+license=('MIT')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ilpianista/arch-audit/archive/${pkgver}.tar.gz;)
+sha512sums=('f8dd2439c81b4c23e2c3e60cf086e07488bc176489a201d4ee951c1faf2a1082b610c6765c3bc737e9246d59327232fc705b88a5816b6a0b770487b47f491f1c')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  install -Dm644 doc/arch-audit.1 "${pkgdir}/usr/share/man/man1/arch-audit.1"
+
+  install -Dm644 systemd/arch-audit.service \
+"${pkgdir}/usr/share/${pkgname}/arch-audit.service"
+  install -Dm644 systemd/arch-audit.timer \
+"${pkgdir}/usr/share/${pkgname}/arch-audit.timer"
+
+  install -Dm644 completions/zsh/_arch-audit \
+"${pkgdir}"/usr/share/zsh/site-functions/_arch-audit
+}

Copied: arch-audit/repos/community-x86_64/PKGBUILD (from rev 219201, 
arch-audit/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-26 23:43:44 UTC (rev 219202)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Andrea Scarpino <and...@archlinux.org>
+
+pkgname=arch-audit
+pkgver=0.1.8
+pkgrel=2
+pkgdesc='An utility like pkg-audit based on Arch CVE Monitoring Team data'
+url='https://github.com/ilpianista/arch-audit'
+depends=('curl')
+makedepends=('cargo' 'pkg-config')
+arch=('i686' 'x86_64')
+license=('MIT')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ilpianista/arch-audit/archive/${pkgver}.tar.gz;)
+sha512sums=('f8dd2439c81b4c23e2c3e60cf086e07488bc176489a201d4ee951c1faf2a1082b610c6765c3bc737e9246d59327232fc705b88a5816b6a0b770487b47f491f1c')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  install -Dm644 doc/arch-audit.1 "${pkgdir}/usr/share/man/man1/arch-audit.1"
+
+  install -Dm644 systemd/arch-audit.service \
+"${pkgdir}/usr/share/${pkgname}/arch-audit.service"
+  install -Dm644 systemd/arch-audit.timer \
+"${pkgdir}/usr/share/${pkgname}/arch-audit.timer"
+
+  install -Dm644 completions/zsh/_arch-audit \
+"${pkgdir}"/usr/share/zsh/site-functions/_arch-audit
+}


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

2017-03-26 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 23:43:25
  Author: shibumi
Revision: 219201

upgpkg: arch-audit 0.1.8-2 moved arch-audit from AUR to community

Modified:
  arch-audit/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-26 23:20:54 UTC (rev 219200)
+++ PKGBUILD2017-03-26 23:43:25 UTC (rev 219201)
@@ -12,7 +12,7 @@
 arch=('i686' 'x86_64')
 license=('MIT')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ilpianista/arch-audit/archive/${pkgver}.tar.gz;)
-sha512sums=('e71f9d6d2f557097db3c552808b4603e')
+sha512sums=('f8dd2439c81b4c23e2c3e60cf086e07488bc176489a201d4ee951c1faf2a1082b610c6765c3bc737e9246d59327232fc705b88a5816b6a0b770487b47f491f1c')
 
 build() {
   cd "${pkgname}-${pkgver}"


[arch-commits] Commit in (4 files)

2017-03-26 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 15:03:45
  Author: shibumi
Revision: 219114

moved i3blocks from AUR to community

Added:
  i3blocks/
  i3blocks/repos/
  i3blocks/trunk/
  i3blocks/trunk/PKGBUILD

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

Added: i3blocks/trunk/PKGBUILD
===
--- i3blocks/trunk/PKGBUILD (rev 0)
+++ i3blocks/trunk/PKGBUILD 2017-03-26 15:03:45 UTC (rev 219114)
@@ -0,0 +1,32 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Vlad M. <v...@archlinux.net>
+# Contributor: Patrice Peterson 
+# Contributor: Vivien Didelot <vivien+...@didelot.org>
+
+pkgname=i3blocks
+pkgver=1.4
+pkgrel=4
+pkgdesc='Define blocks for your i3bar status line'
+arch=('i686' 'x86_64')
+groups=('i3')
+url="https://github.com/vivien/i3blocks;
+license=('GPL3')
+optdepends=('acpi: For battery script'
+'bc: For bandwidth script'
+'lm_sensors: For temperature script'
+'openvpn: For openvpn script'
+'playerctl: For mediaplayer script'
+'sysstat: For cpu_usage script')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/vivien/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('c1f5abe90426e9f6284ef74001c9f50d08ce596b7bb8a284232116774375fa50168567785999266c8774fa39a1243c73f699a3e3be4440fbe16f33f0fde5cded')
+backup=('etc/i3blocks.conf')
+
+build () {
+  cd "${pkgname}-${pkgver}"
+  make VERSION="${pkgver}" PREFIX=/usr
+}
+
+package () {
+  cd "${pkgname}-${pkgver}"
+  make VERSION="${pkgver}" PREFIX=/usr LIBEXECDIR=/usr/lib DESTDIR="${pkgdir}" 
install
+}


Property changes on: i3blocks/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in audit/repos (8 files)

2017-03-26 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 18:42:18
  Author: shibumi
Revision: 219178

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

Added:
  audit/repos/community-i686/PKGBUILD
(from rev 219177, audit/trunk/PKGBUILD)
  audit/repos/community-i686/audit.install
(from rev 219177, audit/trunk/audit.install)
  audit/repos/community-x86_64/PKGBUILD
(from rev 219177, audit/trunk/PKGBUILD)
  audit/repos/community-x86_64/audit.install
(from rev 219177, audit/trunk/audit.install)
Deleted:
  audit/repos/community-i686/PKGBUILD
  audit/repos/community-i686/audit.install
  audit/repos/community-x86_64/PKGBUILD
  audit/repos/community-x86_64/audit.install

+
 /PKGBUILD  |  128 +++
 /audit.install |   10 +++
 community-i686/PKGBUILD|   63 ---
 community-i686/audit.install   |5 -
 community-x86_64/PKGBUILD  |   63 ---
 community-x86_64/audit.install |5 -
 6 files changed, 138 insertions(+), 136 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-26 18:42:02 UTC (rev 219177)
+++ community-i686/PKGBUILD 2017-03-26 18:42:18 UTC (rev 219178)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay <danielmi...@gmail.com>
-# Contributor: <k...@insecure.ws>
-# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Contributor: Connor Behan <connor.be...@gmail.com>
-# Contributor: henning mueller <henn...@orgizm.net>
-
-pkgname=audit
-pkgver=2.6.6
-pkgrel=2
-pkgdesc='Userspace components of the audit framework'
-url='https://people.redhat.com/sgrubb/audit'
-arch=(i686 x86_64)
-depends=(krb5 libcap-ng)
-makedepends=(libldap swig linux-headers python)
-license=(GPL)
-options=(emptydirs)
-backup=(
-  etc/libaudit.conf
-  etc/audit/audit.rules
-  etc/audit/auditd.conf
-  etc/audisp/audispd.conf
-  etc/audisp/audisp-remote.conf
-  etc/audisp/zos-remote.conf
-  etc/audisp/plugins.d/af_unix.conf
-  etc/audisp/plugins.d/audispd-zos-remote.conf
-  etc/audisp/plugins.d/au-remote.conf
-  etc/audisp/plugins.d/syslog.conf
-)
-source=("$url/$pkgname-$pkgver.tar.gz")
-sha256sums=('61d8dc61e882fdbb75153a1316817a8f8c8fca25de588256edd81fbb03e7994b')
-install=$pkgname.install
-
-build() {
-  cd $pkgname-$pkgver
-  export PYTHON=/usr/bin/python3
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---libexecdir=/usr/lib/audit \
---with-python=yes \
---enable-gssapi-krb5=yes \
---enable-systemd=yes \
---with-libcap-ng=yes
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  cd "$pkgdir"
-  install -d var/log/audit
-  rm -rf etc/rc.d etc/sysconfig usr/lib/audit
-
-  sed -ri 's|/sbin|/usr/bin|' \
-etc/audit/*.conf \
-etc/audisp/plugins.d/*.conf \
-usr/lib/systemd/system/auditd.service
-
-  chmod 644 usr/lib/systemd/system/auditd.service
-}

Copied: audit/repos/community-i686/PKGBUILD (from rev 219177, 
audit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 18:42:18 UTC (rev 219178)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Daniel Micay <danielmi...@gmail.com>
+# Contributor: <k...@insecure.ws>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Connor Behan <connor.be...@gmail.com>
+# Contributor: henning mueller <henn...@orgizm.net>
+
+pkgname=audit
+pkgver=2.7.3
+pkgrel=1
+pkgdesc='Userspace components of the audit framework'
+url='https://people.redhat.com/sgrubb/audit'
+arch=('i686' 'x86_64')
+depends=('krb5' 'libcap-ng')
+makedepends=('libldap' 'swig' 'linux-headers' 'python')
+license=('GPL')
+options=('emptydirs')
+backup=(
+  etc/libaudit.conf
+  etc/audit/audit.rules
+  etc/audit/auditd.conf
+  etc/audisp/audispd.conf
+  etc/audisp/audisp-remote.conf
+  etc/audisp/zos-remote.conf
+  etc/audisp/plugins.d/af_unix.conf
+  etc/audisp/plugins.d/audispd-zos-remote.conf
+  etc/audisp/plugins.d/au-remote.conf
+  etc/audisp/plugins.d/syslog.conf
+)
+source=("${pkgname}-${pkgver}.tar.gz::https://people.redhat.com/sgrubb/audit/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('0f504169e1a41078a2244d47418b37f714003e637656af53548bb041f48bbab2422c9e25f78fcf48fa7e57aa6a47336f4b37428df7676b13b3df64d20cd1a2f2')
+install="audit.install"
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  export PYTHON=/usr/bin/python3
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/audit \
+--with-python=yes \
+--enable-gssapi-krb5=yes \
+--enable

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

2017-03-26 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 18:42:02
  Author: shibumi
Revision: 219177

upgpkg: audit 2.7.3-1 new version and minor PKGBUILD enhancements

Modified:
  audit/trunk/PKGBUILD

--+
 PKGBUILD |   31 ---
 1 file changed, 16 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-26 18:39:31 UTC (rev 219176)
+++ PKGBUILD2017-03-26 18:42:02 UTC (rev 219177)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer: Daniel Micay <danielmi...@gmail.com>
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Daniel Micay <danielmi...@gmail.com>
 # Contributor: <k...@insecure.ws>
 # Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
 # Contributor: Connor Behan <connor.be...@gmail.com>
@@ -6,15 +7,15 @@
 # Contributor: henning mueller <henn...@orgizm.net>
 
 pkgname=audit
-pkgver=2.6.6
-pkgrel=2
+pkgver=2.7.3
+pkgrel=1
 pkgdesc='Userspace components of the audit framework'
 url='https://people.redhat.com/sgrubb/audit'
-arch=(i686 x86_64)
-depends=(krb5 libcap-ng)
-makedepends=(libldap swig linux-headers python)
-license=(GPL)
-options=(emptydirs)
+arch=('i686' 'x86_64')
+depends=('krb5' 'libcap-ng')
+makedepends=('libldap' 'swig' 'linux-headers' 'python')
+license=('GPL')
+options=('emptydirs')
 backup=(
   etc/libaudit.conf
   etc/audit/audit.rules
@@ -27,12 +28,12 @@
   etc/audisp/plugins.d/au-remote.conf
   etc/audisp/plugins.d/syslog.conf
 )
-source=("$url/$pkgname-$pkgver.tar.gz")
-sha256sums=('61d8dc61e882fdbb75153a1316817a8f8c8fca25de588256edd81fbb03e7994b')
-install=$pkgname.install
+source=("${pkgname}-${pkgver}.tar.gz::https://people.redhat.com/sgrubb/audit/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('0f504169e1a41078a2244d47418b37f714003e637656af53548bb041f48bbab2422c9e25f78fcf48fa7e57aa6a47336f4b37428df7676b13b3df64d20cd1a2f2')
+install="audit.install"
 
 build() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   export PYTHON=/usr/bin/python3
   ./configure \
 --prefix=/usr \
@@ -47,10 +48,10 @@
 }
 
 package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
 
-  cd "$pkgdir"
+  cd "${pkgdir}"
   install -d var/log/audit
   rm -rf etc/rc.d etc/sysconfig usr/lib/audit
 


[arch-commits] Commit in (4 files)

2017-03-26 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 15:04:52
  Author: shibumi
Revision: 219117

moved playerctl as dependency for i3blocks from aur to community

Added:
  playerctl/
  playerctl/repos/
  playerctl/trunk/
  playerctl/trunk/PKGBUILD

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

Added: playerctl/trunk/PKGBUILD
===
--- playerctl/trunk/PKGBUILD(rev 0)
+++ playerctl/trunk/PKGBUILD2017-03-26 15:04:52 UTC (rev 219117)
@@ -0,0 +1,27 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Ian D. Scott <i...@perebruin.com>
+# Contributor: Tony Crisci <t...@dubstepdish.com>
+pkgname=playerctl
+pkgver=0.5.0
+pkgrel=2
+pkgdesc="mpris media player controller and lib for spotify, vlc, audacious, 
bmp, xmms2, and others."
+arch=('i686' 'x86_64')
+url="https://github.com/acrisci/playerctl;
+license=('LGPL3')
+depends=('glib2' 'gobject-introspection')
+optdepends=('python-gobject: python bindings')
+makedepends=('autoconf' 'gtk-doc')
+source=("playerctl-${pkgver}.tar.gz::https://github.com/acrisci/playerctl/archive/v${pkgver}.tar.gz;)
+sha512sums=('307cad5eeea7efa0c97c885660f49468f442fe907ef2495b56ac512e0551c7248750897b6d00934cbfcfcb35f486a101a238b276ef71d2ef866132ca3cc0932c')
+
+build() {
+cd "${srcdir}/playerctl-${pkgver}"
+NOCONFIGURE=true ./autogen.sh
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd "${srcdir}/playerctl-${pkgver}"
+ make DESTDIR="${pkgdir}/" install
+}


Property changes on: playerctl/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in i3blocks/repos (4 files)

2017-03-26 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 15:04:15
  Author: shibumi
Revision: 219116

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

Added:
  i3blocks/repos/community-i686/
  i3blocks/repos/community-i686/PKGBUILD
(from rev 219115, i3blocks/trunk/PKGBUILD)
  i3blocks/repos/community-x86_64/
  i3blocks/repos/community-x86_64/PKGBUILD
(from rev 219115, i3blocks/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   32 
 community-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: i3blocks/repos/community-i686/PKGBUILD (from rev 219115, 
i3blocks/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 15:04:15 UTC (rev 219116)
@@ -0,0 +1,32 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Vlad M. <v...@archlinux.net>
+# Contributor: Patrice Peterson 
+# Contributor: Vivien Didelot <vivien+...@didelot.org>
+
+pkgname=i3blocks
+pkgver=1.4
+pkgrel=4
+pkgdesc='Define blocks for your i3bar status line'
+arch=('i686' 'x86_64')
+groups=('i3')
+url="https://github.com/vivien/i3blocks;
+license=('GPL3')
+optdepends=('acpi: For battery script'
+'bc: For bandwidth script'
+'lm_sensors: For temperature script'
+'openvpn: For openvpn script'
+'playerctl: For mediaplayer script'
+'sysstat: For cpu_usage script')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/vivien/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('c1f5abe90426e9f6284ef74001c9f50d08ce596b7bb8a284232116774375fa50168567785999266c8774fa39a1243c73f699a3e3be4440fbe16f33f0fde5cded')
+backup=('etc/i3blocks.conf')
+
+build () {
+  cd "${pkgname}-${pkgver}"
+  make VERSION="${pkgver}" PREFIX=/usr
+}
+
+package () {
+  cd "${pkgname}-${pkgver}"
+  make VERSION="${pkgver}" PREFIX=/usr LIBEXECDIR=/usr/lib DESTDIR="${pkgdir}" 
install
+}

Copied: i3blocks/repos/community-x86_64/PKGBUILD (from rev 219115, 
i3blocks/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-26 15:04:15 UTC (rev 219116)
@@ -0,0 +1,32 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Vlad M. <v...@archlinux.net>
+# Contributor: Patrice Peterson 
+# Contributor: Vivien Didelot <vivien+...@didelot.org>
+
+pkgname=i3blocks
+pkgver=1.4
+pkgrel=4
+pkgdesc='Define blocks for your i3bar status line'
+arch=('i686' 'x86_64')
+groups=('i3')
+url="https://github.com/vivien/i3blocks;
+license=('GPL3')
+optdepends=('acpi: For battery script'
+'bc: For bandwidth script'
+'lm_sensors: For temperature script'
+'openvpn: For openvpn script'
+'playerctl: For mediaplayer script'
+'sysstat: For cpu_usage script')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/vivien/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('c1f5abe90426e9f6284ef74001c9f50d08ce596b7bb8a284232116774375fa50168567785999266c8774fa39a1243c73f699a3e3be4440fbe16f33f0fde5cded')
+backup=('etc/i3blocks.conf')
+
+build () {
+  cd "${pkgname}-${pkgver}"
+  make VERSION="${pkgver}" PREFIX=/usr
+}
+
+package () {
+  cd "${pkgname}-${pkgver}"
+  make VERSION="${pkgver}" PREFIX=/usr LIBEXECDIR=/usr/lib DESTDIR="${pkgdir}" 
install
+}


[arch-commits] Commit in playerctl/repos (4 files)

2017-03-26 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 15:05:21
  Author: shibumi
Revision: 219118

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

Added:
  playerctl/repos/community-i686/
  playerctl/repos/community-i686/PKGBUILD
(from rev 219117, playerctl/trunk/PKGBUILD)
  playerctl/repos/community-x86_64/
  playerctl/repos/community-x86_64/PKGBUILD
(from rev 219117, playerctl/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   27 +++
 community-x86_64/PKGBUILD |   27 +++
 2 files changed, 54 insertions(+)

Copied: playerctl/repos/community-i686/PKGBUILD (from rev 219117, 
playerctl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 15:05:21 UTC (rev 219118)
@@ -0,0 +1,27 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Ian D. Scott <i...@perebruin.com>
+# Contributor: Tony Crisci <t...@dubstepdish.com>
+pkgname=playerctl
+pkgver=0.5.0
+pkgrel=2
+pkgdesc="mpris media player controller and lib for spotify, vlc, audacious, 
bmp, xmms2, and others."
+arch=('i686' 'x86_64')
+url="https://github.com/acrisci/playerctl;
+license=('LGPL3')
+depends=('glib2' 'gobject-introspection')
+optdepends=('python-gobject: python bindings')
+makedepends=('autoconf' 'gtk-doc')
+source=("playerctl-${pkgver}.tar.gz::https://github.com/acrisci/playerctl/archive/v${pkgver}.tar.gz;)
+sha512sums=('307cad5eeea7efa0c97c885660f49468f442fe907ef2495b56ac512e0551c7248750897b6d00934cbfcfcb35f486a101a238b276ef71d2ef866132ca3cc0932c')
+
+build() {
+cd "${srcdir}/playerctl-${pkgver}"
+NOCONFIGURE=true ./autogen.sh
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd "${srcdir}/playerctl-${pkgver}"
+ make DESTDIR="${pkgdir}/" install
+}

Copied: playerctl/repos/community-x86_64/PKGBUILD (from rev 219117, 
playerctl/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-26 15:05:21 UTC (rev 219118)
@@ -0,0 +1,27 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Ian D. Scott <i...@perebruin.com>
+# Contributor: Tony Crisci <t...@dubstepdish.com>
+pkgname=playerctl
+pkgver=0.5.0
+pkgrel=2
+pkgdesc="mpris media player controller and lib for spotify, vlc, audacious, 
bmp, xmms2, and others."
+arch=('i686' 'x86_64')
+url="https://github.com/acrisci/playerctl;
+license=('LGPL3')
+depends=('glib2' 'gobject-introspection')
+optdepends=('python-gobject: python bindings')
+makedepends=('autoconf' 'gtk-doc')
+source=("playerctl-${pkgver}.tar.gz::https://github.com/acrisci/playerctl/archive/v${pkgver}.tar.gz;)
+sha512sums=('307cad5eeea7efa0c97c885660f49468f442fe907ef2495b56ac512e0551c7248750897b6d00934cbfcfcb35f486a101a238b276ef71d2ef866132ca3cc0932c')
+
+build() {
+cd "${srcdir}/playerctl-${pkgver}"
+NOCONFIGURE=true ./autogen.sh
+./configure --prefix=/usr
+make
+}
+
+package() {
+cd "${srcdir}/playerctl-${pkgver}"
+ make DESTDIR="${pkgdir}/" install
+}


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

2017-03-26 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 15:13:49
  Author: shibumi
Revision: 219120

upgpkg: gflags 2.2.0-3 minor changes in the pkgbuild

Modified:
  gflags/trunk/PKGBUILD

--+
 PKGBUILD |   31 ---
 1 file changed, 16 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-26 15:13:31 UTC (rev 219119)
+++ PKGBUILD2017-03-26 15:13:49 UTC (rev 219120)
@@ -1,24 +1,25 @@
 # $Id$
-# Maintainer: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Maintainer: Anatol Pomozov 
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Anatol Pomozov 
 # Contributor: RunningDroid 
 # Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
 
 pkgname=gflags
 pkgver=2.2.0
-pkgrel=2
+pkgrel=3
 pkgdesc='C++ Library for commandline flag processing'
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 url='https://github.com/schuhschuh/gflags'
-license=(BSD)
-depends=(gcc-libs)
-makedepends=(cmake)
-options=(staticlibs)
-source=($pkgname-$pkgver.tar.gz::https://github.com/schuhschuh/gflags/archive/v$pkgver.tar.gz)
-sha256sums=('466c36c6508a451734e4f4d76825cf9cd9b8716d2b70ef36479ae40f08271f88')
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake')
+options=('staticlibs')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
+sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
 
 build() {
-  cd gflags-$pkgver
+  cd "gflags-${pkgver}"
   cmake . \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DCMAKE_BUILD_TYPE=Release \
@@ -30,12 +31,12 @@
 }
 
 check() {
-  cd gflags-$pkgver
+  cd "gflags-${pkgver}"
   make test
 }
 
 package() {
-  cd gflags-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -D -m644 COPYING.txt 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING.txt
+  cd "gflags-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING.txt
 }


[arch-commits] Commit in gflags/repos (4 files)

2017-03-26 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 15:14:10
  Author: shibumi
Revision: 219121

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

Added:
  gflags/repos/community-i686/PKGBUILD
(from rev 219120, gflags/trunk/PKGBUILD)
  gflags/repos/community-x86_64/PKGBUILD
(from rev 219120, gflags/trunk/PKGBUILD)
Deleted:
  gflags/repos/community-i686/PKGBUILD
  gflags/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   84 
 community-i686/PKGBUILD   |   41 -
 community-x86_64/PKGBUILD |   41 -
 3 files changed, 84 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-26 15:13:49 UTC (rev 219120)
+++ community-i686/PKGBUILD 2017-03-26 15:14:10 UTC (rev 219121)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Maintainer: Anatol Pomozov 
-# Contributor: RunningDroid 
-# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
-
-pkgname=gflags
-pkgver=2.2.0
-pkgrel=2
-pkgdesc='C++ Library for commandline flag processing'
-arch=(i686 x86_64)
-url='https://github.com/schuhschuh/gflags'
-license=(BSD)
-depends=(gcc-libs)
-makedepends=(cmake)
-options=(staticlibs)
-source=($pkgname-$pkgver.tar.gz::https://github.com/schuhschuh/gflags/archive/v$pkgver.tar.gz)
-sha256sums=('466c36c6508a451734e4f4d76825cf9cd9b8716d2b70ef36479ae40f08271f88')
-
-build() {
-  cd gflags-$pkgver
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DREGISTER_INSTALL_PREFIX=OFF \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_STATIC_LIBS=ON \
--DBUILD_TESTING=ON
-  make
-}
-
-check() {
-  cd gflags-$pkgver
-  make test
-}
-
-package() {
-  cd gflags-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -D -m644 COPYING.txt 
"$pkgdir"/usr/share/licenses/$pkgname/COPYING.txt
-}

Copied: gflags/repos/community-i686/PKGBUILD (from rev 219120, 
gflags/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 15:14:10 UTC (rev 219121)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Anatol Pomozov 
+# Contributor: RunningDroid 
+# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
+
+pkgname=gflags
+pkgver=2.2.0
+pkgrel=3
+pkgdesc='C++ Library for commandline flag processing'
+arch=('i686' 'x86_64')
+url='https://github.com/schuhschuh/gflags'
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake')
+options=('staticlibs')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
+sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
+
+build() {
+  cd "gflags-${pkgver}"
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DREGISTER_INSTALL_PREFIX=OFF \
+-DBUILD_SHARED_LIBS=ON \
+-DBUILD_STATIC_LIBS=ON \
+-DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd "gflags-${pkgver}"
+  make test
+}
+
+package() {
+  cd "gflags-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING.txt
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-26 15:13:49 UTC (rev 219120)
+++ community-x86_64/PKGBUILD   2017-03-26 15:14:10 UTC (rev 219121)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Maintainer: Anatol Pomozov 
-# Contributor: RunningDroid 
-# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
-
-pkgname=gflags
-pkgver=2.2.0
-pkgrel=2
-pkgdesc='C++ Library for commandline flag processing'
-arch=(i686 x86_64)
-url='https://github.com/schuhschuh/gflags'
-license=(BSD)
-depends=(gcc-libs)
-makedepends=(cmake)
-options=(staticlibs)
-source=($pkgname-$pkgver.tar.gz::https://github.com/schuhschuh/gflags/archive/v$pkgver.tar.gz)
-sha256sums=('466c36c6508a451734e4f4d76825cf9cd9b8716d2b70ef36479ae40f08271f88')
-
-build() {
-  cd gflags-$pkgver
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DREGISTER_INSTALL_PREFIX=OFF \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_STATIC_LIBS=ON \
--DBUILD_TESTING=ON
-  make
-}
-
-check() {
-  cd gflags-$pkgver
-  make test
-}
-
-package() {
-  cd gflags-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -D -m644 COPYING.txt 
"$pkgdir&

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

2017-03-27 Thread Christian Rebischke
Date: Tuesday, March 28, 2017 @ 02:00:10
  Author: shibumi
Revision: 219523

upgpkg: connman 1.33-5 staging for iptables rebuild + added signature
check for connman release

Modified:
  connman/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-28 01:58:10 UTC (rev 219522)
+++ PKGBUILD2017-03-28 02:00:10 UTC (rev 219523)
@@ -5,7 +5,7 @@
 
 pkgname=connman
 pkgver=1.33
-pkgrel=4
+pkgrel=5
 pkgdesc="Wireless LAN network manager"
 url="https://01.org/connman;
 arch=('i686' 'x86_64')
@@ -15,9 +15,13 @@
 'wpa_supplicant: For WiFi devices'
 'pptpclient: for ppp support')
 makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
+source=("${pkgname}-${pkgver}.tar.xz::http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.sign::http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.sign;
+'allow_group_network.diff')
 
sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
+'SKIP'
 
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
 
 prepare(){
   cd "${pkgname}-${pkgver}"


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

2017-03-27 Thread Christian Rebischke
Date: Tuesday, March 28, 2017 @ 02:00:51
  Author: shibumi
Revision: 219524

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

Added:
  connman/repos/community-staging-i686/
  connman/repos/community-staging-i686/PKGBUILD
(from rev 219523, connman/trunk/PKGBUILD)
  connman/repos/community-staging-i686/allow_group_network.diff
(from rev 219523, connman/trunk/allow_group_network.diff)
  connman/repos/community-staging-x86_64/
  connman/repos/community-staging-x86_64/PKGBUILD
(from rev 219523, connman/trunk/PKGBUILD)
  connman/repos/community-staging-x86_64/allow_group_network.diff
(from rev 219523, connman/trunk/allow_group_network.diff)

---+
 community-staging-i686/PKGBUILD   |   55 
 community-staging-i686/allow_group_network.diff   |   12 
 community-staging-x86_64/PKGBUILD |   55 
 community-staging-x86_64/allow_group_network.diff |   12 
 4 files changed, 134 insertions(+)

Copied: connman/repos/community-staging-i686/PKGBUILD (from rev 219523, 
connman/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-28 02:00:51 UTC (rev 219524)
@@ -0,0 +1,55 @@
+#$Id$
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
+
+pkgname=connman
+pkgver=1.33
+pkgrel=5
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("${pkgname}-${pkgver}.tar.xz::http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.sign::http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.sign;
+'allow_group_network.diff')
+sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
+'SKIP'
+
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
+validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
+
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/allow_group_network.diff"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --bindir=/usr/bin \
+  --sbindir=/usr/bin \
+  --with-systemdunitdir=/usr/lib/systemd/system \
+  --enable-pptp \
+  --enable-openconnect \
+  --enable-vpnc \
+  --enable-openvpn \
+  --enable-polkit \
+  --enable-client \
+  --enable-nmcompat
+  make
+}
+
+package() {
+  make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
+  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/client/${pkgname}ctl" 
"${pkgdir}/usr/bin/${pkgname}ctl"
+  find "${pkgdir}/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
+# See FS#48044
+  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"${pkgdir}"/usr/lib/systemd/system/connman.service
+  rm -r "${pkgdir}"/usr/lib/tmpfiles.d
+}

Copied: connman/repos/community-staging-i686/allow_group_network.diff (from rev 
219523, connman/trunk/allow_group_network.diff)
===
--- community-staging-i686/allow_group_network.diff 
(rev 0)
+++ community-staging-i686/allow_group_network.diff 2017-03-28 02:00:51 UTC 
(rev 219524)
@@ -0,0 +1,12 @@
+--- a/src/connman-polkit.conf  2010-11-05 12:09:04.285423955 -0200
 b/src/connman-polkit.conf  2010-11-05 12:10:53.041423934 -0200
+@@ -5,6 +5,9 @@
+ 
+ 
+ 
++
++   
++
+ 
+ 
+ 

Copied: connman/repos/community-staging-x86_64/PKGBUILD (from rev 219523, 
connman/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD       (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-28 02:00:51 UTC (rev 219524)
@@ -0,0 +1,55 @@
+#$Id$
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
+
+pkgname=connman
+pkgver=1.33
+pkgrel=5
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 

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

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:31:42
  Author: shibumi
Revision: 219019

upgpkg: ascii 3.15-2 made minor PKGBUILD changes

Modified:
  ascii/trunk/PKGBUILD

--+
 PKGBUILD |   23 ---
 1 file changed, 12 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-26 01:29:25 UTC (rev 219018)
+++ PKGBUILD2017-03-26 01:31:42 UTC (rev 219019)
@@ -1,4 +1,5 @@
 # $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
 # Contributor: Peter Lewis <ple...@aur.archlinux.org>
 # Contributor: Grigorios Bouzakis <grb...@xsmail.com>
 # Contributor: Damir Perisa <damir.per...@bluewin.ch>
@@ -5,25 +6,25 @@
 
 pkgname=ascii
 pkgver=3.15
-pkgrel=1
+pkgrel=2
 pkgdesc='Utility for conversion between various byte representations and the 
ASCII character table'
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 url='http://www.catb.org/~esr/ascii'
-license=(BSD)
-depends=(glibc)
-source=(http://www.catb.org/~esr/ascii/ascii-$pkgver.tar.gz)
-sha256sums=('ace1db8b64371d53d9ad420d341f2b542324ae70437e37b4b75646f12475ff5f')
+license=('BSD')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::http://www.catb.org/~esr/ascii/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('f03edc2a75421948974a67db607c59e988d116bd6b205b2458296348e00e4ed890a80df64e378ca48c26d9b889eec2276c9e08af1a31c4bdfa05e782926b5356')
 
 build() {
-  cd ascii-$pkgver
+  cd "${pkgname}-${pkgver}"
 
   make
 }
 
 package() {
-  cd ascii-$pkgver
+  cd "${pkgname}-${pkgver}"
 
-  install -D ascii $pkgdir/usr/bin/ascii
-  install -D -m644 ascii.1 $pkgdir/usr/share/man/man1/ascii.1
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -D -m755 ascii "${pkgdir}/usr/bin/ascii"
+  install -D -m644 ascii.1 "${pkgdir}/usr/share/man/man1/ascii.1"
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
 }


[arch-commits] Commit in ascii/repos (4 files)

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:32:07
  Author: shibumi
Revision: 219020

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

Added:
  ascii/repos/community-i686/PKGBUILD
(from rev 219019, ascii/trunk/PKGBUILD)
  ascii/repos/community-x86_64/PKGBUILD
(from rev 219019, ascii/trunk/PKGBUILD)
Deleted:
  ascii/repos/community-i686/PKGBUILD
  ascii/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 community-i686/PKGBUILD   |   29 -
 community-x86_64/PKGBUILD |   29 -
 3 files changed, 60 insertions(+), 58 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-26 01:31:42 UTC (rev 219019)
+++ community-i686/PKGBUILD 2017-03-26 01:32:07 UTC (rev 219020)
@@ -1,29 +0,0 @@
-# $Id$
-# Contributor: Peter Lewis <ple...@aur.archlinux.org>
-# Contributor: Grigorios Bouzakis <grb...@xsmail.com>
-# Contributor: Damir Perisa <damir.per...@bluewin.ch>
-
-pkgname=ascii
-pkgver=3.15
-pkgrel=1
-pkgdesc='Utility for conversion between various byte representations and the 
ASCII character table'
-arch=(i686 x86_64)
-url='http://www.catb.org/~esr/ascii'
-license=(BSD)
-depends=(glibc)
-source=(http://www.catb.org/~esr/ascii/ascii-$pkgver.tar.gz)
-sha256sums=('ace1db8b64371d53d9ad420d341f2b542324ae70437e37b4b75646f12475ff5f')
-
-build() {
-  cd ascii-$pkgver
-
-  make
-}
-
-package() {
-  cd ascii-$pkgver
-
-  install -D ascii $pkgdir/usr/bin/ascii
-  install -D -m644 ascii.1 $pkgdir/usr/share/man/man1/ascii.1
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: ascii/repos/community-i686/PKGBUILD (from rev 219019, 
ascii/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 01:32:07 UTC (rev 219020)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Peter Lewis <ple...@aur.archlinux.org>
+# Contributor: Grigorios Bouzakis <grb...@xsmail.com>
+# Contributor: Damir Perisa <damir.per...@bluewin.ch>
+
+pkgname=ascii
+pkgver=3.15
+pkgrel=2
+pkgdesc='Utility for conversion between various byte representations and the 
ASCII character table'
+arch=('i686' 'x86_64')
+url='http://www.catb.org/~esr/ascii'
+license=('BSD')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::http://www.catb.org/~esr/ascii/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('f03edc2a75421948974a67db607c59e988d116bd6b205b2458296348e00e4ed890a80df64e378ca48c26d9b889eec2276c9e08af1a31c4bdfa05e782926b5356')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+
+  install -D -m755 ascii "${pkgdir}/usr/bin/ascii"
+  install -D -m644 ascii.1 "${pkgdir}/usr/share/man/man1/ascii.1"
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-26 01:31:42 UTC (rev 219019)
+++ community-x86_64/PKGBUILD   2017-03-26 01:32:07 UTC (rev 219020)
@@ -1,29 +0,0 @@
-# $Id$
-# Contributor: Peter Lewis <ple...@aur.archlinux.org>
-# Contributor: Grigorios Bouzakis <grb...@xsmail.com>
-# Contributor: Damir Perisa <damir.per...@bluewin.ch>
-
-pkgname=ascii
-pkgver=3.15
-pkgrel=1
-pkgdesc='Utility for conversion between various byte representations and the 
ASCII character table'
-arch=(i686 x86_64)
-url='http://www.catb.org/~esr/ascii'
-license=(BSD)
-depends=(glibc)
-source=(http://www.catb.org/~esr/ascii/ascii-$pkgver.tar.gz)
-sha256sums=('ace1db8b64371d53d9ad420d341f2b542324ae70437e37b4b75646f12475ff5f')
-
-build() {
-  cd ascii-$pkgver
-
-  make
-}
-
-package() {
-  cd ascii-$pkgver
-
-  install -D ascii $pkgdir/usr/bin/ascii
-  install -D -m644 ascii.1 $pkgdir/usr/share/man/man1/ascii.1
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: ascii/repos/community-x86_64/PKGBUILD (from rev 219019, 
ascii/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-26 01:32:07 UTC (rev 219020)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Peter Lewis <ple...@aur.archlinux.org>
+# Contributor: Grigorios Bouzakis <grb...@xsmail.com>
+# Contributor: Damir Perisa <damir.per...@bluewin.ch>
+
+pkgname=ascii
+pkgver=3.15
+pkgrel=2
+pkgdesc='Utility for conversion between various byte representations and the 
ASCII character table'
+arch=('i686' 'x86_64'

[arch-commits] Commit in connman/repos (8 files)

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:43:13
  Author: shibumi
Revision: 219030

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 219029, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 219029, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 219029, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 219029, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |  102 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   51 --
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   51 --
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-26 01:42:51 UTC (rev 219029)
+++ community-i686/PKGBUILD 2017-03-26 01:43:13 UTC (rev 219030)
@@ -1,51 +0,0 @@
-#$Id$
-# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
-# Contributor: Daniel Wallace 
-# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
-
-pkgname=connman
-pkgver=1.33
-pkgrel=4
-pkgdesc="Wireless LAN network manager"
-url="https://01.org/connman;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus' 'iptables' 'gnutls' 'glib2')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices'
-'pptpclient: for ppp support')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
-sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
-
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/allow_group_network.diff"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --bindir=/usr/bin \
-  --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-pptp \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client \
-  --enable-nmcompat
-  make
-}
-
-package() {
-  make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/client/${pkgname}ctl" 
"${pkgdir}/usr/bin/${pkgname}ctl"
-  find "${pkgdir}/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-# See FS#48044
-  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"${pkgdir}"/usr/lib/systemd/system/connman.service
-  rm -r "${pkgdir}"/usr/lib/tmpfiles.d
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 219029, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD     (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 01:43:13 UTC (rev 219030)
@@ -0,0 +1,51 @@
+#$Id$
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
+
+pkgname=connman
+pkgver=1.33
+pkgrel=4
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
+sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
+
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
+
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/allow_group_

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

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:46:58
  Author: shibumi
Revision: 219034

upgpkg: bup 0.29-1

Modified:
  bup/trunk/PKGBUILD

--+
 PKGBUILD |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-26 01:46:47 UTC (rev 219033)
+++ PKGBUILD2017-03-26 01:46:58 UTC (rev 219034)
@@ -1,6 +1,6 @@
 # $Id$
-# Maintainer: Alexander F Rødseth <xypr...@archlinux.org>
-# Contributor:  Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
 # Contributor: Jakob Matthes <jakob.matt...@gmail.com>
 # Contributor: Bram Schoenmakers <m...@bramschoenmakers.nl>
 # Contributor: henning mueller <henn...@orgizm.net>
@@ -18,21 +18,21 @@
 makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
 checkdepends=('rsync' 'python2-tornado')
 optdepends=('python2-tornado: for bup web')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/bup/bup/archive/$pkgver.tar.gz;)
-md5sums=('ed717612ff59ec1eb4c0d53f3e11d064')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)
+sha512sums=('3a70d747c6bae2640809d48141b726fa7897f33af9f19047c8d4cfba88abe04ac907980f0ce572847b900e2c8d02a3303e886c8ad7af9a97a7804540c7da1705')
 
 build() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   ./configure
   make
 }
 
 check() {
-  cd $pkgname-$pkgver
-  make test -j1
+  cd "${pkgname}-${pkgver}"
+  make test
 }
 
 package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" PREFIX=/usr install
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX=/usr install
 }


[arch-commits] Commit in bup/repos (4 files)

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:55:32
  Author: shibumi
Revision: 219046

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

Added:
  bup/repos/community-i686/PKGBUILD
(from rev 219045, bup/trunk/PKGBUILD)
  bup/repos/community-x86_64/PKGBUILD
(from rev 219044, bup/trunk/PKGBUILD)
Deleted:
  bup/repos/community-i686/PKGBUILD
  bup/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   76 
 community-i686/PKGBUILD   |   38 --
 community-x86_64/PKGBUILD |   38 --
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-26 01:55:24 UTC (rev 219045)
+++ community-i686/PKGBUILD 2017-03-26 01:55:32 UTC (rev 219046)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xypr...@archlinux.org>
-# Contributor:  Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
-# Contributor: Jakob Matthes <jakob.matt...@gmail.com>
-# Contributor: Bram Schoenmakers <m...@bramschoenmakers.nl>
-# Contributor: henning mueller <henn...@orgizm.net>
-# Contributor: rakoo (AUR)
-# Contributor: SanskritFritz (gmail)
-
-pkgname=bup
-pkgver=0.29
-pkgrel=1
-pkgdesc='Efficient backup system based on the git packfile format'
-arch=('x86_64' 'i686')
-url='https://bup.github.io/'
-license=('GPL')
-depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
-makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
-checkdepends=('rsync' 'python2-tornado')
-optdepends=('python2-tornado: for bup web')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/bup/bup/archive/$pkgver.tar.gz;)
-md5sums=('ed717612ff59ec1eb4c0d53f3e11d064')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make test -j1
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" PREFIX=/usr install
-}

Copied: bup/repos/community-i686/PKGBUILD (from rev 219045, bup/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 01:55:32 UTC (rev 219046)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
+# Contributor: Jakob Matthes <jakob.matt...@gmail.com>
+# Contributor: Bram Schoenmakers <m...@bramschoenmakers.nl>
+# Contributor: henning mueller <henn...@orgizm.net>
+# Contributor: rakoo (AUR)
+# Contributor: SanskritFritz (gmail)
+
+pkgname=bup
+pkgver=0.29
+pkgrel=2
+pkgdesc='Efficient backup system based on the git packfile format'
+arch=('x86_64' 'i686')
+url='https://bup.github.io/'
+license=('GPL')
+depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
+makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
+checkdepends=('rsync' 'python2-tornado')
+optdepends=('python2-tornado: for bup web')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)
+sha512sums=('3a70d747c6bae2640809d48141b726fa7897f33af9f19047c8d4cfba88abe04ac907980f0ce572847b900e2c8d02a3303e886c8ad7af9a97a7804540c7da1705')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure
+  make
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX=/usr install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-03-26 01:55:24 UTC (rev 219045)
+++ community-x86_64/PKGBUILD   2017-03-26 01:55:32 UTC (rev 219046)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xypr...@archlinux.org>
-# Contributor:  Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
-# Contributor: Jakob Matthes <jakob.matt...@gmail.com>
-# Contributor: Bram Schoenmakers <m...@bramschoenmakers.nl>
-# Contributor: henning mueller <henn...@orgizm.net>
-# Contributor: rakoo (AUR)
-# Contributor: SanskritFritz (gmail)
-
-pkgname=bup
-pkgver=0.29
-pkgrel=1
-pkgdesc='Efficient backup system based on the git packfile format'
-arch=('x86_64' 'i686')
-url='https://bup.github.io/'
-license=('GPL')
-depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
-makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
-checkdepends=('rsync' 'python2-tornado')
-optdepends=('python2-tornado: for bup web')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/bup/bup/archive/$pkgver.tar.gz;)
-md5sums=('ed717612ff59ec1eb4c0d53f3e11d064')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make test -j1
-}
-
-package() {

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

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:55:05
  Author: shibumi
Revision: 219044

upgpkg: bup 0.29-2 did minor PKGBUILD changes

Modified:
  bup/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-26 01:54:54 UTC (rev 219043)
+++ PKGBUILD2017-03-26 01:55:05 UTC (rev 219044)
@@ -9,7 +9,7 @@
 
 pkgname=bup
 pkgver=0.29
-pkgrel=1
+pkgrel=2
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64' 'i686')
 url='https://bup.github.io/'


[arch-commits] Commit in connman/repos (8 files)

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 00:58:29
  Author: shibumi
Revision: 218995

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 218994, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 218994, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 218994, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 218994, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |  102 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   51 --
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   51 --
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-26 00:14:49 UTC (rev 218994)
+++ community-i686/PKGBUILD 2017-03-26 00:58:29 UTC (rev 218995)
@@ -1,51 +0,0 @@
-#$Id$
-# Maintainer:
-# Contributor: Daniel Wallace 
-# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
-
-pkgname=connman
-pkgver=1.33
-pkgrel=3
-pkgdesc="Wireless LAN network manager"
-url="https://01.org/connman;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus' 'iptables' 'gnutls' 'glib2')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices'
-'pptpclient: for ppp support')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
-md5sums=('c51903fd3e7a6a371d12ac5d72a1fa01'
- 'a8d22ee089fb0ed725130d16ad393047')
-
-prepare(){
-  cd $pkgname-$pkgver
-  patch -Np1 -i "$srcdir/allow_group_network.diff"
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --bindir=/usr/bin \
-  --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-pptp \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client \
-  --enable-nmcompat
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-  install -Dm755 "$srcdir/$pkgname-$pkgver/client/${pkgname}ctl" 
"$pkgdir/usr/bin/${pkgname}ctl"
-  find "$pkgdir/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-# See FS#48044
-  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"$pkgdir"/usr/lib/systemd/system/connman.service
-  rm -r "$pkgdir"/usr/lib/tmpfiles.d
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 218994, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 00:58:29 UTC (rev 218995)
@@ -0,0 +1,51 @@
+#$Id$
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
+
+pkgname=connman
+pkgver=1.33
+pkgrel=4
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
+sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
+
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
+
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/allow_group_network.diff"
+}
+
+build() {
+  cd "${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --bindir=/usr/bin \
+  --sbindir=/usr/bin \
+  --with-systemdunitdir=/usr/lib/systemd/system \
+  --enable-pptp \
+  --enable-openconnect \
+  --enable-vpnc \

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

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 00:14:49
  Author: shibumi
Revision: 218994

upgpkg: connman 1.33-4 - made minor PKGBUILD enhancements

Modified:
  connman/trunk/PKGBUILD

--+
 PKGBUILD |   24 
 1 file changed, 12 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-03-25 23:44:03 UTC (rev 218993)
+++ PKGBUILD2017-03-26 00:14:49 UTC (rev 218994)
@@ -1,11 +1,11 @@
 #$Id$
-# Maintainer:
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
 # Contributor: Daniel Wallace 
 # Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
 
 pkgname=connman
 pkgver=1.33
-pkgrel=3
+pkgrel=4
 pkgdesc="Wireless LAN network manager"
 url="https://01.org/connman;
 arch=('i686' 'x86_64')
@@ -16,16 +16,16 @@
 'pptpclient: for ppp support')
 makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
 
source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
-md5sums=('c51903fd3e7a6a371d12ac5d72a1fa01'
- 'a8d22ee089fb0ed725130d16ad393047')
+sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
+
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
 
 prepare(){
-  cd $pkgname-$pkgver
-  patch -Np1 -i "$srcdir/allow_group_network.diff"
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/allow_group_network.diff"
 }
 
 build() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
 
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
   --bindir=/usr/bin \
@@ -42,10 +42,10 @@
 }
 
 package() {
-  make -C $pkgname-$pkgver DESTDIR="$pkgdir" install
-  install -Dm755 "$srcdir/$pkgname-$pkgver/client/${pkgname}ctl" 
"$pkgdir/usr/bin/${pkgname}ctl"
-  find "$pkgdir/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
+  make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
+  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/client/${pkgname}ctl" 
"${pkgdir}/usr/bin/${pkgname}ctl"
+  find "${pkgdir}/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
 # See FS#48044
-  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"$pkgdir"/usr/lib/systemd/system/connman.service
-  rm -r "$pkgdir"/usr/lib/tmpfiles.d
+  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"${pkgdir}"/usr/lib/systemd/system/connman.service
+  rm -r "${pkgdir}"/usr/lib/tmpfiles.d
 }


[arch-commits] Commit in connman/repos (8 files)

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:00:14
  Author: shibumi
Revision: 218996

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 218995, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 218995, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 218995, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 218995, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |  102 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   51 --
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   51 --
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-26 00:58:29 UTC (rev 218995)
+++ community-i686/PKGBUILD 2017-03-26 01:00:14 UTC (rev 218996)
@@ -1,51 +0,0 @@
-#$Id$
-# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
-# Contributor: Daniel Wallace 
-# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
-
-pkgname=connman
-pkgver=1.33
-pkgrel=4
-pkgdesc="Wireless LAN network manager"
-url="https://01.org/connman;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus' 'iptables' 'gnutls' 'glib2')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices'
-'pptpclient: for ppp support')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
-sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
-
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/allow_group_network.diff"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --bindir=/usr/bin \
-  --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-pptp \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client \
-  --enable-nmcompat
-  make
-}
-
-package() {
-  make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/client/${pkgname}ctl" 
"${pkgdir}/usr/bin/${pkgname}ctl"
-  find "${pkgdir}/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-# See FS#48044
-  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"${pkgdir}"/usr/lib/systemd/system/connman.service
-  rm -r "${pkgdir}"/usr/lib/tmpfiles.d
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 218995, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD     (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 01:00:14 UTC (rev 218996)
@@ -0,0 +1,51 @@
+#$Id$
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
+
+pkgname=connman
+pkgver=1.33
+pkgrel=4
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
+sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
+
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
+
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/allow_group_

[arch-commits] Commit in connman/repos (8 files)

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:01:33
  Author: shibumi
Revision: 218997

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 218996, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 218996, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 218996, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 218996, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |  102 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   51 --
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   51 --
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-26 01:00:14 UTC (rev 218996)
+++ community-i686/PKGBUILD 2017-03-26 01:01:33 UTC (rev 218997)
@@ -1,51 +0,0 @@
-#$Id$
-# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
-# Contributor: Daniel Wallace 
-# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
-
-pkgname=connman
-pkgver=1.33
-pkgrel=4
-pkgdesc="Wireless LAN network manager"
-url="https://01.org/connman;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus' 'iptables' 'gnutls' 'glib2')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices'
-'pptpclient: for ppp support')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
-sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
-
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/allow_group_network.diff"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --bindir=/usr/bin \
-  --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-pptp \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client \
-  --enable-nmcompat
-  make
-}
-
-package() {
-  make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/client/${pkgname}ctl" 
"${pkgdir}/usr/bin/${pkgname}ctl"
-  find "${pkgdir}/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-# See FS#48044
-  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"${pkgdir}"/usr/lib/systemd/system/connman.service
-  rm -r "${pkgdir}"/usr/lib/tmpfiles.d
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 218996, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD     (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 01:01:33 UTC (rev 218997)
@@ -0,0 +1,51 @@
+#$Id$
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
+
+pkgname=connman
+pkgver=1.33
+pkgrel=4
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
+sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
+
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
+
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/allow_group_

[arch-commits] Commit in connman/repos (8 files)

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:10:27
  Author: shibumi
Revision: 219003

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 219002, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 219002, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 219002, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 219002, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |  102 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   51 --
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   51 --
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-26 01:08:48 UTC (rev 219002)
+++ community-i686/PKGBUILD 2017-03-26 01:10:27 UTC (rev 219003)
@@ -1,51 +0,0 @@
-#$Id$
-# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
-# Contributor: Daniel Wallace 
-# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
-
-pkgname=connman
-pkgver=1.33
-pkgrel=4
-pkgdesc="Wireless LAN network manager"
-url="https://01.org/connman;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus' 'iptables' 'gnutls' 'glib2')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices'
-'pptpclient: for ppp support')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
-sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
-
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/allow_group_network.diff"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --bindir=/usr/bin \
-  --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-pptp \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client \
-  --enable-nmcompat
-  make
-}
-
-package() {
-  make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/client/${pkgname}ctl" 
"${pkgdir}/usr/bin/${pkgname}ctl"
-  find "${pkgdir}/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-# See FS#48044
-  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"${pkgdir}"/usr/lib/systemd/system/connman.service
-  rm -r "${pkgdir}"/usr/lib/tmpfiles.d
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 219002, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD     (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 01:10:27 UTC (rev 219003)
@@ -0,0 +1,51 @@
+#$Id$
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
+
+pkgname=connman
+pkgver=1.33
+pkgrel=4
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
+sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
+
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
+
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/allow_group_

[arch-commits] Commit in connman/repos (8 files)

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:07:43
  Author: shibumi
Revision: 219000

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 218999, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 218999, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 218999, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 218999, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |  102 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   51 --
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   51 --
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-26 01:06:31 UTC (rev 218999)
+++ community-i686/PKGBUILD 2017-03-26 01:07:43 UTC (rev 219000)
@@ -1,51 +0,0 @@
-#$Id$
-# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
-# Contributor: Daniel Wallace 
-# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
-
-pkgname=connman
-pkgver=1.33
-pkgrel=4
-pkgdesc="Wireless LAN network manager"
-url="https://01.org/connman;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus' 'iptables' 'gnutls' 'glib2')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices'
-'pptpclient: for ppp support')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
-sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
-
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/allow_group_network.diff"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --bindir=/usr/bin \
-  --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-pptp \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client \
-  --enable-nmcompat
-  make
-}
-
-package() {
-  make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/client/${pkgname}ctl" 
"${pkgdir}/usr/bin/${pkgname}ctl"
-  find "${pkgdir}/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-# See FS#48044
-  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"${pkgdir}"/usr/lib/systemd/system/connman.service
-  rm -r "${pkgdir}"/usr/lib/tmpfiles.d
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 218999, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD     (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 01:07:43 UTC (rev 219000)
@@ -0,0 +1,51 @@
+#$Id$
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
+
+pkgname=connman
+pkgver=1.33
+pkgrel=4
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
+sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
+
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
+
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/allow_group_

[arch-commits] Commit in connman/repos (8 files)

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:16:02
  Author: shibumi
Revision: 219008

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 219007, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 219007, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 219007, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 219007, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |  102 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   51 --
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   51 --
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 126 insertions(+), 126 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-26 01:14:36 UTC (rev 219007)
+++ community-i686/PKGBUILD 2017-03-26 01:16:02 UTC (rev 219008)
@@ -1,51 +0,0 @@
-#$Id$
-# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
-# Contributor: Daniel Wallace 
-# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
-
-pkgname=connman
-pkgver=1.33
-pkgrel=4
-pkgdesc="Wireless LAN network manager"
-url="https://01.org/connman;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus' 'iptables' 'gnutls' 'glib2')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices'
-'pptpclient: for ppp support')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
-sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
-
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/allow_group_network.diff"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --bindir=/usr/bin \
-  --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-pptp \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client \
-  --enable-nmcompat
-  make
-}
-
-package() {
-  make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/client/${pkgname}ctl" 
"${pkgdir}/usr/bin/${pkgname}ctl"
-  find "${pkgdir}/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-# See FS#48044
-  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"${pkgdir}"/usr/lib/systemd/system/connman.service
-  rm -r "${pkgdir}"/usr/lib/tmpfiles.d
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 219007, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD     (rev 0)
+++ community-i686/PKGBUILD 2017-03-26 01:16:02 UTC (rev 219008)
@@ -0,0 +1,51 @@
+#$Id$
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
+
+pkgname=connman
+pkgver=1.33
+pkgrel=4
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 'allow_group_network.diff')
+sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
+
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
+
+prepare(){
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i "${srcdir}/allow_group_

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

2017-04-03 Thread Christian Rebischke
Date: Monday, April 3, 2017 @ 20:55:42
  Author: shibumi
Revision: 220446

upgpkg: connman 1.33-6 enabled https

Modified:
  connman/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-03 19:59:28 UTC (rev 220445)
+++ PKGBUILD2017-04-03 20:55:42 UTC (rev 220446)
@@ -5,7 +5,7 @@
 
 pkgname=connman
 pkgver=1.33
-pkgrel=5
+pkgrel=6
 pkgdesc="Wireless LAN network manager"
 url="https://01.org/connman;
 arch=('i686' 'x86_64')
@@ -15,8 +15,8 @@
 'wpa_supplicant: For WiFi devices'
 'pptpclient: for ppp support')
 makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("${pkgname}-${pkgver}.tar.xz::http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
-
"${pkgname}-${pkgver}.tar.sign::http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.sign;
+source=("${pkgname}-${pkgver}.tar.xz::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.sign::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.sign;
 'allow_group_network.diff')
 
sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
 'SKIP'


[arch-commits] Commit in connman/repos (8 files)

2017-04-03 Thread Christian Rebischke
Date: Monday, April 3, 2017 @ 20:57:22
  Author: shibumi
Revision: 220447

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 220446, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 220446, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 220446, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 220446, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |  110 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   55 --
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   55 --
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 134 insertions(+), 134 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-04-03 20:55:42 UTC (rev 220446)
+++ community-i686/PKGBUILD 2017-04-03 20:57:22 UTC (rev 220447)
@@ -1,55 +0,0 @@
-#$Id$
-# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
-# Contributor: Daniel Wallace 
-# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
-
-pkgname=connman
-pkgver=1.33
-pkgrel=5
-pkgdesc="Wireless LAN network manager"
-url="https://01.org/connman;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus' 'iptables' 'gnutls' 'glib2')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices'
-'pptpclient: for ppp support')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("${pkgname}-${pkgver}.tar.xz::http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
-
"${pkgname}-${pkgver}.tar.sign::http://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.sign;
-'allow_group_network.diff')
-sha512sums=('5670124d2e17ffde4bd5fb878198843b712a31f5840e8523e8247373c8547619e32a4d6dda9cf993eebd5c65bdd256cfc570708a79da1d10f969662b5b750566'
-'SKIP'
-
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
-validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/allow_group_network.diff"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --bindir=/usr/bin \
-  --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-pptp \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client \
-  --enable-nmcompat
-  make
-}
-
-package() {
-  make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/client/${pkgname}ctl" 
"${pkgdir}/usr/bin/${pkgname}ctl"
-  find "${pkgdir}/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-# See FS#48044
-  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"${pkgdir}"/usr/lib/systemd/system/connman.service
-  rm -r "${pkgdir}"/usr/lib/tmpfiles.d
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 220446, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD     (rev 0)
+++ community-i686/PKGBUILD 2017-04-03 20:57:22 UTC (rev 220447)
@@ -0,0 +1,55 @@
+#$Id$
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
+
+pkgname=connman
+pkgver=1.33
+pkgrel=6
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("${pkgname}-${pkgver}.tar.xz::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.sign::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.sign;
+

[arch-commits] Commit in audit/repos (8 files)

2017-04-11 Thread Christian Rebischke
Date: Tuesday, April 11, 2017 @ 18:17:24
  Author: shibumi
Revision: 222349

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

Added:
  audit/repos/community-i686/PKGBUILD
(from rev 222348, audit/trunk/PKGBUILD)
  audit/repos/community-i686/audit.install
(from rev 222348, audit/trunk/audit.install)
  audit/repos/community-x86_64/PKGBUILD
(from rev 222348, audit/trunk/PKGBUILD)
  audit/repos/community-x86_64/audit.install
(from rev 222348, audit/trunk/audit.install)
Deleted:
  audit/repos/community-i686/PKGBUILD
  audit/repos/community-i686/audit.install
  audit/repos/community-x86_64/PKGBUILD
  audit/repos/community-x86_64/audit.install

+
 /PKGBUILD  |  128 +++
 /audit.install |   10 +++
 community-i686/PKGBUILD|   64 ---
 community-i686/audit.install   |5 -
 community-x86_64/PKGBUILD  |   64 ---
 community-x86_64/audit.install |5 -
 6 files changed, 138 insertions(+), 138 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-04-11 18:17:09 UTC (rev 222348)
+++ community-i686/PKGBUILD 2017-04-11 18:17:24 UTC (rev 222349)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Daniel Micay <danielmi...@gmail.com>
-# Contributor: <k...@insecure.ws>
-# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Contributor: Connor Behan <connor.be...@gmail.com>
-# Contributor: henning mueller <henn...@orgizm.net>
-
-pkgname=audit
-pkgver=2.7.3
-pkgrel=1
-pkgdesc='Userspace components of the audit framework'
-url='https://people.redhat.com/sgrubb/audit'
-arch=('i686' 'x86_64')
-depends=('krb5' 'libcap-ng')
-makedepends=('libldap' 'swig' 'linux-headers' 'python')
-license=('GPL')
-options=('emptydirs')
-backup=(
-  etc/libaudit.conf
-  etc/audit/audit.rules
-  etc/audit/auditd.conf
-  etc/audisp/audispd.conf
-  etc/audisp/audisp-remote.conf
-  etc/audisp/zos-remote.conf
-  etc/audisp/plugins.d/af_unix.conf
-  etc/audisp/plugins.d/audispd-zos-remote.conf
-  etc/audisp/plugins.d/au-remote.conf
-  etc/audisp/plugins.d/syslog.conf
-)
-source=("${pkgname}-${pkgver}.tar.gz::https://people.redhat.com/sgrubb/audit/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('0f504169e1a41078a2244d47418b37f714003e637656af53548bb041f48bbab2422c9e25f78fcf48fa7e57aa6a47336f4b37428df7676b13b3df64d20cd1a2f2')
-install="audit.install"
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  export PYTHON=/usr/bin/python3
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---libexecdir=/usr/lib/audit \
---with-python=yes \
---enable-gssapi-krb5=yes \
---enable-systemd=yes \
---with-libcap-ng=yes
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  cd "${pkgdir}"
-  install -d var/log/audit
-  rm -rf etc/rc.d etc/sysconfig usr/lib/audit
-
-  sed -ri 's|/sbin|/usr/bin|' \
-etc/audit/*.conf \
-etc/audisp/plugins.d/*.conf \
-usr/lib/systemd/system/auditd.service
-
-  chmod 644 usr/lib/systemd/system/auditd.service
-}

Copied: audit/repos/community-i686/PKGBUILD (from rev 222348, 
audit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD     2017-04-11 18:17:24 UTC (rev 222349)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Daniel Micay <danielmi...@gmail.com>
+# Contributor: <k...@insecure.ws>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Connor Behan <connor.be...@gmail.com>
+# Contributor: henning mueller <henn...@orgizm.net>
+
+pkgname=audit
+pkgver=2.7.5
+pkgrel=1
+pkgdesc='Userspace components of the audit framework'
+url='https://people.redhat.com/sgrubb/audit'
+arch=('i686' 'x86_64')
+depends=('krb5' 'libcap-ng')
+makedepends=('libldap' 'swig' 'linux-headers' 'python')
+license=('GPL')
+options=('emptydirs')
+backup=(
+  etc/libaudit.conf
+  etc/audit/audit.rules
+  etc/audit/auditd.conf
+  etc/audisp/audispd.conf
+  etc/audisp/audisp-remote.conf
+  etc/audisp/zos-remote.conf
+  etc/audisp/plugins.d/af_unix.conf
+  etc/audisp/plugins.d/audispd-zos-remote.conf
+  etc/audisp/plugins.d/au-remote.conf
+  etc/audisp/plugins.d/syslog.conf
+)
+source=("${pkgname}-${pkgver}.tar.gz::https://people.redhat.com/sgrubb/audit/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3707987b36fa3757fb980e09319d0853e06780a8a1ea2d0dd71968220659ab5f1c0a731394bbe0a19d28d0dc24c369e3d437fdb90cda24c04dff405dddba6659')
+install="audit.install"
+
+build() {
+  cd &

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

2017-04-11 Thread Christian Rebischke
Date: Tuesday, April 11, 2017 @ 18:17:09
  Author: shibumi
Revision: 222348

upgpkg: audit 2.7.5-1

Modified:
  audit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-04-11 18:15:01 UTC (rev 222347)
+++ PKGBUILD2017-04-11 18:17:09 UTC (rev 222348)
@@ -7,7 +7,7 @@
 # Contributor: henning mueller 
 
 pkgname=audit
-pkgver=2.7.3
+pkgver=2.7.5
 pkgrel=1
 pkgdesc='Userspace components of the audit framework'
 url='https://people.redhat.com/sgrubb/audit'
@@ -29,7 +29,7 @@
   etc/audisp/plugins.d/syslog.conf
 )
 
source=("${pkgname}-${pkgver}.tar.gz::https://people.redhat.com/sgrubb/audit/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('0f504169e1a41078a2244d47418b37f714003e637656af53548bb041f48bbab2422c9e25f78fcf48fa7e57aa6a47336f4b37428df7676b13b3df64d20cd1a2f2')
+sha512sums=('3707987b36fa3757fb980e09319d0853e06780a8a1ea2d0dd71968220659ab5f1c0a731394bbe0a19d28d0dc24c369e3d437fdb90cda24c04dff405dddba6659')
 install="audit.install"
 
 build() {


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

2017-04-02 Thread Christian Rebischke
Date: Sunday, April 2, 2017 @ 14:00:26
  Author: shibumi
Revision: 220321

upgpkg: bup 0.29.1-1

new version

Modified:
  bup/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-02 13:33:17 UTC (rev 220320)
+++ PKGBUILD2017-04-02 14:00:26 UTC (rev 220321)
@@ -8,8 +8,8 @@
 # Contributor: SanskritFritz (gmail)
 
 pkgname=bup
-pkgver=0.29
-pkgrel=2
+pkgver=0.29.1
+pkgrel=1
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64' 'i686')
 url='https://bup.github.io/'
@@ -19,7 +19,7 @@
 checkdepends=('rsync' 'python2-tornado')
 optdepends=('python2-tornado: for bup web')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)
-sha512sums=('3a70d747c6bae2640809d48141b726fa7897f33af9f19047c8d4cfba88abe04ac907980f0ce572847b900e2c8d02a3303e886c8ad7af9a97a7804540c7da1705')
+sha512sums=('2ad142214cf5ee61e2113b49d02761cdf8fdd5928eb4f885230af71f149ba33ee748e1d96e240903f54d3264dc2ad1614e6ece66027b4c7ed1e97b6147a9685e')
 
 build() {
   cd "${pkgname}-${pkgver}"


[arch-commits] Commit in bup/repos (4 files)

2017-04-02 Thread Christian Rebischke
Date: Sunday, April 2, 2017 @ 14:00:42
  Author: shibumi
Revision: 220322

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

Added:
  bup/repos/community-i686/PKGBUILD
(from rev 220321, bup/trunk/PKGBUILD)
  bup/repos/community-x86_64/PKGBUILD
(from rev 220321, bup/trunk/PKGBUILD)
Deleted:
  bup/repos/community-i686/PKGBUILD
  bup/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   76 
 community-i686/PKGBUILD   |   38 --
 community-x86_64/PKGBUILD |   38 --
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-04-02 14:00:26 UTC (rev 220321)
+++ community-i686/PKGBUILD 2017-04-02 14:00:42 UTC (rev 220322)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
-# Contributor: Jakob Matthes <jakob.matt...@gmail.com>
-# Contributor: Bram Schoenmakers <m...@bramschoenmakers.nl>
-# Contributor: henning mueller <henn...@orgizm.net>
-# Contributor: rakoo (AUR)
-# Contributor: SanskritFritz (gmail)
-
-pkgname=bup
-pkgver=0.29
-pkgrel=2
-pkgdesc='Efficient backup system based on the git packfile format'
-arch=('x86_64' 'i686')
-url='https://bup.github.io/'
-license=('GPL')
-depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
-makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
-checkdepends=('rsync' 'python2-tornado')
-optdepends=('python2-tornado: for bup web')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)
-sha512sums=('3a70d747c6bae2640809d48141b726fa7897f33af9f19047c8d4cfba88abe04ac907980f0ce572847b900e2c8d02a3303e886c8ad7af9a97a7804540c7da1705')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure
-  make
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  make test
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX=/usr install
-}

Copied: bup/repos/community-i686/PKGBUILD (from rev 220321, bup/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-04-02 14:00:42 UTC (rev 220322)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
+# Contributor: Jakob Matthes <jakob.matt...@gmail.com>
+# Contributor: Bram Schoenmakers <m...@bramschoenmakers.nl>
+# Contributor: henning mueller <henn...@orgizm.net>
+# Contributor: rakoo (AUR)
+# Contributor: SanskritFritz (gmail)
+
+pkgname=bup
+pkgver=0.29.1
+pkgrel=1
+pkgdesc='Efficient backup system based on the git packfile format'
+arch=('x86_64' 'i686')
+url='https://bup.github.io/'
+license=('GPL')
+depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
+makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
+checkdepends=('rsync' 'python2-tornado')
+optdepends=('python2-tornado: for bup web')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)
+sha512sums=('2ad142214cf5ee61e2113b49d02761cdf8fdd5928eb4f885230af71f149ba33ee748e1d96e240903f54d3264dc2ad1614e6ece66027b4c7ed1e97b6147a9685e')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure
+  make
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX=/usr install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-04-02 14:00:26 UTC (rev 220321)
+++ community-x86_64/PKGBUILD   2017-04-02 14:00:42 UTC (rev 220322)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
-# Contributor: Jakob Matthes <jakob.matt...@gmail.com>
-# Contributor: Bram Schoenmakers <m...@bramschoenmakers.nl>
-# Contributor: henning mueller <henn...@orgizm.net>
-# Contributor: rakoo (AUR)
-# Contributor: SanskritFritz (gmail)
-
-pkgname=bup
-pkgver=0.29
-pkgrel=2
-pkgdesc='Efficient backup system based on the git packfile format'
-arch=('x86_64' 'i686')
-url='https://bup.github.io/'
-license=('GPL')
-depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
-makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
-checkdepends=('rsync' 'python2-tornado')
-optdepends=('python2-tornado: for bup web')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)

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

2017-04-10 Thread Christian Rebischke
Date: Monday, April 10, 2017 @ 14:10:30
  Author: shibumi
Revision: 221796

upgpkg: systemtap 3.1-3

Modified:
  systemtap/trunk/PKGBUILD

--+
 PKGBUILD |   29 ++---
 1 file changed, 22 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-10 14:09:51 UTC (rev 221795)
+++ PKGBUILD2017-04-10 14:10:30 UTC (rev 221796)
@@ -4,19 +4,32 @@
 pkgname=systemtap
 pkgver=3.1
 pkgrel=3
-pkgdesc="SystemTap provides free software (GPL) infrastructure to simplify the 
gathering of information about the running Linux system."
+pkgdesc="provides infrastructure to simplify the gathering of information 
about the running system."
 url="http://sourceware.org/systemtap/;
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('elfutils' 'nss' 'python2' 'texlive-fontsextra' 'texlive-latexextra' 
'latex2html')
-optdepends=('sqlite3')
-source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d')
+depends=('elfutils' 'nss' 'python2')
+makedepends=('python2-setuptools' 'xmlto')
+optdepends=('sqlite3: for storing results in a database')
+source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz;
+
"${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc;)
+sha512sums=('07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d'
+'SKIP')
 install='systemtap.install'
+validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --sysconfdir=/etc
+  cd "${pkgname}-${pkgver}"
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/"${pkgname}" \
+--libdir=/usr/lib/"${pkgname}" \
+--mandir=/usr/share/man/ \
+--localstatedir=/var \
+--enable-pie \
+--disable-docs \
+--enable-htmldocs
   make
 }
 
@@ -23,5 +36,7 @@
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
   make DESTDIR="${pkgdir}" install
+  rmdir "${pkgdir}/var/run/stap-server/"
+  rmdir "${pkgdir}/var/run/"
 }
 


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

2017-04-10 Thread Christian Rebischke
Date: Monday, April 10, 2017 @ 14:10:37
  Author: shibumi
Revision: 221797

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

Added:
  systemtap/repos/community-i686/
  systemtap/repos/community-i686/PKGBUILD
(from rev 221796, systemtap/trunk/PKGBUILD)
  systemtap/repos/community-i686/systemtap.install
(from rev 221796, systemtap/trunk/systemtap.install)
  systemtap/repos/community-x86_64/
  systemtap/repos/community-x86_64/PKGBUILD
(from rev 221796, systemtap/trunk/PKGBUILD)
  systemtap/repos/community-x86_64/systemtap.install
(from rev 221796, systemtap/trunk/systemtap.install)

+
 community-i686/PKGBUILD|   42 +++
 community-i686/systemtap.install   |4 +++
 community-x86_64/PKGBUILD  |   42 +++
 community-x86_64/systemtap.install |4 +++
 4 files changed, 92 insertions(+)

Copied: systemtap/repos/community-i686/PKGBUILD (from rev 221796, 
systemtap/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-04-10 14:10:37 UTC (rev 221797)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor:dront78 <dron...@gmail.com>
+pkgname=systemtap
+pkgver=3.1
+pkgrel=3
+pkgdesc="provides infrastructure to simplify the gathering of information 
about the running system."
+url="http://sourceware.org/systemtap/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('elfutils' 'nss' 'python2')
+makedepends=('python2-setuptools' 'xmlto')
+optdepends=('sqlite3: for storing results in a database')
+source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz;
+
"${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc;)
+sha512sums=('07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d'
+'SKIP')
+install='systemtap.install'
+validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/"${pkgname}" \
+--libdir=/usr/lib/"${pkgname}" \
+--mandir=/usr/share/man/ \
+--localstatedir=/var \
+--enable-pie \
+--disable-docs \
+--enable-htmldocs
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  rmdir "${pkgdir}/var/run/stap-server/"
+  rmdir "${pkgdir}/var/run/"
+}
+

Copied: systemtap/repos/community-i686/systemtap.install (from rev 221796, 
systemtap/trunk/systemtap.install)
===
--- community-i686/systemtap.install(rev 0)
+++ community-i686/systemtap.install2017-04-10 14:10:37 UTC (rev 221797)
@@ -0,0 +1,4 @@
+post_install() {
+  echo "CONFIG_DEBUG_INFO is disabled on default. You need to recompile"
+  echo "the kernel with CONFIG_DEBUG_INFO enabled."
+}

Copied: systemtap/repos/community-x86_64/PKGBUILD (from rev 221796, 
systemtap/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-04-10 14:10:37 UTC (rev 221797)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor:dront78 <dron...@gmail.com>
+pkgname=systemtap
+pkgver=3.1
+pkgrel=3
+pkgdesc="provides infrastructure to simplify the gathering of information 
about the running system."
+url="http://sourceware.org/systemtap/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('elfutils' 'nss' 'python2')
+makedepends=('python2-setuptools' 'xmlto')
+optdepends=('sqlite3: for storing results in a database')
+source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz;
+
"${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc;)
+sha512sums=('07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d'
+'SKIP')
+install='systemtap.install'
+validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/"${pkgname}" \
+--libdir=/usr/lib/"${pkgname}" \
+--mandir=/usr/share/man/ \
+--localstatedir=/var \
+--enable-pie \
+--disable-docs \
+--enable-

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

2017-04-23 Thread Christian Rebischke
Date: Sunday, April 23, 2017 @ 10:32:47
  Author: shibumi
Revision: 224576

db-move: moved weechat from [community-testing] to [community] (i686, x86_64)

Added:
  weechat/repos/community-i686/PKGBUILD
(from rev 224575, weechat/repos/community-testing-i686/PKGBUILD)
  weechat/repos/community-x86_64/PKGBUILD
(from rev 224575, weechat/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  weechat/repos/community-i686/PKGBUILD
  weechat/repos/community-testing-i686/
  weechat/repos/community-testing-x86_64/
  weechat/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   84 
 community-i686/PKGBUILD   |   42 --
 community-x86_64/PKGBUILD |   42 --
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-04-23 10:32:06 UTC (rev 224575)
+++ community-i686/PKGBUILD 2017-04-23 10:32:47 UTC (rev 224576)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=1.7
-pkgrel=2.1
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key)
-source=(https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('04d9c3835668f0e13605bab306fd53c9'
- 'SKIP')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake -Wno-dev "$srcdir/${pkgname}-${pkgver}" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
--DENABLE_MAN=ON \
--DENABLE_DOC=ON
-
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: weechat/repos/community-i686/PKGBUILD (from rev 224575, 
weechat/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-04-23 10:32:47 UTC (rev 224576)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Giovanni Scafora 
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=1.7
+pkgrel=2.2
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
+ 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key)
+source=(https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz{,.asc})
+md5sums=('04d9c3835668f0e13605bab306fd53c9'
+ 'SKIP')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake -Wno-dev "$srcdir/${pkgname}-${pkgver}" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-04-23 10:32:06 UTC (rev 224575)
+++ community-x86_64/PKGBUILD   2017-04-23 10:32:47 UTC (rev 224576)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=1.7
-pkgrel=2.1
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key)
-source=(https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('04d9c3835668f0e13605bab306fd53c9'
- 'SKIP')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake -Wno-dev "$srcdir/${pkgname}-${pkgver}" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
--DENABLE_MAN=ON \
--DENABLE_DOC=ON
-
-  make

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

2017-04-23 Thread Christian Rebischke
Date: Sunday, April 23, 2017 @ 11:34:10
  Author: shibumi
Revision: 224577

upgpkg: weechat 1.7.1-1 security bugfix

Modified:
  weechat/trunk/PKGBUILD

--+
 PKGBUILD |   24 +---
 1 file changed, 13 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-23 10:32:47 UTC (rev 224576)
+++ PKGBUILD2017-04-23 11:34:10 UTC (rev 224577)
@@ -1,10 +1,11 @@
 # $Id$
-# Maintainer: Giovanni Scafora <giova...@archlinux.org>
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Giovanni Scafora <giova...@archlinux.org>
 # Contributor: lucke 
 
 pkgname=weechat
-pkgver=1.7
-pkgrel=2.2
+pkgver=1.7.1
+pkgrel=1
 pkgdesc="Fast, light and extensible IRC client (curses UI)"
 arch=('i686' 'x86_64')
 url="http://www.weechat.org/;
@@ -11,12 +12,13 @@
 license=('GPL')
 depends=('gnutls' 'curl' 'libgcrypt')
 makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key)
-source=(https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('04d9c3835668f0e13605bab306fd53c9'
- 'SKIP')
+ 'lua' 'tcl' 'ruby' 'aspell' 'guile' 'asciidoctor')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
+sha512sums=('4aba380704ab5f611d923a461aa17cac076a18f92a6bb8129daf5f212536672267cadcc679befbcadb48d5044e4bf973f93982d9d3c500cd9d9e12dba4dbfbba'
+'SKIP')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
 
 prepare() {
   mkdir build
@@ -25,7 +27,7 @@
 build() {
   cd build
 
-  cmake -Wno-dev "$srcdir/${pkgname}-${pkgver}" \
+  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DPYTHON_EXECUTABLE=/usr/bin/python2 \
 -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
@@ -38,5 +40,5 @@
 package() {
   cd build
 
-  make DESTDIR="$pkgdir" install
+  make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in weechat/repos (4 files)

2017-04-23 Thread Christian Rebischke
Date: Sunday, April 23, 2017 @ 11:36:33
  Author: shibumi
Revision: 224578

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

Added:
  weechat/repos/community-i686/PKGBUILD
(from rev 224577, weechat/trunk/PKGBUILD)
  weechat/repos/community-x86_64/PKGBUILD
(from rev 224577, weechat/trunk/PKGBUILD)
Deleted:
  weechat/repos/community-i686/PKGBUILD
  weechat/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   88 
 community-i686/PKGBUILD   |   42 -
 community-x86_64/PKGBUILD |   42 -
 3 files changed, 88 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-04-23 11:34:10 UTC (rev 224577)
+++ community-i686/PKGBUILD 2017-04-23 11:36:33 UTC (rev 224578)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <giova...@archlinux.org>
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=1.7
-pkgrel=2.2
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key)
-source=(https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('04d9c3835668f0e13605bab306fd53c9'
- 'SKIP')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake -Wno-dev "$srcdir/${pkgname}-${pkgver}" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
--DENABLE_MAN=ON \
--DENABLE_DOC=ON
-
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: weechat/repos/community-i686/PKGBUILD (from rev 224577, 
weechat/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-04-23 11:36:33 UTC (rev 224578)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Giovanni Scafora <giova...@archlinux.org>
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=1.7.1
+pkgrel=1
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
+ 'lua' 'tcl' 'ruby' 'aspell' 'guile' 'asciidoctor')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
+sha512sums=('4aba380704ab5f611d923a461aa17cac076a18f92a6bb8129daf5f212536672267cadcc679befbcadb48d5044e4bf973f93982d9d3c500cd9d9e12dba4dbfbba'
+'SKIP')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-04-23 11:34:10 UTC (rev 224577)
+++ community-x86_64/PKGBUILD   2017-04-23 11:36:33 UTC (rev 224578)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <giova...@archlinux.org>
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=1.7
-pkgrel=2.2
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key)
-source=(https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('04d9c3835668f0e13605bab306fd53c9'
- 'SKIP')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake -Wno-de

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

2017-04-24 Thread Christian Rebischke
Date: Monday, April 24, 2017 @ 15:41:35
  Author: shibumi
Revision: 225160

upgpkg: weechat 1.7.1-3 rebuild with guile2.0

Modified:
  weechat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-04-24 15:36:14 UTC (rev 225159)
+++ PKGBUILD2017-04-24 15:41:35 UTC (rev 225160)
@@ -5,7 +5,7 @@
 
 pkgname=weechat
 pkgver=1.7.1
-pkgrel=2
+pkgrel=3
 pkgdesc="Fast, light and extensible IRC client (curses UI)"
 arch=('i686' 'x86_64')
 url="http://www.weechat.org/;
@@ -12,7 +12,7 @@
 license=('GPL')
 depends=('gnutls' 'curl' 'libgcrypt')
 makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile' 'asciidoctor')
+ 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
 optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
 
source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
 
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)


[arch-commits] Commit in weechat/repos (4 files)

2017-04-24 Thread Christian Rebischke
Date: Monday, April 24, 2017 @ 15:49:41
  Author: shibumi
Revision: 225163

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

Added:
  weechat/repos/community-testing-i686/PKGBUILD
(from rev 225162, weechat/trunk/PKGBUILD)
  weechat/repos/community-testing-x86_64/PKGBUILD
(from rev 225162, weechat/trunk/PKGBUILD)
Deleted:
  weechat/repos/community-testing-i686/PKGBUILD
  weechat/repos/community-testing-x86_64/PKGBUILD

---+
 /PKGBUILD |   88 
 community-testing-i686/PKGBUILD   |   44 --
 community-testing-x86_64/PKGBUILD |   44 --
 3 files changed, 88 insertions(+), 88 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-04-24 15:49:31 UTC (rev 225162)
+++ community-testing-i686/PKGBUILD 2017-04-24 15:49:41 UTC (rev 225163)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Giovanni Scafora <giova...@archlinux.org>
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=1.7.1
-pkgrel=3
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
-
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
-sha512sums=('4aba380704ab5f611d923a461aa17cac076a18f92a6bb8129daf5f212536672267cadcc679befbcadb48d5044e4bf973f93982d9d3c500cd9d9e12dba4dbfbba'
-'SKIP')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
--DENABLE_MAN=ON \
--DENABLE_DOC=ON
-
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: weechat/repos/community-testing-i686/PKGBUILD (from rev 225162, 
weechat/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-04-24 15:49:41 UTC (rev 225163)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Giovanni Scafora <giova...@archlinux.org>
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=1.7.1
+pkgrel=4
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
+ 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0')
+source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
+sha512sums=('4aba380704ab5f611d923a461aa17cac076a18f92a6bb8129daf5f212536672267cadcc679befbcadb48d5044e4bf973f93982d9d3c500cd9d9e12dba4dbfbba'
+'SKIP')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2017-04-24 15:49:31 UTC (rev 225162)
+++ community-testing-x86_64/PKGBUILD   2017-04-24 15:49:41 UTC (rev 225163)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Giovanni Scafora <giova...@archlinux.org>
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=1.7.1
-pkgrel=3
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgc

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

2017-04-24 Thread Christian Rebischke
Date: Monday, April 24, 2017 @ 15:49:31
  Author: shibumi
Revision: 225162

upgpkg: weechat 1.7.1-4 added guile2.0 as optdepend

Modified:
  weechat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-04-24 15:42:16 UTC (rev 225161)
+++ PKGBUILD2017-04-24 15:49:31 UTC (rev 225162)
@@ -5,7 +5,7 @@
 
 pkgname=weechat
 pkgver=1.7.1
-pkgrel=3
+pkgrel=4
 pkgdesc="Fast, light and extensible IRC client (curses UI)"
 arch=('i686' 'x86_64')
 url="http://www.weechat.org/;
@@ -13,7 +13,7 @@
 depends=('gnutls' 'curl' 'libgcrypt')
 makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
  'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0')
 
source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
 
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
 
sha512sums=('4aba380704ab5f611d923a461aa17cac076a18f92a6bb8129daf5f212536672267cadcc679befbcadb48d5044e4bf973f93982d9d3c500cd9d9e12dba4dbfbba'


[arch-commits] Commit in weechat/repos (4 files)

2017-04-24 Thread Christian Rebischke
Date: Monday, April 24, 2017 @ 15:42:16
  Author: shibumi
Revision: 225161

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

Added:
  weechat/repos/community-testing-i686/PKGBUILD
(from rev 225160, weechat/trunk/PKGBUILD)
  weechat/repos/community-testing-x86_64/PKGBUILD
(from rev 225160, weechat/trunk/PKGBUILD)
Deleted:
  weechat/repos/community-testing-i686/PKGBUILD
  weechat/repos/community-testing-x86_64/PKGBUILD

---+
 /PKGBUILD |   88 
 community-testing-i686/PKGBUILD   |   44 --
 community-testing-x86_64/PKGBUILD |   44 --
 3 files changed, 88 insertions(+), 88 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-04-24 15:41:35 UTC (rev 225160)
+++ community-testing-i686/PKGBUILD 2017-04-24 15:42:16 UTC (rev 225161)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Giovanni Scafora <giova...@archlinux.org>
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=1.7.1
-pkgrel=2
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
-
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
-sha512sums=('4aba380704ab5f611d923a461aa17cac076a18f92a6bb8129daf5f212536672267cadcc679befbcadb48d5044e4bf973f93982d9d3c500cd9d9e12dba4dbfbba'
-'SKIP')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
--DENABLE_MAN=ON \
--DENABLE_DOC=ON
-
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: weechat/repos/community-testing-i686/PKGBUILD (from rev 225160, 
weechat/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-04-24 15:42:16 UTC (rev 225161)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Giovanni Scafora <giova...@archlinux.org>
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=1.7.1
+pkgrel=3
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
+ 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
+sha512sums=('4aba380704ab5f611d923a461aa17cac076a18f92a6bb8129daf5f212536672267cadcc679befbcadb48d5044e4bf973f93982d9d3c500cd9d9e12dba4dbfbba'
+'SKIP')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2017-04-24 15:41:35 UTC (rev 225160)
+++ community-testing-x86_64/PKGBUILD   2017-04-24 15:42:16 UTC (rev 225161)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Giovanni Scafora <giova...@archlinux.org>
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=1.7.1
-pkgrel=2
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-mak

[arch-commits] Commit in ascii/repos (4 files)

2017-08-02 Thread Christian Rebischke
Date: Wednesday, August 2, 2017 @ 18:29:56
  Author: shibumi
Revision: 247526

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

Added:
  ascii/repos/community-i686/PKGBUILD
(from rev 247525, ascii/trunk/PKGBUILD)
  ascii/repos/community-x86_64/PKGBUILD
(from rev 247525, ascii/trunk/PKGBUILD)
Deleted:
  ascii/repos/community-i686/PKGBUILD
  ascii/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   58 
 community-i686/PKGBUILD   |   30 --
 community-x86_64/PKGBUILD |   30 --
 3 files changed, 58 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-02 18:29:43 UTC (rev 247525)
+++ community-i686/PKGBUILD 2017-08-02 18:29:56 UTC (rev 247526)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Peter Lewis <ple...@aur.archlinux.org>
-# Contributor: Grigorios Bouzakis <grb...@xsmail.com>
-# Contributor: Damir Perisa <damir.per...@bluewin.ch>
-
-pkgname=ascii
-pkgver=3.15
-pkgrel=2
-pkgdesc='Utility for conversion between various byte representations and the 
ASCII character table'
-arch=('i686' 'x86_64')
-url='http://www.catb.org/~esr/ascii'
-license=('BSD')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::http://www.catb.org/~esr/ascii/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('f03edc2a75421948974a67db607c59e988d116bd6b205b2458296348e00e4ed890a80df64e378ca48c26d9b889eec2276c9e08af1a31c4bdfa05e782926b5356')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  install -D -m755 ascii "${pkgdir}/usr/bin/ascii"
-  install -D -m644 ascii.1 "${pkgdir}/usr/share/man/man1/ascii.1"
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: ascii/repos/community-i686/PKGBUILD (from rev 247525, 
ascii/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-08-02 18:29:56 UTC (rev 247526)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Peter Lewis <ple...@aur.archlinux.org>
+# Contributor: Grigorios Bouzakis <grb...@xsmail.com>
+# Contributor: Damir Perisa <damir.per...@bluewin.ch>
+
+pkgname=ascii
+pkgver=3.18
+pkgrel=1
+pkgdesc='Utility for conversion between various byte representations and the 
ASCII character table'
+arch=('i686' 'x86_64')
+url='http://www.catb.org/~esr/ascii'
+license=('BSD')
+depends=('glibc')
+source=("${pkgname}-${pkgver}.tar.gz::http://www.catb.org/~esr/ascii/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('f3a4354971ccbdb01a6eea4ee46818bccfef0fec8d640f0eeafa984a9116fcb829fe7979488bfe62744374e8783678b99710e09fcc2ddfc6c4068ba08ab73d5d')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+
+  install -D -m755 ascii "${pkgdir}/usr/bin/ascii"
+  install -D -m644 ascii.1 "${pkgdir}/usr/share/man/man1/ascii.1"
+  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-08-02 18:29:43 UTC (rev 247525)
+++ community-x86_64/PKGBUILD   2017-08-02 18:29:56 UTC (rev 247526)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Peter Lewis <ple...@aur.archlinux.org>
-# Contributor: Grigorios Bouzakis <grb...@xsmail.com>
-# Contributor: Damir Perisa <damir.per...@bluewin.ch>
-
-pkgname=ascii
-pkgver=3.15
-pkgrel=2
-pkgdesc='Utility for conversion between various byte representations and the 
ASCII character table'
-arch=('i686' 'x86_64')
-url='http://www.catb.org/~esr/ascii'
-license=('BSD')
-depends=('glibc')
-source=("${pkgname}-${pkgver}.tar.gz::http://www.catb.org/~esr/ascii/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('f03edc2a75421948974a67db607c59e988d116bd6b205b2458296348e00e4ed890a80df64e378ca48c26d9b889eec2276c9e08af1a31c4bdfa05e782926b5356')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-
-  install -D -m755 ascii "${pkgdir}/usr/bin/ascii"
-  install -D -m644 ascii.1 "${pkgdir}/usr/share/man/man1/ascii.1"
-  install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: ascii/repos/community-x86_64/PKGBUILD (from rev 247525, 
ascii/trunk/PKGBUILD)
=======
--- community-x86_64/

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

2017-08-02 Thread Christian Rebischke
Date: Wednesday, August 2, 2017 @ 18:29:43
  Author: shibumi
Revision: 247525

upgpkg: ascii 3.18-1

Modified:
  ascii/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-02 17:54:28 UTC (rev 247524)
+++ PKGBUILD2017-08-02 18:29:43 UTC (rev 247525)
@@ -5,8 +5,8 @@
 # Contributor: Damir Perisa 
 
 pkgname=ascii
-pkgver=3.15
-pkgrel=2
+pkgver=3.18
+pkgrel=1
 pkgdesc='Utility for conversion between various byte representations and the 
ASCII character table'
 arch=('i686' 'x86_64')
 url='http://www.catb.org/~esr/ascii'
@@ -13,11 +13,10 @@
 license=('BSD')
 depends=('glibc')
 
source=("${pkgname}-${pkgver}.tar.gz::http://www.catb.org/~esr/ascii/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('f03edc2a75421948974a67db607c59e988d116bd6b205b2458296348e00e4ed890a80df64e378ca48c26d9b889eec2276c9e08af1a31c4bdfa05e782926b5356')
+sha512sums=('f3a4354971ccbdb01a6eea4ee46818bccfef0fec8d640f0eeafa984a9116fcb829fe7979488bfe62744374e8783678b99710e09fcc2ddfc6c4068ba08ab73d5d')
 
 build() {
   cd "${pkgname}-${pkgver}"
-
   make
 }
 


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

2017-08-02 Thread Christian Rebischke
Date: Wednesday, August 2, 2017 @ 20:07:13
  Author: shibumi
Revision: 247583

upgpkg: weechat 1.9-2 recompiled with PIE enabled

Modified:
  weechat/trunk/PKGBUILD

--+
 PKGBUILD |5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-02 19:56:40 UTC (rev 247582)
+++ PKGBUILD2017-08-02 20:07:13 UTC (rev 247583)
@@ -5,7 +5,7 @@
 
 pkgname=weechat
 pkgver=1.9
-pkgrel=1
+pkgrel=2
 pkgdesc="Fast, light and extensible IRC client (curses UI)"
 arch=('i686' 'x86_64')
 url="http://www.weechat.org/;
@@ -26,7 +26,6 @@
 
 build() {
   cd build
-
   cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
 -DCMAKE_INSTALL_PREFIX=/usr \
 -DPYTHON_EXECUTABLE=/usr/bin/python2 \
@@ -33,12 +32,10 @@
 -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
 -DENABLE_MAN=ON \
 -DENABLE_DOC=ON
-
   make
 }
 
 package() {
   cd build
-
   make DESTDIR="${pkgdir}" install
 }


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

2017-08-02 Thread Christian Rebischke
Date: Wednesday, August 2, 2017 @ 19:47:06
  Author: shibumi
Revision: 247571

upgpkg: accuraterip-checksum 1.4-3 recompiled with all security features

Modified:
  accuraterip-checksum/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-02 19:43:58 UTC (rev 247570)
+++ PKGBUILD2017-08-02 19:47:06 UTC (rev 247571)
@@ -2,7 +2,7 @@
 # Contributor: Samantha Baldwin 
 pkgname=accuraterip-checksum
 pkgver=1.4
-pkgrel=2
+pkgrel=3
 pkgdesc="A C99 commandline program to compute the AccurateRip checksum of 
singletrack WAV files"
 arch=('i686' 'x86_64')
 url="https://github.com/leo-bogert/accuraterip-checksum;
@@ -13,7 +13,7 @@
 
 build() {
   cd "${srcdir}/${pkgname}-version${pkgver}"
-  cc -lsndfile "${pkgname}.c" -o "${pkgname}"
+  cc -lsndfile "${pkgname}.c" -o "${pkgname}" $LDFLAGS $CFLAGS
 }
 
 package() {


[arch-commits] Commit in accuraterip-checksum/repos (4 files)

2017-08-02 Thread Christian Rebischke
Date: Wednesday, August 2, 2017 @ 19:47:23
  Author: shibumi
Revision: 247572

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

Added:
  accuraterip-checksum/repos/community-i686/PKGBUILD
(from rev 247571, accuraterip-checksum/trunk/PKGBUILD)
  accuraterip-checksum/repos/community-x86_64/PKGBUILD
(from rev 247571, accuraterip-checksum/trunk/PKGBUILD)
Deleted:
  accuraterip-checksum/repos/community-i686/PKGBUILD
  accuraterip-checksum/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   44 
 community-i686/PKGBUILD   |   22 --
 community-x86_64/PKGBUILD |   22 --
 3 files changed, 44 insertions(+), 44 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-02 19:47:06 UTC (rev 247571)
+++ community-i686/PKGBUILD 2017-08-02 19:47:23 UTC (rev 247572)
@@ -1,22 +0,0 @@
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Samantha Baldwin 
-pkgname=accuraterip-checksum
-pkgver=1.4
-pkgrel=2
-pkgdesc="A C99 commandline program to compute the AccurateRip checksum of 
singletrack WAV files"
-arch=('i686' 'x86_64')
-url="https://github.com/leo-bogert/accuraterip-checksum;
-license=('GPL')
-depends=('libsndfile')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/leo-bogert/${pkgname}/archive/version${pkgver}.tar.gz;)
-sha512sums=('632e934448b7609a72622e0c4ca15ff252b7a4e9b99c745b82506aceda2a74e3cfa49d36d30151b4fdea71c81b62e2566b4515b431229c29f7172097fa943b30')
-
-build() {
-  cd "${srcdir}/${pkgname}-version${pkgver}"
-  cc -lsndfile "${pkgname}.c" -o "${pkgname}"
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-version${pkgver}"
-  install -D -m755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-}

Copied: accuraterip-checksum/repos/community-i686/PKGBUILD (from rev 247571, 
accuraterip-checksum/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-08-02 19:47:23 UTC (rev 247572)
@@ -0,0 +1,22 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Samantha Baldwin 
+pkgname=accuraterip-checksum
+pkgver=1.4
+pkgrel=3
+pkgdesc="A C99 commandline program to compute the AccurateRip checksum of 
singletrack WAV files"
+arch=('i686' 'x86_64')
+url="https://github.com/leo-bogert/accuraterip-checksum;
+license=('GPL')
+depends=('libsndfile')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/leo-bogert/${pkgname}/archive/version${pkgver}.tar.gz;)
+sha512sums=('632e934448b7609a72622e0c4ca15ff252b7a4e9b99c745b82506aceda2a74e3cfa49d36d30151b4fdea71c81b62e2566b4515b431229c29f7172097fa943b30')
+
+build() {
+  cd "${srcdir}/${pkgname}-version${pkgver}"
+  cc -lsndfile "${pkgname}.c" -o "${pkgname}" $LDFLAGS $CFLAGS
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-version${pkgver}"
+  install -D -m755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-08-02 19:47:06 UTC (rev 247571)
+++ community-x86_64/PKGBUILD   2017-08-02 19:47:23 UTC (rev 247572)
@@ -1,22 +0,0 @@
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Samantha Baldwin 
-pkgname=accuraterip-checksum
-pkgver=1.4
-pkgrel=2
-pkgdesc="A C99 commandline program to compute the AccurateRip checksum of 
singletrack WAV files"
-arch=('i686' 'x86_64')
-url="https://github.com/leo-bogert/accuraterip-checksum;
-license=('GPL')
-depends=('libsndfile')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/leo-bogert/${pkgname}/archive/version${pkgver}.tar.gz;)
-sha512sums=('632e934448b7609a72622e0c4ca15ff252b7a4e9b99c745b82506aceda2a74e3cfa49d36d30151b4fdea71c81b62e2566b4515b431229c29f7172097fa943b30')
-
-build() {
-  cd "${srcdir}/${pkgname}-version${pkgver}"
-  cc -lsndfile "${pkgname}.c" -o "${pkgname}"
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-version${pkgver}"
-  install -D -m755 "${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-}

Copied: accuraterip-checksum/repos/community-x86_64/PKGBUILD (from rev 247571, 
accuraterip-checksum/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-08-02 19:47:23 UTC (rev 247572)
@@ -0,0 +1,22 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Samantha Baldwin 
+pkgname=accuraterip-checksum
+pkgver=1

[arch-commits] Commit in weechat/repos (4 files)

2017-08-02 Thread Christian Rebischke
Date: Wednesday, August 2, 2017 @ 20:14:04
  Author: shibumi
Revision: 247587

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

Added:
  weechat/repos/community-i686/PKGBUILD
(from rev 247585, weechat/trunk/PKGBUILD)
  weechat/repos/community-x86_64/PKGBUILD
(from rev 247585, weechat/trunk/PKGBUILD)
Deleted:
  weechat/repos/community-i686/PKGBUILD
  weechat/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   82 
 community-i686/PKGBUILD   |   44 ---
 community-x86_64/PKGBUILD |   44 ---
 3 files changed, 82 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-02 20:14:01 UTC (rev 247586)
+++ community-i686/PKGBUILD 2017-08-02 20:14:04 UTC (rev 247587)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Giovanni Scafora <giova...@archlinux.org>
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=1.9
-pkgrel=1
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0')
-source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
-
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
-sha512sums=('1f71173207b948db8d782816d0b4a71cc2447cbc16affdf4d48be850083878aad0772455d89820a913b8339b3aac8a300b024b32100301b1bc1a192319985bdc'
-'SKIP')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
--DENABLE_MAN=ON \
--DENABLE_DOC=ON
-
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: weechat/repos/community-i686/PKGBUILD (from rev 247585, 
weechat/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-08-02 20:14:04 UTC (rev 247587)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Giovanni Scafora <giova...@archlinux.org>
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=1.9
+pkgrel=2
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
+ 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0')
+source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
+sha512sums=('1f71173207b948db8d782816d0b4a71cc2447cbc16affdf4d48be850083878aad0772455d89820a913b8339b3aac8a300b024b32100301b1bc1a192319985bdc'
+'SKIP')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-08-02 20:14:01 UTC (rev 247586)
+++ community-x86_64/PKGBUILD   2017-08-02 20:14:04 UTC (rev 247587)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Giovanni Scafora <giova...@archlinux.org>
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=1.9
-pkgrel=1
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'ascii

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

2017-08-14 Thread Christian Rebischke
Date: Monday, August 14, 2017 @ 19:08:22
  Author: shibumi
Revision: 250437

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

Added:
  strongswan/repos/community-testing-i686/
  strongswan/repos/community-testing-i686/PKGBUILD
(from rev 250436, strongswan/trunk/PKGBUILD)
  strongswan/repos/community-testing-i686/configure_ac.patch
(from rev 250436, strongswan/trunk/configure_ac.patch)
  strongswan/repos/community-testing-x86_64/
  strongswan/repos/community-testing-x86_64/PKGBUILD
(from rev 250436, strongswan/trunk/PKGBUILD)
  strongswan/repos/community-testing-x86_64/configure_ac.patch
(from rev 250436, strongswan/trunk/configure_ac.patch)

-+
 community-testing-i686/PKGBUILD |   91 ++
 community-testing-i686/configure_ac.patch   |   16 
 community-testing-x86_64/PKGBUILD   |   91 ++
 community-testing-x86_64/configure_ac.patch |   16 
 4 files changed, 214 insertions(+)

Copied: strongswan/repos/community-testing-i686/PKGBUILD (from rev 250436, 
strongswan/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-08-14 19:08:22 UTC (rev 250437)
@@ -0,0 +1,91 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: dkorzhevin 
+# Contributor: Thermi 
+# Contributor: nikicat 
+# Contributor: danilo 
+# Contributor: Jason Begley 
+# Contributor: Ray Kohler 
+# Contributor: Daniel Riedemann 
+# Contributor: 458italia 
+# Contributor: Thermi 
+
+pkgname=strongswan
+pkgver=5.6.0
+pkgrel=1
+pkgdesc="open source IPsec implementation"
+url='http://www.strongswan.org'
+license=("GPL2")
+arch=('i686' 'x86_64')
+depends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'pam')
+makedepends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'systemd' 'pam' 'libnm-glib')
+optdepends=('libnm-glib: for networkmanager support')
+backup=(
+etc/ipsec.conf
+etc/ipsec.secrets
+etc/swanctl/swanctl.conf
+etc/strongswan.conf
+
etc/strongswan.d/{charon-logging.conf,charon.conf,pki.conf,pool.conf,scepclient.conf,starter.conf,swanctl.conf}
+
etc/strongswan.d/charon/{aesni.conf,attr-sql.conf,attr.conf,bliss.conf,chapoly.conf,cmac.conf,connmark.conf,\
+constraints.conf,curl.conf,des.conf,dhcp.conf,dnskey.conf,eap-aka-3gpp2.conf,eap-aka.conf,\
+eap-gtc.conf,eap-identity.conf,eap-md5.conf,eap-mschapv2.conf,eap-radius.conf,eap-sim-file.conf,\
+eap-sim.conf,eap-simaka-pseudonym.conf,eap-simaka-reauth.conf,eap-tls.conf,ext-auth.conf,farp.conf,\
+fips-prf.conf,forecast.conf,gmp.conf,ha.conf,hmac.conf,kernel-netlink.conf,md5.conf,mgf1.conf,nonce.conf,newhope.conf,ntru.conf,openssl.conf,\
+pem.conf,pgp.conf,pkcs1.conf,pkcs12.conf,pkcs7.conf,pkcs8.conf,pubkey.conf,random.conf,rc2.conf,resolve.conf,\
+revocation.conf,sha1.conf,sha2.conf,sha3.conf,socket-default.conf,sql.conf,sqlite.conf,sshkey.conf,stroke.conf,updown.conf,\
+vici.conf,x509.conf,xauth-eap.conf,xauth-generic.conf,xcbc.conf,unity.conf,curve25519.conf}
+)
+
+source=("https://download.strongswan.org/strongswan-${pkgver}.tar.bz2;
+"https://download.strongswan.org/strongswan-${pkgver}.tar.bz2.sig;
+'configure_ac.patch'
+)
+
+validpgpkeys=("948F158A4E76A27BF3D07532DF42C170B34DBA77")
+
+sha512sums=('9362069a01c3642e62864d88fdb409a3c7514bf7c92cbe36e552c6a80915119cf5bb91c39592aab2d15b562684a0628a764e4fa7636d3b5fd2ebaf165c0ce649'
+'SKIP'
+
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74')
+
+# We don't build libipsec because it would get loaded before kernel-netlink 
and netkey, which
+# would case processing to be handled in user space. Also, the plugin is 
experimental. If you need it,
+# add --enable-libipsec and --enable-kernel-libipsec
+prepare() {
+cd "${srcdir}/${pkgname}-${pkgver}"
+patch -p1 -l < "${srcdir}/configure_ac.patch"
+autoreconf
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--with-ipsecdir=/usr/lib/strongswan \
+--with-nm-ca-dir=/etc/ssl/certs \
+--enable-integrity-test \
+--enable-sqlite \
+--enable-openssl --enable-curl \
+--enable-sql --enable-attr-sql \
+--enable-farp --enable-dhcp \
+--enable-eap-sim --enable-eap-sim-file --enable-eap-simaka-pseudonym \
+--enable-eap-simaka-reauth --enable-eap-identity --enable-eap-md5 \
+--enable-eap-gtc --enable-eap-aka --enable-eap-aka-3gpp2 \
+--enable-eap-mschapv2 --enable-eap-radius --enable-xauth-eap \
+  

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

2017-08-14 Thread Christian Rebischke
Date: Monday, August 14, 2017 @ 19:07:57
  Author: shibumi
Revision: 250436

upgpkg: strongswan 5.6.0-1

Modified:
  strongswan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-14 18:57:07 UTC (rev 250435)
+++ PKGBUILD2017-08-14 19:07:57 UTC (rev 250436)
@@ -10,8 +10,8 @@
 # Contributor: Thermi 
 
 pkgname=strongswan
-pkgver=5.5.3
-pkgrel=4
+pkgver=5.6.0
+pkgrel=1
 pkgdesc="open source IPsec implementation"
 url='http://www.strongswan.org'
 license=("GPL2")
@@ -38,17 +38,13 @@
 source=("https://download.strongswan.org/strongswan-${pkgver}.tar.bz2;
 "https://download.strongswan.org/strongswan-${pkgver}.tar.bz2.sig;
 'configure_ac.patch'
-
'https://download.strongswan.org/security/CVE-2017-11185/strongswan-4.4.0-5.5.3_gmp_mpz_export.patch'
-
'https://download.strongswan.org/security/CVE-2017-11185/strongswan-4.4.0-5.5.3_gmp_mpz_export.patch.sig'
 )
 
 validpgpkeys=("948F158A4E76A27BF3D07532DF42C170B34DBA77")
 
-sha512sums=('0b0b25d2102c98cda54300dc8c3c3a49a55e64f7c695dda65a24f2194f19bce0b7aab9e4f7486c243b552f9d1a94867d6a8782ee504aad1c9973809706d599ac'
+sha512sums=('9362069a01c3642e62864d88fdb409a3c7514bf7c92cbe36e552c6a80915119cf5bb91c39592aab2d15b562684a0628a764e4fa7636d3b5fd2ebaf165c0ce649'
 'SKIP'
-
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74'
-
'276bcbd0cd3c550ddd4b3f5dfbcb490bb1e50ec8ed97789944409e3c05232903b99332c653cec9c9cf46eab445fd67113d1babef32156b1a5c77a68d2b83260b'
-'SKIP')
+
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74')
 
 # We don't build libipsec because it would get loaded before kernel-netlink 
and netkey, which
 # would case processing to be handled in user space. Also, the plugin is 
experimental. If you need it,
@@ -56,7 +52,6 @@
 prepare() {
 cd "${srcdir}/${pkgname}-${pkgver}"
 patch -p1 -l < "${srcdir}/configure_ac.patch"
-patch -p1 -l < "${srcdir}/strongswan-4.4.0-5.5.3_gmp_mpz_export.patch"
 autoreconf
 }
 


[arch-commits] Commit in strongswan/repos (8 files)

2017-08-14 Thread Christian Rebischke
Date: Monday, August 14, 2017 @ 18:41:19
  Author: shibumi
Revision: 250421

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

Added:
  strongswan/repos/community-i686/PKGBUILD
(from rev 250420, strongswan/trunk/PKGBUILD)
  strongswan/repos/community-i686/configure_ac.patch
(from rev 250420, strongswan/trunk/configure_ac.patch)
  strongswan/repos/community-x86_64/PKGBUILD
(from rev 250420, strongswan/trunk/PKGBUILD)
  strongswan/repos/community-x86_64/configure_ac.patch
(from rev 250420, strongswan/trunk/configure_ac.patch)
Deleted:
  strongswan/repos/community-i686/PKGBUILD
  strongswan/repos/community-i686/configure_ac.patch
  strongswan/repos/community-x86_64/PKGBUILD
  strongswan/repos/community-x86_64/configure_ac.patch

-+
 /PKGBUILD   |  192 ++
 /configure_ac.patch |   32 +
 community-i686/PKGBUILD |   91 
 community-i686/configure_ac.patch   |   16 --
 community-x86_64/PKGBUILD   |   91 
 community-x86_64/configure_ac.patch |   16 --
 6 files changed, 224 insertions(+), 214 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-14 18:40:57 UTC (rev 250420)
+++ community-i686/PKGBUILD 2017-08-14 18:41:19 UTC (rev 250421)
@@ -1,91 +0,0 @@
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: dkorzhevin 
-# Contributor: Thermi 
-# Contributor: nikicat 
-# Contributor: danilo 
-# Contributor: Jason Begley 
-# Contributor: Ray Kohler 
-# Contributor: Daniel Riedemann 
-# Contributor: 458italia 
-# Contributor: Thermi 
-
-pkgname=strongswan
-pkgver=5.5.3
-pkgrel=3
-pkgdesc="open source IPsec implementation"
-url='http://www.strongswan.org'
-license=("GPL2")
-arch=('i686' 'x86_64')
-depends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'pam')
-makedepends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'systemd' 'pam' 'libnm-glib')
-optdepends=('libnm-glib: for networkmanager support')
-backup=(
-etc/ipsec.conf
-etc/ipsec.secrets
-etc/swanctl/swanctl.conf
-etc/strongswan.conf
-
etc/strongswan.d/{charon-logging.conf,charon.conf,pki.conf,pool.conf,scepclient.conf,starter.conf,swanctl.conf}
-
etc/strongswan.d/charon/{aesni.conf,attr-sql.conf,attr.conf,bliss.conf,chapoly.conf,cmac.conf,connmark.conf,\
-constraints.conf,curl.conf,des.conf,dhcp.conf,dnskey.conf,eap-aka-3gpp2.conf,eap-aka.conf,\
-eap-gtc.conf,eap-identity.conf,eap-md5.conf,eap-mschapv2.conf,eap-radius.conf,eap-sim-file.conf,\
-eap-sim.conf,eap-simaka-pseudonym.conf,eap-simaka-reauth.conf,eap-tls.conf,ext-auth.conf,farp.conf,\
-fips-prf.conf,forecast.conf,gmp.conf,ha.conf,hmac.conf,kernel-netlink.conf,md5.conf,mgf1.conf,nonce.conf,newhope.conf,ntru.conf,openssl.conf,\
-pem.conf,pgp.conf,pkcs1.conf,pkcs12.conf,pkcs7.conf,pkcs8.conf,pubkey.conf,random.conf,rc2.conf,resolve.conf,\
-revocation.conf,sha1.conf,sha2.conf,sha3.conf,socket-default.conf,sql.conf,sqlite.conf,sshkey.conf,stroke.conf,updown.conf,\
-vici.conf,x509.conf,xauth-eap.conf,xauth-generic.conf,xcbc.conf,unity.conf,curve25519.conf}
-)
-
-source=("https://download.strongswan.org/strongswan-${pkgver}.tar.bz2;
-"https://download.strongswan.org/strongswan-${pkgver}.tar.bz2.sig;
-'configure_ac.patch'
-)
-
-validpgpkeys=("948F158A4E76A27BF3D07532DF42C170B34DBA77")
-
-sha512sums=('0b0b25d2102c98cda54300dc8c3c3a49a55e64f7c695dda65a24f2194f19bce0b7aab9e4f7486c243b552f9d1a94867d6a8782ee504aad1c9973809706d599ac'
-'SKIP'
-
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74')
-
-# We don't build libipsec because it would get loaded before kernel-netlink 
and netkey, which
-# would case processing to be handled in user space. Also, the plugin is 
experimental. If you need it,
-# add --enable-libipsec and --enable-kernel-libipsec
-prepare() {
-cd "${srcdir}/${pkgname}-${pkgver}"
-patch -p1 -l < "${srcdir}/configure_ac.patch"
-autoreconf
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---with-ipsecdir=/usr/lib/strongswan \
---with-nm-ca-dir=/etc/ssl/certs \
---enable-integrity-test \
---enable-sqlite \
---enable-openssl --enable-curl \
---enable-sql --enable-attr-sql \
---enable-farp --enable-dhcp \
---enable-eap-sim --enable-eap-sim-file --enable-eap-simaka-pseudonym \
---enable-eap-simaka-reauth --enable-eap-identity --enable-eap-md5 \
---enable-eap-gtc --enable-eap-aka --enable-eap-ak

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

2017-08-14 Thread Christian Rebischke
Date: Monday, August 14, 2017 @ 18:40:57
  Author: shibumi
Revision: 250420

upgpkg: strongswan 5.5.3-4 Security update

Modified:
  strongswan/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-14 18:34:28 UTC (rev 250419)
+++ PKGBUILD2017-08-14 18:40:57 UTC (rev 250420)
@@ -11,7 +11,7 @@
 
 pkgname=strongswan
 pkgver=5.5.3
-pkgrel=3
+pkgrel=4
 pkgdesc="open source IPsec implementation"
 url='http://www.strongswan.org'
 license=("GPL2")
@@ -38,6 +38,8 @@
 source=("https://download.strongswan.org/strongswan-${pkgver}.tar.bz2;
 "https://download.strongswan.org/strongswan-${pkgver}.tar.bz2.sig;
 'configure_ac.patch'
+
'https://download.strongswan.org/security/CVE-2017-11185/strongswan-4.4.0-5.5.3_gmp_mpz_export.patch'
+
'https://download.strongswan.org/security/CVE-2017-11185/strongswan-4.4.0-5.5.3_gmp_mpz_export.patch.sig'
 )
 
 validpgpkeys=("948F158A4E76A27BF3D07532DF42C170B34DBA77")
@@ -44,7 +46,9 @@
 
 
sha512sums=('0b0b25d2102c98cda54300dc8c3c3a49a55e64f7c695dda65a24f2194f19bce0b7aab9e4f7486c243b552f9d1a94867d6a8782ee504aad1c9973809706d599ac'
 'SKIP'
-
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74')
+
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74'
+
'276bcbd0cd3c550ddd4b3f5dfbcb490bb1e50ec8ed97789944409e3c05232903b99332c653cec9c9cf46eab445fd67113d1babef32156b1a5c77a68d2b83260b'
+'SKIP')
 
 # We don't build libipsec because it would get loaded before kernel-netlink 
and netkey, which
 # would case processing to be handled in user space. Also, the plugin is 
experimental. If you need it,
@@ -52,6 +56,7 @@
 prepare() {
 cd "${srcdir}/${pkgname}-${pkgver}"
 patch -p1 -l < "${srcdir}/configure_ac.patch"
+patch -p1 -l < "${srcdir}/strongswan-4.4.0-5.5.3_gmp_mpz_export.patch"
 autoreconf
 }
 


[arch-commits] Commit in networkmanager-strongswan/repos (4 files)

2017-07-13 Thread Christian Rebischke
Date: Thursday, July 13, 2017 @ 16:08:12
  Author: shibumi
Revision: 244984

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

Added:
  networkmanager-strongswan/repos/community-i686/
  networkmanager-strongswan/repos/community-i686/PKGBUILD
(from rev 244983, networkmanager-strongswan/trunk/PKGBUILD)
  networkmanager-strongswan/repos/community-x86_64/
  networkmanager-strongswan/repos/community-x86_64/PKGBUILD
(from rev 244983, networkmanager-strongswan/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   37 +
 community-x86_64/PKGBUILD |   37 +
 2 files changed, 74 insertions(+)

Copied: networkmanager-strongswan/repos/community-i686/PKGBUILD (from rev 
244983, networkmanager-strongswan/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-13 16:08:12 UTC (rev 244984)
@@ -0,0 +1,37 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Jan Hicken 
+
+pkgname=networkmanager-strongswan
+_pkgname=NetworkManager-strongswan
+pkgver=1.4.2
+pkgrel=2
+pkgdesc="Strongswan NetworkManager plugin"
+arch=('i686' 'x86_64')
+url="http://wiki.strongswan.org/projects/strongswan/wiki/NetworkManager;
+license=('GPL')
+depends=('networkmanager' 'strongswan>=5.5.1' 'libnm-gtk' 'libsecret')
+makedepends=('intltool')
+source=("https://download.strongswan.org/NetworkManager/$_pkgname-$pkgver.tar.bz2"{,.sig})
+sha512sums=('b62790d9cee12bed24c50762c2624654268244c8a1d5d42f184f78316e651dd8d450096bd9652699686c307d0ffbe8a328a151e3430755cf40a1d1de7a1525e8'
+'SKIP')
+validpgpkeys=('12538F8F689B5F1F15F07BE1765FE26C6B467584') # Tobias Brunner
+
+build() {
+  cd "$_pkgname-$pkgver"
+  ./configure --sysconfdir=/etc --prefix=/usr \
+--libexecdir=/usr/lib/networkmanager \
+--with-charon=/usr/lib/strongswan/charon-nm
+  make
+}
+
+check() {
+  cd "$_pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: networkmanager-strongswan/repos/community-x86_64/PKGBUILD (from rev 
244983, networkmanager-strongswan/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-07-13 16:08:12 UTC (rev 244984)
@@ -0,0 +1,37 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Jan Hicken 
+
+pkgname=networkmanager-strongswan
+_pkgname=NetworkManager-strongswan
+pkgver=1.4.2
+pkgrel=2
+pkgdesc="Strongswan NetworkManager plugin"
+arch=('i686' 'x86_64')
+url="http://wiki.strongswan.org/projects/strongswan/wiki/NetworkManager;
+license=('GPL')
+depends=('networkmanager' 'strongswan>=5.5.1' 'libnm-gtk' 'libsecret')
+makedepends=('intltool')
+source=("https://download.strongswan.org/NetworkManager/$_pkgname-$pkgver.tar.bz2"{,.sig})
+sha512sums=('b62790d9cee12bed24c50762c2624654268244c8a1d5d42f184f78316e651dd8d450096bd9652699686c307d0ffbe8a328a151e3430755cf40a1d1de7a1525e8'
+'SKIP')
+validpgpkeys=('12538F8F689B5F1F15F07BE1765FE26C6B467584') # Tobias Brunner
+
+build() {
+  cd "$_pkgname-$pkgver"
+  ./configure --sysconfdir=/etc --prefix=/usr \
+--libexecdir=/usr/lib/networkmanager \
+--with-charon=/usr/lib/strongswan/charon-nm
+  make
+}
+
+check() {
+  cd "$_pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in (4 files)

2017-07-13 Thread Christian Rebischke
Date: Thursday, July 13, 2017 @ 15:46:42
  Author: shibumi
Revision: 244981

pushed it to community

Added:
  networkmanager-strongswan/
  networkmanager-strongswan/repos/
  networkmanager-strongswan/trunk/
  networkmanager-strongswan/trunk/PKGBUILD

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

Added: networkmanager-strongswan/trunk/PKGBUILD
===
--- networkmanager-strongswan/trunk/PKGBUILD(rev 0)
+++ networkmanager-strongswan/trunk/PKGBUILD2017-07-13 15:46:42 UTC (rev 
244981)
@@ -0,0 +1,37 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Jan Hicken 
+
+pkgname=networkmanager-strongswan
+_pkgname=NetworkManager-strongswan
+pkgver=1.4.2
+pkgrel=2
+pkgdesc="Strongswan NetworkManager plugin"
+arch=('i686' 'x86_64')
+url="http://wiki.strongswan.org/projects/strongswan/wiki/NetworkManager;
+license=('GPL')
+depends=('networkmanager' 'strongswan>=5.5.1' 'libnm-gtk' 'libsecret')
+makedepends=('intltool')
+source=("https://download.strongswan.org/NetworkManager/$_pkgname-$pkgver.tar.bz2"{,.sig})
+sha512sums=('b62790d9cee12bed24c50762c2624654268244c8a1d5d42f184f78316e651dd8d450096bd9652699686c307d0ffbe8a328a151e3430755cf40a1d1de7a1525e8'
+'SKIP')
+validpgpkeys=('12538F8F689B5F1F15F07BE1765FE26C6B467584') # Tobias Brunner
+
+build() {
+  cd "$_pkgname-$pkgver"
+  ./configure --sysconfdir=/etc --prefix=/usr \
+--libexecdir=/usr/lib/networkmanager \
+--with-charon=/usr/lib/strongswan/charon-nm
+  make
+}
+
+check() {
+  cd "$_pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$_pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: networkmanager-strongswan/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in (4 files)

2017-07-16 Thread Christian Rebischke
Date: Sunday, July 16, 2017 @ 18:43:06
  Author: shibumi
Revision: 245405

added packer-io to repositories

Added:
  packer-io/
  packer-io/repos/
  packer-io/trunk/
  packer-io/trunk/PKGBUILD

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

Added: packer-io/trunk/PKGBUILD
===
--- packer-io/trunk/PKGBUILD(rev 0)
+++ packer-io/trunk/PKGBUILD2017-07-16 18:43:06 UTC (rev 245405)
@@ -0,0 +1,93 @@
+# Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+_pkgname=packer
+pkgname=packer-io
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
+arch=('i686' 'x86_64')
+url="https://github.com/hashicorp/packer;
+license=('MPL2')
+makedepends=('git' 'go')
+depends=('glibc')
+go_checkpoint_commit='a8d0786e7fa88adb6b3bcaa341a99af7f9740671'
+go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
+go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'
+osext_commit='ae77be60afb1dcacde03767a8c37337fad28ac14'
+panicwrap_commit='fce601fe55579125e1b3cb0b992287e7290f7b83'
+cli_commit='b481eac70eea3ad671b7c360a013f89bb759b252'
+prefixedio_commit='6e6954073784f7ee67b28f2d22749d6479151ed7'
+go_radix_commit='4239b77079c7b5d1243b7b4736304ce8ddb6f0f2'
+speakeasy_commit='4aabc24848ce5fd31929f7d1e4ea74d3709c14cd'
+go_isatty_commit='fc9e8d8ef48496124e79ae0df75490096eccf6fe'
+source=("git+https://github.com/hashicorp/packer#tag=v${pkgver};
+
"git+https://github.com/hashicorp/go-checkpoint#commit=${go_checkpoint_commit};
+
"git+https://github.com/hashicorp/go-cleanhttp#commit=${go_cleanhttp_commit};
+"git+https://github.com/hashicorp/go-uuid#commit=${go_uuid_commit};
+"git+https://github.com/kardianos/osext#commit=${osext_commit};
+"git+https://github.com/mitchellh/panicwrap#commit=${panicwrap_commit};
+"git+https://github.com/mitchellh/cli#commit=${cli_commit};
+
"git+https://github.com/mitchellh/prefixedio#commit=${prefixedio_commit};
+"git+https://github.com/armon/go-radix#commit=${go_radix_commit};
+"git+https://github.com/bgentry/speakeasy#commit=${speakeasy_commit};
+"git+https://github.com/mattn/go-isatty#commit=${go_isatty_commit};)
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+
+prepare() {
+  export GOPATH="${srcdir}"
+  export PATH="$PATH:$GOPATH/bin"
+  mkdir -p "src/github.com/mitchellh"
+  mkdir -p "src/github.com/hashicorp"
+  mkdir -p "src/github.com/kardianos"
+  mkdir -p "src/github.com/armon"
+  mkdir -p "src/github.com/bgentry"
+  mkdir -p "src/github.com/mattn"
+  mv ${_pkgname} src/github.com/mitchellh
+  mv go-checkpoint src/github.com/hashicorp
+  mv go-cleanhttp src/github.com/hashicorp
+  mv go-uuid src/github.com/hashicorp
+  mv osext src/github.com/kardianos
+  mv panicwrap src/github.com/mitchellh
+  mv cli src/github.com/mitchellh
+  mv prefixedio src/github.com/mitchellh
+  mv go-radix src/github.com/armon
+  mv speakeasy src/github.com/bgentry
+  mv go-isatty src/github.com/mattn
+
+  if [ `uname -m` == 'x86_64' ]; then
+ARCH='amd64'
+  elif [ `uname -m` == 'i686' ]; then
+ARCH='i686'
+  else
+echo "[ERROR] not supported architecture"
+exit 1
+  fi
+  sed -e '/VersionPrerelease = ""/ {N;N;N;d;}' -i 
"${srcdir}/src/github.com/mitchellh/${_pkgname}/Makefile"
+
+}
+build() {
+  cd "src/github.com/mitchellh/${_pkgname}"
+  make dev
+}
+
+check() {
+  cd "src/github.com/mitchellh/${_pkgname}"
+  make test
+}
+
+package() {
+  cd "${srcdir}/bin/"
+  install -Dm755 packer "${pkgdir}/usr/bin/packer-io"
+}
+
+# vim:set et sw=2 ts=2 tw=79:


Property changes on: packer-io/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


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

2017-07-17 Thread Christian Rebischke
Date: Monday, July 17, 2017 @ 17:09:12
  Author: shibumi
Revision: 245507

substituted tag with commit for packer

We don't want tag here because git tags are changeable.
Thanks to anthraxx.

Modified:
  packer-io/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-17 16:44:48 UTC (rev 245506)
+++ PKGBUILD2017-07-17 17:09:12 UTC (rev 245507)
@@ -9,6 +9,7 @@
 license=('MPL')
 makedepends=('git' 'go')
 depends=('glibc')
+_packer_commit='6a8ae4b258d1bb0beece05c9fc3bbc1c186a0480'
 _go_checkpoint_commit='a8d0786e7fa88adb6b3bcaa341a99af7f9740671'
 _go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
 _go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'
@@ -19,7 +20,7 @@
 _go_radix_commit='4239b77079c7b5d1243b7b4736304ce8ddb6f0f2'
 _speakeasy_commit='4aabc24848ce5fd31929f7d1e4ea74d3709c14cd'
 _go_isatty_commit='fc9e8d8ef48496124e79ae0df75490096eccf6fe'
-source=("git+https://github.com/hashicorp/packer#tag=v${pkgver};
+source=("git+https://github.com/hashicorp/packer#commit=${_packer_commit};
 
"git+https://github.com/hashicorp/go-checkpoint#commit=${_go_checkpoint_commit};
 
"git+https://github.com/hashicorp/go-cleanhttp#commit=${_go_cleanhttp_commit};
 "git+https://github.com/hashicorp/go-uuid#commit=${_go_uuid_commit};


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

2017-07-12 Thread Christian Rebischke
Date: Wednesday, July 12, 2017 @ 16:55:38
  Author: shibumi
Revision: 244814

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

Added:
  strongswan/repos/community-i686/
  strongswan/repos/community-i686/PKGBUILD
(from rev 244813, strongswan/trunk/PKGBUILD)
  strongswan/repos/community-i686/configure_ac.patch
(from rev 244813, strongswan/trunk/configure_ac.patch)
  strongswan/repos/community-x86_64/
  strongswan/repos/community-x86_64/PKGBUILD
(from rev 244813, strongswan/trunk/PKGBUILD)
  strongswan/repos/community-x86_64/configure_ac.patch
(from rev 244813, strongswan/trunk/configure_ac.patch)

-+
 community-i686/PKGBUILD |   94 ++
 community-i686/configure_ac.patch   |   16 +
 community-x86_64/PKGBUILD   |   94 ++
 community-x86_64/configure_ac.patch |   16 +
 4 files changed, 220 insertions(+)

Copied: strongswan/repos/community-i686/PKGBUILD (from rev 244813, 
strongswan/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-12 16:55:38 UTC (rev 244814)
@@ -0,0 +1,94 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: dkorzhevin 
+# Contributor: Thermi 
+# Contributor: nikicat 
+# Contributor: danilo 
+# Contributor: Jason Begley 
+# Contributor: Ray Kohler 
+# Contributor: Daniel Riedemann 
+# Contributor: 458italia 
+# Contributor: Thermi 
+
+pkgname=strongswan
+pkgver=5.5.3
+pkgrel=2
+pkgdesc="open source IPsec implementation"
+url='http://www.strongswan.org'
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'pam')
+makedepends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'systemd' 'pam' 'libnm-glib')
+optdepends=('libnm-glib: for networkmanager support')
+conflicts=('openswan')
+options=(!libtool !strip)
+backup=(
+etc/ipsec.conf
+etc/ipsec.secrets
+etc/swanctl/swanctl.conf
+etc/strongswan.conf
+
etc/strongswan.d/{charon-logging.conf,charon.conf,pki.conf,pool.conf,scepclient.conf,starter.conf,swanctl.conf}
+
etc/strongswan.d/charon/{aesni.conf,attr-sql.conf,attr.conf,bliss.conf,chapoly.conf,cmac.conf,connmark.conf,\
+constraints.conf,curl.conf,des.conf,dhcp.conf,dnskey.conf,eap-aka-3gpp2.conf,eap-aka.conf,\
+eap-gtc.conf,eap-identity.conf,eap-md5.conf,eap-mschapv2.conf,eap-radius.conf,eap-sim-file.conf,\
+eap-sim.conf,eap-simaka-pseudonym.conf,eap-simaka-reauth.conf,eap-tls.conf,ext-auth.conf,farp.conf,\
+fips-prf.conf,forecast.conf,gmp.conf,ha.conf,hmac.conf,kernel-netlink.conf,md5.conf,mgf1.conf,nonce.conf,newhope.conf,ntru.conf,openssl.conf,\
+pem.conf,pgp.conf,pkcs1.conf,pkcs12.conf,pkcs7.conf,pkcs8.conf,pubkey.conf,random.conf,rc2.conf,resolve.conf,\
+revocation.conf,sha1.conf,sha2.conf,sha3.conf,socket-default.conf,sql.conf,sqlite.conf,sshkey.conf,stroke.conf,updown.conf,\
+vici.conf,x509.conf,xauth-eap.conf,xauth-generic.conf,xcbc.conf,unity.conf,curve25519.conf}
+)
+
+source=("https://download.strongswan.org/strongswan-${pkgver}.tar.bz2;
+"https://download.strongswan.org/strongswan-${pkgver}.tar.bz2.sig;
+"configure_ac.patch"
+)
+
+validpgpkeys=("948F158A4E76A27BF3D07532DF42C170B34DBA77")
+
+sha512sums=('0b0b25d2102c98cda54300dc8c3c3a49a55e64f7c695dda65a24f2194f19bce0b7aab9e4f7486c243b552f9d1a94867d6a8782ee504aad1c9973809706d599ac'
+'SKIP'
+
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74')
+
+# We don't build libipsec because it would get loaded before kernel-netlink 
and netkey, which
+# would case processing to be handled in user space. Also, the plugin is 
experimental. If you need it,
+# add --enable-libipsec and --enable-kernel-libipsec
+prepare()
+{
+cd "${srcdir}/${pkgname}-${pkgver}"
+patch -p1 -l < "${srcdir}/configure_ac.patch"
+autoreconf
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--with-ipsecdir=/usr/lib/strongswan \
+--with-nm-ca-dir=/etc/ssl/certs \
+--enable-integrity-test \
+--enable-sqlite \
+--enable-openssl --enable-curl \
+--enable-sql --enable-attr-sql \
+--enable-farp --enable-dhcp \
+--enable-eap-sim --enable-eap-sim-file --enable-eap-simaka-pseudonym \
+--enable-eap-simaka-reauth --enable-eap-identity --enable-eap-md5 \
+--enable-eap-gtc --enable-eap-aka --enable-eap-aka-3gpp2 \
+--enable-eap-mschapv2 --enable-eap-radius --enable-xauth-eap \
+--enable-ha --enable-vici --enable-swanctl -

[arch-commits] Commit in (5 files)

2017-07-12 Thread Christian Rebischke
Date: Wednesday, July 12, 2017 @ 16:46:56
  Author: shibumi
Revision: 244813

preparations for new package strongswan

Added:
  strongswan/
  strongswan/repos/
  strongswan/trunk/
  strongswan/trunk/PKGBUILD
  strongswan/trunk/configure_ac.patch

+
 PKGBUILD   |   94 +++
 configure_ac.patch |   16 
 2 files changed, 110 insertions(+)

Added: strongswan/trunk/PKGBUILD
===
--- strongswan/trunk/PKGBUILD   (rev 0)
+++ strongswan/trunk/PKGBUILD   2017-07-12 16:46:56 UTC (rev 244813)
@@ -0,0 +1,94 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: dkorzhevin 
+# Contributor: Thermi 
+# Contributor: nikicat 
+# Contributor: danilo 
+# Contributor: Jason Begley 
+# Contributor: Ray Kohler 
+# Contributor: Daniel Riedemann 
+# Contributor: 458italia 
+# Contributor: Thermi 
+
+pkgname=strongswan
+pkgver=5.5.3
+pkgrel=2
+pkgdesc="open source IPsec implementation"
+url='http://www.strongswan.org'
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'pam')
+makedepends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'systemd' 'pam' 'libnm-glib')
+optdepends=('libnm-glib: for networkmanager support')
+conflicts=('openswan')
+options=(!libtool !strip)
+backup=(
+etc/ipsec.conf
+etc/ipsec.secrets
+etc/swanctl/swanctl.conf
+etc/strongswan.conf
+
etc/strongswan.d/{charon-logging.conf,charon.conf,pki.conf,pool.conf,scepclient.conf,starter.conf,swanctl.conf}
+
etc/strongswan.d/charon/{aesni.conf,attr-sql.conf,attr.conf,bliss.conf,chapoly.conf,cmac.conf,connmark.conf,\
+constraints.conf,curl.conf,des.conf,dhcp.conf,dnskey.conf,eap-aka-3gpp2.conf,eap-aka.conf,\
+eap-gtc.conf,eap-identity.conf,eap-md5.conf,eap-mschapv2.conf,eap-radius.conf,eap-sim-file.conf,\
+eap-sim.conf,eap-simaka-pseudonym.conf,eap-simaka-reauth.conf,eap-tls.conf,ext-auth.conf,farp.conf,\
+fips-prf.conf,forecast.conf,gmp.conf,ha.conf,hmac.conf,kernel-netlink.conf,md5.conf,mgf1.conf,nonce.conf,newhope.conf,ntru.conf,openssl.conf,\
+pem.conf,pgp.conf,pkcs1.conf,pkcs12.conf,pkcs7.conf,pkcs8.conf,pubkey.conf,random.conf,rc2.conf,resolve.conf,\
+revocation.conf,sha1.conf,sha2.conf,sha3.conf,socket-default.conf,sql.conf,sqlite.conf,sshkey.conf,stroke.conf,updown.conf,\
+vici.conf,x509.conf,xauth-eap.conf,xauth-generic.conf,xcbc.conf,unity.conf,curve25519.conf}
+)
+
+source=("https://download.strongswan.org/strongswan-${pkgver}.tar.bz2;
+"https://download.strongswan.org/strongswan-${pkgver}.tar.bz2.sig;
+"configure_ac.patch"
+)
+
+validpgpkeys=("948F158A4E76A27BF3D07532DF42C170B34DBA77")
+
+sha512sums=('0b0b25d2102c98cda54300dc8c3c3a49a55e64f7c695dda65a24f2194f19bce0b7aab9e4f7486c243b552f9d1a94867d6a8782ee504aad1c9973809706d599ac'
+'SKIP'
+
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74')
+
+# We don't build libipsec because it would get loaded before kernel-netlink 
and netkey, which
+# would case processing to be handled in user space. Also, the plugin is 
experimental. If you need it,
+# add --enable-libipsec and --enable-kernel-libipsec
+prepare()
+{
+cd "${srcdir}/${pkgname}-${pkgver}"
+patch -p1 -l < "${srcdir}/configure_ac.patch"
+autoreconf
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--with-ipsecdir=/usr/lib/strongswan \
+--with-nm-ca-dir=/etc/ssl/certs \
+--enable-integrity-test \
+--enable-sqlite \
+--enable-openssl --enable-curl \
+--enable-sql --enable-attr-sql \
+--enable-farp --enable-dhcp \
+--enable-eap-sim --enable-eap-sim-file --enable-eap-simaka-pseudonym \
+--enable-eap-simaka-reauth --enable-eap-identity --enable-eap-md5 \
+--enable-eap-gtc --enable-eap-aka --enable-eap-aka-3gpp2 \
+--enable-eap-mschapv2 --enable-eap-radius --enable-xauth-eap \
+--enable-ha --enable-vici --enable-swanctl --enable-systemd 
--enable-ext-auth \
+--disable-mysql --disable-ldap --enable-cmd --enable-forecast 
--enable-connmark \
+--enable-aesni --enable-eap-ttls --enable-radattr --enable-xauth-pam 
--enable-xauth-noauth \
+--enable-eap-dynamic --enable-eap-peap --enable-eap-tls 
--enable-chapoly --enable-unity \
+--with-capabilities=libcap --enable-newhope --enable-ntru 
--enable-mgf1 --enable-sha3 \
+--enable-bliss --enable-dnscert \
+--enable-nm
+#   --enable-ruby-gems --enable-python-eggs
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pk

[arch-commits] Commit in strongswan/repos (8 files)

2017-07-14 Thread Christian Rebischke
Date: Friday, July 14, 2017 @ 20:28:48
  Author: shibumi
Revision: 245125

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

Added:
  strongswan/repos/community-i686/PKGBUILD
(from rev 245124, strongswan/trunk/PKGBUILD)
  strongswan/repos/community-i686/configure_ac.patch
(from rev 245124, strongswan/trunk/configure_ac.patch)
  strongswan/repos/community-x86_64/PKGBUILD
(from rev 245124, strongswan/trunk/PKGBUILD)
  strongswan/repos/community-x86_64/configure_ac.patch
(from rev 245124, strongswan/trunk/configure_ac.patch)
Deleted:
  strongswan/repos/community-i686/PKGBUILD
  strongswan/repos/community-i686/configure_ac.patch
  strongswan/repos/community-x86_64/PKGBUILD
  strongswan/repos/community-x86_64/configure_ac.patch

-+
 /PKGBUILD   |  182 ++
 /configure_ac.patch |   32 +
 community-i686/PKGBUILD |   94 -
 community-i686/configure_ac.patch   |   16 --
 community-x86_64/PKGBUILD   |   94 -
 community-x86_64/configure_ac.patch |   16 --
 6 files changed, 214 insertions(+), 220 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-14 20:28:37 UTC (rev 245124)
+++ community-i686/PKGBUILD 2017-07-14 20:28:48 UTC (rev 245125)
@@ -1,94 +0,0 @@
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: dkorzhevin 
-# Contributor: Thermi 
-# Contributor: nikicat 
-# Contributor: danilo 
-# Contributor: Jason Begley 
-# Contributor: Ray Kohler 
-# Contributor: Daniel Riedemann 
-# Contributor: 458italia 
-# Contributor: Thermi 
-
-pkgname=strongswan
-pkgver=5.5.3
-pkgrel=2
-pkgdesc="open source IPsec implementation"
-url='http://www.strongswan.org'
-license=("GPL")
-arch=('i686' 'x86_64')
-depends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'pam')
-makedepends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'systemd' 'pam' 'libnm-glib')
-optdepends=('libnm-glib: for networkmanager support')
-conflicts=('openswan')
-options=(!libtool !strip)
-backup=(
-etc/ipsec.conf
-etc/ipsec.secrets
-etc/swanctl/swanctl.conf
-etc/strongswan.conf
-
etc/strongswan.d/{charon-logging.conf,charon.conf,pki.conf,pool.conf,scepclient.conf,starter.conf,swanctl.conf}
-
etc/strongswan.d/charon/{aesni.conf,attr-sql.conf,attr.conf,bliss.conf,chapoly.conf,cmac.conf,connmark.conf,\
-constraints.conf,curl.conf,des.conf,dhcp.conf,dnskey.conf,eap-aka-3gpp2.conf,eap-aka.conf,\
-eap-gtc.conf,eap-identity.conf,eap-md5.conf,eap-mschapv2.conf,eap-radius.conf,eap-sim-file.conf,\
-eap-sim.conf,eap-simaka-pseudonym.conf,eap-simaka-reauth.conf,eap-tls.conf,ext-auth.conf,farp.conf,\
-fips-prf.conf,forecast.conf,gmp.conf,ha.conf,hmac.conf,kernel-netlink.conf,md5.conf,mgf1.conf,nonce.conf,newhope.conf,ntru.conf,openssl.conf,\
-pem.conf,pgp.conf,pkcs1.conf,pkcs12.conf,pkcs7.conf,pkcs8.conf,pubkey.conf,random.conf,rc2.conf,resolve.conf,\
-revocation.conf,sha1.conf,sha2.conf,sha3.conf,socket-default.conf,sql.conf,sqlite.conf,sshkey.conf,stroke.conf,updown.conf,\
-vici.conf,x509.conf,xauth-eap.conf,xauth-generic.conf,xcbc.conf,unity.conf,curve25519.conf}
-)
-
-source=("https://download.strongswan.org/strongswan-${pkgver}.tar.bz2;
-"https://download.strongswan.org/strongswan-${pkgver}.tar.bz2.sig;
-"configure_ac.patch"
-)
-
-validpgpkeys=("948F158A4E76A27BF3D07532DF42C170B34DBA77")
-
-sha512sums=('0b0b25d2102c98cda54300dc8c3c3a49a55e64f7c695dda65a24f2194f19bce0b7aab9e4f7486c243b552f9d1a94867d6a8782ee504aad1c9973809706d599ac'
-'SKIP'
-
'0e2c818f2f620410dda949d9016a4c1a686bf2946acb3b42a729b2376c077f4dad6762fe8d2f736c213c4895c1fbd60c0d654a1c36f72d06f58ba7cff635bc74')
-
-# We don't build libipsec because it would get loaded before kernel-netlink 
and netkey, which
-# would case processing to be handled in user space. Also, the plugin is 
experimental. If you need it,
-# add --enable-libipsec and --enable-kernel-libipsec
-prepare()
-{
-cd "${srcdir}/${pkgname}-${pkgver}"
-patch -p1 -l < "${srcdir}/configure_ac.patch"
-autoreconf
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---with-ipsecdir=/usr/lib/strongswan \
---with-nm-ca-dir=/etc/ssl/certs \
---enable-integrity-test \
---enable-sqlite \
---enable-openssl --enable-curl \
---enable-sql --enable-attr-sql \
---enable-farp --enable-dhcp \
---enable-eap-sim --enable-eap-sim-file --enable-eap-simaka-pseudonym \
---enable-eap-simaka-reauth --enable-eap-identity --enable-eap-md5 \
-

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

2017-07-14 Thread Christian Rebischke
Date: Friday, July 14, 2017 @ 20:28:37
  Author: shibumi
Revision: 245124

upgpkg: strongswan 5.5.3-3 --enabled-agent + minor PKGBUILD fixes

Modified:
  strongswan/trunk/PKGBUILD

--+
 PKGBUILD |   15 ++-
 1 file changed, 6 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-14 20:23:54 UTC (rev 245123)
+++ PKGBUILD2017-07-14 20:28:37 UTC (rev 245124)
@@ -11,16 +11,14 @@
 
 pkgname=strongswan
 pkgver=5.5.3
-pkgrel=2
+pkgrel=3
 pkgdesc="open source IPsec implementation"
 url='http://www.strongswan.org'
-license=("GPL")
+license=("GPL2")
 arch=('i686' 'x86_64')
 depends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'pam')
 makedepends=('curl' 'gmp' 'iproute2' 'openssl' 'sqlite' 'libcap' 'libsystemd' 
'systemd' 'pam' 'libnm-glib')
 optdepends=('libnm-glib: for networkmanager support')
-conflicts=('openswan')
-options=(!libtool !strip)
 backup=(
 etc/ipsec.conf
 etc/ipsec.secrets
@@ -39,7 +37,7 @@
 
 source=("https://download.strongswan.org/strongswan-${pkgver}.tar.bz2;
 "https://download.strongswan.org/strongswan-${pkgver}.tar.bz2.sig;
-"configure_ac.patch"
+'configure_ac.patch'
 )
 
 validpgpkeys=("948F158A4E76A27BF3D07532DF42C170B34DBA77")
@@ -51,8 +49,7 @@
 # We don't build libipsec because it would get loaded before kernel-netlink 
and netkey, which
 # would case processing to be handled in user space. Also, the plugin is 
experimental. If you need it,
 # add --enable-libipsec and --enable-kernel-libipsec
-prepare()
-{
+prepare() {
 cd "${srcdir}/${pkgname}-${pkgver}"
 patch -p1 -l < "${srcdir}/configure_ac.patch"
 autoreconf
@@ -82,7 +79,7 @@
 --enable-eap-dynamic --enable-eap-peap --enable-eap-tls 
--enable-chapoly --enable-unity \
 --with-capabilities=libcap --enable-newhope --enable-ntru 
--enable-mgf1 --enable-sha3 \
 --enable-bliss --enable-dnscert \
---enable-nm
+--enable-nm --enable-agent
 #   --enable-ruby-gems --enable-python-eggs
   make
 }
@@ -89,6 +86,6 @@
 
 package() {
   cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR=${pkgdir} install
+  make DESTDIR="${pkgdir}" install
 }
 


[arch-commits] Commit in gflags/repos (4 files)

2017-07-10 Thread Christian Rebischke
Date: Monday, July 10, 2017 @ 13:07:38
  Author: shibumi
Revision: 243621

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

Added:
  gflags/repos/community-testing-i686/
  gflags/repos/community-testing-i686/PKGBUILD
(from rev 243619, gflags/trunk/PKGBUILD)
  gflags/repos/community-testing-x86_64/
  gflags/repos/community-testing-x86_64/PKGBUILD
(from rev 243620, gflags/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   42 
 community-testing-x86_64/PKGBUILD |   42 
 2 files changed, 84 insertions(+)

Copied: gflags/repos/community-testing-i686/PKGBUILD (from rev 243619, 
gflags/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-07-10 13:07:38 UTC (rev 243621)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Anatol Pomozov 
+# Contributor: RunningDroid 
+# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
+
+pkgname=gflags
+pkgver=2.2.0
+pkgrel=4
+pkgdesc='C++ Library for commandline flag processing'
+arch=('i686' 'x86_64')
+url='https://github.com/schuhschuh/gflags'
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake')
+options=('staticlibs')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
+sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
+
+build() {
+  cd "gflags-${pkgver}"
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DREGISTER_INSTALL_PREFIX=OFF \
+-DBUILD_SHARED_LIBS=ON \
+-DBUILD_STATIC_LIBS=ON \
+-DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd "gflags-${pkgver}"
+  make test
+}
+
+package() {
+  cd "gflags-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING.txt
+}

Copied: gflags/repos/community-testing-x86_64/PKGBUILD (from rev 243620, 
gflags/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-07-10 13:07:38 UTC (rev 243621)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Anatol Pomozov 
+# Contributor: RunningDroid 
+# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
+
+pkgname=gflags
+pkgver=2.2.0
+pkgrel=4
+pkgdesc='C++ Library for commandline flag processing'
+arch=('i686' 'x86_64')
+url='https://github.com/schuhschuh/gflags'
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake')
+options=('staticlibs')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
+sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
+
+build() {
+  cd "gflags-${pkgver}"
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DREGISTER_INSTALL_PREFIX=OFF \
+-DBUILD_SHARED_LIBS=ON \
+-DBUILD_STATIC_LIBS=ON \
+-DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd "gflags-${pkgver}"
+  make test
+}
+
+package() {
+  cd "gflags-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING.txt
+}


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

2017-07-10 Thread Christian Rebischke
Date: Monday, July 10, 2017 @ 13:06:42
  Author: shibumi
Revision: 243619

upgpkg: gflags 2.2.0-4 rebuild for PIE

Modified:
  gflags/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-10 13:06:01 UTC (rev 243618)
+++ PKGBUILD2017-07-10 13:06:42 UTC (rev 243619)
@@ -7,7 +7,7 @@
 
 pkgname=gflags
 pkgver=2.2.0
-pkgrel=3
+pkgrel=4
 pkgdesc='C++ Library for commandline flag processing'
 arch=('i686' 'x86_64')
 url='https://github.com/schuhschuh/gflags'


[arch-commits] Commit in gflags/repos (4 files)

2017-07-10 Thread Christian Rebischke
Date: Monday, July 10, 2017 @ 13:20:43
  Author: shibumi
Revision: 243630

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

Added:
  gflags/repos/community-testing-i686/PKGBUILD
(from rev 243629, gflags/trunk/PKGBUILD)
  gflags/repos/community-testing-x86_64/PKGBUILD
(from rev 243629, gflags/trunk/PKGBUILD)
Deleted:
  gflags/repos/community-testing-i686/PKGBUILD
  gflags/repos/community-testing-x86_64/PKGBUILD

---+
 /PKGBUILD |   84 
 community-testing-i686/PKGBUILD   |   42 --
 community-testing-x86_64/PKGBUILD |   42 --
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-07-10 13:19:08 UTC (rev 243629)
+++ community-testing-i686/PKGBUILD 2017-07-10 13:20:43 UTC (rev 243630)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Contributor: Anatol Pomozov 
-# Contributor: RunningDroid 
-# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
-
-pkgname=gflags
-pkgver=2.2.0
-pkgrel=4
-pkgdesc='C++ Library for commandline flag processing'
-arch=('i686' 'x86_64')
-url='https://github.com/schuhschuh/gflags'
-license=('BSD')
-depends=('gcc-libs')
-makedepends=('cmake')
-options=('staticlibs')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
-sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
-
-build() {
-  cd "gflags-${pkgver}"
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DREGISTER_INSTALL_PREFIX=OFF \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_STATIC_LIBS=ON \
--DBUILD_TESTING=ON
-  make
-}
-
-check() {
-  cd "gflags-${pkgver}"
-  make test
-}
-
-package() {
-  cd "gflags-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 COPYING.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING.txt
-}

Copied: gflags/repos/community-testing-i686/PKGBUILD (from rev 243629, 
gflags/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-07-10 13:20:43 UTC (rev 243630)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Anatol Pomozov 
+# Contributor: RunningDroid 
+# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
+
+pkgname=gflags
+pkgver=2.2.0
+pkgrel=4
+pkgdesc='C++ Library for commandline flag processing'
+arch=('i686' 'x86_64')
+url='https://github.com/schuhschuh/gflags'
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake')
+options=('staticlibs')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
+sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
+
+build() {
+  cd "gflags-${pkgver}"
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DREGISTER_INSTALL_PREFIX=OFF \
+-DBUILD_SHARED_LIBS=ON \
+-DBUILD_STATIC_LIBS=ON \
+-DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd "gflags-${pkgver}"
+  make test
+}
+
+package() {
+  cd "gflags-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING.txt
+}

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2017-07-10 13:19:08 UTC (rev 243629)
+++ community-testing-x86_64/PKGBUILD   2017-07-10 13:20:43 UTC (rev 243630)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Contributor: Anatol Pomozov 
-# Contributor: RunningDroid 
-# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
-
-pkgname=gflags
-pkgver=2.2.0
-pkgrel=4
-pkgdesc='C++ Library for commandline flag processing'
-arch=('i686' 'x86_64')
-url='https://github.com/schuhschuh/gflags'
-license=('BSD')
-depends=('gcc-libs')
-makedepends=('cmake')
-options=('staticlibs')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
-sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196e

[arch-commits] Commit in gflags/repos (4 files)

2017-07-10 Thread Christian Rebischke
Date: Monday, July 10, 2017 @ 13:22:45
  Author: shibumi
Revision: 243632

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

Added:
  gflags/repos/community-testing-i686/PKGBUILD
(from rev 243631, gflags/trunk/PKGBUILD)
  gflags/repos/community-testing-x86_64/PKGBUILD
(from rev 243631, gflags/trunk/PKGBUILD)
Deleted:
  gflags/repos/community-testing-i686/PKGBUILD
  gflags/repos/community-testing-x86_64/PKGBUILD

---+
 /PKGBUILD |   84 
 community-testing-i686/PKGBUILD   |   42 --
 community-testing-x86_64/PKGBUILD |   42 --
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-07-10 13:21:56 UTC (rev 243631)
+++ community-testing-i686/PKGBUILD 2017-07-10 13:22:45 UTC (rev 243632)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Contributor: Anatol Pomozov 
-# Contributor: RunningDroid 
-# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
-
-pkgname=gflags
-pkgver=2.2.0
-pkgrel=4
-pkgdesc='C++ Library for commandline flag processing'
-arch=('i686' 'x86_64')
-url='https://github.com/schuhschuh/gflags'
-license=('BSD')
-depends=('gcc-libs')
-makedepends=('cmake')
-options=('staticlibs')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
-sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
-
-build() {
-  cd "gflags-${pkgver}"
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DREGISTER_INSTALL_PREFIX=OFF \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_STATIC_LIBS=ON \
--DBUILD_TESTING=ON
-  make
-}
-
-check() {
-  cd "gflags-${pkgver}"
-  make test
-}
-
-package() {
-  cd "gflags-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 COPYING.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING.txt
-}

Copied: gflags/repos/community-testing-i686/PKGBUILD (from rev 243631, 
gflags/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-07-10 13:22:45 UTC (rev 243632)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Anatol Pomozov 
+# Contributor: RunningDroid 
+# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
+
+pkgname=gflags
+pkgver=2.2.0
+pkgrel=4
+pkgdesc='C++ Library for commandline flag processing'
+arch=('i686' 'x86_64')
+url='https://github.com/schuhschuh/gflags'
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake')
+options=('staticlibs')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
+sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
+
+build() {
+  cd "gflags-${pkgver}"
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DREGISTER_INSTALL_PREFIX=OFF \
+-DBUILD_SHARED_LIBS=ON \
+-DBUILD_STATIC_LIBS=ON \
+-DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd "gflags-${pkgver}"
+  make test
+}
+
+package() {
+  cd "gflags-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING.txt
+}

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2017-07-10 13:21:56 UTC (rev 243631)
+++ community-testing-x86_64/PKGBUILD   2017-07-10 13:22:45 UTC (rev 243632)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Contributor: Anatol Pomozov 
-# Contributor: RunningDroid 
-# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
-
-pkgname=gflags
-pkgver=2.2.0
-pkgrel=4
-pkgdesc='C++ Library for commandline flag processing'
-arch=('i686' 'x86_64')
-url='https://github.com/schuhschuh/gflags'
-license=('BSD')
-depends=('gcc-libs')
-makedepends=('cmake')
-options=('staticlibs')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
-sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196e

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

2017-07-10 Thread Christian Rebischke
Date: Monday, July 10, 2017 @ 13:23:33
  Author: shibumi
Revision: 243635

db-move: moved gflags from [community-testing] to [community] (i686, x86_64)

Added:
  gflags/repos/community-i686/PKGBUILD
(from rev 243634, gflags/repos/community-testing-i686/PKGBUILD)
  gflags/repos/community-x86_64/PKGBUILD
(from rev 243634, gflags/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  gflags/repos/community-i686/PKGBUILD
  gflags/repos/community-testing-i686/
  gflags/repos/community-testing-x86_64/
  gflags/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   84 
 community-i686/PKGBUILD   |   42 --
 community-x86_64/PKGBUILD |   42 --
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-10 13:23:19 UTC (rev 243634)
+++ community-i686/PKGBUILD 2017-07-10 13:23:33 UTC (rev 243635)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Contributor: Anatol Pomozov 
-# Contributor: RunningDroid 
-# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
-
-pkgname=gflags
-pkgver=2.2.0
-pkgrel=3
-pkgdesc='C++ Library for commandline flag processing'
-arch=('i686' 'x86_64')
-url='https://github.com/schuhschuh/gflags'
-license=('BSD')
-depends=('gcc-libs')
-makedepends=('cmake')
-options=('staticlibs')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
-sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
-
-build() {
-  cd "gflags-${pkgver}"
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DREGISTER_INSTALL_PREFIX=OFF \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_STATIC_LIBS=ON \
--DBUILD_TESTING=ON
-  make
-}
-
-check() {
-  cd "gflags-${pkgver}"
-  make test
-}
-
-package() {
-  cd "gflags-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 COPYING.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING.txt
-}

Copied: gflags/repos/community-i686/PKGBUILD (from rev 243634, 
gflags/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-10 13:23:33 UTC (rev 243635)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Anatol Pomozov 
+# Contributor: RunningDroid 
+# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
+
+pkgname=gflags
+pkgver=2.2.0
+pkgrel=4
+pkgdesc='C++ Library for commandline flag processing'
+arch=('i686' 'x86_64')
+url='https://github.com/schuhschuh/gflags'
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake')
+options=('staticlibs')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
+sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
+
+build() {
+  cd "gflags-${pkgver}"
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DREGISTER_INSTALL_PREFIX=OFF \
+-DBUILD_SHARED_LIBS=ON \
+-DBUILD_STATIC_LIBS=ON \
+-DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd "gflags-${pkgver}"
+  make test
+}
+
+package() {
+  cd "gflags-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING.txt
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-10 13:23:19 UTC (rev 243634)
+++ community-x86_64/PKGBUILD   2017-07-10 13:23:33 UTC (rev 243635)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Contributor: Anatol Pomozov 
-# Contributor: RunningDroid 
-# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
-
-pkgname=gflags
-pkgver=2.2.0
-pkgrel=3
-pkgdesc='C++ Library for commandline flag processing'
-arch=('i686' 'x86_64')
-url='https://github.com/schuhschuh/gflags'
-license=('BSD')
-depends=('gcc-libs')
-makedepends=('cmake')
-options=('staticlibs')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
-sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f519

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

2017-07-16 Thread Christian Rebischke
Date: Sunday, July 16, 2017 @ 19:56:27
  Author: shibumi
Revision: 245415

upgpkg: packer-io 1.0.2-2

Modified:
  packer-io/trunk/PKGBUILD

--+
 PKGBUILD |   64 +
 1 file changed, 27 insertions(+), 37 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-16 19:40:31 UTC (rev 245414)
+++ PKGBUILD2017-07-16 19:56:27 UTC (rev 245415)
@@ -1,35 +1,35 @@
 # Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
 _pkgname=packer
 pkgname=packer-io
-pkgver=1.0.0
-pkgrel=1
+pkgver=1.0.2
+pkgrel=2
 pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
 arch=('i686' 'x86_64')
 url="https://github.com/hashicorp/packer;
-license=('MPL2')
+license=('MPL')
 makedepends=('git' 'go')
 depends=('glibc')
-go_checkpoint_commit='a8d0786e7fa88adb6b3bcaa341a99af7f9740671'
-go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
-go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'
-osext_commit='ae77be60afb1dcacde03767a8c37337fad28ac14'
-panicwrap_commit='fce601fe55579125e1b3cb0b992287e7290f7b83'
-cli_commit='b481eac70eea3ad671b7c360a013f89bb759b252'
-prefixedio_commit='6e6954073784f7ee67b28f2d22749d6479151ed7'
-go_radix_commit='4239b77079c7b5d1243b7b4736304ce8ddb6f0f2'
-speakeasy_commit='4aabc24848ce5fd31929f7d1e4ea74d3709c14cd'
-go_isatty_commit='fc9e8d8ef48496124e79ae0df75490096eccf6fe'
+_go_checkpoint_commit='a8d0786e7fa88adb6b3bcaa341a99af7f9740671'
+_go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
+_go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'
+_osext_commit='ae77be60afb1dcacde03767a8c37337fad28ac14'
+_panicwrap_commit='fce601fe55579125e1b3cb0b992287e7290f7b83'
+_cli_commit='b481eac70eea3ad671b7c360a013f89bb759b252'
+_prefixedio_commit='6e6954073784f7ee67b28f2d22749d6479151ed7'
+_go_radix_commit='4239b77079c7b5d1243b7b4736304ce8ddb6f0f2'
+_speakeasy_commit='4aabc24848ce5fd31929f7d1e4ea74d3709c14cd'
+_go_isatty_commit='fc9e8d8ef48496124e79ae0df75490096eccf6fe'
 source=("git+https://github.com/hashicorp/packer#tag=v${pkgver};
-
"git+https://github.com/hashicorp/go-checkpoint#commit=${go_checkpoint_commit};
-
"git+https://github.com/hashicorp/go-cleanhttp#commit=${go_cleanhttp_commit};
-"git+https://github.com/hashicorp/go-uuid#commit=${go_uuid_commit};
-"git+https://github.com/kardianos/osext#commit=${osext_commit};
-"git+https://github.com/mitchellh/panicwrap#commit=${panicwrap_commit};
-"git+https://github.com/mitchellh/cli#commit=${cli_commit};
-
"git+https://github.com/mitchellh/prefixedio#commit=${prefixedio_commit};
-"git+https://github.com/armon/go-radix#commit=${go_radix_commit};
-"git+https://github.com/bgentry/speakeasy#commit=${speakeasy_commit};
-"git+https://github.com/mattn/go-isatty#commit=${go_isatty_commit};)
+
"git+https://github.com/hashicorp/go-checkpoint#commit=${_go_checkpoint_commit};
+
"git+https://github.com/hashicorp/go-cleanhttp#commit=${_go_cleanhttp_commit};
+"git+https://github.com/hashicorp/go-uuid#commit=${_go_uuid_commit};
+"git+https://github.com/kardianos/osext#commit=${_osext_commit};
+
"git+https://github.com/mitchellh/panicwrap#commit=${_panicwrap_commit};
+"git+https://github.com/mitchellh/cli#commit=${_cli_commit};
+
"git+https://github.com/mitchellh/prefixedio#commit=${_prefixedio_commit};
+"git+https://github.com/armon/go-radix#commit=${_go_radix_commit};
+"git+https://github.com/bgentry/speakeasy#commit=${_speakeasy_commit};
+"git+https://github.com/mattn/go-isatty#commit=${_go_isatty_commit};)
 sha512sums=('SKIP'
 'SKIP'
 'SKIP'
@@ -52,7 +52,7 @@
   mkdir -p "src/github.com/armon"
   mkdir -p "src/github.com/bgentry"
   mkdir -p "src/github.com/mattn"
-  mv ${_pkgname} src/github.com/mitchellh
+  mv ${_pkgname} src/github.com/hashicorp
   mv go-checkpoint src/github.com/hashicorp
   mv go-cleanhttp src/github.com/hashicorp
   mv go-uuid src/github.com/hashicorp
@@ -63,25 +63,15 @@
   mv go-radix src/github.com/armon
   mv speakeasy src/github.com/bgentry
   mv go-isatty src/github.com/mattn
-
-  if [ `uname -m` == 'x86_64' ]; then
-ARCH='amd64'
-  elif [ `uname -m` == 'i686' ]; then
-ARCH='i686'
-  else
-echo "[ERROR] not supported architecture"
-exit 1
-  fi
-  sed -e '/VersionPrerelease = ""/ {N;N;N;d;}' -i 
"${srcdir}/src/github.com/mitchellh/${_pkgname}/Makefile"
-
+  sed -e '/VersionPrerelease = ""/ {N;N;N;d;}' -i 
"${srcdir}/src/github.com/hashicorp/${_pkgname}/Makefile"
 }
 build() {
-  cd "src/github.com/mitchellh/${_pkgname}"
+  cd "src/github.com/hashicorp/${_pkgname}"
   make dev
 }
 
 check() {
-  cd "src/github.com/mitchellh/${_pkgname}"
+  cd "src/github.com/hashicorp/${_pkgname}"
   make test
 }
 


[arch-commits] Commit in packer-io/repos (4 files)

2017-07-16 Thread Christian Rebischke
Date: Sunday, July 16, 2017 @ 19:56:41
  Author: shibumi
Revision: 245416

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

Added:
  packer-io/repos/community-i686/
  packer-io/repos/community-i686/PKGBUILD
(from rev 245415, packer-io/trunk/PKGBUILD)
  packer-io/repos/community-x86_64/
  packer-io/repos/community-x86_64/PKGBUILD
(from rev 245415, packer-io/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   83 
 community-x86_64/PKGBUILD |   83 
 2 files changed, 166 insertions(+)

Copied: packer-io/repos/community-i686/PKGBUILD (from rev 245415, 
packer-io/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-16 19:56:41 UTC (rev 245416)
@@ -0,0 +1,83 @@
+# Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+_pkgname=packer
+pkgname=packer-io
+pkgver=1.0.2
+pkgrel=2
+pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
+arch=('i686' 'x86_64')
+url="https://github.com/hashicorp/packer;
+license=('MPL')
+makedepends=('git' 'go')
+depends=('glibc')
+_go_checkpoint_commit='a8d0786e7fa88adb6b3bcaa341a99af7f9740671'
+_go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
+_go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'
+_osext_commit='ae77be60afb1dcacde03767a8c37337fad28ac14'
+_panicwrap_commit='fce601fe55579125e1b3cb0b992287e7290f7b83'
+_cli_commit='b481eac70eea3ad671b7c360a013f89bb759b252'
+_prefixedio_commit='6e6954073784f7ee67b28f2d22749d6479151ed7'
+_go_radix_commit='4239b77079c7b5d1243b7b4736304ce8ddb6f0f2'
+_speakeasy_commit='4aabc24848ce5fd31929f7d1e4ea74d3709c14cd'
+_go_isatty_commit='fc9e8d8ef48496124e79ae0df75490096eccf6fe'
+source=("git+https://github.com/hashicorp/packer#tag=v${pkgver};
+
"git+https://github.com/hashicorp/go-checkpoint#commit=${_go_checkpoint_commit};
+
"git+https://github.com/hashicorp/go-cleanhttp#commit=${_go_cleanhttp_commit};
+"git+https://github.com/hashicorp/go-uuid#commit=${_go_uuid_commit};
+"git+https://github.com/kardianos/osext#commit=${_osext_commit};
+
"git+https://github.com/mitchellh/panicwrap#commit=${_panicwrap_commit};
+"git+https://github.com/mitchellh/cli#commit=${_cli_commit};
+
"git+https://github.com/mitchellh/prefixedio#commit=${_prefixedio_commit};
+"git+https://github.com/armon/go-radix#commit=${_go_radix_commit};
+"git+https://github.com/bgentry/speakeasy#commit=${_speakeasy_commit};
+"git+https://github.com/mattn/go-isatty#commit=${_go_isatty_commit};)
+sha512sums=('SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP'
+'SKIP')
+
+
+prepare() {
+  export GOPATH="${srcdir}"
+  export PATH="$PATH:$GOPATH/bin"
+  mkdir -p "src/github.com/mitchellh"
+  mkdir -p "src/github.com/hashicorp"
+  mkdir -p "src/github.com/kardianos"
+  mkdir -p "src/github.com/armon"
+  mkdir -p "src/github.com/bgentry"
+  mkdir -p "src/github.com/mattn"
+  mv ${_pkgname} src/github.com/hashicorp
+  mv go-checkpoint src/github.com/hashicorp
+  mv go-cleanhttp src/github.com/hashicorp
+  mv go-uuid src/github.com/hashicorp
+  mv osext src/github.com/kardianos
+  mv panicwrap src/github.com/mitchellh
+  mv cli src/github.com/mitchellh
+  mv prefixedio src/github.com/mitchellh
+  mv go-radix src/github.com/armon
+  mv speakeasy src/github.com/bgentry
+  mv go-isatty src/github.com/mattn
+  sed -e '/VersionPrerelease = ""/ {N;N;N;d;}' -i 
"${srcdir}/src/github.com/hashicorp/${_pkgname}/Makefile"
+}
+build() {
+  cd "src/github.com/hashicorp/${_pkgname}"
+  make dev
+}
+
+check() {
+  cd "src/github.com/hashicorp/${_pkgname}"
+  make test
+}
+
+package() {
+  cd "${srcdir}/bin/"
+  install -Dm755 packer "${pkgdir}/usr/bin/packer-io"
+}
+
+# vim:set et sw=2 ts=2 tw=79:

Copied: packer-io/repos/community-x86_64/PKGBUILD (from rev 245415, 
packer-io/trunk/PKGBUILD)
=======
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-07-16 19:56:41 UTC (rev 245416)
@@ -0,0 +1,83 @@
+# Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+_pkgname=packer
+pkgname=packer-io
+pkgver=1.0.2
+pkgrel=2
+pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
+arch=('i686' 'x86_64')
+url="https://g

[arch-commits] Commit in packer-io/repos (4 files)

2017-07-23 Thread Christian Rebischke
Date: Sunday, July 23, 2017 @ 16:01:58
  Author: shibumi
Revision: 246138

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

Added:
  packer-io/repos/community-i686/PKGBUILD
(from rev 246137, packer-io/trunk/PKGBUILD)
  packer-io/repos/community-x86_64/PKGBUILD
(from rev 246137, packer-io/trunk/PKGBUILD)
Deleted:
  packer-io/repos/community-i686/PKGBUILD
  packer-io/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  168 
 community-i686/PKGBUILD   |   83 -
 community-x86_64/PKGBUILD |   83 -
 3 files changed, 168 insertions(+), 166 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-23 16:01:47 UTC (rev 246137)
+++ community-i686/PKGBUILD 2017-07-23 16:01:58 UTC (rev 246138)
@@ -1,83 +0,0 @@
-# Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
-_pkgname=packer
-pkgname=packer-io
-pkgver=1.0.2
-pkgrel=2
-pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
-arch=('i686' 'x86_64')
-url="https://github.com/hashicorp/packer;
-license=('MPL')
-makedepends=('git' 'go')
-depends=('glibc')
-_go_checkpoint_commit='a8d0786e7fa88adb6b3bcaa341a99af7f9740671'
-_go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
-_go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'
-_osext_commit='ae77be60afb1dcacde03767a8c37337fad28ac14'
-_panicwrap_commit='fce601fe55579125e1b3cb0b992287e7290f7b83'
-_cli_commit='b481eac70eea3ad671b7c360a013f89bb759b252'
-_prefixedio_commit='6e6954073784f7ee67b28f2d22749d6479151ed7'
-_go_radix_commit='4239b77079c7b5d1243b7b4736304ce8ddb6f0f2'
-_speakeasy_commit='4aabc24848ce5fd31929f7d1e4ea74d3709c14cd'
-_go_isatty_commit='fc9e8d8ef48496124e79ae0df75490096eccf6fe'
-source=("git+https://github.com/hashicorp/packer#tag=v${pkgver};
-
"git+https://github.com/hashicorp/go-checkpoint#commit=${_go_checkpoint_commit};
-
"git+https://github.com/hashicorp/go-cleanhttp#commit=${_go_cleanhttp_commit};
-"git+https://github.com/hashicorp/go-uuid#commit=${_go_uuid_commit};
-"git+https://github.com/kardianos/osext#commit=${_osext_commit};
-
"git+https://github.com/mitchellh/panicwrap#commit=${_panicwrap_commit};
-"git+https://github.com/mitchellh/cli#commit=${_cli_commit};
-
"git+https://github.com/mitchellh/prefixedio#commit=${_prefixedio_commit};
-"git+https://github.com/armon/go-radix#commit=${_go_radix_commit};
-"git+https://github.com/bgentry/speakeasy#commit=${_speakeasy_commit};
-"git+https://github.com/mattn/go-isatty#commit=${_go_isatty_commit};)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-
-prepare() {
-  export GOPATH="${srcdir}"
-  export PATH="$PATH:$GOPATH/bin"
-  mkdir -p "src/github.com/mitchellh"
-  mkdir -p "src/github.com/hashicorp"
-  mkdir -p "src/github.com/kardianos"
-  mkdir -p "src/github.com/armon"
-  mkdir -p "src/github.com/bgentry"
-  mkdir -p "src/github.com/mattn"
-  mv ${_pkgname} src/github.com/hashicorp
-  mv go-checkpoint src/github.com/hashicorp
-  mv go-cleanhttp src/github.com/hashicorp
-  mv go-uuid src/github.com/hashicorp
-  mv osext src/github.com/kardianos
-  mv panicwrap src/github.com/mitchellh
-  mv cli src/github.com/mitchellh
-  mv prefixedio src/github.com/mitchellh
-  mv go-radix src/github.com/armon
-  mv speakeasy src/github.com/bgentry
-  mv go-isatty src/github.com/mattn
-  sed -e '/VersionPrerelease = ""/ {N;N;N;d;}' -i 
"${srcdir}/src/github.com/hashicorp/${_pkgname}/Makefile"
-}
-build() {
-  cd "src/github.com/hashicorp/${_pkgname}"
-  make dev
-}
-
-check() {
-  cd "src/github.com/hashicorp/${_pkgname}"
-  make test
-}
-
-package() {
-  cd "${srcdir}/bin/"
-  install -Dm755 packer "${pkgdir}/usr/bin/packer-io"
-}
-
-# vim:set et sw=2 ts=2 tw=79:

Copied: packer-io/repos/community-i686/PKGBUILD (from rev 246137, 
packer-io/trunk/PKGBUILD)
=======
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-23 16:01:58 UTC (rev 246138)
@@ -0,0 +1,84 @@
+# Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+_pkgname=packer
+pkgname=packer-io
+pkgver=1.0.3
+pkgrel=1
+pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
+arch=('i686' 'x86_6

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

2017-07-23 Thread Christian Rebischke
Date: Sunday, July 23, 2017 @ 16:01:47
  Author: shibumi
Revision: 246137

upgpkg: packer-io 1.0.3-1

Modified:
  packer-io/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-07-23 15:20:27 UTC (rev 246136)
+++ PKGBUILD2017-07-23 16:01:47 UTC (rev 246137)
@@ -1,8 +1,8 @@
 # Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
 _pkgname=packer
 pkgname=packer-io
-pkgver=1.0.2
-pkgrel=2
+pkgver=1.0.3
+pkgrel=1
 pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
 arch=('i686' 'x86_64')
 url="https://github.com/hashicorp/packer;
@@ -9,7 +9,7 @@
 license=('MPL')
 makedepends=('git' 'go')
 depends=('glibc')
-_packer_commit='6a8ae4b258d1bb0beece05c9fc3bbc1c186a0480'
+_packer_commit='c0ddb4a044551f3c967ca36f612a33ce13e215f0'
 _go_checkpoint_commit='a8d0786e7fa88adb6b3bcaa341a99af7f9740671'
 _go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
 _go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'


[arch-commits] Commit in awesome-terminal-fonts/repos/community-any (2 files)

2017-06-28 Thread Christian Rebischke
Date: Wednesday, June 28, 2017 @ 17:37:35
  Author: shibumi
Revision: 241422

archrelease: copy trunk to community-any

Added:
  awesome-terminal-fonts/repos/community-any/PKGBUILD
(from rev 241421, awesome-terminal-fonts/trunk/PKGBUILD)
Deleted:
  awesome-terminal-fonts/repos/community-any/PKGBUILD

--+
 PKGBUILD |   54 +++---
 1 file changed, 27 insertions(+), 27 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-06-28 17:37:27 UTC (rev 241421)
+++ PKGBUILD2017-06-28 17:37:35 UTC (rev 241422)
@@ -1,27 +0,0 @@
-# Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
-_pkgname=awesome-terminal-fonts
-pkgname="${_pkgname}"
-pkgver=1.0.0
-pkgrel=6
-pkgdesc="fonts/icons for powerlines"
-arch=('any')
-url="https://github.com/gabrielelana/awesome-terminal-fonts;
-license=('MIT')
-depends=('fontconfig')
-source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/gabrielelana/awesome-terminal-fonts/archive/v${pkgver}.tar.gz;)
-sha512sums=('ec3a7dde0b2421fe3af8a793ca24d839e5db57193e2ac3287501621e3504b7ff8d9da17688ab7fd0e7577d28a1cfb8eead110d0d80a721461450ae4cd54a8f58')
-
-
-package() {
-  install -d "${pkgdir}/usr/share/fonts/${_pkgname}"
-  install -d "${pkgdir}/etc/fonts/conf.avail"
-  install -Dm 0644 "${srcdir}/${_pkgname}-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
-  install -Dm 0644 "${srcdir}/${_pkgname}-${pkgver}/README.md" 
"${pkgdir}/usr/share/doc/${_pkgname}/README.md"
-  cd "${srcdir}/${_pkgname}-${pkgver}/build"
-  install -m 0644 * "${pkgdir}/usr/share/fonts/${_pkgname}/"
-  install -m 0644 "${srcdir}/${_pkgname}-${pkgver}/config/10-symbols.conf" 
"${pkgdir}/etc/fonts/conf.avail"
-  mkdir -p "${pkgdir}/etc/fonts/conf.d"
-  ln -s "/etc/fonts/conf.avail/10-symbols.conf" 
"${pkgdir}/etc/fonts/conf.d/10-symbols.conf"
-}
-
-# vim:set et sw=2 ts=2 tw=79:

Copied: awesome-terminal-fonts/repos/community-any/PKGBUILD (from rev 241421, 
awesome-terminal-fonts/trunk/PKGBUILD)
=======
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-06-28 17:37:35 UTC (rev 241422)
@@ -0,0 +1,27 @@
+# Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+_pkgname=awesome-terminal-fonts
+pkgname="${_pkgname}"
+pkgver=1.1.0
+pkgrel=1
+pkgdesc="fonts/icons for powerlines"
+arch=('any')
+url="https://github.com/gabrielelana/awesome-terminal-fonts;
+license=('MIT')
+depends=('fontconfig')
+source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/gabrielelana/awesome-terminal-fonts/archive/v${pkgver}.tar.gz;)
+sha512sums=('9c4d611d081a0deb8bb2a1779278e12be1ff3a570b05db94a4dfb91d4816f2aa6f6db305dfc19f75a645e661d6c3da5254a97d2225fe951db6dc2453940bdfa3')
+
+
+package() {
+  install -d "${pkgdir}/usr/share/fonts/${_pkgname}"
+  install -d "${pkgdir}/etc/fonts/conf.avail"
+  install -Dm 0644 "${srcdir}/${_pkgname}-${pkgver}/LICENSE" 
"${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
+  install -Dm 0644 "${srcdir}/${_pkgname}-${pkgver}/README.md" 
"${pkgdir}/usr/share/doc/${_pkgname}/README.md"
+  cd "${srcdir}/${_pkgname}-${pkgver}/build"
+  install -m 0644 * "${pkgdir}/usr/share/fonts/${_pkgname}/"
+  install -m 0644 "${srcdir}/${_pkgname}-${pkgver}/config/10-symbols.conf" 
"${pkgdir}/etc/fonts/conf.avail"
+  mkdir -p "${pkgdir}/etc/fonts/conf.d"
+  ln -s "/etc/fonts/conf.avail/10-symbols.conf" 
"${pkgdir}/etc/fonts/conf.d/10-symbols.conf"
+}
+
+# vim:set et sw=2 ts=2 tw=79:


[arch-commits] Commit in awesome-terminal-fonts/trunk (PKGBUILD)

2017-06-28 Thread Christian Rebischke
Date: Wednesday, June 28, 2017 @ 17:37:27
  Author: shibumi
Revision: 241421

upgpkg: awesome-terminal-fonts 1.1.0-1

Modified:
  awesome-terminal-fonts/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-06-28 17:18:20 UTC (rev 241420)
+++ PKGBUILD2017-06-28 17:37:27 UTC (rev 241421)
@@ -1,8 +1,8 @@
 # Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
 _pkgname=awesome-terminal-fonts
 pkgname="${_pkgname}"
-pkgver=1.0.0
-pkgrel=6
+pkgver=1.1.0
+pkgrel=1
 pkgdesc="fonts/icons for powerlines"
 arch=('any')
 url="https://github.com/gabrielelana/awesome-terminal-fonts;
@@ -9,7 +9,7 @@
 license=('MIT')
 depends=('fontconfig')
 
source=("${_pkgname}-${pkgver}.tar.gz::https://github.com/gabrielelana/awesome-terminal-fonts/archive/v${pkgver}.tar.gz;)
-sha512sums=('ec3a7dde0b2421fe3af8a793ca24d839e5db57193e2ac3287501621e3504b7ff8d9da17688ab7fd0e7577d28a1cfb8eead110d0d80a721461450ae4cd54a8f58')
+sha512sums=('9c4d611d081a0deb8bb2a1779278e12be1ff3a570b05db94a4dfb91d4816f2aa6f6db305dfc19f75a645e661d6c3da5254a97d2225fe951db6dc2453940bdfa3')
 
 
 package() {


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

2017-04-26 Thread Christian Rebischke
Date: Wednesday, April 26, 2017 @ 16:09:57
  Author: shibumi
Revision: 225690

upgpkg: audit 2.7.5-2 included python2 and python3 bindings

Modified:
  audit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-04-26 15:57:00 UTC (rev 225689)
+++ PKGBUILD2017-04-26 16:09:57 UTC (rev 225690)
@@ -8,12 +8,12 @@
 
 pkgname=audit
 pkgver=2.7.5
-pkgrel=1
+pkgrel=2
 pkgdesc='Userspace components of the audit framework'
 url='https://people.redhat.com/sgrubb/audit'
 arch=('i686' 'x86_64')
 depends=('krb5' 'libcap-ng')
-makedepends=('libldap' 'swig' 'linux-headers' 'python')
+makedepends=('libldap' 'swig' 'linux-headers' 'python' 'python2')
 license=('GPL')
 options=('emptydirs')
 backup=(
@@ -34,13 +34,12 @@
 
 build() {
   cd "${pkgname}-${pkgver}"
-  export PYTHON=/usr/bin/python3
+  export PYTHON=/usr/bin/python2
   ./configure \
 --prefix=/usr \
 --sbindir=/usr/bin \
 --sysconfdir=/etc \
 --libexecdir=/usr/lib/audit \
---with-python=yes \
 --enable-gssapi-krb5=yes \
 --enable-systemd=yes \
 --with-libcap-ng=yes


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

2017-04-26 Thread Christian Rebischke
Date: Wednesday, April 26, 2017 @ 16:10:17
  Author: shibumi
Revision: 225691

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

Added:
  audit/repos/community-testing-i686/
  audit/repos/community-testing-i686/PKGBUILD
(from rev 225690, audit/trunk/PKGBUILD)
  audit/repos/community-testing-i686/audit.install
(from rev 225690, audit/trunk/audit.install)
  audit/repos/community-testing-x86_64/
  audit/repos/community-testing-x86_64/PKGBUILD
(from rev 225690, audit/trunk/PKGBUILD)
  audit/repos/community-testing-x86_64/audit.install
(from rev 225690, audit/trunk/audit.install)

+
 community-testing-i686/PKGBUILD|   63 +++
 community-testing-i686/audit.install   |5 ++
 community-testing-x86_64/PKGBUILD  |   63 +++
 community-testing-x86_64/audit.install |5 ++
 4 files changed, 136 insertions(+)

Copied: audit/repos/community-testing-i686/PKGBUILD (from rev 225690, 
audit/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-04-26 16:10:17 UTC (rev 225691)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Daniel Micay <danielmi...@gmail.com>
+# Contributor: <k...@insecure.ws>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Connor Behan <connor.be...@gmail.com>
+# Contributor: henning mueller <henn...@orgizm.net>
+
+pkgname=audit
+pkgver=2.7.5
+pkgrel=2
+pkgdesc='Userspace components of the audit framework'
+url='https://people.redhat.com/sgrubb/audit'
+arch=('i686' 'x86_64')
+depends=('krb5' 'libcap-ng')
+makedepends=('libldap' 'swig' 'linux-headers' 'python' 'python2')
+license=('GPL')
+options=('emptydirs')
+backup=(
+  etc/libaudit.conf
+  etc/audit/audit.rules
+  etc/audit/auditd.conf
+  etc/audisp/audispd.conf
+  etc/audisp/audisp-remote.conf
+  etc/audisp/zos-remote.conf
+  etc/audisp/plugins.d/af_unix.conf
+  etc/audisp/plugins.d/audispd-zos-remote.conf
+  etc/audisp/plugins.d/au-remote.conf
+  etc/audisp/plugins.d/syslog.conf
+)
+source=("${pkgname}-${pkgver}.tar.gz::https://people.redhat.com/sgrubb/audit/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('3707987b36fa3757fb980e09319d0853e06780a8a1ea2d0dd71968220659ab5f1c0a731394bbe0a19d28d0dc24c369e3d437fdb90cda24c04dff405dddba6659')
+install="audit.install"
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  export PYTHON=/usr/bin/python2
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/audit \
+--enable-gssapi-krb5=yes \
+--enable-systemd=yes \
+--with-libcap-ng=yes
+  make
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+
+  cd "${pkgdir}"
+  install -d var/log/audit
+  rm -rf etc/rc.d etc/sysconfig usr/lib/audit
+
+  sed -ri 's|/sbin|/usr/bin|' \
+etc/audit/*.conf \
+etc/audisp/plugins.d/*.conf \
+usr/lib/systemd/system/auditd.service
+
+  chmod 644 usr/lib/systemd/system/auditd.service
+}

Copied: audit/repos/community-testing-i686/audit.install (from rev 225690, 
audit/trunk/audit.install)
===
--- community-testing-i686/audit.install(rev 0)
+++ community-testing-i686/audit.install2017-04-26 16:10:17 UTC (rev 
225691)
@@ -0,0 +1,5 @@
+post_install() {
+  echo CONFIG_AUDIT is disabled in the Arch kernel packages so a custom kernel
+  echo is required for most components of this package. However, some features
+  echo like the utility methods in libaudit work without kernel support.
+}

Copied: audit/repos/community-testing-x86_64/PKGBUILD (from rev 225690, 
audit/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-04-26 16:10:17 UTC (rev 225691)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Daniel Micay <danielmi...@gmail.com>
+# Contributor: <k...@insecure.ws>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Connor Behan <connor.be...@gmail.com>
+# Contributor: henning mueller <henn...@orgizm.net>
+
+pkgname=audit
+pkgver=2.7.5
+pkgrel=2
+pkgdesc='Userspace components of the audit framework'
+url='https://people.redhat.com/sgrubb/audit'
+arch=('i686' 'x86_64')
+depends=('krb5' 'libcap-ng')
+makedepends=('libldap' 'swig' 'linux-headers' 'python' 'python2')
+license=('GPL')
+options=('emptydirs')
+backup=(
+  etc/libaudit.conf
+  etc/audit/audit.rules
+  etc/audi

[arch-commits] Commit in arch-audit/repos (4 files)

2017-04-27 Thread Christian Rebischke
Date: Thursday, April 27, 2017 @ 15:45:10
  Author: shibumi
Revision: 226117

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

Added:
  arch-audit/repos/community-i686/PKGBUILD
(from rev 226116, arch-audit/trunk/PKGBUILD)
  arch-audit/repos/community-x86_64/PKGBUILD
(from rev 226116, arch-audit/trunk/PKGBUILD)
Deleted:
  arch-audit/repos/community-i686/PKGBUILD
  arch-audit/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   74 
 community-i686/PKGBUILD   |   37 --
 community-x86_64/PKGBUILD |   37 --
 3 files changed, 74 insertions(+), 74 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-04-27 15:45:01 UTC (rev 226116)
+++ community-i686/PKGBUILD 2017-04-27 15:45:10 UTC (rev 226117)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Andrea Scarpino <and...@archlinux.org>
-
-pkgname=arch-audit
-pkgver=0.1.8
-pkgrel=2
-pkgdesc='An utility like pkg-audit based on Arch CVE Monitoring Team data'
-url='https://github.com/ilpianista/arch-audit'
-depends=('curl')
-makedepends=('cargo' 'pkg-config')
-arch=('i686' 'x86_64')
-license=('MIT')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ilpianista/arch-audit/archive/${pkgver}.tar.gz;)
-sha512sums=('f8dd2439c81b4c23e2c3e60cf086e07488bc176489a201d4ee951c1faf2a1082b610c6765c3bc737e9246d59327232fc705b88a5816b6a0b770487b47f491f1c')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  cargo build --release
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-
-  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  install -Dm644 doc/arch-audit.1 "${pkgdir}/usr/share/man/man1/arch-audit.1"
-
-  install -Dm644 systemd/arch-audit.service \
-"${pkgdir}/usr/share/${pkgname}/arch-audit.service"
-  install -Dm644 systemd/arch-audit.timer \
-"${pkgdir}/usr/share/${pkgname}/arch-audit.timer"
-
-  install -Dm644 completions/zsh/_arch-audit \
-"${pkgdir}"/usr/share/zsh/site-functions/_arch-audit
-}

Copied: arch-audit/repos/community-i686/PKGBUILD (from rev 226116, 
arch-audit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-04-27 15:45:10 UTC (rev 226117)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Andrea Scarpino <and...@archlinux.org>
+
+pkgname=arch-audit
+pkgver=0.1.8
+pkgrel=3
+pkgdesc='An utility like pkg-audit based on Arch CVE Monitoring Team data'
+url='https://github.com/ilpianista/arch-audit'
+depends=('curl' 'openssl')
+makedepends=('cargo' 'pkg-config')
+arch=('i686' 'x86_64')
+license=('MIT')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ilpianista/arch-audit/archive/${pkgver}.tar.gz;)
+sha512sums=('f8dd2439c81b4c23e2c3e60cf086e07488bc176489a201d4ee951c1faf2a1082b610c6765c3bc737e9246d59327232fc705b88a5816b6a0b770487b47f491f1c')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  cargo build --release
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  install -Dm755 "target/release/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+  install -Dm644 doc/arch-audit.1 "${pkgdir}/usr/share/man/man1/arch-audit.1"
+
+  install -Dm644 systemd/arch-audit.service \
+"${pkgdir}/usr/share/${pkgname}/arch-audit.service"
+  install -Dm644 systemd/arch-audit.timer \
+"${pkgdir}/usr/share/${pkgname}/arch-audit.timer"
+
+  install -Dm644 completions/zsh/_arch-audit \
+"${pkgdir}"/usr/share/zsh/site-functions/_arch-audit
+}

Deleted: community-x86_64/PKGBUILD
=======
--- community-x86_64/PKGBUILD   2017-04-27 15:45:01 UTC (rev 226116)
+++ community-x86_64/PKGBUILD   2017-04-27 15:45:10 UTC (rev 226117)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Andrea Scarpino <and...@archlinux.org>
-
-pkgname=arch-audit
-pkgver=0.1.8
-pkgrel=2
-pkgdesc='An utility like pkg-audit based on Arch CVE Monitoring Team data'
-url='https://github.com/ilpianista/arch-audit'
-depends=('curl')
-makedepends=('cargo' 'pkg-config')
-arch=('i686' 'x86_64')
-license=('MIT')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ilpianista/arch-audit/archive/${pkgver}.tar.gz;)
-sha512sums=('f8dd2439c81b4c23e2c3e60cf086e07488bc176489a201d4ee951c1faf2a1082b610c

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

2017-04-27 Thread Christian Rebischke
Date: Thursday, April 27, 2017 @ 15:45:01
  Author: shibumi
Revision: 226116

upgpkg: arch-audit 0.1.8-3 openssl-1.1 rebuild: added openssl as
dependency

Modified:
  arch-audit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-04-27 15:27:43 UTC (rev 226115)
+++ PKGBUILD2017-04-27 15:45:01 UTC (rev 226116)
@@ -4,10 +4,10 @@
 
 pkgname=arch-audit
 pkgver=0.1.8
-pkgrel=2
+pkgrel=3
 pkgdesc='An utility like pkg-audit based on Arch CVE Monitoring Team data'
 url='https://github.com/ilpianista/arch-audit'
-depends=('curl')
+depends=('curl' 'openssl')
 makedepends=('cargo' 'pkg-config')
 arch=('i686' 'x86_64')
 license=('MIT')


[arch-commits] Commit in weechat/repos (4 files)

2017-04-24 Thread Christian Rebischke
Date: Monday, April 24, 2017 @ 14:34:04
  Author: shibumi
Revision: 225152

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

Added:
  weechat/repos/community-testing-i686/
  weechat/repos/community-testing-i686/PKGBUILD
(from rev 225151, weechat/trunk/PKGBUILD)
  weechat/repos/community-testing-x86_64/
  weechat/repos/community-testing-x86_64/PKGBUILD
(from rev 225151, weechat/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   44 
 community-testing-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: weechat/repos/community-testing-i686/PKGBUILD (from rev 225151, 
weechat/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-04-24 14:34:04 UTC (rev 225152)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Giovanni Scafora <giova...@archlinux.org>
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=1.7.1
+pkgrel=2
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
+ 'lua' 'tcl' 'ruby' 'aspell' 'guile' 'asciidoctor')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
+sha512sums=('4aba380704ab5f611d923a461aa17cac076a18f92a6bb8129daf5f212536672267cadcc679befbcadb48d5044e4bf973f93982d9d3c500cd9d9e12dba4dbfbba'
+'SKIP')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}" install
+}

Copied: weechat/repos/community-testing-x86_64/PKGBUILD (from rev 225151, 
weechat/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2017-04-24 14:34:04 UTC (rev 225152)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Giovanni Scafora <giova...@archlinux.org>
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=1.7.1
+pkgrel=2
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
+ 'lua' 'tcl' 'ruby' 'aspell' 'guile' 'asciidoctor')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
+sha512sums=('4aba380704ab5f611d923a461aa17cac076a18f92a6bb8129daf5f212536672267cadcc679befbcadb48d5044e4bf973f93982d9d3c500cd9d9e12dba4dbfbba'
+'SKIP')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}" install
+}


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

2017-04-24 Thread Christian Rebischke
Date: Monday, April 24, 2017 @ 14:33:57
  Author: shibumi
Revision: 225151

upgpkg: weechat 1.7.1-2

Modified:
  weechat/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-04-24 14:30:31 UTC (rev 225150)
+++ PKGBUILD2017-04-24 14:33:57 UTC (rev 225151)
@@ -5,7 +5,7 @@
 
 pkgname=weechat
 pkgver=1.7.1
-pkgrel=1
+pkgrel=2
 pkgdesc="Fast, light and extensible IRC client (curses UI)"
 arch=('i686' 'x86_64')
 url="http://www.weechat.org/;


[arch-commits] Commit in bup/repos (4 files)

2017-08-05 Thread Christian Rebischke
Date: Saturday, August 5, 2017 @ 16:14:15
  Author: shibumi
Revision: 248776

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

Added:
  bup/repos/community-i686/PKGBUILD
(from rev 248775, bup/trunk/PKGBUILD)
  bup/repos/community-x86_64/PKGBUILD
(from rev 248775, bup/trunk/PKGBUILD)
Deleted:
  bup/repos/community-i686/PKGBUILD
  bup/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   76 
 community-i686/PKGBUILD   |   38 --
 community-x86_64/PKGBUILD |   38 --
 3 files changed, 76 insertions(+), 76 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-05 16:13:55 UTC (rev 248775)
+++ community-i686/PKGBUILD 2017-08-05 16:14:15 UTC (rev 248776)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
-# Contributor: Jakob Matthes <jakob.matt...@gmail.com>
-# Contributor: Bram Schoenmakers <m...@bramschoenmakers.nl>
-# Contributor: henning mueller <henn...@orgizm.net>
-# Contributor: rakoo (AUR)
-# Contributor: SanskritFritz (gmail)
-
-pkgname=bup
-pkgver=0.29.1
-pkgrel=1
-pkgdesc='Efficient backup system based on the git packfile format'
-arch=('x86_64' 'i686')
-url='https://bup.github.io/'
-license=('GPL')
-depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
-makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
-checkdepends=('rsync' 'python2-tornado')
-optdepends=('python2-tornado: for bup web')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)
-sha512sums=('2ad142214cf5ee61e2113b49d02761cdf8fdd5928eb4f885230af71f149ba33ee748e1d96e240903f54d3264dc2ad1614e6ece66027b4c7ed1e97b6147a9685e')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure
-  make
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  make test
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX=/usr install
-}

Copied: bup/repos/community-i686/PKGBUILD (from rev 248775, bup/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-08-05 16:14:15 UTC (rev 248776)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
+# Contributor: Jakob Matthes <jakob.matt...@gmail.com>
+# Contributor: Bram Schoenmakers <m...@bramschoenmakers.nl>
+# Contributor: henning mueller <henn...@orgizm.net>
+# Contributor: rakoo (AUR)
+# Contributor: SanskritFritz (gmail)
+
+pkgname=bup
+pkgver=0.29.1
+pkgrel=2
+pkgdesc='Efficient backup system based on the git packfile format'
+arch=('x86_64' 'i686')
+url='https://bup.github.io/'
+license=('GPL')
+depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
+makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
+checkdepends=('rsync' 'python2-tornado')
+optdepends=('python2-tornado: for bup web')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)
+sha512sums=('2ad142214cf5ee61e2113b49d02761cdf8fdd5928eb4f885230af71f149ba33ee748e1d96e240903f54d3264dc2ad1614e6ece66027b4c7ed1e97b6147a9685e')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure
+  make
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX=/usr install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-08-05 16:13:55 UTC (rev 248775)
+++ community-x86_64/PKGBUILD   2017-08-05 16:14:15 UTC (rev 248776)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Bartłomiej Piotrowski <bpiotrow...@archlinux.org>
-# Contributor: Jakob Matthes <jakob.matt...@gmail.com>
-# Contributor: Bram Schoenmakers <m...@bramschoenmakers.nl>
-# Contributor: henning mueller <henn...@orgizm.net>
-# Contributor: rakoo (AUR)
-# Contributor: SanskritFritz (gmail)
-
-pkgname=bup
-pkgver=0.29.1
-pkgrel=1
-pkgdesc='Efficient backup system based on the git packfile format'
-arch=('x86_64' 'i686')
-url='https://bup.github.io/'
-license=('GPL')
-depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
-makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
-checkdepends=('rsync' 'python2-tornado')
-optdepends=('python2-tornado: for bup web')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)

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

2017-08-05 Thread Christian Rebischke
Date: Saturday, August 5, 2017 @ 16:13:55
  Author: shibumi
Revision: 248775

upgpkg: bup 0.29.1-2 enabled PIE

Modified:
  bup/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-05 16:10:12 UTC (rev 248774)
+++ PKGBUILD2017-08-05 16:13:55 UTC (rev 248775)
@@ -9,7 +9,7 @@
 
 pkgname=bup
 pkgver=0.29.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64' 'i686')
 url='https://bup.github.io/'


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

2017-08-08 Thread Christian Rebischke
Date: Tuesday, August 8, 2017 @ 17:06:03
  Author: shibumi
Revision: 249590

upgpkg: playerctl 0.5.0-4 rebuild for PIE

Modified:
  playerctl/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-08 17:03:27 UTC (rev 249589)
+++ PKGBUILD2017-08-08 17:06:03 UTC (rev 249590)
@@ -3,7 +3,7 @@
 # Contributor: Tony Crisci 
 pkgname=playerctl
 pkgver=0.5.0
-pkgrel=3
+pkgrel=4
 pkgdesc="mpris media player controller and lib for spotify, vlc, audacious, 
bmp, xmms2, and others."
 arch=('i686' 'x86_64')
 url="https://github.com/acrisci/playerctl;


[arch-commits] Commit in playerctl/repos/community-x86_64 (PKGBUILD PKGBUILD)

2017-08-08 Thread Christian Rebischke
Date: Tuesday, August 8, 2017 @ 17:06:13
  Author: shibumi
Revision: 249591

archrelease: copy trunk to community-x86_64

Added:
  playerctl/repos/community-x86_64/PKGBUILD
(from rev 249590, playerctl/trunk/PKGBUILD)
Deleted:
  playerctl/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-08-08 17:06:03 UTC (rev 249590)
+++ PKGBUILD2017-08-08 17:06:13 UTC (rev 249591)
@@ -1,30 +0,0 @@
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Ian D. Scott <i...@perebruin.com>
-# Contributor: Tony Crisci <t...@dubstepdish.com>
-pkgname=playerctl
-pkgver=0.5.0
-pkgrel=3
-pkgdesc="mpris media player controller and lib for spotify, vlc, audacious, 
bmp, xmms2, and others."
-arch=('i686' 'x86_64')
-url="https://github.com/acrisci/playerctl;
-license=('LGPL3')
-depends=('glib2')
-makedepends=('gobject-introspection' 'gtk-doc')
-source=("playerctl-${pkgver}.tar.gz::https://github.com/acrisci/playerctl/archive/v${pkgver}.tar.gz;)
-sha512sums=('307cad5eeea7efa0c97c885660f49468f442fe907ef2495b56ac512e0551c7248750897b6d00934cbfcfcb35f486a101a238b276ef71d2ef866132ca3cc0932c')
-
-prepare() {
-cd "${srcdir}/playerctl-${pkgver}"
-NOCONFIGURE=true ./autogen.sh
-}
-
-build() {
-cd "${srcdir}/playerctl-${pkgver}"
-./configure --prefix=/usr --enable-gtk-doc
-make -j1
-}
-
-package() {
-cd "${srcdir}/playerctl-${pkgver}"
-make DESTDIR="${pkgdir}/" install
-}

Copied: playerctl/repos/community-x86_64/PKGBUILD (from rev 249590, 
playerctl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-08-08 17:06:13 UTC (rev 249591)
@@ -0,0 +1,30 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Ian D. Scott <i...@perebruin.com>
+# Contributor: Tony Crisci <t...@dubstepdish.com>
+pkgname=playerctl
+pkgver=0.5.0
+pkgrel=4
+pkgdesc="mpris media player controller and lib for spotify, vlc, audacious, 
bmp, xmms2, and others."
+arch=('i686' 'x86_64')
+url="https://github.com/acrisci/playerctl;
+license=('LGPL3')
+depends=('glib2')
+makedepends=('gobject-introspection' 'gtk-doc')
+source=("playerctl-${pkgver}.tar.gz::https://github.com/acrisci/playerctl/archive/v${pkgver}.tar.gz;)
+sha512sums=('307cad5eeea7efa0c97c885660f49468f442fe907ef2495b56ac512e0551c7248750897b6d00934cbfcfcb35f486a101a238b276ef71d2ef866132ca3cc0932c')
+
+prepare() {
+cd "${srcdir}/playerctl-${pkgver}"
+NOCONFIGURE=true ./autogen.sh
+}
+
+build() {
+cd "${srcdir}/playerctl-${pkgver}"
+./configure --prefix=/usr --enable-gtk-doc
+make -j1
+}
+
+package() {
+cd "${srcdir}/playerctl-${pkgver}"
+make DESTDIR="${pkgdir}/" install
+}


[arch-commits] Commit in systemtap/repos (8 files)

2017-08-08 Thread Christian Rebischke
Date: Tuesday, August 8, 2017 @ 17:48:01
  Author: shibumi
Revision: 249602

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

Added:
  systemtap/repos/community-i686/PKGBUILD
(from rev 249601, systemtap/trunk/PKGBUILD)
  systemtap/repos/community-i686/systemtap.install
(from rev 249601, systemtap/trunk/systemtap.install)
  systemtap/repos/community-x86_64/PKGBUILD
(from rev 249601, systemtap/trunk/PKGBUILD)
  systemtap/repos/community-x86_64/systemtap.install
(from rev 249601, systemtap/trunk/systemtap.install)
Deleted:
  systemtap/repos/community-i686/PKGBUILD
  systemtap/repos/community-i686/systemtap.install
  systemtap/repos/community-x86_64/PKGBUILD
  systemtap/repos/community-x86_64/systemtap.install

+
 /PKGBUILD  |   84 +++
 /systemtap.install |8 +++
 community-i686/PKGBUILD|   42 -
 community-i686/systemtap.install   |4 -
 community-x86_64/PKGBUILD  |   42 -
 community-x86_64/systemtap.install |4 -
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-08 17:47:45 UTC (rev 249601)
+++ community-i686/PKGBUILD 2017-08-08 17:48:01 UTC (rev 249602)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor:dront78 <dron...@gmail.com>
-pkgname=systemtap
-pkgver=3.1
-pkgrel=3
-pkgdesc="provides infrastructure to simplify the gathering of information 
about the running system."
-url="http://sourceware.org/systemtap/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('elfutils' 'nss' 'python2')
-makedepends=('python2-setuptools' 'xmlto')
-optdepends=('sqlite3: for storing results in a database')
-source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz;
-
"${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc;)
-sha512sums=('07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d'
-'SKIP')
-install='systemtap.install'
-validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/"${pkgname}" \
---libdir=/usr/lib/"${pkgname}" \
---mandir=/usr/share/man/ \
---localstatedir=/var \
---enable-pie \
---disable-docs \
---enable-htmldocs
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  rmdir "${pkgdir}/var/run/stap-server/"
-  rmdir "${pkgdir}/var/run/"
-}
-

Copied: systemtap/repos/community-i686/PKGBUILD (from rev 249601, 
systemtap/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-08-08 17:48:01 UTC (rev 249602)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor:dront78 <dron...@gmail.com>
+pkgname=systemtap
+pkgver=3.1
+pkgrel=4
+pkgdesc="provides infrastructure to simplify the gathering of information 
about the running system."
+url="http://sourceware.org/systemtap/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('elfutils' 'nss' 'python2')
+makedepends=('python2-setuptools' 'xmlto')
+optdepends=('sqlite3: for storing results in a database')
+source=("${pkgname}-${pkgver}.tar.gz::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz;
+
"${pkgname}-${pkgver}.tar.gz.asc::https://sourceware.org/systemtap/ftp/releases/${pkgname}-${pkgver}.tar.gz.asc;)
+sha512sums=('07b322d5745f570296e287db80f1e370da87eb65073815cf24d532827900453c1cb9ee74b5496b4f3919d176b960caad4479edc2dadf27b5c58898fb7398264d'
+'SKIP')
+install='systemtap.install'
+validpgpkeys=('5D38116FA4D3A7CC77E378D37E83610126DCC2E8')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/"${pkgname}" \
+--libdir=/usr/lib/"${pkgname}" \
+--mandir=/usr/share/man/ \
+--localstatedir=/var \
+--enable-pie \
+--disable-docs \
+--enable-htmldocs
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  rmdir "${pkgdir}/var/run/stap-server/"
+  rmdir "${pkgdir}/var/run/"
+}
+

Deleted: community-i686/systemtap.install
=

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

2017-08-08 Thread Christian Rebischke
Date: Tuesday, August 8, 2017 @ 17:03:13
  Author: shibumi
Revision: 249588

upgpkg: i3blocks 1.4-6 rebuild for security features such like PIE

Modified:
  i3blocks/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-08 16:25:30 UTC (rev 249587)
+++ PKGBUILD2017-08-08 17:03:13 UTC (rev 249588)
@@ -5,7 +5,7 @@
 
 pkgname=i3blocks
 pkgver=1.4
-pkgrel=5
+pkgrel=6
 pkgdesc='Define blocks for your i3bar status line'
 arch=('i686' 'x86_64')
 groups=('i3')


[arch-commits] Commit in i3blocks/repos (4 files)

2017-08-08 Thread Christian Rebischke
Date: Tuesday, August 8, 2017 @ 17:03:27
  Author: shibumi
Revision: 249589

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

Added:
  i3blocks/repos/community-i686/PKGBUILD
(from rev 249588, i3blocks/trunk/PKGBUILD)
  i3blocks/repos/community-x86_64/PKGBUILD
(from rev 249588, i3blocks/trunk/PKGBUILD)
Deleted:
  i3blocks/repos/community-i686/PKGBUILD
  i3blocks/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   66 
 community-i686/PKGBUILD   |   33 --
 community-x86_64/PKGBUILD |   33 --
 3 files changed, 66 insertions(+), 66 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-08 17:03:13 UTC (rev 249588)
+++ community-i686/PKGBUILD 2017-08-08 17:03:27 UTC (rev 249589)
@@ -1,33 +0,0 @@
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Vlad M. <v...@archlinux.net>
-# Contributor: Patrice Peterson 
-# Contributor: Vivien Didelot <vivien+...@didelot.org>
-
-pkgname=i3blocks
-pkgver=1.4
-pkgrel=5
-pkgdesc='Define blocks for your i3bar status line'
-arch=('i686' 'x86_64')
-groups=('i3')
-url="https://github.com/vivien/i3blocks;
-license=('GPL3')
-optdepends=('acpi: For battery script'
-'bc: For bandwidth script'
-'lm_sensors: For temperature script'
-'openvpn: For openvpn script'
-'playerctl: For mediaplayer script'
-'alsa-utils: For volume script'
-'sysstat: For cpu_usage script')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/vivien/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('c1f5abe90426e9f6284ef74001c9f50d08ce596b7bb8a284232116774375fa50168567785999266c8774fa39a1243c73f699a3e3be4440fbe16f33f0fde5cded')
-backup=('etc/i3blocks.conf')
-
-build () {
-  cd "${pkgname}-${pkgver}"
-  make VERSION="${pkgver}" PREFIX=/usr
-}
-
-package () {
-  cd "${pkgname}-${pkgver}"
-  make VERSION="${pkgver}" PREFIX=/usr LIBEXECDIR=/usr/lib DESTDIR="${pkgdir}" 
install
-}

Copied: i3blocks/repos/community-i686/PKGBUILD (from rev 249588, 
i3blocks/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-08-08 17:03:27 UTC (rev 249589)
@@ -0,0 +1,33 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Vlad M. <v...@archlinux.net>
+# Contributor: Patrice Peterson 
+# Contributor: Vivien Didelot <vivien+...@didelot.org>
+
+pkgname=i3blocks
+pkgver=1.4
+pkgrel=6
+pkgdesc='Define blocks for your i3bar status line'
+arch=('i686' 'x86_64')
+groups=('i3')
+url="https://github.com/vivien/i3blocks;
+license=('GPL3')
+optdepends=('acpi: For battery script'
+'bc: For bandwidth script'
+'lm_sensors: For temperature script'
+'openvpn: For openvpn script'
+'playerctl: For mediaplayer script'
+'alsa-utils: For volume script'
+'sysstat: For cpu_usage script')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/vivien/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('c1f5abe90426e9f6284ef74001c9f50d08ce596b7bb8a284232116774375fa50168567785999266c8774fa39a1243c73f699a3e3be4440fbe16f33f0fde5cded')
+backup=('etc/i3blocks.conf')
+
+build () {
+  cd "${pkgname}-${pkgver}"
+  make VERSION="${pkgver}" PREFIX=/usr
+}
+
+package () {
+  cd "${pkgname}-${pkgver}"
+  make VERSION="${pkgver}" PREFIX=/usr LIBEXECDIR=/usr/lib DESTDIR="${pkgdir}" 
install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-08-08 17:03:13 UTC (rev 249588)
+++ community-x86_64/PKGBUILD   2017-08-08 17:03:27 UTC (rev 249589)
@@ -1,33 +0,0 @@
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Vlad M. <v...@archlinux.net>
-# Contributor: Patrice Peterson 
-# Contributor: Vivien Didelot <vivien+...@didelot.org>
-
-pkgname=i3blocks
-pkgver=1.4
-pkgrel=5
-pkgdesc='Define blocks for your i3bar status line'
-arch=('i686' 'x86_64')
-groups=('i3')
-url="https://github.com/vivien/i3blocks;
-license=('GPL3')
-optdepends=('acpi: For battery script'
-'bc: For bandwidth script'
-'lm_sensors: For temperature script'
-'openvpn: For openvpn script'
-'playerctl: For mediaplayer script'
-'alsa-utils: For volume script'
-'sysstat: For cpu_usage script')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/vivien/${pkgname}/releases/download/${pkgver

[arch-commits] Commit in playerctl/repos (4 files)

2017-08-08 Thread Christian Rebischke
Date: Tuesday, August 8, 2017 @ 17:07:46
  Author: shibumi
Revision: 249592

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

Added:
  playerctl/repos/community-i686/PKGBUILD
(from rev 249591, playerctl/trunk/PKGBUILD)
  playerctl/repos/community-x86_64/PKGBUILD
(from rev 249591, playerctl/trunk/PKGBUILD)
Deleted:
  playerctl/repos/community-i686/PKGBUILD
  playerctl/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 community-i686/PKGBUILD   |   30 --
 community-x86_64/PKGBUILD |   30 --
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-08 17:06:13 UTC (rev 249591)
+++ community-i686/PKGBUILD 2017-08-08 17:07:46 UTC (rev 249592)
@@ -1,30 +0,0 @@
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Ian D. Scott <i...@perebruin.com>
-# Contributor: Tony Crisci <t...@dubstepdish.com>
-pkgname=playerctl
-pkgver=0.5.0
-pkgrel=3
-pkgdesc="mpris media player controller and lib for spotify, vlc, audacious, 
bmp, xmms2, and others."
-arch=('i686' 'x86_64')
-url="https://github.com/acrisci/playerctl;
-license=('LGPL3')
-depends=('glib2')
-makedepends=('gobject-introspection' 'gtk-doc')
-source=("playerctl-${pkgver}.tar.gz::https://github.com/acrisci/playerctl/archive/v${pkgver}.tar.gz;)
-sha512sums=('307cad5eeea7efa0c97c885660f49468f442fe907ef2495b56ac512e0551c7248750897b6d00934cbfcfcb35f486a101a238b276ef71d2ef866132ca3cc0932c')
-
-prepare() {
-cd "${srcdir}/playerctl-${pkgver}"
-NOCONFIGURE=true ./autogen.sh
-}
-
-build() {
-cd "${srcdir}/playerctl-${pkgver}"
-./configure --prefix=/usr --enable-gtk-doc
-make -j1
-}
-
-package() {
-cd "${srcdir}/playerctl-${pkgver}"
-make DESTDIR="${pkgdir}/" install
-}

Copied: playerctl/repos/community-i686/PKGBUILD (from rev 249591, 
playerctl/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-08-08 17:07:46 UTC (rev 249592)
@@ -0,0 +1,30 @@
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Ian D. Scott <i...@perebruin.com>
+# Contributor: Tony Crisci <t...@dubstepdish.com>
+pkgname=playerctl
+pkgver=0.5.0
+pkgrel=4
+pkgdesc="mpris media player controller and lib for spotify, vlc, audacious, 
bmp, xmms2, and others."
+arch=('i686' 'x86_64')
+url="https://github.com/acrisci/playerctl;
+license=('LGPL3')
+depends=('glib2')
+makedepends=('gobject-introspection' 'gtk-doc')
+source=("playerctl-${pkgver}.tar.gz::https://github.com/acrisci/playerctl/archive/v${pkgver}.tar.gz;)
+sha512sums=('307cad5eeea7efa0c97c885660f49468f442fe907ef2495b56ac512e0551c7248750897b6d00934cbfcfcb35f486a101a238b276ef71d2ef866132ca3cc0932c')
+
+prepare() {
+cd "${srcdir}/playerctl-${pkgver}"
+NOCONFIGURE=true ./autogen.sh
+}
+
+build() {
+cd "${srcdir}/playerctl-${pkgver}"
+./configure --prefix=/usr --enable-gtk-doc
+make -j1
+}
+
+package() {
+cd "${srcdir}/playerctl-${pkgver}"
+make DESTDIR="${pkgdir}/" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-08-08 17:06:13 UTC (rev 249591)
+++ community-x86_64/PKGBUILD   2017-08-08 17:07:46 UTC (rev 249592)
@@ -1,30 +0,0 @@
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Ian D. Scott <i...@perebruin.com>
-# Contributor: Tony Crisci <t...@dubstepdish.com>
-pkgname=playerctl
-pkgver=0.5.0
-pkgrel=4
-pkgdesc="mpris media player controller and lib for spotify, vlc, audacious, 
bmp, xmms2, and others."
-arch=('i686' 'x86_64')
-url="https://github.com/acrisci/playerctl;
-license=('LGPL3')
-depends=('glib2')
-makedepends=('gobject-introspection' 'gtk-doc')
-source=("playerctl-${pkgver}.tar.gz::https://github.com/acrisci/playerctl/archive/v${pkgver}.tar.gz;)
-sha512sums=('307cad5eeea7efa0c97c885660f49468f442fe907ef2495b56ac512e0551c7248750897b6d00934cbfcfcb35f486a101a238b276ef71d2ef866132ca3cc0932c')
-
-prepare() {
-cd "${srcdir}/playerctl-${pkgver}"
-NOCONFIGURE=true ./autogen.sh
-}
-
-build() {
-cd "${srcdir}/playerctl-${pkgver}"
-./configure --prefix=/usr --enable-gtk-doc
-make -j1
-}
-
-package() {
-cd "${srcdir}/playerctl-${pkgver}"
-make DESTDIR="${pkgdir}/" install
-}

Copied: playerctl/repos/community-x86_64/PKGBUILD (from rev 249591, 
playerctl/trunk/PKGBUILD)
======

[arch-commits] Commit in connman/repos (8 files)

2017-08-08 Thread Christian Rebischke
Date: Tuesday, August 8, 2017 @ 17:12:06
  Author: shibumi
Revision: 249596

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 249595, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 249595, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 249595, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 249595, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |  110 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   55 --
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   55 --
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 134 insertions(+), 134 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-08 17:11:50 UTC (rev 249595)
+++ community-i686/PKGBUILD 2017-08-08 17:12:06 UTC (rev 249596)
@@ -1,55 +0,0 @@
-#$Id$
-# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
-# Contributor: Daniel Wallace 
-# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
-
-pkgname=connman
-pkgver=1.34
-pkgrel=1
-pkgdesc="Wireless LAN network manager"
-url="https://01.org/connman;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus' 'iptables' 'gnutls' 'glib2')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices'
-'pptpclient: for ppp support')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("${pkgname}-${pkgver}.tar.xz::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
-
"${pkgname}-${pkgver}.tar.sign::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.sign;
-'allow_group_network.diff')
-sha512sums=('732669648936630ae5895cba8b69757ab594bc31ee8e4925b0e402d190939891fac61136f3f086ce708b8d576136f0947914c0cc07427c170cbf9b85a308'
-'SKIP'
-
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
-validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/allow_group_network.diff"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --bindir=/usr/bin \
-  --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-pptp \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client \
-  --enable-nmcompat
-  make
-}
-
-package() {
-  make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/client/${pkgname}ctl" 
"${pkgdir}/usr/bin/${pkgname}ctl"
-  find "${pkgdir}/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-# See FS#48044
-  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"${pkgdir}"/usr/lib/systemd/system/connman.service
-  rm -r "${pkgdir}"/usr/lib/tmpfiles.d
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 249595, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD     (rev 0)
+++ community-i686/PKGBUILD 2017-08-08 17:12:06 UTC (rev 249596)
@@ -0,0 +1,55 @@
+#$Id$
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
+
+pkgname=connman
+pkgver=1.34
+pkgrel=2
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("${pkgname}-${pkgver}.tar.xz::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.sign::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.sign;
+

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

2017-08-08 Thread Christian Rebischke
Date: Tuesday, August 8, 2017 @ 17:11:50
  Author: shibumi
Revision: 249595

upgpkg: connman 1.34-2 rebuild for PIE

Modified:
  connman/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-08 17:09:46 UTC (rev 249594)
+++ PKGBUILD2017-08-08 17:11:50 UTC (rev 249595)
@@ -5,7 +5,7 @@
 
 pkgname=connman
 pkgver=1.34
-pkgrel=1
+pkgrel=2
 pkgdesc="Wireless LAN network manager"
 url="https://01.org/connman;
 arch=('i686' 'x86_64')


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

2017-08-08 Thread Christian Rebischke
Date: Tuesday, August 8, 2017 @ 17:47:45
  Author: shibumi
Revision: 249601

upgpkg: systemtap 3.1-4 rebuild for PIE

Modified:
  systemtap/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-08 17:31:15 UTC (rev 249600)
+++ PKGBUILD2017-08-08 17:47:45 UTC (rev 249601)
@@ -3,7 +3,7 @@
 # Contributor:dront78 
 pkgname=systemtap
 pkgver=3.1
-pkgrel=3
+pkgrel=4
 pkgdesc="provides infrastructure to simplify the gathering of information 
about the running system."
 url="http://sourceware.org/systemtap/;
 arch=('i686' 'x86_64')


[arch-commits] Commit in audit/repos (8 files)

2017-08-05 Thread Christian Rebischke
Date: Saturday, August 5, 2017 @ 15:14:24
  Author: shibumi
Revision: 248744

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

Added:
  audit/repos/community-i686/PKGBUILD
(from rev 248743, audit/trunk/PKGBUILD)
  audit/repos/community-i686/audit.install
(from rev 248743, audit/trunk/audit.install)
  audit/repos/community-x86_64/PKGBUILD
(from rev 248743, audit/trunk/PKGBUILD)
  audit/repos/community-x86_64/audit.install
(from rev 248743, audit/trunk/audit.install)
Deleted:
  audit/repos/community-i686/PKGBUILD
  audit/repos/community-i686/audit.install
  audit/repos/community-x86_64/PKGBUILD
  audit/repos/community-x86_64/audit.install

+
 /PKGBUILD  |  126 +++
 /audit.install |   10 +++
 community-i686/PKGBUILD|   63 ---
 community-i686/audit.install   |5 -
 community-x86_64/PKGBUILD  |   63 ---
 community-x86_64/audit.install |5 -
 6 files changed, 136 insertions(+), 136 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-05 15:14:12 UTC (rev 248743)
+++ community-i686/PKGBUILD 2017-08-05 15:14:24 UTC (rev 248744)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Daniel Micay <danielmi...@gmail.com>
-# Contributor: <k...@insecure.ws>
-# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Contributor: Connor Behan <connor.be...@gmail.com>
-# Contributor: henning mueller <henn...@orgizm.net>
-
-pkgname=audit
-pkgver=2.7.6
-pkgrel=1
-pkgdesc='Userspace components of the audit framework'
-url='https://people.redhat.com/sgrubb/audit'
-arch=('i686' 'x86_64')
-depends=('krb5' 'libcap-ng')
-makedepends=('libldap' 'swig' 'linux-headers' 'python' 'python2')
-license=('GPL')
-options=('emptydirs')
-backup=(
-  etc/libaudit.conf
-  etc/audit/audit.rules
-  etc/audit/auditd.conf
-  etc/audisp/audispd.conf
-  etc/audisp/audisp-remote.conf
-  etc/audisp/zos-remote.conf
-  etc/audisp/plugins.d/af_unix.conf
-  etc/audisp/plugins.d/audispd-zos-remote.conf
-  etc/audisp/plugins.d/au-remote.conf
-  etc/audisp/plugins.d/syslog.conf
-)
-source=("${pkgname}-${pkgver}.tar.gz::https://people.redhat.com/sgrubb/audit/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('b219bf64b4cc9f1178751bd4f16a91d75d05b76165b57c4a1493e6a55c66481edfa2a661f479d7ecd46f6d719319776e9eabffb5dc7129dd953a3af3389aa8b8')
-install="audit.install"
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  export PYTHON=/usr/bin/python2
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---libexecdir=/usr/lib/audit \
---enable-gssapi-krb5=yes \
---enable-systemd=yes \
---with-libcap-ng=yes
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  cd "${pkgdir}"
-  install -d var/log/audit
-  rm -rf etc/rc.d etc/sysconfig usr/lib/audit
-
-  sed -ri 's|/sbin|/usr/bin|' \
-etc/audit/*.conf \
-etc/audisp/plugins.d/*.conf \
-usr/lib/systemd/system/auditd.service
-
-  chmod 644 usr/lib/systemd/system/auditd.service
-}

Copied: audit/repos/community-i686/PKGBUILD (from rev 248743, 
audit/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD     2017-08-05 15:14:24 UTC (rev 248744)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Daniel Micay <danielmi...@gmail.com>
+# Contributor: <k...@insecure.ws>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Connor Behan <connor.be...@gmail.com>
+# Contributor: henning mueller <henn...@orgizm.net>
+
+pkgname=audit
+pkgver=2.7.6
+pkgrel=2
+pkgdesc='Userspace components of the audit framework'
+url='https://people.redhat.com/sgrubb/audit'
+arch=('i686' 'x86_64')
+depends=('krb5' 'libcap-ng')
+makedepends=('libldap' 'swig' 'linux-headers' 'python' 'python2')
+license=('GPL')
+options=('emptydirs')
+backup=(
+  etc/libaudit.conf
+  etc/audit/audit.rules
+  etc/audit/auditd.conf
+  etc/audisp/audispd.conf
+  etc/audisp/audisp-remote.conf
+  etc/audisp/zos-remote.conf
+  etc/audisp/plugins.d/af_unix.conf
+  etc/audisp/plugins.d/audispd-zos-remote.conf
+  etc/audisp/plugins.d/au-remote.conf
+  etc/audisp/plugins.d/syslog.conf
+)
+source=("${pkgname}-${pkgver}.tar.gz::https://people.redhat.com/sgrubb/audit/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('b219bf64b4cc9f1178751bd4f16a91d75d05b76165b57c4a1493e6a55c66481edfa2a661f479d7ecd46f6d719319776e9eabffb5dc7129dd953a3af3389aa8b8')
+install="audit.install"
+
+build() {
+  cd &

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

2017-08-05 Thread Christian Rebischke
Date: Saturday, August 5, 2017 @ 15:14:12
  Author: shibumi
Revision: 248743

upgpkg: audit 2.7.6-2 enabled PIE

Modified:
  audit/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-05 15:13:09 UTC (rev 248742)
+++ PKGBUILD2017-08-05 15:14:12 UTC (rev 248743)
@@ -8,7 +8,7 @@
 
 pkgname=audit
 pkgver=2.7.6
-pkgrel=1
+pkgrel=2
 pkgdesc='Userspace components of the audit framework'
 url='https://people.redhat.com/sgrubb/audit'
 arch=('i686' 'x86_64')


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

2017-08-05 Thread Christian Rebischke
Date: Saturday, August 5, 2017 @ 15:18:38
  Author: shibumi
Revision: 248749

upgpkg: gflags 2.2.1-1

Modified:
  gflags/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-05 15:16:47 UTC (rev 248748)
+++ PKGBUILD2017-08-05 15:18:38 UTC (rev 248749)
@@ -6,8 +6,8 @@
 # Contributor: Xiao-Long Chen 
 
 pkgname=gflags
-pkgver=2.2.0
-pkgrel=4
+pkgver=2.2.1
+pkgrel=1
 pkgdesc='C++ Library for commandline flag processing'
 arch=('i686' 'x86_64')
 url='https://github.com/schuhschuh/gflags'
@@ -16,7 +16,7 @@
 makedepends=('cmake')
 options=('staticlibs')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
-sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
+sha512sums=('e919cbdcff1f993ddbfa9c06d8e595566a4717c27ff62f388a64c0e6b4683a93211c24ce78485eae84c2c76053341574064e6c56af185fc2782e2816b26e1fc9')
 
 build() {
   cd "gflags-${pkgver}"


[arch-commits] Commit in gflags/repos (4 files)

2017-08-05 Thread Christian Rebischke
Date: Saturday, August 5, 2017 @ 15:18:52
  Author: shibumi
Revision: 248750

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

Added:
  gflags/repos/community-i686/PKGBUILD
(from rev 248749, gflags/trunk/PKGBUILD)
  gflags/repos/community-x86_64/PKGBUILD
(from rev 248749, gflags/trunk/PKGBUILD)
Deleted:
  gflags/repos/community-i686/PKGBUILD
  gflags/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   84 
 community-i686/PKGBUILD   |   42 --
 community-x86_64/PKGBUILD |   42 --
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-05 15:18:38 UTC (rev 248749)
+++ community-i686/PKGBUILD 2017-08-05 15:18:52 UTC (rev 248750)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Contributor: Anatol Pomozov 
-# Contributor: RunningDroid 
-# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
-
-pkgname=gflags
-pkgver=2.2.0
-pkgrel=4
-pkgdesc='C++ Library for commandline flag processing'
-arch=('i686' 'x86_64')
-url='https://github.com/schuhschuh/gflags'
-license=('BSD')
-depends=('gcc-libs')
-makedepends=('cmake')
-options=('staticlibs')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
-sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
-
-build() {
-  cd "gflags-${pkgver}"
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release \
--DREGISTER_INSTALL_PREFIX=OFF \
--DBUILD_SHARED_LIBS=ON \
--DBUILD_STATIC_LIBS=ON \
--DBUILD_TESTING=ON
-  make
-}
-
-check() {
-  cd "gflags-${pkgver}"
-  make test
-}
-
-package() {
-  cd "gflags-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -D -m644 COPYING.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING.txt
-}

Copied: gflags/repos/community-i686/PKGBUILD (from rev 248749, 
gflags/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-08-05 15:18:52 UTC (rev 248750)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Anatol Pomozov 
+# Contributor: RunningDroid 
+# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
+
+pkgname=gflags
+pkgver=2.2.1
+pkgrel=1
+pkgdesc='C++ Library for commandline flag processing'
+arch=('i686' 'x86_64')
+url='https://github.com/schuhschuh/gflags'
+license=('BSD')
+depends=('gcc-libs')
+makedepends=('cmake')
+options=('staticlibs')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
+sha512sums=('e919cbdcff1f993ddbfa9c06d8e595566a4717c27ff62f388a64c0e6b4683a93211c24ce78485eae84c2c76053341574064e6c56af185fc2782e2816b26e1fc9')
+
+build() {
+  cd "gflags-${pkgver}"
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DREGISTER_INSTALL_PREFIX=OFF \
+-DBUILD_SHARED_LIBS=ON \
+-DBUILD_STATIC_LIBS=ON \
+-DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd "gflags-${pkgver}"
+  make test
+}
+
+package() {
+  cd "gflags-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING.txt 
"${pkgdir}"/usr/share/licenses/${pkgname}/COPYING.txt
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-08-05 15:18:38 UTC (rev 248749)
+++ community-x86_64/PKGBUILD   2017-08-05 15:18:52 UTC (rev 248750)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Contributor: Anatol Pomozov 
-# Contributor: RunningDroid 
-# Contributor: Xiao-Long Chen <chenxiaol...@cxl.epac.to>
-
-pkgname=gflags
-pkgver=2.2.0
-pkgrel=4
-pkgdesc='C++ Library for commandline flag processing'
-arch=('i686' 'x86_64')
-url='https://github.com/schuhschuh/gflags'
-license=('BSD')
-depends=('gcc-libs')
-makedepends=('cmake')
-options=('staticlibs')
-source=("${pkgname}-${pkgver}.tar.gz::https://github.com/schuhschuh/gflags/archive/v${pkgver}.tar.gz;)
-sha512sums=('e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d')
-
-build() {
-  cd "gflags-${pkgver}"
-  cmake . \
--D

[arch-commits] Commit in packer-io/repos (4 files)

2017-08-16 Thread Christian Rebischke
Date: Wednesday, August 16, 2017 @ 21:36:23
  Author: shibumi
Revision: 251553

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

Added:
  packer-io/repos/community-i686/PKGBUILD
(from rev 251552, packer-io/trunk/PKGBUILD)
  packer-io/repos/community-x86_64/PKGBUILD
(from rev 251552, packer-io/trunk/PKGBUILD)
Deleted:
  packer-io/repos/community-i686/PKGBUILD
  packer-io/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  168 
 community-i686/PKGBUILD   |   84 --
 community-x86_64/PKGBUILD |   84 --
 3 files changed, 168 insertions(+), 168 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-16 21:36:14 UTC (rev 251552)
+++ community-i686/PKGBUILD 2017-08-16 21:36:23 UTC (rev 251553)
@@ -1,84 +0,0 @@
-# Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
-_pkgname=packer
-pkgname=packer-io
-pkgver=1.0.3
-pkgrel=1
-pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
-arch=('i686' 'x86_64')
-url="https://github.com/hashicorp/packer;
-license=('MPL')
-makedepends=('git' 'go')
-depends=('glibc')
-_packer_commit='c0ddb4a044551f3c967ca36f612a33ce13e215f0'
-_go_checkpoint_commit='a8d0786e7fa88adb6b3bcaa341a99af7f9740671'
-_go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
-_go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'
-_osext_commit='ae77be60afb1dcacde03767a8c37337fad28ac14'
-_panicwrap_commit='fce601fe55579125e1b3cb0b992287e7290f7b83'
-_cli_commit='b481eac70eea3ad671b7c360a013f89bb759b252'
-_prefixedio_commit='6e6954073784f7ee67b28f2d22749d6479151ed7'
-_go_radix_commit='4239b77079c7b5d1243b7b4736304ce8ddb6f0f2'
-_speakeasy_commit='4aabc24848ce5fd31929f7d1e4ea74d3709c14cd'
-_go_isatty_commit='fc9e8d8ef48496124e79ae0df75490096eccf6fe'
-source=("git+https://github.com/hashicorp/packer#commit=${_packer_commit};
-
"git+https://github.com/hashicorp/go-checkpoint#commit=${_go_checkpoint_commit};
-
"git+https://github.com/hashicorp/go-cleanhttp#commit=${_go_cleanhttp_commit};
-"git+https://github.com/hashicorp/go-uuid#commit=${_go_uuid_commit};
-"git+https://github.com/kardianos/osext#commit=${_osext_commit};
-
"git+https://github.com/mitchellh/panicwrap#commit=${_panicwrap_commit};
-"git+https://github.com/mitchellh/cli#commit=${_cli_commit};
-
"git+https://github.com/mitchellh/prefixedio#commit=${_prefixedio_commit};
-"git+https://github.com/armon/go-radix#commit=${_go_radix_commit};
-"git+https://github.com/bgentry/speakeasy#commit=${_speakeasy_commit};
-"git+https://github.com/mattn/go-isatty#commit=${_go_isatty_commit};)
-sha512sums=('SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP'
-'SKIP')
-
-
-prepare() {
-  export GOPATH="${srcdir}"
-  export PATH="$PATH:$GOPATH/bin"
-  mkdir -p "src/github.com/mitchellh"
-  mkdir -p "src/github.com/hashicorp"
-  mkdir -p "src/github.com/kardianos"
-  mkdir -p "src/github.com/armon"
-  mkdir -p "src/github.com/bgentry"
-  mkdir -p "src/github.com/mattn"
-  mv ${_pkgname} src/github.com/hashicorp
-  mv go-checkpoint src/github.com/hashicorp
-  mv go-cleanhttp src/github.com/hashicorp
-  mv go-uuid src/github.com/hashicorp
-  mv osext src/github.com/kardianos
-  mv panicwrap src/github.com/mitchellh
-  mv cli src/github.com/mitchellh
-  mv prefixedio src/github.com/mitchellh
-  mv go-radix src/github.com/armon
-  mv speakeasy src/github.com/bgentry
-  mv go-isatty src/github.com/mattn
-  sed -e '/VersionPrerelease = ""/ {N;N;N;d;}' -i 
"${srcdir}/src/github.com/hashicorp/${_pkgname}/Makefile"
-}
-build() {
-  cd "src/github.com/hashicorp/${_pkgname}"
-  make dev
-}
-
-check() {
-  cd "src/github.com/hashicorp/${_pkgname}"
-  make test
-}
-
-package() {
-  cd "${srcdir}/bin/"
-  install -Dm755 packer "${pkgdir}/usr/bin/packer-io"
-}
-
-# vim:set et sw=2 ts=2 tw=79:

Copied: packer-io/repos/community-i686/PKGBUILD (from rev 251552, 
packer-io/trunk/PKGBUILD)
=======
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-08-16 21:36:23 UTC (rev 251553)
@@ -0,0 +1,84 @@
+# Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+_pkgname=packer
+pkgname=packer-io
+pkgver=1.0.4
+pkgrel=1
+pkgdesc="tool for creating identical machine images for multiple platfo

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

2017-08-16 Thread Christian Rebischke
Date: Wednesday, August 16, 2017 @ 21:36:10
  Author: shibumi
Revision: 251551

upgpkg: packer-io 1.0.4-1

Modified:
  packer-io/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-16 20:41:54 UTC (rev 251550)
+++ PKGBUILD2017-08-16 21:36:10 UTC (rev 251551)
@@ -1,7 +1,7 @@
 # Maintainer: Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
 _pkgname=packer
 pkgname=packer-io
-pkgver=1.0.3
+pkgver=1.0.4
 pkgrel=1
 pkgdesc="tool for creating identical machine images for multiple platforms 
from a single source configuration"
 arch=('i686' 'x86_64')
@@ -9,7 +9,7 @@
 license=('MPL')
 makedepends=('git' 'go')
 depends=('glibc')
-_packer_commit='c0ddb4a044551f3c967ca36f612a33ce13e215f0'
+_packer_commit='4c3e6f36bad3d096ca649e2cfd23ab70bb2d6383'
 _go_checkpoint_commit='a8d0786e7fa88adb6b3bcaa341a99af7f9740671'
 _go_cleanhttp_commit='3573b8b52aa7b37b9358d966a898feb387f62437'
 _go_uuid_commit='64130c7a86d732268a38cb04cfbaf0cc987fda98'


[arch-commits] Commit in connman/repos (8 files)

2017-08-22 Thread Christian Rebischke
Date: Tuesday, August 22, 2017 @ 19:55:46
  Author: shibumi
Revision: 252997

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

Added:
  connman/repos/community-i686/PKGBUILD
(from rev 252996, connman/trunk/PKGBUILD)
  connman/repos/community-i686/allow_group_network.diff
(from rev 252996, connman/trunk/allow_group_network.diff)
  connman/repos/community-x86_64/PKGBUILD
(from rev 252996, connman/trunk/PKGBUILD)
  connman/repos/community-x86_64/allow_group_network.diff
(from rev 252996, connman/trunk/allow_group_network.diff)
Deleted:
  connman/repos/community-i686/PKGBUILD
  connman/repos/community-i686/allow_group_network.diff
  connman/repos/community-x86_64/PKGBUILD
  connman/repos/community-x86_64/allow_group_network.diff

---+
 /PKGBUILD |  110 
 /allow_group_network.diff |   24 ++
 community-i686/PKGBUILD   |   55 --
 community-i686/allow_group_network.diff   |   12 ---
 community-x86_64/PKGBUILD |   55 --
 community-x86_64/allow_group_network.diff |   12 ---
 6 files changed, 134 insertions(+), 134 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-22 19:55:29 UTC (rev 252996)
+++ community-i686/PKGBUILD 2017-08-22 19:55:46 UTC (rev 252997)
@@ -1,55 +0,0 @@
-#$Id$
-# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
-# Contributor: Daniel Wallace 
-# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
-
-pkgname=connman
-pkgver=1.34
-pkgrel=2
-pkgdesc="Wireless LAN network manager"
-url="https://01.org/connman;
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('dbus' 'iptables' 'gnutls' 'glib2')
-optdepends=('bluez: Support for Bluetooth devices'
-'wpa_supplicant: For WiFi devices'
-'pptpclient: for ppp support')
-makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
-source=("${pkgname}-${pkgver}.tar.xz::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
-
"${pkgname}-${pkgver}.tar.sign::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.sign;
-'allow_group_network.diff')
-sha512sums=('732669648936630ae5895cba8b69757ab594bc31ee8e4925b0e402d190939891fac61136f3f086ce708b8d576136f0947914c0cc07427c170cbf9b85a308'
-'SKIP'
-
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
-validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')
-
-prepare(){
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i "${srcdir}/allow_group_network.diff"
-}
-
-build() {
-  cd "${pkgname}-${pkgver}"
-
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --bindir=/usr/bin \
-  --sbindir=/usr/bin \
-  --with-systemdunitdir=/usr/lib/systemd/system \
-  --enable-pptp \
-  --enable-openconnect \
-  --enable-vpnc \
-  --enable-openvpn \
-  --enable-polkit \
-  --enable-client \
-  --enable-nmcompat
-  make
-}
-
-package() {
-  make -C "${pkgname}-${pkgver}" DESTDIR="${pkgdir}" install
-  install -Dm755 "${srcdir}/${pkgname}-${pkgver}/client/${pkgname}ctl" 
"${pkgdir}/usr/bin/${pkgname}ctl"
-  find "${pkgdir}/usr" -name \*.service -exec sed -i 's/s\(bin\)/\1/' {} +
-# See FS#48044
-  sed -i 's/ProtectSystem=full/ProtectSystem=true/' 
"${pkgdir}"/usr/lib/systemd/system/connman.service
-  rm -r "${pkgdir}"/usr/lib/tmpfiles.d
-}

Copied: connman/repos/community-i686/PKGBUILD (from rev 252996, 
connman/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD     (rev 0)
+++ community-i686/PKGBUILD 2017-08-22 19:55:46 UTC (rev 252997)
@@ -0,0 +1,55 @@
+#$Id$
+# Maintainer : Christian Rebischke <Chris.Rebischke[at]archlinux[dot]org>
+# Contributor: Daniel Wallace 
+# Contributor: Lucas De Marchi <lucas.de.mar...@gmail.com>
+
+pkgname=connman
+pkgver=1.35
+pkgrel=1
+pkgdesc="Wireless LAN network manager"
+url="https://01.org/connman;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('dbus' 'iptables' 'gnutls' 'glib2')
+optdepends=('bluez: Support for Bluetooth devices'
+'wpa_supplicant: For WiFi devices'
+'pptpclient: for ppp support')
+makedepends=('bluez' 'wpa_supplicant' 'openconnect' 'openvpn' 'ppp')
+source=("${pkgname}-${pkgver}.tar.xz::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.sign::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.sign;
+

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

2017-08-22 Thread Christian Rebischke
Date: Tuesday, August 22, 2017 @ 19:55:29
  Author: shibumi
Revision: 252996

upgpkg: connman 1.35-1

Modified:
  connman/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-22 18:41:50 UTC (rev 252995)
+++ PKGBUILD2017-08-22 19:55:29 UTC (rev 252996)
@@ -4,8 +4,8 @@
 # Contributor: Lucas De Marchi 
 
 pkgname=connman
-pkgver=1.34
-pkgrel=2
+pkgver=1.35
+pkgrel=1
 pkgdesc="Wireless LAN network manager"
 url="https://01.org/connman;
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 
source=("${pkgname}-${pkgver}.tar.xz::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.xz;
 
"${pkgname}-${pkgver}.tar.sign::https://www.kernel.org/pub/linux/network/${pkgname}/${pkgname}-${pkgver}.tar.sign;
 'allow_group_network.diff')
-sha512sums=('732669648936630ae5895cba8b69757ab594bc31ee8e4925b0e402d190939891fac61136f3f086ce708b8d576136f0947914c0cc07427c170cbf9b85a308'
+sha512sums=('2234b4d18b038f9a33939035cddebd31c74ce962e5616c2c30b2912476612ef3f7d5b9edca64bf6e69fa358252ed432124e036ac3516b291b86695cb9a96c6a8'
 'SKIP'
 
'06dd5867d460f1c3cf6c359e650ca2ef24495493a99cd03dbd17f23e587e9066d9bc98758d85d5c690d1ae21fa77ad8da5e2fa83d0b52c95d7a535784c5c4964')
 validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659')


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

2017-05-01 Thread Christian Rebischke
Date: Monday, May 1, 2017 @ 22:03:18
  Author: shibumi
Revision: 226452

db-move: moved audit from [community-testing] to [community] (i686, x86_64)

Added:
  audit/repos/community-i686/PKGBUILD
(from rev 226451, audit/repos/community-testing-i686/PKGBUILD)
  audit/repos/community-i686/audit.install
(from rev 226451, audit/repos/community-testing-i686/audit.install)
  audit/repos/community-x86_64/PKGBUILD
(from rev 226451, audit/repos/community-testing-x86_64/PKGBUILD)
  audit/repos/community-x86_64/audit.install
(from rev 226451, audit/repos/community-testing-x86_64/audit.install)
Deleted:
  audit/repos/community-i686/PKGBUILD
  audit/repos/community-i686/audit.install
  audit/repos/community-testing-i686/
  audit/repos/community-testing-x86_64/
  audit/repos/community-x86_64/PKGBUILD
  audit/repos/community-x86_64/audit.install

+
 /PKGBUILD  |  126 +++
 /audit.install |   10 +++
 community-i686/PKGBUILD|   64 ---
 community-i686/audit.install   |5 -
 community-x86_64/PKGBUILD  |   64 ---
 community-x86_64/audit.install |5 -
 6 files changed, 136 insertions(+), 138 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-01 20:49:09 UTC (rev 226451)
+++ community-i686/PKGBUILD 2017-05-01 22:03:18 UTC (rev 226452)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
-# Contributor: Daniel Micay <danielmi...@gmail.com>
-# Contributor: <k...@insecure.ws>
-# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
-# Contributor: Connor Behan <connor.be...@gmail.com>
-# Contributor: henning mueller <henn...@orgizm.net>
-
-pkgname=audit
-pkgver=2.7.5
-pkgrel=1
-pkgdesc='Userspace components of the audit framework'
-url='https://people.redhat.com/sgrubb/audit'
-arch=('i686' 'x86_64')
-depends=('krb5' 'libcap-ng')
-makedepends=('libldap' 'swig' 'linux-headers' 'python')
-license=('GPL')
-options=('emptydirs')
-backup=(
-  etc/libaudit.conf
-  etc/audit/audit.rules
-  etc/audit/auditd.conf
-  etc/audisp/audispd.conf
-  etc/audisp/audisp-remote.conf
-  etc/audisp/zos-remote.conf
-  etc/audisp/plugins.d/af_unix.conf
-  etc/audisp/plugins.d/audispd-zos-remote.conf
-  etc/audisp/plugins.d/au-remote.conf
-  etc/audisp/plugins.d/syslog.conf
-)
-source=("${pkgname}-${pkgver}.tar.gz::https://people.redhat.com/sgrubb/audit/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3707987b36fa3757fb980e09319d0853e06780a8a1ea2d0dd71968220659ab5f1c0a731394bbe0a19d28d0dc24c369e3d437fdb90cda24c04dff405dddba6659')
-install="audit.install"
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  export PYTHON=/usr/bin/python3
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc \
---libexecdir=/usr/lib/audit \
---with-python=yes \
---enable-gssapi-krb5=yes \
---enable-systemd=yes \
---with-libcap-ng=yes
-  make
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-
-  cd "${pkgdir}"
-  install -d var/log/audit
-  rm -rf etc/rc.d etc/sysconfig usr/lib/audit
-
-  sed -ri 's|/sbin|/usr/bin|' \
-etc/audit/*.conf \
-etc/audisp/plugins.d/*.conf \
-usr/lib/systemd/system/auditd.service
-
-  chmod 644 usr/lib/systemd/system/auditd.service
-}

Copied: audit/repos/community-i686/PKGBUILD (from rev 226451, 
audit/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD     2017-05-01 22:03:18 UTC (rev 226452)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Daniel Micay <danielmi...@gmail.com>
+# Contributor: <k...@insecure.ws>
+# Contributor: Massimiliano Torromeo <massimiliano.torro...@gmail.com>
+# Contributor: Connor Behan <connor.be...@gmail.com>
+# Contributor: henning mueller <henn...@orgizm.net>
+
+pkgname=audit
+pkgver=2.7.5
+pkgrel=2
+pkgdesc='Userspace components of the audit framework'
+url='https://people.redhat.com/sgrubb/audit'
+arch=('i686' 'x86_64')
+depends=('krb5' 'libcap-ng')
+makedepends=('libldap' 'swig' 'linux-headers' 'python' 'python2')
+license=('GPL')
+options=('emptydirs')
+backup=(
+  etc/libaudit.conf
+  etc/audit/audit.rules
+  etc/audit/auditd.conf
+  etc/audisp/audispd.conf
+  etc/audisp/audisp-remote.conf
+  etc/audisp/zos-remote.conf
+  etc/audisp/plugins.d/af_unix.conf
+  etc/audisp/plugins.d/audispd-zos-remote.conf
+  etc/audisp/plugins.d/au-remote.conf
+  etc/audisp/plugins.d/syslog.

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

2017-05-01 Thread Christian Rebischke
Date: Monday, May 1, 2017 @ 23:34:26
  Author: shibumi
Revision: 226453

upgpkg: audit 2.7.6-1

Modified:
  audit/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-01 22:03:18 UTC (rev 226452)
+++ PKGBUILD2017-05-01 23:34:26 UTC (rev 226453)
@@ -7,8 +7,8 @@
 # Contributor: henning mueller 
 
 pkgname=audit
-pkgver=2.7.5
-pkgrel=2
+pkgver=2.7.6
+pkgrel=1
 pkgdesc='Userspace components of the audit framework'
 url='https://people.redhat.com/sgrubb/audit'
 arch=('i686' 'x86_64')
@@ -29,7 +29,7 @@
   etc/audisp/plugins.d/syslog.conf
 )
 
source=("${pkgname}-${pkgver}.tar.gz::https://people.redhat.com/sgrubb/audit/${pkgname}-${pkgver}.tar.gz;)
-sha512sums=('3707987b36fa3757fb980e09319d0853e06780a8a1ea2d0dd71968220659ab5f1c0a731394bbe0a19d28d0dc24c369e3d437fdb90cda24c04dff405dddba6659')
+sha512sums=('b219bf64b4cc9f1178751bd4f16a91d75d05b76165b57c4a1493e6a55c66481edfa2a661f479d7ecd46f6d719319776e9eabffb5dc7129dd953a3af3389aa8b8')
 install="audit.install"
 
 build() {


[arch-commits] Commit in weechat/repos (4 files)

2017-05-13 Thread Christian Rebischke
Date: Saturday, May 13, 2017 @ 18:25:55
  Author: shibumi
Revision: 227904

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

Added:
  weechat/repos/testing-i686/PKGBUILD
(from rev 227903, weechat/trunk/PKGBUILD)
  weechat/repos/testing-x86_64/PKGBUILD
(from rev 227903, weechat/trunk/PKGBUILD)
Deleted:
  weechat/repos/testing-i686/PKGBUILD
  weechat/repos/testing-x86_64/PKGBUILD

-+
 /PKGBUILD   |   88 ++
 testing-i686/PKGBUILD   |   42 -
 testing-x86_64/PKGBUILD |   42 -
 3 files changed, 88 insertions(+), 84 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2017-05-13 18:25:41 UTC (rev 227903)
+++ testing-i686/PKGBUILD   2017-05-13 18:25:55 UTC (rev 227904)
@@ -1,42 +0,0 @@
-# $Id: PKGBUILD 292057 2017-04-03 19:06:40Z bpiotrowski $
-# Maintainer: Giovanni Scafora <giova...@archlinux.org>
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=1.7
-pkgrel=2
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key)
-source=(https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('04d9c3835668f0e13605bab306fd53c9'
- 'SKIP')
-
-prepare() {
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake -Wno-dev "$srcdir/${pkgname}-${pkgver}" \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPYTHON_EXECUTABLE=/usr/bin/python2 \
--DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
--DENABLE_MAN=ON \
--DENABLE_DOC=ON
-
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="$pkgdir" install
-}

Copied: weechat/repos/testing-i686/PKGBUILD (from rev 227903, 
weechat/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-05-13 18:25:55 UTC (rev 227904)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer : Christian Rebischke <chris.rebisc...@archlinux.org>
+# Contributor: Giovanni Scafora <giova...@archlinux.org>
+# Contributor: lucke 
+
+pkgname=weechat
+pkgver=1.8
+pkgrel=1
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/;
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
+ 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0')
+source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
+
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
+sha512sums=('34d5aa05e7a9df459c7ade7f654f56561838d59c2d553432697213a5d90614f55204364c4711e28aadd3dbae2cea733dfc6cafeffa9fca87a33eef0e2647a18f'
+'SKIP')
+validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake -Wno-dev "${srcdir}/${pkgname}-${pkgver}" \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPYTHON_EXECUTABLE=/usr/bin/python2 \
+-DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+-DENABLE_MAN=ON \
+-DENABLE_DOC=ON
+
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: testing-x86_64/PKGBUILD
===
--- testing-x86_64/PKGBUILD 2017-05-13 18:25:41 UTC (rev 227903)
+++ testing-x86_64/PKGBUILD 2017-05-13 18:25:55 UTC (rev 227904)
@@ -1,42 +0,0 @@
-# $Id: PKGBUILD 292057 2017-04-03 19:06:40Z bpiotrowski $
-# Maintainer: Giovanni Scafora <giova...@archlinux.org>
-# Contributor: lucke 
-
-pkgname=weechat
-pkgver=1.7
-pkgrel=2
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/;
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 
'python2'
- 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0' 'asciidoctor')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing 
key)
-source=(https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz{,.asc})
-md5sums=('04d9c3835668f0e13605bab306fd53c9'
-

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

2017-05-13 Thread Christian Rebischke
Date: Saturday, May 13, 2017 @ 18:25:41
  Author: shibumi
Revision: 227903

upgpkg: weechat 1.8-1

Modified:
  weechat/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-05-13 17:20:32 UTC (rev 227902)
+++ PKGBUILD2017-05-13 18:25:41 UTC (rev 227903)
@@ -4,8 +4,8 @@
 # Contributor: lucke 
 
 pkgname=weechat
-pkgver=1.7.1
-pkgrel=4
+pkgver=1.8
+pkgrel=1
 pkgdesc="Fast, light and extensible IRC client (curses UI)"
 arch=('i686' 'x86_64')
 url="http://www.weechat.org/;
@@ -16,7 +16,7 @@
 optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile2.0')
 
source=("${pkgname}-${pkgver}.tar.xz::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz;
 
"${pkgname}-${pkgver}.tar.xz.asc::https://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.xz.asc;)
-sha512sums=('4aba380704ab5f611d923a461aa17cac076a18f92a6bb8129daf5f212536672267cadcc679befbcadb48d5044e4bf973f93982d9d3c500cd9d9e12dba4dbfbba'
+sha512sums=('34d5aa05e7a9df459c7ade7f654f56561838d59c2d553432697213a5d90614f55204364c4711e28aadd3dbae2cea733dfc6cafeffa9fca87a33eef0e2647a18f'
 'SKIP')
 validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8')
 


  1   2   3   4   5   6   7   8   9   10   >