[arch-commits] Commit in lib32-polkit/repos/multilib-x86_64 (PKGBUILD PKGBUILD)

2017-01-26 Thread Jan Steffens
Date: Friday, January 27, 2017 @ 07:55:16
  Author: heftig
Revision: 209207

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-polkit/repos/multilib-x86_64/PKGBUILD
(from rev 209206, lib32-polkit/trunk/PKGBUILD)
Deleted:
  lib32-polkit/repos/multilib-x86_64/PKGBUILD

--+
 PKGBUILD |  108 +
 1 file changed, 59 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-27 07:54:41 UTC (rev 209206)
+++ PKGBUILD2017-01-27 07:55:16 UTC (rev 209207)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: jtts 
-# Contributor: Jan de Groot 
-# Contributor: GordonGR 
-
-pkgname=lib32-polkit
-pkgver=0.113
-pkgrel=2
-pkgdesc='Application development toolkit for controlling system-wide 
privileges'
-arch=('x86_64')
-license=('LGPL')
-url='https://www.freedesktop.org/wiki/Software/polkit'
-depends=('lib32-glib2' 'lib32-js17' 'lib32-pam' 'lib32-systemd' 'polkit')
-makedepends=('gcc-multilib' 'intltool' 'python2')
-source=("https://www.freedesktop.org/software/polkit/releases/polkit-${pkgver}.tar.gz;)
-sha256sums=('e1c095093c654951f78f8618d427faf91cf62abdefed98de40ff65eca6413c81')
-
-build() {
-  cd polkit-${pkgver}
-
-  export CC='gcc -m32'
-  export CXX='g++ -m32'
-  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
-
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---libexecdir='/usr/lib32/polkit-1' \
---localstatedir='/var' \
---sysconfdir='/etc' \
---enable-libsystemd-login \
---disable-examples \
---disable-gtk-doc-html \
---disable-introspection \
---disable-man-pages \
---disable-static \
---with-os-type='redhat'
-  make
-}
-
-package() {
-  cd polkit-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/{etc,usr/{bin,lib,include,share}}
-}
-
-# vim: ts=2 sw=2 et:

Copied: lib32-polkit/repos/multilib-x86_64/PKGBUILD (from rev 209206, 
lib32-polkit/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-27 07:55:16 UTC (rev 209207)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: Jan de Groot 
+# Contributor: jtts 
+# Contributor: GordonGR 
+
+pkgname=lib32-polkit
+pkgver=0.113+29+g3272a98
+pkgrel=1
+pkgdesc="Application development toolkit for controlling system-wide 
privileges (32-bit)"
+arch=(x86_64)
+license=(LGPL)
+url="https://www.freedesktop.org/wiki/Software/polkit/;
+depends=(lib32-glib2 lib32-pam lib32-expat lib32-systemd polkit)
+makedepends=(intltool gtk-doc gobject-introspection git autoconf-archive 
gcc-multilib)
+_commit=3272a988655c3236b55bad70e9a3af20857f384b  # master
+source=("git+https://anongit.freedesktop.org/git/polkit#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd polkit
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd polkit
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd polkit
+
+  export CC='gcc -m32'
+  export CXX='g++ -m32'
+  export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
+
+  ./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib32 \
+  --localstatedir=/var --libexecdir=/usr/lib32/polkit-1 \
+  --enable-libsystemd-login=yes --disable-static \
+  --with-os-type=redhat
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make -C src/polkit polkitenumtypes.h
+  make -C src/polkit libpolkit-gobject-1.la
+  make -C src/polkitagent polkitagentenumtypes.h marshal.stamp
+  make -C src/polkitagent libpolkit-agent-1.la
+}
+
+package() {
+  cd polkit
+  make -C src/polkit DESTDIR="$pkgdir" \
+lib_LTLIBRARIES="libpolkit-gobject-1.la" install-libLTLIBRARIES
+  make -C src/polkitagent DESTDIR="$pkgdir" \
+lib_LTLIBRARIES="libpolkit-agent-1.la" install-libLTLIBRARIES
+  make -C data DESTDIR="$pkgdir" install-pkgconfigDATA
+}
+
+# vim: ts=2 sw=2 et:


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

2017-01-26 Thread Jan Steffens
Date: Friday, January 27, 2017 @ 07:54:41
  Author: heftig
Revision: 209206

0.113+29+g3272a98-1

Modified:
  lib32-polkit/trunk/PKGBUILD   (contents, properties)

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-27 07:01:45 UTC (rev 209205)
+++ PKGBUILD2017-01-27 07:54:41 UTC (rev 209206)
@@ -1,49 +1,59 @@
 # $Id$
 # Maintainer: Maxime Gauduin 
+# Contributor: Jan de Groot 
 # Contributor: jtts 
-# Contributor: Jan de Groot 
 # Contributor: GordonGR 
 
 pkgname=lib32-polkit
-pkgver=0.113
-pkgrel=2
-pkgdesc='Application development toolkit for controlling system-wide 
privileges'
-arch=('x86_64')
-license=('LGPL')
-url='https://www.freedesktop.org/wiki/Software/polkit'
-depends=('lib32-glib2' 'lib32-js17' 'lib32-pam' 'lib32-systemd' 'polkit')
-makedepends=('gcc-multilib' 'intltool' 'python2')
-source=("https://www.freedesktop.org/software/polkit/releases/polkit-${pkgver}.tar.gz;)
-sha256sums=('e1c095093c654951f78f8618d427faf91cf62abdefed98de40ff65eca6413c81')
+pkgver=0.113+29+g3272a98
+pkgrel=1
+pkgdesc="Application development toolkit for controlling system-wide 
privileges (32-bit)"
+arch=(x86_64)
+license=(LGPL)
+url="https://www.freedesktop.org/wiki/Software/polkit/;
+depends=(lib32-glib2 lib32-pam lib32-expat lib32-systemd polkit)
+makedepends=(intltool gtk-doc gobject-introspection git autoconf-archive 
gcc-multilib)
+_commit=3272a988655c3236b55bad70e9a3af20857f384b  # master
+source=("git+https://anongit.freedesktop.org/git/polkit#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd polkit
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd polkit
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd polkit-${pkgver}
+  cd polkit
 
   export CC='gcc -m32'
   export CXX='g++ -m32'
   export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
 
-  ./configure \
---prefix='/usr' \
---libdir='/usr/lib32' \
---libexecdir='/usr/lib32/polkit-1' \
---localstatedir='/var' \
---sysconfdir='/etc' \
---enable-libsystemd-login \
---disable-examples \
---disable-gtk-doc-html \
---disable-introspection \
---disable-man-pages \
---disable-static \
---with-os-type='redhat'
-  make
+  ./configure --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib32 \
+  --localstatedir=/var --libexecdir=/usr/lib32/polkit-1 \
+  --enable-libsystemd-login=yes --disable-static \
+  --with-os-type=redhat
+
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make -C src/polkit polkitenumtypes.h
+  make -C src/polkit libpolkit-gobject-1.la
+  make -C src/polkitagent polkitagentenumtypes.h marshal.stamp
+  make -C src/polkitagent libpolkit-agent-1.la
 }
 
 package() {
-  cd polkit-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  rm -rf "${pkgdir}"/{etc,usr/{bin,lib,include,share}}
+  cd polkit
+  make -C src/polkit DESTDIR="$pkgdir" \
+lib_LTLIBRARIES="libpolkit-gobject-1.la" install-libLTLIBRARIES
+  make -C src/polkitagent DESTDIR="$pkgdir" \
+lib_LTLIBRARIES="libpolkit-agent-1.la" install-libLTLIBRARIES
+  make -C data DESTDIR="$pkgdir" install-pkgconfigDATA
 }
 
 # vim: ts=2 sw=2 et:


Property changes on: lib32-polkit/trunk/PKGBUILD
___
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property


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

2017-01-26 Thread Jan Steffens
Date: Friday, January 27, 2017 @ 07:36:03
  Author: heftig
Revision: 287577

https url

Modified:
  polkit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-27 07:31:36 UTC (rev 287576)
+++ PKGBUILD2017-01-27 07:36:03 UTC (rev 287577)
@@ -7,13 +7,13 @@
 pkgdesc="Application development toolkit for controlling system-wide 
privileges"
 arch=(i686 x86_64)
 license=(LGPL)
-url="http://www.freedesktop.org/wiki/Software/polkit;
+url="https://www.freedesktop.org/wiki/Software/polkit/;
 depends=(glib2 pam expat systemd js)
 makedepends=(intltool gtk-doc gobject-introspection git autoconf-archive)
 install=polkit.install
 _commit=3272a988655c3236b55bad70e9a3af20857f384b  # master
 source=("git+https://anongit.freedesktop.org/git/polkit#commit=$_commit;)
-md5sums=('SKIP')
+sha256sums=('SKIP')
 
 pkgver() {
   cd $pkgname
@@ -50,3 +50,5 @@
   chown root:102 "$pkgdir"/{etc,usr/share}/polkit-1/rules.d
   chmod 750  "$pkgdir"/{etc,usr/share}/polkit-1/rules.d
 }
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in presentproto/repos/extra-any (4 files)

2017-01-26 Thread Andreas Radke
Date: Friday, January 27, 2017 @ 07:31:36
  Author: andyrtr
Revision: 287576

archrelease: copy trunk to extra-any

Added:
  presentproto/repos/extra-any/COPYING
(from rev 287575, presentproto/trunk/COPYING)
  presentproto/repos/extra-any/PKGBUILD
(from rev 287575, presentproto/trunk/PKGBUILD)
Deleted:
  presentproto/repos/extra-any/COPYING
  presentproto/repos/extra-any/PKGBUILD

--+
 COPYING  |   42 +-
 PKGBUILD |   60 ++--
 2 files changed, 51 insertions(+), 51 deletions(-)

Deleted: COPYING
===
--- COPYING 2017-01-27 07:31:29 UTC (rev 287575)
+++ COPYING 2017-01-27 07:31:36 UTC (rev 287576)
@@ -1,21 +0,0 @@
-/*
- * Copyright © 2013 Keith Packard
- *
- * Permission to use, copy, modify, distribute, and sell this software and its
- * documentation for any purpose is hereby granted without fee, provided that
- * the above copyright notice appear in all copies and that both that copyright
- * notice and this permission notice appear in supporting documentation, and
- * that the name of the copyright holders not be used in advertising or
- * publicity pertaining to distribution of the software without specific,
- * written prior permission.  The copyright holders make no representations
- * about the suitability of this software for any purpose.  It is provided "as
- * is" without express or implied warranty.
- *
- * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
- * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
- * OF THIS SOFTWARE.
- */

Copied: presentproto/repos/extra-any/COPYING (from rev 287575, 
presentproto/trunk/COPYING)
===
--- COPYING (rev 0)
+++ COPYING 2017-01-27 07:31:36 UTC (rev 287576)
@@ -0,0 +1,21 @@
+/*
+ * Copyright © 2013 Keith Packard
+ *
+ * Permission to use, copy, modify, distribute, and sell this software and its
+ * documentation for any purpose is hereby granted without fee, provided that
+ * the above copyright notice appear in all copies and that both that copyright
+ * notice and this permission notice appear in supporting documentation, and
+ * that the name of the copyright holders not be used in advertising or
+ * publicity pertaining to distribution of the software without specific,
+ * written prior permission.  The copyright holders make no representations
+ * about the suitability of this software for any purpose.  It is provided "as
+ * is" without express or implied warranty.
+ *
+ * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+ * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+ * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+ * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
+ * OF THIS SOFTWARE.
+ */

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-27 07:31:29 UTC (rev 287575)
+++ PKGBUILD2017-01-27 07:31:36 UTC (rev 287576)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-
-pkgname=presentproto
-pkgver=1.0
-pkgrel=1
-pkgdesc="X11 Present protocol specification"
-arch=('any')
-url="https://xorg.freedesktop.org/;
-license=('custom')
-source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2
-COPYING)
-sha256sums=('812c7d48721f909a0f7a2cb1e91f6eead76159a36c4712f4579ca587552839ce'
-'5e46864ede2fda46c3cb7cfe3a7b9f9e4bd36d8d21d8010a284caa64b81d465a')
-
-build() {
-   cd $pkgname-$pkgver
-   ./configure --prefix=/usr
-   make
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR="$pkgdir/" install
-   
-# license is still missing
-# COPYING is taken from top of /usr/include/X11/extensions/presentproto.h
-install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-install -m644 ${srcdir}/COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: presentproto/repos/extra-any/PKGBUILD (from rev 287575, 
presentproto/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-27 07:31:36 UTC (rev 287576)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: AndyRTR 
+
+pkgname=presentproto
+pkgver=1.1

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

2017-01-26 Thread Andreas Radke
Date: Friday, January 27, 2017 @ 07:31:29
  Author: andyrtr
Revision: 287575

upgpkg: presentproto 1.1-1

upstream update 1.1

Modified:
  presentproto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-27 07:23:24 UTC (rev 287574)
+++ PKGBUILD2017-01-27 07:31:29 UTC (rev 287575)
@@ -2,7 +2,7 @@
 # Maintainer: AndyRTR 
 
 pkgname=presentproto
-pkgver=1.0
+pkgver=1.1
 pkgrel=1
 pkgdesc="X11 Present protocol specification"
 arch=('any')
@@ -10,7 +10,7 @@
 license=('custom')
 source=(${url}/releases/individual/proto/${pkgname}-${pkgver}.tar.bz2
 COPYING)
-sha256sums=('812c7d48721f909a0f7a2cb1e91f6eead76159a36c4712f4579ca587552839ce'
+sha256sums=('f69b23a8869f78a5898aaf53938b829c8165e597cda34f06024d43ee1e6d26b9'
 '5e46864ede2fda46c3cb7cfe3a7b9f9e4bd36d8d21d8010a284caa64b81d465a')
 
 build() {


[arch-commits] Commit in system-config-printer/repos (6 files)

2017-01-26 Thread Andreas Radke
Date: Friday, January 27, 2017 @ 07:23:24
  Author: andyrtr
Revision: 287574

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

Added:
  system-config-printer/repos/testing-i686/
  system-config-printer/repos/testing-i686/PKGBUILD
(from rev 287573, system-config-printer/trunk/PKGBUILD)
  system-config-printer/repos/testing-i686/pass_libgnome_keyring_missing.diff
(from rev 287573, 
system-config-printer/trunk/pass_libgnome_keyring_missing.diff)
  system-config-printer/repos/testing-x86_64/
  system-config-printer/repos/testing-x86_64/PKGBUILD
(from rev 287573, system-config-printer/trunk/PKGBUILD)
  system-config-printer/repos/testing-x86_64/pass_libgnome_keyring_missing.diff
(from rev 287573, 
system-config-printer/trunk/pass_libgnome_keyring_missing.diff)

---+
 testing-i686/PKGBUILD |   58 
 testing-i686/pass_libgnome_keyring_missing.diff   |   11 +++
 testing-x86_64/PKGBUILD   |   58 
 testing-x86_64/pass_libgnome_keyring_missing.diff |   11 +++
 4 files changed, 138 insertions(+)

Copied: system-config-printer/repos/testing-i686/PKGBUILD (from rev 287573, 
system-config-printer/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-27 07:23:24 UTC (rev 287574)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: AndyRTR 
+# Contributor: Andrea Scarpino 
+
+pkgname=system-config-printer
+pkgver=1.5.9
+pkgrel=2
+pkgdesc="A CUPS printer configuration tool and status applet"
+url="https://github.com/zdohnal/system-config-printer;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('python-pycups' 'python-dbus' 'python-pycurl' 'libnotify'
+ 'python-requests' 'python-gobject' 'gtk3' 'python-cairo')
+makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
+optdepends=(#'libgnome-keyring: password management'
+'python-pysmbc: SMB browser support'
+'python-packagekit: to install drivers with PackageKit'
+'cups-pk-helper: PolicyKit helper to configure cups with 
fine-grained privileges')
+#source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig})
+source=(https://github.com/zdohnal/system-config-printer/archive/v${pkgver}.tar.gz
+   pass_libgnome_keyring_missing.diff)
+sha256sums=('c8adf4468a465a2640ac365498f551e8a8645a09027e24004fd390e40b6262e3'
+'7d901711ca8fd0470342bc03bf4458fb2552cebdfa141acb435b99cfde4d2621')
+#validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3' #Tim Waugh 
 
+#  '4629AFE960EC20BEC12E3104B7C20D079491EA63') #Tim Waugh 

+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  
+  # make it actually work without libgnome-keyring
+  # https://bugs.archlinux.org/task/52607, 
https://github.com/zdohnal/system-config-printer/issues/51
+  patch -Np1 -i ../pass_libgnome_keyring_missing.diff
+  
+  touch README ChangeLog
+  autoreconf -fi
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc \
+--with-udevdir=/usr/lib/udev --with-udev-rules 
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+
+  # Compile *.pyc
+  find "${pkgdir}" -name '*.py' -exec python -mpy_compile {} +
+  # Compile *.pyo
+  find "${pkgdir}" -name '*.py' -exec python -O -mpy_compile {} +
+  
+  # new cups 2.0.0 service naming
+  sed -i "s|cups.socket|org.cups.cupsd.socket|g" 
${pkgdir}/usr/lib/systemd/system/configure-printer@.service
+}

Copied: 
system-config-printer/repos/testing-i686/pass_libgnome_keyring_missing.diff 
(from rev 287573, 
system-config-printer/trunk/pass_libgnome_keyring_missing.diff)
===
--- testing-i686/pass_libgnome_keyring_missing.diff 
(rev 0)
+++ testing-i686/pass_libgnome_keyring_missing.diff 2017-01-27 07:23:24 UTC 
(rev 287574)
@@ -0,0 +1,11 @@
+--- system-config-printer-1.5.9/jobviewer.py   2017-01-09 12:38:09.0 
+0100
 system-config-printer-1.5.9/jobviewer.py.new   2017-01-27 
08:14:00.163315284 +0100
+@@ -59,6 +59,8 @@
+ USE_KEYRING=True
+ except ImportError:
+ USE_KEYRING=False
++except ValueError:
++USE_KEYRING=False
+ 
+ import gettext
+ gettext.install(domain=config.PACKAGE, localedir=config.localedir)

Copied: system-config-printer/repos/testing-x86_64/PKGBUILD (from rev 287573, 
system-config-printer/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-27 07:23:24 UTC (rev 287574)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: 

[arch-commits] Commit in system-config-printer/trunk (2 files)

2017-01-26 Thread Andreas Radke
Date: Friday, January 27, 2017 @ 07:23:10
  Author: andyrtr
Revision: 287573

upgpkg: system-config-printer 1.5.9-2

make it work againg without deprecated libgnome-keyring; FS#52607

Added:
  system-config-printer/trunk/pass_libgnome_keyring_missing.diff
Modified:
  system-config-printer/trunk/PKGBUILD

+
 PKGBUILD   |   15 +++
 pass_libgnome_keyring_missing.diff |   11 +++
 2 files changed, 22 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-27 06:59:48 UTC (rev 287572)
+++ PKGBUILD2017-01-27 07:23:10 UTC (rev 287573)
@@ -4,7 +4,7 @@
 
 pkgname=system-config-printer
 pkgver=1.5.9
-pkgrel=1
+pkgrel=2
 pkgdesc="A CUPS printer configuration tool and status applet"
 url="https://github.com/zdohnal/system-config-printer;
 arch=('i686' 'x86_64')
@@ -12,18 +12,25 @@
 depends=('python-pycups' 'python-dbus' 'python-pycurl' 'libnotify'
  'python-requests' 'python-gobject' 'gtk3' 'python-cairo')
 makedepends=('intltool' 'xmlto' 'docbook-xsl' 'desktop-file-utils')
-optdepends=('libgnome-keyring: password management'
+optdepends=(#'libgnome-keyring: password management'
 'python-pysmbc: SMB browser support'
 'python-packagekit: to install drivers with PackageKit'
 'cups-pk-helper: PolicyKit helper to configure cups with 
fine-grained privileges')
 
#source=(http://cyberelk.net/tim/data/${pkgname}/${pkgver%*.*}/${pkgname}-${pkgver}.tar.xz{,.sig})
-source=(https://github.com/zdohnal/system-config-printer/archive/v${pkgver}.tar.gz)
-sha256sums=('c8adf4468a465a2640ac365498f551e8a8645a09027e24004fd390e40b6262e3')
+source=(https://github.com/zdohnal/system-config-printer/archive/v${pkgver}.tar.gz
+   pass_libgnome_keyring_missing.diff)
+sha256sums=('c8adf4468a465a2640ac365498f551e8a8645a09027e24004fd390e40b6262e3'
+'7d901711ca8fd0470342bc03bf4458fb2552cebdfa141acb435b99cfde4d2621')
 #validpgpkeys=('02EA6349CE58E1BCAA8514F57955128DA3A1ABD3' #Tim Waugh 
 
 #  '4629AFE960EC20BEC12E3104B7C20D079491EA63') #Tim Waugh 

 
 prepare() {
   cd ${pkgname}-${pkgver}
+  
+  # make it actually work without libgnome-keyring
+  # https://bugs.archlinux.org/task/52607, 
https://github.com/zdohnal/system-config-printer/issues/51
+  patch -Np1 -i ../pass_libgnome_keyring_missing.diff
+  
   touch README ChangeLog
   autoreconf -fi
 }

Added: pass_libgnome_keyring_missing.diff
===
--- pass_libgnome_keyring_missing.diff  (rev 0)
+++ pass_libgnome_keyring_missing.diff  2017-01-27 07:23:10 UTC (rev 287573)
@@ -0,0 +1,11 @@
+--- system-config-printer-1.5.9/jobviewer.py   2017-01-09 12:38:09.0 
+0100
 system-config-printer-1.5.9/jobviewer.py.new   2017-01-27 
08:14:00.163315284 +0100
+@@ -59,6 +59,8 @@
+ USE_KEYRING=True
+ except ImportError:
+ USE_KEYRING=False
++except ValueError:
++USE_KEYRING=False
+ 
+ import gettext
+ gettext.install(domain=config.PACKAGE, localedir=config.localedir)


[arch-commits] Commit in vhba-module/repos (14 files)

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 07:00:22
  Author: tpowa
Revision: 209202

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

Added:
  vhba-module/repos/community-i686/60-vhba.rules
(from rev 209201, vhba-module/repos/community-testing-i686/60-vhba.rules)
  vhba-module/repos/community-i686/PKGBUILD
(from rev 209201, vhba-module/repos/community-testing-i686/PKGBUILD)
  vhba-module/repos/community-i686/vhba-module.install
(from rev 209201, 
vhba-module/repos/community-testing-i686/vhba-module.install)
  vhba-module/repos/community-x86_64/60-vhba.rules
(from rev 209201, vhba-module/repos/community-testing-x86_64/60-vhba.rules)
  vhba-module/repos/community-x86_64/PKGBUILD
(from rev 209201, vhba-module/repos/community-testing-x86_64/PKGBUILD)
  vhba-module/repos/community-x86_64/vhba-module.install
(from rev 209201, 
vhba-module/repos/community-testing-x86_64/vhba-module.install)
Deleted:
  vhba-module/repos/community-i686/60-vhba.rules
  vhba-module/repos/community-i686/PKGBUILD
  vhba-module/repos/community-i686/vhba-module.install
  vhba-module/repos/community-testing-i686/
  vhba-module/repos/community-testing-x86_64/
  vhba-module/repos/community-x86_64/60-vhba.rules
  vhba-module/repos/community-x86_64/PKGBUILD
  vhba-module/repos/community-x86_64/vhba-module.install

--+
 /60-vhba.rules   |2 
 /PKGBUILD|   88 +
 /vhba-module.install |   42 +++
 community-i686/60-vhba.rules |1 
 community-i686/PKGBUILD  |   44 
 community-i686/vhba-module.install   |   21 ---
 community-x86_64/60-vhba.rules   |1 
 community-x86_64/PKGBUILD|   44 
 community-x86_64/vhba-module.install |   21 ---
 9 files changed, 132 insertions(+), 132 deletions(-)

Deleted: community-i686/60-vhba.rules
===
--- community-i686/60-vhba.rules2017-01-27 07:00:19 UTC (rev 209201)
+++ community-i686/60-vhba.rules2017-01-27 07:00:22 UTC (rev 209202)
@@ -1 +0,0 @@
-ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-i686/60-vhba.rules (from rev 209201, 
vhba-module/repos/community-testing-i686/60-vhba.rules)
===
--- community-i686/60-vhba.rules(rev 0)
+++ community-i686/60-vhba.rules2017-01-27 07:00:22 UTC (rev 209202)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-27 07:00:19 UTC (rev 209201)
+++ community-i686/PKGBUILD 2017-01-27 07:00:22 UTC (rev 209202)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif 
-# Contributor: Mateusz Herych 
-# Contributor: Charles Lindsay 
-
-pkgname=vhba-module
-pkgver=20161009
-_extramodules=extramodules-4.8-ARCH
-pkgrel=2
-pkgdesc="Kernel module that emulates SCSI devices"
-arch=('i686' 'x86_64')
-url="http://cdemu.sourceforge.net/;
-license=('GPL')
-depends=('linux>=4.8' 'linux<4.9')
-makedepends=('linux-headers>=4.8' 'linux-headers<4.9')
-options=(!makeflags)
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
-'60-vhba.rules')
-sha256sums=('cd062d8bd61ccb8137622f837a0dadb771cc935981d8bccb2ad4de0bd11f33d9'
-'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  make KDIR=/usr/lib/modules/$_kernver/build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm644 vhba.ko "$pkgdir/usr/lib/modules/$_extramodules/vhba.ko"
-  install -Dm644 ../60-vhba.rules "$pkgdir/usr/lib/udev/rules.d/60-vhba.rules"
-
-  cd $startdir
-  cp -f $install ${install}.pkg
-  true && install=${install}.pkg
-  sed -i "s/EXTRAMODULES=.*/EXTRAMODULES=$_extramodules/" $install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-i686/PKGBUILD (from rev 209201, 
vhba-module/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-27 07:00:22 UTC (rev 209202)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgname=vhba-module
+pkgver=20161009
+_extramodules=extramodules-4.9-ARCH

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

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 07:00:24
  Author: tpowa
Revision: 209203

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

Added:
  virtualbox-modules-arch/repos/community-i686/PKGBUILD
(from rev 209202, 
virtualbox-modules-arch/repos/community-testing-i686/PKGBUILD)
  virtualbox-modules-arch/repos/community-i686/virtualbox-modules-arch.install
(from rev 209202, 
virtualbox-modules-arch/repos/community-testing-i686/virtualbox-modules-arch.install)
  virtualbox-modules-arch/repos/community-x86_64/PKGBUILD
(from rev 209202, 
virtualbox-modules-arch/repos/community-testing-x86_64/PKGBUILD)
  virtualbox-modules-arch/repos/community-x86_64/virtualbox-modules-arch.install
(from rev 209202, 
virtualbox-modules-arch/repos/community-testing-x86_64/virtualbox-modules-arch.install)
Deleted:
  virtualbox-modules-arch/repos/community-i686/PKGBUILD
  virtualbox-modules-arch/repos/community-i686/virtualbox-modules-arch.install
  virtualbox-modules-arch/repos/community-testing-i686/
  virtualbox-modules-arch/repos/community-testing-x86_64/
  virtualbox-modules-arch/repos/community-x86_64/PKGBUILD
  virtualbox-modules-arch/repos/community-x86_64/virtualbox-modules-arch.install

--+
 /PKGBUILD|  148 +
 /virtualbox-modules-arch.install |   46 ++
 community-i686/PKGBUILD  |   74 --
 community-i686/virtualbox-modules-arch.install   |   23 ---
 community-x86_64/PKGBUILD|   74 --
 community-x86_64/virtualbox-modules-arch.install |   23 ---
 6 files changed, 194 insertions(+), 194 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-27 07:00:22 UTC (rev 209202)
+++ community-i686/PKGBUILD 2017-01-27 07:00:24 UTC (rev 209203)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Ionut Biru 
-
-pkgbase=virtualbox-modules-arch
-pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
-pkgver=5.1.12
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://virtualbox.org'
-license=('GPL')
-makedepends=('linux>=4.8' 'linux<4.9'
- 'linux-headers>=4.8' 'linux-headers<4.9'
- "virtualbox-host-dkms>=$pkgver"
- "virtualbox-guest-dkms>=$pkgver")
-
-# remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-4.8-ARCH
-
-package_virtualbox-host-modules-arch(){
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
-  depends=('linux>=4.8' 'linux<4.9')
-  replaces=('virtualbox-modules' 'virtualbox-host-modules')
-  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
-'virtualbox-host-dkms')
-  provides=('VIRTUALBOX-HOST-MODULES')
-  install=virtualbox-modules-arch.install
-
-  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
-  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
-  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
-
-  # compress earch modules individually
-  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
-
-  # systemd module loading
-  install -Dm644 /dev/null "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-  printf "vboxdrv\nvboxpci\nvboxnetadp\nvboxnetflt\n" >  \
-"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-}
-
-package_virtualbox-guest-modules-arch(){
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
-  license=('GPL')
-  depends=('linux>=4.8' 'linux<4.9')
-  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
-  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
- 'virtualbox-guest-dkms')
-  provides=('VIRTUALBOX-GUEST-MODULES')
-  install=virtualbox-modules-arch.install
-
-  cd "/var/lib/dkms/vboxguest/${pkgver}_OSE/$_kernver/$CARCH/module"
-  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
-  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
-
-  # compress earch modules individually
-  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
-
-  # systemd module loading
-  install -Dm644 /dev/null "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-  printf "vboxguest\nvboxsf\nvboxvideo\n" >  \
-"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:
-
-
-
-
-
-
-

Copied: virtualbox-modules-arch/repos/community-i686/PKGBUILD (from rev 209202, 
virtualbox-modules-arch/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-27 07:00:24 UTC (rev 209203)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Sébastien 

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

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 07:00:15
  Author: tpowa
Revision: 209199

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

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

---+
 /PKGBUILD |   90 
 /bbswitch.install |   24 +
 community-i686/PKGBUILD   |   45 --
 community-i686/bbswitch.install   |   12 
 community-x86_64/PKGBUILD |   45 --
 community-x86_64/bbswitch.install |   12 
 6 files changed, 114 insertions(+), 114 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-27 07:00:12 UTC (rev 209198)
+++ community-i686/PKGBUILD 2017-01-27 07:00:15 UTC (rev 209199)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: M0Rf30
-# Contributor: Samsagax 
-
-pkgbase=bbswitch
-pkgname=(bbswitch bbswitch-dkms)
-pkgver=0.8
-_extramodules=extramodules-4.8-ARCH # Don't forget to update bbswitch.install
-pkgrel=55
-pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
-arch=('i686' 'x86_64')
-url="http://github.com/Bumblebee-Project/bbswitch;
-license=('GPL')
-makedepends=('linux-headers>=4.8' 'linux-headers<4.9' 'linux>=4.8' 'linux<4.9')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
-md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-
-  make KDIR=/lib/modules/${_kernver}/build
-}
-
-package_bbswitch() {
-  depends=('linux>=4.8' 'linux<4.9')
-  install=bbswitch.install
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-   
-  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
-  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
-}
-
-package_bbswitch-dkms() {
-  depends=('dkms')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  install -dm755 "${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
-
-  install -Dm644 Makefile bbswitch.c dkms/dkms.conf 
"${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
-}

Copied: bbswitch/repos/community-i686/PKGBUILD (from rev 209198, 
bbswitch/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-27 07:00:15 UTC (rev 209199)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+_extramodules=extramodules-4.9-ARCH # Don't forget to update bbswitch.install
+pkgrel=61
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('i686' 'x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+makedepends=('linux-headers>=4.9' 'linux-headers<4.10' 'linux>=4.9' 
'linux<4.10')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  depends=('linux>=4.9' 'linux<4.10')
+  install=bbswitch.install
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  install -dm755 "${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
+
+  install -Dm644 Makefile bbswitch.c dkms/dkms.conf 
"${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
+}

Deleted: community-i686/bbswitch.install
===
--- community-i686/bbswitch.install 2017-01-27 07:00:12 

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

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 07:00:19
  Author: tpowa
Revision: 209201

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

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

---+
 /PKGBUILD |  106 
 /tp_smapi.install |   26 
 community-i686/PKGBUILD   |   53 --
 community-i686/tp_smapi.install   |   13 
 community-x86_64/PKGBUILD |   53 --
 community-x86_64/tp_smapi.install |   13 
 6 files changed, 132 insertions(+), 132 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-27 07:00:17 UTC (rev 209200)
+++ community-i686/PKGBUILD 2017-01-27 07:00:19 UTC (rev 209201)
@@ -1,53 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: xduugu
-# Contributor: nh2
-# Contributor: Steven Davidovitz 
-# Contributor: Nick B 
-# Contributor: Christof Musik 
-# Contributor: Stefan Rupp 
-# Contributor: Ignas Anikevicius 
-
-pkgname=tp_smapi
-_pkgname=tp-smapi
-pkgver=0.42
-_extramodules=extramodules-4.8-ARCH
-pkgrel=5
-pkgdesc="Modules for ThinkPad's SMAPI functionality"
-arch=('i686' 'x86_64')
-url='https://github.com/evgeni/tp_smapi'
-license=('GPL')
-depends=('linux>=4.8' 'linux<4.9')
-makedepends=('linux-headers>=4.8' 'linux-headers<4.9')
-install="${pkgname}.install"
-source=("https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz;)
-md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')
-
-build() {
-  cd "$srcdir/$pkgname-$_pkgname-$pkgver"
-
-  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-  make HDAPS=1 KVER="$_kernver" KBASE="/usr/lib/modules/$_kernver"
-}
-
-package() {
-  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-
-  make -C "/usr/lib/modules/${_kernver}/build" \
-INSTALL_MOD_PATH="${pkgdir}/usr" \
-M="$srcdir/$pkgname-$_pkgname-$pkgver" modules_install
-
-  cd "${pkgdir}/usr/lib/modules"
-  mv "${_kernver}/extra" "${_extramodules}"
-  rmdir "${_kernver}"
-
-  # compress kernel modules
-  find "${pkgdir}" -name "*.ko" -exec gzip -9 {} +
-
-  # load module on startup
-  echo tp_smapi > "${srcdir}/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.conf" 
"${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf"
-
-  # update kernel version in install file
-  sed -ri "s|^(extramodules=).*\$|\1/usr/lib/modules/${_extramodules}|" \
-"${startdir}/${pkgname}.install"
-}

Copied: tp_smapi/repos/community-i686/PKGBUILD (from rev 209200, 
tp_smapi/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-27 07:00:19 UTC (rev 209201)
@@ -0,0 +1,53 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+_pkgname=tp-smapi
+pkgver=0.42
+_extramodules=extramodules-4.9-ARCH
+pkgrel=10
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.9' 'linux<4.10')
+makedepends=('linux-headers>=4.9' 'linux-headers<4.10')
+install="${pkgname}.install"
+source=("https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz;)
+md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')
+
+build() {
+  cd "$srcdir/$pkgname-$_pkgname-$pkgver"
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make HDAPS=1 KVER="$_kernver" KBASE="/usr/lib/modules/$_kernver"
+}
+
+package() {
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make -C "/usr/lib/modules/${_kernver}/build" \
+INSTALL_MOD_PATH="${pkgdir}/usr" \
+M="$srcdir/$pkgname-$_pkgname-$pkgver" modules_install
+
+  cd "${pkgdir}/usr/lib/modules"
+  mv "${_kernver}/extra" "${_extramodules}"
+  rmdir "${_kernver}"
+
+  # compress kernel modules
+  find "${pkgdir}" -name "*.ko" -exec gzip -9 {} +
+
+  

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

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 07:00:12
  Author: tpowa
Revision: 209198

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

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

+
 /PKGBUILD  |   94 +++
 /acpi_call.install |   28 ++
 community-i686/PKGBUILD|   47 -
 community-i686/acpi_call.install   |   14 -
 community-x86_64/PKGBUILD  |   47 -
 community-x86_64/acpi_call.install |   14 -
 6 files changed, 122 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-27 04:38:50 UTC (rev 209197)
+++ community-i686/PKGBUILD 2017-01-27 07:00:12 UTC (rev 209198)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: mortzu 
-# Contributor: fnord0 
-
-pkgname=acpi_call
-pkgver=1.1.0
-pkgrel=51
-_extramodules=extramodules-4.8-ARCH
-pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
-arch=('i686' 'x86_64')
-url='https://github.com/mkottman/acpi_call'
-license=('GPL')
-depends=('linux>=4.8' 'linux<4.9')
-makedepends=('linux-headers>=4.8' 'linux-headers<4.9')
-install='acpi_call.install'
-source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
-sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
-
-prepare() {
-  cd acpi_call-${pkgver}
-
-  # Fix build with Linux >= 3.17
-  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
-}
-
-build() {
-  cd acpi_call-${pkgver}
-
-  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-
-  make KVERSION="${_kernver}"
-}
-
-package() {
-  cd acpi_call-${pkgver}
-
-  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
-  install -m 644 acpi_call.ko "${pkgdir}"/usr/lib/modules/${_extramodules}
-  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/acpi_call.ko
-  echo acpi_call > "${pkgdir}"/usr/lib/modules-load.d/acpi_call.conf
-
-  install -dm 755 "${pkgdir}"/usr/share/acpi_call
-  cp -dr --no-preserve='ownership' {examples,support} 
"${pkgdir}"/usr/share/acpi_call/
-}
-
-# vim: ts=2 sw=2 et:

Copied: acpi_call/repos/community-i686/PKGBUILD (from rev 209197, 
acpi_call/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-27 07:00:12 UTC (rev 209198)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=56
+_extramodules=extramodules-4.9-ARCH
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url='https://github.com/mkottman/acpi_call'
+license=('GPL')
+depends=('linux>=4.9' 'linux<4.10')
+makedepends=('linux-headers>=4.9' 'linux-headers<4.10')
+install='acpi_call.install'
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-${pkgver}
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+}
+
+build() {
+  cd acpi_call-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd acpi_call-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 acpi_call.ko "${pkgdir}"/usr/lib/modules/${_extramodules}
+  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/acpi_call.ko
+  echo acpi_call > "${pkgdir}"/usr/lib/modules-load.d/acpi_call.conf
+
+  install -dm 755 "${pkgdir}"/usr/share/acpi_call
+  cp -dr --no-preserve='ownership' {examples,support} 
"${pkgdir}"/usr/share/acpi_call/
+}
+
+# vim: ts=2 sw=2 et:

Deleted: 

[arch-commits] Commit in r8168/repos (14 files)

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 07:00:17
  Author: tpowa
Revision: 209200

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

Added:
  r8168/repos/community-i686/PKGBUILD
(from rev 209199, r8168/repos/community-testing-i686/PKGBUILD)
  r8168/repos/community-i686/linux-4.5.patch
(from rev 209199, r8168/repos/community-testing-i686/linux-4.5.patch)
  r8168/repos/community-i686/r8168.install
(from rev 209199, r8168/repos/community-testing-i686/r8168.install)
  r8168/repos/community-x86_64/PKGBUILD
(from rev 209199, r8168/repos/community-testing-x86_64/PKGBUILD)
  r8168/repos/community-x86_64/linux-4.5.patch
(from rev 209199, r8168/repos/community-testing-x86_64/linux-4.5.patch)
  r8168/repos/community-x86_64/r8168.install
(from rev 209199, r8168/repos/community-testing-x86_64/r8168.install)
Deleted:
  r8168/repos/community-i686/PKGBUILD
  r8168/repos/community-i686/linux-4.5.patch
  r8168/repos/community-i686/r8168.install
  r8168/repos/community-testing-i686/
  r8168/repos/community-testing-x86_64/
  r8168/repos/community-x86_64/PKGBUILD
  r8168/repos/community-x86_64/linux-4.5.patch
  r8168/repos/community-x86_64/r8168.install

--+
 /PKGBUILD|  102 +
 /linux-4.5.patch |   26 +
 /r8168.install   |   34 
 community-i686/PKGBUILD  |   51 --
 community-i686/linux-4.5.patch   |   13 
 community-i686/r8168.install |   17 --
 community-x86_64/PKGBUILD|   51 --
 community-x86_64/linux-4.5.patch |   13 
 community-x86_64/r8168.install   |   17 --
 9 files changed, 162 insertions(+), 162 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-27 07:00:15 UTC (rev 209199)
+++ community-i686/PKGBUILD 2017-01-27 07:00:17 UTC (rev 209200)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Bob Fanger < bfanger(at)gmail >
-# Contributor: Filip , Det < nimetonmaili(at)gmail >
-
-pkgname=r8168
-pkgver=8.043.02
-pkgrel=1
-pkgdesc="A kernel module for Realtek 8168 network cards"
-url="http://www.realtek.com.tw;
-license=("GPL")
-arch=('i686' 'x86_64')
-depends=('glibc' 'linux')
-makedepends=('linux-headers')
-install=$pkgname.install
-source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
-linux-4.5.patch)
-sha256sums=('ea22aa1dfda20615f5e114f982f7e61385f871f682eea0c154245760a439abc4'
-'e05a4bccf28beecc97db246064a5fe80d1303476b76086bd262c9c8db82b2e6e')
-
-prepare() {
-   cd "$pkgname-$pkgver"
-   patch -p1 -i ../linux-4.5.patch
-}
-
-build() {
-   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
-   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)
-
-   cd "$pkgname-$pkgver"
-
-   # avoid using the Makefile directly -- it doesn't understand
-   # any kernel but the current.
-   make -C /usr/lib/modules/$KERNEL_VERSION/build \
-   SUBDIRS="$srcdir/$pkgname-$pkgver/src" \
-   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
-   modules
-}
-
-package() {
-   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
-   depends=("linux>=$_kernver" "linux<${_kernver/.*}.$(expr ${_kernver/*.} 
+ 1)")
-   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)
-   msg "Kernel = $KERNEL_VERSION"
-
-   cd "$pkgname-$pkgver"
-   install -Dm644 src/$pkgname.ko 
"$pkgdir/usr/lib/modules/extramodules-$_kernver-ARCH/$pkgname.ko"
-   find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
-
-   sed -i "s|extramodules-.*-ARCH|extramodules-$_kernver-ARCH|" 
"$startdir/$pkgname.install"
-}

Copied: r8168/repos/community-i686/PKGBUILD (from rev 209199, 
r8168/repos/community-testing-i686/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-27 07:00:17 UTC (rev 209200)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.043.02
+pkgrel=4
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+install=$pkgname.install
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
+linux-4.5.patch)
+sha256sums=('ea22aa1dfda20615f5e114f982f7e61385f871f682eea0c154245760a439abc4'
+

[arch-commits] Commit in kbd/repos (18 files)

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 06:59:48
  Author: tpowa
Revision: 287572

db-move: moved kbd from [testing] to [core] (i686, x86_64)

Added:
  kbd/repos/core-i686/PKGBUILD
(from rev 287571, kbd/repos/testing-i686/PKGBUILD)
  kbd/repos/core-i686/fix-dvorak-es.patch
(from rev 287571, kbd/repos/testing-i686/fix-dvorak-es.patch)
  kbd/repos/core-i686/fix-euro2.patch
(from rev 287571, kbd/repos/testing-i686/fix-euro2.patch)
  kbd/repos/core-i686/fix-keymap-loading-1.15.5.patch
(from rev 287571, kbd/repos/testing-i686/fix-keymap-loading-1.15.5.patch)
  kbd/repos/core-x86_64/PKGBUILD
(from rev 287571, kbd/repos/testing-x86_64/PKGBUILD)
  kbd/repos/core-x86_64/fix-dvorak-es.patch
(from rev 287571, kbd/repos/testing-x86_64/fix-dvorak-es.patch)
  kbd/repos/core-x86_64/fix-euro2.patch
(from rev 287571, kbd/repos/testing-x86_64/fix-euro2.patch)
  kbd/repos/core-x86_64/fix-keymap-loading-1.15.5.patch
(from rev 287571, kbd/repos/testing-x86_64/fix-keymap-loading-1.15.5.patch)
Deleted:
  kbd/repos/core-i686/PKGBUILD
  kbd/repos/core-i686/fix-dvorak-es.patch
  kbd/repos/core-i686/fix-euro2.patch
  kbd/repos/core-i686/fix-keymap-loading-1.15.5.patch
  kbd/repos/core-x86_64/PKGBUILD
  kbd/repos/core-x86_64/fix-dvorak-es.patch
  kbd/repos/core-x86_64/fix-euro2.patch
  kbd/repos/core-x86_64/fix-keymap-loading-1.15.5.patch
  kbd/repos/testing-i686/
  kbd/repos/testing-x86_64/

-+
 /PKGBUILD   |  102 ++
 /fix-dvorak-es.patch|   22 +
 /fix-euro2.patch|   18 
 /fix-keymap-loading-1.15.5.patch|   94 +++
 core-i686/PKGBUILD  |   46 ---
 core-i686/fix-dvorak-es.patch   |   11 --
 core-i686/fix-euro2.patch   |9 --
 core-i686/fix-keymap-loading-1.15.5.patch   |   47 ---
 core-x86_64/PKGBUILD|   46 ---
 core-x86_64/fix-dvorak-es.patch |   11 --
 core-x86_64/fix-euro2.patch |9 --
 core-x86_64/fix-keymap-loading-1.15.5.patch |   47 ---
 12 files changed, 236 insertions(+), 226 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2017-01-27 06:59:45 UTC (rev 287571)
+++ core-i686/PKGBUILD  2017-01-27 06:59:48 UTC (rev 287572)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski 
-
-pkgname=kbd
-pkgver=2.0.3
-pkgrel=1
-pkgdesc="Keytable files and keyboard utilities"
-arch=('i686' 'x86_64')
-url="http://www.kbd-project.org;
-license=('GPL')
-depends=('glibc' 'pam')
-makedepends=('check')
-source=(ftp://ftp.altlinux.org/pub/people/legion/kbd/${pkgname}-${pkgver}.tar.gz
-'fix-euro2.patch')
-provides=('vlock')
-conflicts=('vlock')
-replaces=('vlock')
-md5sums=('d636ee56f35233b5cd6f855c08372489'
- 'd869200acbc0aab6a9cafa43cb140d4e')
-
-prepare() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  # rename keymap files with the same names
-  # this is needed because when only name of keymap is specified
-  # loadkeys loads the first keymap it can find, which is bad (see FS#13837)
-  # this should be removed when upstream adopts the change
-  mv data/keymaps/i386/qwertz/cz{,-qwertz}.map
-  mv data/keymaps/i386/olpc/es{,-olpc}.map
-  mv data/keymaps/i386/olpc/pt{,-olpc}.map
-  mv data/keymaps/i386/dvorak/no{,-dvorak}.map
-  mv data/keymaps/i386/fgGIod/trf{,-fgGIod}.map
-  mv data/keymaps/i386/colemak/{en-latin9,colemak}.map
-  # fix euro2 #28213
-  patch -Np1 -i ../fix-euro2.patch
-}
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --datadir=/usr/share/kbd --mandir=/usr/share/man
-  make KEYCODES_PROGS=yes RESIZECONS_PROGS=yes
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make KEYCODES_PROGS=yes RESIZECONS_PROGS=yes DESTDIR=${pkgdir} install
-}

Copied: kbd/repos/core-i686/PKGBUILD (from rev 287571, 
kbd/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2017-01-27 06:59:48 UTC (rev 287572)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Tobias Powalowski 
+
+pkgname=kbd
+pkgver=2.0.4
+pkgrel=1
+pkgdesc="Keytable files and keyboard utilities"
+arch=('i686' 'x86_64')
+url="http://www.kbd-project.org;
+license=('GPL')
+depends=('glibc' 'pam')
+makedepends=('check')
+source=(ftp://ftp.kernel.org/pub/linux/utils/${pkgname}/${pkgname}-${pkgver}.tar.gz
+ftp://ftp.kernel.org/pub/linux/utils/kbd/${pkgname}-${pkgver}.tar.sign
+'fix-euro2.patch')
+provides=('vlock')
+conflicts=('vlock')
+replaces=('vlock')
+validpgpkeys=(
+  '7F2A3D07298149A0793C9A4EA45ABA544CFFD434' #Alexey Gladkov 
+ )
+
+prepare() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # rename keymap files with 

[arch-commits] Commit in nvidia-340xx/repos (12 files)

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 06:59:22
  Author: tpowa
Revision: 287570

db-move: moved nvidia-340xx from [testing] to [extra] (i686, x86_64)

Added:
  nvidia-340xx/repos/extra-i686/PKGBUILD
(from rev 287569, nvidia-340xx/repos/testing-i686/PKGBUILD)
  nvidia-340xx/repos/extra-i686/fs52243.patch
(from rev 287569, nvidia-340xx/repos/testing-i686/fs52243.patch)
  nvidia-340xx/repos/extra-i686/nvidia-340xx.install
(from rev 287569, nvidia-340xx/repos/testing-i686/nvidia-340xx.install)
  nvidia-340xx/repos/extra-x86_64/PKGBUILD
(from rev 287569, nvidia-340xx/repos/testing-x86_64/PKGBUILD)
  nvidia-340xx/repos/extra-x86_64/fs52243.patch
(from rev 287569, nvidia-340xx/repos/testing-x86_64/fs52243.patch)
  nvidia-340xx/repos/extra-x86_64/nvidia-340xx.install
(from rev 287569, nvidia-340xx/repos/testing-x86_64/nvidia-340xx.install)
Deleted:
  nvidia-340xx/repos/extra-i686/PKGBUILD
  nvidia-340xx/repos/extra-i686/nvidia-340xx.install
  nvidia-340xx/repos/extra-x86_64/PKGBUILD
  nvidia-340xx/repos/extra-x86_64/nvidia-340xx.install
  nvidia-340xx/repos/testing-i686/
  nvidia-340xx/repos/testing-x86_64/

---+
 /PKGBUILD |  144 
 /nvidia-340xx.install |   26 ++
 extra-i686/PKGBUILD   |   68 -
 extra-i686/fs52243.patch  |   14 +++
 extra-i686/nvidia-340xx.install   |   13 ---
 extra-x86_64/PKGBUILD |   68 -
 extra-x86_64/fs52243.patch|   14 +++
 extra-x86_64/nvidia-340xx.install |   13 ---
 8 files changed, 198 insertions(+), 162 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-27 06:59:18 UTC (rev 287569)
+++ extra-i686/PKGBUILD 2017-01-27 06:59:22 UTC (rev 287570)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Baechler 
-
-pkgbase=nvidia-340xx
-pkgname=(nvidia-340xx nvidia-340xx-dkms)
-pkgver=340.101
-_extramodules=extramodules-4.8-ARCH
-pkgrel=4
-arch=('i686' 'x86_64')
-url="http://www.nvidia.com/;
-makedepends=("nvidia-340xx-libgl=${pkgver}" "nvidia-340xx-utils=${pkgver}" 
'linux' 'linux-headers>=4.8' 'linux-headers<4.9')
-conflicts=('nvidia')
-license=('custom')
-options=(!strip)
-source_i686+=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;)
-source_x86_64+=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-sha512sums_i686=('5866f2b4e6e22863c54d9fc08c9c88c9c911df2396d0ceaca653ded04589ea3a9e4550ed58f4b182b0a42cfe205ef643fe43ea709478e5df5360a7f74fa87f41')
-sha512sums_x86_64=('d5bea7315346e93a7cccd3d99900f4dad51dfa6e93382d4d61c314d0ab97dea063169b8d666d3a3373dea33b4322f945c3a18ed0fc3308e3f89af6f22f373abc')
-
-[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
-[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
-
-prepare() {
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}"
-# patches here
-
-cp -a kernel kernel-dkms
-}
-
-build() {
-_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-cd "${_pkg}"/kernel
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-
-cd uvm
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-}
-
-package_nvidia-340xx() {
-pkgdesc="NVIDIA drivers for linux, 340xx legacy branch"
-depends=('linux>=4.8' 'linux<4.9' 'libgl' "nvidia-340xx-utils=${pkgver}")
-conflict+=('nvidia-340xx-dkms')
-install=nvidia-340xx.install
-
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
-install -D -m644 "${srcdir}/${_pkg}/kernel/uvm/nvidia-uvm.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
-gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko
-install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
-echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-}
-
-package_nvidia-340xx-dkms() {
-pkgdesc="NVIDIA driver sources for linux, 340xx legacy branch"
-depends=('dkms' "nvidia-340xx-utils=$pkgver")
-optdepends=('linux-headers: Build the module for Arch kernel'
-'linux-lts-headers: Build the module for LTS Arch kernel')
-conflicts+=('nvidia-340xx')
-
-cd ${_pkg}
-install -dm 755 "${pkgdir}"/usr/{lib/modprobe.d,src}
-cp -dr --no-preserve='ownership' kernel-dkms 
"${pkgdir}"/usr/src/nvidia-${pkgver}
-echo 'blacklist nouveau' > "${pkgdir}"/usr/lib/modprobe.d/nvidia.conf
-cat "${pkgdir}"/usr/src/nvidia-${pkgver}/uvm/dkms.conf.fragment >> 
"${pkgdir}"/usr/src/nvidia-${pkgver}/dkms.conf
-}

Copied: nvidia-340xx/repos/extra-i686/PKGBUILD (from rev 287569, 
nvidia-340xx/repos/testing-i686/PKGBUILD)
===
--- 

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

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 06:59:45
  Author: tpowa
Revision: 287571

db-move: moved xfsprogs from [testing] to [core] (i686, x86_64)

Added:
  xfsprogs/repos/core-i686/PKGBUILD
(from rev 287570, xfsprogs/repos/testing-i686/PKGBUILD)
  xfsprogs/repos/core-x86_64/PKGBUILD
(from rev 287570, xfsprogs/repos/testing-x86_64/PKGBUILD)
Deleted:
  xfsprogs/repos/core-i686/PKGBUILD
  xfsprogs/repos/core-x86_64/PKGBUILD
  xfsprogs/repos/testing-i686/
  xfsprogs/repos/testing-x86_64/

--+
 /PKGBUILD|   68 +
 core-i686/PKGBUILD   |   34 
 core-x86_64/PKGBUILD |   34 
 3 files changed, 68 insertions(+), 68 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2017-01-27 06:59:22 UTC (rev 287570)
+++ core-i686/PKGBUILD  2017-01-27 06:59:45 UTC (rev 287571)
@@ -1,34 +0,0 @@
-# $Id$
-#
-pkgname=xfsprogs
-pkgver=4.8.0
-pkgrel=1
-pkgdesc="XFS filesystem utilities"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://oss.sgi.com/projects/xfs/;
-groups=('base')
-depends=('libutil-linux')
-makedepends=('git')
-options=('!makeflags')
-source=("git://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git#tag=v${pkgver}")
-md5sums=('SKIP')
-
-build() {
-  cd "${srcdir}/${pkgname}-dev"
-  make configure
-  export OPTIMIZER="-march=${CARCH/_/-} -O1"
-  export DEBUG=-DNDEBUG
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-dev"
-  make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
-  chown -R root $pkgdir
-  chgrp -R root $pkgdir
-  # add hack as we cannot set rootlibdir
-  mv "${pkgdir}"/lib/libhandle.so* "${pkgdir}/usr/lib/"
-  rm -rf "${pkgdir}/lib"
-}

Copied: xfsprogs/repos/core-i686/PKGBUILD (from rev 287570, 
xfsprogs/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2017-01-27 06:59:45 UTC (rev 287571)
@@ -0,0 +1,34 @@
+# $Id$
+#
+pkgname=xfsprogs
+pkgver=4.9.0
+pkgrel=1
+pkgdesc="XFS filesystem utilities"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://oss.sgi.com/projects/xfs/;
+groups=('base')
+depends=('libutil-linux')
+makedepends=('git')
+options=('!makeflags')
+source=("git://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git#tag=v${pkgver}")
+md5sums=('SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-dev"
+  make configure
+  export OPTIMIZER="-march=${CARCH/_/-} -O1"
+  export DEBUG=-DNDEBUG
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-dev"
+  make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
+  chown -R root $pkgdir
+  chgrp -R root $pkgdir
+  # add hack as we cannot set rootlibdir
+  mv "${pkgdir}"/lib/libhandle.so* "${pkgdir}/usr/lib/"
+  rm -rf "${pkgdir}/lib"
+}

Deleted: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2017-01-27 06:59:22 UTC (rev 287570)
+++ core-x86_64/PKGBUILD2017-01-27 06:59:45 UTC (rev 287571)
@@ -1,34 +0,0 @@
-# $Id$
-#
-pkgname=xfsprogs
-pkgver=4.8.0
-pkgrel=1
-pkgdesc="XFS filesystem utilities"
-arch=('i686' 'x86_64')
-license=('LGPL')
-url="http://oss.sgi.com/projects/xfs/;
-groups=('base')
-depends=('libutil-linux')
-makedepends=('git')
-options=('!makeflags')
-source=("git://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git#tag=v${pkgver}")
-md5sums=('SKIP')
-
-build() {
-  cd "${srcdir}/${pkgname}-dev"
-  make configure
-  export OPTIMIZER="-march=${CARCH/_/-} -O1"
-  export DEBUG=-DNDEBUG
-  ./configure --prefix=/usr --sbindir=/usr/bin
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-dev"
-  make DIST_ROOT="${pkgdir}" PKG_ROOT_SBIN_DIR="/usr/bin" install install-dev
-  chown -R root $pkgdir
-  chgrp -R root $pkgdir
-  # add hack as we cannot set rootlibdir
-  mv "${pkgdir}"/lib/libhandle.so* "${pkgdir}/usr/lib/"
-  rm -rf "${pkgdir}/lib"
-}

Copied: xfsprogs/repos/core-x86_64/PKGBUILD (from rev 287570, 
xfsprogs/repos/testing-x86_64/PKGBUILD)
===
--- core-x86_64/PKGBUILD(rev 0)
+++ core-x86_64/PKGBUILD2017-01-27 06:59:45 UTC (rev 287571)
@@ -0,0 +1,34 @@
+# $Id$
+#
+pkgname=xfsprogs
+pkgver=4.9.0
+pkgrel=1
+pkgdesc="XFS filesystem utilities"
+arch=('i686' 'x86_64')
+license=('LGPL')
+url="http://oss.sgi.com/projects/xfs/;
+groups=('base')
+depends=('libutil-linux')
+makedepends=('git')
+options=('!makeflags')
+source=("git://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git#tag=v${pkgver}")
+md5sums=('SKIP')
+
+build() {
+  cd "${srcdir}/${pkgname}-dev"
+  make configure
+  export OPTIMIZER="-march=${CARCH/_/-} -O1"
+  export DEBUG=-DNDEBUG
+  ./configure --prefix=/usr --sbindir=/usr/bin
+  make
+}
+

[arch-commits] Commit in nvidia/repos (14 files)

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 06:59:18
  Author: tpowa
Revision: 287569

db-move: moved nvidia from [testing] to [extra] (i686, x86_64)

Added:
  nvidia/repos/extra-i686/PKGBUILD
(from rev 287568, nvidia/repos/testing-i686/PKGBUILD)
  nvidia/repos/extra-i686/fix-abi.patch
(from rev 287568, nvidia/repos/testing-i686/fix-abi.patch)
  nvidia/repos/extra-i686/nvidia.install
(from rev 287568, nvidia/repos/testing-i686/nvidia.install)
  nvidia/repos/extra-x86_64/PKGBUILD
(from rev 287568, nvidia/repos/testing-x86_64/PKGBUILD)
  nvidia/repos/extra-x86_64/fix-abi.patch
(from rev 287568, nvidia/repos/testing-x86_64/fix-abi.patch)
  nvidia/repos/extra-x86_64/nvidia.install
(from rev 287568, nvidia/repos/testing-x86_64/nvidia.install)
Deleted:
  nvidia/repos/extra-i686/PKGBUILD
  nvidia/repos/extra-i686/fix-abi.patch
  nvidia/repos/extra-i686/nvidia.install
  nvidia/repos/extra-x86_64/PKGBUILD
  nvidia/repos/extra-x86_64/fix-abi.patch
  nvidia/repos/extra-x86_64/nvidia.install
  nvidia/repos/testing-i686/
  nvidia/repos/testing-x86_64/

-+
 /PKGBUILD   |  168 ++
 /fix-abi.patch  |   24 ++
 /nvidia.install |   26 ++
 extra-i686/PKGBUILD |   84 -
 extra-i686/fix-abi.patch|   12 ---
 extra-i686/nvidia.install   |   13 ---
 extra-x86_64/PKGBUILD   |   84 -
 extra-x86_64/fix-abi.patch  |   12 ---
 extra-x86_64/nvidia.install |   13 ---
 9 files changed, 218 insertions(+), 218 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-27 06:59:16 UTC (rev 287568)
+++ extra-i686/PKGBUILD 2017-01-27 06:59:18 UTC (rev 287569)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Maintainer: Felix Yan 
-# Contributor: Thomas Baechler 
-
-pkgbase=nvidia
-pkgname=(nvidia nvidia-dkms)
-pkgver=375.26
-_extramodules=extramodules-4.8-ARCH
-pkgrel=1
-pkgdesc="NVIDIA drivers for linux"
-arch=('i686' 'x86_64')
-url="http://www.nvidia.com/;
-makedepends=('nvidia-libgl' "nvidia-utils=${pkgver}" 'linux' 
'linux-headers>=4.8' 'linux-headers<4.9')
-license=('custom')
-options=('!strip')
-source_i686=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;)
-source_x86_64=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-sha512sums_i686=('3bc859a95469a45f3c627018248d83e178d160385c3d17d9f890b0d142ecd1220fb21c442e4fe7755b831227a9c820736f447b162acd9699819c6e8145d6d841')
-sha512sums_x86_64=('f52f6597daa1eaf4cbd934d785da6028ef23ecef98e14746143e3738504f8d65b73788abbcf9fd812317fc2c53cdf1c4d4839de57fafdea1930a08c6b21f1992')
-
-[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
-[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
-
-prepare() {
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}"
-
-cp -a kernel kernel-dkms
-cd kernel-dkms
-sed -i "s/__VERSION_STRING/${pkgver}/" dkms.conf
-sed -i 's/__JOBS/`nproc`/' dkms.conf
-sed -i 's/__DKMS_MODULES//' dkms.conf
-sed -i '$iBUILT_MODULE_NAME[0]="nvidia"\
-DEST_MODULE_LOCATION[0]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[1]="nvidia-uvm"\
-DEST_MODULE_LOCATION[1]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[2]="nvidia-modeset"\
-DEST_MODULE_LOCATION[2]="/kernel/drivers/video"\
-BUILT_MODULE_NAME[3]="nvidia-drm"\
-DEST_MODULE_LOCATION[3]="/kernel/drivers/video"' dkms.conf
-}
-
-build() {
-_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-cd "${_pkg}"/kernel
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-}
-
-package_nvidia() {
-pkgdesc="NVIDIA drivers for linux"
-depends=('linux>=4.8' 'linux<4.9' "nvidia-utils=${pkgver}" 'libgl')
-install=nvidia.install
-
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-modeset.ko" \
- "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-modeset.ko"
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-drm.ko" \
- "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-drm.ko"
-
-if [[ "$CARCH" = "x86_64" ]]; then
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia-uvm.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia-uvm.ko"
-fi
-
-gzip "${pkgdir}/usr/lib/modules/${_extramodules}/"*.ko
-install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
-
-echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-}
-
-package_nvidia-dkms() {
-pkgdesc="NVIDIA driver sources for linux"
-depends=('dkms' "nvidia-utils=$pkgver" 'libgl')
-optdepends=('linux-headers: Build the module for Arch kernel'
-

[arch-commits] Commit in nvidia-304xx/repos (14 files)

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 06:59:16
  Author: tpowa
Revision: 287568

db-move: moved nvidia-304xx from [testing] to [extra] (i686, x86_64)

Added:
  nvidia-304xx/repos/extra-i686/PKGBUILD
(from rev 287567, nvidia-304xx/repos/testing-i686/PKGBUILD)
  nvidia-304xx/repos/extra-i686/disable-mtrr.patch
(from rev 287567, nvidia-304xx/repos/testing-i686/disable-mtrr.patch)
  nvidia-304xx/repos/extra-i686/nvidia-304xx.install
(from rev 287567, nvidia-304xx/repos/testing-i686/nvidia-304xx.install)
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
(from rev 287567, nvidia-304xx/repos/testing-x86_64/PKGBUILD)
  nvidia-304xx/repos/extra-x86_64/disable-mtrr.patch
(from rev 287567, nvidia-304xx/repos/testing-x86_64/disable-mtrr.patch)
  nvidia-304xx/repos/extra-x86_64/nvidia-304xx.install
(from rev 287567, nvidia-304xx/repos/testing-x86_64/nvidia-304xx.install)
Deleted:
  nvidia-304xx/repos/extra-i686/PKGBUILD
  nvidia-304xx/repos/extra-i686/disable-mtrr.patch
  nvidia-304xx/repos/extra-i686/nvidia-304xx.install
  nvidia-304xx/repos/extra-x86_64/PKGBUILD
  nvidia-304xx/repos/extra-x86_64/disable-mtrr.patch
  nvidia-304xx/repos/extra-x86_64/nvidia-304xx.install
  nvidia-304xx/repos/testing-i686/
  nvidia-304xx/repos/testing-x86_64/

---+
 /PKGBUILD |  144 
 /disable-mtrr.patch   |   48 
 /nvidia-304xx.install |   26 ++
 extra-i686/PKGBUILD   |   72 --
 extra-i686/disable-mtrr.patch |   24 --
 extra-i686/nvidia-304xx.install   |   13 ---
 extra-x86_64/PKGBUILD |   72 --
 extra-x86_64/disable-mtrr.patch   |   24 --
 extra-x86_64/nvidia-304xx.install |   13 ---
 9 files changed, 218 insertions(+), 218 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-27 06:58:54 UTC (rev 287567)
+++ extra-i686/PKGBUILD 2017-01-27 06:59:16 UTC (rev 287568)
@@ -1,72 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan 
-# Contributor: Thomas Baechler 
-
-pkgbase=nvidia-304xx
-pkgname=(nvidia-304xx nvidia-304xx-dkms)
-pkgver=304.134
-_extramodules=extramodules-4.8-ARCH
-pkgrel=1
-arch=('i686' 'x86_64')
-url="http://www.nvidia.com/;
-makedepends=('nvidia-304xx-libgl' "nvidia-304xx-utils=${pkgver}" 'linux' 
'linux-headers>=4.8' 'linux-headers<4.9')
-conflicts=('nvidia')
-license=('custom')
-options=('!strip')
-source=('disable-mtrr.patch')
-source_i686+=("http://us.download.nvidia.com/XFree86/Linux-x86/${pkgver}/NVIDIA-Linux-x86-${pkgver}.run;)
-source_x86_64+=("http://us.download.nvidia.com/XFree86/Linux-x86_64/${pkgver}/NVIDIA-Linux-x86_64-${pkgver}-no-compat32.run;)
-sha512sums=('54e8825e523f11706890e09e476498f3a30f75ce4e350ff2ff8a1e1c3af574d9ccfb8903543766b6863d94cdfbf46e68cd3d33380867dd976cafc8dd2dd78774')
-sha512sums_i686=('e047c62b33b092225ead42134acd596e3ae43d9bb8324188308dd7d497f33e790e7366d7a1c5ef5de66f484219d99de4c6e6206d390122d3fab4d30397ab463c')
-sha512sums_x86_64=('339efb8b47faaa16b984d84e43ef18d849a563c95298972c36616a22712740e3233c2cd7b0837d393a8f24a6ec5b501295cdc77adae12deccc993dfca48022fc')
-
-[[ "$CARCH" = "i686" ]] && _pkg="NVIDIA-Linux-x86-${pkgver}"
-[[ "$CARCH" = "x86_64" ]] && _pkg="NVIDIA-Linux-x86_64-${pkgver}-no-compat32"
-
-prepare() {
-cd "${srcdir}"
-sh "${_pkg}.run" --extract-only
-cd "${_pkg}"
-# patches here
-
-# FS#47092
-(cd kernel; patch -p1 --no-backup-if-mismatch -i 
"$srcdir"/disable-mtrr.patch)
-
-cp -a kernel kernel-dkms
-}
-
-build() {
-_kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-cd "${_pkg}/kernel"
-make SYSSRC=/usr/lib/modules/"${_kernver}/build" module
-}
-
-package_nvidia-304xx() {
-pkgdesc="NVIDIA drivers for linux, 304xx legacy branch"
-depends=('linux>=4.8' 'linux<4.9' 'libgl' "nvidia-304xx-utils=${pkgver}")
-   conflicts+=('nvidia-304xx-dkms')
-install=nvidia-304xx.install
-
-install -D -m644 "${srcdir}/${_pkg}/kernel/nvidia.ko" \
-"${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
-install -d -m755 "${pkgdir}/usr/lib/modprobe.d"
-echo "blacklist nouveau" >> "${pkgdir}/usr/lib/modprobe.d/nvidia.conf"
-sed -i -e "s/EXTRAMODULES='.*'/EXTRAMODULES='${_extramodules}'/" 
"${startdir}/${pkgname}.install"
-gzip "${pkgdir}/usr/lib/modules/${_extramodules}/nvidia.ko"
-
-# the license file is part of nvidia-304xx-utils - the module depends on 
it, so we don't ship it another time.
-}
-
-package_nvidia-304xx-dkms() {
-pkgdesc="NVIDIA driver sources for linux, 304xx legacy branch"
-depends=('dkms' "nvidia-304xx-utils=$pkgver")
-optdepends=('linux-headers: Build the module for Arch kernel'
-'linux-lts-headers: Build the module for LTS Arch kernel')
-   conflicts+=('nvidia-304xx')
-
-cd ${_pkg}
-   make -C kernel 

[arch-commits] Commit in linux/repos (36 files)

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 06:58:52
  Author: tpowa
Revision: 287566

db-move: moved linux from [testing] to [core] (i686, x86_64)

Added:
  
linux/repos/core-i686/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch
(from rev 287565, 
linux/repos/testing-i686/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch)
  linux/repos/core-i686/99-linux.hook
(from rev 287565, linux/repos/testing-i686/99-linux.hook)
  linux/repos/core-i686/PKGBUILD
(from rev 287565, linux/repos/testing-i686/PKGBUILD)
  linux/repos/core-i686/change-default-console-loglevel.patch
(from rev 287565, 
linux/repos/testing-i686/change-default-console-loglevel.patch)
  linux/repos/core-i686/config
(from rev 287565, linux/repos/testing-i686/config)
  linux/repos/core-i686/config.x86_64
(from rev 287565, linux/repos/testing-i686/config.x86_64)
  linux/repos/core-i686/linux.install
(from rev 287565, linux/repos/testing-i686/linux.install)
  linux/repos/core-i686/linux.preset
(from rev 287565, linux/repos/testing-i686/linux.preset)
  
linux/repos/core-x86_64/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch
(from rev 287565, 
linux/repos/testing-x86_64/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch)
  linux/repos/core-x86_64/99-linux.hook
(from rev 287565, linux/repos/testing-x86_64/99-linux.hook)
  linux/repos/core-x86_64/PKGBUILD
(from rev 287565, linux/repos/testing-x86_64/PKGBUILD)
  linux/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 287565, 
linux/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux/repos/core-x86_64/config
(from rev 287565, linux/repos/testing-x86_64/config)
  linux/repos/core-x86_64/config.x86_64
(from rev 287565, linux/repos/testing-x86_64/config.x86_64)
  linux/repos/core-x86_64/linux.install
(from rev 287565, linux/repos/testing-x86_64/linux.install)
  linux/repos/core-x86_64/linux.preset
(from rev 287565, linux/repos/testing-x86_64/linux.preset)
Deleted:
  linux/repos/core-i686/99-linux.hook
  linux/repos/core-i686/PKGBUILD
  linux/repos/core-i686/change-default-console-loglevel.patch
  linux/repos/core-i686/config
  linux/repos/core-i686/config.x86_64
  linux/repos/core-i686/fix_race_condition_in_packet_set_ring.diff
  linux/repos/core-i686/linux.install
  linux/repos/core-i686/linux.preset
  linux/repos/core-i686/net_handle_no_dst_on_skb_in_icmp6_send.patch
  linux/repos/core-x86_64/99-linux.hook
  linux/repos/core-x86_64/PKGBUILD
  linux/repos/core-x86_64/change-default-console-loglevel.patch
  linux/repos/core-x86_64/config
  linux/repos/core-x86_64/config.x86_64
  linux/repos/core-x86_64/fix_race_condition_in_packet_set_ring.diff
  linux/repos/core-x86_64/linux.install
  linux/repos/core-x86_64/linux.preset
  linux/repos/core-x86_64/net_handle_no_dst_on_skb_in_icmp6_send.patch
  linux/repos/testing-i686/
  linux/repos/testing-x86_64/

--+
 /99-linux.hook   |   
22 
 /PKGBUILD|  
616 
 /change-default-console-loglevel.patch   |   
22 
 /config  
|16410 ++
 /config.x86_64   
|15940 +
 /linux.install   |   
54 
 /linux.preset|   
28 
 core-i686/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch   |   
65 
 core-i686/99-linux.hook  |   
11 
 core-i686/PKGBUILD   |  
312 
 core-i686/change-default-console-loglevel.patch  |   
11 
 core-i686/config | 
8207 -
 core-i686/config.x86_64  | 
7958 
 core-i686/fix_race_condition_in_packet_set_ring.diff |   
84 
 core-i686/linux.install  |   
27 
 core-i686/linux.preset   |   
14 
 core-i686/net_handle_no_dst_on_skb_in_icmp6_send.patch   |   
68 
 core-x86_64/0001-x86-fpu-Fix-invalid-FPU-ptrace-state-after-execve.patch |   
65 
 core-x86_64/99-linux.hook|   
11 
 core-x86_64/PKGBUILD |  
312 
 core-x86_64/change-default-console-loglevel.patch|   
11 
 core-x86_64/config   | 
8207 -
 core-x86_64/config.x86_64| 
7958 
 

[arch-commits] Commit in linux-firmware/repos (3 files)

2017-01-26 Thread Tobias Powalowski
Date: Friday, January 27, 2017 @ 06:58:54
  Author: tpowa
Revision: 287567

db-move: moved linux-firmware from [testing] to [core] (any)

Added:
  linux-firmware/repos/core-any/PKGBUILD
(from rev 287566, linux-firmware/repos/testing-any/PKGBUILD)
Deleted:
  linux-firmware/repos/core-any/PKGBUILD
  linux-firmware/repos/testing-any/

---+
 /PKGBUILD |   57 
 core-any/PKGBUILD |   57 
 2 files changed, 57 insertions(+), 57 deletions(-)

Deleted: core-any/PKGBUILD
===
--- core-any/PKGBUILD   2017-01-27 06:58:52 UTC (rev 287566)
+++ core-any/PKGBUILD   2017-01-27 06:58:54 UTC (rev 287567)
@@ -1,57 +0,0 @@
-# $Id$
-# Maintainer: Thomas Bächler 
-
-pkgname=linux-firmware
-# Commit date + git rev-parse --short origin/master
-_rev=9c71af9
-pkgver=20161005.${_rev}
-pkgrel=1
-pkgdesc="Firmware files for Linux"
-makedepends=('git')
-arch=('any')
-url="http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary;
-license=('GPL2' 'GPL3' 'custom')
-conflicts=('linux-firmware-git'
-   'kernel26-firmware'
-   'ar9170-fw'
-   'iwlwifi-1000-ucode'
-   'iwlwifi-3945-ucode'
-   'iwlwifi-4965-ucode'
-   'iwlwifi-5000-ucode'
-   'iwlwifi-5150-ucode'
-   'iwlwifi-6000-ucode'
-   'rt2870usb-fw'
-   'rt2x00-rt61-fw'
-   'rt2x00-rt71w-fw'
-   'amd-ucode')
-replaces=('kernel26-firmware'
-  'ar9170-fw'
-  'iwlwifi-1000-ucode'
-  'iwlwifi-3945-ucode'
-  'iwlwifi-4965-ucode'
-  'iwlwifi-5000-ucode'
-  'iwlwifi-5150-ucode'
-  'iwlwifi-6000-ucode'
-  'rt2870usb-fw'
-  'rt2x00-rt61-fw'
-  'rt2x00-rt71w-fw'
-  'amd-ucode')
-options=(!strip)
-source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#commit=${_rev};)
-md5sums=('SKIP')
-
-package() {
-  cd "${srcdir}/${pkgname}"
-
-  make DESTDIR="${pkgdir}" FIRMWAREDIR=/usr/lib/firmware install
-  rm "${pkgdir}/usr/lib/firmware/"{Makefile,README,configure,GPL-3}
-
-  install -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -Dm644 LICEN* WHENCE "${pkgdir}/usr/share/licenses/linux-firmware/"
-
-  # Trigger a microcode reload for configurations not using early updates
-  install -d "${pkgdir}/usr/lib/tmpfiles.d"
-  echo 'w /sys/devices/system/cpu/microcode/reload - - - - 1' \
->"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
-}
-# vim:set ts=2 sw=2 et:

Copied: linux-firmware/repos/core-any/PKGBUILD (from rev 287566, 
linux-firmware/repos/testing-any/PKGBUILD)
===
--- core-any/PKGBUILD   (rev 0)
+++ core-any/PKGBUILD   2017-01-27 06:58:54 UTC (rev 287567)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Thomas Bächler 
+
+pkgname=linux-firmware
+# Commit date + git rev-parse --short origin/master
+_rev=4b9559f
+pkgver=20161222.${_rev}
+pkgrel=2
+pkgdesc="Firmware files for Linux"
+makedepends=('git')
+arch=('any')
+url="http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;a=summary;
+license=('GPL2' 'GPL3' 'custom')
+conflicts=('linux-firmware-git'
+   'kernel26-firmware'
+   'ar9170-fw'
+   'iwlwifi-1000-ucode'
+   'iwlwifi-3945-ucode'
+   'iwlwifi-4965-ucode'
+   'iwlwifi-5000-ucode'
+   'iwlwifi-5150-ucode'
+   'iwlwifi-6000-ucode'
+   'rt2870usb-fw'
+   'rt2x00-rt61-fw'
+   'rt2x00-rt71w-fw'
+   'amd-ucode')
+replaces=('kernel26-firmware'
+  'ar9170-fw'
+  'iwlwifi-1000-ucode'
+  'iwlwifi-3945-ucode'
+  'iwlwifi-4965-ucode'
+  'iwlwifi-5000-ucode'
+  'iwlwifi-5150-ucode'
+  'iwlwifi-6000-ucode'
+  'rt2870usb-fw'
+  'rt2x00-rt61-fw'
+  'rt2x00-rt71w-fw'
+  'amd-ucode')
+options=(!strip)
+source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git#commit=${_rev};)
+md5sums=('SKIP')
+
+package() {
+  cd "${srcdir}/${pkgname}"
+
+  make DESTDIR="${pkgdir}" FIRMWAREDIR=/usr/lib/firmware install
+  rm "${pkgdir}/usr/lib/firmware/"{Makefile,README,configure,GPL-3}
+
+  install -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -Dm644 LICEN* WHENCE "${pkgdir}/usr/share/licenses/linux-firmware/"
+
+  # Trigger a microcode reload for configurations not using early updates
+  install -d "${pkgdir}/usr/lib/tmpfiles.d"
+  echo 'w /sys/devices/system/cpu/microcode/reload - - - - 1' \
+>"${pkgdir}/usr/lib/tmpfiles.d/${pkgname}.conf"
+}
+# vim:set ts=2 sw=2 et:


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

2017-01-26 Thread Christian Hesse
Date: Friday, January 27, 2017 @ 06:53:04
  Author: eworm
Revision: 287564

upgpkg: pkcs11-helper 1.21-1

new upstream release

Modified:
  pkcs11-helper/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 22:41:42 UTC (rev 287563)
+++ PKGBUILD2017-01-27 06:53:04 UTC (rev 287564)
@@ -5,8 +5,8 @@
 # Contributor: Martin Perner 
 
 pkgname=pkcs11-helper
-pkgver=1.11
-pkgrel=3
+pkgver=1.21
+pkgrel=1
 pkgdesc="A library that simplifies the interaction with PKCS11 providers for 
end-user applications using a simple API and optional OpenSSL engine"
 arch=('i686' 'x86_64')
 url='https://github.com/OpenSC/pkcs11-helper'
@@ -13,7 +13,7 @@
 license=(GPL BSD)
 depends=('gnutls' 'nss' 'openssl')
 
source=("https://github.com/OpenSC/pkcs11-helper/archive/pkcs11-helper-$pkgver.tar.gz;)
-sha512sums=('098bbd8fdfe1df065f3acc402faa95bbba9a440ed4327f0d976d0e8fe0a2cac8546d33481b2fa85493f600ec56f248db01835edf10b3ed608fea67f27c3c54c2')
+sha512sums=('93270542d43d81085c85fdbc1dd62a07c84ab88b63e7c10541659e25be7ed2c08b0ea02cfa710f6a8ab488fb8a884390ea10c05170705390e824f3e9d5481fa8')
 
 build() {
   cd pkcs11-helper-pkcs11-helper-$pkgver


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

2017-01-26 Thread Christian Hesse
Date: Friday, January 27, 2017 @ 06:53:07
  Author: eworm
Revision: 287565

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

Added:
  pkcs11-helper/repos/testing-i686/
  pkcs11-helper/repos/testing-i686/PKGBUILD
(from rev 287564, pkcs11-helper/trunk/PKGBUILD)
  pkcs11-helper/repos/testing-x86_64/
  pkcs11-helper/repos/testing-x86_64/PKGBUILD
(from rev 287564, pkcs11-helper/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   35 +++
 testing-x86_64/PKGBUILD |   35 +++
 2 files changed, 70 insertions(+)

Copied: pkcs11-helper/repos/testing-i686/PKGBUILD (from rev 287564, 
pkcs11-helper/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-27 06:53:07 UTC (rev 287565)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer:
+# Contributor: Stanislaw Datskevich 
+# Contributor: Gregor Robinson 
+# Contributor: Martin Perner 
+
+pkgname=pkcs11-helper
+pkgver=1.21
+pkgrel=1
+pkgdesc="A library that simplifies the interaction with PKCS11 providers for 
end-user applications using a simple API and optional OpenSSL engine"
+arch=('i686' 'x86_64')
+url='https://github.com/OpenSC/pkcs11-helper'
+license=(GPL BSD)
+depends=('gnutls' 'nss' 'openssl')
+source=("https://github.com/OpenSC/pkcs11-helper/archive/pkcs11-helper-$pkgver.tar.gz;)
+sha512sums=('93270542d43d81085c85fdbc1dd62a07c84ab88b63e7c10541659e25be7ed2c08b0ea02cfa710f6a8ab488fb8a884390ea10c05170705390e824f3e9d5481fa8')
+
+build() {
+  cd pkcs11-helper-pkcs11-helper-$pkgver
+  libtoolize
+  aclocal
+  autoheader
+  automake --add-missing
+  autoreconf -v
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd pkcs11-helper-pkcs11-helper-$pkgver
+  make DESTDIR="$pkgdir" install
+  mkdir -p "$pkgdir"/usr/share/licenses/$pkgname/
+  install -Dm644 COPYING* "$pkgdir"/usr/share/licenses/$pkgname/
+}
+

Copied: pkcs11-helper/repos/testing-x86_64/PKGBUILD (from rev 287564, 
pkcs11-helper/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-27 06:53:07 UTC (rev 287565)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer:
+# Contributor: Stanislaw Datskevich 
+# Contributor: Gregor Robinson 
+# Contributor: Martin Perner 
+
+pkgname=pkcs11-helper
+pkgver=1.21
+pkgrel=1
+pkgdesc="A library that simplifies the interaction with PKCS11 providers for 
end-user applications using a simple API and optional OpenSSL engine"
+arch=('i686' 'x86_64')
+url='https://github.com/OpenSC/pkcs11-helper'
+license=(GPL BSD)
+depends=('gnutls' 'nss' 'openssl')
+source=("https://github.com/OpenSC/pkcs11-helper/archive/pkcs11-helper-$pkgver.tar.gz;)
+sha512sums=('93270542d43d81085c85fdbc1dd62a07c84ab88b63e7c10541659e25be7ed2c08b0ea02cfa710f6a8ab488fb8a884390ea10c05170705390e824f3e9d5481fa8')
+
+build() {
+  cd pkcs11-helper-pkcs11-helper-$pkgver
+  libtoolize
+  aclocal
+  autoheader
+  automake --add-missing
+  autoreconf -v
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd pkcs11-helper-pkcs11-helper-$pkgver
+  make DESTDIR="$pkgdir" install
+  mkdir -p "$pkgdir"/usr/share/licenses/$pkgname/
+  install -Dm644 COPYING* "$pkgdir"/usr/share/licenses/$pkgname/
+}
+


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

2017-01-26 Thread Kyle Keen
Date: Friday, January 27, 2017 @ 04:38:50
  Author: kkeen
Revision: 209197

archrelease: copy trunk to community-x86_64

Added:
  racket/repos/community-x86_64/PKGBUILD
(from rev 209196, racket/trunk/PKGBUILD)
Deleted:
  racket/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |  170 ++---
 1 file changed, 85 insertions(+), 85 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-27 04:38:21 UTC (rev 209196)
+++ PKGBUILD2017-01-27 04:38:50 UTC (rev 209197)
@@ -1,85 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen 
-# Contributor: Eric Bélanger 
-
-pkgbase=racket
-pkgname=(racket racket-docs racket-minimal)
-pkgver=6.7
-pkgrel=1
-pkgdesc="A full-spectrum language with DrRacket IDE.  Formerly known as PLT 
Scheme."
-arch=('i686' 'x86_64')
-url="http://racket-lang.org/;
-license=('GPL3' 'LGPL3' 'custom')
-depends=('gtk3')
-makedepends=('gsfonts' 'sqlite')
-options=('!strip' '!emptydirs')
-source=("http://download.racket-lang.org/installers/${pkgver}/${pkgname}-${pkgver}-src.tgz;)
-# 
"https://mirror.racket-lang.org/installers/${pkgver}/racket-minimal-${pkgver}-src.tgz;
-sha1sums=('f8303e8397bd3177e303cf50649dacf1f4c51358')
-
-prepare() {
-  echo "Icon=drracket" >> 
${pkgname}-${pkgver}/share/pkgs/drracket/drracket/drracket.desktop
-}
-
-build() {
-  cd "${pkgbase}-${pkgver}/src"
-  [ "$CARCH" == "x86_64" ] && export CFLAGS+=" -fPIC"
-  ./configure --prefix=/usr --sysconfdir=/etc --enable-shared
-  make
-}
-
-package_racket() {
-  cd "${pkgbase}-${pkgver}/src"
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING-libscheme.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-
-  install -Dm644 ../share/pkgs/drracket/drracket/drracket.desktop 
"${pkgdir}/usr/share/applications/drracket.desktop"
-  install -d 
"${pkgdir}"/usr/share/icons/hicolor/{16x16,32x32,48x48,256x256}/apps
-  ln -s /usr/share/racket/pkgs/icons/plt-16x16.png 
"${pkgdir}/usr/share/icons/hicolor/16x16/apps/drracket.png"
-  ln -s /usr/share/racket/pkgs/icons/plt-32x32.png 
"${pkgdir}/usr/share/icons/hicolor/32x32/apps/drracket.png"
-  ln -s /usr/share/racket/pkgs/icons/plt-48x48.png 
"${pkgdir}/usr/share/icons/hicolor/48x48/apps/drracket.png"
-  ln -s /usr/share/racket/pkgs/icons/plt-logo-red-diffuse.png 
"${pkgdir}/usr/share/icons/hicolor/256x256/apps/drracket.png"
-
-  # sloppy
-  find "${pkgdir}/usr/share/doc/" -delete
-}
-
-package_racket-docs() {
-  pkgdesc="Docs for the full-spectrum language formerly known as PLT Scheme."
-  # grumble grumble this should be possible
-  #arch=('any')
-  depends=()
-  cd "${pkgbase}-${pkgver}/src"
-  # there is an "install-html" target
-  # but it doesn't do anything with /usr/share/docs
-  make DESTDIR="${pkgdir}" install
-  find "$pkgdir" -not -regex '.*share/doc.*' \
--not -name 'share' -not -name 'usr' -not -name 'racket-docs' -delete
-
-  install -Dm644 COPYING-libscheme.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_racket-minimal() {
-  pkgdesc="Minimal Racket installation, without DrRacket."
-  depends=('libffi')
-  conflicts=('racket')
-  provides=('racket')
-
-  # The -minimal tarball uses the SAME extract path.
-  # 99% identical sources anyway, manually apply the difference.
-  # Thankfully these builds happen in the given order
-  # so we can save some time and reuse the previous build.
-  cd "${pkgbase}-${pkgver}"
-  echo '((root "pkgs/racket-lib"))' > share/links.rktd
-  _libhash=$(grep -oP '\("racket-lib".*?#f\)\)' share/pkgs/pkgs.rktd)
-  echo "#hash($_libhash)" > share/pkgs/pkgs.rktd
-  cd share/pkgs
-  find . -not -name '.' -not -name '*pkgs.rktd' -not -regex '.*/racket-lib.*' 
-delete
-  cd ../../src
-
-  make DESTDIR="${pkgdir}" install
-
-  find "${pkgdir}/usr/share/doc/" -delete
-
-  install -Dm644 COPYING-libscheme.txt 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: racket/repos/community-x86_64/PKGBUILD (from rev 209196, 
racket/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-27 04:38:50 UTC (rev 209197)
@@ -0,0 +1,85 @@
+# $Id$
+# Maintainer: Kyle Keen 
+# Contributor: Eric Bélanger 
+
+pkgbase=racket
+pkgname=(racket racket-docs racket-minimal)
+pkgver=6.8
+pkgrel=1
+pkgdesc="A full-spectrum language with DrRacket IDE.  Formerly known as PLT 
Scheme."
+arch=('i686' 'x86_64')
+url="http://racket-lang.org/;
+license=('GPL3' 'LGPL3' 'custom')
+depends=('gtk3')
+makedepends=('gsfonts' 'sqlite')
+options=('!strip' '!emptydirs')
+source=("http://download.racket-lang.org/installers/${pkgver}/${pkgname}-${pkgver}-src.tgz;)
+# 
"https://mirror.racket-lang.org/installers/${pkgver}/racket-minimal-${pkgver}-src.tgz;
+sha1sums=('9e543bed0bda5c197d8ade41062d19db010099e6')
+
+prepare() {
+  echo "Icon=drracket" >> 

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

2017-01-26 Thread Kyle Keen
Date: Friday, January 27, 2017 @ 04:38:21
  Author: kkeen
Revision: 209196

upgpkg: racket 6.8-1

Modified:
  racket/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-27 02:24:22 UTC (rev 209195)
+++ PKGBUILD2017-01-27 04:38:21 UTC (rev 209196)
@@ -4,7 +4,7 @@
 
 pkgbase=racket
 pkgname=(racket racket-docs racket-minimal)
-pkgver=6.7
+pkgver=6.8
 pkgrel=1
 pkgdesc="A full-spectrum language with DrRacket IDE.  Formerly known as PLT 
Scheme."
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 options=('!strip' '!emptydirs')
 
source=("http://download.racket-lang.org/installers/${pkgver}/${pkgname}-${pkgver}-src.tgz;)
 # 
"https://mirror.racket-lang.org/installers/${pkgver}/racket-minimal-${pkgver}-src.tgz;
-sha1sums=('f8303e8397bd3177e303cf50649dacf1f4c51358')
+sha1sums=('9e543bed0bda5c197d8ade41062d19db010099e6')
 
 prepare() {
   echo "Icon=drracket" >> 
${pkgname}-${pkgver}/share/pkgs/drracket/drracket/drracket.desktop


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

2017-01-26 Thread Jerome Leclanche
Date: Friday, January 27, 2017 @ 02:15:16
  Author: jleclanche
Revision: 209194

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

Added:
  libsysstat/repos/community-i686/PKGBUILD
(from rev 209193, libsysstat/trunk/PKGBUILD)
  libsysstat/repos/community-x86_64/PKGBUILD
(from rev 209193, libsysstat/trunk/PKGBUILD)
Deleted:
  libsysstat/repos/community-i686/PKGBUILD
  libsysstat/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-01-27 02:15:01 UTC (rev 209193)
+++ community-i686/PKGBUILD 2017-01-27 02:15:16 UTC (rev 209194)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=libsysstat
-pkgver=0.3.2
-pkgrel=1
-pkgdesc="Library to query system statistics (net, resource usage, ...)"
-arch=("i686" "x86_64")
-url="http://lxqt.org;
-license=("LGPL2.1")
-depends=("qt5-base")
-makedepends=("cmake" "qt5-tools")
-source=(
-   
"https://github.com/lxde/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
-   
"https://github.com/lxde/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
-)
-sha256sums=(
-   "783ce129e781a9d7cd22b31f59ca6d739801dd4ec7107545084bbfb25aab2838"
-   "SKIP"
-)
-validpgpkeys=(
-   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

-   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

-)
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=/usr/lib
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: libsysstat/repos/community-i686/PKGBUILD (from rev 209193, 
libsysstat/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-27 02:15:16 UTC (rev 209194)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jerome Leclanche 
+
+pkgname=libsysstat
+pkgver=0.3.3
+pkgrel=1
+pkgdesc="Library to query system statistics (net, resource usage, ...)"
+arch=("i686" "x86_64")
+url="http://lxqt.org;
+license=("LGPL2.1")
+depends=("qt5-base")
+makedepends=("lxqt-build-tools")
+source=(
+   
"https://github.com/lxde/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
+   
"https://github.com/lxde/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
+)
+sha256sums=(
+   "e58640e169e12b6fa35af86cadc3a807f29de29951c7463832a82d22eed14f06"
+   "SKIP"
+)
+validpgpkeys=(
+   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

+   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

+)
+
+build() {
+   mkdir -p build
+   cd build
+   cmake "$srcdir/$pkgname-$pkgver" \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=/usr/lib
+   make
+}
+
+package() {
+   cd build
+   make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-27 02:15:01 UTC (rev 209193)
+++ community-x86_64/PKGBUILD   2017-01-27 02:15:16 UTC (rev 209194)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Jerome Leclanche 
-
-pkgname=libsysstat
-pkgver=0.3.2
-pkgrel=1
-pkgdesc="Library to query system statistics (net, resource usage, ...)"
-arch=("i686" "x86_64")
-url="http://lxqt.org;
-license=("LGPL2.1")
-depends=("qt5-base")
-makedepends=("cmake" "qt5-tools")
-source=(
-   
"https://github.com/lxde/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;
-   
"https://github.com/lxde/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
-)
-sha256sums=(
-   "783ce129e781a9d7cd22b31f59ca6d739801dd4ec7107545084bbfb25aab2838"
-   "SKIP"
-)
-validpgpkeys=(
-   "169704C6FB490C6892C7F23C37E0AF1FDA48F373"  # Jerome Leclanche 

-   "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3"  # Alf Gaida 

-)
-
-build() {
-   mkdir -p build
-   cd build
-   cmake "$srcdir/$pkgname-$pkgver" \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=/usr/lib
-   make
-}
-
-package() {
-   cd build
-   make DESTDIR="$pkgdir" install
-}

Copied: libsysstat/repos/community-x86_64/PKGBUILD (from rev 209193, 
libsysstat/trunk/PKGBUILD)
===

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

2017-01-26 Thread Jerome Leclanche
Date: Friday, January 27, 2017 @ 02:15:01
  Author: jleclanche
Revision: 209193

upgpkg: libsysstat 0.3.3-1

Upstream release 0.3.3

Modified:
  libsysstat/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 22:29:28 UTC (rev 209192)
+++ PKGBUILD2017-01-27 02:15:01 UTC (rev 209193)
@@ -2,7 +2,7 @@
 # Maintainer: Jerome Leclanche 
 
 pkgname=libsysstat
-pkgver=0.3.2
+pkgver=0.3.3
 pkgrel=1
 pkgdesc="Library to query system statistics (net, resource usage, ...)"
 arch=("i686" "x86_64")
@@ -9,13 +9,13 @@
 url="http://lxqt.org;
 license=("LGPL2.1")
 depends=("qt5-base")
-makedepends=("cmake" "qt5-tools")
+makedepends=("lxqt-build-tools")
 source=(

"https://github.com/lxde/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz;

"https://github.com/lxde/libsysstat/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc;
 )
 sha256sums=(
-   "783ce129e781a9d7cd22b31f59ca6d739801dd4ec7107545084bbfb25aab2838"
+   "e58640e169e12b6fa35af86cadc3a807f29de29951c7463832a82d22eed14f06"
"SKIP"
 )
 validpgpkeys=(


[arch-commits] Commit in libreoffice-fresh/trunk (PKGBUILD buildfix.diff)

2017-01-26 Thread Andreas Radke
Date: Thursday, January 26, 2017 @ 22:41:14
  Author: andyrtr
Revision: 287562

upgpkg: libreoffice-fresh 5.2.5-1

upstream update 5.2.5

Modified:
  libreoffice-fresh/trunk/PKGBUILD
Deleted:
  libreoffice-fresh/trunk/buildfix.diff

---+
 PKGBUILD  |   24 ++--
 buildfix.diff |   30 --
 2 files changed, 10 insertions(+), 44 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 22:10:30 UTC (rev 287561)
+++ PKGBUILD2017-01-26 22:41:14 UTC (rev 287562)
@@ -11,9 +11,9 @@
 
 pkgbase=libreoffice-fresh
 pkgname=('libreoffice-fresh-sdk' 'libreoffice-fresh')
-_LOver=5.2.4.2
-pkgver=5.2.4
-pkgrel=2
+_LOver=5.2.5.1
+pkgver=5.2.5
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL3')
 url="http://www.libreoffice.org/;
@@ -65,8 +65,7 @@
make-pyuno-work-with-system-wide-module-install.diff
libreoffice-fresh.sh libreoffice-fresh.csh
update_liborcus_to_0.11.0.diff
-   remove_unnecessary_orcus_external_usage_from_makefiles.diff
-   buildfix.diff)
+   remove_unnecessary_orcus_external_usage_from_makefiles.diff)
 noextract=(boost_1_60_0.tar.bz2
ce12af00283eb90d9281956524250d6e-xmlsec1-1.2.20.tar.gz
35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
@@ -94,11 +93,11 @@
976734806026a4ef8bdd17937c8898b9-icu4c-57_1-src.tgz
185d60944ea767075d27247c3162b3bc-unowinreg.dll)
 validpgpkeys=('C2839ECAD9408FBE9531C3E9F434A1EFAFEEAEA3') # LibreOffice Build 
Team (CODE SIGNING KEY) 
-sha256sums=('8b73d1afa6a1ff6bc153ab1f31afc86c42cc8d0e5831bf82e66a8df0fcf6eb10'
+sha256sums=('9756a322a497aa83d096fa0ac5541622d9a8f5038ce9c0ded48199566ab0d300'
 'SKIP'
-'fef3a7699d20e198ac66267f50ffce5bcbef48617434af477de8887340ebe182'
+'11199cca59748dc9cade4f5cbb0478f600d3c54114b09819eac54338dbbd49b4'
 'SKIP'
-'620cab5f916663275895a9b50b8e00f7e96dbd8dc8129e79bc266274af3cae1c'
+'abf6e962aa2042bab4f2e6c3ba9eddbda64a56aa3251bde3b227cfffed926353'
 'SKIP'
 '686a989ac2488f79a97b9479efb9f2abae035b5ed4d8226de6857933fd3b'
 '3221593ca50f362b546a0888a1431ad24be1470f96b2469c0e0df5e1c55e7305'
@@ -130,8 +129,7 @@
 '76f62957d0058092b11316357d9d716a62b48a53e5277426ffa87429ab5510e4'
 'd24cfcb556ae1db02087c49012bbc4621f9ef7e3465ca832e1410326d260f283'
 '4fc7b046fe96464a576d897330d1caa14998ab767002f84edf11a63b9ec35a7f'
-'f6df5179582803bd71211a392218e9f7c062dc183832d6823cc7a13021e3e543'
-'898785fc665f4c661666e4f78e0307a77640c37ce005354db75782cffa61286c')
+'f6df5179582803bd71211a392218e9f7c062dc183832d6823cc7a13021e3e543')
 
 prepare() {
 
@@ -162,9 +160,6 @@
esac
ARCH_FLAGS="$ARCH_FLAGS $i"
done
-   
-   # upstream fix for broken test
-   patch -Np1 -i ../buildfix.diff
 }
 
 build() {
@@ -303,7 +298,7 @@
'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' 
'libcdr'
'libmspub' 'harfbuzz-icu' 'glew' 'nss' 'clucene' 
'hicolor-icon-theme'
'desktop-file-utils' 'shared-mime-info' 'glu' 'libpagemaker'
-   'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups' 'gtk2'
+   'libxinerama' 'libabw' 'libmwaw' 'libe-book' 'libcups'
'liborcus' 'liblangtag' 'libexttextcat' 'libfbclient' 'libcmis')
optdepends=('java-runtime: adds java support'
'java-environment: required by extension-wiki-publisher and 
extension-nlpsolver'
@@ -318,6 +313,7 @@
'libpaper: takes care of papersize'
'postgresql-libs:  for postgresql-connector'
'coin-or-mp:   required by the Calc solver'
+   'gtk2: for GTK2 integration'
'gtk3: for GTK3 integration'
'kdelibs:  for KDE desktop integration')
backup=(etc/libreoffice/sofficerc

Deleted: buildfix.diff
===
--- buildfix.diff   2017-01-26 22:10:30 UTC (rev 287561)
+++ buildfix.diff   2017-01-26 22:41:14 UTC (rev 287562)
@@ -1,30 +0,0 @@
-From 014394f10a11a1b36f8a2e8a0722ec2fddf74b40 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= 
-Date: Fri, 9 Dec 2016 15:26:59 +
-Subject: oss-fuzz we don't want this stream to automatically resize on seeks
- past end
-
-Change-Id: Ie42b2e173cd3ed9faaf17c3c978227613129fa84
-(cherry picked from commit f212bd45a7c7d97fb16380cd9fa7c6abbfb71e05)
-(cherry picked from commit b832d7019f7e7499f5fb3da5d5f49ddbf0f35585)
-Reviewed-on: https://gerrit.libreoffice.org/31803
-Tested-by: Jenkins 
-Reviewed-by: Michael Stahl 
-
-diff --git a/vcl/source/filter/wmf/winwmf.cxx 

[arch-commits] Commit in libreoffice-fresh/repos (16 files)

2017-01-26 Thread Andreas Radke
Date: Thursday, January 26, 2017 @ 22:41:42
  Author: andyrtr
Revision: 287563

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

Added:
  libreoffice-fresh/repos/testing-i686/
  libreoffice-fresh/repos/testing-i686/PKGBUILD
(from rev 287562, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/testing-i686/PKGBUILD.53
(from rev 287562, libreoffice-fresh/trunk/PKGBUILD.53)
  libreoffice-fresh/repos/testing-i686/libreoffice-fresh.csh
(from rev 287562, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/testing-i686/libreoffice-fresh.sh
(from rev 287562, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/testing-i686/make-pyuno-work-with-system-wide-module-install.diff
(from rev 287562, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  
libreoffice-fresh/repos/testing-i686/remove_unnecessary_orcus_external_usage_from_makefiles.diff
(from rev 287562, 
libreoffice-fresh/trunk/remove_unnecessary_orcus_external_usage_from_makefiles.diff)
  libreoffice-fresh/repos/testing-i686/update_liborcus_to_0.11.0.diff
(from rev 287562, libreoffice-fresh/trunk/update_liborcus_to_0.11.0.diff)
  libreoffice-fresh/repos/testing-x86_64/
  libreoffice-fresh/repos/testing-x86_64/PKGBUILD
(from rev 287562, libreoffice-fresh/trunk/PKGBUILD)
  libreoffice-fresh/repos/testing-x86_64/PKGBUILD.53
(from rev 287562, libreoffice-fresh/trunk/PKGBUILD.53)
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.csh
(from rev 287562, libreoffice-fresh/trunk/libreoffice-fresh.csh)
  libreoffice-fresh/repos/testing-x86_64/libreoffice-fresh.sh
(from rev 287562, libreoffice-fresh/trunk/libreoffice-fresh.sh)
  
libreoffice-fresh/repos/testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff
(from rev 287562, 
libreoffice-fresh/trunk/make-pyuno-work-with-system-wide-module-install.diff)
  
libreoffice-fresh/repos/testing-x86_64/remove_unnecessary_orcus_external_usage_from_makefiles.diff
(from rev 287562, 
libreoffice-fresh/trunk/remove_unnecessary_orcus_external_usage_from_makefiles.diff)
  libreoffice-fresh/repos/testing-x86_64/update_liborcus_to_0.11.0.diff
(from rev 287562, libreoffice-fresh/trunk/update_liborcus_to_0.11.0.diff)

+
 testing-i686/PKGBUILD  |  
359 +
 testing-i686/PKGBUILD.53   |  
361 +
 testing-i686/libreoffice-fresh.csh |   
 6 
 testing-i686/libreoffice-fresh.sh  |   
 6 
 testing-i686/make-pyuno-work-with-system-wide-module-install.diff  |   
44 
 testing-i686/remove_unnecessary_orcus_external_usage_from_makefiles.diff   |  
124 
 testing-i686/update_liborcus_to_0.11.0.diff| 
1983 ++
 testing-x86_64/PKGBUILD|  
359 +
 testing-x86_64/PKGBUILD.53 |  
361 +
 testing-x86_64/libreoffice-fresh.csh   |   
 6 
 testing-x86_64/libreoffice-fresh.sh|   
 6 
 testing-x86_64/make-pyuno-work-with-system-wide-module-install.diff|   
44 
 testing-x86_64/remove_unnecessary_orcus_external_usage_from_makefiles.diff |  
124 
 testing-x86_64/update_liborcus_to_0.11.0.diff  | 
1983 ++
 14 files changed, 5766 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 287562:287563 to see the changes.


[arch-commits] Commit in android-udev/repos (3 files)

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 22:29:28
  Author: anatolik
Revision: 209192

archrelease: copy trunk to community-testing-any

Added:
  android-udev/repos/community-testing-any/
  android-udev/repos/community-testing-any/PKGBUILD
(from rev 209191, android-udev/trunk/PKGBUILD)
  android-udev/repos/community-testing-any/android-udev.install
(from rev 209191, android-udev/trunk/android-udev.install)

--+
 PKGBUILD |   20 
 android-udev.install |4 
 2 files changed, 24 insertions(+)

Copied: android-udev/repos/community-testing-any/PKGBUILD (from rev 209191, 
android-udev/trunk/PKGBUILD)
===
--- community-testing-any/PKGBUILD  (rev 0)
+++ community-testing-any/PKGBUILD  2017-01-26 22:29:28 UTC (rev 209192)
@@ -0,0 +1,20 @@
+# $Id$
+# Maintainer: M0Rf30
+# Contributor: marlock
+
+pkgname=android-udev
+pkgver=20170125
+pkgrel=1
+pkgdesc='Udev rules to connect Android devices to your linux box'
+arch=(any)
+url='https://github.com/M0Rf30/android-udev-rules'
+license=(GPL3)
+depends=(udev libmtp)
+install='android-udev.install'
+source=(android-udev-$pkgver.zip::https://github.com/M0Rf30/android-udev-rules/archive/$pkgver.zip)
+md5sums=('5e93a1cf2852f00b22860ff67b0288e1')
+
+package() {
+  cd android-udev-rules-$pkgver
+  install -Dm 644 51-android.rules 
"$pkgdir"/usr/lib/udev/rules.d/51-android.rules
+}

Copied: android-udev/repos/community-testing-any/android-udev.install (from rev 
209191, android-udev/trunk/android-udev.install)
===
--- community-testing-any/android-udev.install  (rev 0)
+++ community-testing-any/android-udev.install  2017-01-26 22:29:28 UTC (rev 
209192)
@@ -0,0 +1,4 @@
+post_install() {
+  getent group adbusers >/dev/null || groupadd -r adbusers
+  true
+}


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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 22:29:07
  Author: anatolik
Revision: 209191

upgpkg: android-udev 20170125-1

Modified:
  android-udev/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 21:16:21 UTC (rev 209190)
+++ PKGBUILD2017-01-26 22:29:07 UTC (rev 209191)
@@ -3,7 +3,7 @@
 # Contributor: marlock
 
 pkgname=android-udev
-pkgver=20170109
+pkgver=20170125
 pkgrel=1
 pkgdesc='Udev rules to connect Android devices to your linux box'
 arch=(any)
@@ -12,7 +12,7 @@
 depends=(udev libmtp)
 install='android-udev.install'
 
source=(android-udev-$pkgver.zip::https://github.com/M0Rf30/android-udev-rules/archive/$pkgver.zip)
-md5sums=('88aa60f417dcee10091ee49ad588a009')
+md5sums=('5e93a1cf2852f00b22860ff67b0288e1')
 
 package() {
   cd android-udev-rules-$pkgver


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 22:10:30
  Author: heftig
Revision: 287561

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

Added:
  libgda/repos/extra-i686/PKGBUILD
(from rev 287560, libgda/trunk/PKGBUILD)
  libgda/repos/extra-i686/java.patch
(from rev 287560, libgda/trunk/java.patch)
  libgda/repos/extra-x86_64/PKGBUILD
(from rev 287560, libgda/trunk/PKGBUILD)
  libgda/repos/extra-x86_64/java.patch
(from rev 287560, libgda/trunk/java.patch)
Deleted:
  libgda/repos/extra-i686/PKGBUILD
  libgda/repos/extra-i686/java.patch
  libgda/repos/extra-x86_64/PKGBUILD
  libgda/repos/extra-x86_64/java.patch

-+
 /PKGBUILD   |  216 ++
 /java.patch |   72 +++
 extra-i686/PKGBUILD |  103 -
 extra-i686/java.patch   |   36 ---
 extra-x86_64/PKGBUILD   |  103 -
 extra-x86_64/java.patch |   36 ---
 6 files changed, 288 insertions(+), 278 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-26 22:08:18 UTC (rev 287560)
+++ extra-i686/PKGBUILD 2017-01-26 22:10:30 UTC (rev 287561)
@@ -1,103 +0,0 @@
-# $Id$
-# Maintainer: tobias 
-# Contributor: Tobias Kieslich 
-
-shopt -s extglob
-
-pkgname=(libgda libgda-{firebird,jdbc,mysql,postgres})
-pkgver=5.2.4
-pkgrel=4
-pkgdesc="Database access library"
-arch=(i686 x86_64)
-license=(GPL)
-depends=(gtksourceview3 libxslt python2 libsecret graphviz goocanvas iso-codes)
-makedepends=(glade libmariadbclient postgresql-libs libfbclient jdk8-openjdk 
intltool
- gobject-introspection gtk-doc vala itstool gnome-common)
-url="http://www.gnome-db.org/;
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz
-java.patch)
-sha256sums=('2cee38dd583ccbaa5bdf6c01ca5f88cc08758b9b144938a51a478eb2684b765e'
-'e28ea88d49bcb91fa6907440a6785a508fb681c463188b3805509773f5d0fc22')
-
-_apiver=5.0
-
-prepare() {
-  mkdir providers
-
-  cd $pkgname-$pkgver
-
-  patch -Np1 -i ../java.patch
-
-  find -name '*.py' -exec sed -i '1s/python$/&2/' {} +
-
-  javac getsp.java
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static \
-  --with-bdb=/usr --with-bdb-libdir-name=lib \
-  --enable-json --enable-system-sqlite --enable-binreloc \
-  --enable-gda-gi --enable-gdaui-gi \
-  --enable-vala --enable-gdaui-vala VALA_API_VERSION=0.34 \
-  --enable-gtk-doc
-  make
-}
-
-package_libgda() {
-  optdepends=('libgda-firebird: provider for Firebird'
-  'libgda-jdbc: provider for JDBC'
-  'libgda-mysql: provider for MySQL'
-  'libgda-postgres: provider for PostgreSQL')
-  options+=(emptydirs)
-
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  for _provider in firebird jdbc mysql postgres; do
-mv "$pkgdir"/usr/lib/libgda-$_apiver/providers/libgda-${_provider}?(-*).so 
\
-   "$pkgdir"/usr/lib/pkgconfig/libgda-${_provider}-${_apiver}.pc \
-   "$pkgdir"/usr/share/libgda-$_apiver/${_provider}_specs_*.xml \
-   "$srcdir/providers"
-  done
-
-  mv "$pkgdir"/usr/lib/libgda-$_apiver/providers/gdaprovider-${_apiver}.jar \
- "$pkgdir"/usr/bin/gda-list-jdbc-providers-${_apiver} \
- "$srcdir/providers"
-}
-
-_packageprovider() {
-  install -d "$pkgdir"/usr/lib/{pkgconfig,libgda-$_apiver/providers} \
- "$pkgdir"/usr/share/libgda-$_apiver
-  mv providers/libgda-${1}?(-*).so "$pkgdir/usr/lib/libgda-$_apiver/providers"
-  mv providers/libgda-${1}-5.0.pc "$pkgdir/usr/lib/pkgconfig"
-  mv providers/${1}_specs_*.xml "$pkgdir/usr/share/libgda-$_apiver"
-}
-
-package_libgda-firebird() {
-  pkgdesc="libgda provider for Firebird"
-  depends=(libgda libfbclient)
-  _packageprovider firebird
-}
-
-package_libgda-jdbc() {
-  pkgdesc="libgda provider for JDBC"
-  depends=(libgda java-environment)
-  _packageprovider jdbc
-  install -d "$pkgdir/usr/bin"
-  mv providers/gda-list-jdbc-providers-${_apiver} "$pkgdir/usr/bin"
-  mv providers/gdaprovider-${_apiver}.jar 
"$pkgdir/usr/lib/libgda-$_apiver/providers"
-}
-
-package_libgda-mysql() {
-  pkgdesc="libgda provider for MySQL"
-  depends=(libgda libmariadbclient)
-  _packageprovider mysql
-}
-
-package_libgda-postgres() {
-  pkgdesc="libgda provider for PostgreSQL"
-  depends=(libgda postgresql-libs)
-  _packageprovider postgres
-}

Copied: libgda/repos/extra-i686/PKGBUILD (from rev 287560, 
libgda/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-26 22:10:30 UTC (rev 287561)
@@ -0,0 +1,108 @@
+# $Id$
+# Contributor: tobias 
+# Contributor: Tobias Kieslich 
+
+pkgname=(libgda 

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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 22:08:18
  Author: heftig
Revision: 287560

5.2.4-5

Modified:
  libgda/trunk/PKGBUILD

--+
 PKGBUILD |   35 ---
 1 file changed, 20 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 21:30:01 UTC (rev 287559)
+++ PKGBUILD2017-01-26 22:08:18 UTC (rev 287560)
@@ -1,41 +1,45 @@
 # $Id$
-# Maintainer: tobias 
+# Contributor: tobias 
 # Contributor: Tobias Kieslich 
 
-shopt -s extglob
-
 pkgname=(libgda libgda-{firebird,jdbc,mysql,postgres})
 pkgver=5.2.4
-pkgrel=4
+pkgrel=5
 pkgdesc="Database access library"
+url="http://www.gnome-db.org/;
 arch=(i686 x86_64)
 license=(GPL)
 depends=(gtksourceview3 libxslt python2 libsecret graphviz goocanvas iso-codes)
 makedepends=(glade libmariadbclient postgresql-libs libfbclient jdk8-openjdk 
intltool
- gobject-introspection gtk-doc vala itstool gnome-common)
-url="http://www.gnome-db.org/;
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz
+ gobject-introspection gtk-doc vala itstool gnome-common git)
+_commit=2ea3179bad2e414ff6068db2249116eb6e2564a5  # tags/LIBGDA_5_2_4^0
+source=("git+https://git.gnome.org/browse/libgda#commit=$_commit;
 java.patch)
-sha256sums=('2cee38dd583ccbaa5bdf6c01ca5f88cc08758b9b144938a51a478eb2684b765e'
+sha256sums=('SKIP'
 'e28ea88d49bcb91fa6907440a6785a508fb681c463188b3805509773f5d0fc22')
 
 _apiver=5.0
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^LIBGDA_//;s/_/./g;s/-/+/g'
+}
+
 prepare() {
   mkdir providers
 
-  cd $pkgname-$pkgver
+  cd $pkgname
 
   patch -Np1 -i ../java.patch
+  javac getsp.java
 
   find -name '*.py' -exec sed -i '1s/python$/&2/' {} +
 
-  javac getsp.java
-  autoreconf -fvi
+  NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   ./configure --prefix=/usr --sysconfdir=/etc --disable-static \
   --with-bdb=/usr --with-bdb-libdir-name=lib \
   --enable-json --enable-system-sqlite --enable-binreloc \
@@ -42,6 +46,7 @@
   --enable-gda-gi --enable-gdaui-gi \
   --enable-vala --enable-gdaui-vala VALA_API_VERSION=0.34 \
   --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
@@ -52,11 +57,11 @@
   'libgda-postgres: provider for PostgreSQL')
   options+=(emptydirs)
 
-  cd $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR="$pkgdir" install
 
   for _provider in firebird jdbc mysql postgres; do
-mv "$pkgdir"/usr/lib/libgda-$_apiver/providers/libgda-${_provider}?(-*).so 
\
+mv "$pkgdir"/usr/lib/libgda-$_apiver/providers/libgda-${_provider}[-.]*so \
"$pkgdir"/usr/lib/pkgconfig/libgda-${_provider}-${_apiver}.pc \
"$pkgdir"/usr/share/libgda-$_apiver/${_provider}_specs_*.xml \
"$srcdir/providers"
@@ -70,7 +75,7 @@
 _packageprovider() {
   install -d "$pkgdir"/usr/lib/{pkgconfig,libgda-$_apiver/providers} \
  "$pkgdir"/usr/share/libgda-$_apiver
-  mv providers/libgda-${1}?(-*).so "$pkgdir/usr/lib/libgda-$_apiver/providers"
+  mv providers/libgda-${1}[-.]*so "$pkgdir/usr/lib/libgda-$_apiver/providers"
   mv providers/libgda-${1}-5.0.pc "$pkgdir/usr/lib/pkgconfig"
   mv providers/${1}_specs_*.xml "$pkgdir/usr/share/libgda-$_apiver"
 }


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 21:30:01
  Author: heftig
Revision: 287559

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

Added:
  pango/repos/extra-i686/PKGBUILD
(from rev 287558, pango/trunk/PKGBUILD)
  pango/repos/extra-x86_64/PKGBUILD
(from rev 287558, pango/trunk/PKGBUILD)
Deleted:
  pango/repos/extra-i686/PKGBUILD
  pango/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   88 
 extra-i686/PKGBUILD   |   39 -
 extra-x86_64/PKGBUILD |   39 -
 3 files changed, 88 insertions(+), 78 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-26 21:29:17 UTC (rev 287558)
+++ extra-i686/PKGBUILD 2017-01-26 21:30:01 UTC (rev 287559)
@@ -1,39 +0,0 @@
-# $Id$ 
-# Maintainer: Jan de Groot 
-
-pkgname=pango
-pkgver=1.40.3
-pkgrel=1
-pkgdesc="A library for layout and rendering of text"
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('libthai' 'cairo' 'libxft' 'harfbuzz')
-makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 
'gobject-introspection' 'help2man'
- 'gtk-doc')
-checkdepends=('ttf-dejavu')
-source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-url="http://www.pango.org/;
-sha256sums=('abba8b5ce728520c3a0f1535eab19eac3c14aeef7faa5aded90017ceac2711d3')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  rm pango-view/pango-view.1.in
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make -k check || :
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: pango/repos/extra-i686/PKGBUILD (from rev 287558, pango/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-26 21:30:01 UTC (rev 287559)
@@ -0,0 +1,44 @@
+# $Id$ 
+# Maintainer: Jan de Groot 
+
+pkgname=pango
+pkgver=1.40.3
+pkgrel=2
+pkgdesc="A library for layout and rendering of text"
+url="https://www.pango.org/;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(libthai cairo libxft harfbuzz)
+makedepends=(harfbuzz fontconfig cairo libxft libthai gobject-introspection 
help2man gtk-doc git)
+checkdepends=(ttf-dejavu)
+_commit=e9471764d19f740f756cf7e6d11aba0cbba3d2ae  # tags/1.40.3^0
+source=("git+https://git.gnome.org/browse/pango#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+check() {
+  cd $pkgname
+  make -k check || :
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-26 21:29:17 UTC (rev 287558)
+++ extra-x86_64/PKGBUILD   2017-01-26 21:30:01 UTC (rev 287559)
@@ -1,39 +0,0 @@
-# $Id$ 
-# Maintainer: Jan de Groot 
-
-pkgname=pango
-pkgver=1.40.3
-pkgrel=1
-pkgdesc="A library for layout and rendering of text"
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('libthai' 'cairo' 'libxft' 'harfbuzz')
-makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 
'gobject-introspection' 'help2man'
- 'gtk-doc')
-checkdepends=('ttf-dejavu')
-source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-url="http://www.pango.org/;
-sha256sums=('abba8b5ce728520c3a0f1535eab19eac3c14aeef7faa5aded90017ceac2711d3')
-
-prepare() {
-  cd ${pkgname}-${pkgver}
-  rm pango-view/pango-view.1.in
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make -k check || :
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: pango/repos/extra-x86_64/PKGBUILD (from rev 287558, 
pango/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-01-26 21:30:01 UTC (rev 287559)
@@ -0,0 +1,44 @@
+# $Id$ 
+# Maintainer: Jan de Groot 
+
+pkgname=pango
+pkgver=1.40.3
+pkgrel=2
+pkgdesc="A library for layout and rendering of text"
+url="https://www.pango.org/;
+arch=(i686 x86_64)

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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 21:29:17
  Author: heftig
Revision: 287558

1.40.3-2

Modified:
  pango/trunk/PKGBUILD

--+
 PKGBUILD |   35 ---
 1 file changed, 20 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 21:27:43 UTC (rev 287557)
+++ PKGBUILD2017-01-26 21:29:17 UTC (rev 287558)
@@ -3,25 +3,30 @@
 
 pkgname=pango
 pkgver=1.40.3
-pkgrel=1
+pkgrel=2
 pkgdesc="A library for layout and rendering of text"
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('libthai' 'cairo' 'libxft' 'harfbuzz')
-makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 
'gobject-introspection' 'help2man'
- 'gtk-doc')
-checkdepends=('ttf-dejavu')
-source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-url="http://www.pango.org/;
-sha256sums=('abba8b5ce728520c3a0f1535eab19eac3c14aeef7faa5aded90017ceac2711d3')
+url="https://www.pango.org/;
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(libthai cairo libxft harfbuzz)
+makedepends=(harfbuzz fontconfig cairo libxft libthai gobject-introspection 
help2man gtk-doc git)
+checkdepends=(ttf-dejavu)
+_commit=e9471764d19f740f756cf7e6d11aba0cbba3d2ae  # tags/1.40.3^0
+source=("git+https://git.gnome.org/browse/pango#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
 prepare() {
-  cd ${pkgname}-${pkgver}
-  rm pango-view/pango-view.1.in
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
-  cd ${pkgname}-${pkgver}
+  cd $pkgname
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --enable-gtk-doc
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
@@ -29,11 +34,11 @@
 }
 
 check() {
-  cd ${pkgname}-${pkgver}
+  cd $pkgname
   make -k check || :
 }
 
 package() {
-  cd ${pkgname}-${pkgver}
+  cd $pkgname
   make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in linux-zen/repos (28 files)

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 21:27:43
  Author: heftig
Revision: 287557

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

Added:
  linux-zen/repos/testing-i686/99-linux.hook
(from rev 287556, linux-zen/trunk/99-linux.hook)
  linux-zen/repos/testing-i686/PKGBUILD
(from rev 287556, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-i686/change-default-console-loglevel.patch
(from rev 287556, linux-zen/trunk/change-default-console-loglevel.patch)
  linux-zen/repos/testing-i686/config
(from rev 287556, linux-zen/trunk/config)
  linux-zen/repos/testing-i686/config.x86_64
(from rev 287556, linux-zen/trunk/config.x86_64)
  linux-zen/repos/testing-i686/linux.install
(from rev 287556, linux-zen/trunk/linux.install)
  linux-zen/repos/testing-i686/linux.preset
(from rev 287556, linux-zen/trunk/linux.preset)
  linux-zen/repos/testing-x86_64/99-linux.hook
(from rev 287556, linux-zen/trunk/99-linux.hook)
  linux-zen/repos/testing-x86_64/PKGBUILD
(from rev 287556, linux-zen/trunk/PKGBUILD)
  linux-zen/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 287556, linux-zen/trunk/change-default-console-loglevel.patch)
  linux-zen/repos/testing-x86_64/config
(from rev 287556, linux-zen/trunk/config)
  linux-zen/repos/testing-x86_64/config.x86_64
(from rev 287556, linux-zen/trunk/config.x86_64)
  linux-zen/repos/testing-x86_64/linux.install
(from rev 287556, linux-zen/trunk/linux.install)
  linux-zen/repos/testing-x86_64/linux.preset
(from rev 287556, linux-zen/trunk/linux.preset)
Deleted:
  linux-zen/repos/testing-i686/99-linux.hook
  linux-zen/repos/testing-i686/PKGBUILD
  linux-zen/repos/testing-i686/change-default-console-loglevel.patch
  linux-zen/repos/testing-i686/config
  linux-zen/repos/testing-i686/config.x86_64
  linux-zen/repos/testing-i686/linux.install
  linux-zen/repos/testing-i686/linux.preset
  linux-zen/repos/testing-x86_64/99-linux.hook
  linux-zen/repos/testing-x86_64/PKGBUILD
  linux-zen/repos/testing-x86_64/change-default-console-loglevel.patch
  linux-zen/repos/testing-x86_64/config
  linux-zen/repos/testing-x86_64/config.x86_64
  linux-zen/repos/testing-x86_64/linux.install
  linux-zen/repos/testing-x86_64/linux.preset

--+
 /99-linux.hook   |   22 
 /PKGBUILD|  622 
 /change-default-console-loglevel.patch   |   22 
 /config  |16498 +
 /config.x86_64   |16026 
 /linux.install   |   54 
 /linux.preset|   28 
 testing-i686/99-linux.hook   |   11 
 testing-i686/PKGBUILD|  311 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 8249 
 testing-i686/config.x86_64   | 8013 
 testing-i686/linux.install   |   27 
 testing-i686/linux.preset|   14 
 testing-x86_64/99-linux.hook |   11 
 testing-x86_64/PKGBUILD  |  311 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 8249 
 testing-x86_64/config.x86_64 | 8013 
 testing-x86_64/linux.install |   27 
 testing-x86_64/linux.preset  |   14 
 21 files changed, 33272 insertions(+), 33272 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 287556:287557 to see the changes.


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 21:13:58
  Author: heftig
Revision: 287552

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

Added:
  telepathy-farstream/repos/extra-i686/PKGBUILD
(from rev 287551, telepathy-farstream/trunk/PKGBUILD)
  telepathy-farstream/repos/extra-x86_64/PKGBUILD
(from rev 287551, telepathy-farstream/trunk/PKGBUILD)
Deleted:
  telepathy-farstream/repos/extra-i686/PKGBUILD
  telepathy-farstream/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   82 
 extra-i686/PKGBUILD   |   43 -
 extra-x86_64/PKGBUILD |   43 -
 3 files changed, 82 insertions(+), 86 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-26 21:12:56 UTC (rev 287551)
+++ extra-i686/PKGBUILD 2017-01-26 21:13:58 UTC (rev 287552)
@@ -1,43 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=telepathy-farstream
-pkgver=0.6.2
-pkgrel=3
-pkgdesc="Telepathy GLib-based client library that uses Farstream to handle 
Call channels"
-arch=(i686 x86_64)
-url="https://telepathy.freedesktop.org/components/telepathy-farstream/;
-license=(LGPL2.1)
-depends=(telepathy-glib farstream)
-makedepends=(dbus-glib gobject-introspection python2 gtk-doc git glib2-docs)
-replaces=(telepathy-farsight)
-_commit=0b1bba79cfe94e7676fe69e9e0d2e3983a3c14c5  # 
tags/telepathy-farstream-0.6.2^0
-source=("git+https://github.com/TelepathyIM/telepathy-farstream#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^telepathy-farstream-//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd "$pkgname"
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/telepathy \
---disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd "$pkgname"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: telepathy-farstream/repos/extra-i686/PKGBUILD (from rev 287551, 
telepathy-farstream/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-26 21:13:58 UTC (rev 287552)
@@ -0,0 +1,41 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=telepathy-farstream
+pkgver=0.6.2
+pkgrel=4
+pkgdesc="Telepathy GLib-based client library that uses Farstream to handle 
Call channels"
+arch=(i686 x86_64)
+url="https://telepathy.freedesktop.org/components/telepathy-farstream/;
+license=(LGPL2.1)
+depends=(telepathy-glib farstream)
+makedepends=(dbus-glib gobject-introspection python2 gtk-doc git glib2-docs)
+replaces=(telepathy-farsight)
+_commit=0b1bba79cfe94e7676fe69e9e0d2e3983a3c14c5  # 
tags/telepathy-farstream-0.6.2^0
+source=("git+https://github.com/TelepathyIM/telepathy-farstream#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^telepathy-farstream-//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/telepathy \
+--disable-static --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-26 21:12:56 UTC (rev 287551)
+++ extra-x86_64/PKGBUILD   2017-01-26 21:13:58 UTC (rev 287552)
@@ -1,43 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=telepathy-farstream
-pkgver=0.6.2
-pkgrel=3
-pkgdesc="Telepathy GLib-based client library that uses Farstream to handle 
Call channels"
-arch=(i686 x86_64)
-url="https://telepathy.freedesktop.org/components/telepathy-farstream/;
-license=(LGPL2.1)
-depends=(telepathy-glib farstream)
-makedepends=(dbus-glib gobject-introspection python2 gtk-doc git glib2-docs)
-replaces=(telepathy-farsight)
-_commit=0b1bba79cfe94e7676fe69e9e0d2e3983a3c14c5  # 
tags/telepathy-farstream-0.6.2^0
-source=("git+https://github.com/TelepathyIM/telepathy-farstream#commit=$_commit;)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^telepathy-farstream-//;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd "$pkgname"
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/telepathy \
---disable-static
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd "$pkgname"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: telepathy-farstream/repos/extra-x86_64/PKGBUILD (from rev 287551, 

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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 21:12:56
  Author: heftig
Revision: 287551

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

Added:
  rest/repos/extra-i686/PKGBUILD
(from rev 287550, rest/trunk/PKGBUILD)
  rest/repos/extra-x86_64/PKGBUILD
(from rev 287550, rest/trunk/PKGBUILD)
Deleted:
  rest/repos/extra-i686/PKGBUILD
  rest/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-26 21:12:38 UTC (rev 287550)
+++ extra-i686/PKGBUILD 2017-01-26 21:12:56 UTC (rev 287551)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=rest
-pkgver=0.8.0
-pkgrel=1
-pkgdesc="A helper library for RESTful services."
-arch=(i686 x86_64)
-url="http://www.gtk.org/;
-license=(GPL2)
-depends=(glib2 libxml2 'libsoup')
-makedepends=(gobject-introspection)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-${pkgver}.tar.xz)
-sha256sums=('e7b89b200c1417073aef739e8a27ff2ab578056c27796ec74f5886a5e0dff647')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rest/repos/extra-i686/PKGBUILD (from rev 287550, rest/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-26 21:12:56 UTC (rev 287551)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=rest
+pkgver=0.8.0
+pkgrel=2
+pkgdesc="Helper library for RESTful services"
+arch=(i686 x86_64)
+url="https://wiki.gnome.org/Projects/Librest;
+license=(LGPL2.1)
+depends=(glib2 libxml2 libsoup)
+makedepends=(gobject-introspection gtk-doc git glib2-docs)
+_commit=47502e1f9444bef18e833c5f3a18e29a7945c0e8  # tags/0.8.0^0
+source=("git+https://git.gnome.org/browse/librest#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd librest
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd librest
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd librest
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd librest
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-26 21:12:38 UTC (rev 287550)
+++ extra-x86_64/PKGBUILD   2017-01-26 21:12:56 UTC (rev 287551)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=rest
-pkgver=0.8.0
-pkgrel=1
-pkgdesc="A helper library for RESTful services."
-arch=(i686 x86_64)
-url="http://www.gtk.org/;
-license=(GPL2)
-depends=(glib2 libxml2 'libsoup')
-makedepends=(gobject-introspection)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-${pkgver}.tar.xz)
-sha256sums=('e7b89b200c1417073aef739e8a27ff2ab578056c27796ec74f5886a5e0dff647')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rest/repos/extra-x86_64/PKGBUILD (from rev 287550, rest/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-01-26 21:12:56 UTC (rev 287551)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=rest
+pkgver=0.8.0
+pkgrel=2
+pkgdesc="Helper library for RESTful services"
+arch=(i686 x86_64)
+url="https://wiki.gnome.org/Projects/Librest;
+license=(LGPL2.1)
+depends=(glib2 libxml2 libsoup)
+makedepends=(gobject-introspection gtk-doc git glib2-docs)
+_commit=47502e1f9444bef18e833c5f3a18e29a7945c0e8  # tags/0.8.0^0
+source=("git+https://git.gnome.org/browse/librest#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd librest
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd librest
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd librest
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd librest
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gtk-doc/repos/extra-any (PKGBUILD PKGBUILD)

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 21:12:30
  Author: heftig
Revision: 287549

archrelease: copy trunk to extra-any

Added:
  gtk-doc/repos/extra-any/PKGBUILD
(from rev 287548, gtk-doc/trunk/PKGBUILD)
Deleted:
  gtk-doc/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-26 21:11:26 UTC (rev 287548)
+++ PKGBUILD2017-01-26 21:12:30 UTC (rev 287549)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=gtk-doc
-pkgver=1.25+27+gd3bccc0
-pkgrel=1
-pkgdesc="Documentation tool for public library API"
-arch=('any')
-license=('GPL' 'FDL')
-depends=('docbook-xsl' 'docbook-xml' 'perl' 'source-highlight')
-makedepends=('dblatex' 'git' 'yelp-tools')
-optdepends=('dblatex: PDF support')
-url="http://www.gtk.org/gtk-doc/;
-_commit=d3bccc0aa153a349f6c9e816a111330572971a2e
-source=("git://git.gnome.org/gtk-doc#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed -e 's/GTK_DOC_//' -e 's/_/\./g' -e 's/-/+/g'
-}
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  export PYTHON=/usr/bin/python2
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: gtk-doc/repos/extra-any/PKGBUILD (from rev 287548, 
gtk-doc/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-26 21:12:30 UTC (rev 287549)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot 
+
+pkgname=gtk-doc
+pkgver=1.25+33+g567353f
+pkgrel=1
+pkgdesc="Documentation tool for public library API"
+url="https://www.gtk.org/gtk-doc/;
+arch=(any)
+license=(GPL FDL)
+depends=(docbook-xsl docbook-xml perl source-highlight glib2-docs python2)
+makedepends=(dblatex git yelp-tools)
+optdepends=('dblatex: PDF support')
+_commit=567353f33c01db9979ba76c772f7b11dbd3ec15f  # master~6
+source=("git+https://git.gnome.org/browse/gtk-doc#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed -e 's/GTK_DOC_//' -e 's/_/\./g' -e 's/-/+/g'
+}
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in linux-zen/trunk (PKGBUILD config config.x86_64)

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 21:12:38
  Author: heftig
Revision: 287550

4.9.6-1

Modified:
  linux-zen/trunk/PKGBUILD
  linux-zen/trunk/config
  linux-zen/trunk/config.x86_64

---+
 PKGBUILD  |   12 ++--
 config|2 +-
 config.x86_64 |2 +-
 3 files changed, 8 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 21:12:30 UTC (rev 287549)
+++ PKGBUILD2017-01-26 21:12:38 UTC (rev 287550)
@@ -6,8 +6,8 @@
 pkgbase=linux-zen   # Build -zen kernel
 #pkgbase=linux-custom   # Build kernel with a different name
 _srcname=linux-4.9
-_zenpatch=zen-4.9.5-5c46ba948a77e92394eab09faff1cb5eff5f0eeb.diff
-pkgver=4.9.5
+_zenpatch=zen-4.9.6-0f0ad79e4fd56474c7d21169edc6144615c86580.diff
+pkgver=4.9.6
 pkgrel=1
 arch=('i686' 'x86_64')
 url="https://github.com/zen-kernel/zen-kernel;
@@ -31,12 +31,12 @@
 
 sha256sums=('029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a'
 'SKIP'
-'0dd71eceb373d1731d821b02435b6d8cf261267e5a7fe2d82d39b45370e263e1'
+'cd0d5ea27c487a7d1354ba3e80f85af4924b77ad1180f1fbfaf6844ae03c8728'
 'SKIP'
-'36c275b93099a1c7a733539439ab5a6816145a0cedbb82d5c31ba52cd6cc612e'
+'b768a7bd777b53a0a6dbce82b2626bfda7fa8a50fc00b5c4c61fe0cee4114a29'
 'SKIP'
-'93fcf61b6211656537b464a30bc2f3aafa9908330744e22f1486026204d2f5eb'
-'faef82d85d71e97cd1cd4771142280e037bf94f8d296b64af0dcc14033f2658b'
+'c1f3bfd84bf664221495e9975bc337edb40f7c14f992ce65ea85c0376ed2f30f'
+'8823a62efee521df49fce92bbcf7e30ba39310d8b2a2595dd8dbe04a06e04567'
 '834bd254b56ab71d73f59b3221f056c72f559553c04718e350ab2a3e2991afe0'
 'ad6344badc91ad0630caacde83f7f9b97276f80d26a20619a87952be65492c65'
 '1256b241cd477b265a3c2d64bdc19ffe3c9bbcee82ea3994c590c2c76e767d99')

Modified: config
===
--- config  2017-01-26 21:12:30 UTC (rev 287549)
+++ config  2017-01-26 21:12:38 UTC (rev 287550)
@@ -3009,7 +3009,7 @@
 CONFIG_IWLMVM=m
 CONFIG_IWLWIFI_OPMODE_MODULAR=y
 # CONFIG_IWLWIFI_BCAST_FILTERING is not set
-CONFIG_IWLWIFI_PCIE_RTPM=y
+# CONFIG_IWLWIFI_PCIE_RTPM is not set
 
 #
 # Debugging Options

Modified: config.x86_64
===
--- config.x86_64   2017-01-26 21:12:30 UTC (rev 287549)
+++ config.x86_64   2017-01-26 21:12:38 UTC (rev 287550)
@@ -2971,7 +2971,7 @@
 CONFIG_IWLMVM=m
 CONFIG_IWLWIFI_OPMODE_MODULAR=y
 # CONFIG_IWLWIFI_BCAST_FILTERING is not set
-CONFIG_IWLWIFI_PCIE_RTPM=y
+# CONFIG_IWLWIFI_PCIE_RTPM is not set
 
 #
 # Debugging Options


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 21:11:02
  Author: heftig
Revision: 287547

0.6.2-4

Modified:
  telepathy-farstream/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 21:10:49 UTC (rev 287546)
+++ PKGBUILD2017-01-26 21:11:02 UTC (rev 287547)
@@ -3,7 +3,7 @@
 
 pkgname=telepathy-farstream
 pkgver=0.6.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Telepathy GLib-based client library that uses Farstream to handle 
Call channels"
 arch=(i686 x86_64)
 url="https://telepathy.freedesktop.org/components/telepathy-farstream/;
@@ -27,10 +27,8 @@
 
 build() {
   cd "$pkgname"
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/telepathy \
---disable-static
+  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/telepathy \
+--disable-static --enable-gtk-doc
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }


[arch-commits] Commit in firefox/repos (32 files)

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 21:11:26
  Author: heftig
Revision: 287548

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

Added:
  firefox/repos/staging-i686/PKGBUILD
(from rev 287545, firefox/trunk/PKGBUILD)
  firefox/repos/staging-i686/firefox-install-dir.patch
(from rev 287545, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/staging-i686/firefox-symbolic.svg
(from rev 287545, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/staging-i686/firefox.desktop
(from rev 287545, firefox/trunk/firefox.desktop)
  firefox/repos/staging-i686/fix-wifi-scanner.diff
(from rev 287546, firefox/trunk/fix-wifi-scanner.diff)
  firefox/repos/staging-i686/mozconfig
(from rev 287546, firefox/trunk/mozconfig)
  firefox/repos/staging-i686/rust-i686.patch
(from rev 287546, firefox/trunk/rust-i686.patch)
  firefox/repos/staging-i686/vendor.js
(from rev 287546, firefox/trunk/vendor.js)
  firefox/repos/staging-x86_64/PKGBUILD
(from rev 287547, firefox/trunk/PKGBUILD)
  firefox/repos/staging-x86_64/firefox-install-dir.patch
(from rev 287547, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/staging-x86_64/firefox-symbolic.svg
(from rev 287547, firefox/trunk/firefox-symbolic.svg)
  firefox/repos/staging-x86_64/firefox.desktop
(from rev 287547, firefox/trunk/firefox.desktop)
  firefox/repos/staging-x86_64/fix-wifi-scanner.diff
(from rev 287547, firefox/trunk/fix-wifi-scanner.diff)
  firefox/repos/staging-x86_64/mozconfig
(from rev 287547, firefox/trunk/mozconfig)
  firefox/repos/staging-x86_64/rust-i686.patch
(from rev 287547, firefox/trunk/rust-i686.patch)
  firefox/repos/staging-x86_64/vendor.js
(from rev 287547, firefox/trunk/vendor.js)
Deleted:
  firefox/repos/staging-i686/PKGBUILD
  firefox/repos/staging-i686/firefox-install-dir.patch
  firefox/repos/staging-i686/firefox-symbolic.svg
  firefox/repos/staging-i686/firefox.desktop
  firefox/repos/staging-i686/fix-wifi-scanner.diff
  firefox/repos/staging-i686/mozconfig
  firefox/repos/staging-i686/rust-i686.patch
  firefox/repos/staging-i686/vendor.js
  firefox/repos/staging-x86_64/PKGBUILD
  firefox/repos/staging-x86_64/firefox-install-dir.patch
  firefox/repos/staging-x86_64/firefox-symbolic.svg
  firefox/repos/staging-x86_64/firefox.desktop
  firefox/repos/staging-x86_64/fix-wifi-scanner.diff
  firefox/repos/staging-x86_64/mozconfig
  firefox/repos/staging-x86_64/rust-i686.patch
  firefox/repos/staging-x86_64/vendor.js

--+
 /PKGBUILD|  252 +++
 /firefox-install-dir.patch   |   24 +
 /firefox-symbolic.svg|   60 ++
 /firefox.desktop |  620 +
 /fix-wifi-scanner.diff   |   32 +
 /mozconfig   |   72 +++
 /rust-i686.patch |   32 +
 /vendor.js   |   24 +
 staging-i686/PKGBUILD|  126 -
 staging-i686/firefox-install-dir.patch   |   12 
 staging-i686/firefox-symbolic.svg|   30 -
 staging-i686/firefox.desktop |  310 --
 staging-i686/fix-wifi-scanner.diff   |   16 
 staging-i686/mozconfig   |   36 -
 staging-i686/rust-i686.patch |   16 
 staging-i686/vendor.js   |   12 
 staging-x86_64/PKGBUILD  |  126 -
 staging-x86_64/firefox-install-dir.patch |   12 
 staging-x86_64/firefox-symbolic.svg  |   30 -
 staging-x86_64/firefox.desktop   |  310 --
 staging-x86_64/fix-wifi-scanner.diff |   16 
 staging-x86_64/mozconfig |   36 -
 staging-x86_64/rust-i686.patch   |   16 
 staging-x86_64/vendor.js |   12 
 24 files changed, 1116 insertions(+), 1116 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2017-01-26 21:11:02 UTC (rev 287547)
+++ staging-i686/PKGBUILD   2017-01-26 21:11:26 UTC (rev 287548)
@@ -1,126 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Ionut Biru 
-# Contributor: Jakub Schmidtke 
-
-pkgname=firefox
-pkgver=51.0
-pkgrel=1
-pkgdesc="Standalone web browser from mozilla.org"
-arch=(i686 x86_64)
-license=(MPL GPL LGPL)
-url="https://www.mozilla.org/firefox/;
-depends=(gtk3 gtk2 mozilla-common libxt startup-notification mime-types 
dbus-glib alsa-lib ffmpeg
- libvpx libevent nss hunspell sqlite ttf-font icu)
-makedepends=(unzip zip diffutils python2 yasm mesa imake gconf libpulse 
inetutils xorg-server-xvfb
- autoconf2.13 cargo)
-optdepends=('networkmanager: Location detection via available WiFi networks'
-'libnotify: Notification integration'
-'upower: Battery API')
-options=(!emptydirs !makeflags)

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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 21:10:49
  Author: heftig
Revision: 287546

1.25+33+g567353f-1

Modified:
  gtk-doc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 21:09:59 UTC (rev 287545)
+++ PKGBUILD2017-01-26 21:10:49 UTC (rev 287546)
@@ -2,17 +2,17 @@
 # Maintainer: Jan de Groot 
 
 pkgname=gtk-doc
-pkgver=1.25+27+gd3bccc0
+pkgver=1.25+33+g567353f
 pkgrel=1
 pkgdesc="Documentation tool for public library API"
-arch=('any')
-license=('GPL' 'FDL')
-depends=('docbook-xsl' 'docbook-xml' 'perl' 'source-highlight')
-makedepends=('dblatex' 'git' 'yelp-tools')
+url="https://www.gtk.org/gtk-doc/;
+arch=(any)
+license=(GPL FDL)
+depends=(docbook-xsl docbook-xml perl source-highlight glib2-docs python2)
+makedepends=(dblatex git yelp-tools)
 optdepends=('dblatex: PDF support')
-url="http://www.gtk.org/gtk-doc/;
-_commit=d3bccc0aa153a349f6c9e816a111330572971a2e
-source=("git://git.gnome.org/gtk-doc#commit=$_commit")
+_commit=567353f33c01db9979ba76c772f7b11dbd3ec15f  # master~6
+source=("git+https://git.gnome.org/browse/gtk-doc#commit=$_commit;)
 sha256sums=('SKIP')
 
 pkgver() {
@@ -26,8 +26,7 @@
 
 build() {
   cd $pkgname
-  export PYTHON=/usr/bin/python2
-  ./configure --prefix=/usr
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr
   make
 }
 


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 21:09:59
  Author: heftig
Revision: 287545

0.8.0-2

Modified:
  rest/trunk/PKGBUILD

--+
 PKGBUILD |   36 +++-
 1 file changed, 23 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:58:47 UTC (rev 287544)
+++ PKGBUILD2017-01-26 21:09:59 UTC (rev 287545)
@@ -3,26 +3,36 @@
 
 pkgname=rest
 pkgver=0.8.0
-pkgrel=1
-pkgdesc="A helper library for RESTful services."
+pkgrel=2
+pkgdesc="Helper library for RESTful services"
 arch=(i686 x86_64)
-url="http://www.gtk.org/;
-license=(GPL2)
-depends=(glib2 libxml2 'libsoup')
-makedepends=(gobject-introspection)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-${pkgver}.tar.xz)
-sha256sums=('e7b89b200c1417073aef739e8a27ff2ab578056c27796ec74f5886a5e0dff647')
+url="https://wiki.gnome.org/Projects/Librest;
+license=(LGPL2.1)
+depends=(glib2 libxml2 libsoup)
+makedepends=(gobject-introspection gtk-doc git glib2-docs)
+_commit=47502e1f9444bef18e833c5f3a18e29a7945c0e8  # tags/0.8.0^0
+source=("git+https://git.gnome.org/browse/librest#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd librest
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd librest
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc
+  cd librest
+  ./configure --prefix=/usr --sysconfdir=/etc --enable-gtk-doc
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd librest
   make DESTDIR="$pkgdir" install
 }
 


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:58:47
  Author: heftig
Revision: 287544

51.0.1-1

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:55:21 UTC (rev 287543)
+++ PKGBUILD2017-01-26 20:58:47 UTC (rev 287544)
@@ -4,7 +4,7 @@
 # Contributor: Jakub Schmidtke 
 
 pkgname=firefox
-pkgver=51.0
+pkgver=51.0.1
 pkgrel=1
 pkgdesc="Standalone web browser from mozilla.org"
 arch=(i686 x86_64)
@@ -26,7 +26,7 @@
 vendor.js
 firefox-symbolic.svg
 fix-wifi-scanner.diff)
-sha256sums=('6535b7a69c28e3613a815801aa2d9416d133dd92e17e7c8eb68d9776ce9eebea'
+sha256sums=('30ba00ba716ea1eeda526e2ccc8642f8d18a836793fde50e87a4fcb9d9fccca9'
 '3b0c6b08c0211d8c5a02aa050755276ec864c5f2c5ac1a3d3f9f8a9af6512737'
 '75c526e9669b91b4fe5dcea650a1e8419220abb2e9564184f0d984c71eae82e8'
 'd86e41d87363656ee62e12543e2f5181aadcff448e406ef3218e91865ae775cd'


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:55:21
  Author: heftig
Revision: 287543

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

Added:
  nautilus-sendto/repos/extra-i686/PKGBUILD
(from rev 287542, nautilus-sendto/trunk/PKGBUILD)
  nautilus-sendto/repos/extra-x86_64/PKGBUILD
(from rev 287542, nautilus-sendto/trunk/PKGBUILD)
Deleted:
  nautilus-sendto/repos/extra-i686/PKGBUILD
  nautilus-sendto/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-26 20:54:45 UTC (rev 287542)
+++ extra-i686/PKGBUILD 2017-01-26 20:55:21 UTC (rev 287543)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Eduardo Romero 
-# Contributor: Tor Krill 
-
-pkgname=nautilus-sendto
-pkgver=3.8.4
-pkgrel=2
-pkgdesc="Easily send files via mail"
-arch=(i686 x86_64)
-url="https://git.gnome.org/browse/nautilus-sendto;
-license=(GPL)
-depends=(glib2)
-makedepends=(gettext intltool gobject-introspection python2)
-options=('!emptydirs')
-groups=('gnome-extra')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('51065c6e2601560a8bc507c7aee8e967dc6c6f355c6a05a1d4e7e1fe76b908e7')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: nautilus-sendto/repos/extra-i686/PKGBUILD (from rev 287542, 
nautilus-sendto/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-26 20:55:21 UTC (rev 287543)
@@ -0,0 +1,43 @@
+# $Id$
+# Contributor: Jan de Groot 
+# Contributor: Eduardo Romero 
+# Contributor: Tor Krill 
+
+pkgname=nautilus-sendto
+pkgver=3.8.4+33+g5ecfd0e
+pkgrel=1
+pkgdesc="Easily send files via mail"
+arch=(i686 x86_64)
+url="https://git.gnome.org/browse/nautilus-sendto;
+license=(GPL)
+depends=(glib2)
+makedepends=(gettext intltool gobject-introspection python2 gnome-common git)
+options=('!emptydirs')
+groups=('gnome-extra')
+_commit=5ecfd0e69a7988d0a5a204c7c0070cab6136709f  # master
+source=("git+https://git.gnome.org/browse/nautilus-sendto#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^NAUTILUS_SENDTO_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  # Fixup tags for pkgver()
+  git tag -f NAUTILUS_SENDTO_3_8_4 eaf083dec2846dc76f72d82755c65f6dc7bf3c86
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$srcdir/$pkgname"
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-26 20:54:45 UTC (rev 287542)
+++ extra-x86_64/PKGBUILD   2017-01-26 20:55:21 UTC (rev 287543)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Eduardo Romero 
-# Contributor: Tor Krill 
-
-pkgname=nautilus-sendto
-pkgver=3.8.4
-pkgrel=2
-pkgdesc="Easily send files via mail"
-arch=(i686 x86_64)
-url="https://git.gnome.org/browse/nautilus-sendto;
-license=(GPL)
-depends=(glib2)
-makedepends=(gettext intltool gobject-introspection python2)
-options=('!emptydirs')
-groups=('gnome-extra')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('51065c6e2601560a8bc507c7aee8e967dc6c6f355c6a05a1d4e7e1fe76b908e7')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: nautilus-sendto/repos/extra-x86_64/PKGBUILD (from rev 287542, 
nautilus-sendto/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-01-26 20:55:21 UTC (rev 287543)
@@ -0,0 +1,43 @@
+# $Id$
+# Contributor: Jan de Groot 
+# Contributor: Eduardo Romero 
+# Contributor: Tor Krill 
+
+pkgname=nautilus-sendto
+pkgver=3.8.4+33+g5ecfd0e
+pkgrel=1
+pkgdesc="Easily send files via mail"
+arch=(i686 x86_64)

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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:54:45
  Author: heftig
Revision: 287542

3.8.4+33+g5ecfd0e-1

Modified:
  nautilus-sendto/trunk/PKGBUILD

--+
 PKGBUILD |   29 +
 1 file changed, 21 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:52:54 UTC (rev 287541)
+++ PKGBUILD2017-01-26 20:54:45 UTC (rev 287542)
@@ -1,24 +1,37 @@
 # $Id$
-# Maintainer: Jan de Groot 
+# Contributor: Jan de Groot 
 # Contributor: Eduardo Romero 
 # Contributor: Tor Krill 
 
 pkgname=nautilus-sendto
-pkgver=3.8.4
-pkgrel=2
+pkgver=3.8.4+33+g5ecfd0e
+pkgrel=1
 pkgdesc="Easily send files via mail"
 arch=(i686 x86_64)
 url="https://git.gnome.org/browse/nautilus-sendto;
 license=(GPL)
 depends=(glib2)
-makedepends=(gettext intltool gobject-introspection python2)
+makedepends=(gettext intltool gobject-introspection python2 gnome-common git)
 options=('!emptydirs')
 groups=('gnome-extra')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('51065c6e2601560a8bc507c7aee8e967dc6c6f355c6a05a1d4e7e1fe76b908e7')
+_commit=5ecfd0e69a7988d0a5a204c7c0070cab6136709f  # master
+source=("git+https://git.gnome.org/browse/nautilus-sendto#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^NAUTILUS_SENDTO_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  # Fixup tags for pkgver()
+  git tag -f NAUTILUS_SENDTO_3_8_4 eaf083dec2846dc76f72d82755c65f6dc7bf3c86
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "$srcdir/$pkgname"
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
 --disable-schemas-compile
   make
@@ -25,6 +38,6 @@
 }
 
 package() {
-  cd "$pkgname-$pkgver"
+  cd "$pkgname"
   make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in gnome-weather/repos/extra-any (PKGBUILD PKGBUILD)

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:52:54
  Author: heftig
Revision: 287541

archrelease: copy trunk to extra-any

Added:
  gnome-weather/repos/extra-any/PKGBUILD
(from rev 287540, gnome-weather/trunk/PKGBUILD)
Deleted:
  gnome-weather/repos/extra-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-26 20:52:06 UTC (rev 287540)
+++ PKGBUILD2017-01-26 20:52:54 UTC (rev 287541)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-weather
-pkgver=3.20.2
-pkgrel=1
-pkgdesc="Access current weather conditions and forecasts"
-url="https://wiki.gnome.org/Apps/Weather;
-arch=(any)
-license=(GPL)
-depends=(gtk3 gjs libgweather geoclue2)
-makedepends=(intltool gobject-introspection)
-groups=(gnome-extra)
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('7823ca7c08fa852232b98c2517830e3bd9b0ab80c9ac83f182c18ec140a5c18b')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: gnome-weather/repos/extra-any/PKGBUILD (from rev 287540, 
gnome-weather/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2017-01-26 20:52:54 UTC (rev 287541)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-weather
+pkgver=3.20.2
+pkgrel=2
+pkgdesc="Access current weather conditions and forecasts"
+url="https://wiki.gnome.org/Apps/Weather;
+arch=(any)
+license=(GPL)
+depends=(gtk3 gjs libgweather geoclue2 gnome-desktop)
+makedepends=(intltool gobject-introspection autoconf-archive appstream-glib 
git)
+groups=(gnome-extra)
+_commit=dc0de147404ca887471990c54f6cd94afe27dcd2  # tags/3.20.2^0
+source=("git+https://git.gnome.org/browse/gnome-weather#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:52:06
  Author: heftig
Revision: 287540

3.20.2-2

Modified:
  gnome-weather/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:45:50 UTC (rev 287539)
+++ PKGBUILD2017-01-26 20:52:06 UTC (rev 287540)
@@ -3,24 +3,35 @@
 
 pkgname=gnome-weather
 pkgver=3.20.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Access current weather conditions and forecasts"
 url="https://wiki.gnome.org/Apps/Weather;
 arch=(any)
 license=(GPL)
 depends=(gtk3 gjs libgweather geoclue2 gnome-desktop)
-makedepends=(intltool gobject-introspection)
+makedepends=(intltool gobject-introspection autoconf-archive appstream-glib 
git)
 groups=(gnome-extra)
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('7823ca7c08fa852232b98c2517830e3bd9b0ab80c9ac83f182c18ec140a5c18b')
+_commit=dc0de147404ca887471990c54f6cd94afe27dcd2  # tags/3.20.2^0
+source=("git+https://git.gnome.org/browse/gnome-weather#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in gnu-free-fonts/trunk (PKGBUILD)

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:45:50
  Author: heftig
Revision: 287539

https sourec

Modified:
  gnu-free-fonts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:44:55 UTC (rev 287538)
+++ PKGBUILD2017-01-26 20:45:50 UTC (rev 287539)
@@ -8,7 +8,7 @@
 url="https://www.gnu.org/software/freefont/;
 arch=(any)
 license=(GPL3)
-source=(http://ftp.gnu.org/gnu/freefont/freefont-otf-${pkgver}.tar.gz{,.sig}
+source=(https://ftp.gnu.org/gnu/freefont/freefont-otf-${pkgver}.tar.gz{,.sig}
 69-gnu-free-fonts.conf)
 sha256sums=('3a6c51868c71b006c33c4bcde63d90927e6fcca8f51c965b8ad62d021614a860'
 'SKIP'


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:44:56
  Author: heftig
Revision: 209189

https URL

Modified:
  lib32-libpulse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:07:47 UTC (rev 209188)
+++ PKGBUILD2017-01-26 20:44:56 UTC (rev 209189)
@@ -10,7 +10,7 @@
 pkgver=10.0
 pkgrel=1
 arch=(x86_64)
-url="http://www.freedesktop.org/wiki/Software/PulseAudio;
+url="https://www.freedesktop.org/wiki/Software/PulseAudio/;
 license=(LGPL)
 depends=(lib32-dbus lib32-systemd lib32-glib2
  lib32-libasyncns lib32-libcap lib32-libxtst lib32-libsm 
lib32-libsndfile


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:44:55
  Author: heftig
Revision: 287538

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

Added:
  telepathy-farstream/repos/extra-i686/PKGBUILD
(from rev 287537, telepathy-farstream/trunk/PKGBUILD)
  telepathy-farstream/repos/extra-x86_64/PKGBUILD
(from rev 287537, telepathy-farstream/trunk/PKGBUILD)
Deleted:
  telepathy-farstream/repos/extra-i686/PKGBUILD
  telepathy-farstream/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-26 20:44:15 UTC (rev 287537)
+++ extra-i686/PKGBUILD 2017-01-26 20:44:55 UTC (rev 287538)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=telepathy-farstream
-pkgver=0.6.2
-pkgrel=2
-pkgdesc="A telepathy-backend to use stream engine."
-arch=(i686 x86_64)
-url="http://telepathy.freedesktop.org;
-license=('LGPL2.1')
-depends=('telepathy-glib' 'farstream')
-makedepends=('dbus-glib' 'gobject-introspection' 'python2')
-conflicts=('telepathy-farsight')
-replaces=('telepathy-farsight')
-source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('20bdc61ea3f3a01df41068006b62641b')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/telepathy \
---disable-static
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: telepathy-farstream/repos/extra-i686/PKGBUILD (from rev 287537, 
telepathy-farstream/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-26 20:44:55 UTC (rev 287538)
@@ -0,0 +1,43 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=telepathy-farstream
+pkgver=0.6.2
+pkgrel=3
+pkgdesc="Telepathy GLib-based client library that uses Farstream to handle 
Call channels"
+arch=(i686 x86_64)
+url="https://telepathy.freedesktop.org/components/telepathy-farstream/;
+license=(LGPL2.1)
+depends=(telepathy-glib farstream)
+makedepends=(dbus-glib gobject-introspection python2 gtk-doc git glib2-docs)
+replaces=(telepathy-farsight)
+_commit=0b1bba79cfe94e7676fe69e9e0d2e3983a3c14c5  # 
tags/telepathy-farstream-0.6.2^0
+source=("git+https://github.com/TelepathyIM/telepathy-farstream#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^telepathy-farstream-//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$pkgname"
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib/telepathy \
+--disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$pkgname"
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-26 20:44:15 UTC (rev 287537)
+++ extra-x86_64/PKGBUILD   2017-01-26 20:44:55 UTC (rev 287538)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 
-
-pkgname=telepathy-farstream
-pkgver=0.6.2
-pkgrel=2
-pkgdesc="A telepathy-backend to use stream engine."
-arch=(i686 x86_64)
-url="http://telepathy.freedesktop.org;
-license=('LGPL2.1')
-depends=('telepathy-glib' 'farstream')
-makedepends=('dbus-glib' 'gobject-introspection' 'python2')
-conflicts=('telepathy-farsight')
-replaces=('telepathy-farsight')
-source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('20bdc61ea3f3a01df41068006b62641b')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/telepathy \
---disable-static
-  make
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: telepathy-farstream/repos/extra-x86_64/PKGBUILD (from rev 287537, 
telepathy-farstream/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-01-26 20:44:55 UTC (rev 287538)
@@ -0,0 +1,43 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=telepathy-farstream
+pkgver=0.6.2
+pkgrel=3
+pkgdesc="Telepathy GLib-based client library that uses Farstream to handle 
Call channels"
+arch=(i686 x86_64)
+url="https://telepathy.freedesktop.org/components/telepathy-farstream/;
+license=(LGPL2.1)
+depends=(telepathy-glib farstream)
+makedepends=(dbus-glib 

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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:44:15
  Author: heftig
Revision: 287537

0.6.2-3

Modified:
  telepathy-farstream/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:43:05 UTC (rev 287536)
+++ PKGBUILD2017-01-26 20:44:15 UTC (rev 287537)
@@ -1,32 +1,42 @@
 # $Id$
-# Maintainer: Ionut Biru 
+# Contributor: Ionut Biru 
 
 pkgname=telepathy-farstream
 pkgver=0.6.2
-pkgrel=2
-pkgdesc="A telepathy-backend to use stream engine."
+pkgrel=3
+pkgdesc="Telepathy GLib-based client library that uses Farstream to handle 
Call channels"
 arch=(i686 x86_64)
-url="http://telepathy.freedesktop.org;
-license=('LGPL2.1')
-depends=('telepathy-glib' 'farstream')
-makedepends=('dbus-glib' 'gobject-introspection' 'python2')
-conflicts=('telepathy-farsight')
-replaces=('telepathy-farsight')
-source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('20bdc61ea3f3a01df41068006b62641b')
+url="https://telepathy.freedesktop.org/components/telepathy-farstream/;
+license=(LGPL2.1)
+depends=(telepathy-glib farstream)
+makedepends=(dbus-glib gobject-introspection python2 gtk-doc git glib2-docs)
+replaces=(telepathy-farsight)
+_commit=0b1bba79cfe94e7676fe69e9e0d2e3983a3c14c5  # 
tags/telepathy-farstream-0.6.2^0
+source=("git+https://github.com/TelepathyIM/telepathy-farstream#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^telepathy-farstream-//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd "$pkgname-$pkgver"
-
+  cd "$pkgname"
   ./configure --prefix=/usr \
 --sysconfdir=/etc \
 --libexecdir=/usr/lib/telepathy \
 --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
 package() {
-  cd "$pkgname-$pkgver"
+  cd "$pkgname"
   make DESTDIR="$pkgdir" install
 }
 


[arch-commits] Commit in webrtc-audio-processing/repos (4 files)

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:42:40
  Author: heftig
Revision: 287535

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

Added:
  webrtc-audio-processing/repos/extra-i686/PKGBUILD
(from rev 287534, webrtc-audio-processing/trunk/PKGBUILD)
  webrtc-audio-processing/repos/extra-x86_64/PKGBUILD
(from rev 287534, webrtc-audio-processing/trunk/PKGBUILD)
Deleted:
  webrtc-audio-processing/repos/extra-i686/PKGBUILD
  webrtc-audio-processing/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   76 
 extra-i686/PKGBUILD   |   26 
 extra-x86_64/PKGBUILD |   26 
 3 files changed, 76 insertions(+), 52 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-26 20:42:00 UTC (rev 287534)
+++ extra-i686/PKGBUILD 2017-01-26 20:42:40 UTC (rev 287535)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=webrtc-audio-processing
-pkgver=0.3
-pkgrel=1
-pkgdesc="AudioProcessing library based on Google's implementation of WebRTC"
-url="http://freedesktop.org/software/pulseaudio/webrtc-audio-processing;
-arch=(i686 x86_64)
-license=(custom)
-depends=(gcc-libs)
-source=("$url/$pkgname-$pkgver.tar.xz")
-sha256sums=('756e291d4f557d88cd50c4fe3b8454ec238362d22cedb3e6173240d90f0a80fa')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: webrtc-audio-processing/repos/extra-i686/PKGBUILD (from rev 287534, 
webrtc-audio-processing/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-26 20:42:40 UTC (rev 287535)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=webrtc-audio-processing
+pkgver=0.3
+pkgrel=2
+pkgdesc="AudioProcessing library based on Google's implementation of WebRTC"
+url="https://freedesktop.org/software/pulseaudio/webrtc-audio-processing/;
+arch=(i686 x86_64)
+license=(custom)
+depends=(gcc-libs)
+makedepends=(git)
+_commit=fc0e76139404e08cc5b8024daafa1ddf576a4e21  # tags/v0.3^0
+source=("git+https://anongit.freedesktop.org/git/pulseaudio/webrtc-audio-processing#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-26 20:42:00 UTC (rev 287534)
+++ extra-x86_64/PKGBUILD   2017-01-26 20:42:40 UTC (rev 287535)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=webrtc-audio-processing
-pkgver=0.3
-pkgrel=1
-pkgdesc="AudioProcessing library based on Google's implementation of WebRTC"
-url="http://freedesktop.org/software/pulseaudio/webrtc-audio-processing;
-arch=(i686 x86_64)
-license=(custom)
-depends=(gcc-libs)
-source=("$url/$pkgname-$pkgver.tar.xz")
-sha256sums=('756e291d4f557d88cd50c4fe3b8454ec238362d22cedb3e6173240d90f0a80fa')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
-}

Copied: webrtc-audio-processing/repos/extra-x86_64/PKGBUILD (from rev 287534, 
webrtc-audio-processing/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-01-26 20:42:40 UTC (rev 287535)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=webrtc-audio-processing
+pkgver=0.3
+pkgrel=2
+pkgdesc="AudioProcessing library based on Google's implementation of WebRTC"
+url="https://freedesktop.org/software/pulseaudio/webrtc-audio-processing/;
+arch=(i686 x86_64)
+license=(custom)
+depends=(gcc-libs)
+makedepends=(git)
+_commit=fc0e76139404e08cc5b8024daafa1ddf576a4e21  # tags/v0.3^0
+source=("git+https://anongit.freedesktop.org/git/pulseaudio/webrtc-audio-processing#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr 

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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:43:05
  Author: heftig
Revision: 287536

https URL

Modified:
  pulseaudio/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:42:40 UTC (rev 287535)
+++ PKGBUILD2017-01-26 20:43:05 UTC (rev 287536)
@@ -10,7 +10,7 @@
 pkgver=10.0
 pkgrel=2
 arch=(i686 x86_64)
-url="http://www.freedesktop.org/wiki/Software/PulseAudio;
+url="https://www.freedesktop.org/wiki/Software/PulseAudio/;
 license=(GPL)
 makedepends=(libasyncns libcap attr libxtst libsm libsndfile libtool rtkit 
libsoxr
  speexdsp tdb systemd dbus avahi bluez bluez-libs gconf intltool 
jack2-dbus sbc


[arch-commits] Commit in webrtc-audio-processing/trunk (PKGBUILD)

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:42:00
  Author: heftig
Revision: 287534

0.3-2

Modified:
  webrtc-audio-processing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:37:28 UTC (rev 287533)
+++ PKGBUILD2017-01-26 20:42:00 UTC (rev 287534)
@@ -3,23 +3,35 @@
 
 pkgname=webrtc-audio-processing
 pkgver=0.3
-pkgrel=1
+pkgrel=2
 pkgdesc="AudioProcessing library based on Google's implementation of WebRTC"
-url="http://freedesktop.org/software/pulseaudio/webrtc-audio-processing;
+url="https://freedesktop.org/software/pulseaudio/webrtc-audio-processing/;
 arch=(i686 x86_64)
 license=(custom)
 depends=(gcc-libs)
-source=("$url/$pkgname-$pkgver.tar.xz")
-sha256sums=('756e291d4f557d88cd50c4fe3b8454ec238362d22cedb3e6173240d90f0a80fa')
+makedepends=(git)
+_commit=fc0e76139404e08cc5b8024daafa1ddf576a4e21  # tags/v0.3^0
+source=("git+https://anongit.freedesktop.org/git/pulseaudio/webrtc-audio-processing#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^v//;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   ./configure --prefix=/usr --disable-static
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
   make DESTDIR="$pkgdir" install
 
   install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:37:28
  Author: heftig
Revision: 287533

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

Added:
  seahorse-nautilus/repos/extra-i686/PKGBUILD
(from rev 287532, seahorse-nautilus/trunk/PKGBUILD)
  seahorse-nautilus/repos/extra-x86_64/PKGBUILD
(from rev 287532, seahorse-nautilus/trunk/PKGBUILD)
Deleted:
  seahorse-nautilus/repos/extra-i686/PKGBUILD
  seahorse-nautilus/repos/extra-x86_64/PKGBUILD

---+
 /PKGBUILD |   78 
 extra-i686/PKGBUILD   |   27 
 extra-x86_64/PKGBUILD |   27 
 3 files changed, 78 insertions(+), 54 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-26 20:36:38 UTC (rev 287532)
+++ extra-i686/PKGBUILD 2017-01-26 20:37:28 UTC (rev 287533)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Balló György 
-
-pkgname=seahorse-nautilus
-pkgver=3.11.92
-pkgrel=2
-pkgdesc="PGP encryption and signing for nautilus"
-arch=('i686' 'x86_64')
-url="http://git.gnome.org/browse/seahorse-nautilus/;
-license=('GPL')
-depends=('libcryptui' 'gcr' 'nautilus')
-makedepends=('intltool')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('70374f9bb46a0adfbd154f4094e7a05b7766abfe60845a0a49463b4d15f17f92')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-static --disable-schemas-compile --disable-gpg-check
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-}

Copied: seahorse-nautilus/repos/extra-i686/PKGBUILD (from rev 287532, 
seahorse-nautilus/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2017-01-26 20:37:28 UTC (rev 287533)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Balló György 
+
+pkgname=seahorse-nautilus
+pkgver=3.11.92+17+gca04c23
+pkgrel=1
+pkgdesc="PGP encryption and signing for nautilus"
+arch=(i686 x86_64)
+url="https://git.gnome.org/browse/seahorse-nautilus/;
+license=(GPL)
+depends=(libcryptui gcr nautilus)
+makedepends=(intltool gnome-common git libgnome-keyring)
+_commit=ca04c239f00cce931ccb8680bba528507a154368  # master
+source=("git+https://git.gnome.org/browse/seahorse-nautilus#commit=$_commit;)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd "$srcdir/$pkgname"
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-static --disable-schemas-compile
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname"
+  make DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2017-01-26 20:36:38 UTC (rev 287532)
+++ extra-x86_64/PKGBUILD   2017-01-26 20:37:28 UTC (rev 287533)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Balló György 
-
-pkgname=seahorse-nautilus
-pkgver=3.11.92
-pkgrel=2
-pkgdesc="PGP encryption and signing for nautilus"
-arch=('i686' 'x86_64')
-url="http://git.gnome.org/browse/seahorse-nautilus/;
-license=('GPL')
-depends=('libcryptui' 'gcr' 'nautilus')
-makedepends=('intltool')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('70374f9bb46a0adfbd154f4094e7a05b7766abfe60845a0a49463b4d15f17f92')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-static --disable-schemas-compile --disable-gpg-check
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
-}

Copied: seahorse-nautilus/repos/extra-x86_64/PKGBUILD (from rev 287532, 
seahorse-nautilus/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2017-01-26 20:37:28 UTC (rev 287533)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Balló György 
+
+pkgname=seahorse-nautilus
+pkgver=3.11.92+17+gca04c23
+pkgrel=1
+pkgdesc="PGP encryption and signing for nautilus"
+arch=(i686 x86_64)
+url="https://git.gnome.org/browse/seahorse-nautilus/;
+license=(GPL)

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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:36:38
  Author: heftig
Revision: 287532

3.11.92+17+gca04c23-1

Modified:
  seahorse-nautilus/trunk/PKGBUILD

--+
 PKGBUILD |   38 +-
 1 file changed, 25 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:34:09 UTC (rev 287531)
+++ PKGBUILD2017-01-26 20:36:38 UTC (rev 287532)
@@ -3,25 +3,37 @@
 # Contributor: Balló György 
 
 pkgname=seahorse-nautilus
-pkgver=3.11.92
-pkgrel=2
+pkgver=3.11.92+17+gca04c23
+pkgrel=1
 pkgdesc="PGP encryption and signing for nautilus"
-arch=('i686' 'x86_64')
-url="http://git.gnome.org/browse/seahorse-nautilus/;
-license=('GPL')
-depends=('libcryptui' 'gcr' 'nautilus')
-makedepends=('intltool')
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('70374f9bb46a0adfbd154f4094e7a05b7766abfe60845a0a49463b4d15f17f92')
+arch=(i686 x86_64)
+url="https://git.gnome.org/browse/seahorse-nautilus/;
+license=(GPL)
+depends=(libcryptui gcr nautilus)
+makedepends=(intltool gnome-common git libgnome-keyring)
+_commit=ca04c239f00cce931ccb8680bba528507a154368  # master
+source=("git+https://git.gnome.org/browse/seahorse-nautilus#commit=$_commit;)
+sha256sums=('SKIP')
 
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
+  cd "$srcdir/$pkgname"
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
-  --disable-static --disable-schemas-compile --disable-gpg-check
+  --disable-static --disable-schemas-compile
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   make
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir/" install
+  cd "$srcdir/$pkgname"
+  make DESTDIR="$pkgdir" install
 }


[arch-commits] Commit in libreoffice-fresh-i18n/repos (2 files)

2017-01-26 Thread Andreas Radke
Date: Thursday, January 26, 2017 @ 20:34:09
  Author: andyrtr
Revision: 287531

archrelease: copy trunk to testing-any

Added:
  libreoffice-fresh-i18n/repos/testing-any/
  libreoffice-fresh-i18n/repos/testing-any/PKGBUILD
(from rev 287530, libreoffice-fresh-i18n/trunk/PKGBUILD)

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

Copied: libreoffice-fresh-i18n/repos/testing-any/PKGBUILD (from rev 287530, 
libreoffice-fresh-i18n/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2017-01-26 20:34:09 UTC (rev 287531)
@@ -0,0 +1,534 @@
+# $Id$
+# Maintainer: Andreas Radke 
+# Maintainer: Bartłomiej Piotrowski 
+
+pkgbase=libreoffice-fresh-i18n
+
+pkgver=5.2.5
+pkgrel=1
+_rcver=${pkgver}.1
+#_oodlver=${pkgver}.0.beta1
+_oodlver=${pkgver}
+
+arch=('any')
+url="http://www.documentfoundation.org;
+license=('LGPL')
+
+#https://download.documentfoundation.org/mirrors/all.html
+_url="https://download.documentfoundation.org/libreoffice/stable;
+#_url="https://download.documentfoundation.org/libreoffice/testing;
+#_url="https://dev-builds.libreoffice.org/pre-releases;
+#_url="https://www.libreoffice.org/download/pre-releases;
+
+#_url+="/${pkgver}-rc2/rpm/x86"
+_url+="/${pkgver}/rpm/x86"
+#_url+="/rpm/x86"
+
+_languages=(
+  'af"Afrikaans"'
+  'am"Amharic"'
+  'ar"Arabic"'
+  'as"Assamese (India)"'
+  'ast   "Asturianu"'
+  'be"Belarusian"'
+  'bg"Bulgarian"'
+  'bn"Bengali"'
+  'bn-IN "Bengali (India)"'
+  'bo"Tibetan"'
+  'br"Breton"'
+  'brx   "Bodo"'
+  'bs"Bosnian"'
+  'ca"Catalan"'
+  'ca-valencia   "Catalan (Valencia)"'
+  'cs"Czech"'
+  'cy"Welsh"'
+  'da"Danish"'
+  'de"German"'
+  'dgo   "Dogri"'
+  'dz"Dzongkha"'
+  'el"Greek"'
+  'en-GB "English (GB)"'
+  'en-ZA "English (ZA)"'
+  'eo"Esperanto"'
+  'es"Spanish"'
+  'et"Estonian"'
+  'eu"Basque"'
+  'fa"Persian"'
+  'fi"Finnish"'
+  'fr"French"'
+  'ga"Irish"'
+  'gd"Gaelic (Scottish)"'
+  'gl"Galician"'
+  'gu"Gujarati"'
+  'he"Hebrew"'
+  'hi"Hindi"'
+  'hr"Croatian"'
+  'hu"Hungarian"'
+  'id"Indonesian"'
+  'is"Icelandic"'
+  'it"Italian"'
+  'ja"Japanese"'
+  'ka"Georgian"'
+  'kk"Kazakh"'
+  'km"Khmer (Cambodia)"'
+  'kmr-Latn  "Kurdish"'
+  'kn"Kannada"'
+  'ko"Korean"'
+  'kok   "Konkani"'
+  'ks"Kashmiri"'
+  'lb"Luxembourgish"'
+  'lo"Lao"'
+  'lt"Lithuanian"'
+  'lv"Latvian"'
+  'mai   "Maithili"'
+  'mk"Macedonian"'
+  'ml"Malayalam"'
+  'mn"Mongolian"'
+  'mni   "Manipuri"'
+  'mr"Marathi"'
+  'my"Burmese"'
+  'nb"Norwegian Bokmal"'
+  'ne"Nepali"'
+  'nl"Dutch"'
+  'nn"Norwegian Nynorsk"'
+  'nr"Ndebele (South)"'
+  'nso   "Northern Sotho"'
+  'oc"Occitan"'
+  'om"Oromo"'
+  'or"Oriya"'
+  'pa-IN "Punjabi (India)"'
+  'pl"Polish"'
+  'pt"Portuguese"'
+  'pt-BR "Portuguese (Brasil)"'
+  'ro"Romanian"'
+  'ru"Russian"'
+  'rw"Kinyarwanda"'
+  'sa-IN "Sanskrit (India)"'
+  'sat   "Santali"'
+  'sd"Sindhi"'
+  'si"Singhalese"'
+  'sid   "Sidama"'
+  'sk"Slovak"'
+  'sl"Slovenian"'
+  'sq"Albanien"'
+  'sr"Serbian"'
+  'sr-Latn   "Serbian (Latin)"'
+  'ss"Swati"'
+  'st"Southern Sotho"'
+  'sv"Swedish"'
+  'sw-TZ "Swahili (Tanzania)"'
+  'ta"Tamil"'
+  'te"Telugu"'
+  'tg"Tajik"'
+  'th"Thai"'
+  'tn"Tswana"'
+  'tr"Turkish"'
+  'ts"Tsonga"'
+  'tt"Tatar"'
+  'ug"Uighur"'
+  'uk"Ukrainian"'
+  'uz"Uzbek"'
+  've"Venda"'
+  'vi"Vietnamese"'
+  'xh"Xhosa"'
+  'zh-CN "Chinese (simplified)"'
+  'zh-TW "Chinese (traditional)"'
+  'zu"Zulu"'
+)
+sha256sums=('8d74535a1ee8be323b9587a08c4f93fad40f952c85a6ee7e03fea2e8b53ae65b'
+'SKIP'
+

[arch-commits] Commit in libreoffice-fresh-i18n/trunk (PKGBUILD)

2017-01-26 Thread Andreas Radke
Date: Thursday, January 26, 2017 @ 20:32:54
  Author: andyrtr
Revision: 287530

upgpkg: libreoffice-fresh-i18n 5.2.5-1

upstream update 5.2.5

Modified:
  libreoffice-fresh-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  350 ++---
 1 file changed, 175 insertions(+), 175 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:30:41 UTC (rev 287529)
+++ PKGBUILD2017-01-26 20:32:54 UTC (rev 287530)
@@ -4,9 +4,9 @@
 
 pkgbase=libreoffice-fresh-i18n
 
-pkgver=5.2.4
+pkgver=5.2.5
 pkgrel=1
-_rcver=${pkgver}.2
+_rcver=${pkgver}.1
 #_oodlver=${pkgver}.0.beta1
 _oodlver=${pkgver}
 
@@ -135,351 +135,351 @@
   'zh-TW "Chinese (traditional)"'
   'zu"Zulu"'
 )
-sha256sums=('580b002cb95aaf4439222bb02c7ff003db7500a92219bc4282c21c604aca0f31'
+sha256sums=('8d74535a1ee8be323b9587a08c4f93fad40f952c85a6ee7e03fea2e8b53ae65b'
 'SKIP'
-'24a8560869d7c995a4a7ebfce2521da6814fcb353922b1622c3fdd9bc95aaffd'
+'c5fccc6243cafaa8f0c11f8457d8b7c20a2da48449aa360cc59e7ba9e5d4005d'
 'SKIP'
-'fc9e3dc1643b54945c6530a88a1dc78b1cea2cb375d860b0ab333d459d49ddfb'
+'9217c11a647bb5378da97e7edefa956ee372c2a41f2e3bf9ac32b2c88e1830e8'
 'SKIP'
-'174a11b6aac71f72f01f5da9f44b9821235001c6b627c867459fa99fb26cecf6'
+'6dc41f7ae703cf2dabcab88117379e8c5bf50e5ec65da439ad26801d8509708a'
 'SKIP'
-'d8e6d48e92d024c59b9f5a06a4b66350fdba29689c6d7acfcc7fbd765bd42cb8'
+'6a37d8ad48aab7ce300c836905def83afb5e68e7bb947522a29f8528670b528a'
 'SKIP'
-'c139379c9a1650ca723d2d76ff05f8479ab95f676dcbf65a0a7219703133b438'
+'28cdb90ebf960fb1012d0c6608541dd1315a2cbc8e6b908b9b51d64b1993170e'
 'SKIP'
-'123bb81b3ee8c0c71c19495685d14f92099c85288ba2b4c8cb657030898e5a14'
+'57a3d65c6b1ea7a3427a934ed85001f4ba376ca462a8ed4dff790f84789c4104'
 'SKIP'
-'8f1c03e8a8644e3af3f8579ed757e99b033862e62d20dd65f145227d18b9'
+'12116fc95520c82a97c6a08aace02a3828aec3354971dc07441abea01a4843dd'
 'SKIP'
-'aa41f3add35a01b014d02101153c836529ddcd0e4b13a6226ece8ed4cffab565'
+'81afd8391f6582eff685e8d0c34ffc618b7f98f4865d8710a4a104264c0c3bef'
 'SKIP'
-'ad79d66876a1bd1c881586ee9d1a9054dd0a7f4fc35d699a933342c266ba5ea1'
+'a8e20164f2dd003484cc7d5ea4bbbfe6e615d4246074d8e3bcc44a49ef15622d'
 'SKIP'
-'55139b451b54c64a3a2fb7accd5e73b7abe7d639ed86a0004748392bb75f6063'
+'b5343da86ecc5b9e1e7fb2cfe2da253e1d82f4eb0cacd559d5fe3b073939bb3e'
 'SKIP'
-'915ca3fd24c77c0f4a997398a0f8c828e64ba9c4a484cf2fc0ab65563a52c7a2'
+'e3a0f3d0a5b80a2b329ca4b8d6e44a0d8a45e5a6e251834dd43232020a402732'
 'SKIP'
-'e37855592856066866a92308b527d8ea9cd807ae6f15d5aead3495ee47b2256a'
+'9066a125a741bf5ec14fec7a1af41c04ec6451ca1cc1fe456075516a8fd56ff1'
 'SKIP'
-'a254a389668bf3745908b4d6276af6c35035f4cd0bf5cf140844aa1c765fa5cf'
+'6c1e8723609c1b2c8e53b335238d241a48a96234f24fbeb12a6bb52533fe3e1e'
 'SKIP'
-'0d321dc23e3641b43af6440b5cdf9313cd68b14375dbd3b8c8a5518ef07b1330'
+'761d521b66fdf889699b7e5cfc877d0ff36b63f984787dfed9c03276ace4a708'
 'SKIP'
-'7f41b896bfd1f792de8bb99e1e933fc01982d4995036f8452f3b891b3860606d'
+'c218e506a9fdd860f8c8642f66fbe96bec1321eb1a23411a8be67cb1dc1f0022'
 'SKIP'
-'48d0754a7936ebf654071a3eb820796e20237f69422dd95fadb62033d300936a'
+'9e0c4f85527696aa35e31eb5ead62c099075d48f9a88f433ffc62b5f95de9cea'
 'SKIP'
-'593c85962e8143ff748b7c9bb43c2fedecac978faf018e20b5d46015a5745513'
+'f8cf7d7512b4c8e106c1853e7e862f976f91c4ac0184de440d7a8c3da8a16e7c'
 'SKIP'
-'201793e24d3be63efcc4cda241a07ce72dfe75b062048961e7b21c52f1d32f59'
+'020b0f6552e9cc0ebfd870cd5325fae727bc79d3d2149ccd2a19b54ff55d9a6f'
 'SKIP'
-'13203657786f5a07ef6e7bb9b0cffee8aa964c45daf2a09422353847f78c138e'
+'a0f9c2f820ba308f0665f7257a8ee9800f418ec74cc7dd74082ffaf3148bf548'
 'SKIP'
-'b04817bb142602edb0ad2b6937d3e3028cd6fb60f08a1d5cccfd5308ece8c6d7'
+'67daad480d059ff7f4deb4c16488b52b492741b7611898daf5418636655f1176'
 'SKIP'
-'43750cd13969a25faf60014cc89d7eb4b57a7024fa9305070e6b6883697cca32'
+'c1b43a303b6f7a125b66db272516be48da0a59249fa3ad2fc4281b016b0f9ae4'
 'SKIP'
-'0346d887ca89c88031601fa256e3b50e80108229f64fa60ca6bacf0abb26f619'
+'b57650de60cedf8eb57bbab0b2a9c113f1d095abb5ff37d05abf7dc7079c143e'
 'SKIP'
-

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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:30:41
  Author: heftig
Revision: 287529

https source

Modified:
  webkitgtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:21:24 UTC (rev 287528)
+++ PKGBUILD2017-01-26 20:30:41 UTC (rev 287529)
@@ -17,7 +17,7 @@
 'gst-libav: nonfree media decoding')
 options=(!emptydirs)
 install=webkitgtk.install
-source=(http://webkitgtk.org/releases/$pkgbase-${pkgver}.tar.xz
+source=(https://webkitgtk.org/releases/$pkgbase-${pkgver}.tar.xz
 webkitgtk-2.4.9-abs.patch)
 sha256sums=('588aea051bfbacced27fdfe0335a957dca839ebe36aa548df39c7bbafdb65bf7'
 'ec294bbb5588a1802a68e3615c6718486b22f922645c5fef686d3d103014bf70')


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:21:24
  Author: heftig
Revision: 287528

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

Added:
  empathy/repos/testing-i686/
  empathy/repos/testing-i686/PKGBUILD
(from rev 287527, empathy/trunk/PKGBUILD)
  empathy/repos/testing-x86_64/
  empathy/repos/testing-x86_64/PKGBUILD
(from rev 287527, empathy/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   56 ++
 testing-x86_64/PKGBUILD |   56 ++
 2 files changed, 112 insertions(+)

Copied: empathy/repos/testing-i686/PKGBUILD (from rev 287527, 
empathy/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2017-01-26 20:21:24 UTC (rev 287528)
@@ -0,0 +1,56 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=empathy
+pkgver=3.12.12+69+g841af5f32
+pkgrel=1
+pkgdesc="A GNOME instant messaging client using the Telepathy framework"
+url="https://wiki.gnome.org/Apps/Empathy;
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(clutter-gst clutter-gtk folks gcr iso-codes libcanberra libpulse 
webkit2gtk
+ telepathy-farstream telepathy-glib telepathy-logger 
telepathy-mission-control geoclue2
+ geocode-glib cheese libchamplain libgudev)
+makedepends=(intltool itstool docbook-xsl python gnome-common git)
+optdepends=('telepathy-gabble: XMPP/Jabber support'
+'telepathy-idle: IRC support'
+'telepathy-salut: Link-local XMPP support'
+'telepathy-rakia: SIP support'
+'telepathy-haze: libpurple support')
+groups=(gnome)
+_commit=841af5f329c37fd36fa4104c8a430e4ec03f1448  # master
+source=("git+https://git.gnome.org/browse/empathy#commit=$_commit;
+"git+https://git.gnome.org/browse/telepathy-account-widgets;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^EMPATHY_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.telepathy-account-widgets.url 
"$srcdir/telepathy-account-widgets"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  export LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc  \
+  --libexecdir=/usr/lib/empathy \
+  --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}

Copied: empathy/repos/testing-x86_64/PKGBUILD (from rev 287527, 
empathy/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2017-01-26 20:21:24 UTC (rev 287528)
@@ -0,0 +1,56 @@
+# $Id$
+# Contributor: Ionut Biru 
+
+pkgname=empathy
+pkgver=3.12.12+69+g841af5f32
+pkgrel=1
+pkgdesc="A GNOME instant messaging client using the Telepathy framework"
+url="https://wiki.gnome.org/Apps/Empathy;
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(clutter-gst clutter-gtk folks gcr iso-codes libcanberra libpulse 
webkit2gtk
+ telepathy-farstream telepathy-glib telepathy-logger 
telepathy-mission-control geoclue2
+ geocode-glib cheese libchamplain libgudev)
+makedepends=(intltool itstool docbook-xsl python gnome-common git)
+optdepends=('telepathy-gabble: XMPP/Jabber support'
+'telepathy-idle: IRC support'
+'telepathy-salut: Link-local XMPP support'
+'telepathy-rakia: SIP support'
+'telepathy-haze: libpurple support')
+groups=(gnome)
+_commit=841af5f329c37fd36fa4104c8a430e4ec03f1448  # master
+source=("git+https://git.gnome.org/browse/empathy#commit=$_commit;
+"git+https://git.gnome.org/browse/telepathy-account-widgets;)
+sha256sums=('SKIP'
+'SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^EMPATHY_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+
+  git submodule init
+  git config --local submodule.telepathy-account-widgets.url 
"$srcdir/telepathy-account-widgets"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  export LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc  \
+  --libexecdir=/usr/lib/empathy \
+  --disable-static
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}


[arch-commits] Commit in firefox-i18n/repos/staging-any (PKGBUILD PKGBUILD)

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:20:59
  Author: heftig
Revision: 287527

archrelease: copy trunk to staging-any

Added:
  firefox-i18n/repos/staging-any/PKGBUILD
(from rev 287526, firefox-i18n/trunk/PKGBUILD)
Deleted:
  firefox-i18n/repos/staging-any/PKGBUILD

--+
 PKGBUILD |  444 ++---
 1 file changed, 222 insertions(+), 222 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2017-01-26 20:18:11 UTC (rev 287526)
+++ PKGBUILD2017-01-26 20:20:59 UTC (rev 287527)
@@ -1,222 +0,0 @@
-# $Id$
-# Maintainer: Thomas Baechler 
-# Contributor: Jaroslaw Swierczynski 
-# Contributor: Michal Hybner 
-# Contributor: Andrea Scarpino 
-
-pkgbase=firefox-i18n
-pkgver=51.0
-pkgrel=1
-pkgdesc="Language pack for Firefox"
-arch=('any')
-url="http://www.mozilla.com/;
-license=('MPL' 'GPL')
-
-_languages=(
-  'ach"Acholi"'
-  'af "Afrikaans"'
-  'an "Aragonese"'
-  'ar "Arabic"'
-  'as "Assamese"'
-  'ast"Asturian"'
-  'az "Azerbaijani"'
-  'bg "Bulgarian"'
-  'bn-BD  "Bengali (Bangladesh)"'
-  'bn-IN  "Bengali (India)"'
-  'br "Breton"'
-  'bs "Bosnian"'
-  'ca "Catalan"'
-  'cak"Maya Kaqchikel"'
-  'cs "Czech"'
-  'cy "Welsh"'
-  'da "Danish"'
-  'de "German"'
-  'dsb"Lower Sorbian"'
-  'el "Greek"'
-  'en-GB  "English (British)"'
-  'en-US  "English (US)"'
-  'en-ZA  "English (South African)"'
-  'eo "Esperanto"'
-  'es-AR  "Spanish (Argentina)"'
-  'es-CL  "Spanish (Chile)"'
-  'es-ES  "Spanish (Spain)"'
-  'es-MX  "Spanish (Mexico)"'
-  'et "Estonian"'
-  'eu "Basque"'
-  'fa "Persian"'
-  'ff "Fulah"'
-  'fi "Finnish"'
-  'fr "French"'
-  'fy-NL  "Frisian"'
-  'ga-IE  "Irish"'
-  'gd "Gaelic (Scotland)"'
-  'gl "Galician"'
-  'gn "Guarani"'
-  'gu-IN  "Gujarati (India)"'
-  'he "Hebrew"'
-  'hi-IN  "Hindi (India)"'
-  'hr "Croatian"'
-  'hsb"Upper Sorbian"'
-  'hu "Hungarian"'
-  'hy-AM  "Armenian"'
-  'id "Indonesian"'
-  'is "Icelandic"'
-  'it "Italian"'
-  'ja "Japanese"'
-  'kk "Kazakh"'
-  'km "Khmer"'
-  'kn "Kannada"'
-  'ko "Korean"'
-  'lij"Ligurian"'
-  'lt "Lithuanian"'
-  'lv "Latvian"'
-  'mai"Maithili"'
-  'mk "Macedonian"'
-  'ml "Malayalam"'
-  'mr "Marathi"'
-  'ms "Malay"'
-  'nb-NO  "Norwegian (Bokmål)"'
-  'nl "Dutch"'
-  'nn-NO  "Norwegian (Nynorsk)"'
-  'or "Oriya"'
-  'pa-IN  "Punjabi (India)"'
-  'pl "Polish"'
-  'pt-BR  "Portuguese (Brazilian)"'
-  'pt-PT  "Portuguese (Portugal)"'
-  'rm "Romansh"'
-  'ro "Romanian"'
-  'ru "Russian"'
-  'si "Sinhala"'
-  'sk "Slovak"'
-  'sl "Slovenian"'
-  'son"Songhai"'
-  'sq "Albanian"'
-  'sr "Serbian"'
-  'sv-SE  "Swedish"'
-  'ta "Tamil"'
-  'te "Telugu"'
-  'th "Thai"'
-  'tr "Turkish"'
-  'uk "Ukrainian"'
-  'uz "Uzbek"'
-  'vi "Vietnamese"'
-  'xh "Xhosa"'
-  'zh-CN  "Chinese (Simplified)"'
-  'zh-TW  "Chinese (Traditional)"'
-)
-
-pkgname=()
-source=()
-_url=https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/linux-i686/xpi
-
-for _lang in "${_languages[@]}"; do
-  _locale=${_lang%% *}
-  _pkgname=firefox-i18n-${_locale,,}
-
-  pkgname+=($_pkgname)
-  source+=("firefox-i18n-$pkgver-$_locale.xpi::$_url/$_locale.xpi")
-  eval "package_$_pkgname() {
-_package $_lang
-  }"
-done
-
-# Don't extract anything
-noextract=(${source[@]%%::*})
-
-_package() {
-  pkgdesc="$2 language pack for Firefox"
-  depends=("firefox>=$pkgver")
-  install -Dm644 firefox-i18n-$pkgver-$1.xpi \
-
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
-}
-
-sha256sums=('2db50aa5fe8866e0835316817a8f605dd517711fc59ac87eb1c27d259e1dcdb7'
-'b4ee7ec17f3b9334630ff35e01c1aad47a0f493306eefd21b7dceccb274053d5'
-'3d3a2396ab5083853e20b2cd3fa519642e6f4cd2b66cf446e80c7a794987c64a'
-'3d93c078f8f89dd4993069fa673ceba70b3cc5be7c452afd37063b11e8f5dcbe'
-'2ba58525cc4f1393015ddcecc286df6c1c1fbab69fc38e697a694625dc325e71'
-'267db3935e315e28c8fcfd3971b7885f7901294b90172e808fbcd28c2c26ae55'
-'7fc38d646f814b286c0ef2c8bbfd1a7b17c88d3c628c22c559cce018ab1ca461'
-'ced3d6568e3421dafe0b8cda07f7d29c5421e038d42bcac759458133a1f3b272'
-'94f1f7a8decc0cb8c4accd1826b8f335b16abbb259359566be5e25529998d349'
-'c02c9b776479800c2815811921d5c334d3079fad1b10b5668f1cad2883d40951'
-'ad0f3653a2f98487de066e7f2bfc5a3cb164e5a813863c0fda921ec496fa0363'
-'cfdcf39092ef00377d7beab3859b7de11174bf7c3654cca7b9734ac4b255e6c3'
-'1115b657c3899829009f4c8e553d2cba22fba271c5750a596920d81065d6dd77'
-

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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:18:11
  Author: heftig
Revision: 287526

3.12.12+69+g841af5f32-1

Modified:
  empathy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 20:11:17 UTC (rev 287525)
+++ PKGBUILD2017-01-26 20:18:11 UTC (rev 287526)
@@ -1,27 +1,28 @@
 # $Id$
-# Maintainer: Ionut Biru 
+# Contributor: Ionut Biru 
 
 pkgname=empathy
-pkgver=3.12.12+35+g8311b76
+pkgver=3.12.12+69+g841af5f32
 pkgrel=1
 pkgdesc="A GNOME instant messaging client using the Telepathy framework"
 url="https://wiki.gnome.org/Apps/Empathy;
 arch=(i686 x86_64)
 license=(GPL2)
-depends=(clutter-gst clutter-gtk folks gcr iso-codes libcanberra libpulse 
webkitgtk
+depends=(clutter-gst clutter-gtk folks gcr iso-codes libcanberra libpulse 
webkit2gtk
  telepathy-farstream telepathy-glib telepathy-logger 
telepathy-mission-control geoclue2
  geocode-glib cheese libchamplain libgudev)
-makedepends=(intltool itstool docbook-xsl python python2 gnome-common git)
+makedepends=(intltool itstool docbook-xsl python gnome-common git)
 optdepends=('telepathy-gabble: XMPP/Jabber support'
 'telepathy-idle: IRC support'
 'telepathy-salut: Link-local XMPP support'
 'telepathy-rakia: SIP support'
 'telepathy-haze: libpurple support')
-options=(!makeflags)
 groups=(gnome)
-_commit=8311b765895d092c178ba81a36dd3956503ef351  # master
-source=("git://git.gnome.org/empathy#commit=$_commit")
-sha256sums=('SKIP')
+_commit=841af5f329c37fd36fa4104c8a430e4ec03f1448  # master
+source=("git+https://git.gnome.org/browse/empathy#commit=$_commit;
+"git+https://git.gnome.org/browse/telepathy-account-widgets;)
+sha256sums=('SKIP'
+'SKIP')
 
 pkgver() {
   cd $pkgname
@@ -30,12 +31,18 @@
 
 prepare() {
   cd $pkgname
+
+  git submodule init
+  git config --local submodule.telepathy-account-widgets.url 
"$srcdir/telepathy-account-widgets"
+  git submodule update
+
   NOCONFIGURE=1 ./autogen.sh
 }
 
 build() {
   cd $pkgname
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr \
+  export LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
+  ./configure --prefix=/usr \
   --sysconfdir=/etc  \
   --libexecdir=/usr/lib/empathy \
   --disable-static


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

2017-01-26 Thread Jan Steffens
Date: Thursday, January 26, 2017 @ 20:11:17
  Author: heftig
Revision: 287525

51.0.1-1

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  182 ++---
 1 file changed, 91 insertions(+), 91 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 19:14:24 UTC (rev 287524)
+++ PKGBUILD2017-01-26 20:11:17 UTC (rev 287525)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino 
 
 pkgbase=firefox-i18n
-pkgver=51.0
+pkgver=51.0.1
 pkgrel=1
 pkgdesc="Language pack for Firefox"
 arch=('any')
@@ -130,93 +130,93 @@
 
"$pkgdir/usr/lib/firefox/browser/extensions/langpack-$1...@firefox.mozilla.org.xpi"
 }
 
-sha256sums=('2db50aa5fe8866e0835316817a8f605dd517711fc59ac87eb1c27d259e1dcdb7'
-'b4ee7ec17f3b9334630ff35e01c1aad47a0f493306eefd21b7dceccb274053d5'
-'3d3a2396ab5083853e20b2cd3fa519642e6f4cd2b66cf446e80c7a794987c64a'
-'3d93c078f8f89dd4993069fa673ceba70b3cc5be7c452afd37063b11e8f5dcbe'
-'2ba58525cc4f1393015ddcecc286df6c1c1fbab69fc38e697a694625dc325e71'
-'267db3935e315e28c8fcfd3971b7885f7901294b90172e808fbcd28c2c26ae55'
-'7fc38d646f814b286c0ef2c8bbfd1a7b17c88d3c628c22c559cce018ab1ca461'
-'ced3d6568e3421dafe0b8cda07f7d29c5421e038d42bcac759458133a1f3b272'
-'94f1f7a8decc0cb8c4accd1826b8f335b16abbb259359566be5e25529998d349'
-'c02c9b776479800c2815811921d5c334d3079fad1b10b5668f1cad2883d40951'
-'ad0f3653a2f98487de066e7f2bfc5a3cb164e5a813863c0fda921ec496fa0363'
-'cfdcf39092ef00377d7beab3859b7de11174bf7c3654cca7b9734ac4b255e6c3'
-'1115b657c3899829009f4c8e553d2cba22fba271c5750a596920d81065d6dd77'
-'326ae3e466139567ed2877dbfb01fb696c7a02b3818c48e65923eb64df13c358'
-'bb4b595d981bbbc56058d41ce73e9fab410d43b8bd49f899fcc941a2af80'
-'96b50da1eb50b38a83dd6e0065a79c069dce2c762ea4dbb87a47282bab68ebda'
-'7206aa12af4f69d70f598438fb4c8ee528517f7595db5d1d1b51055e851f3a88'
-'4e10974ed2d4e260c9eb1205d131cdb1fdf9672584d330396e5f53a28b977cf0'
-'53a4d8c6175091a724a5c5d94d552ad761ae6aad2643d8f3a2d068a3661dc117'
-'011e683dfca482754bcf7a722ad46ec17a920aa012d8f238012c42f05687e5a9'
-'7f7a3fbb98c0b0411c81d8fb04f300f0548ddbdeb99a225a775c35742b372134'
-'91c8fdb94a50aaf34cbed5e319850ee6df09c9d2c1bb7d98ec3fbc575527938f'
-'eb92618d4ce84735671bec8c9e7d8a1a310d1ce0648e259d8b547cb73ed31c5d'
-'0f38d937e8d6e6560b1907ac8fc21e72c1daef9d87b244d9dfaf7e3ccdf1dc19'
-'bd828cdeed17fe2a606ed6bda40852b46537ea320741619dcfefc0c29878d40c'
-'a14285e925cfcf01cde25cec6dd6fd2f7d90c78abc0f0734949a02a48f981e76'
-'dc3a1b1a50dae2885b24e8bdd58e17c67a108dfad4712f291007af4ddc5fe8cb'
-'77f11998e4e5dae7b1e42a3d4601bd32c720df72496bb5b526ff05cd90a65301'
-'24b4d7ab975f624618ec524e0fee5a64b943d90cc339ab37af671efd9448f0c6'
-'5cf55b5a15eb77b13557646cb7db1963ebfe717e9ce291fea868005dac7d7174'
-'f461c631c33b90a738b7e158556408966f1a429f4bac27d01f14e6b823385f75'
-'eecfff13c273289228c20fb710847f74236e60088afbfd62368b9cb66f3b2b7c'
-'1a43ec5bdc3355486d2db56ce77c21d8361a4745ddaaab82e3a13349d4f801aa'
-'2fe646ccaa1cf4e5e2601459452e364f9bfccc0bb8ff37d5105505576d338e0a'
-'b03faae59547ccea4b55a12ed67874eb86af4d9b6aa3c7b9a2f2c6a74194b6e7'
-'8be3e3530480fb9fa2b892dc027a78048d947b655c0b6db0e45b83de1288a068'
-'26b53d668cab518e1d350b875a0221148ce09c1fa7c0e5cd106b058532df925c'
-'e1295088a34bc6d0c569c79cd2c7beb8f3f0574ff6f315b8825c060ba1bba3cb'
-'92c52452dbcfbf1b5f65ab0f837441bc44c1170aca1bc686e5e64bbd6c5c8d36'
-'d50f96985e4a81f85ddc876359d1afc2dd1038ceffd95c2eddf3ffd704586951'
-'6a3db03de54e4e10bbf980081bac1e980327c8dcd43b2bb40f0bb38d20418b03'
-'97376eef6cfa37909206f3eec1546b61757762a6c3f9c8a1e936cb7e3654ec0c'
-'3b4da4a9088352c30772d7dff4e4b723279b56883f43f046de9419574edf4b39'
-'bfd26d94fba685df3df36ec2e729cf9e24f4c4ff7d12731fc98a4aea48bcc944'
-'7373e4aa1bdc2a39518266db0b117c71b5438a0a72ef60eb50c84942942b2160'
-'5b4f91353db0c74e9af94ba74d0d31b0317b4af55c44a7d33ccc3ffea17e49ad'
-'3a0f000fac7f542811b24b34d2aee0ed4749f1f7337afcd4fa2a9fd57b1e2660'
-'a9a4fdb1b2e153773d9bbef9fce05947d2313caaa608561b73932257704d953b'
-'8da1fec9e5f5db030c17590c875aff0a100afd77db1aad7067fa3d931ed03b68'
-'b4ff63d51449460b758948bd8e73bc932d24b2e14501ee076bcae5b70892be3e'
-'000ed1c4d96b3a8807ece3f502a900bcf3d8ba3889200d6d922e37bba8e135c4'
-'bf312dccb93b24038cbdff0941276c2704f54ea4588a80b9d7a337ed894cf5b7'
-

[arch-commits] Commit in opera/repos (16 files)

2017-01-26 Thread Ike Devolder
Date: Thursday, January 26, 2017 @ 20:07:47
  Author: idevolder
Revision: 209188

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

Added:
  opera/repos/community-i686/PKGBUILD
(from rev 209187, opera/trunk/PKGBUILD)
  opera/repos/community-i686/default
(from rev 209187, opera/trunk/default)
  opera/repos/community-i686/opera
(from rev 209187, opera/trunk/opera)
  opera/repos/community-i686/opera.install
(from rev 209187, opera/trunk/opera.install)
  opera/repos/community-x86_64/PKGBUILD
(from rev 209187, opera/trunk/PKGBUILD)
  opera/repos/community-x86_64/default
(from rev 209187, opera/trunk/default)
  opera/repos/community-x86_64/opera
(from rev 209187, opera/trunk/opera)
  opera/repos/community-x86_64/opera.install
(from rev 209187, opera/trunk/opera.install)
Deleted:
  opera/repos/community-i686/PKGBUILD
  opera/repos/community-i686/default
  opera/repos/community-i686/opera
  opera/repos/community-i686/opera.install
  opera/repos/community-x86_64/PKGBUILD
  opera/repos/community-x86_64/default
  opera/repos/community-x86_64/opera
  opera/repos/community-x86_64/opera.install

+
 /PKGBUILD  |  138 +++
 /default   |8 ++
 /opera |   26 +++
 /opera.install |   78 ++
 community-i686/PKGBUILD|   69 ---
 community-i686/default |4 -
 community-i686/opera   |   13 ---
 community-i686/opera.install   |   39 ---
 community-x86_64/PKGBUILD  |   69 ---
 community-x86_64/default   |4 -
 community-x86_64/opera |   13 ---
 community-x86_64/opera.install |   39 ---
 12 files changed, 250 insertions(+), 250 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-26 20:07:30 UTC (rev 209187)
+++ community-i686/PKGBUILD 2017-01-26 20:07:47 UTC (rev 209188)
@@ -1,69 +0,0 @@
-# $Id$
-# vim:set ft=sh:
-# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Mateusz Herych 
-# Contributor: ruario 
-# Contributor: Daniel Isenmann 
-# Contributor: dorphell 
-# Contributor: Sigitas Mazaliauskas 
-# Contributor: eworm
-
-pkgname=opera
-pkgver=42.0.2393.351
-pkgrel=1
-pkgdesc="A fast and secure web browser"
-url="http://www.opera.com/;
-options=(!strip !zipman)
-license=('custom:opera')
-backup=("etc/$pkgname/default")
-arch=('i686' 'x86_64')
-depends=('gtk2' 'desktop-file-utils' 'shared-mime-info' 'libxtst' 'gconf' 
'libxss' 'alsa-lib' 'nss' 'ttf-font' 'libnotify' 'hicolor-icon-theme')
-optdepends=(
-'curl: opera crash reporter and autoupdate checker'
-'opera-ffmpeg-codecs: playback of proprietary video/audio'
-'upower: opera battery save'
-)
-source=(
-"opera"
-"default"
-)
-source_i686=("http://get.geo.opera.com/pub/${pkgname}/desktop/${pkgver}/linux/${pkgname}-stable_${pkgver}_i386.deb;)
-source_x86_64=("http://get.geo.opera.com/pub/${pkgname}/desktop/${pkgver}/linux/${pkgname}-stable_${pkgver}_amd64.deb;)
-sha256sums=('508512464e24126fddfb2c41a1e2e86624bdb0c0748084b6a922573b6cf6b9c5'
-'4913d97dec0ddc99d1e089b029b9123c2c86b7c88d631c4db119b09da027')
-sha256sums_i686=('8f0d8328d32346d6fe04a258a337e4917dcda54bd5baba8e63948ca1c44ea645')
-sha256sums_x86_64=('ca5017e3d7ee8c2e37632dd42a8e6cf8296deaa8a11a52d8fdb5e249c67cde82')
-
-prepare() {
-sed -e "s/%pkgname%/$pkgname/g" -i "$srcdir/opera"
-sed -e "s/%operabin%/$pkgname\/$pkgname/g" \
--i "$srcdir/opera"
-}
-
-package() {
-tar -xf data.tar.xz --exclude=usr/share/{lintian,menu} -C "$pkgdir/"
-
-# get rid of the extra subfolder {i386,x86_64}-linux-gnu
-(
-cd "$pkgdir/usr/lib/"*-linux-gnu/
-mv "$pkgname" ../
-)
-rm -rf "$pkgdir/usr/lib/"*-linux-gnu
-
-# suid opera_sandbox
-chmod 4755 "$pkgdir/usr/lib/$pkgname/opera_sandbox"
-
-# install default options
-install -Dm644 "$srcdir/default" "$pkgdir/etc/$pkgname/default"
-
-# install opera wrapper
-rm "$pkgdir/usr/bin/$pkgname"
-install -Dm755 "$srcdir/opera" "$pkgdir/usr/bin/$pkgname"
-
-# license
-install -Dm644 \
-"$pkgdir/usr/share/doc/${pkgname}-stable/copyright" \
-"$pkgdir/usr/share/licenses/$pkgname/copyright"
-}
-

Copied: opera/repos/community-i686/PKGBUILD (from rev 209187, 
opera/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-26 20:07:47 UTC (rev 209188)
@@ -0,0 +1,69 @@
+# $Id$
+# vim:set ft=sh:
+# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com >
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: 

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

2017-01-26 Thread Ike Devolder
Date: Thursday, January 26, 2017 @ 20:07:30
  Author: idevolder
Revision: 209187

upgpkg: opera 42.0.2393.517-1

Modified:
  opera/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 19:37:22 UTC (rev 209186)
+++ PKGBUILD2017-01-26 20:07:30 UTC (rev 209187)
@@ -10,7 +10,7 @@
 # Contributor: eworm
 
 pkgname=opera
-pkgver=42.0.2393.351
+pkgver=42.0.2393.517
 pkgrel=1
 pkgdesc="A fast and secure web browser"
 url="http://www.opera.com/;
@@ -32,8 +32,8 @@
 
source_x86_64=("http://get.geo.opera.com/pub/${pkgname}/desktop/${pkgver}/linux/${pkgname}-stable_${pkgver}_amd64.deb;)
 sha256sums=('508512464e24126fddfb2c41a1e2e86624bdb0c0748084b6a922573b6cf6b9c5'
 '4913d97dec0ddc99d1e089b029b9123c2c86b7c88d631c4db119b09da027')
-sha256sums_i686=('8f0d8328d32346d6fe04a258a337e4917dcda54bd5baba8e63948ca1c44ea645')
-sha256sums_x86_64=('ca5017e3d7ee8c2e37632dd42a8e6cf8296deaa8a11a52d8fdb5e249c67cde82')
+sha256sums_i686=('7adfde89983817606091b791fa7cd2280e7d877ccaaed83271c85e9ba979b0fd')
+sha256sums_x86_64=('b706cff64dc2b14fbd11b6842377dc2e16e97098bbba41a865f3d07cfba6d313')
 
 prepare() {
 sed -e "s/%pkgname%/$pkgname/g" -i "$srcdir/opera"


[arch-commits] Commit in (gnome-web-photo)

2017-01-26 Thread Balló György
Date: Thursday, January 26, 2017 @ 19:37:22
  Author: bgyorgy
Revision: 209186

Remove gnome-web-photo

It depends on insecure webkitgtk, and upstream is dead.

Deleted:
  gnome-web-photo/


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

2017-01-26 Thread Tobias Powalowski
Date: Thursday, January 26, 2017 @ 19:22:18
  Author: tpowa
Revision: 209183

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

Added:
  virtualbox-modules-arch/repos/community-testing-i686/PKGBUILD
(from rev 209182, virtualbox-modules-arch/trunk/PKGBUILD)
  
virtualbox-modules-arch/repos/community-testing-i686/virtualbox-modules-arch.install
(from rev 209182, 
virtualbox-modules-arch/trunk/virtualbox-modules-arch.install)
  virtualbox-modules-arch/repos/community-testing-x86_64/PKGBUILD
(from rev 209182, virtualbox-modules-arch/trunk/PKGBUILD)
  
virtualbox-modules-arch/repos/community-testing-x86_64/virtualbox-modules-arch.install
(from rev 209182, 
virtualbox-modules-arch/trunk/virtualbox-modules-arch.install)
Deleted:
  virtualbox-modules-arch/repos/community-testing-i686/PKGBUILD
  
virtualbox-modules-arch/repos/community-testing-i686/virtualbox-modules-arch.install
  virtualbox-modules-arch/repos/community-testing-x86_64/PKGBUILD
  
virtualbox-modules-arch/repos/community-testing-x86_64/virtualbox-modules-arch.install

--+
 /PKGBUILD|  148 +
 /virtualbox-modules-arch.install |   46 
 community-testing-i686/PKGBUILD  |   74 --
 community-testing-i686/virtualbox-modules-arch.install   |   23 --
 community-testing-x86_64/PKGBUILD|   74 --
 community-testing-x86_64/virtualbox-modules-arch.install |   23 --
 6 files changed, 194 insertions(+), 194 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-01-26 19:22:06 UTC (rev 209182)
+++ community-testing-i686/PKGBUILD 2017-01-26 19:22:18 UTC (rev 209183)
@@ -1,74 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Ionut Biru 
-
-pkgbase=virtualbox-modules-arch
-pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
-pkgver=5.1.14
-pkgrel=2
-arch=('i686' 'x86_64')
-url='http://virtualbox.org'
-license=('GPL')
-makedepends=('linux>=4.9' 'linux<4.10'
- 'linux-headers>=4.9' 'linux-headers<4.10'
- "virtualbox-host-dkms>=$pkgver"
- "virtualbox-guest-dkms>=$pkgver")
-
-# remember to also adjust the .install files and the package deps below
-_extramodules=extramodules-4.9-ARCH
-
-package_virtualbox-host-modules-arch(){
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  pkgdesc='Virtualbox host kernel modules for Arch Kernel'
-  depends=('linux>=4.9' 'linux<4.10')
-  replaces=('virtualbox-modules' 'virtualbox-host-modules')
-  conflicts=('virtualbox-modules' 'virtualbox-host-modules'
-'virtualbox-host-dkms')
-  provides=('VIRTUALBOX-HOST-MODULES')
-  install=virtualbox-modules-arch.install
-
-  cd "/var/lib/dkms/vboxhost/${pkgver}_OSE/$_kernver/$CARCH/module"
-  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
-  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
-
-  # compress earch modules individually
-  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
-
-  # systemd module loading
-  install -Dm644 /dev/null "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-  printf "vboxdrv\nvboxpci\nvboxnetadp\nvboxnetflt\n" >  \
-"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-}
-
-package_virtualbox-guest-modules-arch(){
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  pkgdesc='Virtualbox guest kernel modules for Arch Kernel'
-  license=('GPL')
-  depends=('linux>=4.9' 'linux<4.10')
-  replaces=('virtualbox-archlinux-modules' 'virtualbox-guest-modules')
-  conflicts=('virtualbox-archlinux-modules' 'virtualbox-guest-modules'
- 'virtualbox-guest-dkms')
-  provides=('VIRTUALBOX-GUEST-MODULES')
-  install=virtualbox-modules-arch.install
-
-  cd "/var/lib/dkms/vboxguest/${pkgver}_OSE/$_kernver/$CARCH/module"
-  install -dm755 "$pkgdir/usr/lib/modules/$_extramodules/"
-  install -m644 * "$pkgdir/usr/lib/modules/$_extramodules/"
-
-  # compress earch modules individually
-  find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
-
-  # systemd module loading
-  install -Dm644 /dev/null "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-  printf "vboxguest\nvboxsf\nvboxvideo\n" >  \
-"$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
-}
-
-# vim:set ts=2 sw=2 et:
-
-
-
-
-
-
-

Copied: virtualbox-modules-arch/repos/community-testing-i686/PKGBUILD (from rev 
209182, virtualbox-modules-arch/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-26 19:22:18 UTC (rev 209183)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Ionut Biru 
+
+pkgbase=virtualbox-modules-arch

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

2017-01-26 Thread Tobias Powalowski
Date: Thursday, January 26, 2017 @ 19:22:06
  Author: tpowa
Revision: 209182

upgpkg: virtualbox-modules-arch 5.1.14-3

rebuild against 4.9.6

Modified:
  virtualbox-modules-arch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 19:20:05 UTC (rev 209181)
+++ PKGBUILD2017-01-26 19:22:06 UTC (rev 209182)
@@ -5,7 +5,7 @@
 pkgbase=virtualbox-modules-arch
 pkgname=('virtualbox-host-modules-arch' 'virtualbox-guest-modules-arch')
 pkgver=5.1.14
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://virtualbox.org'
 license=('GPL')


[arch-commits] Commit in vhba-module/repos (12 files)

2017-01-26 Thread Tobias Powalowski
Date: Thursday, January 26, 2017 @ 19:20:05
  Author: tpowa
Revision: 209181

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

Added:
  vhba-module/repos/community-testing-i686/60-vhba.rules
(from rev 209180, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-i686/PKGBUILD
(from rev 209180, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-i686/vhba-module.install
(from rev 209180, vhba-module/trunk/vhba-module.install)
  vhba-module/repos/community-testing-x86_64/60-vhba.rules
(from rev 209180, vhba-module/trunk/60-vhba.rules)
  vhba-module/repos/community-testing-x86_64/PKGBUILD
(from rev 209180, vhba-module/trunk/PKGBUILD)
  vhba-module/repos/community-testing-x86_64/vhba-module.install
(from rev 209180, vhba-module/trunk/vhba-module.install)
Deleted:
  vhba-module/repos/community-testing-i686/60-vhba.rules
  vhba-module/repos/community-testing-i686/PKGBUILD
  vhba-module/repos/community-testing-i686/vhba-module.install
  vhba-module/repos/community-testing-x86_64/60-vhba.rules
  vhba-module/repos/community-testing-x86_64/PKGBUILD
  vhba-module/repos/community-testing-x86_64/vhba-module.install

--+
 /60-vhba.rules   |2 
 /PKGBUILD|   88 +
 /vhba-module.install |   42 +++
 community-testing-i686/60-vhba.rules |1 
 community-testing-i686/PKGBUILD  |   44 
 community-testing-i686/vhba-module.install   |   21 -
 community-testing-x86_64/60-vhba.rules   |1 
 community-testing-x86_64/PKGBUILD|   44 
 community-testing-x86_64/vhba-module.install |   21 -
 9 files changed, 132 insertions(+), 132 deletions(-)

Deleted: community-testing-i686/60-vhba.rules
===
--- community-testing-i686/60-vhba.rules2017-01-26 19:19:48 UTC (rev 
209180)
+++ community-testing-i686/60-vhba.rules2017-01-26 19:20:05 UTC (rev 
209181)
@@ -1 +0,0 @@
-ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Copied: vhba-module/repos/community-testing-i686/60-vhba.rules (from rev 
209180, vhba-module/trunk/60-vhba.rules)
===
--- community-testing-i686/60-vhba.rules(rev 0)
+++ community-testing-i686/60-vhba.rules2017-01-26 19:20:05 UTC (rev 
209181)
@@ -0,0 +1 @@
+ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", 
GROUP="cdemu", TAG+="uaccess"

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-01-26 19:19:48 UTC (rev 209180)
+++ community-testing-i686/PKGBUILD 2017-01-26 19:20:05 UTC (rev 209181)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif 
-# Contributor: Mateusz Herych 
-# Contributor: Charles Lindsay 
-
-pkgname=vhba-module
-pkgver=20161009
-_extramodules=extramodules-4.9-ARCH
-pkgrel=6
-pkgdesc="Kernel module that emulates SCSI devices"
-arch=('i686' 'x86_64')
-url="http://cdemu.sourceforge.net/;
-license=('GPL')
-depends=('linux>=4.9' 'linux<4.10')
-makedepends=('linux-headers>=4.9' 'linux-headers<4.10')
-options=(!makeflags)
-install=$pkgname.install
-source=("http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.bz2;
-'60-vhba.rules')
-sha256sums=('cd062d8bd61ccb8137622f837a0dadb771cc935981d8bccb2ad4de0bd11f33d9'
-'3052cb1cadbdf4bfb0b588bb8ed80691940d8dd63dc5502943d597eaf9f40c3b')
-
-prepare() {
-  cd $pkgname-$pkgver
-}
-
-build() {
-  cd $pkgname-$pkgver
-  _kernver="$(cat /usr/lib/modules/$_extramodules/version)"
-  make KDIR=/usr/lib/modules/$_kernver/build
-}
-
-package() {
-  cd $pkgname-$pkgver
-  install -Dm644 vhba.ko "$pkgdir/usr/lib/modules/$_extramodules/vhba.ko"
-  install -Dm644 ../60-vhba.rules "$pkgdir/usr/lib/udev/rules.d/60-vhba.rules"
-
-  cd $startdir
-  cp -f $install ${install}.pkg
-  true && install=${install}.pkg
-  sed -i "s/EXTRAMODULES=.*/EXTRAMODULES=$_extramodules/" $install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: vhba-module/repos/community-testing-i686/PKGBUILD (from rev 209180, 
vhba-module/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-26 19:20:05 UTC (rev 209181)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Mateusz Herych 
+# Contributor: Charles Lindsay 
+
+pkgname=vhba-module
+pkgver=20161009
+_extramodules=extramodules-4.9-ARCH
+pkgrel=7
+pkgdesc="Kernel module 

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

2017-01-26 Thread Tobias Powalowski
Date: Thursday, January 26, 2017 @ 19:19:48
  Author: tpowa
Revision: 209180

upgpkg: vhba-module 20161009-7

rebuild against 4.9.6

Modified:
  vhba-module/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 19:18:20 UTC (rev 209179)
+++ PKGBUILD2017-01-26 19:19:48 UTC (rev 209180)
@@ -6,7 +6,7 @@
 pkgname=vhba-module
 pkgver=20161009
 _extramodules=extramodules-4.9-ARCH
-pkgrel=6
+pkgrel=7
 pkgdesc="Kernel module that emulates SCSI devices"
 arch=('i686' 'x86_64')
 url="http://cdemu.sourceforge.net/;


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

2017-01-26 Thread Tobias Powalowski
Date: Thursday, January 26, 2017 @ 19:18:20
  Author: tpowa
Revision: 209179

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

Added:
  tp_smapi/repos/community-testing-i686/PKGBUILD
(from rev 209178, tp_smapi/trunk/PKGBUILD)
  tp_smapi/repos/community-testing-i686/tp_smapi.install
(from rev 209178, tp_smapi/trunk/tp_smapi.install)
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
(from rev 209178, tp_smapi/trunk/PKGBUILD)
  tp_smapi/repos/community-testing-x86_64/tp_smapi.install
(from rev 209178, tp_smapi/trunk/tp_smapi.install)
Deleted:
  tp_smapi/repos/community-testing-i686/PKGBUILD
  tp_smapi/repos/community-testing-i686/tp_smapi.install
  tp_smapi/repos/community-testing-x86_64/PKGBUILD
  tp_smapi/repos/community-testing-x86_64/tp_smapi.install

---+
 /PKGBUILD |  106 
 /tp_smapi.install |   26 ++
 community-testing-i686/PKGBUILD   |   53 --
 community-testing-i686/tp_smapi.install   |   13 ---
 community-testing-x86_64/PKGBUILD |   53 --
 community-testing-x86_64/tp_smapi.install |   13 ---
 6 files changed, 132 insertions(+), 132 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-01-26 19:18:06 UTC (rev 209178)
+++ community-testing-i686/PKGBUILD 2017-01-26 19:18:20 UTC (rev 209179)
@@ -1,53 +0,0 @@
-# Maintainer: Lukas Fleischer 
-# Contributor: xduugu
-# Contributor: nh2
-# Contributor: Steven Davidovitz 
-# Contributor: Nick B 
-# Contributor: Christof Musik 
-# Contributor: Stefan Rupp 
-# Contributor: Ignas Anikevicius 
-
-pkgname=tp_smapi
-_pkgname=tp-smapi
-pkgver=0.42
-_extramodules=extramodules-4.9-ARCH
-pkgrel=9
-pkgdesc="Modules for ThinkPad's SMAPI functionality"
-arch=('i686' 'x86_64')
-url='https://github.com/evgeni/tp_smapi'
-license=('GPL')
-depends=('linux>=4.9' 'linux<4.10')
-makedepends=('linux-headers>=4.9' 'linux-headers<4.10')
-install="${pkgname}.install"
-source=("https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz;)
-md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')
-
-build() {
-  cd "$srcdir/$pkgname-$_pkgname-$pkgver"
-
-  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-  make HDAPS=1 KVER="$_kernver" KBASE="/usr/lib/modules/$_kernver"
-}
-
-package() {
-  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-
-  make -C "/usr/lib/modules/${_kernver}/build" \
-INSTALL_MOD_PATH="${pkgdir}/usr" \
-M="$srcdir/$pkgname-$_pkgname-$pkgver" modules_install
-
-  cd "${pkgdir}/usr/lib/modules"
-  mv "${_kernver}/extra" "${_extramodules}"
-  rmdir "${_kernver}"
-
-  # compress kernel modules
-  find "${pkgdir}" -name "*.ko" -exec gzip -9 {} +
-
-  # load module on startup
-  echo tp_smapi > "${srcdir}/${pkgname}.conf"
-  install -Dm644 "${srcdir}/${pkgname}.conf" 
"${pkgdir}/usr/lib/modules-load.d/${pkgname}.conf"
-
-  # update kernel version in install file
-  sed -ri "s|^(extramodules=).*\$|\1/usr/lib/modules/${_extramodules}|" \
-"${startdir}/${pkgname}.install"
-}

Copied: tp_smapi/repos/community-testing-i686/PKGBUILD (from rev 209178, 
tp_smapi/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-26 19:18:20 UTC (rev 209179)
@@ -0,0 +1,53 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: xduugu
+# Contributor: nh2
+# Contributor: Steven Davidovitz 
+# Contributor: Nick B 
+# Contributor: Christof Musik 
+# Contributor: Stefan Rupp 
+# Contributor: Ignas Anikevicius 
+
+pkgname=tp_smapi
+_pkgname=tp-smapi
+pkgver=0.42
+_extramodules=extramodules-4.9-ARCH
+pkgrel=10
+pkgdesc="Modules for ThinkPad's SMAPI functionality"
+arch=('i686' 'x86_64')
+url='https://github.com/evgeni/tp_smapi'
+license=('GPL')
+depends=('linux>=4.9' 'linux<4.10')
+makedepends=('linux-headers>=4.9' 'linux-headers<4.10')
+install="${pkgname}.install"
+source=("https://github.com/evgeni/$pkgname/archive/$_pkgname/$pkgver.tar.gz;)
+md5sums=('6a51d3aa459ad7a6ebfbb8c29527b3ee')
+
+build() {
+  cd "$srcdir/$pkgname-$_pkgname-$pkgver"
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+  make HDAPS=1 KVER="$_kernver" KBASE="/usr/lib/modules/$_kernver"
+}
+
+package() {
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make -C "/usr/lib/modules/${_kernver}/build" \
+INSTALL_MOD_PATH="${pkgdir}/usr" \
+M="$srcdir/$pkgname-$_pkgname-$pkgver" modules_install
+
+  cd "${pkgdir}/usr/lib/modules"
+  mv "${_kernver}/extra" "${_extramodules}"
+  rmdir "${_kernver}"
+
+  # compress kernel modules
+  find "${pkgdir}" -name "*.ko" -exec gzip -9 {} +
+
+  # load module on startup
+  echo tp_smapi > 

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

2017-01-26 Thread Tobias Powalowski
Date: Thursday, January 26, 2017 @ 19:18:06
  Author: tpowa
Revision: 209178

upgpkg: tp_smapi 0.42-10

rebuild against 4.9.6

Modified:
  tp_smapi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 19:16:30 UTC (rev 209177)
+++ PKGBUILD2017-01-26 19:18:06 UTC (rev 209178)
@@ -11,7 +11,7 @@
 _pkgname=tp-smapi
 pkgver=0.42
 _extramodules=extramodules-4.9-ARCH
-pkgrel=9
+pkgrel=10
 pkgdesc="Modules for ThinkPad's SMAPI functionality"
 arch=('i686' 'x86_64')
 url='https://github.com/evgeni/tp_smapi'


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

2017-01-26 Thread Tobias Powalowski
Date: Thursday, January 26, 2017 @ 19:16:18
  Author: tpowa
Revision: 209176

upgpkg: r8168 8.043.02-4

rebuild against 4.9.6

Modified:
  r8168/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 19:14:24 UTC (rev 209175)
+++ PKGBUILD2017-01-26 19:16:18 UTC (rev 209176)
@@ -5,7 +5,7 @@
 
 pkgname=r8168
 pkgver=8.043.02
-pkgrel=3
+pkgrel=4
 pkgdesc="A kernel module for Realtek 8168 network cards"
 url="http://www.realtek.com.tw;
 license=("GPL")


[arch-commits] Commit in r8168/repos (12 files)

2017-01-26 Thread Tobias Powalowski
Date: Thursday, January 26, 2017 @ 19:16:30
  Author: tpowa
Revision: 209177

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

Added:
  r8168/repos/community-testing-i686/PKGBUILD
(from rev 209176, r8168/trunk/PKGBUILD)
  r8168/repos/community-testing-i686/linux-4.5.patch
(from rev 209176, r8168/trunk/linux-4.5.patch)
  r8168/repos/community-testing-i686/r8168.install
(from rev 209176, r8168/trunk/r8168.install)
  r8168/repos/community-testing-x86_64/PKGBUILD
(from rev 209176, r8168/trunk/PKGBUILD)
  r8168/repos/community-testing-x86_64/linux-4.5.patch
(from rev 209176, r8168/trunk/linux-4.5.patch)
  r8168/repos/community-testing-x86_64/r8168.install
(from rev 209176, r8168/trunk/r8168.install)
Deleted:
  r8168/repos/community-testing-i686/PKGBUILD
  r8168/repos/community-testing-i686/linux-4.5.patch
  r8168/repos/community-testing-i686/r8168.install
  r8168/repos/community-testing-x86_64/PKGBUILD
  r8168/repos/community-testing-x86_64/linux-4.5.patch
  r8168/repos/community-testing-x86_64/r8168.install

--+
 /PKGBUILD|  102 +
 /linux-4.5.patch |   26 +++
 /r8168.install   |   34 +
 community-testing-i686/PKGBUILD  |   51 --
 community-testing-i686/linux-4.5.patch   |   13 ---
 community-testing-i686/r8168.install |   17 
 community-testing-x86_64/PKGBUILD|   51 --
 community-testing-x86_64/linux-4.5.patch |   13 ---
 community-testing-x86_64/r8168.install   |   17 
 9 files changed, 162 insertions(+), 162 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-01-26 19:16:18 UTC (rev 209176)
+++ community-testing-i686/PKGBUILD 2017-01-26 19:16:30 UTC (rev 209177)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: Bob Fanger < bfanger(at)gmail >
-# Contributor: Filip , Det < nimetonmaili(at)gmail >
-
-pkgname=r8168
-pkgver=8.043.02
-pkgrel=3
-pkgdesc="A kernel module for Realtek 8168 network cards"
-url="http://www.realtek.com.tw;
-license=("GPL")
-arch=('i686' 'x86_64')
-depends=('glibc' 'linux')
-makedepends=('linux-headers')
-install=$pkgname.install
-source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
-linux-4.5.patch)
-sha256sums=('ea22aa1dfda20615f5e114f982f7e61385f871f682eea0c154245760a439abc4'
-'e05a4bccf28beecc97db246064a5fe80d1303476b76086bd262c9c8db82b2e6e')
-
-prepare() {
-   cd "$pkgname-$pkgver"
-   patch -p1 -i ../linux-4.5.patch
-}
-
-build() {
-   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
-   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)
-
-   cd "$pkgname-$pkgver"
-
-   # avoid using the Makefile directly -- it doesn't understand
-   # any kernel but the current.
-   make -C /usr/lib/modules/$KERNEL_VERSION/build \
-   SUBDIRS="$srcdir/$pkgname-$pkgver/src" \
-   EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
-   modules
-}
-
-package() {
-   _kernver=$(pacman -Q linux | sed -r 's#.* ([0-9]+\.[0-9]+).*#\1#')
-   depends=("linux>=$_kernver" "linux<${_kernver/.*}.$(expr ${_kernver/*.} 
+ 1)")
-   KERNEL_VERSION=$(cat 
/usr/lib/modules/extramodules-$_kernver-ARCH/version)
-   msg "Kernel = $KERNEL_VERSION"
-
-   cd "$pkgname-$pkgver"
-   install -Dm644 src/$pkgname.ko 
"$pkgdir/usr/lib/modules/extramodules-$_kernver-ARCH/$pkgname.ko"
-   find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
-
-   sed -i "s|extramodules-.*-ARCH|extramodules-$_kernver-ARCH|" 
"$startdir/$pkgname.install"
-}

Copied: r8168/repos/community-testing-i686/PKGBUILD (from rev 209176, 
r8168/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-26 19:16:30 UTC (rev 209177)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo 
+# Contributor: Bob Fanger < bfanger(at)gmail >
+# Contributor: Filip , Det < nimetonmaili(at)gmail >
+
+pkgname=r8168
+pkgver=8.043.02
+pkgrel=4
+pkgdesc="A kernel module for Realtek 8168 network cards"
+url="http://www.realtek.com.tw;
+license=("GPL")
+arch=('i686' 'x86_64')
+depends=('glibc' 'linux')
+makedepends=('linux-headers')
+install=$pkgname.install
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz
+linux-4.5.patch)
+sha256sums=('ea22aa1dfda20615f5e114f982f7e61385f871f682eea0c154245760a439abc4'
+'e05a4bccf28beecc97db246064a5fe80d1303476b76086bd262c9c8db82b2e6e')
+
+prepare() {
+  

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

2017-01-26 Thread Tobias Powalowski
Date: Thursday, January 26, 2017 @ 19:14:12
  Author: tpowa
Revision: 209174

upgpkg: bbswitch 0.8-61

rebuild against 4.9.6

Modified:
  bbswitch/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 19:12:36 UTC (rev 209173)
+++ PKGBUILD2017-01-26 19:14:12 UTC (rev 209174)
@@ -7,7 +7,7 @@
 pkgname=(bbswitch bbswitch-dkms)
 pkgver=0.8
 _extramodules=extramodules-4.9-ARCH # Don't forget to update bbswitch.install
-pkgrel=60
+pkgrel=61
 pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
 arch=('i686' 'x86_64')
 url="http://github.com/Bumblebee-Project/bbswitch;


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

2017-01-26 Thread Tobias Powalowski
Date: Thursday, January 26, 2017 @ 19:14:24
  Author: tpowa
Revision: 209175

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

Added:
  bbswitch/repos/community-testing-i686/PKGBUILD
(from rev 209174, bbswitch/trunk/PKGBUILD)
  bbswitch/repos/community-testing-i686/bbswitch.install
(from rev 209174, bbswitch/trunk/bbswitch.install)
  bbswitch/repos/community-testing-x86_64/PKGBUILD
(from rev 209174, bbswitch/trunk/PKGBUILD)
  bbswitch/repos/community-testing-x86_64/bbswitch.install
(from rev 209174, bbswitch/trunk/bbswitch.install)
Deleted:
  bbswitch/repos/community-testing-i686/PKGBUILD
  bbswitch/repos/community-testing-i686/bbswitch.install
  bbswitch/repos/community-testing-x86_64/PKGBUILD
  bbswitch/repos/community-testing-x86_64/bbswitch.install

---+
 /PKGBUILD |   90 
 /bbswitch.install |   24 +++
 community-testing-i686/PKGBUILD   |   45 --
 community-testing-i686/bbswitch.install   |   12 ---
 community-testing-x86_64/PKGBUILD |   45 --
 community-testing-x86_64/bbswitch.install |   12 ---
 6 files changed, 114 insertions(+), 114 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-01-26 19:14:12 UTC (rev 209174)
+++ community-testing-i686/PKGBUILD 2017-01-26 19:14:24 UTC (rev 209175)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase 
-# Contributor: M0Rf30
-# Contributor: Samsagax 
-
-pkgbase=bbswitch
-pkgname=(bbswitch bbswitch-dkms)
-pkgver=0.8
-_extramodules=extramodules-4.9-ARCH # Don't forget to update bbswitch.install
-pkgrel=60
-pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
-arch=('i686' 'x86_64')
-url="http://github.com/Bumblebee-Project/bbswitch;
-license=('GPL')
-makedepends=('linux-headers>=4.9' 'linux-headers<4.10' 'linux>=4.9' 
'linux<4.10')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
-md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-
-  make KDIR=/lib/modules/${_kernver}/build
-}
-
-package_bbswitch() {
-  depends=('linux>=4.9' 'linux<4.10')
-  install=bbswitch.install
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-   
-  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
-  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
-}
-
-package_bbswitch-dkms() {
-  depends=('dkms')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  install -dm755 "${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
-
-  install -Dm644 Makefile bbswitch.c dkms/dkms.conf 
"${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
-}

Copied: bbswitch/repos/community-testing-i686/PKGBUILD (from rev 209174, 
bbswitch/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-26 19:14:24 UTC (rev 209175)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase 
+# Contributor: M0Rf30
+# Contributor: Samsagax 
+
+pkgbase=bbswitch
+pkgname=(bbswitch bbswitch-dkms)
+pkgver=0.8
+_extramodules=extramodules-4.9-ARCH # Don't forget to update bbswitch.install
+pkgrel=61
+pkgdesc="Kernel module allowing to switch dedicated graphics card on Optimus 
laptops"
+arch=('i686' 'x86_64')
+url="http://github.com/Bumblebee-Project/bbswitch;
+license=('GPL')
+makedepends=('linux-headers>=4.9' 'linux-headers<4.10' 'linux>=4.9' 
'linux<4.10')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/Bumblebee-Project/bbswitch/archive/v${pkgver}.tar.gz;)
+md5sums=('5b116b31ace3604ddf9d1fc1f4bc5807')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KDIR=/lib/modules/${_kernver}/build
+}
+
+package_bbswitch() {
+  depends=('linux>=4.9' 'linux<4.10')
+  install=bbswitch.install
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+   
+  install -Dm644 bbswitch.ko 
"${pkgdir}"/usr/lib/modules/${_extramodules}/bbswitch.ko
+  gzip "${pkgdir}/usr/lib/modules/${_extramodules}/bbswitch.ko"
  
+}
+
+package_bbswitch-dkms() {
+  depends=('dkms')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  install -dm755 "${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
+
+  install -Dm644 Makefile bbswitch.c dkms/dkms.conf 
"${pkgdir}/usr/src/${pkgbase}-${pkgver}/"
+}

Deleted: community-testing-i686/bbswitch.install
===
--- community-testing-i686/bbswitch.install 2017-01-26 19:14:12 UTC (rev 
209174)
+++ 

[arch-commits] Commit in chromium/repos (26 files)

2017-01-26 Thread Evangelos Foutras
Date: Thursday, January 26, 2017 @ 19:14:24
  Author: foutrelis
Revision: 287524

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

Added:
  chromium/repos/extra-i686/PKGBUILD
(from rev 287523, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium-glib-2.24.patch
(from rev 287523, chromium/trunk/chromium-glib-2.24.patch)
  chromium/repos/extra-i686/chromium-system-ffmpeg-r4.patch
(from rev 287523, chromium/trunk/chromium-system-ffmpeg-r4.patch)
  chromium/repos/extra-i686/chromium-widevine.patch
(from rev 287523, chromium/trunk/chromium-widevine.patch)
  chromium/repos/extra-i686/chromium.desktop
(from rev 287523, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 287523, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 287523, chromium/trunk/PKGBUILD)
  chromium/repos/extra-x86_64/chromium-glib-2.24.patch
(from rev 287523, chromium/trunk/chromium-glib-2.24.patch)
  chromium/repos/extra-x86_64/chromium-system-ffmpeg-r4.patch
(from rev 287523, chromium/trunk/chromium-system-ffmpeg-r4.patch)
  chromium/repos/extra-x86_64/chromium-widevine.patch
(from rev 287523, chromium/trunk/chromium-widevine.patch)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 287523, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 287523, chromium/trunk/chromium.install)
Deleted:
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium-52.0.2743.116-unset-madv_free.patch
  chromium/repos/extra-i686/chromium-icu58.patch
  chromium/repos/extra-i686/chromium-system-ffmpeg-r4.patch
  chromium/repos/extra-i686/chromium-widevine.patch
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-x86_64/PKGBUILD
  chromium/repos/extra-x86_64/chromium-52.0.2743.116-unset-madv_free.patch
  chromium/repos/extra-x86_64/chromium-icu58.patch
  chromium/repos/extra-x86_64/chromium-system-ffmpeg-r4.patch
  chromium/repos/extra-x86_64/chromium-widevine.patch
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install

---+
 /PKGBUILD |  384 
 /chromium-system-ffmpeg-r4.patch  |   96 +++
 /chromium-widevine.patch  |   20 
 /chromium.desktop |  224 +++
 /chromium.install |   32 +
 extra-i686/PKGBUILD   |  198 --
 extra-i686/chromium-52.0.2743.116-unset-madv_free.patch   |   15 
 extra-i686/chromium-glib-2.24.patch   |   15 
 extra-i686/chromium-icu58.patch   |  136 
 extra-i686/chromium-system-ffmpeg-r4.patch|   48 -
 extra-i686/chromium-widevine.patch|   10 
 extra-i686/chromium.desktop   |  112 ---
 extra-i686/chromium.install   |   16 
 extra-x86_64/PKGBUILD |  198 --
 extra-x86_64/chromium-52.0.2743.116-unset-madv_free.patch |   15 
 extra-x86_64/chromium-glib-2.24.patch |   15 
 extra-x86_64/chromium-icu58.patch |  136 
 extra-x86_64/chromium-system-ffmpeg-r4.patch  |   48 -
 extra-x86_64/chromium-widevine.patch  |   10 
 extra-x86_64/chromium.desktop |  112 ---
 extra-x86_64/chromium.install |   16 
 21 files changed, 786 insertions(+), 1070 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-01-26 19:13:58 UTC (rev 287523)
+++ extra-i686/PKGBUILD 2017-01-26 19:14:24 UTC (rev 287524)
@@ -1,198 +0,0 @@
-# $Id: PKGBUILD 277477 2016-10-01 03:36:40Z foutrelis $
-# Maintainer: Evangelos Foutras 
-# Contributor: Pierre Schmitz 
-# Contributor: Jan "heftig" Steffens 
-# Contributor: Daniel J Griffiths 
-
-# Possible replacements are listed in build/linux/unbundle/replace_gn_files.py
-# Keys are the names in the above script; values are the dependencies in Arch
-declare -rgA _system_libs=(
-  [ffmpeg]=ffmpeg
-  [flac]=flac
-  [harfbuzz-ng]=harfbuzz-icu
-  [icu]=icu
-  [libjpeg]=libjpeg
-  [libpng]=libpng
-  [libvpx]=libvpx
-  [libwebp]=libwebp
-  #[libxml]=libxml2# https://bugs.archlinux.org/task/29939
-  [libxslt]=libxslt
-  [re2]=re2
-  [snappy]=snappy
-  [yasm]=
-  [zlib]=minizip
-)
-
-pkgname=chromium
-pkgver=55.0.2883.87
-pkgrel=1
-_launcher_ver=3
-pkgdesc="The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser"
-arch=('i686' 

[arch-commits] Commit in chromium/trunk (4 files)

2017-01-26 Thread Evangelos Foutras
Date: Thursday, January 26, 2017 @ 19:13:58
  Author: foutrelis
Revision: 287523

upgpkg: chromium 56.0.2924.76-1

New upstream release.

Added:
  chromium/trunk/chromium-glib-2.24.patch
Modified:
  chromium/trunk/PKGBUILD
Deleted:
  chromium/trunk/chromium-52.0.2743.116-unset-madv_free.patch
  chromium/trunk/chromium-icu58.patch

--+
 PKGBUILD |   20 +--
 chromium-52.0.2743.116-unset-madv_free.patch |   15 --
 chromium-glib-2.24.patch |   15 ++
 chromium-icu58.patch |  136 -
 4 files changed, 22 insertions(+), 164 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 17:44:53 UTC (rev 287522)
+++ PKGBUILD2017-01-26 19:13:58 UTC (rev 287523)
@@ -24,7 +24,7 @@
 )
 
 pkgname=chromium
-pkgver=55.0.2883.87
+pkgver=56.0.2924.76
 pkgrel=1
 _launcher_ver=3
 pkgdesc="The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser"
@@ -35,7 +35,7 @@
  'ttf-font' 'systemd' 'dbus' 'libpulse' 'perl' 'perl-file-basedir'
  'pciutils' 'desktop-file-utils' 'hicolor-icon-theme')
 depends+=(${_system_libs[@]})
-makedepends=('python2' 'gperf' 'yasm' 'mesa' 'ninja' 'git')
+makedepends=('gtk3' 'python2' 'gperf' 'yasm' 'mesa' 'ninja' 'git')
 optdepends=('kdialog: needed for file dialogs in KDE'
 'gnome-keyring: for storing passwords in GNOME keyring'
 'kwallet: for storing passwords in KWallet')
@@ -43,16 +43,14 @@
 
source=(https://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz
 
chromium-launcher-$_launcher_ver.tar.gz::https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver.tar.gz
 chromium.desktop
-chromium-52.0.2743.116-unset-madv_free.patch
+chromium-glib-2.24.patch
 chromium-system-ffmpeg-r4.patch
-chromium-icu58.patch
 chromium-widevine.patch)
-sha256sums=('e81bd3140d9c84dfee04d9a94686dfe6a20ae79475d84f17154c5536dcb81a58'
+sha256sums=('cfb08e226b9c16ad887eb96d715a9cc4ab097d1a79e2e68c8749a7a4164b3c38'
 '8b01fb4efe58146279858a754d90b49e5a38c9a0b36a1f84cbb7d12f92b84c28'
 '028a748a5c275de9b8f776f97909f999a8583a4b77fd1cd600b4fc5c0c3e91e9'
-'3b3aa9e28f29e6f539ed1c7832e79463b13128863a02e9c6fecd16c30d61c227'
+'6953651c002efe7fca8cda3143e963037ed38a0a4bc7ccb79304637c45340047'
 'e3c474dbf3822a0be50695683bd8a2c9dfc82d41c1524a20b4581883c0c88986'
-'fad964da0295a6a7b4393778e717ebdfd37dec33fe78beb2c639abd3973deb7a'
 'd6fdcb922e5a7fbe15759d39ccc8ea4225821c44d98054ce0f23f9d1f00c9808')
 
 # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys)
@@ -72,14 +70,10 @@
   sed "s/@WIDEVINE_VERSION@/Pinkie Pie/" ../chromium-widevine.patch |
 patch -Np1
 
-  # Build fixes from Gentoo
+  # Fixes from Gentoo
   patch -Np1 -i ../chromium-system-ffmpeg-r4.patch
-  patch -Np1 -i ../chromium-icu58.patch
+  patch -Np1 -i ../chromium-glib-2.24.patch
 
-  # Disable MADV_FREE (if set by glibc)
-  # https://bugzilla.redhat.com/show_bug.cgi?id=1361157
-  patch -Np1 -i ../chromium-52.0.2743.116-unset-madv_free.patch
-
   # Work around bug in blink in which GCC 6 optimizes away null pointer checks
   # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833524
   # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68853#c2

Deleted: chromium-52.0.2743.116-unset-madv_free.patch
===
--- chromium-52.0.2743.116-unset-madv_free.patch2017-01-26 17:44:53 UTC 
(rev 287522)
+++ chromium-52.0.2743.116-unset-madv_free.patch2017-01-26 19:13:58 UTC 
(rev 287523)
@@ -1,15 +0,0 @@
-diff -up 
chromium-52.0.2743.116/third_party/WebKit/Source/wtf/allocator/PageAllocator.cpp.madv_free
 
chromium-52.0.2743.116/third_party/WebKit/Source/wtf/allocator/PageAllocator.cpp
 
chromium-52.0.2743.116/third_party/WebKit/Source/wtf/allocator/PageAllocator.cpp.madv_free
 2016-08-15 13:07:29.279655676 -0400
-+++ 
chromium-52.0.2743.116/third_party/WebKit/Source/wtf/allocator/PageAllocator.cpp
   2016-08-15 13:08:38.447317416 -0400
-@@ -41,6 +41,11 @@
- #include 
- #include 
- 
-+#if OS(LINUX) && defined(MADV_FREE)
-+// Added in Linux 4.5, but it breaks the sandbox.
-+#undef MADV_FREE
-+#endif
-+
- #ifndef MADV_FREE
- #define MADV_FREE MADV_DONTNEED
- #endif

Added: chromium-glib-2.24.patch
===
--- chromium-glib-2.24.patch(rev 0)
+++ chromium-glib-2.24.patch2017-01-26 19:13:58 UTC (rev 287523)
@@ -0,0 +1,15 @@
+--- a/third_party/WebKit/Source/wtf/allocator/PageAllocator.cpp.orig   
2017-01-05 20:50:56.329369189 +
 b/third_party/WebKit/Source/wtf/allocator/PageAllocator.cpp
2017-01-05 

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

2017-01-26 Thread Tobias Powalowski
Date: Thursday, January 26, 2017 @ 19:12:18
  Author: tpowa
Revision: 209172

upgpkg: acpi_call 1.1.0-56

rebuild against 4.9.6

Modified:
  acpi_call/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 18:44:35 UTC (rev 209171)
+++ PKGBUILD2017-01-26 19:12:18 UTC (rev 209172)
@@ -5,7 +5,7 @@
 
 pkgname=acpi_call
 pkgver=1.1.0
-pkgrel=55
+pkgrel=56
 _extramodules=extramodules-4.9-ARCH
 pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
 arch=('i686' 'x86_64')


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

2017-01-26 Thread Tobias Powalowski
Date: Thursday, January 26, 2017 @ 19:12:36
  Author: tpowa
Revision: 209173

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

Added:
  acpi_call/repos/community-testing-i686/PKGBUILD
(from rev 209172, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-testing-i686/acpi_call.install
(from rev 209172, acpi_call/trunk/acpi_call.install)
  acpi_call/repos/community-testing-x86_64/PKGBUILD
(from rev 209172, acpi_call/trunk/PKGBUILD)
  acpi_call/repos/community-testing-x86_64/acpi_call.install
(from rev 209172, acpi_call/trunk/acpi_call.install)
Deleted:
  acpi_call/repos/community-testing-i686/PKGBUILD
  acpi_call/repos/community-testing-i686/acpi_call.install
  acpi_call/repos/community-testing-x86_64/PKGBUILD
  acpi_call/repos/community-testing-x86_64/acpi_call.install

+
 /PKGBUILD  |   94 +++
 /acpi_call.install |   28 
 community-testing-i686/PKGBUILD|   47 -
 community-testing-i686/acpi_call.install   |   14 
 community-testing-x86_64/PKGBUILD  |   47 -
 community-testing-x86_64/acpi_call.install |   14 
 6 files changed, 122 insertions(+), 122 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2017-01-26 19:12:18 UTC (rev 209172)
+++ community-testing-i686/PKGBUILD 2017-01-26 19:12:36 UTC (rev 209173)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: mortzu 
-# Contributor: fnord0 
-
-pkgname=acpi_call
-pkgver=1.1.0
-pkgrel=55
-_extramodules=extramodules-4.9-ARCH
-pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
-arch=('i686' 'x86_64')
-url='https://github.com/mkottman/acpi_call'
-license=('GPL')
-depends=('linux>=4.9' 'linux<4.10')
-makedepends=('linux-headers>=4.9' 'linux-headers<4.10')
-install='acpi_call.install'
-source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
-sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
-
-prepare() {
-  cd acpi_call-${pkgver}
-
-  # Fix build with Linux >= 3.17
-  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
-}
-
-build() {
-  cd acpi_call-${pkgver}
-
-  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
-
-  make KVERSION="${_kernver}"
-}
-
-package() {
-  cd acpi_call-${pkgver}
-
-  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
-  install -m 644 acpi_call.ko "${pkgdir}"/usr/lib/modules/${_extramodules}
-  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/acpi_call.ko
-  echo acpi_call > "${pkgdir}"/usr/lib/modules-load.d/acpi_call.conf
-
-  install -dm 755 "${pkgdir}"/usr/share/acpi_call
-  cp -dr --no-preserve='ownership' {examples,support} 
"${pkgdir}"/usr/share/acpi_call/
-}
-
-# vim: ts=2 sw=2 et:

Copied: acpi_call/repos/community-testing-i686/PKGBUILD (from rev 209172, 
acpi_call/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-01-26 19:12:36 UTC (rev 209173)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin 
+# Contributor: mortzu 
+# Contributor: fnord0 
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=56
+_extramodules=extramodules-4.9-ARCH
+pkgdesc='A linux kernel module that enables calls to ACPI methods through 
/proc/acpi/call'
+arch=('i686' 'x86_64')
+url='https://github.com/mkottman/acpi_call'
+license=('GPL')
+depends=('linux>=4.9' 'linux<4.10')
+makedepends=('linux-headers>=4.9' 'linux-headers<4.10')
+install='acpi_call.install'
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz;)
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0')
+
+prepare() {
+  cd acpi_call-${pkgver}
+
+  # Fix build with Linux >= 3.17
+  sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+}
+
+build() {
+  cd acpi_call-${pkgver}
+
+  _kernver="$(cat /usr/lib/modules/${_extramodules}/version)"
+
+  make KVERSION="${_kernver}"
+}
+
+package() {
+  cd acpi_call-${pkgver}
+
+  install -dm 755 "${pkgdir}"/usr/lib/{modules/${_extramodules},modules-load.d}
+  install -m 644 acpi_call.ko "${pkgdir}"/usr/lib/modules/${_extramodules}
+  gzip "${pkgdir}"/usr/lib/modules/${_extramodules}/acpi_call.ko
+  echo acpi_call > "${pkgdir}"/usr/lib/modules-load.d/acpi_call.conf
+
+  install -dm 755 "${pkgdir}"/usr/share/acpi_call
+  cp -dr --no-preserve='ownership' {examples,support} 
"${pkgdir}"/usr/share/acpi_call/
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-testing-i686/acpi_call.install

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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:44:35
  Author: anatolik
Revision: 209171

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

Added:
  ruby-gtk2/repos/community-i686/PKGBUILD
(from rev 209170, ruby-gtk2/trunk/PKGBUILD)
  ruby-gtk2/repos/community-x86_64/PKGBUILD
(from rev 209170, ruby-gtk2/trunk/PKGBUILD)
Deleted:
  ruby-gtk2/repos/community-i686/PKGBUILD
  ruby-gtk2/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-01-26 18:43:57 UTC (rev 209170)
+++ community-i686/PKGBUILD 2017-01-26 18:44:35 UTC (rev 209171)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=gtk2
-pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
-pkgdesc='Ruby/GTK2 is a Ruby binding of GTK+-2.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby gtk2 ruby-atk=$pkgver ruby-pango=$pkgver 
ruby-gdk_pixbuf2=$pkgver)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('593ad3f39bc35a1e86028e658d6f3509ebb8e5dc')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-gtk2/repos/community-i686/PKGBUILD (from rev 209170, 
ruby-gtk2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-26 18:44:35 UTC (rev 209171)
@@ -0,0 +1,22 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov 
+
+_gemname=gtk2
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/GTK2 is a Ruby binding of GTK+-2.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby gtk2 ruby-atk=$pkgver ruby-pango=$pkgver 
ruby-gdk_pixbuf2=$pkgver)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('d1acb3b2d653e17535c2dd78904b540b5e4336dd')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-26 18:43:57 UTC (rev 209170)
+++ community-x86_64/PKGBUILD   2017-01-26 18:44:35 UTC (rev 209171)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=gtk2
-pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
-pkgdesc='Ruby/GTK2 is a Ruby binding of GTK+-2.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby gtk2 ruby-atk=$pkgver ruby-pango=$pkgver 
ruby-gdk_pixbuf2=$pkgver)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('593ad3f39bc35a1e86028e658d6f3509ebb8e5dc')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-gtk2/repos/community-x86_64/PKGBUILD (from rev 209170, 
ruby-gtk2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-26 18:44:35 UTC (rev 209171)
@@ -0,0 +1,22 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov 
+
+_gemname=gtk2
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/GTK2 is a Ruby binding of GTK+-2.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby gtk2 ruby-atk=$pkgver ruby-pango=$pkgver 
ruby-gdk_pixbuf2=$pkgver)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('d1acb3b2d653e17535c2dd78904b540b5e4336dd')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies 

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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:43:57
  Author: anatolik
Revision: 209170

upgpkg: ruby-gtk2 3.1.1-1

Modified:
  ruby-gtk2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 18:40:00 UTC (rev 209169)
+++ PKGBUILD2017-01-26 18:43:57 UTC (rev 209170)
@@ -3,8 +3,8 @@
 
 _gemname=gtk2
 pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
+pkgver=3.1.1
+pkgrel=1
 pkgdesc='Ruby/GTK2 is a Ruby binding of GTK+-2.x.'
 arch=(i686 x86_64)
 url='http://ruby-gnome2.sourceforge.jp/'
@@ -13,7 +13,7 @@
 options=(!emptydirs)
 source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
 noextract=($_gemname-$pkgver.gem)
-sha1sums=('593ad3f39bc35a1e86028e658d6f3509ebb8e5dc')
+sha1sums=('d1acb3b2d653e17535c2dd78904b540b5e4336dd')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:40:00
  Author: anatolik
Revision: 209169

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

Added:
  ruby-pango/repos/community-i686/PKGBUILD
(from rev 209168, ruby-pango/trunk/PKGBUILD)
  ruby-pango/repos/community-x86_64/PKGBUILD
(from rev 209168, ruby-pango/trunk/PKGBUILD)
Deleted:
  ruby-pango/repos/community-i686/PKGBUILD
  ruby-pango/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-01-26 18:38:09 UTC (rev 209168)
+++ community-i686/PKGBUILD 2017-01-26 18:40:00 UTC (rev 209169)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=pango
-pkgname=ruby-$_gemname
-pkgver=3.1.1
-pkgrel=1
-pkgdesc='Ruby/Pango is a Ruby binding of pango-1.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby pango ruby-cairo ruby-glib2=$pkgver)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('cedef3fbca8540169559c62719f45c49c4347479')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-pango/repos/community-i686/PKGBUILD (from rev 209168, 
ruby-pango/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-26 18:40:00 UTC (rev 209169)
@@ -0,0 +1,22 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov 
+
+_gemname=pango
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/Pango is a Ruby binding of pango-1.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby pango ruby-cairo ruby-glib2=$pkgver)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('cedef3fbca8540169559c62719f45c49c4347479')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-26 18:38:09 UTC (rev 209168)
+++ community-x86_64/PKGBUILD   2017-01-26 18:40:00 UTC (rev 209169)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=pango
-pkgname=ruby-$_gemname
-pkgver=3.1.1
-pkgrel=1
-pkgdesc='Ruby/Pango is a Ruby binding of pango-1.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby pango ruby-cairo ruby-glib2=$pkgver)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('cedef3fbca8540169559c62719f45c49c4347479')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-pango/repos/community-x86_64/PKGBUILD (from rev 209168, 
ruby-pango/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-26 18:40:00 UTC (rev 209169)
@@ -0,0 +1,22 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov 
+
+_gemname=pango
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/Pango is a Ruby binding of pango-1.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby pango ruby-cairo ruby-glib2=$pkgver)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('cedef3fbca8540169559c62719f45c49c4347479')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm 

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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:38:09
  Author: anatolik
Revision: 209168

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

Added:
  ruby-gdk_pixbuf2/repos/community-i686/PKGBUILD
(from rev 209167, ruby-gdk_pixbuf2/trunk/PKGBUILD)
  ruby-gdk_pixbuf2/repos/community-x86_64/PKGBUILD
(from rev 209167, ruby-gdk_pixbuf2/trunk/PKGBUILD)
Deleted:
  ruby-gdk_pixbuf2/repos/community-i686/PKGBUILD
  ruby-gdk_pixbuf2/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-26 18:37:31 UTC (rev 209167)
+++ community-i686/PKGBUILD 2017-01-26 18:38:09 UTC (rev 209168)
@@ -1,23 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=gdk_pixbuf2
-pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
-pkgdesc='Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby ruby-gio2=$pkgver gdk-pixbuf2)
-replaces=(ruby-gdkpixbuf2)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('36d29873387daf0d7910b21fec61e4ede2738ece')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-gdk_pixbuf2/repos/community-i686/PKGBUILD (from rev 209167, 
ruby-gdk_pixbuf2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-26 18:38:09 UTC (rev 209168)
@@ -0,0 +1,23 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov 
+
+_gemname=gdk_pixbuf2
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby ruby-gio2=$pkgver gdk-pixbuf2)
+replaces=(ruby-gdkpixbuf2)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('c98d0450ad80ba806639350aab87f7e1dc610160')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-26 18:37:31 UTC (rev 209167)
+++ community-x86_64/PKGBUILD   2017-01-26 18:38:09 UTC (rev 209168)
@@ -1,23 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=gdk_pixbuf2
-pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
-pkgdesc='Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby ruby-gio2=$pkgver gdk-pixbuf2)
-replaces=(ruby-gdkpixbuf2)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('36d29873387daf0d7910b21fec61e4ede2738ece')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-gdk_pixbuf2/repos/community-x86_64/PKGBUILD (from rev 209167, 
ruby-gdk_pixbuf2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-26 18:38:09 UTC (rev 209168)
@@ -0,0 +1,23 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov 
+
+_gemname=gdk_pixbuf2
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby ruby-gio2=$pkgver gdk-pixbuf2)
+replaces=(ruby-gdkpixbuf2)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('c98d0450ad80ba806639350aab87f7e1dc610160')
+
+package() 

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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:37:31
  Author: anatolik
Revision: 209167

upgpkg: ruby-gdk_pixbuf2 3.1.1-1

Modified:
  ruby-gdk_pixbuf2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 18:36:47 UTC (rev 209166)
+++ PKGBUILD2017-01-26 18:37:31 UTC (rev 209167)
@@ -3,8 +3,8 @@
 
 _gemname=gdk_pixbuf2
 pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
+pkgver=3.1.1
+pkgrel=1
 pkgdesc='Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.'
 arch=(i686 x86_64)
 url='http://ruby-gnome2.sourceforge.jp/'
@@ -14,7 +14,7 @@
 options=(!emptydirs)
 source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
 noextract=($_gemname-$pkgver.gem)
-sha1sums=('36d29873387daf0d7910b21fec61e4ede2738ece')
+sha1sums=('c98d0450ad80ba806639350aab87f7e1dc610160')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:36:47
  Author: anatolik
Revision: 209166

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

Added:
  ruby-gio2/repos/community-i686/PKGBUILD
(from rev 209165, ruby-gio2/trunk/PKGBUILD)
  ruby-gio2/repos/community-x86_64/PKGBUILD
(from rev 209165, ruby-gio2/trunk/PKGBUILD)
Deleted:
  ruby-gio2/repos/community-i686/PKGBUILD
  ruby-gio2/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-01-26 18:36:09 UTC (rev 209165)
+++ community-i686/PKGBUILD 2017-01-26 18:36:47 UTC (rev 209166)
@@ -1,22 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-_gemname=gio2
-pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
-pkgdesc='Ruby/GIO2 is a Ruby binding of gio-2.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby ruby-glib2=$pkgver ruby-gobject-introspection=$pkgver)
-makedepends=(gobject-introspection)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('04d40e97cf223e7ae7e4daf918150bf76a9cc5b9')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-gio2/repos/community-i686/PKGBUILD (from rev 209165, 
ruby-gio2/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-26 18:36:47 UTC (rev 209166)
@@ -0,0 +1,22 @@
+# Maintainer: Anatol Pomozov 
+
+_gemname=gio2
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/GIO2 is a Ruby binding of gio-2.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby ruby-glib2=$pkgver ruby-gobject-introspection=$pkgver)
+makedepends=(gobject-introspection)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('3ceb8be6ec962cc8958ca75498275d385324de8d')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-26 18:36:09 UTC (rev 209165)
+++ community-x86_64/PKGBUILD   2017-01-26 18:36:47 UTC (rev 209166)
@@ -1,22 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-_gemname=gio2
-pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
-pkgdesc='Ruby/GIO2 is a Ruby binding of gio-2.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby ruby-glib2=$pkgver ruby-gobject-introspection=$pkgver)
-makedepends=(gobject-introspection)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('04d40e97cf223e7ae7e4daf918150bf76a9cc5b9')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-gio2/repos/community-x86_64/PKGBUILD (from rev 209165, 
ruby-gio2/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-26 18:36:47 UTC (rev 209166)
@@ -0,0 +1,22 @@
+# Maintainer: Anatol Pomozov 
+
+_gemname=gio2
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/GIO2 is a Ruby binding of gio-2.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby ruby-glib2=$pkgver ruby-gobject-introspection=$pkgver)
+makedepends=(gobject-introspection)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('3ceb8be6ec962cc8958ca75498275d385324de8d')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}


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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:36:09
  Author: anatolik
Revision: 209165

upgpkg: ruby-gio2 3.1.1-1

Modified:
  ruby-gio2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 18:35:20 UTC (rev 209164)
+++ PKGBUILD2017-01-26 18:36:09 UTC (rev 209165)
@@ -2,8 +2,8 @@
 
 _gemname=gio2
 pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
+pkgver=3.1.1
+pkgrel=1
 pkgdesc='Ruby/GIO2 is a Ruby binding of gio-2.x.'
 arch=(i686 x86_64)
 url='http://ruby-gnome2.sourceforge.jp/'
@@ -13,7 +13,7 @@
 options=(!emptydirs)
 source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
 noextract=($_gemname-$pkgver.gem)
-sha1sums=('04d40e97cf223e7ae7e4daf918150bf76a9cc5b9')
+sha1sums=('3ceb8be6ec962cc8958ca75498275d385324de8d')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


[arch-commits] Commit in ruby-gobject-introspection/repos (4 files)

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:35:20
  Author: anatolik
Revision: 209164

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

Added:
  ruby-gobject-introspection/repos/community-i686/PKGBUILD
(from rev 209163, ruby-gobject-introspection/trunk/PKGBUILD)
  ruby-gobject-introspection/repos/community-x86_64/PKGBUILD
(from rev 209163, ruby-gobject-introspection/trunk/PKGBUILD)
Deleted:
  ruby-gobject-introspection/repos/community-i686/PKGBUILD
  ruby-gobject-introspection/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-01-26 18:33:51 UTC (rev 209163)
+++ community-i686/PKGBUILD 2017-01-26 18:35:20 UTC (rev 209164)
@@ -1,22 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-_gemname=gobject-introspection
-pkgname=ruby-$_gemname
-pkgver=3.1.1
-pkgrel=1
-pkgdesc='Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby gobject-introspection-runtime ruby-glib2=$pkgver)
-makedepends=(gobject-introspection)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('57f5356e95bef69794e69641dc327f9e2d3febf1')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-gobject-introspection/repos/community-i686/PKGBUILD (from rev 
209163, ruby-gobject-introspection/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-26 18:35:20 UTC (rev 209164)
@@ -0,0 +1,22 @@
+# Maintainer: Anatol Pomozov 
+
+_gemname=gobject-introspection
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby gobject-introspection-runtime ruby-glib2=$pkgver)
+makedepends=(gobject-introspection)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('57f5356e95bef69794e69641dc327f9e2d3febf1')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-26 18:33:51 UTC (rev 209163)
+++ community-x86_64/PKGBUILD   2017-01-26 18:35:20 UTC (rev 209164)
@@ -1,22 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-_gemname=gobject-introspection
-pkgname=ruby-$_gemname
-pkgver=3.1.1
-pkgrel=1
-pkgdesc='Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby gobject-introspection-runtime ruby-glib2=$pkgver)
-makedepends=(gobject-introspection)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('57f5356e95bef69794e69641dc327f9e2d3febf1')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-gobject-introspection/repos/community-x86_64/PKGBUILD (from rev 
209163, ruby-gobject-introspection/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-26 18:35:20 UTC (rev 209164)
@@ -0,0 +1,22 @@
+# Maintainer: Anatol Pomozov 
+
+_gemname=gobject-introspection
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby gobject-introspection-runtime ruby-glib2=$pkgver)
+makedepends=(gobject-introspection)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)

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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:33:51
  Author: anatolik
Revision: 209163

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

Added:
  ruby-atk/repos/community-i686/PKGBUILD
(from rev 209162, ruby-atk/trunk/PKGBUILD)
  ruby-atk/repos/community-x86_64/PKGBUILD
(from rev 209162, ruby-atk/trunk/PKGBUILD)
Deleted:
  ruby-atk/repos/community-i686/PKGBUILD
  ruby-atk/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-01-26 18:32:22 UTC (rev 209162)
+++ community-i686/PKGBUILD 2017-01-26 18:33:51 UTC (rev 209163)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=atk
-pkgname=ruby-$_gemname
-pkgver=3.1.1
-pkgrel=1
-pkgdesc='Ruby/ATK is a Ruby binding of ATK-1.0.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby atk ruby-glib2=$pkgver)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('9e25c817539fe7b0d2d7c5b09edeab1a0bd45a18')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-atk/repos/community-i686/PKGBUILD (from rev 209162, 
ruby-atk/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-26 18:33:51 UTC (rev 209163)
@@ -0,0 +1,22 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov 
+
+_gemname=atk
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/ATK is a Ruby binding of ATK-1.0.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby atk ruby-glib2=$pkgver)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('9e25c817539fe7b0d2d7c5b09edeab1a0bd45a18')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-26 18:32:22 UTC (rev 209162)
+++ community-x86_64/PKGBUILD   2017-01-26 18:33:51 UTC (rev 209163)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=atk
-pkgname=ruby-$_gemname
-pkgver=3.1.1
-pkgrel=1
-pkgdesc='Ruby/ATK is a Ruby binding of ATK-1.0.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby atk ruby-glib2=$pkgver)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('9e25c817539fe7b0d2d7c5b09edeab1a0bd45a18')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-atk/repos/community-x86_64/PKGBUILD (from rev 209162, 
ruby-atk/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-26 18:33:51 UTC (rev 209163)
@@ -0,0 +1,22 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov 
+
+_gemname=atk
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/ATK is a Ruby binding of ATK-1.0.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby atk ruby-glib2=$pkgver)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('9e25c817539fe7b0d2d7c5b09edeab1a0bd45a18')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}


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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:32:22
  Author: anatolik
Revision: 209162

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

Added:
  ruby-glib2/repos/community-i686/0001-glib2-support-GLib-2.44.patch
(from rev 209161, ruby-glib2/trunk/0001-glib2-support-GLib-2.44.patch)
  ruby-glib2/repos/community-i686/PKGBUILD
(from rev 209161, ruby-glib2/trunk/PKGBUILD)
  ruby-glib2/repos/community-x86_64/0001-glib2-support-GLib-2.44.patch
(from rev 209161, ruby-glib2/trunk/0001-glib2-support-GLib-2.44.patch)
  ruby-glib2/repos/community-x86_64/PKGBUILD
(from rev 209161, ruby-glib2/trunk/PKGBUILD)
Deleted:
  ruby-glib2/repos/community-i686/0001-glib2-support-GLib-2.44.patch
  ruby-glib2/repos/community-i686/PKGBUILD
  ruby-glib2/repos/community-x86_64/0001-glib2-support-GLib-2.44.patch
  ruby-glib2/repos/community-x86_64/PKGBUILD

-+
 /0001-glib2-support-GLib-2.44.patch |   76 ++
 /PKGBUILD   |   44 ++
 community-i686/0001-glib2-support-GLib-2.44.patch   |   38 -
 community-i686/PKGBUILD |   22 -
 community-x86_64/0001-glib2-support-GLib-2.44.patch |   38 -
 community-x86_64/PKGBUILD   |   22 -
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/0001-glib2-support-GLib-2.44.patch
===
--- community-i686/0001-glib2-support-GLib-2.44.patch   2017-01-26 18:24:04 UTC 
(rev 209161)
+++ community-i686/0001-glib2-support-GLib-2.44.patch   2017-01-26 18:32:22 UTC 
(rev 209162)
@@ -1,38 +0,0 @@
-From c5cdb741a9eb72351739e48a38946b87c292c293 Mon Sep 17 00:00:00 2001
-From: Kouhei Sutou 
-Date: Sat, 4 Apr 2015 15:00:14 +0900
-Subject: [PATCH] glib2: support GLib 2.44
-
-gwin32.h includes an enum type that is available on Windows.
-
-GitHub: fix #361
-
-Reported by Benjamin Maisano. Thanks!!!
-
-diff --git a/glib2/ext/glib2/extconf.rb b/glib2/ext/glib2/extconf.rb
-index d88d971..1c5cd8d 100644
 a/glib2/ext/glib2/extconf.rb
-+++ b/glib2/ext/glib2/extconf.rb
-@@ -56,10 +56,18 @@ create_pkg_config_file("Ruby/GLib2", package_id)
- 
- enum_types_prefix = "glib-enum-types"
- include_paths = PKGConfig.cflags_only_I("glib-2.0")
-+ignore_headers = [
-+  "giochannel.h",
-+  "gmain.h",
-+  "gscanner.h",
-+]
-+unless (/mingw|cygwin|mswin/ === RUBY_PLATFORM)
-+  ignore_headers << "gwin32.h"
-+end
- headers = include_paths.split.inject([]) do |result, path|
-   result + Dir.glob(File.join(path.sub(/^-I/, ""), "glib", "*.h"))
- end.reject do |file|
--  /g(iochannel|main|scanner)\.h/ =~ file
-+  ignore_headers.include?(File.basename(file))
- end
- include_paths = PKGConfig.cflags_only_I("gobject-2.0")
- headers = include_paths.split.inject(headers) do |result, path|
--- 
-2.3.5
-

Copied: ruby-glib2/repos/community-i686/0001-glib2-support-GLib-2.44.patch 
(from rev 209161, ruby-glib2/trunk/0001-glib2-support-GLib-2.44.patch)
===
--- community-i686/0001-glib2-support-GLib-2.44.patch   
(rev 0)
+++ community-i686/0001-glib2-support-GLib-2.44.patch   2017-01-26 18:32:22 UTC 
(rev 209162)
@@ -0,0 +1,38 @@
+From c5cdb741a9eb72351739e48a38946b87c292c293 Mon Sep 17 00:00:00 2001
+From: Kouhei Sutou 
+Date: Sat, 4 Apr 2015 15:00:14 +0900
+Subject: [PATCH] glib2: support GLib 2.44
+
+gwin32.h includes an enum type that is available on Windows.
+
+GitHub: fix #361
+
+Reported by Benjamin Maisano. Thanks!!!
+
+diff --git a/glib2/ext/glib2/extconf.rb b/glib2/ext/glib2/extconf.rb
+index d88d971..1c5cd8d 100644
+--- a/glib2/ext/glib2/extconf.rb
 b/glib2/ext/glib2/extconf.rb
+@@ -56,10 +56,18 @@ create_pkg_config_file("Ruby/GLib2", package_id)
+ 
+ enum_types_prefix = "glib-enum-types"
+ include_paths = PKGConfig.cflags_only_I("glib-2.0")
++ignore_headers = [
++  "giochannel.h",
++  "gmain.h",
++  "gscanner.h",
++]
++unless (/mingw|cygwin|mswin/ === RUBY_PLATFORM)
++  ignore_headers << "gwin32.h"
++end
+ headers = include_paths.split.inject([]) do |result, path|
+   result + Dir.glob(File.join(path.sub(/^-I/, ""), "glib", "*.h"))
+ end.reject do |file|
+-  /g(iochannel|main|scanner)\.h/ =~ file
++  ignore_headers.include?(File.basename(file))
+ end
+ include_paths = PKGConfig.cflags_only_I("gobject-2.0")
+ headers = include_paths.split.inject(headers) do |result, path|
+-- 
+2.3.5
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-26 18:24:04 UTC (rev 209161)
+++ community-i686/PKGBUILD 2017-01-26 18:32:22 UTC (rev 209162)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=glib2
-pkgname=ruby-$_gemname

[arch-commits] Commit in ruby-gobject-introspection/repos (4 files)

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:24:04
  Author: anatolik
Revision: 209161

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

Added:
  ruby-gobject-introspection/repos/community-i686/PKGBUILD
(from rev 209160, ruby-gobject-introspection/trunk/PKGBUILD)
  ruby-gobject-introspection/repos/community-x86_64/PKGBUILD
(from rev 209160, ruby-gobject-introspection/trunk/PKGBUILD)
Deleted:
  ruby-gobject-introspection/repos/community-i686/PKGBUILD
  ruby-gobject-introspection/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-01-26 18:23:24 UTC (rev 209160)
+++ community-i686/PKGBUILD 2017-01-26 18:24:04 UTC (rev 209161)
@@ -1,22 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-_gemname=gobject-introspection
-pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=3
-pkgdesc='Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby gobject-introspection-runtime ruby-glib2=$pkgver)
-makedepends=(gobject-introspection)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('ce25a1c2707377ef9486e70734a37357632f522b')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-gobject-introspection/repos/community-i686/PKGBUILD (from rev 
209160, ruby-gobject-introspection/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-26 18:24:04 UTC (rev 209161)
@@ -0,0 +1,22 @@
+# Maintainer: Anatol Pomozov 
+
+_gemname=gobject-introspection
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby gobject-introspection-runtime ruby-glib2=$pkgver)
+makedepends=(gobject-introspection)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('57f5356e95bef69794e69641dc327f9e2d3febf1')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-26 18:23:24 UTC (rev 209160)
+++ community-x86_64/PKGBUILD   2017-01-26 18:24:04 UTC (rev 209161)
@@ -1,22 +0,0 @@
-# Maintainer: Anatol Pomozov 
-
-_gemname=gobject-introspection
-pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=3
-pkgdesc='Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby gobject-introspection-runtime ruby-glib2=$pkgver)
-makedepends=(gobject-introspection)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('ce25a1c2707377ef9486e70734a37357632f522b')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-gobject-introspection/repos/community-x86_64/PKGBUILD (from rev 
209160, ruby-gobject-introspection/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-26 18:24:04 UTC (rev 209161)
@@ -0,0 +1,22 @@
+# Maintainer: Anatol Pomozov 
+
+_gemname=gobject-introspection
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby gobject-introspection-runtime ruby-glib2=$pkgver)
+makedepends=(gobject-introspection)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)

[arch-commits] Commit in ruby-gobject-introspection/trunk (PKGBUILD)

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:23:24
  Author: anatolik
Revision: 209160

upgpkg: ruby-gobject-introspection 3.1.1-1

Modified:
  ruby-gobject-introspection/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 18:12:21 UTC (rev 209159)
+++ PKGBUILD2017-01-26 18:23:24 UTC (rev 209160)
@@ -2,8 +2,8 @@
 
 _gemname=gobject-introspection
 pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=3
+pkgver=3.1.1
+pkgrel=1
 pkgdesc='Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.'
 arch=(i686 x86_64)
 url='http://ruby-gnome2.sourceforge.jp/'
@@ -13,7 +13,7 @@
 options=(!emptydirs)
 source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
 noextract=($_gemname-$pkgver.gem)
-sha1sums=('ce25a1c2707377ef9486e70734a37357632f522b')
+sha1sums=('57f5356e95bef69794e69641dc327f9e2d3febf1')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:12:21
  Author: anatolik
Revision: 209159

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

Added:
  ruby-pango/repos/community-i686/PKGBUILD
(from rev 209158, ruby-pango/trunk/PKGBUILD)
  ruby-pango/repos/community-x86_64/PKGBUILD
(from rev 209158, ruby-pango/trunk/PKGBUILD)
Deleted:
  ruby-pango/repos/community-i686/PKGBUILD
  ruby-pango/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-01-26 18:11:41 UTC (rev 209158)
+++ community-i686/PKGBUILD 2017-01-26 18:12:21 UTC (rev 209159)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=pango
-pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
-pkgdesc='Ruby/Pango is a Ruby binding of pango-1.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby pango ruby-cairo ruby-glib2=$pkgver)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('11236af8be7db4366581dbb3af5ca921a62c28fa')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-pango/repos/community-i686/PKGBUILD (from rev 209158, 
ruby-pango/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-26 18:12:21 UTC (rev 209159)
@@ -0,0 +1,22 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov 
+
+_gemname=pango
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/Pango is a Ruby binding of pango-1.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby pango ruby-cairo ruby-glib2=$pkgver)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('cedef3fbca8540169559c62719f45c49c4347479')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-26 18:11:41 UTC (rev 209158)
+++ community-x86_64/PKGBUILD   2017-01-26 18:12:21 UTC (rev 209159)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=pango
-pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
-pkgdesc='Ruby/Pango is a Ruby binding of pango-1.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby pango ruby-cairo ruby-glib2=$pkgver)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('11236af8be7db4366581dbb3af5ca921a62c28fa')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-pango/repos/community-x86_64/PKGBUILD (from rev 209158, 
ruby-pango/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-26 18:12:21 UTC (rev 209159)
@@ -0,0 +1,22 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov 
+
+_gemname=pango
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/Pango is a Ruby binding of pango-1.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby pango ruby-cairo ruby-glib2=$pkgver)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('cedef3fbca8540169559c62719f45c49c4347479')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm 

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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:11:41
  Author: anatolik
Revision: 209158

upgpkg: ruby-pango 3.1.1-1

Modified:
  ruby-pango/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 18:09:31 UTC (rev 209157)
+++ PKGBUILD2017-01-26 18:11:41 UTC (rev 209158)
@@ -3,8 +3,8 @@
 
 _gemname=pango
 pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
+pkgver=3.1.1
+pkgrel=1
 pkgdesc='Ruby/Pango is a Ruby binding of pango-1.x.'
 arch=(i686 x86_64)
 url='http://ruby-gnome2.sourceforge.jp/'
@@ -13,7 +13,7 @@
 options=(!emptydirs)
 source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
 noextract=($_gemname-$pkgver.gem)
-sha1sums=('11236af8be7db4366581dbb3af5ca921a62c28fa')
+sha1sums=('cedef3fbca8540169559c62719f45c49c4347479')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:09:31
  Author: anatolik
Revision: 209157

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

Added:
  ruby-atk/repos/community-i686/PKGBUILD
(from rev 209156, ruby-atk/trunk/PKGBUILD)
  ruby-atk/repos/community-x86_64/PKGBUILD
(from rev 209156, ruby-atk/trunk/PKGBUILD)
Deleted:
  ruby-atk/repos/community-i686/PKGBUILD
  ruby-atk/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-01-26 18:08:53 UTC (rev 209156)
+++ community-i686/PKGBUILD 2017-01-26 18:09:31 UTC (rev 209157)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=atk
-pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
-pkgdesc='Ruby/ATK is a Ruby binding of ATK-1.0.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby atk ruby-glib2=$pkgver)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('f94ca40462487f2510afe0bb964b7a0a08a559da')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-atk/repos/community-i686/PKGBUILD (from rev 209156, 
ruby-atk/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-01-26 18:09:31 UTC (rev 209157)
@@ -0,0 +1,22 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov 
+
+_gemname=atk
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/ATK is a Ruby binding of ATK-1.0.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby atk ruby-glib2=$pkgver)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('9e25c817539fe7b0d2d7c5b09edeab1a0bd45a18')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-01-26 18:08:53 UTC (rev 209156)
+++ community-x86_64/PKGBUILD   2017-01-26 18:09:31 UTC (rev 209157)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=atk
-pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
-pkgdesc='Ruby/ATK is a Ruby binding of ATK-1.0.x.'
-arch=(i686 x86_64)
-url='http://ruby-gnome2.sourceforge.jp/'
-license=(LGPL2.1)
-depends=(ruby atk ruby-glib2=$pkgver)
-options=(!emptydirs)
-source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
-noextract=($_gemname-$pkgver.gem)
-sha1sums=('f94ca40462487f2510afe0bb964b7a0a08a559da')
-
-package() {
-  local _gemdir="$(ruby -e'puts Gem.default_dir')"
-  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
-  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
-}

Copied: ruby-atk/repos/community-x86_64/PKGBUILD (from rev 209156, 
ruby-atk/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2017-01-26 18:09:31 UTC (rev 209157)
@@ -0,0 +1,22 @@
+# Generated by gem2arch (https://github.com/anatol/gem2arch)
+# Maintainer: Anatol Pomozov 
+
+_gemname=atk
+pkgname=ruby-$_gemname
+pkgver=3.1.1
+pkgrel=1
+pkgdesc='Ruby/ATK is a Ruby binding of ATK-1.0.x.'
+arch=(i686 x86_64)
+url='http://ruby-gnome2.sourceforge.jp/'
+license=(LGPL2.1)
+depends=(ruby atk ruby-glib2=$pkgver)
+options=(!emptydirs)
+source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
+noextract=($_gemname-$pkgver.gem)
+sha1sums=('9e25c817539fe7b0d2d7c5b09edeab1a0bd45a18')
+
+package() {
+  local _gemdir="$(ruby -e'puts Gem.default_dir')"
+  gem install --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n 
"$pkgdir/usr/bin" $_gemname-$pkgver.gem
+  rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem"
+}


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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:08:53
  Author: anatolik
Revision: 209156

upgpkg: ruby-atk 3.1.1-1

Modified:
  ruby-atk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 18:07:54 UTC (rev 209155)
+++ PKGBUILD2017-01-26 18:08:53 UTC (rev 209156)
@@ -3,8 +3,8 @@
 
 _gemname=atk
 pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
+pkgver=3.1.1
+pkgrel=1
 pkgdesc='Ruby/ATK is a Ruby binding of ATK-1.0.x.'
 arch=(i686 x86_64)
 url='http://ruby-gnome2.sourceforge.jp/'
@@ -13,7 +13,7 @@
 options=(!emptydirs)
 source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
 noextract=($_gemname-$pkgver.gem)
-sha1sums=('f94ca40462487f2510afe0bb964b7a0a08a559da')
+sha1sums=('9e25c817539fe7b0d2d7c5b09edeab1a0bd45a18')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:07:54
  Author: anatolik
Revision: 209155

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

Added:
  ruby-glib2/repos/community-i686/0001-glib2-support-GLib-2.44.patch
(from rev 209154, ruby-glib2/trunk/0001-glib2-support-GLib-2.44.patch)
  ruby-glib2/repos/community-i686/PKGBUILD
(from rev 209154, ruby-glib2/trunk/PKGBUILD)
  ruby-glib2/repos/community-x86_64/0001-glib2-support-GLib-2.44.patch
(from rev 209154, ruby-glib2/trunk/0001-glib2-support-GLib-2.44.patch)
  ruby-glib2/repos/community-x86_64/PKGBUILD
(from rev 209154, ruby-glib2/trunk/PKGBUILD)
Deleted:
  ruby-glib2/repos/community-i686/0001-glib2-support-GLib-2.44.patch
  ruby-glib2/repos/community-i686/PKGBUILD
  ruby-glib2/repos/community-x86_64/0001-glib2-support-GLib-2.44.patch
  ruby-glib2/repos/community-x86_64/PKGBUILD

-+
 /0001-glib2-support-GLib-2.44.patch |   76 ++
 /PKGBUILD   |   44 ++
 community-i686/0001-glib2-support-GLib-2.44.patch   |   38 -
 community-i686/PKGBUILD |   22 -
 community-x86_64/0001-glib2-support-GLib-2.44.patch |   38 -
 community-x86_64/PKGBUILD   |   22 -
 6 files changed, 120 insertions(+), 120 deletions(-)

Deleted: community-i686/0001-glib2-support-GLib-2.44.patch
===
--- community-i686/0001-glib2-support-GLib-2.44.patch   2017-01-26 18:07:16 UTC 
(rev 209154)
+++ community-i686/0001-glib2-support-GLib-2.44.patch   2017-01-26 18:07:54 UTC 
(rev 209155)
@@ -1,38 +0,0 @@
-From c5cdb741a9eb72351739e48a38946b87c292c293 Mon Sep 17 00:00:00 2001
-From: Kouhei Sutou 
-Date: Sat, 4 Apr 2015 15:00:14 +0900
-Subject: [PATCH] glib2: support GLib 2.44
-
-gwin32.h includes an enum type that is available on Windows.
-
-GitHub: fix #361
-
-Reported by Benjamin Maisano. Thanks!!!
-
-diff --git a/glib2/ext/glib2/extconf.rb b/glib2/ext/glib2/extconf.rb
-index d88d971..1c5cd8d 100644
 a/glib2/ext/glib2/extconf.rb
-+++ b/glib2/ext/glib2/extconf.rb
-@@ -56,10 +56,18 @@ create_pkg_config_file("Ruby/GLib2", package_id)
- 
- enum_types_prefix = "glib-enum-types"
- include_paths = PKGConfig.cflags_only_I("glib-2.0")
-+ignore_headers = [
-+  "giochannel.h",
-+  "gmain.h",
-+  "gscanner.h",
-+]
-+unless (/mingw|cygwin|mswin/ === RUBY_PLATFORM)
-+  ignore_headers << "gwin32.h"
-+end
- headers = include_paths.split.inject([]) do |result, path|
-   result + Dir.glob(File.join(path.sub(/^-I/, ""), "glib", "*.h"))
- end.reject do |file|
--  /g(iochannel|main|scanner)\.h/ =~ file
-+  ignore_headers.include?(File.basename(file))
- end
- include_paths = PKGConfig.cflags_only_I("gobject-2.0")
- headers = include_paths.split.inject(headers) do |result, path|
--- 
-2.3.5
-

Copied: ruby-glib2/repos/community-i686/0001-glib2-support-GLib-2.44.patch 
(from rev 209154, ruby-glib2/trunk/0001-glib2-support-GLib-2.44.patch)
===
--- community-i686/0001-glib2-support-GLib-2.44.patch   
(rev 0)
+++ community-i686/0001-glib2-support-GLib-2.44.patch   2017-01-26 18:07:54 UTC 
(rev 209155)
@@ -0,0 +1,38 @@
+From c5cdb741a9eb72351739e48a38946b87c292c293 Mon Sep 17 00:00:00 2001
+From: Kouhei Sutou 
+Date: Sat, 4 Apr 2015 15:00:14 +0900
+Subject: [PATCH] glib2: support GLib 2.44
+
+gwin32.h includes an enum type that is available on Windows.
+
+GitHub: fix #361
+
+Reported by Benjamin Maisano. Thanks!!!
+
+diff --git a/glib2/ext/glib2/extconf.rb b/glib2/ext/glib2/extconf.rb
+index d88d971..1c5cd8d 100644
+--- a/glib2/ext/glib2/extconf.rb
 b/glib2/ext/glib2/extconf.rb
+@@ -56,10 +56,18 @@ create_pkg_config_file("Ruby/GLib2", package_id)
+ 
+ enum_types_prefix = "glib-enum-types"
+ include_paths = PKGConfig.cflags_only_I("glib-2.0")
++ignore_headers = [
++  "giochannel.h",
++  "gmain.h",
++  "gscanner.h",
++]
++unless (/mingw|cygwin|mswin/ === RUBY_PLATFORM)
++  ignore_headers << "gwin32.h"
++end
+ headers = include_paths.split.inject([]) do |result, path|
+   result + Dir.glob(File.join(path.sub(/^-I/, ""), "glib", "*.h"))
+ end.reject do |file|
+-  /g(iochannel|main|scanner)\.h/ =~ file
++  ignore_headers.include?(File.basename(file))
+ end
+ include_paths = PKGConfig.cflags_only_I("gobject-2.0")
+ headers = include_paths.split.inject(headers) do |result, path|
+-- 
+2.3.5
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-01-26 18:07:16 UTC (rev 209154)
+++ community-i686/PKGBUILD 2017-01-26 18:07:54 UTC (rev 209155)
@@ -1,22 +0,0 @@
-# Generated by gem2arch (https://github.com/anatol/gem2arch)
-# Maintainer: Anatol Pomozov 
-
-_gemname=glib2
-pkgname=ruby-$_gemname

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

2017-01-26 Thread Anatol Pomozov
Date: Thursday, January 26, 2017 @ 18:07:16
  Author: anatolik
Revision: 209154

upgpkg: ruby-glib2 3.1.1-1

Modified:
  ruby-glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-26 17:39:08 UTC (rev 209153)
+++ PKGBUILD2017-01-26 18:07:16 UTC (rev 209154)
@@ -3,8 +3,8 @@
 
 _gemname=glib2
 pkgname=ruby-$_gemname
-pkgver=3.1.0
-pkgrel=2
+pkgver=3.1.1
+pkgrel=1
 pkgdesc='Ruby/GLib2 is a Ruby binding of GLib-2.x.'
 arch=(i686 x86_64)
 url='http://ruby-gnome2.sourceforge.jp/'
@@ -13,7 +13,7 @@
 options=(!emptydirs)
 source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem)
 noextract=($_gemname-$pkgver.gem)
-sha1sums=('055fb7f051a20f954c67b7381ad2114629ab688a')
+sha1sums=('a9f3f95da63fcb0504c8fa69613ac861b7e9a37d')
 
 package() {
   local _gemdir="$(ruby -e'puts Gem.default_dir')"


[arch-commits] Commit in linux-lts/repos (18 files)

2017-01-26 Thread Andreas Radke
Date: Thursday, January 26, 2017 @ 17:44:53
  Author: andyrtr
Revision: 287522

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

Added:
  linux-lts/repos/testing-i686/
  linux-lts/repos/testing-i686/0001-sdhci-revert.patch
(from rev 287521, linux-lts/trunk/0001-sdhci-revert.patch)
  linux-lts/repos/testing-i686/99-linux.hook
(from rev 287521, linux-lts/trunk/99-linux.hook)
  linux-lts/repos/testing-i686/PKGBUILD
(from rev 287521, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-i686/change-default-console-loglevel.patch
(from rev 287521, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-i686/config
(from rev 287521, linux-lts/trunk/config)
  linux-lts/repos/testing-i686/config.x86_64
(from rev 287521, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-i686/linux-lts.install
(from rev 287521, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-i686/linux-lts.preset
(from rev 287521, linux-lts/trunk/linux-lts.preset)
  linux-lts/repos/testing-x86_64/
  linux-lts/repos/testing-x86_64/0001-sdhci-revert.patch
(from rev 287521, linux-lts/trunk/0001-sdhci-revert.patch)
  linux-lts/repos/testing-x86_64/99-linux.hook
(from rev 287521, linux-lts/trunk/99-linux.hook)
  linux-lts/repos/testing-x86_64/PKGBUILD
(from rev 287521, linux-lts/trunk/PKGBUILD)
  linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch
(from rev 287521, linux-lts/trunk/change-default-console-loglevel.patch)
  linux-lts/repos/testing-x86_64/config
(from rev 287521, linux-lts/trunk/config)
  linux-lts/repos/testing-x86_64/config.x86_64
(from rev 287521, linux-lts/trunk/config.x86_64)
  linux-lts/repos/testing-x86_64/linux-lts.install
(from rev 287521, linux-lts/trunk/linux-lts.install)
  linux-lts/repos/testing-x86_64/linux-lts.preset
(from rev 287521, linux-lts/trunk/linux-lts.preset)

--+
 testing-i686/0001-sdhci-revert.patch |   25 
 testing-i686/99-linux.hook   |   11 
 testing-i686/PKGBUILD|  300 
 testing-i686/change-default-console-loglevel.patch   |   11 
 testing-i686/config  | 7903 +
 testing-i686/config.x86_64   | 7662 
 testing-i686/linux-lts.install   |   33 
 testing-i686/linux-lts.preset|   14 
 testing-x86_64/0001-sdhci-revert.patch   |   25 
 testing-x86_64/99-linux.hook |   11 
 testing-x86_64/PKGBUILD  |  300 
 testing-x86_64/change-default-console-loglevel.patch |   11 
 testing-x86_64/config| 7903 +
 testing-x86_64/config.x86_64 | 7662 
 testing-x86_64/linux-lts.install |   33 
 testing-x86_64/linux-lts.preset  |   14 
 16 files changed, 31918 insertions(+)

The diff is longer than the limit of 200KB.
Use svn diff -r 287521:287522 to see the changes.


  1   2   >