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

2014-05-10 Thread Felix Yan
Date: Saturday, May 10, 2014 @ 08:10:00
  Author: fyan
Revision: 110933

upgpkg: python-paramiko 1.14.0-1

Modified:
  python-paramiko/trunk/PKGBUILD

--+
 PKGBUILD |   29 +++--
 1 file changed, 15 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 02:39:02 UTC (rev 110932)
+++ PKGBUILD2014-05-10 06:10:00 UTC (rev 110933)
@@ -1,12 +1,13 @@
 # $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@gmail.com
 # Contributor: Douglas Soares de Andrade doug...@archlinux.org
 # Contributor: Mario Danic mario.da...@gmail.com
 
 pkgbase=python-paramiko
 pkgname=(python-paramiko python2-paramiko)
-pkgver=1.13.0
-pkgrel=2
+pkgver=1.14.0
+pkgrel=1
 pkgdesc=Python module that implements the SSH2 protocol
 url=https://github.com/paramiko/paramiko/;
 license=('LGPL')
@@ -13,19 +14,23 @@
 arch=('any')
 makedepends=('python-ecdsa' 'python2-ecdsa' 'python-crypto' 'python2-crypto')
 
source=(http://pypi.python.org/packages/source/p/paramiko/paramiko-$pkgver.tar.gz;)
-md5sums=('acc53ee396dd907220a4141e118a845d')
+md5sums=('e26324fd398af68ad506fe98853835c3')
 
 prepare() {
-cp -r paramiko-$pkgver{,-py2}
+  cp -r paramiko-$pkgver{,-py2}
+
+  find paramiko-$pkgver-py2 -name '*.py' -print0 |xargs -0 \
+  sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
+  -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
 }
 
 check() {
-cd $srcdir/paramiko-$pkgver
-# Workaround encoding issue
-#LANG=en_US.UTF-8 python test.py
+  cd $srcdir/paramiko-$pkgver
+  # Workaround encoding issue
+  LANG=en_US.UTF-8 python test.py || : # Fails after actual tests finished
 
-cd $srcdir/paramiko-$pkgver-py2
-LANG=en_US.UTF-8 python2 test.py
+  cd $srcdir/paramiko-$pkgver-py2
+  LANG=en_US.UTF-8 python2 test.py
 }
 
 package_python-paramiko() {
@@ -48,9 +53,5 @@
   install -dm755 $pkgdir/usr/share/doc/$pkgname/demos
   install -m644 demos/* $pkgdir/usr/share/doc/$pkgname/demos
   chmod 755 $pkgdir/usr/share/doc/$pkgname/demos/*.py
-
-  find $pkgdir -name '*.py' -print0 |xargs -0 \
-sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
--e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
 }
 



[arch-commits] Commit in python-paramiko/repos/community-any (PKGBUILD PKGBUILD)

2014-05-10 Thread Felix Yan
Date: Saturday, May 10, 2014 @ 08:10:36
  Author: fyan
Revision: 110934

archrelease: copy trunk to community-any

Added:
  python-paramiko/repos/community-any/PKGBUILD
(from rev 110933, python-paramiko/trunk/PKGBUILD)
Deleted:
  python-paramiko/repos/community-any/PKGBUILD

--+
 PKGBUILD |  113 ++---
 1 file changed, 57 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-10 06:10:00 UTC (rev 110933)
+++ PKGBUILD2014-05-10 06:10:36 UTC (rev 110934)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-# Contributor: Mario Danic mario.da...@gmail.com
-
-pkgbase=python-paramiko
-pkgname=(python-paramiko python2-paramiko)
-pkgver=1.13.0
-pkgrel=2
-pkgdesc=Python module that implements the SSH2 protocol
-url=https://github.com/paramiko/paramiko/;
-license=('LGPL')
-arch=('any')
-makedepends=('python-ecdsa' 'python2-ecdsa' 'python-crypto' 'python2-crypto')
-source=(http://pypi.python.org/packages/source/p/paramiko/paramiko-$pkgver.tar.gz;)
-md5sums=('acc53ee396dd907220a4141e118a845d')
-
-prepare() {
-cp -r paramiko-$pkgver{,-py2}
-}
-
-check() {
-cd $srcdir/paramiko-$pkgver
-# Workaround encoding issue
-#LANG=en_US.UTF-8 python test.py
-
-cd $srcdir/paramiko-$pkgver-py2
-LANG=en_US.UTF-8 python2 test.py
-}
-
-package_python-paramiko() {
-  depends=('python-crypto' 'python-ecdsa')
-  cd $srcdir/paramiko-$pkgver
-
-  python setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
-  install -dm755 $pkgdir/usr/share/doc/$pkgname/demos
-  install -m644 demos/* $pkgdir/usr/share/doc/$pkgname/demos
-  chmod 755 $pkgdir/usr/share/doc/$pkgname/demos/*.py
-}
-
-package_python2-paramiko() {
-  depends=('python2-crypto' 'python2-ecdsa')
-  cd $srcdir/paramiko-$pkgver-py2
-
-  python2 setup.py install --root=$pkgdir --optimize=1
-  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
-  install -dm755 $pkgdir/usr/share/doc/$pkgname/demos
-  install -m644 demos/* $pkgdir/usr/share/doc/$pkgname/demos
-  chmod 755 $pkgdir/usr/share/doc/$pkgname/demos/*.py
-
-  find $pkgdir -name '*.py' -print0 |xargs -0 \
-sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
--e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
-}
-

Copied: python-paramiko/repos/community-any/PKGBUILD (from rev 110933, 
python-paramiko/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-10 06:10:36 UTC (rev 110934)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+# Contributor: Mario Danic mario.da...@gmail.com
+
+pkgbase=python-paramiko
+pkgname=(python-paramiko python2-paramiko)
+pkgver=1.14.0
+pkgrel=1
+pkgdesc=Python module that implements the SSH2 protocol
+url=https://github.com/paramiko/paramiko/;
+license=('LGPL')
+arch=('any')
+makedepends=('python-ecdsa' 'python2-ecdsa' 'python-crypto' 'python2-crypto')
+source=(http://pypi.python.org/packages/source/p/paramiko/paramiko-$pkgver.tar.gz;)
+md5sums=('e26324fd398af68ad506fe98853835c3')
+
+prepare() {
+  cp -r paramiko-$pkgver{,-py2}
+
+  find paramiko-$pkgver-py2 -name '*.py' -print0 |xargs -0 \
+  sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
+  -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
+}
+
+check() {
+  cd $srcdir/paramiko-$pkgver
+  # Workaround encoding issue
+  LANG=en_US.UTF-8 python test.py || : # Fails after actual tests finished
+
+  cd $srcdir/paramiko-$pkgver-py2
+  LANG=en_US.UTF-8 python2 test.py
+}
+
+package_python-paramiko() {
+  depends=('python-crypto' 'python-ecdsa')
+  cd $srcdir/paramiko-$pkgver
+
+  python setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
+  install -dm755 $pkgdir/usr/share/doc/$pkgname/demos
+  install -m644 demos/* $pkgdir/usr/share/doc/$pkgname/demos
+  chmod 755 $pkgdir/usr/share/doc/$pkgname/demos/*.py
+}
+
+package_python2-paramiko() {
+  depends=('python2-crypto' 'python2-ecdsa')
+  cd $srcdir/paramiko-$pkgver-py2
+
+  python2 setup.py install --root=$pkgdir --optimize=1
+  install -Dm644 README $pkgdir/usr/share/doc/$pkgname/README
+  install -dm755 $pkgdir/usr/share/doc/$pkgname/demos
+  install -m644 demos/* $pkgdir/usr/share/doc/$pkgname/demos
+  chmod 755 $pkgdir/usr/share/doc/$pkgname/demos/*.py
+}
+



[arch-commits] Commit in devtools/repos (testing-any testing-any/PKGBUILD)

2014-05-10 Thread Pierre Schmitz
Date: Saturday, May 10, 2014 @ 08:22:34
  Author: pierre
Revision: 212189

archrelease: copy trunk to testing-any

Added:
  devtools/repos/testing-any/
  devtools/repos/testing-any/PKGBUILD
(from rev 212188, devtools/trunk/PKGBUILD)

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

Copied: devtools/repos/testing-any/PKGBUILD (from rev 212188, 
devtools/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2014-05-10 06:22:34 UTC (rev 212189)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=devtools
+pkgver=20140510
+pkgrel=1
+pkgdesc='Tools for Arch Linux package maintainers'
+arch=('any')
+license=('GPL')
+url='http://projects.archlinux.org/devtools.git/'
+depends=('namcap' 'openssh' 'subversion' 'rsync' 'arch-install-scripts')
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
+md5sums=('702376263627e594b5a7ff1970353de4'
+ 'SKIP')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr DESTDIR=${pkgdir} install
+}



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

2014-05-10 Thread Pierre Schmitz
Date: Saturday, May 10, 2014 @ 08:22:26
  Author: pierre
Revision: 212188

upgpkg: devtools 20140510-1

Modified:
  devtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-09 22:56:00 UTC (rev 212187)
+++ PKGBUILD2014-05-10 06:22:26 UTC (rev 212188)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=devtools
-pkgver=20131107
+pkgver=20140510
 pkgrel=1
 pkgdesc='Tools for Arch Linux package maintainers'
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('namcap' 'openssh' 'subversion' 'rsync' 'arch-install-scripts')
 source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 
ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
-md5sums=('8b78e5f8e68d09864cf231c999ab222a'
+md5sums=('702376263627e594b5a7ff1970353de4'
  'SKIP')
 
 build() {



[arch-commits] Commit in transmission-remote-cli/trunk (PKGBUILD)

2014-05-10 Thread Daniel Micay
Date: Saturday, May 10, 2014 @ 09:47:46
  Author: thestinger
Revision: 110935

upgpkg: transmission-remote-cli 1.6.3-2

add missing transmission-remote-cli dependency for calls to transmission-remote

Modified:
  transmission-remote-cli/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 06:10:36 UTC (rev 110934)
+++ PKGBUILD2014-05-10 07:47:46 UTC (rev 110935)
@@ -6,12 +6,12 @@
 
 pkgname=transmission-remote-cli
 pkgver=1.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Curses interface for the daemon of the BitTorrent client Transmission
 arch=('any')
 url='https://github.com/fagga/transmission-remote-cli'
 license=('GPL3')
-depends=('python2')
+depends=(python2 transmission-cli)
 optdepends=('python2-geoip: Guess which country peers come from'
 'adns-python: Resolve IPs to host names')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/fagga/transmission-remote-cli/tarball/v$pkgver;)



[arch-commits] Commit in transmission-remote-cli/repos/community-any (2 files)

2014-05-10 Thread Daniel Micay
Date: Saturday, May 10, 2014 @ 09:48:13
  Author: thestinger
Revision: 110936

archrelease: copy trunk to community-any

Added:
  transmission-remote-cli/repos/community-any/PKGBUILD
(from rev 110935, transmission-remote-cli/trunk/PKGBUILD)
Deleted:
  transmission-remote-cli/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-10 07:47:46 UTC (rev 110935)
+++ PKGBUILD2014-05-10 07:48:13 UTC (rev 110936)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-# Contributor: Thomas Weißschuh thomas_weissschuh lavabit com
-# Contributor: fauno fa...@kiwwwi.com.ar
-# Contributor: SanskritFritz
-
-pkgname=transmission-remote-cli
-pkgver=1.6.3
-pkgrel=1
-pkgdesc=Curses interface for the daemon of the BitTorrent client Transmission
-arch=('any')
-url='https://github.com/fagga/transmission-remote-cli'
-license=('GPL3')
-depends=('python2')
-optdepends=('python2-geoip: Guess which country peers come from'
-'adns-python: Resolve IPs to host names')
-source=($pkgname-$pkgver.tar.gz::https://github.com/fagga/transmission-remote-cli/tarball/v$pkgver;)
-sha256sums=('ad2c2269d77f31f691c84b3c62886a17441ac5e90780fbbb01a038ec74db7371')
-
-build() {
-  cd $(ls -1td fagga-transmission-remote-cli-* | head -n 1)
-  sed -i 1s/python/python2/ transmission-remote-cli
-}
-
-package() {
-  cd $(ls -1td fagga-transmission-remote-cli-* | head -n 1)
-
-  install -Dm755 transmission-remote-cli 
$pkgdir/usr/bin/transmission-remote-cli
-  install -Dm644 transmission-remote-cli.1 
$pkgdir/usr/share/man/man1/transmission-remote-cli.1
-  install -Dm755 completion/bash/transmission-remote-cli-bash-completion.sh \
-$pkgdir/usr/share/bash-completion/completions/transmission-remote-cli
-}

Copied: transmission-remote-cli/repos/community-any/PKGBUILD (from rev 110935, 
transmission-remote-cli/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-10 07:48:13 UTC (rev 110936)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+# Contributor: Thomas Weißschuh thomas_weissschuh lavabit com
+# Contributor: fauno fa...@kiwwwi.com.ar
+# Contributor: SanskritFritz
+
+pkgname=transmission-remote-cli
+pkgver=1.6.3
+pkgrel=2
+pkgdesc=Curses interface for the daemon of the BitTorrent client Transmission
+arch=('any')
+url='https://github.com/fagga/transmission-remote-cli'
+license=('GPL3')
+depends=(python2 transmission-cli)
+optdepends=('python2-geoip: Guess which country peers come from'
+'adns-python: Resolve IPs to host names')
+source=($pkgname-$pkgver.tar.gz::https://github.com/fagga/transmission-remote-cli/tarball/v$pkgver;)
+sha256sums=('ad2c2269d77f31f691c84b3c62886a17441ac5e90780fbbb01a038ec74db7371')
+
+build() {
+  cd $(ls -1td fagga-transmission-remote-cli-* | head -n 1)
+  sed -i 1s/python/python2/ transmission-remote-cli
+}
+
+package() {
+  cd $(ls -1td fagga-transmission-remote-cli-* | head -n 1)
+
+  install -Dm755 transmission-remote-cli 
$pkgdir/usr/bin/transmission-remote-cli
+  install -Dm644 transmission-remote-cli.1 
$pkgdir/usr/share/man/man1/transmission-remote-cli.1
+  install -Dm755 completion/bash/transmission-remote-cli-bash-completion.sh \
+$pkgdir/usr/share/bash-completion/completions/transmission-remote-cli
+}



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

2014-05-10 Thread Florian Pritz
Date: Saturday, May 10, 2014 @ 10:24:32
  Author: bluewind
Revision: 110937

upgpkg: inxi 2.1.28-1

upstream update

Modified:
  inxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 07:48:13 UTC (rev 110936)
+++ PKGBUILD2014-05-10 08:24:32 UTC (rev 110937)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Florian Pritz f...@gmx.at
 pkgname=inxi
-pkgver=2.1.27
+pkgver=2.1.28
 pkgrel=1
 pkgdesc=script to get system information
 arch=('any')
@@ -25,7 +25,7 @@
   xorg-xrandr: inxi -G single screen resolution
 )
 
source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('e756fb80820062f7d440f64001ae40a3')
+md5sums=('7ff664c61f561f64a9a34f7a3fa25434')
 
 package() {
   cd $srcdir



[arch-commits] Commit in inxi/repos/community-any (PKGBUILD PKGBUILD upgpkg upgpkg)

2014-05-10 Thread Florian Pritz
Date: Saturday, May 10, 2014 @ 10:24:35
  Author: bluewind
Revision: 110938

archrelease: copy trunk to community-any

Added:
  inxi/repos/community-any/PKGBUILD
(from rev 110937, inxi/trunk/PKGBUILD)
  inxi/repos/community-any/upgpkg
(from rev 110937, inxi/trunk/upgpkg)
Deleted:
  inxi/repos/community-any/PKGBUILD
  inxi/repos/community-any/upgpkg

--+
 PKGBUILD |   72 ++---
 upgpkg   |8 +++---
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-10 08:24:32 UTC (rev 110937)
+++ PKGBUILD2014-05-10 08:24:35 UTC (rev 110938)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@gmx.at
-pkgname=inxi
-pkgver=2.1.27
-pkgrel=1
-pkgdesc=script to get system information
-arch=('any')
-url=http://inxi.org;
-license=('GPL')
-depends=(coreutils gawk grep pciutils procps-ng sed)
-optdepends=(
-  dmidecode: inxi -M if no sys machine data
-  file: inxi -o unmounted file system
-  hddtemp: inxi -Dx show hdd temp
-  net-tools: inxi -i ip lan-deprecated
-  iproute2: inxi -i ip lan
-  lm_sensors: inxi -s sensors output
-  usbutils: inxi -A usb audio;-N usb networking
-  kmod: inxi -Ax,-Nx module version
-  systemd-sysvcompat: inxi -I runlevel
-  sudo: inxi -Dx hddtemp-user;-o file-user
-  mesa-demos: inxi -G glx info
-  xorg-xdpyinfo: inxi -G multi screen resolution
-  xorg-xprop: inxi -S desktop data
-  xorg-xrandr: inxi -G single screen resolution
-)
-source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('e756fb80820062f7d440f64001ae40a3')
-
-package() {
-  cd $srcdir
-  install -D -m755 inxi $pkgdir/usr/bin/inxi
-  install -D -m755 inxi.1.gz $pkgdir/usr/share/man/man1/inxi.1.gz
-}
-
-# vim:set ts=2 sw=2 et:

Copied: inxi/repos/community-any/PKGBUILD (from rev 110937, inxi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-10 08:24:35 UTC (rev 110938)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Florian Pritz f...@gmx.at
+pkgname=inxi
+pkgver=2.1.28
+pkgrel=1
+pkgdesc=script to get system information
+arch=('any')
+url=http://inxi.org;
+license=('GPL')
+depends=(coreutils gawk grep pciutils procps-ng sed)
+optdepends=(
+  dmidecode: inxi -M if no sys machine data
+  file: inxi -o unmounted file system
+  hddtemp: inxi -Dx show hdd temp
+  net-tools: inxi -i ip lan-deprecated
+  iproute2: inxi -i ip lan
+  lm_sensors: inxi -s sensors output
+  usbutils: inxi -A usb audio;-N usb networking
+  kmod: inxi -Ax,-Nx module version
+  systemd-sysvcompat: inxi -I runlevel
+  sudo: inxi -Dx hddtemp-user;-o file-user
+  mesa-demos: inxi -G glx info
+  xorg-xdpyinfo: inxi -G multi screen resolution
+  xorg-xprop: inxi -S desktop data
+  xorg-xrandr: inxi -G single screen resolution
+)
+source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('7ff664c61f561f64a9a34f7a3fa25434')
+
+package() {
+  cd $srcdir
+  install -D -m755 inxi $pkgdir/usr/bin/inxi
+  install -D -m755 inxi.1.gz $pkgdir/usr/share/man/man1/inxi.1.gz
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: upgpkg
===
--- upgpkg  2014-05-10 08:24:32 UTC (rev 110937)
+++ upgpkg  2014-05-10 08:24:35 UTC (rev 110938)
@@ -1,4 +0,0 @@
-upgpkg_pre_upgrade() {
-  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
-  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
-}

Copied: inxi/repos/community-any/upgpkg (from rev 110937, inxi/trunk/upgpkg)
===
--- upgpkg  (rev 0)
+++ upgpkg  2014-05-10 08:24:35 UTC (rev 110938)
@@ -0,0 +1,4 @@
+upgpkg_pre_upgrade() {
+  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
+  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
+}



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

2014-05-10 Thread Sébastien Luttringer
Date: Saturday, May 10, 2014 @ 11:26:03
  Author: seblu
Revision: 110939

upgpkg: quilt 0.63-1

Modified:
  quilt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 08:24:35 UTC (rev 110938)
+++ PKGBUILD2014-05-10 09:26:03 UTC (rev 110939)
@@ -5,7 +5,7 @@
 # Contributor: dibblethewrecker dibblethewrecker.at.jiwe.org
 
 pkgname=quilt
-pkgver=0.61
+pkgver=0.63
 pkgrel=1
 pkgdesc='Manage a series of patches by keeping track of the changes each patch 
makes'
 arch=('any')
@@ -24,7 +24,7 @@
   'perl'
 )
 
source=(http://savannah.nongnu.org/download/quilt/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('24417eba5961592b64103bdda001ebf4')
+md5sums=('c0ef4beb58a6fa72563b955e70624b6e')
 
 build() {
   cd ${pkgname}-${pkgver}



[arch-commits] Commit in quilt/repos/community-any (PKGBUILD PKGBUILD)

2014-05-10 Thread Sébastien Luttringer
Date: Saturday, May 10, 2014 @ 11:26:16
  Author: seblu
Revision: 110940

archrelease: copy trunk to community-any

Added:
  quilt/repos/community-any/PKGBUILD
(from rev 110939, quilt/trunk/PKGBUILD)
Deleted:
  quilt/repos/community-any/PKGBUILD

--+
 PKGBUILD |   86 ++---
 1 file changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-10 09:26:03 UTC (rev 110939)
+++ PKGBUILD2014-05-10 09:26:16 UTC (rev 110940)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Peter Richard Lewis ple...@aur.archlinux.org
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.org
-
-pkgname=quilt
-pkgver=0.61
-pkgrel=1
-pkgdesc='Manage a series of patches by keeping track of the changes each patch 
makes'
-arch=('any')
-url='http://savannah.nongnu.org/projects/quilt'
-license=('GPL2')
-depends=(
-  'bash'
-  'bzip2'
-  'diffstat'
-  'diffutils'
-  'findutils'
-  'gawk'
-  'gettext'
-  'gzip'
-  'patch'
-  'perl'
-)
-source=(http://savannah.nongnu.org/download/quilt/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('24417eba5961592b64103bdda001ebf4')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr --mandir=/usr/share/man --without-rpmbuild
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make prefix=$pkgdir/usr mandir=$pkgdir/usr/share/man install
-  # move bash completion in right place
-  install -d -m 755 $pkgdir/usr/share/bash-completion
-  mv $pkgdir/etc/bash_completion.d 
$pkgdir/usr/share/bash-completion/completions
-}
-
-# vim:set ts=2 sw=2 et:

Copied: quilt/repos/community-any/PKGBUILD (from rev 110939, 
quilt/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-10 09:26:16 UTC (rev 110940)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Peter Richard Lewis ple...@aur.archlinux.org
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.org
+
+pkgname=quilt
+pkgver=0.63
+pkgrel=1
+pkgdesc='Manage a series of patches by keeping track of the changes each patch 
makes'
+arch=('any')
+url='http://savannah.nongnu.org/projects/quilt'
+license=('GPL2')
+depends=(
+  'bash'
+  'bzip2'
+  'diffstat'
+  'diffutils'
+  'findutils'
+  'gawk'
+  'gettext'
+  'gzip'
+  'patch'
+  'perl'
+)
+source=(http://savannah.nongnu.org/download/quilt/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('c0ef4beb58a6fa72563b955e70624b6e')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr --mandir=/usr/share/man --without-rpmbuild
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make prefix=$pkgdir/usr mandir=$pkgdir/usr/share/man install
+  # move bash completion in right place
+  install -d -m 755 $pkgdir/usr/share/bash-completion
+  mv $pkgdir/etc/bash_completion.d 
$pkgdir/usr/share/bash-completion/completions
+}
+
+# vim:set ts=2 sw=2 et:



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

2014-05-10 Thread Sébastien Luttringer
Date: Saturday, May 10, 2014 @ 11:27:38
  Author: seblu
Revision: 110941

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

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

--+
 /PKGBUILD|   78 +
 /znc.install |   58 ++
 community-i686/PKGBUILD  |   45 ---
 community-i686/znc.install   |   29 ---
 community-x86_64/PKGBUILD|   45 ---
 community-x86_64/znc.install |   29 ---
 6 files changed, 136 insertions(+), 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-10 09:26:16 UTC (rev 110940)
+++ community-i686/PKGBUILD 2014-05-10 09:27:38 UTC (rev 110941)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-# Contributor: Kaiting Chen kaitocr...@gmail.com
-# Contributor: mickael9 mickael9 at gmail dot com
-
-pkgname=znc
-pkgver=1.2
-pkgrel=3
-pkgdesc='An IRC bouncer with modules  scripts support'
-url='http://en.znc.in/wiki/index.php/ZNC'
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('libsasl')
-makedepends=('tcl' 'python' 'perl')
-optdepends=('tcl: modtcl module'
-'python: modpython module'
-'perl: modperl module'
-'cyrus-sasl: saslauth module')
-install=$pkgname.install
-source=(http://znc.in/releases/$pkgname-$pkgver.tar.gz;
-'01-sec-correctly-handle-channel-names.patch')
-md5sums=('ef18e5402a82cc3fcab5c2ac5c2e6f3b'
- 'SKIP')
-
-prepare() {
-  patch -p1 -d $pkgname-$pkgver  01-sec-correctly-handle-channel-names.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---enable-cyrus \
---enable-python \
---enable-perl \
---enable-tcl \
---with-systemdsystemunitdir=/usr/lib/systemd/system
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: znc/repos/community-i686/PKGBUILD (from rev 110940, znc/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-10 09:27:38 UTC (rev 110941)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+# Contributor: Kaiting Chen kaitocr...@gmail.com
+# Contributor: mickael9 mickael9 at gmail dot com
+
+pkgname=znc
+pkgver=1.4
+pkgrel=1
+pkgdesc='An IRC bouncer with modules  scripts support'
+url='http://en.znc.in/wiki/index.php/ZNC'
+license=('GPL2')
+arch=('i686' 'x86_64')
+depends=('libsasl')
+makedepends=('tcl' 'python' 'perl')
+optdepends=('tcl: modtcl module'
+'python: modpython module'
+'perl: modperl module'
+'cyrus-sasl: saslauth module')
+install=$pkgname.install
+source=(http://znc.in/releases/$pkgname-$pkgver.tar.gz;)
+md5sums=('630cb74db34d2d5451ba30b47869f6bb')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--enable-cyrus \
+--enable-python \
+--enable-perl \
+--enable-tcl \
+--with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/znc.install
===
--- community-i686/znc.install  2014-05-10 09:26:16 UTC (rev 110940)
+++ community-i686/znc.install  2014-05-10 09:27:38 UTC (rev 110941)
@@ -1,29 +0,0 @@
-#/bin/sh
-
-# arg 1:  the new package version
-post_install() {
-  getent group znc /dev/null || groupadd -g 136 znc
-  getent passwd znc /dev/null || useradd -r -d /var/lib/znc -u 136 -g 136 znc
-  [ -d /var/lib/znc ] || install -dm 750 -o znc -g znc /var/lib/znc
-  echo == Use 'znc --makeconf' as user znc to generate your first config
-  true
-}
-
-# arg 1:  the new package version
-# arg 2:  the old package version
-post_upgrade() {
-  if [ `vercmp $2 1.0-4` -lt 0 ]; then
-[ -d /var/lib/znc ] || install -dm 750 -o znc -g znc /var/lib/znc
-usermod -d /var/lib/znc znc 2/dev/null  echo '== znc home directory 
has moved to /var/lib/znc'
-  fi
-  true
-}
-
-# arg 1:  the old package version
-post_remove() {
-  userdel -f znc /dev/null 21
-  groupdel znc /dev/null 21
-  true
-}
-
-# vim:set ts=2 sw=2 ft=sh et:

Copied: znc/repos/community-i686/znc.install (from rev 110940, 
znc/trunk/znc.install)

[arch-commits] Commit in gcc-multilib/trunk (2 files)

2014-05-10 Thread Laurent Carlier
Date: Saturday, May 10, 2014 @ 11:33:56
  Author: lcarlier
Revision: 110942

upgpkg: gcc-multilib 4.9.0-2

gcc-4.9.0-2

Added:
  gcc-multilib/trunk/gcc-4.9-tree-ssa-threadedge.patch
Modified:
  gcc-multilib/trunk/PKGBUILD

---+
 PKGBUILD  |   24 +++---
 gcc-4.9-tree-ssa-threadedge.patch |   38 
 2 files changed, 54 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 09:27:38 UTC (rev 110941)
+++ PKGBUILD2014-05-10 09:33:56 UTC (rev 110942)
@@ -8,8 +8,8 @@
 pkgname=('gcc-multilib' 'gcc-libs-multilib' 'lib32-gcc-libs' 
'gcc-fortran-multilib' 'gcc-objc-multilib' 'gcc-ada-multilib' 'gcc-go-multilib')
 pkgver=4.9.0
 _pkgver=4.9
-pkgrel=1
-#_snapshot=4.9.0-RC-20140411
+pkgrel=2
+_snapshot=4.9-20140507
 pkgdesc=The GNU Compiler Collection for multilib
 arch=('x86_64')
 license=('GPL' 'LGPL' 'FDL' 'custom')
@@ -18,11 +18,13 @@
  'lib32-glibc=2.19')
 checkdepends=('dejagnu' 'inetutils')
 options=('!emptydirs')
-source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
-
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
-gcc-4.8-filename-output.patch)
-md5sums=('9709b49ae0e904cbb0a6a1b62853b556'
- '40cb437805e2f7a006aa0d0c3098ab0f')
+source=(#ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
+
ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
+gcc-4.8-filename-output.patch
+   gcc-4.9-tree-ssa-threadedge.patch)
+md5sums=('47dc2b91d2876daff53c20c30164c38f'
+ '40cb437805e2f7a006aa0d0c3098ab0f'
+ '311ece7f5446d550e84e28692d2fb823')
 
 
 if [ -n ${_snapshot} ]; then
@@ -50,6 +52,9 @@
   # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57653
   patch -p0 -i ${srcdir}/gcc-4.8-filename-output.patch
 
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60902
+  patch -p1 -i ${srcdir}/gcc-4.9-tree-ssa-threadedge.patch
+
   mkdir ${srcdir}/gcc-build
 }
 
@@ -228,7 +233,10 @@
   make -C $CHOST/32/libsanitizer/asan DESTDIR=${pkgdir} 
install-nodist_toolexeclibHEADERS
 
   make -C libiberty DESTDIR=${pkgdir} install
+  # install PIC version of libiberty
+  install -m644 ${srcdir}/gcc-build/libiberty/pic/libiberty.a ${pkgdir}/usr/lib
 
+
   make -C gcc DESTDIR=${pkgdir} install-man install-info
   rm ${pkgdir}/usr/share/man/man1/{gccgo,gfortran}.1
   rm ${pkgdir}/usr/share/info/{gccgo,gfortran,gnat-style,gnat_rm,gnat_ugn}.info
@@ -236,7 +244,7 @@
   make -C libcpp DESTDIR=${pkgdir} install
   make -C gcc DESTDIR=${pkgdir} install-po
 
-  # many packages expect this symlinks
+  # many packages expect this symlink
   ln -s gcc ${pkgdir}/usr/bin/cc
 
   # POSIX conformance launcher scripts for c89 and c99

Added: gcc-4.9-tree-ssa-threadedge.patch
===
--- gcc-4.9-tree-ssa-threadedge.patch   (rev 0)
+++ gcc-4.9-tree-ssa-threadedge.patch   2014-05-10 09:33:56 UTC (rev 110942)
@@ -0,0 +1,38 @@
+--- trunk/gcc/tree-ssa-threadedge.c2014/04/23 17:53:56 209715
 trunk/gcc/tree-ssa-threadedge.c2014/04/23 18:04:46 209716
+@@ -387,7 +387,34 @@
+(gimple_code (stmt) != GIMPLE_CALL
+   || gimple_call_lhs (stmt) == NULL_TREE
+   || TREE_CODE (gimple_call_lhs (stmt)) != SSA_NAME))
+-  continue;
++  {
++/* STMT might still have DEFS and we need to invalidate any known
++   equivalences for them.
++
++   Consider if STMT is a GIMPLE_ASM with one or more outputs that
++   feeds a conditional inside a loop.  We might derive an equivalence
++   due to the conditional.  */
++tree op;
++ssa_op_iter iter;
++
++if (backedge_seen)
++  FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_DEF)
++{
++  /* This call only invalidates equivalences created by
++ PHI nodes.  This is by design to keep the cost of
++ of invalidation reasonable.  */
++  invalidate_equivalences (op, stack, src_map, dst_map);
++
++  /* However, conditionals can imply values for real
++ operands as well.  And those won't be recorded in the
++ maps.  In fact, those equivalences may be recorded totally
++ outside the threading code.  We can just create a new
++ temporary NULL equivalence here.  */
++  record_temporary_equivalence (op, NULL_TREE, stack);
++}
++
++continue;
++  }
+ 
+   /* The result of __builtin_object_size depends on all the arguments
+of a phi node. Temporarily using only one edge produces invalid



[arch-commits] Commit in gcc-multilib/repos/multilib-x86_64 (17 files)

2014-05-10 Thread Laurent Carlier
Date: Saturday, May 10, 2014 @ 11:34:11
  Author: lcarlier
Revision: 110943

archrelease: copy trunk to multilib-x86_64

Added:
  gcc-multilib/repos/multilib-x86_64/PKGBUILD
(from rev 110942, gcc-multilib/trunk/PKGBUILD)
  gcc-multilib/repos/multilib-x86_64/gcc-4.8-filename-output.patch
(from rev 110942, gcc-multilib/trunk/gcc-4.8-filename-output.patch)
  gcc-multilib/repos/multilib-x86_64/gcc-4.8-lambda-ICE.patch
(from rev 110942, gcc-multilib/trunk/gcc-4.8-lambda-ICE.patch)
  gcc-multilib/repos/multilib-x86_64/gcc-4.9-tree-ssa-threadedge.patch
(from rev 110942, gcc-multilib/trunk/gcc-4.9-tree-ssa-threadedge.patch)
  gcc-multilib/repos/multilib-x86_64/gcc-ada.install
(from rev 110942, gcc-multilib/trunk/gcc-ada.install)
  gcc-multilib/repos/multilib-x86_64/gcc-fortran.install
(from rev 110942, gcc-multilib/trunk/gcc-fortran.install)
  gcc-multilib/repos/multilib-x86_64/gcc-go.install
(from rev 110942, gcc-multilib/trunk/gcc-go.install)
  gcc-multilib/repos/multilib-x86_64/gcc-libs.install
(from rev 110942, gcc-multilib/trunk/gcc-libs.install)
  gcc-multilib/repos/multilib-x86_64/gcc.install
(from rev 110942, gcc-multilib/trunk/gcc.install)
Deleted:
  gcc-multilib/repos/multilib-x86_64/PKGBUILD
  gcc-multilib/repos/multilib-x86_64/gcc-4.8-filename-output.patch
  gcc-multilib/repos/multilib-x86_64/gcc-4.8-lambda-ICE.patch
  gcc-multilib/repos/multilib-x86_64/gcc-ada.install
  gcc-multilib/repos/multilib-x86_64/gcc-fortran.install
  gcc-multilib/repos/multilib-x86_64/gcc-go.install
  gcc-multilib/repos/multilib-x86_64/gcc-libs.install
  gcc-multilib/repos/multilib-x86_64/gcc.install

---+
 PKGBUILD  |  758 ++--
 gcc-4.8-filename-output.patch |   34 -
 gcc-4.8-lambda-ICE.patch  |   70 +--
 gcc-4.9-tree-ssa-threadedge.patch |   38 +
 gcc-ada.install   |   40 -
 gcc-fortran.install   |   32 -
 gcc-go.install|   40 -
 gcc-libs.install  |   32 -
 gcc.install   |   40 -
 9 files changed, 565 insertions(+), 519 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-10 09:33:56 UTC (rev 110942)
+++ PKGBUILD2014-05-10 09:34:11 UTC (rev 110943)
@@ -1,375 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Allan McRae al...@archlinux.org
-
-# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
-# NOTE: libtool requires rebuilt with each new gcc version
-
-pkgname=('gcc-multilib' 'gcc-libs-multilib' 'lib32-gcc-libs' 
'gcc-fortran-multilib' 'gcc-objc-multilib' 'gcc-ada-multilib' 'gcc-go-multilib')
-pkgver=4.9.0
-_pkgver=4.9
-pkgrel=1
-#_snapshot=4.9.0-RC-20140411
-pkgdesc=The GNU Compiler Collection for multilib
-arch=('x86_64')
-license=('GPL' 'LGPL' 'FDL' 'custom')
-url=http://gcc.gnu.org;
-makedepends=('binutils=2.24' 'libmpc' 'cloog' 'gcc-ada-multilib' 'doxygen'
- 'lib32-glibc=2.19')
-checkdepends=('dejagnu' 'inetutils')
-options=('!emptydirs')
-source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
-
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
-gcc-4.8-filename-output.patch)
-md5sums=('9709b49ae0e904cbb0a6a1b62853b556'
- '40cb437805e2f7a006aa0d0c3098ab0f')
-
-
-if [ -n ${_snapshot} ]; then
-  _basedir=gcc-${_snapshot}
-else
-  _basedir=gcc-${pkgver}
-fi
-
-_libdir=usr/lib/gcc/$CHOST/$pkgver
-
-prepare() {
-  cd ${srcdir}/${_basedir}
-
-  # Do not run fixincludes
-  sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
-
-  # Arch Linux installs x86_64 libraries /lib
-  [[ $CARCH == x86_64 ]]  sed -i '/m64=/s/lib64/lib/' 
gcc/config/i386/t-linux64
-
-  echo ${pkgver}  gcc/BASE-VER
-
-  # hack! - some configure tests for header files using $CPP $CPPFLAGS
-  sed -i /ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/ {libiberty,gcc}/configure
-
-  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57653
-  patch -p0 -i ${srcdir}/gcc-4.8-filename-output.patch
-
-  mkdir ${srcdir}/gcc-build
-}
-
-build() {
-  cd ${srcdir}/gcc-build
-
-  # using -pipe causes spurious test-suite failures
-  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
-  CFLAGS=${CFLAGS/-pipe/}
-  CXXFLAGS=${CXXFLAGS/-pipe/}
-
-  ${srcdir}/${_basedir}/configure --prefix=/usr \
-  --libdir=/usr/lib --libexecdir=/usr/lib \
-  --mandir=/usr/share/man --infodir=/usr/share/info \
-  --with-bugurl=https://bugs.archlinux.org/ \
-  --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ \
-  --enable-shared --enable-threads=posix \
-  --with-system-zlib --enable-__cxa_atexit \
-  --disable-libunwind-exceptions --enable-clocale=gnu \
-  --disable-libstdcxx-pch --disable-libssp \
-  --enable-gnu-unique-object --enable-linker-build-id \
-  --enable-cloog-backend=isl 

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

2014-05-10 Thread Daniel Micay
Date: Saturday, May 10, 2014 @ 11:36:13
  Author: thestinger
Revision: 110944

upgpkg: linux-grsec 3.14.3.201405092337-1

Modified:
  linux-grsec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 09:34:11 UTC (rev 110943)
+++ PKGBUILD2014-05-10 09:36:13 UTC (rev 110944)
@@ -8,7 +8,7 @@
 _srcname=linux-3.14
 _pkgver=3.14.3
 _grsecver=3.0
-_timestamp=201405071928
+_timestamp=201405092337
 _grsec_patch=grsecurity-$_grsecver-$_pkgver-$_timestamp.patch
 pkgver=$_pkgver.$_timestamp
 pkgrel=1
@@ -42,7 +42,7 @@
 )
 sha256sums=('61558aa490855f42b6340d1a1596be47454909629327c49a5e4e10268065dffa'
 'a26a25739c50d639174698ae498530205b55e5a2b11f8c33ab92a8581bc83fbd'
-'ca5bd99e3ee12836e2442c096fa2af7fdf9f75f750a471a0c0e981b08abdd330'
+'ba5cb23efd895c1e23b7c207b4e712d59e3d0694e1a80100fb372c70af96f85f'
 'SKIP'
 '0e6a04892aa95405a146b00da583d324dd1513edcd5164edec74132b05b8c791'
 '0303b94b397339e545370750dd6e0f6bfc1d5ef45801d9acf5ef7510753b01c9'



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

2014-05-10 Thread Daniel Micay
Date: Saturday, May 10, 2014 @ 11:40:56
  Author: thestinger
Revision: 110945

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

Added:
  
linux-grsec/repos/community-i686/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 110944, 
linux-grsec/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux-grsec/repos/community-i686/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 110944, 
linux-grsec/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  linux-grsec/repos/community-i686/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 110944, 
linux-grsec/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  
linux-grsec/repos/community-i686/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
(from rev 110944, 
linux-grsec/trunk/0004-fs-Don-t-return-0-from-get_anon_bdev.patch)
  
linux-grsec/repos/community-i686/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
(from rev 110944, 
linux-grsec/trunk/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch)
  linux-grsec/repos/community-i686/0006-genksyms-fix-typeof-handling.patch
(from rev 110944, linux-grsec/trunk/0006-genksyms-fix-typeof-handling.patch)
  
linux-grsec/repos/community-i686/0010-iwlwifi-mvm-delay-enabling-smart-FIFO-until-after-be.patch
(from rev 110944, 
linux-grsec/trunk/0010-iwlwifi-mvm-delay-enabling-smart-FIFO-until-after-be.patch)
  linux-grsec/repos/community-i686/0011-kernfs-fix-removed-error-check.patch
(from rev 110944, 
linux-grsec/trunk/0011-kernfs-fix-removed-error-check.patch)
  linux-grsec/repos/community-i686/0012-fix-saa7134.patch
(from rev 110944, linux-grsec/trunk/0012-fix-saa7134.patch)
  
linux-grsec/repos/community-i686/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
(from rev 110944, 
linux-grsec/trunk/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch)
  linux-grsec/repos/community-i686/0014-fix-rtl8192se.patch
(from rev 110944, linux-grsec/trunk/0014-fix-rtl8192se.patch)
  linux-grsec/repos/community-i686/0015-fix-xsdt-validation.patch
(from rev 110944, linux-grsec/trunk/0015-fix-xsdt-validation.patch)
  linux-grsec/repos/community-i686/PKGBUILD
(from rev 110944, linux-grsec/trunk/PKGBUILD)
  linux-grsec/repos/community-i686/change-default-console-loglevel.patch
(from rev 110944, linux-grsec/trunk/change-default-console-loglevel.patch)
  linux-grsec/repos/community-i686/config
(from rev 110944, linux-grsec/trunk/config)
  linux-grsec/repos/community-i686/config.x86_64
(from rev 110944, linux-grsec/trunk/config.x86_64)
  linux-grsec/repos/community-i686/linux-grsec.install
(from rev 110944, linux-grsec/trunk/linux-grsec.install)
  linux-grsec/repos/community-i686/linux.preset
(from rev 110944, linux-grsec/trunk/linux.preset)
  linux-grsec/repos/community-i686/sysctl.conf
(from rev 110944, linux-grsec/trunk/sysctl.conf)
  
linux-grsec/repos/community-x86_64/0001-Bluetooth-allocate-static-minor-for-vhci.patch
(from rev 110944, 
linux-grsec/trunk/0001-Bluetooth-allocate-static-minor-for-vhci.patch)
  
linux-grsec/repos/community-x86_64/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch
(from rev 110944, 
linux-grsec/trunk/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch)
  
linux-grsec/repos/community-x86_64/0003-module-remove-MODULE_GENERIC_TABLE.patch
(from rev 110944, 
linux-grsec/trunk/0003-module-remove-MODULE_GENERIC_TABLE.patch)
  
linux-grsec/repos/community-x86_64/0004-fs-Don-t-return-0-from-get_anon_bdev.patch
(from rev 110944, 
linux-grsec/trunk/0004-fs-Don-t-return-0-from-get_anon_bdev.patch)
  
linux-grsec/repos/community-x86_64/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch
(from rev 110944, 
linux-grsec/trunk/0005-Revert-Bluetooth-Enable-autosuspend-for-Intel-Blueto.patch)
  linux-grsec/repos/community-x86_64/0006-genksyms-fix-typeof-handling.patch
(from rev 110944, linux-grsec/trunk/0006-genksyms-fix-typeof-handling.patch)
  
linux-grsec/repos/community-x86_64/0010-iwlwifi-mvm-delay-enabling-smart-FIFO-until-after-be.patch
(from rev 110944, 
linux-grsec/trunk/0010-iwlwifi-mvm-delay-enabling-smart-FIFO-until-after-be.patch)
  linux-grsec/repos/community-x86_64/0011-kernfs-fix-removed-error-check.patch
(from rev 110944, 
linux-grsec/trunk/0011-kernfs-fix-removed-error-check.patch)
  linux-grsec/repos/community-x86_64/0012-fix-saa7134.patch
(from rev 110944, linux-grsec/trunk/0012-fix-saa7134.patch)
  
linux-grsec/repos/community-x86_64/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
(from rev 110944, 
linux-grsec/trunk/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch)
  linux-grsec/repos/community-x86_64/0014-fix-rtl8192se.patch
(from rev 110944, linux-grsec/trunk/0014-fix-rtl8192se.patch)
  linux-grsec/repos/community-x86_64/0015-fix-xsdt-validation.patch
(from rev 110944, 

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

2014-05-10 Thread Laurent Carlier
Date: Saturday, May 10, 2014 @ 11:44:33
  Author: lcarlier
Revision: 110946

upgpkg: lib32-mesa 10.1.3-1

upstream update 10.1.3

Modified:
  lib32-mesa/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 09:40:56 UTC (rev 110945)
+++ PKGBUILD2014-05-10 09:44:33 UTC (rev 110946)
@@ -4,7 +4,7 @@
 
 pkgbase=lib32-mesa
 pkgname=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri' 'lib32-mesa' 
'lib32-mesa-libgl')
-pkgver=10.1.2
+pkgver=10.1.3
 pkgrel=1
 arch=('x86_64')
 makedepends=('python2' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 
'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto'
@@ -14,7 +14,7 @@
 license=('custom')
 options=('!libtool')
 source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2)
-md5sums=('28b60d15ac9f364da1e0155911eaf44e')
+md5sums=('ba6dbe2b9cab0b4de840c996b9b6a3ad')
 
 build() {
   export CC=gcc -m32



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

2014-05-10 Thread Laurent Carlier
Date: Saturday, May 10, 2014 @ 11:44:42
  Author: lcarlier
Revision: 110947

archrelease: copy trunk to multilib-x86_64

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

--+
 PKGBUILD |  306 ++---
 1 file changed, 153 insertions(+), 153 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-10 09:44:33 UTC (rev 110946)
+++ PKGBUILD2014-05-10 09:44:42 UTC (rev 110947)
@@ -1,153 +0,0 @@
-# $Id$
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: Andreas Radke andy...@archlinux.org
-
-pkgbase=lib32-mesa
-pkgname=('lib32-ati-dri' 'lib32-intel-dri' 'lib32-nouveau-dri' 'lib32-mesa' 
'lib32-mesa-libgl')
-pkgver=10.1.2
-pkgrel=1
-arch=('x86_64')
-makedepends=('python2' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11' 'glproto' 
'lib32-libdrm' 'dri2proto' 'dri3proto' 'presentproto'
- 'lib32-libxshmfence' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'gcc-multilib' 'lib32-elfutils' 'lib32-llvm' 'lib32-systemd'
- 'lib32-libvdpau' 'lib32-wayland')
-url=http://mesa3d.sourceforge.net;
-license=('custom')
-options=('!libtool')
-source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2)
-md5sums=('28b60d15ac9f364da1e0155911eaf44e')
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-  export LLVM_CONFIG=/usr/bin/llvm-config32
-
-  cd ${srcdir}/?esa-*
-
-  # our automake is far too new for their build system :)
-  autoreconf -vfi
-
-  ./configure --enable-32-bit \
---libdir=/usr/lib32 \
---prefix=/usr \
---sysconfdir=/etc \
---with-dri-driverdir=/usr/lib32/xorg/modules/dri \
---with-gallium-drivers=r300,r600,radeonsi,nouveau,swrast \
---with-dri-drivers=i915,i965,r200,radeon,nouveau,swrast \
---with-llvm-shared-libs \
---enable-gallium-llvm \
---enable-egl \
---enable-gallium-egl \
---with-egl-platforms=x11,drm,wayland \
---enable-shared-glapi \
---enable-gbm \
---enable-glx-tls \
---enable-dri \
---enable-glx \
---enable-osmesa \
---enable-gles1 \
---enable-gles2 \
---enable-texture-float \
---enable-dri3 \
---enable-vdpau
-
-  make
-
-  mkdir $srcdir/fakeinstall
-  make DESTDIR=${srcdir}/fakeinstall install
-}
-
-package_lib32-ati-dri() {
-  pkgdesc=Mesa drivers for AMD/ATI Radeon (32-bit)
-  depends=('lib32-mesa-libgl' lib32-mesa=${pkgver} 'lib32-libtxc_dxtn' 
'ati-dri')
-
-  install -m755 -d ${pkgdir}/usr/lib32/vdpau/
-  mv -v ${srcdir}/fakeinstall/usr/lib32/vdpau/libvdpau_{r600,radeonsi}.* 
${pkgdir}/usr/lib32/vdpau/
-
-  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
-  mv -v 
${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/{r200,r300,r600,radeon,radeonsi}_dri.so
 ${pkgdir}/usr/lib32/xorg/modules/dri/
-
-  install -m755 -d ${pkgdir}/usr/lib32/gallium-pipe
-  mv -v 
${srcdir}/fakeinstall/usr/lib32/gallium-pipe/pipe_{r300,r600,radeonsi}* 
${pkgdir}/usr/lib32/gallium-pipe/
-
-  install -m755 -d ${pkgdir}/usr/share/licenses
-  ln -s ati-dri $pkgdir/usr/share/licenses/lib32-ati-dri
-}
-
-package_lib32-intel-dri() {
-  pkgdesc=Mesa DRI drivers for Intel (32-bit)
-  depends=('lib32-mesa-libgl' lib32-mesa=${pkgver} 'lib32-libtxc_dxtn' 
'intel-dri')
-
-  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
-  mv -v ${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/{i915,i965}_dri.so 
${pkgdir}/usr/lib32/xorg/modules/dri/
-
-  install -m755 -d ${pkgdir}/usr/share/licenses
-  ln -s intel-dri $pkgdir/usr/share/licenses/lib32-intel-dri
-}
-
-package_lib32-nouveau-dri() {
-  pkgdesc=Mesa drivers for Nouveau (32-bit)
-  depends=('lib32-mesa-libgl' lib32-mesa=${pkgver} 'lib32-libtxc_dxtn' 
'nouveau-dri')
-
-  install -m755 -d ${pkgdir}/usr/lib32/vdpau/
-  mv -v ${srcdir}/fakeinstall/usr/lib32/vdpau/libvdpau_nouveau.* 
${pkgdir}/usr/lib32/vdpau/
-
-  install -m755 -d ${pkgdir}/usr/lib32/xorg/modules/dri
-  mv -v 
${srcdir}/fakeinstall/usr/lib32/xorg/modules/dri/nouveau_{dri,vieux_dri}.so 
${pkgdir}/usr/lib32/xorg/modules/dri/
-
-  install -m755 -d ${pkgdir}/usr/lib32/gallium-pipe
-  mv -v ${srcdir}/fakeinstall/usr/lib32/gallium-pipe/pipe_nouveau* 
${pkgdir}/usr/lib32/gallium-pipe/
-
-  install -m755 -d ${pkgdir}/usr/share/licenses
-  ln -s nouveau-dri $pkgdir/usr/share/licenses/lib32-nouveau-dri
-}
-
-package_lib32-mesa() {
-  pkgdesc=an open-source implementation of the OpenGL specification (32-bit)
-  depends=('lib32-libdrm' 'lib32-libxxf86vm' 'lib32-libxdamage' 
'lib32-libxshmfence' 'lib32-systemd' 'lib32-elfutils' 'lib32-llvm-libs' 
'lib32-libvdpau' 'lib32-wayland' 'mesa')
-  optdepends=('opengl-man-pages: for the OpenGL API man pages')
-  provides=('lib32-libglapi' 'lib32-osmesa' 'lib32-libgbm' 'lib32-libgles' 
'lib32-libegl')
-  conflicts=('lib32-libglapi' 'lib32-osmesa' 'lib32-libgbm' 

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

2014-05-10 Thread Ike Devolder
Date: Saturday, May 10, 2014 @ 12:24:10
  Author: idevolder
Revision: 110949

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

Added:
  shairplay/repos/community-i686/PKGBUILD
(from rev 110948, shairplay/trunk/PKGBUILD)
  shairplay/repos/community-i686/shairplay.service
(from rev 110948, shairplay/trunk/shairplay.service)
  shairplay/repos/community-x86_64/PKGBUILD
(from rev 110948, shairplay/trunk/PKGBUILD)
  shairplay/repos/community-x86_64/shairplay.service
(from rev 110948, shairplay/trunk/shairplay.service)
Deleted:
  shairplay/repos/community-i686/PKGBUILD
  shairplay/repos/community-i686/shairplay.service
  shairplay/repos/community-x86_64/PKGBUILD
  shairplay/repos/community-x86_64/shairplay.service

+
 /PKGBUILD  |   98 +++
 /shairplay.service |   26 +
 community-i686/PKGBUILD|   51 --
 community-i686/shairplay.service   |   13 
 community-x86_64/PKGBUILD  |   51 --
 community-x86_64/shairplay.service |   13 
 6 files changed, 124 insertions(+), 128 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-10 10:23:56 UTC (rev 110948)
+++ community-i686/PKGBUILD 2014-05-10 10:24:10 UTC (rev 110949)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
-# Contributor: winlu
-
-pkgname=shairplay
-_gitname=shairplay
-pkgver=20140422
-pkgrel=1
-pkgdesc='Apple airplay and raop protocol server'
-arch=('i686' 'x86_64')
-url='https://github.com/juhovh/shairplay'
-license=('custom')
-depends=('libao')
-optdepends=('avahi: to run the server')
-makedepends=('git')
-source=($_gitname::git://github.com/juhovh/shairplay.git#commit=64d59e3087f829006d091fa0d114efb50972a2bf
-   'shairplay.service')
-sha256sums=('SKIP'
-   'f0a176539a6c5be46dc832d054be2f18c3256e5fd34c5f1416c9463bd75c82b3')
-options=(!libtool)
-provides=('libshairport')
-conflicts=('libshairport')
-
-build() {
-   cd $_gitname
-
-   # installing airport.key to /etc/shairplay/
-   sed 's/airport.key/\/etc\/shairplay\/airport.key/' -i 
$srcdir/$_gitname/src/shairplay.c
-
-   ./autogen.sh
-   ./configure --prefix=/usr/
-   make
-}
-
-
-package() {
-   cd $_gitname
-   make DESTDIR=$pkgdir install
-
-   # install systemd service file
-   install -Dm644 $srcdir/shairplay.service 
$pkgdir/usr/lib/systemd/system/shairplay.service
-
-   # install key file
-   install -Dm644 airport.key $pkgdir/etc/shairplay/airport.key
-
-   # install license file
-   install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-   # install documentation
-   install -Dm644 README.md $pkgdir/usr/share/doc/$pkgname/README.md
-}

Copied: shairplay/repos/community-i686/PKGBUILD (from rev 110948, 
shairplay/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-10 10:24:10 UTC (rev 110949)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
+# Contributor: winlu
+
+pkgname=shairplay
+_gitname=shairplay
+pkgver=20140422
+pkgrel=2
+pkgdesc='Apple airplay and raop protocol server'
+arch=('i686' 'x86_64')
+url='https://github.com/juhovh/shairplay'
+license=('custom')
+depends=('libao')
+optdepends=('avahi: to run the server')
+makedepends=('git')
+source=($_gitname::git://github.com/juhovh/shairplay.git#commit=64d59e3087f829006d091fa0d114efb50972a2bf
+   'shairplay.service')
+sha256sums=('SKIP'
+   'f0a176539a6c5be46dc832d054be2f18c3256e5fd34c5f1416c9463bd75c82b3')
+options=(!libtool)
+
+build() {
+   cd $_gitname
+
+   # installing airport.key to /etc/shairplay/
+   sed 's/airport.key/\/etc\/shairplay\/airport.key/' -i 
$srcdir/$_gitname/src/shairplay.c
+
+   ./autogen.sh
+   ./configure --prefix=/usr/
+   make
+}
+
+
+package() {
+   cd $_gitname
+   make DESTDIR=$pkgdir install
+
+   # install systemd service file
+   install -Dm644 $srcdir/shairplay.service 
$pkgdir/usr/lib/systemd/system/shairplay.service
+
+   # install key file
+   install -Dm644 airport.key $pkgdir/etc/shairplay/airport.key
+
+   # install license file
+   install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+   # install documentation
+   install -Dm644 README.md $pkgdir/usr/share/doc/$pkgname/README.md
+}

Deleted: community-i686/shairplay.service
===
--- community-i686/shairplay.service2014-05-10 10:23:56 UTC (rev 110948)
+++ community-i686/shairplay.service2014-05-10 10:24:10 UTC (rev 110949)
@@ -1,13 +0,0 @@
-[Unit]
-Description=Apple airplay and raop protocol 

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

2014-05-10 Thread Ike Devolder
Date: Saturday, May 10, 2014 @ 12:23:56
  Author: idevolder
Revision: 110948

shairplay :: fix FS#40263

Modified:
  shairplay/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 09:44:42 UTC (rev 110947)
+++ PKGBUILD2014-05-10 10:23:56 UTC (rev 110948)
@@ -5,7 +5,7 @@
 pkgname=shairplay
 _gitname=shairplay
 pkgver=20140422
-pkgrel=1
+pkgrel=2
 pkgdesc='Apple airplay and raop protocol server'
 arch=('i686' 'x86_64')
 url='https://github.com/juhovh/shairplay'
@@ -18,8 +18,6 @@
 sha256sums=('SKIP'
'f0a176539a6c5be46dc832d054be2f18c3256e5fd34c5f1416c9463bd75c82b3')
 options=(!libtool)
-provides=('libshairport')
-conflicts=('libshairport')
 
 build() {
cd $_gitname



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

2014-05-10 Thread Ike Devolder
Date: Saturday, May 10, 2014 @ 12:25:06
  Author: idevolder
Revision: 110950

par2cmdline :: 0.6.7

Modified:
  par2cmdline/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 10:24:10 UTC (rev 110949)
+++ PKGBUILD2014-05-10 10:25:06 UTC (rev 110950)
@@ -3,7 +3,7 @@
 # Maintainer: Sébastien Luttringer se...@aur.archlinux.org
 
 pkgname=par2cmdline
-pkgver=0.6.6
+pkgver=0.6.7
 pkgrel=1
 pkgdesc='A PAR 2.0 compatible file verification and repair tool'
 url='https://github.com/BlackIkeEagle/par2cmdline'
@@ -10,7 +10,7 @@
 license=('GPL2')
 arch=('i686' 'x86_64')
 
source=($pkgname-$pkgver.tar.gz::https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('48b4a9ac20e0f1a7df7228f452d93dabeedd14b25166eb67f8cf272768f7f516')
+sha256sums=('dd177953a2a72742bc10a08250b949aeff48c907263ea6722f4246c9d2089411')
 
 build() {
cd $pkgname-$pkgver



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

2014-05-10 Thread Ike Devolder
Date: Saturday, May 10, 2014 @ 12:25:18
  Author: idevolder
Revision: 110951

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-10 10:25:06 UTC (rev 110950)
+++ community-i686/PKGBUILD 2014-05-10 10:25:18 UTC (rev 110951)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Maintainer: Sébastien Luttringer se...@aur.archlinux.org
-
-pkgname=par2cmdline
-pkgver=0.6.6
-pkgrel=1
-pkgdesc='A PAR 2.0 compatible file verification and repair tool'
-url='https://github.com/BlackIkeEagle/par2cmdline'
-license=('GPL2')
-arch=('i686' 'x86_64')
-source=($pkgname-$pkgver.tar.gz::https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('48b4a9ac20e0f1a7df7228f452d93dabeedd14b25166eb67f8cf272768f7f516')
-
-build() {
-   cd $pkgname-$pkgver
-   aclocal
-   automake --add-missing
-   autoconf
-   ./configure --prefix=/usr
-  make
-}
-
-check() {
-   cd $pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: par2cmdline/repos/community-i686/PKGBUILD (from rev 110950, 
par2cmdline/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-10 10:25:18 UTC (rev 110951)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Maintainer: Sébastien Luttringer se...@aur.archlinux.org
+
+pkgname=par2cmdline
+pkgver=0.6.7
+pkgrel=1
+pkgdesc='A PAR 2.0 compatible file verification and repair tool'
+url='https://github.com/BlackIkeEagle/par2cmdline'
+license=('GPL2')
+arch=('i686' 'x86_64')
+source=($pkgname-$pkgver.tar.gz::https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('dd177953a2a72742bc10a08250b949aeff48c907263ea6722f4246c9d2089411')
+
+build() {
+   cd $pkgname-$pkgver
+   aclocal
+   automake --add-missing
+   autoconf
+   ./configure --prefix=/usr
+  make
+}
+
+check() {
+   cd $pkgname-$pkgver
+   make check
+}
+
+package() {
+   cd $pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-10 10:25:06 UTC (rev 110950)
+++ community-x86_64/PKGBUILD   2014-05-10 10:25:18 UTC (rev 110951)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
-# Maintainer: Sébastien Luttringer se...@aur.archlinux.org
-
-pkgname=par2cmdline
-pkgver=0.6.6
-pkgrel=1
-pkgdesc='A PAR 2.0 compatible file verification and repair tool'
-url='https://github.com/BlackIkeEagle/par2cmdline'
-license=('GPL2')
-arch=('i686' 'x86_64')
-source=($pkgname-$pkgver.tar.gz::https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz;)
-sha256sums=('48b4a9ac20e0f1a7df7228f452d93dabeedd14b25166eb67f8cf272768f7f516')
-
-build() {
-   cd $pkgname-$pkgver
-   aclocal
-   automake --add-missing
-   autoconf
-   ./configure --prefix=/usr
-  make
-}
-
-check() {
-   cd $pkgname-$pkgver
-   make check
-}
-
-package() {
-   cd $pkgname-$pkgver
-   make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: par2cmdline/repos/community-x86_64/PKGBUILD (from rev 110950, 
par2cmdline/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-05-10 10:25:18 UTC (rev 110951)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: BlackEagle  ike DOT devolder AT gmail DOT com 
+# Maintainer: Sébastien Luttringer se...@aur.archlinux.org
+
+pkgname=par2cmdline
+pkgver=0.6.7
+pkgrel=1
+pkgdesc='A PAR 2.0 compatible file verification and repair tool'
+url='https://github.com/BlackIkeEagle/par2cmdline'
+license=('GPL2')
+arch=('i686' 'x86_64')
+source=($pkgname-$pkgver.tar.gz::https://github.com/BlackIkeEagle/$pkgname/archive/v$pkgver.tar.gz;)
+sha256sums=('dd177953a2a72742bc10a08250b949aeff48c907263ea6722f4246c9d2089411')
+
+build() {
+   cd $pkgname-$pkgver
+   aclocal
+   automake 

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

2014-05-10 Thread Dave Reisner
Date: Saturday, May 10, 2014 @ 15:25:27
  Author: dreisner
Revision: 212190

upgpkg: shadow 4.2.1-1

- back out temp hacks for 4.2 release

Modified:
  shadow/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 06:22:34 UTC (rev 212189)
+++ PKGBUILD2014-05-10 13:25:27 UTC (rev 212190)
@@ -3,7 +3,7 @@
 # Maintainer: Aaron Griffin aa...@archlinux.org
 
 pkgname=shadow
-pkgver=4.2
+pkgver=4.2.1
 pkgrel=1
 pkgdesc=Password and account management tool suite with support for shadow 
files and PAM
 arch=('i686' 'x86_64')
@@ -11,7 +11,6 @@
 license=('BSD')
 groups=('base')
 depends=('bash' 'pam' 'acl')
-makedepends=('libxslt' 'gnome-doc-utils' 'docbook-xsl')
 backup=(etc/login.defs
 etc/pam.d/{chage,passwd,shadow,useradd,usermod,userdel}
 etc/pam.d/{chpasswd,newusers,groupadd,groupdel,groupmod}
@@ -32,7 +31,7 @@
 xstrdup.patch
 shadow-strncpy-usage.patch
 lastlog.tmpfiles)
-sha1sums=('77feddc823a42623462d3c3a9a49f2f6cf213ca9'
+sha1sums=('0917cbadd4ce0c7c36670e5ecd37bbed92e6d82d'
   'SKIP'
   '33a6cf1e44a1410e5c9726c89e5de68b78f5f922'
   '4ad0e059406a305c8640ed30d93c2a1f62c2f4ad'
@@ -56,13 +55,7 @@
   patch -Np1 $srcdir/shadow-strncpy-usage.patch
 
   # supress etc/pam.d/*, we provide our own
-  sed -i '/^SUBDIRS/s/pam\.d//' etc/Makefile.am
-
-  # XXX: The tarball for 4.2 wasn't created with make dist, so this means we
-  # have to do this ourselves. It also means the manpages aren't pregenerated,
-  # so we have to pass --enable-man, and add additional makedepends.
-  # 
http://lists.alioth.debian.org/pipermail/pkg-shadow-devel/2014-May/010237.html
-  autoreconf -fi
+  sed -i '/^SUBDIRS/s/pam\.d//' etc/Makefile.in
 }
 
 build() {
@@ -73,10 +66,9 @@
 --prefix=/usr \
 --bindir=/usr/bin \
 --sbindir=/usr/bin \
---libdir=/lib \
+--libdir=/usr/lib \
 --mandir=/usr/share/man \
 --sysconfdir=/etc \
---enable-man \
 --with-libpam \
 --with-group-name-max-length=32 \
 --without-selinux



[arch-commits] Commit in shadow/repos (60 files)

2014-05-10 Thread Dave Reisner
Date: Saturday, May 10, 2014 @ 15:27:02
  Author: dreisner
Revision: 212191

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

Added:
  shadow/repos/testing-i686/LICENSE
(from rev 212190, shadow/trunk/LICENSE)
  shadow/repos/testing-i686/PKGBUILD
(from rev 212190, shadow/trunk/PKGBUILD)
  shadow/repos/testing-i686/chgpasswd
(from rev 212190, shadow/trunk/chgpasswd)
  shadow/repos/testing-i686/chpasswd
(from rev 212190, shadow/trunk/chpasswd)
  shadow/repos/testing-i686/defaults.pam
(from rev 212190, shadow/trunk/defaults.pam)
  shadow/repos/testing-i686/lastlog.tmpfiles
(from rev 212190, shadow/trunk/lastlog.tmpfiles)
  shadow/repos/testing-i686/login.defs
(from rev 212190, shadow/trunk/login.defs)
  shadow/repos/testing-i686/newusers
(from rev 212190, shadow/trunk/newusers)
  shadow/repos/testing-i686/passwd
(from rev 212190, shadow/trunk/passwd)
  shadow/repos/testing-i686/shadow-strncpy-usage.patch
(from rev 212190, shadow/trunk/shadow-strncpy-usage.patch)
  shadow/repos/testing-i686/shadow.install
(from rev 212190, shadow/trunk/shadow.install)
  shadow/repos/testing-i686/shadow.service
(from rev 212190, shadow/trunk/shadow.service)
  shadow/repos/testing-i686/shadow.timer
(from rev 212190, shadow/trunk/shadow.timer)
  shadow/repos/testing-i686/useradd.defaults
(from rev 212190, shadow/trunk/useradd.defaults)
  shadow/repos/testing-i686/xstrdup.patch
(from rev 212190, shadow/trunk/xstrdup.patch)
  shadow/repos/testing-x86_64/LICENSE
(from rev 212190, shadow/trunk/LICENSE)
  shadow/repos/testing-x86_64/PKGBUILD
(from rev 212190, shadow/trunk/PKGBUILD)
  shadow/repos/testing-x86_64/chgpasswd
(from rev 212190, shadow/trunk/chgpasswd)
  shadow/repos/testing-x86_64/chpasswd
(from rev 212190, shadow/trunk/chpasswd)
  shadow/repos/testing-x86_64/defaults.pam
(from rev 212190, shadow/trunk/defaults.pam)
  shadow/repos/testing-x86_64/lastlog.tmpfiles
(from rev 212190, shadow/trunk/lastlog.tmpfiles)
  shadow/repos/testing-x86_64/login.defs
(from rev 212190, shadow/trunk/login.defs)
  shadow/repos/testing-x86_64/newusers
(from rev 212190, shadow/trunk/newusers)
  shadow/repos/testing-x86_64/passwd
(from rev 212190, shadow/trunk/passwd)
  shadow/repos/testing-x86_64/shadow-strncpy-usage.patch
(from rev 212190, shadow/trunk/shadow-strncpy-usage.patch)
  shadow/repos/testing-x86_64/shadow.install
(from rev 212190, shadow/trunk/shadow.install)
  shadow/repos/testing-x86_64/shadow.service
(from rev 212190, shadow/trunk/shadow.service)
  shadow/repos/testing-x86_64/shadow.timer
(from rev 212190, shadow/trunk/shadow.timer)
  shadow/repos/testing-x86_64/useradd.defaults
(from rev 212190, shadow/trunk/useradd.defaults)
  shadow/repos/testing-x86_64/xstrdup.patch
(from rev 212190, shadow/trunk/xstrdup.patch)
Deleted:
  shadow/repos/testing-i686/LICENSE
  shadow/repos/testing-i686/PKGBUILD
  shadow/repos/testing-i686/chgpasswd
  shadow/repos/testing-i686/chpasswd
  shadow/repos/testing-i686/defaults.pam
  shadow/repos/testing-i686/lastlog.tmpfiles
  shadow/repos/testing-i686/login.defs
  shadow/repos/testing-i686/newusers
  shadow/repos/testing-i686/passwd
  shadow/repos/testing-i686/shadow-strncpy-usage.patch
  shadow/repos/testing-i686/shadow.install
  shadow/repos/testing-i686/shadow.service
  shadow/repos/testing-i686/shadow.timer
  shadow/repos/testing-i686/useradd.defaults
  shadow/repos/testing-i686/xstrdup.patch
  shadow/repos/testing-x86_64/LICENSE
  shadow/repos/testing-x86_64/PKGBUILD
  shadow/repos/testing-x86_64/chgpasswd
  shadow/repos/testing-x86_64/chpasswd
  shadow/repos/testing-x86_64/defaults.pam
  shadow/repos/testing-x86_64/lastlog.tmpfiles
  shadow/repos/testing-x86_64/login.defs
  shadow/repos/testing-x86_64/newusers
  shadow/repos/testing-x86_64/passwd
  shadow/repos/testing-x86_64/shadow-strncpy-usage.patch
  shadow/repos/testing-x86_64/shadow.install
  shadow/repos/testing-x86_64/shadow.service
  shadow/repos/testing-x86_64/shadow.timer
  shadow/repos/testing-x86_64/useradd.defaults
  shadow/repos/testing-x86_64/xstrdup.patch

---+
 /LICENSE  |   62 
 /PKGBUILD |  290 
 /chgpasswd|8 
 /chpasswd |   12 
 /defaults.pam |   12 
 /lastlog.tmpfiles |2 
 /login.defs   |  406 
 /newusers |   12 
 /passwd   |8 
 /shadow-strncpy-usage.patch   |   50 +++
 /shadow.install   |   18 +
 /shadow.service   |   20 +
 /shadow.timer |   14 
 /useradd.defaults |   18 +
 /xstrdup.patch

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

2014-05-10 Thread Ike Devolder
Date: Saturday, May 10, 2014 @ 16:08:05
  Author: idevolder
Revision: 110952

doublecmd :: 0.5.9-2

rebuild fixes FS#40230

Modified:
  doublecmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 10:25:18 UTC (rev 110951)
+++ PKGBUILD2014-05-10 14:08:05 UTC (rev 110952)
@@ -7,7 +7,7 @@
 pkgname=('doublecmd-gtk2' 'doublecmd-qt')
 pkgver=0.5.9
 _helpver=0.5.5
-pkgrel=1
+pkgrel=2
 url=http://doublecmd.sourceforge.net/;
 arch=('i686' 'x86_64')
 license=('GPL')



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

2014-05-10 Thread Ike Devolder
Date: Saturday, May 10, 2014 @ 16:08:22
  Author: idevolder
Revision: 110953

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

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

+
 /PKGBUILD  |  152 +++
 /doublecmd.install |   68 +++
 community-i686/PKGBUILD|   76 -
 community-i686/doublecmd.install   |   34 ---
 community-x86_64/PKGBUILD  |   76 -
 community-x86_64/doublecmd.install |   34 ---
 6 files changed, 220 insertions(+), 220 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-10 14:08:05 UTC (rev 110952)
+++ community-i686/PKGBUILD 2014-05-10 14:08:22 UTC (rev 110953)
@@ -1,76 +0,0 @@
-# vim:set ft=sh:
-# $Id$
-# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
-# Contributor: (sirocco AT ngs.ru)
-
-pkgbase=doublecmd
-pkgname=('doublecmd-gtk2' 'doublecmd-qt')
-pkgver=0.5.9
-_helpver=0.5.5
-pkgrel=1
-url=http://doublecmd.sourceforge.net/;
-arch=('i686' 'x86_64')
-license=('GPL')
-install=$pkgbase.install
-provides=($pkgbase)
-makedepends=('lazarus' 'qt4pas' 'gtk2')
-optdepends=(
-   'lua51: scripting'
-   'p7zip: support for 7zip archives'
-   'libunrar: support for rar archives'
-)
-source=(
-   
http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-$pkgver-src.tar.gz;
-   
http://downloads.sourceforge.net/project/$pkgbase/Double%20Commander%20Source/$pkgbase-help-$_helpver-src.tar.gz;
-   http://www.herecura.be/files/lazarus-20140321-2.tar.gz;
-)
-
-build() {
-   cp -a $pkgbase-$pkgver $pkgbase-gtk
-   cp -a $pkgbase-$pkgver $pkgbase-qt
-
-   msg2 'build gtk'
-   gtkdir=$srcdir/$pkgbase-gtk
-   cd $gtkdir
-   bsdtar -zxf $srcdir/lazarus-20140321-2.tar.gz
-   sed -e s/\\(export\\ lazbuild=\\).*/\\1\\$(which lazbuild) 
--primary-config-path=${gtkdir//\//\\\/}\/lazarus\/lazarus-$CARCH\/ -i 
build.sh
-   sed -e s/%%SRCDIR%%/${gtkdir//\//\\\/}/g -i lazarus/packagefiles.xml
-   ./build.sh beta gtk2
-
-   msg2 'build qt'
-   qtdir=$srcdir/$pkgbase-qt
-   cd $qtdir
-   bsdtar -zxf $srcdir/lazarus-20140321-2.tar.gz
-   sed -e s/\\(export\\ lazbuild=\\).*/\\1\\$(which lazbuild) 
--primary-config-path=${qtdir//\//\\\/}\/lazarus\/lazarus-$CARCH\/ -i build.sh
-   sed -e s/%%SRCDIR%%/${qtdir//\//\\\/}/g -i lazarus/packagefiles.xml
-   ./build.sh beta qt
-
-}
-
-package_doublecmd-gtk2() {
-   pkgdesc=twin-panel (commander-style) file manager (GTK)
-   depends=('gtk2')
-   conflicts=('doublecmd-qt')
-   cd $srcdir/$pkgbase-gtk
-   ./install/linux/install.sh --install-prefix=$pkgdir
-
-   # install doc
-   cd $srcdir/$pkgbase-help-$_helpver
-   cp -a * $pkgdir/usr/share/$pkgbase/doc/
-}
-
-package_doublecmd-qt() {
-   pkgdesc=twin-panel (commander-style) file manager (QT)
-   depends=('qt4pas')
-   conflicts=('doublecmd-gtk2')
-   cd $srcdir/$pkgbase-qt
-   ./install/linux/install.sh --install-prefix=$pkgdir
-
-   # install doc
-   cd $srcdir/$pkgbase-help-$_helpver
-   cp -a * $pkgdir/usr/share/$pkgbase/doc/
-}
-
-sha256sums=('d5b3c93b3029f4b0a45b7c9912d34f753445e031c93bc0268d4cb4c313d06ba4'
-'5c5d00187df811df0734bf751a581bce7e1bdd4cf4639b2a1101f1da8743daaf'
-   
'16560ad7403ffbee1800384768828e1fad924d03068c6248b68a78c393fc4e20')

Copied: doublecmd/repos/community-i686/PKGBUILD (from rev 110952, 
doublecmd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-10 14:08:22 UTC (rev 110953)
@@ -0,0 +1,76 @@
+# vim:set ft=sh:
+# $Id$
+# Maintainer: BlackIkeEagle ike DOT devolder AT gmail DOT com
+# Contributor: (sirocco AT ngs.ru)
+
+pkgbase=doublecmd
+pkgname=('doublecmd-gtk2' 'doublecmd-qt')
+pkgver=0.5.9
+_helpver=0.5.5
+pkgrel=2
+url=http://doublecmd.sourceforge.net/;
+arch=('i686' 'x86_64')
+license=('GPL')
+install=$pkgbase.install
+provides=($pkgbase)
+makedepends=('lazarus' 'qt4pas' 'gtk2')
+optdepends=(
+   'lua51: scripting'
+   'p7zip: support for 7zip archives'
+   'libunrar: support for rar 

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

2014-05-10 Thread Giovanni Scafora
Date: Saturday, May 10, 2014 @ 17:28:48
  Author: giovanni
Revision: 110954

upgpkg: converseen 0.7.1-1

upstream release

Modified:
  converseen/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 14:08:22 UTC (rev 110953)
+++ PKGBUILD2014-05-10 15:28:48 UTC (rev 110954)
@@ -3,7 +3,7 @@
 # Contributor: archtux antonio.arias9 at gmail.com
 
 pkgname=converseen
-pkgver=0.7.0
+pkgver=0.7.1
 pkgrel=1
 pkgdesc=The batch image converter and resizer
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 makedepends=('cmake')
 install=converseen.install
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('20e30c334fa358d75df11b5737f59485')
+md5sums=('bf2f1c71d8faf7e7c913680e24284858')
 
 build() {
   cd ${srcdir}



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

2014-05-10 Thread Giovanni Scafora
Date: Saturday, May 10, 2014 @ 17:28:56
  Author: giovanni
Revision: 110955

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

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

-+
 /PKGBUILD   |   64 ++
 /converseen.install |   22 +++
 community-i686/PKGBUILD |   32 -
 community-i686/converseen.install   |   11 -
 community-x86_64/PKGBUILD   |   32 -
 community-x86_64/converseen.install |   11 -
 6 files changed, 86 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-10 15:28:48 UTC (rev 110954)
+++ community-i686/PKGBUILD 2014-05-10 15:28:56 UTC (rev 110955)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: archtux antonio.arias9 at gmail.com
-
-pkgname=converseen
-pkgver=0.7.0
-pkgrel=1
-pkgdesc=The batch image converter and resizer
-arch=('i686' 'x86_64')
-url=http://converseen.sourceforge.net/;
-license=('GPL3')
-depends=('imagemagick' 'qt4' 'libwmf' 'openexr' 'libwebp')
-makedepends=('cmake')
-install=converseen.install
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('20e30c334fa358d75df11b5737f59485')
-
-build() {
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
-  -DCMAKE_BUILD_TYPE=Release \
-  -DCMAKE_INSTALL_PREFIX=/usr 
-  make
-}
-
-package() {
-  cd ${srcdir}/build
-
-  make DESTDIR=${pkgdir} install
-}

Copied: converseen/repos/community-i686/PKGBUILD (from rev 110954, 
converseen/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-10 15:28:56 UTC (rev 110955)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: archtux antonio.arias9 at gmail.com
+
+pkgname=converseen
+pkgver=0.7.1
+pkgrel=1
+pkgdesc=The batch image converter and resizer
+arch=('i686' 'x86_64')
+url=http://converseen.sourceforge.net/;
+license=('GPL3')
+depends=('imagemagick' 'qt4' 'libwmf' 'openexr' 'libwebp')
+makedepends=('cmake')
+install=converseen.install
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('bf2f1c71d8faf7e7c913680e24284858')
+
+build() {
+  cd ${srcdir}
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+  -DCMAKE_BUILD_TYPE=Release \
+  -DCMAKE_INSTALL_PREFIX=/usr 
+  make
+}
+
+package() {
+  cd ${srcdir}/build
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/converseen.install
===
--- community-i686/converseen.install   2014-05-10 15:28:48 UTC (rev 110954)
+++ community-i686/converseen.install   2014-05-10 15:28:56 UTC (rev 110955)
@@ -1,11 +0,0 @@
-post_install() {
- xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}

Copied: converseen/repos/community-i686/converseen.install (from rev 110954, 
converseen/trunk/converseen.install)
===
--- community-i686/converseen.install   (rev 0)
+++ community-i686/converseen.install   2014-05-10 15:28:56 UTC (rev 110955)
@@ -0,0 +1,11 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-05-10 15:28:48 UTC (rev 110954)
+++ community-x86_64/PKGBUILD   2014-05-10 15:28:56 UTC (rev 110955)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: archtux antonio.arias9 at gmail.com
-
-pkgname=converseen
-pkgver=0.7.0
-pkgrel=1
-pkgdesc=The batch image converter and resizer
-arch=('i686' 'x86_64')
-url=http://converseen.sourceforge.net/;
-license=('GPL3')
-depends=('imagemagick' 'qt4' 'libwmf' 'openexr' 'libwebp')
-makedepends=('cmake')

[arch-commits] Commit in unrar/trunk (3 files)

2014-05-10 Thread Giovanni Scafora
Date: Saturday, May 10, 2014 @ 17:37:13
  Author: giovanni
Revision: 212192

upgpkg: unrar 1:5.1.5-1

upstream release

Added:
  unrar/trunk/unrar-5.1.5-soname.patch
Modified:
  unrar/trunk/PKGBUILD
Deleted:
  unrar/trunk/unrar-5.1.2-soname.patch

--+
 PKGBUILD |8 
 unrar-5.1.2-soname.patch |   11 ---
 unrar-5.1.5-soname.patch |   11 +++
 3 files changed, 15 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 13:27:02 UTC (rev 212191)
+++ PKGBUILD2014-05-10 15:37:13 UTC (rev 212192)
@@ -4,7 +4,7 @@
 
 pkgbase=unrar
 pkgname=('unrar' 'libunrar')
-pkgver=5.1.2
+pkgver=5.1.5
 pkgrel=1
 epoch=1
 arch=('i686' 'x86_64')
@@ -12,13 +12,13 @@
 license=('custom')
 makedepends=('gcc-libs')
 source=(http://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz;
-'unrar-5.1.2-soname.patch')
-md5sums=('636556a89bbc655b2714fb430b1604b8'
+'unrar-5.1.5-soname.patch')
+md5sums=('809db67b74942af7cf1d40edcec92976'
  'cd9a5291db0379d73148872cf6e6d3ce')
 
 prepare() {
   cd ${srcdir}/${pkgbase}
-  patch -Np1 -i ${srcdir}/unrar-5.1.2-soname.patch
+  patch -Np1 -i ${srcdir}/unrar-5.1.5-soname.patch
 }
 
 build() {

Deleted: unrar-5.1.2-soname.patch
===
--- unrar-5.1.2-soname.patch2014-05-10 13:27:02 UTC (rev 212191)
+++ unrar-5.1.2-soname.patch2014-05-10 15:37:13 UTC (rev 212192)
@@ -1,11 +0,0 @@
 a/makefile 2013-04-29 16:27:05.0 +0200
-+++ b/makefile 2013-10-01 22:07:29.611485989 +0200
-@@ -133,7 +133,7 @@
- lib:  CXXFLAGS+=$(LIBFLAGS)
- lib:  clean $(OBJECTS) $(LIB_OBJ)
-   @rm -f libunrar.so
--  $(LINK) -shared -o libunrar.so $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
-+  $(LINK) -shared -Wl,-soname,libunrar.so.$(libversion) -o 
libunrar.so.$(libversion) $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
- 
- install-unrar:
-   install -D unrar $(DESTDIR)/bin/unrar

Added: unrar-5.1.5-soname.patch
===
--- unrar-5.1.5-soname.patch(rev 0)
+++ unrar-5.1.5-soname.patch2014-05-10 15:37:13 UTC (rev 212192)
@@ -0,0 +1,11 @@
+--- a/makefile 2013-04-29 16:27:05.0 +0200
 b/makefile 2013-10-01 22:07:29.611485989 +0200
+@@ -133,7 +133,7 @@
+ lib:  CXXFLAGS+=$(LIBFLAGS)
+ lib:  clean $(OBJECTS) $(LIB_OBJ)
+   @rm -f libunrar.so
+-  $(LINK) -shared -o libunrar.so $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
++  $(LINK) -shared -Wl,-soname,libunrar.so.$(libversion) -o 
libunrar.so.$(libversion) $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
+ 
+ install-unrar:
+   install -D unrar $(DESTDIR)/bin/unrar



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

2014-05-10 Thread Giovanni Scafora
Date: Saturday, May 10, 2014 @ 17:37:21
  Author: giovanni
Revision: 212193

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

Added:
  unrar/repos/extra-i686/PKGBUILD
(from rev 212192, unrar/trunk/PKGBUILD)
  unrar/repos/extra-i686/unrar-5.1.5-soname.patch
(from rev 212192, unrar/trunk/unrar-5.1.5-soname.patch)
  unrar/repos/extra-x86_64/PKGBUILD
(from rev 212192, unrar/trunk/PKGBUILD)
  unrar/repos/extra-x86_64/unrar-5.1.5-soname.patch
(from rev 212192, unrar/trunk/unrar-5.1.5-soname.patch)
Deleted:
  unrar/repos/extra-i686/PKGBUILD
  unrar/repos/extra-i686/unrar-5.1.2-soname.patch
  unrar/repos/extra-x86_64/PKGBUILD
  unrar/repos/extra-x86_64/unrar-5.1.2-soname.patch

---+
 /PKGBUILD |  100 
 extra-i686/PKGBUILD   |   50 
 extra-i686/unrar-5.1.2-soname.patch   |   11 ---
 extra-i686/unrar-5.1.5-soname.patch   |   11 +++
 extra-x86_64/PKGBUILD |   50 
 extra-x86_64/unrar-5.1.2-soname.patch |   11 ---
 extra-x86_64/unrar-5.1.5-soname.patch |   11 +++
 7 files changed, 122 insertions(+), 122 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-10 15:37:13 UTC (rev 212192)
+++ extra-i686/PKGBUILD 2014-05-10 15:37:21 UTC (rev 212193)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: dorphell dorph...@gmx.net
-
-pkgbase=unrar
-pkgname=('unrar' 'libunrar')
-pkgver=5.1.2
-pkgrel=1
-epoch=1
-arch=('i686' 'x86_64')
-url=http://www.rarlab.com/rar_add.htm;
-license=('custom')
-makedepends=('gcc-libs')
-source=(http://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz;
-'unrar-5.1.2-soname.patch')
-md5sums=('636556a89bbc655b2714fb430b1604b8'
- 'cd9a5291db0379d73148872cf6e6d3ce')
-
-prepare() {
-  cd ${srcdir}/${pkgbase}
-  patch -Np1 -i ${srcdir}/unrar-5.1.2-soname.patch
-}
-
-build() {
-  cd ${srcdir}/${pkgbase}
-  cp -a ${srcdir}/unrar ${srcdir}/libunrar
-  make -C ${srcdir}/libunrar lib libversion=${pkgver} CXXFLAGS=-fPIC 
${CXXFLAGS}
-  make CXXFLAGS=-fPIC ${CXXFLAGS} STRIP=true
-}
-
-package_unrar() {
-  pkgdesc=The RAR uncompression program
-  depends=('gcc-libs')
-  cd ${srcdir}/${pkgbase}
-  install -Dm755 unrar ${pkgdir}/usr/bin/unrar
-  # install license
-  install -Dm644 license.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_libunrar() {
-  pkgdesc=Library and header file for applications that use libunrar
-  depends=('gcc-libs')
-  cd ${srcdir}/libunrar
-  install -Dm755 libunrar.so.${pkgver} 
${pkgdir}/usr/lib/libunrar.so.${pkgver}
-  install -Dm644 dll.hpp ${pkgdir}/usr/include/unrar/dll.hpp
-  ln -s libunrar.so.${pkgver} ${pkgdir}/usr/lib/libunrar.so.5
-  ln -s libunrar.so.${pkgver} ${pkgdir}/usr/lib/libunrar.so
-  # install license
-  install -Dm644 license.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}

Copied: unrar/repos/extra-i686/PKGBUILD (from rev 212192, unrar/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-10 15:37:21 UTC (rev 212193)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: dorphell dorph...@gmx.net
+
+pkgbase=unrar
+pkgname=('unrar' 'libunrar')
+pkgver=5.1.5
+pkgrel=1
+epoch=1
+arch=('i686' 'x86_64')
+url=http://www.rarlab.com/rar_add.htm;
+license=('custom')
+makedepends=('gcc-libs')
+source=(http://www.rarlab.com/rar/unrarsrc-${pkgver}.tar.gz;
+'unrar-5.1.5-soname.patch')
+md5sums=('809db67b74942af7cf1d40edcec92976'
+ 'cd9a5291db0379d73148872cf6e6d3ce')
+
+prepare() {
+  cd ${srcdir}/${pkgbase}
+  patch -Np1 -i ${srcdir}/unrar-5.1.5-soname.patch
+}
+
+build() {
+  cd ${srcdir}/${pkgbase}
+  cp -a ${srcdir}/unrar ${srcdir}/libunrar
+  make -C ${srcdir}/libunrar lib libversion=${pkgver} CXXFLAGS=-fPIC 
${CXXFLAGS}
+  make CXXFLAGS=-fPIC ${CXXFLAGS} STRIP=true
+}
+
+package_unrar() {
+  pkgdesc=The RAR uncompression program
+  depends=('gcc-libs')
+  cd ${srcdir}/${pkgbase}
+  install -Dm755 unrar ${pkgdir}/usr/bin/unrar
+  # install license
+  install -Dm644 license.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_libunrar() {
+  pkgdesc=Library and header file for applications that use libunrar
+  depends=('gcc-libs')
+  cd ${srcdir}/libunrar
+  install -Dm755 libunrar.so.${pkgver} 
${pkgdir}/usr/lib/libunrar.so.${pkgver}
+  install -Dm644 dll.hpp ${pkgdir}/usr/include/unrar/dll.hpp
+  ln -s libunrar.so.${pkgver} ${pkgdir}/usr/lib/libunrar.so.5
+  ln -s libunrar.so.${pkgver} ${pkgdir}/usr/lib/libunrar.so
+  # install license
+  install -Dm644 license.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-i686/unrar-5.1.2-soname.patch
===
--- 

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

2014-05-10 Thread Kyle Keen
Date: Saturday, May 10, 2014 @ 18:51:36
  Author: kkeen
Revision: 110956

upgpkg: rlwrap 0.40-1

Modified:
  rlwrap/trunk/ChangeLog
  rlwrap/trunk/PKGBUILD

---+
 ChangeLog |2 ++
 PKGBUILD  |   16 +++-
 2 files changed, 9 insertions(+), 9 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2014-05-10 15:28:56 UTC (rev 110955)
+++ ChangeLog   2014-05-10 16:51:36 UTC (rev 110956)
@@ -1,3 +1,5 @@
+2014-05-10 Kyle Keen keen...@gmail.com
+* Updated to 0.40
 2008-03-21 partition heni...@gmail.com
 * Updated to 0.30
 2007-06-28 tardo ta...@nagi-fanboi.net

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 15:28:56 UTC (rev 110955)
+++ PKGBUILD2014-05-10 16:51:36 UTC (rev 110956)
@@ -6,25 +6,23 @@
 # Contributor: Douglas Thrift doug...@douglasthrift.net
 
 pkgname=rlwrap
-pkgver=0.37
-pkgrel=2
-pkgdesc=A 'readline wrapper'
+pkgver=0.40
+pkgrel=1
+pkgdesc=Adds readline-style editing and history to programs.
 arch=('i686' 'x86_64')
 url=http://utopia.knoware.nl/~hlub/uck/rlwrap/;
 license=('GPL')
 depends=('perl')
 source=(http://utopia.knoware.nl/~hlub/uck/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('04cd6e2c257eb5a86b297f2ebf91dbbf')
+md5sums=('2488052579d05aeef68e746ad35c7a55')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
-
+  cd $srcdir/$pkgname-$pkgver
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
 }



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

2014-05-10 Thread Kyle Keen
Date: Saturday, May 10, 2014 @ 18:52:31
  Author: kkeen
Revision: 110957

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

Added:
  rlwrap/repos/community-i686/ChangeLog
(from rev 110956, rlwrap/trunk/ChangeLog)
  rlwrap/repos/community-i686/PKGBUILD
(from rev 110956, rlwrap/trunk/PKGBUILD)
  rlwrap/repos/community-x86_64/ChangeLog
(from rev 110956, rlwrap/trunk/ChangeLog)
  rlwrap/repos/community-x86_64/PKGBUILD
(from rev 110956, rlwrap/trunk/PKGBUILD)
Deleted:
  rlwrap/repos/community-i686/ChangeLog
  rlwrap/repos/community-i686/PKGBUILD
  rlwrap/repos/community-x86_64/ChangeLog
  rlwrap/repos/community-x86_64/PKGBUILD

+
 /ChangeLog |   14 ++
 /PKGBUILD  |   56 +++
 community-i686/ChangeLog   |5 ---
 community-i686/PKGBUILD|   30 ---
 community-x86_64/ChangeLog |5 ---
 community-x86_64/PKGBUILD  |   30 ---
 6 files changed, 70 insertions(+), 70 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2014-05-10 16:51:36 UTC (rev 110956)
+++ community-i686/ChangeLog2014-05-10 16:52:31 UTC (rev 110957)
@@ -1,5 +0,0 @@
-2008-03-21 partition heni...@gmail.com
-* Updated to 0.30
-2007-06-28 tardo ta...@nagi-fanboi.net
-* Built for x86_64
-

Copied: rlwrap/repos/community-i686/ChangeLog (from rev 110956, 
rlwrap/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2014-05-10 16:52:31 UTC (rev 110957)
@@ -0,0 +1,7 @@
+2014-05-10 Kyle Keen keen...@gmail.com
+* Updated to 0.40
+2008-03-21 partition heni...@gmail.com
+* Updated to 0.30
+2007-06-28 tardo ta...@nagi-fanboi.net
+* Built for x86_64
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-05-10 16:51:36 UTC (rev 110956)
+++ community-i686/PKGBUILD 2014-05-10 16:52:31 UTC (rev 110957)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-# Contributor: wizzomafizzo wizzomafi...@gmail.com
-# Contributor: Mateusz Herych heni...@gmail.com
-# Contributor: Benjamin Andresen benny AT klapmuetz DOT org
-# Contributor: Douglas Thrift doug...@douglasthrift.net
-
-pkgname=rlwrap
-pkgver=0.37
-pkgrel=2
-pkgdesc=A 'readline wrapper'
-arch=('i686' 'x86_64')
-url=http://utopia.knoware.nl/~hlub/uck/rlwrap/;
-license=('GPL')
-depends=('perl')
-source=(http://utopia.knoware.nl/~hlub/uck/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('04cd6e2c257eb5a86b297f2ebf91dbbf')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-}

Copied: rlwrap/repos/community-i686/PKGBUILD (from rev 110956, 
rlwrap/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-05-10 16:52:31 UTC (rev 110957)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: wizzomafizzo wizzomafi...@gmail.com
+# Contributor: Mateusz Herych heni...@gmail.com
+# Contributor: Benjamin Andresen benny AT klapmuetz DOT org
+# Contributor: Douglas Thrift doug...@douglasthrift.net
+
+pkgname=rlwrap
+pkgver=0.40
+pkgrel=1
+pkgdesc=Adds readline-style editing and history to programs.
+arch=('i686' 'x86_64')
+url=http://utopia.knoware.nl/~hlub/uck/rlwrap/;
+license=('GPL')
+depends=('perl')
+source=(http://utopia.knoware.nl/~hlub/uck/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('2488052579d05aeef68e746ad35c7a55')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/ChangeLog
===
--- community-x86_64/ChangeLog  2014-05-10 16:51:36 UTC (rev 110956)
+++ community-x86_64/ChangeLog  2014-05-10 16:52:31 UTC (rev 110957)
@@ -1,5 +0,0 @@
-2008-03-21 partition heni...@gmail.com
-* Updated to 0.30
-2007-06-28 tardo ta...@nagi-fanboi.net
-* Built for x86_64
-

Copied: rlwrap/repos/community-x86_64/ChangeLog (from rev 110956, 
rlwrap/trunk/ChangeLog)
===
--- community-x86_64/ChangeLog  (rev 0)
+++ community-x86_64/ChangeLog  2014-05-10 16:52:31 UTC (rev 110957)
@@ -0,0 +1,7 @@
+2014-05-10 Kyle Keen keen...@gmail.com
+* Updated to 0.40
+2008-03-21 partition heni...@gmail.com
+* Updated to 0.30
+2007-06-28 tardo ta...@nagi-fanboi.net
+* Built for x86_64
+

Deleted: community-x86_64/PKGBUILD
===
--- 

[arch-commits] Commit in (4 files)

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:11:11
  Author: andrea
Revision: 212194

Let's try to package KDE Frameworks 5

Added:
  extra-cmake-modules/
  extra-cmake-modules/repos/
  extra-cmake-modules/trunk/
  extra-cmake-modules/trunk/PKGBUILD

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

Added: extra-cmake-modules/trunk/PKGBUILD
===
--- extra-cmake-modules/trunk/PKGBUILD  (rev 0)
+++ extra-cmake-modules/trunk/PKGBUILD  2014-05-10 18:11:11 UTC (rev 212194)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=extra-cmake-modules
+pkgver=0.0.13
+_pkgver=4.99.0
+pkgrel=1
+pkgdesc='Extra CMake modules'
+arch=('any')
+url='https://projects.kde.org/projects/kdesupport/extra-cmake-modules'
+license=('LGPL')
+depends=('cmake')
+source=(http://download.kde.org/unstable/frameworks/${_pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('c76fe1124e588fd518b2a2423aa64753')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in extra-cmake-modules/repos (2 files)

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:11:28
  Author: andrea
Revision: 212195

archrelease: copy trunk to kde-unstable-any

Added:
  extra-cmake-modules/repos/kde-unstable-any/
  extra-cmake-modules/repos/kde-unstable-any/PKGBUILD
(from rev 212194, extra-cmake-modules/trunk/PKGBUILD)

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

Copied: extra-cmake-modules/repos/kde-unstable-any/PKGBUILD (from rev 212194, 
extra-cmake-modules/trunk/PKGBUILD)
===
--- kde-unstable-any/PKGBUILD   (rev 0)
+++ kde-unstable-any/PKGBUILD   2014-05-10 18:11:28 UTC (rev 212195)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=extra-cmake-modules
+pkgver=0.0.13
+_pkgver=4.99.0
+pkgrel=1
+pkgdesc='Extra CMake modules'
+arch=('any')
+url='https://projects.kde.org/projects/kdesupport/extra-cmake-modules'
+license=('LGPL')
+depends=('cmake')
+source=(http://download.kde.org/unstable/frameworks/${_pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('c76fe1124e588fd518b2a2423aa64753')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:15:02
  Author: andrea
Revision: 212196

Add property

Modified:
  extra-cmake-modules/trunk/PKGBUILD(properties)

Index: extra-cmake-modules/trunk/PKGBUILD
===
--- extra-cmake-modules/trunk/PKGBUILD  2014-05-10 18:11:28 UTC (rev 212195)
+++ extra-cmake-modules/trunk/PKGBUILD  2014-05-10 18:15:02 UTC (rev 212196)

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


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

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:16:57
  Author: andrea
Revision: 212197

Let's try to package KDE Frameworks 5

Added:
  kapidox/
  kapidox/repos/
  kapidox/trunk/
  kapidox/trunk/PKGBUILD

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

Added: kapidox/trunk/PKGBUILD
===
--- kapidox/trunk/PKGBUILD  (rev 0)
+++ kapidox/trunk/PKGBUILD  2014-05-10 18:16:57 UTC (rev 212197)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kapidox
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Frameworks API Documentation Tools'
+arch=('any')
+url='https://projects.kde.org/projects/frameworks/kapidox'
+license=('LGPL')
+depends=('python')
+makedepends=('extra-cmake-modules' 'qt5-base')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('43c0c3aad31fbb10a3039e2876eeffbf')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


[arch-commits] Commit in kapidox/repos (kde-unstable-any kde-unstable-any/PKGBUILD)

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:17:12
  Author: andrea
Revision: 212198

archrelease: copy trunk to kde-unstable-any

Added:
  kapidox/repos/kde-unstable-any/
  kapidox/repos/kde-unstable-any/PKGBUILD
(from rev 212197, kapidox/trunk/PKGBUILD)

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

Copied: kapidox/repos/kde-unstable-any/PKGBUILD (from rev 212197, 
kapidox/trunk/PKGBUILD)
===
--- kde-unstable-any/PKGBUILD   (rev 0)
+++ kde-unstable-any/PKGBUILD   2014-05-10 18:17:12 UTC (rev 212198)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kapidox
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Frameworks API Documentation Tools'
+arch=('any')
+url='https://projects.kde.org/projects/frameworks/kapidox'
+license=('LGPL')
+depends=('python')
+makedepends=('extra-cmake-modules' 'qt5-base')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('43c0c3aad31fbb10a3039e2876eeffbf')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in extra-cmake-modules/repos/kde-unstable-any (2 files)

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:29:29
  Author: andrea
Revision: 212200

archrelease: copy trunk to kde-unstable-any

Added:
  extra-cmake-modules/repos/kde-unstable-any/PKGBUILD
(from rev 212199, extra-cmake-modules/trunk/PKGBUILD)
Deleted:
  extra-cmake-modules/repos/kde-unstable-any/PKGBUILD

--+
 PKGBUILD |   64 +++--
 1 file changed, 33 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-10 18:29:22 UTC (rev 212199)
+++ PKGBUILD2014-05-10 18:29:29 UTC (rev 212200)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=extra-cmake-modules
-pkgver=0.0.13
-_pkgver=4.99.0
-pkgrel=1
-pkgdesc='Extra CMake modules'
-arch=('any')
-url='https://projects.kde.org/projects/kdesupport/extra-cmake-modules'
-license=('LGPL')
-depends=('cmake')
-source=(http://download.kde.org/unstable/frameworks/${_pkgver}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('c76fe1124e588fd518b2a2423aa64753')
-
-prepare() {
-  mkdir -p build
-}
-
-build() {
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: extra-cmake-modules/repos/kde-unstable-any/PKGBUILD (from rev 212199, 
extra-cmake-modules/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-10 18:29:29 UTC (rev 212200)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=extra-cmake-modules
+pkgver=0.0.13
+_pkgver=4.99.0
+pkgrel=2
+pkgdesc='Extra CMake modules'
+arch=('any')
+url='https://projects.kde.org/projects/kdesupport/extra-cmake-modules'
+license=('LGPL')
+depends=('cmake')
+makedepends=('python-sphinx') # qt5-tools for QtHelp pages
+source=(http://download.kde.org/unstable/frameworks/${_pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('c76fe1124e588fd518b2a2423aa64753')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_HTML_DOCS=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:29:22
  Author: andrea
Revision: 212199

upgpkg: extra-cmake-modules 0.0.13-2

Build man pages

Modified:
  extra-cmake-modules/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 18:17:12 UTC (rev 212198)
+++ PKGBUILD2014-05-10 18:29:22 UTC (rev 212199)
@@ -4,12 +4,13 @@
 pkgname=extra-cmake-modules
 pkgver=0.0.13
 _pkgver=4.99.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Extra CMake modules'
 arch=('any')
 url='https://projects.kde.org/projects/kdesupport/extra-cmake-modules'
 license=('LGPL')
 depends=('cmake')
+makedepends=('python-sphinx') # qt5-tools for QtHelp pages
 
source=(http://download.kde.org/unstable/frameworks/${_pkgver}/${pkgname}-${pkgver}.tar.xz;)
 md5sums=('c76fe1124e588fd518b2a2423aa64753')
 
@@ -21,7 +22,8 @@
   cd build
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_HTML_DOCS=OFF
   make
 }
 



[arch-commits] Commit in (4 files)

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:33:02
  Author: andrea
Revision: 212201

Let's try to package KDE Frameworks 5

Added:
  karchive/
  karchive/repos/
  karchive/trunk/
  karchive/trunk/PKGBUILD

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

Added: karchive/trunk/PKGBUILD
===
--- karchive/trunk/PKGBUILD (rev 0)
+++ karchive/trunk/PKGBUILD 2014-05-10 18:33:02 UTC (rev 212201)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=karchive
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Qt 5 addon providing access to numerous types of archives'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/karchive'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a3796efb4fe17cba0a115f3d50c48573')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:33:15
  Author: andrea
Revision: 212202

archrelease: copy trunk to kde-unstable-i686, kde-unstable-x86_64

Added:
  karchive/repos/kde-unstable-i686/
  karchive/repos/kde-unstable-i686/PKGBUILD
(from rev 212201, karchive/trunk/PKGBUILD)
  karchive/repos/kde-unstable-x86_64/
  karchive/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212201, karchive/trunk/PKGBUILD)

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

Copied: karchive/repos/kde-unstable-i686/PKGBUILD (from rev 212201, 
karchive/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-10 18:33:15 UTC (rev 212202)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=karchive
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Qt 5 addon providing access to numerous types of archives'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/karchive'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a3796efb4fe17cba0a115f3d50c48573')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: karchive/repos/kde-unstable-x86_64/PKGBUILD (from rev 212201, 
karchive/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-10 18:33:15 UTC (rev 212202)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=karchive
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='Qt 5 addon providing access to numerous types of archives'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/karchive'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('a3796efb4fe17cba0a115f3d50c48573')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:42:33
  Author: andrea
Revision: 212204

archrelease: copy trunk to kde-unstable-i686, kde-unstable-x86_64

Added:
  kcoreaddons/repos/kde-unstable-i686/
  kcoreaddons/repos/kde-unstable-i686/PKGBUILD
(from rev 212203, kcoreaddons/trunk/PKGBUILD)
  kcoreaddons/repos/kde-unstable-i686/kcoreaddons.install
(from rev 212203, kcoreaddons/trunk/kcoreaddons.install)
  kcoreaddons/repos/kde-unstable-x86_64/
  kcoreaddons/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212203, kcoreaddons/trunk/PKGBUILD)
  kcoreaddons/repos/kde-unstable-x86_64/kcoreaddons.install
(from rev 212203, kcoreaddons/trunk/kcoreaddons.install)

-+
 kde-unstable-i686/PKGBUILD  |   36 ++
 kde-unstable-i686/kcoreaddons.install   |   11 +
 kde-unstable-x86_64/PKGBUILD|   36 ++
 kde-unstable-x86_64/kcoreaddons.install |   11 +
 4 files changed, 94 insertions(+)

Copied: kcoreaddons/repos/kde-unstable-i686/PKGBUILD (from rev 212203, 
kcoreaddons/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-10 18:42:33 UTC (rev 212204)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcoreaddons
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KCoreAddons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcoreaddons'
+license=('LGPL')
+depends=('qt5-base' 'shared-mime-info' 'gamin')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+install=kcoreaddons.install
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('8dbd0d10913bb72ae4e44159cc322dc0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kcoreaddons/repos/kde-unstable-i686/kcoreaddons.install (from rev 
212203, kcoreaddons/trunk/kcoreaddons.install)
===
--- kde-unstable-i686/kcoreaddons.install   (rev 0)
+++ kde-unstable-i686/kcoreaddons.install   2014-05-10 18:42:33 UTC (rev 
212204)
@@ -0,0 +1,11 @@
+post_install() {
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: kcoreaddons/repos/kde-unstable-x86_64/PKGBUILD (from rev 212203, 
kcoreaddons/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-10 18:42:33 UTC (rev 212204)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcoreaddons
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KCoreAddons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcoreaddons'
+license=('LGPL')
+depends=('qt5-base' 'shared-mime-info' 'gamin')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+install=kcoreaddons.install
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('8dbd0d10913bb72ae4e44159cc322dc0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kcoreaddons/repos/kde-unstable-x86_64/kcoreaddons.install (from rev 
212203, kcoreaddons/trunk/kcoreaddons.install)
===
--- kde-unstable-x86_64/kcoreaddons.install (rev 0)
+++ kde-unstable-x86_64/kcoreaddons.install 2014-05-10 18:42:33 UTC (rev 
212204)
@@ -0,0 +1,11 @@
+post_install() {
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



[arch-commits] Commit in (5 files)

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:42:10
  Author: andrea
Revision: 212203

Let's try to package KDE Frameworks 5

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

-+
 PKGBUILD|   36 
 kcoreaddons.install |   11 +++
 2 files changed, 47 insertions(+)

Added: kcoreaddons/trunk/PKGBUILD
===
--- kcoreaddons/trunk/PKGBUILD  (rev 0)
+++ kcoreaddons/trunk/PKGBUILD  2014-05-10 18:42:10 UTC (rev 212203)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kcoreaddons
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KCoreAddons'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kcoreaddons'
+license=('LGPL')
+depends=('qt5-base' 'shared-mime-info' 'gamin')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+install=kcoreaddons.install
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('8dbd0d10913bb72ae4e44159cc322dc0')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


Property changes on: kcoreaddons/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: kcoreaddons/trunk/kcoreaddons.install
===
--- kcoreaddons/trunk/kcoreaddons.install   (rev 0)
+++ kcoreaddons/trunk/kcoreaddons.install   2014-05-10 18:42:10 UTC (rev 
212203)
@@ -0,0 +1,11 @@
+post_install() {
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



[arch-commits] Commit in (4 files)

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:57:19
  Author: andrea
Revision: 212205

Let's try to package KDE Frameworks 5

Added:
  polkit-qt5/
  polkit-qt5/repos/
  polkit-qt5/trunk/
  polkit-qt5/trunk/PKGBUILD

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

Added: polkit-qt5/trunk/PKGBUILD
===
--- polkit-qt5/trunk/PKGBUILD   (rev 0)
+++ polkit-qt5/trunk/PKGBUILD   2014-05-10 18:57:19 UTC (rev 212205)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas nqn1976 @ gmail.com
+
+pkgname=polkit-qt5
+pkgver=0.103.0.bac771e
+pkgrel=1
+pkgdesc='Qt wrapper around polkit-1 client libraries'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/polkit-qt-1'
+license=('LGPL')
+depends=('polkit' 'qt5-base')
+makedepends=('extra-cmake-modules' 'git')
+source=('git://anongit.kde.org/polkit-qt-1#commit=bac771e69887c9253f2b0973f6310810db0061f8')
+md5sums=('SKIP')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../polkit-qt-1 \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 20:57:31
  Author: andrea
Revision: 212206

archrelease: copy trunk to kde-unstable-i686, kde-unstable-x86_64

Added:
  polkit-qt5/repos/kde-unstable-i686/
  polkit-qt5/repos/kde-unstable-i686/PKGBUILD
(from rev 212205, polkit-qt5/trunk/PKGBUILD)
  polkit-qt5/repos/kde-unstable-x86_64/
  polkit-qt5/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212205, polkit-qt5/trunk/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   33 +
 kde-unstable-x86_64/PKGBUILD |   33 +
 2 files changed, 66 insertions(+)

Copied: polkit-qt5/repos/kde-unstable-i686/PKGBUILD (from rev 212205, 
polkit-qt5/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-10 18:57:31 UTC (rev 212206)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas nqn1976 @ gmail.com
+
+pkgname=polkit-qt5
+pkgver=0.103.0.bac771e
+pkgrel=1
+pkgdesc='Qt wrapper around polkit-1 client libraries'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/polkit-qt-1'
+license=('LGPL')
+depends=('polkit' 'qt5-base')
+makedepends=('extra-cmake-modules' 'git')
+source=('git://anongit.kde.org/polkit-qt-1#commit=bac771e69887c9253f2b0973f6310810db0061f8')
+md5sums=('SKIP')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../polkit-qt-1 \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: polkit-qt5/repos/kde-unstable-x86_64/PKGBUILD (from rev 212205, 
polkit-qt5/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-10 18:57:31 UTC (rev 212206)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Antonio Rojas nqn1976 @ gmail.com
+
+pkgname=polkit-qt5
+pkgver=0.103.0.bac771e
+pkgrel=1
+pkgdesc='Qt wrapper around polkit-1 client libraries'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/polkit-qt-1'
+license=('LGPL')
+depends=('polkit' 'qt5-base')
+makedepends=('extra-cmake-modules' 'git')
+source=('git://anongit.kde.org/polkit-qt-1#commit=bac771e69887c9253f2b0973f6310810db0061f8')
+md5sums=('SKIP')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../polkit-qt-1 \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 21:03:51
  Author: andrea
Revision: 212207

Let's try to package KDE Frameworks 5

Added:
  kauth/
  kauth/repos/
  kauth/trunk/
  kauth/trunk/PKGBUILD

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

Added: kauth/trunk/PKGBUILD
===
--- kauth/trunk/PKGBUILD(rev 0)
+++ kauth/trunk/PKGBUILD2014-05-10 19:03:51 UTC (rev 212207)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kauth
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KAuth'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kauth'
+license=('LGPL')
+depends=('kcoreaddons' 'polkit-qt5')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('021779fc1ceab27b8f6f76648bf99654')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}


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


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

2014-05-10 Thread Andrea Scarpino
Date: Saturday, May 10, 2014 @ 21:04:12
  Author: andrea
Revision: 212208

archrelease: copy trunk to kde-unstable-i686, kde-unstable-x86_64

Added:
  kauth/repos/kde-unstable-i686/
  kauth/repos/kde-unstable-i686/PKGBUILD
(from rev 212207, kauth/trunk/PKGBUILD)
  kauth/repos/kde-unstable-x86_64/
  kauth/repos/kde-unstable-x86_64/PKGBUILD
(from rev 212207, kauth/trunk/PKGBUILD)

--+
 kde-unstable-i686/PKGBUILD   |   36 
 kde-unstable-x86_64/PKGBUILD |   36 
 2 files changed, 72 insertions(+)

Copied: kauth/repos/kde-unstable-i686/PKGBUILD (from rev 212207, 
kauth/trunk/PKGBUILD)
===
--- kde-unstable-i686/PKGBUILD  (rev 0)
+++ kde-unstable-i686/PKGBUILD  2014-05-10 19:04:12 UTC (rev 212208)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kauth
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KAuth'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kauth'
+license=('LGPL')
+depends=('kcoreaddons' 'polkit-qt5')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('021779fc1ceab27b8f6f76648bf99654')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: kauth/repos/kde-unstable-x86_64/PKGBUILD (from rev 212207, 
kauth/trunk/PKGBUILD)
===
--- kde-unstable-x86_64/PKGBUILD(rev 0)
+++ kde-unstable-x86_64/PKGBUILD2014-05-10 19:04:12 UTC (rev 212208)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kauth
+pkgver=4.99.0
+pkgrel=1
+pkgdesc='KAuth'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/frameworks/kauth'
+license=('LGPL')
+depends=('kcoreaddons' 'polkit-qt5')
+makedepends=('extra-cmake-modules' 'qt5-tools')
+groups=('kf5')
+source=(http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('021779fc1ceab27b8f6f76648bf99654')
+
+prepare() {
+  mkdir -p build
+}
+
+build() {
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DLIB_INSTALL_DIR=lib \
+-DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DBUILD_TESTING=OFF \
+-DSYSCONF_INSTALL_DIR=/etc
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2014-05-10 Thread Guillaume Alaux
Date: Saturday, May 10, 2014 @ 23:03:53
  Author: guillaume
Revision: 212209

Do not rm or mv files to enable makepkg '--repackage'

Modified:
  java7-openjdk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 19:04:12 UTC (rev 212208)
+++ PKGBUILD2014-05-10 21:03:53 UTC (rev 212209)
@@ -72,11 +72,17 @@
langtools-${_LANGTOOLS_CHANGESET}.tar.gz
hotspot-${_HOTSPOT_CHANGESET}.tar.gz)
 
-  _jvmdir=/usr/lib/jvm/java-7-openjdk
+[ $CARCH = x86_64 ]  _JARCH=amd64
+[ $CARCH = i686 ]_JARCH=i386
 
-  [ $CARCH = x86_64 ]  _JARCH=amd64
-  [ $CARCH = i686 ]  _JARCH=i386
-  
+_jvmdir=/usr/lib/jvm/java-7-openjdk
+_imgdir=icedtea-${_icedtea_ver}/openjdk.build/j2sdk-image
+_nonheadless=(bin/policytool
+  lib/${_JARCH}/libjsoundalsa.so
+  lib/${_JARCH}/libpulse-java.so
+  lib/${_JARCH}/libsplashscreen.so
+  lib/${_JARCH}/xawt/libmawt.so)
+
 build() {
   cd ${srcdir}/icedtea-${_icedtea_ver}
   
@@ -153,41 +159,33 @@
   etc/java-7-openjdk/tz.properties)
   install=jre7-openjdk-headless.install
 
-  cd ${srcdir}/icedtea-${_icedtea_ver}/openjdk.build/j2sdk-image/jre
+  cd ${srcdir}/${_imgdir}/jre
 
-  mv lib/fontconfig.Ubuntu.properties.src lib/fontconfig.properties
-  mv lib/fontconfig.Ubuntu.bfc lib/fontconfig.bfc
-  rm -f lib/fontconfig.*.bfc
-  rm -f lib/fontconfig.*.properties.src 
-  rm -f lib/fontconfig.properties.src
-
   install -d -m755 ${pkgdir}${_jvmdir}/jre
   cp -a bin lib ${pkgdir}${_jvmdir}/jre
 
-  # Install man pages
-  pushd ../../j2re-image/man
-  install -m755 -d ${pkgdir}/usr/share/man/{,ja/}man1/
-  install -m644 man1/*.1 ${pkgdir}/usr/share/man/man1
-  install -m644 ja_JP.UTF-8/man1/*.1 ${pkgdir}/usr/share/man/ja/man1
-  popd
+  mv 
${pkgdir}${_jvmdir}/jre/lib/fontconfig.{Ubuntu.properties.src,properties}
+  mv ${pkgdir}${_jvmdir}/jre/lib/fontconfig.{Ubuntu.bfc,bfc}
+  rm -f ${pkgdir}${_jvmdir}/jre/lib/fontconfig.*.bfc
+  rm -f ${pkgdir}${_jvmdir}/jre/lib/fontconfig.*.properties.src
+  rm -f ${pkgdir}${_jvmdir}/jre/lib/fontconfig.properties.src
 
-  # more files that belong to the desktop package
-  mkdir ${srcdir}/tmp-desktop-jre
-  for file in \
-  ${_jvmdir}/jre/bin/policytool \
-  ${_jvmdir}/jre/lib/${_JARCH}/libjsoundalsa.so \
-  ${_jvmdir}/jre/lib/${_JARCH}/libpulse-java.so \
-  ${_jvmdir}/jre/lib/${_JARCH}/libsplashscreen.so \
-  ${_jvmdir}/jre/lib/${_JARCH}/xawt/libmawt.so \
-  /usr/share/man/ja/man1/policytool.1 \
-  /usr/share/man/man1/policytool.1; do
- dirname=`dirname $file`
- install -dm755 ${srcdir}/tmp-desktop-jre/$dirname || /bin/true
- # mv file from fakeinstall to pkgdir
- mv ${pkgdir}/$file ${srcdir}/tmp-desktop-jre$file
+  # Remove 'non-headless' files
+  for f in ${_nonheadless[@]}; do
+rm ${pkgdir}${_jvmdir}/jre/${f}
   done
-  rmdir ${pkgdir}${_jvmdir}/jre/lib/${_JARCH}/xawt
 
+  # Man pages
+  pushd ${pkgdir}${_jvmdir}/jre/bin
+  install -d -m 755 ${pkgdir}/usr/share/man/{,ja/}man1/
+  for file in *; do
+install -m 644 ${srcdir}/${_imgdir}/man/man1/${file}.1 \
+  ${pkgdir}/usr/share/man/man1/${file}.1
+install -m 644 ${srcdir}/${_imgdir}/man/ja/man1/${file}.1 \
+  ${pkgdir}/usr/share/man/ja/man1/${file}.1
+  done
+  popd
+
   # Link binaries into /usr/bin
   pushd ${pkgdir}${_jvmdir}/jre/bin
   install -m755 -d ${pkgdir}/usr/bin/
@@ -261,8 +259,13 @@
   install=jre7-openjdk.install
   provides=('java-runtime=7')
   conflicts=('openjdk6')
-  
-  mv ${srcdir}/tmp-desktop-jre/* ${pkgdir}
+
+  cd ${srcdir}/${_imgdir}/jre
+
+  for f in ${_nonheadless[@]}; do
+install -D ${f} ${pkgdir}${_jvmdir}/jre/${f}
+  done
+
   # Link binaries into /usr/bin
   pushd ${pkgdir}${_jvmdir}/jre/bin
   install -m755 -d ${pkgdir}/usr/bin/
@@ -270,9 +273,18 @@
 ln -sf ${_jvmdir}/jre/bin/${file} ${pkgdir}/usr/bin
   done
   popd
-  
-  cd ${srcdir}/icedtea-${_icedtea_ver}/openjdk.build/j2sdk-image/jre
 
+  # Man pages
+  pushd ${pkgdir}${_jvmdir}/jre/bin
+  install -d -m 755 ${pkgdir}/usr/share/man/{,ja/}man1/
+  for file in *; do
+install -m 644 ${srcdir}/${_imgdir}/man/man1/${file}.1 \
+  ${pkgdir}/usr/share/man/man1/${file}.1
+install -m 644 ${srcdir}/${_imgdir}/man/ja/man1/${file}.1 \
+  ${pkgdir}/usr/share/man/ja/man1/${file}.1
+  done
+  popd
+
   # Install icons and menu entries
   for s in 16 24 32 48 ; do
 install -m755 -d ${pkgdir}/usr/share/icons/hicolor/${s}x${s}/apps/
@@ -297,7 +309,7 @@
   replaces=('openjdk6')
   backup=(etc/profile.d/jdk.sh etc/profile.d/jdk.csh)
 
-  cd ${srcdir}/icedtea-${_icedtea_ver}/openjdk.build/j2sdk-image
+  cd ${srcdir}/${_imgdir}
 
   # Main files
   install -m755 -d ${pkgdir}${_jvmdir}
@@ -350,9 +362,8 @@
 package_openjdk7-src() {
   pkgdesc=Free Java environment 

[arch-commits] Commit in sdl/trunk (PKGBUILD X11_KeyToUnicode.patch)

2014-05-10 Thread Jan Steffens
Date: Saturday, May 10, 2014 @ 23:41:06
  Author: heftig
Revision: 212210

FS#40292 missing symbol

Added:
  sdl/trunk/X11_KeyToUnicode.patch
Modified:
  sdl/trunk/PKGBUILD

+
 PKGBUILD   |9 +---
 X11_KeyToUnicode.patch |   52 +++
 2 files changed, 58 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 21:03:53 UTC (rev 212209)
+++ PKGBUILD2014-05-10 21:41:06 UTC (rev 212210)
@@ -5,7 +5,7 @@
 
 pkgname=sdl
 pkgver=1.2.15
-pkgrel=5
+pkgrel=6
 pkgdesc=A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard
 arch=('i686' 'x86_64')
 url=http://www.libsdl.org;
@@ -20,13 +20,15 @@
 sdl-1.2.14-disable-mmx.patch
 fix_joystick_misc_axes.diff
 libsdl-1.2.15-resizing.patch
-sdl_x11sym.patch)
+sdl_x11sym.patch
+X11_KeyToUnicode.patch)
 md5sums=('9d96df8417572a2afb781a7c4c811a85'
  '04d8c179f125e04bcd4c9d60e013c2d7'
  'e5c16b7611f62c7cb25f0534eff68852'
  '687586a108b597a2a6b73070c1d37e51'
  '3dd50347d8856160a9cbd7f80383a1f8'
- '148b285bccee9d21bb96db807363b962')
+ '148b285bccee9d21bb96db807363b962'
+ 'edea272dff4698470877c016d818918d')
 
 prepare() {
   cd SDL-$pkgver
@@ -35,6 +37,7 @@
   patch -Np1 -i ../fix_joystick_misc_axes.diff
   patch -Np1 -i ../libsdl-1.2.15-resizing.patch
   patch -Np0 -i ../sdl_x11sym.patch
+  patch -Np1 -i ../X11_KeyToUnicode.patch
 }
 
 build() {

Added: X11_KeyToUnicode.patch
===
--- X11_KeyToUnicode.patch  (rev 0)
+++ X11_KeyToUnicode.patch  2014-05-10 21:41:06 UTC (rev 212210)
@@ -0,0 +1,52 @@
+
+# HG changeset patch
+# User Sam Lantinga slou...@libsdl.org
+# Date 1327258041 18000
+# Node ID 900a0fae90ca65cff55a70a17b9ec39d2ddccbcf
+# Parent  5273dfd19a5e8c5736a0d417bd441f704c5355f8
+Fixed bug 1390 - X11_KeyToUnicode
+
+manuel.montezelo 2012-01-22 08:56:18 PST
+
+We had the following bug report at Debian:
+http://bugs.debian.org/376560
+
+Same one in Ubuntu:
+https://bugs.launchpad.net/ubuntu/+source/libsdl1.2/+bug/66217
+
+We've been including a patch since then (attached) to actually export the
+symbol, since 2006.  In the last release the function seems to be there, alive
+and kicking.
+
+It's affecting other people too:
+http://www.garagegames.com/community/forums/viewthread/52287
+
+diff -r 5273dfd19a5e -r 900a0fae90ca src/video/x11/SDL_x11events.c
+--- a/src/video/x11/SDL_x11events.cSat Jan 21 12:06:51 2012 -0500
 b/src/video/x11/SDL_x11events.cSun Jan 22 13:47:21 2012 -0500
+@@ -1246,8 +1246,11 @@
+  * sequences (dead accents, compose key sequences) will not work since the
+  * state has been irrevocably lost.
+  */
++extern DECLSPEC Uint16 SDLCALL X11_KeyToUnicode(SDLKey, SDLMod);
++
+ Uint16 X11_KeyToUnicode(SDLKey keysym, SDLMod modifiers)
+ {
++  static int warning = 0;
+   struct SDL_VideoDevice *this = current_video;
+   char keybuf[32];
+   int i;
+@@ -1255,6 +1258,12 @@
+   XKeyEvent xkey;
+   Uint16 unicode;
+ 
++  if ( warning ) {
++  warning = 0;
++  fprintf(stderr, WARNING: Application is using 
X11_KeyToUnicode().\n);
++  fprintf(stderr, This is not an official SDL function, please 
report this as a bug.\n);
++  }
++
+   if ( !this || !SDL_Display ) {
+   return 0;
+   }
+



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

2014-05-10 Thread Jan Steffens
Date: Saturday, May 10, 2014 @ 23:42:35
  Author: heftig
Revision: 212211

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

Added:
  sdl/repos/extra-i686/PKGBUILD
(from rev 212210, sdl/trunk/PKGBUILD)
  sdl/repos/extra-i686/X11_KeyToUnicode.patch
(from rev 212210, sdl/trunk/X11_KeyToUnicode.patch)
  sdl/repos/extra-i686/fix_joystick_misc_axes.diff
(from rev 212210, sdl/trunk/fix_joystick_misc_axes.diff)
  sdl/repos/extra-i686/libsdl-1.2.15-resizing.patch
(from rev 212210, sdl/trunk/libsdl-1.2.15-resizing.patch)
  sdl/repos/extra-i686/sdl-1.2.14-disable-mmx.patch
(from rev 212210, sdl/trunk/sdl-1.2.14-disable-mmx.patch)
  sdl/repos/extra-i686/sdl-1.2.14-fix-mouse-clicking.patch
(from rev 212210, sdl/trunk/sdl-1.2.14-fix-mouse-clicking.patch)
  sdl/repos/extra-i686/sdl_x11sym.patch
(from rev 212210, sdl/trunk/sdl_x11sym.patch)
  sdl/repos/extra-x86_64/PKGBUILD
(from rev 212210, sdl/trunk/PKGBUILD)
  sdl/repos/extra-x86_64/X11_KeyToUnicode.patch
(from rev 212210, sdl/trunk/X11_KeyToUnicode.patch)
  sdl/repos/extra-x86_64/fix_joystick_misc_axes.diff
(from rev 212210, sdl/trunk/fix_joystick_misc_axes.diff)
  sdl/repos/extra-x86_64/libsdl-1.2.15-resizing.patch
(from rev 212210, sdl/trunk/libsdl-1.2.15-resizing.patch)
  sdl/repos/extra-x86_64/sdl-1.2.14-disable-mmx.patch
(from rev 212210, sdl/trunk/sdl-1.2.14-disable-mmx.patch)
  sdl/repos/extra-x86_64/sdl-1.2.14-fix-mouse-clicking.patch
(from rev 212210, sdl/trunk/sdl-1.2.14-fix-mouse-clicking.patch)
  sdl/repos/extra-x86_64/sdl_x11sym.patch
(from rev 212210, sdl/trunk/sdl_x11sym.patch)
Deleted:
  sdl/repos/extra-i686/PKGBUILD
  sdl/repos/extra-i686/fix_joystick_misc_axes.diff
  sdl/repos/extra-i686/libsdl-1.2.15-resizing.patch
  sdl/repos/extra-i686/sdl-1.2.14-disable-mmx.patch
  sdl/repos/extra-i686/sdl-1.2.14-fix-mouse-clicking.patch
  sdl/repos/extra-i686/sdl_x11sym.patch
  sdl/repos/extra-x86_64/PKGBUILD
  sdl/repos/extra-x86_64/fix_joystick_misc_axes.diff
  sdl/repos/extra-x86_64/libsdl-1.2.15-resizing.patch
  sdl/repos/extra-x86_64/sdl-1.2.14-disable-mmx.patch
  sdl/repos/extra-x86_64/sdl-1.2.14-fix-mouse-clicking.patch
  sdl/repos/extra-x86_64/sdl_x11sym.patch

--+
 /PKGBUILD|  106 +
 /fix_joystick_misc_axes.diff |   26 
 /libsdl-1.2.15-resizing.patch|  126 +
 /sdl-1.2.14-disable-mmx.patch|   26 
 /sdl-1.2.14-fix-mouse-clicking.patch |   46 +++
 /sdl_x11sym.patch|   24 
 extra-i686/PKGBUILD  |   50 
 extra-i686/X11_KeyToUnicode.patch|   52 
 extra-i686/fix_joystick_misc_axes.diff   |   13 --
 extra-i686/libsdl-1.2.15-resizing.patch  |   63 --
 extra-i686/sdl-1.2.14-disable-mmx.patch  |   13 --
 extra-i686/sdl-1.2.14-fix-mouse-clicking.patch   |   23 ---
 extra-i686/sdl_x11sym.patch  |   12 --
 extra-x86_64/PKGBUILD|   50 
 extra-x86_64/X11_KeyToUnicode.patch  |   52 
 extra-x86_64/fix_joystick_misc_axes.diff |   13 --
 extra-x86_64/libsdl-1.2.15-resizing.patch|   63 --
 extra-x86_64/sdl-1.2.14-disable-mmx.patch|   13 --
 extra-x86_64/sdl-1.2.14-fix-mouse-clicking.patch |   23 ---
 extra-x86_64/sdl_x11sym.patch|   12 --
 20 files changed, 458 insertions(+), 348 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-10 21:41:06 UTC (rev 212210)
+++ extra-i686/PKGBUILD 2014-05-10 21:42:35 UTC (rev 212211)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Allan McRae al...@archlinux.org
-# Contributor: dorphell dorph...@archlinux.org
-
-pkgname=sdl
-pkgver=1.2.15
-pkgrel=5
-pkgdesc=A library for portable low-level access to a video framebuffer, audio 
output, mouse, and keyboard
-arch=('i686' 'x86_64')
-url=http://www.libsdl.org;
-license=('LGPL')
-depends=('glibc' 'libxext' 'libxrender' 'libx11')
-makedepends=('alsa-lib' 'mesa' 'libpulse' 'glu')
-optdepends=('alsa-lib: ALSA audio driver'
-'libpulse: PulseAudio audio driver')
-options=('staticlibs')
-source=(http://www.libsdl.org/release/SDL-${pkgver}.tar.gz
-sdl-1.2.14-fix-mouse-clicking.patch
-sdl-1.2.14-disable-mmx.patch
-fix_joystick_misc_axes.diff
-libsdl-1.2.15-resizing.patch
-sdl_x11sym.patch)
-md5sums=('9d96df8417572a2afb781a7c4c811a85'
- '04d8c179f125e04bcd4c9d60e013c2d7'
- 'e5c16b7611f62c7cb25f0534eff68852'
- '687586a108b597a2a6b73070c1d37e51'
- '3dd50347d8856160a9cbd7f80383a1f8'
- '148b285bccee9d21bb96db807363b962')
-
-prepare() {
-  cd 

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

2014-05-10 Thread Eric Bélanger
Date: Sunday, May 11, 2014 @ 00:51:13
  Author: eric
Revision: 212212

upgpkg: quodlibet 3.1.1-1

Upstream update

Modified:
  quodlibet/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 21:42:35 UTC (rev 212211)
+++ PKGBUILD2014-05-10 22:51:13 UTC (rev 212212)
@@ -3,7 +3,7 @@
 
 pkgbase=quodlibet
 pkgname=('quodlibet' 'quodlibet-plugins')
-pkgver=3.1.0
+pkgver=3.1.1
 pkgrel=1
 arch=('any')
 license=('GPL2')
@@ -12,8 +12,8 @@
 options=('!makeflags')
 
source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-$pkgver.tar.gz
 
https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-plugins-$pkgver.tar.gz)
-sha1sums=('2a2ff36cbab472aa61ead2bd9803cc6396ac310c'
-  '0b79004728fafe6ac9bb1352cbb04c9b76ca4f55')
+sha1sums=('4246a569405ec292b8fb7183363db0a7989e9ac3'
+  'f7cb567729e17555a445db5371b823038f356e3d')
 
 prepare() {
   cd ${pkgbase}-${pkgver}



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

2014-05-10 Thread Eric Bélanger
Date: Sunday, May 11, 2014 @ 00:52:34
  Author: eric
Revision: 212213

archrelease: copy trunk to extra-any

Added:
  quodlibet/repos/extra-any/PKGBUILD
(from rev 212212, quodlibet/trunk/PKGBUILD)
  quodlibet/repos/extra-any/quodlibet.install
(from rev 212212, quodlibet/trunk/quodlibet.install)
Deleted:
  quodlibet/repos/extra-any/PKGBUILD
  quodlibet/repos/extra-any/quodlibet.install

---+
 PKGBUILD  |  120 ++--
 quodlibet.install |   22 -
 2 files changed, 71 insertions(+), 71 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-05-10 22:51:13 UTC (rev 212212)
+++ PKGBUILD2014-05-10 22:52:34 UTC (rev 212213)
@@ -1,60 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgbase=quodlibet
-pkgname=('quodlibet' 'quodlibet-plugins')
-pkgver=3.1.0
-pkgrel=1
-arch=('any')
-license=('GPL2')
-url=http://code.google.com/p/quodlibet/;
-makedepends=('python2' 'intltool')
-options=('!makeflags')
-source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-$pkgver.tar.gz
-
https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-plugins-$pkgver.tar.gz)
-sha1sums=('2a2ff36cbab472aa61ead2bd9803cc6396ac310c'
-  '0b79004728fafe6ac9bb1352cbb04c9b76ca4f55')
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-  sed -i 's/env python/env python2/' exfalso.py quodlibet.py \
-../${pkgbase}-plugins-${pkgver}/songsmenu/replaygain.py
-  sed -i 's|/usr/bin/python|/usr/bin/python2|' operon.py 
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-  python2 setup.py build
-}
-
-package_quodlibet() {
-  pkgdesc=An audio library tagger, manager and player
-  depends=('gtk3' 'python2-gobject' 'python2-dbus' 'mutagen' 
-   'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
-  'gnome-icon-theme')
-  optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
-  'gst-plugins-bad: for Musepack support'
-  'libgpod: for ipod support'
-  'python2-feedparser: for audio feeds (podcast) support'
-  'libkeybinder3: for the multimedia keys support'
-  'media-player-info: for media devices support')
-  install=quodlibet.install
-
-  cd ${pkgbase}-${pkgver}
-  python2 setup.py install --prefix=${pkgdir}/usr
-}
-
-package_quodlibet-plugins() {
-  pkgdesc=Various plugins for QuodLibet
-  depends=('quodlibet')
-  optdepends=('cddb-py: for CDDB Lookup plugin'
-  'python2-musicbrainz2: for MusicBrainz Lookup plugin'
-  'python2-pyinotify: for Automatic library update plugin'
- 'kakasi: for Kana/Kanji Simple Inverter plugin'
- 'zeitgeist: for Event Logging plugin'
-  'gst-plugins-bad: for Audio Pitch/Speed plugin')
-
-  cd ${pkgbase}-plugins-${pkgver}
-  install -d ${pkgdir}/usr/lib/python2.7/site-packages/quodlibet/plugins
-  cp -r editing events gstreamer playorder songsmenu 
${pkgdir}/usr/lib/python2.7/site-packages/quodlibet/plugins
-}

Copied: quodlibet/repos/extra-any/PKGBUILD (from rev 212212, 
quodlibet/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-05-10 22:52:34 UTC (rev 212213)
@@ -0,0 +1,60 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgbase=quodlibet
+pkgname=('quodlibet' 'quodlibet-plugins')
+pkgver=3.1.1
+pkgrel=1
+arch=('any')
+license=('GPL2')
+url=http://code.google.com/p/quodlibet/;
+makedepends=('python2' 'intltool')
+options=('!makeflags')
+source=(https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-$pkgver.tar.gz
+
https://bitbucket.org/lazka/quodlibet-files/raw/default/releases/$pkgbase-plugins-$pkgver.tar.gz)
+sha1sums=('4246a569405ec292b8fb7183363db0a7989e9ac3'
+  'f7cb567729e17555a445db5371b823038f356e3d')
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+  sed -i 's/env python/env python2/' exfalso.py quodlibet.py \
+../${pkgbase}-plugins-${pkgver}/songsmenu/replaygain.py
+  sed -i 's|/usr/bin/python|/usr/bin/python2|' operon.py 
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+  python2 setup.py build
+}
+
+package_quodlibet() {
+  pkgdesc=An audio library tagger, manager and player
+  depends=('gtk3' 'python2-gobject' 'python2-dbus' 'mutagen' 
+   'gst-plugins-base' 'gst-plugins-good' 'gst-plugins-ugly' 
+  'gnome-icon-theme')
+  optdepends=('gst-libav: for ffmpeg (ASF/WMA) support'
+  'gst-plugins-bad: for Musepack support'
+  'libgpod: for ipod support'
+  'python2-feedparser: for audio feeds (podcast) support'
+  'libkeybinder3: for the multimedia keys support'
+  'media-player-info: for media devices support')
+  install=quodlibet.install
+
+  cd ${pkgbase}-${pkgver}
+  python2 setup.py install --prefix=${pkgdir}/usr
+}
+

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

2014-05-10 Thread Eric Bélanger
Date: Sunday, May 11, 2014 @ 01:36:24
  Author: eric
Revision: 212214

upgpkg: imagemagick 6.8.9.1-1

Upstream update

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 22:52:34 UTC (rev 212213)
+++ PKGBUILD2014-05-10 23:36:24 UTC (rev 212214)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.9.0
+pkgver=6.8.9.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.imagemagick.org/;
@@ -14,7 +14,7 @@
 
#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
 
source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
 perlmagick.rpath.patch)
-sha1sums=('098a98ba2b5c988084da3d103c6ce8fff962bbf8'
+sha1sums=('02f0a38ed50a2f807675cfd17b788f0c50ad4daa'
   'SKIP'
   'e143cf9d530fabf3b58023899b5cc544ba93daec')
 



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

2014-05-10 Thread Eric Bélanger
Date: Sunday, May 11, 2014 @ 01:38:56
  Author: eric
Revision: 212215

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

Added:
  imagemagick/repos/extra-i686/PKGBUILD
(from rev 212214, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
(from rev 212214, imagemagick/trunk/perlmagick.rpath.patch)
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 212214, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch
(from rev 212214, imagemagick/trunk/perlmagick.rpath.patch)
Deleted:
  imagemagick/repos/extra-i686/PKGBUILD
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch

-+
 /PKGBUILD   |  178 ++
 /perlmagick.rpath.patch |   22 
 extra-i686/PKGBUILD |   89 -
 extra-i686/perlmagick.rpath.patch   |   11 --
 extra-x86_64/PKGBUILD   |   89 -
 extra-x86_64/perlmagick.rpath.patch |   11 --
 6 files changed, 200 insertions(+), 200 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-10 23:36:24 UTC (rev 212214)
+++ extra-i686/PKGBUILD 2014-05-10 23:38:56 UTC (rev 212215)
@@ -1,89 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgbase=imagemagick
-pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.9.0
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://www.imagemagick.org/;
-license=('custom')
-makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript'
- 'openexr' 'libwmf' 'librsvg' 'libxml2' 'liblqr'
- 'opencl-headers' 'libcl' 'libwebp')
-#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
-source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
-perlmagick.rpath.patch)
-sha1sums=('098a98ba2b5c988084da3d103c6ce8fff962bbf8'
-  'SKIP'
-  'e143cf9d530fabf3b58023899b5cc544ba93daec')
-
-prepare() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  sed '/AC_PATH_XTRA/d' -i configure.ac
-  autoreconf --force --install
-  patch -p0 -i ${srcdir}/perlmagick.rpath.patch
-}
-
-build() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  [[ $CARCH = i686 ]]  EXTRAOPTS=--with-gcc-arch=i686
-  [[ $CARCH = x86_64 ]]  EXTRAOPTS=--with-gcc-arch=x86-64
-
-  ./configure --prefix=/usr --sysconfdir=/etc --with-modules \
---enable-hdri --with-wmf --with-openexr --with-xml --with-lcms2 \
---with-webp --with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
---with-perl --with-perl-options=INSTALLDIRS=vendor --with-lqr 
--with-rsvg \
---enable-opencl --without-gvc --without-djvu --without-autotrace \
---without-jbig --without-fpx --without-dps --without-fftw $EXTRAOPTS
-  make
-}
-
-check() {
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-#  make check
-}
-
-package_imagemagick() {
-  pkgdesc=An image viewing/manipulation program
-  depends=('perl' 'libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr' 
'libcl')
-  optdepends=('imagemagick-doc: for additional information'
-  'ghostscript: for Ghostscript support' 
-  'openexr: for OpenEXR support' 
-  'libwmf: for WMF support' 
-  'librsvg: for SVG support' 
-  'libxml2: for XML support' 
-  'libpng: for PNG support' 
- 'libwebp: for WEBP support')
-  backup=(etc/ImageMagick-${pkgver%%.*}/coder.xml
-  etc/ImageMagick-${pkgver%%.*}/colors.xml
-  etc/ImageMagick-${pkgver%%.*}/delegates.xml
-  etc/ImageMagick-${pkgver%%.*}/log.xml
-  etc/ImageMagick-${pkgver%%.*}/magic.xml
-  etc/ImageMagick-${pkgver%%.*}/mime.xml
-  etc/ImageMagick-${pkgver%%.*}/policy.xml
-  etc/ImageMagick-${pkgver%%.*}/quantization-table.xml
-  etc/ImageMagick-${pkgver%%.*}/thresholds.xml
-  etc/ImageMagick-${pkgver%%.*}/type.xml
-  etc/ImageMagick-${pkgver%%.*}/type-dejavu.xml
-  etc/ImageMagick-${pkgver%%.*}/type-ghostscript.xml
-  etc/ImageMagick-${pkgver%%.*}/type-windows.xml)
-  options=('!docs' 'libtool' '!emptydirs')
-
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make -j1 DESTDIR=${pkgdir} install
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/imagemagick/LICENSE
-  install -Dm644 NOTICE ${pkgdir}/usr/share/licenses/imagemagick/NOTICE
-
-#Cleaning
-  rm -f ${pkgdir}/usr/lib/*.la
-}
-
-package_imagemagick-doc() {
-  pkgdesc=The ImageMagick documentation (utilities manuals and libraries API)
-
-  cd ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR=${pkgdir} install-data-html
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/imagemagick-doc/LICENSE
-  install -Dm644 NOTICE 

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

2014-05-10 Thread Eric Bélanger
Date: Sunday, May 11, 2014 @ 02:23:16
  Author: eric
Revision: 212216

upgpkg: bin86 0.16.21-1

Upstream update, Update url, Add prepare function

Modified:
  bin86/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 23:38:56 UTC (rev 212215)
+++ PKGBUILD2014-05-11 00:23:16 UTC (rev 212216)
@@ -3,31 +3,32 @@
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=bin86
-pkgver=0.16.19
+pkgver=0.16.21
 pkgrel=1
 pkgdesc=A complete 8086 assembler and loader
 arch=('i686' 'x86_64')
 license=('GPL')
-url=http://www.debath.co.uk/;
+url=http://v3.sk/~lkundrak/dev86/;
 depends=('glibc')
-source=(http://www.debath.co.uk/dev86/$pkgname-$pkgver.tar.gz;
+source=(http://v3.sk/~lkundrak/dev86/$pkgname-$pkgver.tar.gz
 bin86-0.16.17-x86_64-1.patch)
-md5sums=('0a20d79765a6855ce7c8c2d02b23a0f0'
- '92bdce7b0655cd2e9f83c83fc56d128e')
+sha1sums=('35a1222350adce5b6d62dd56f3477d9416c59174'
+  '2c967c062fbee4e40ca1bf55feec2033e132e0a9')
 
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
+prepare() {
+  cd $pkgname-$pkgver
   if [[ $CARCH = x86_64 ]]; then
  patch -Np1  $srcdir/bin86-0.16.17-x86_64-1.patch
   fi
+}
 
+build() {
+  cd $pkgname-$pkgver
   make PREFIX=/usr
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  mkdir -p $pkgdir/usr/bin $pkgdir/usr/share/man/man1
-  make PREFIX=$pkgdir/usr MANDIR=$pkgdir/usr/share/man/man1 install
+  cd $pkgname-$pkgver
+  install -d $pkgdir/usr/{bin,share/man/man1}
+  make PREFIX=$pkgdir/usr MANDIR=$pkgdir/usr/share/man/man1 install
 }



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

2014-05-10 Thread Eric Bélanger
Date: Sunday, May 11, 2014 @ 02:25:53
  Author: eric
Revision: 212217

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

Added:
  bin86/repos/extra-i686/PKGBUILD
(from rev 212216, bin86/trunk/PKGBUILD)
  bin86/repos/extra-i686/bin86-0.16.17-x86_64-1.patch
(from rev 212216, bin86/trunk/bin86-0.16.17-x86_64-1.patch)
  bin86/repos/extra-x86_64/PKGBUILD
(from rev 212216, bin86/trunk/PKGBUILD)
  bin86/repos/extra-x86_64/bin86-0.16.17-x86_64-1.patch
(from rev 212216, bin86/trunk/bin86-0.16.17-x86_64-1.patch)
Deleted:
  bin86/repos/extra-i686/PKGBUILD
  bin86/repos/extra-i686/bin86-0.16.17-x86_64-1.patch
  bin86/repos/extra-x86_64/PKGBUILD
  bin86/repos/extra-x86_64/bin86-0.16.17-x86_64-1.patch

---+
 /PKGBUILD |   68 +
 /bin86-0.16.17-x86_64-1.patch |   88 
 extra-i686/PKGBUILD   |   33 --
 extra-i686/bin86-0.16.17-x86_64-1.patch   |   44 --
 extra-x86_64/PKGBUILD |   33 --
 extra-x86_64/bin86-0.16.17-x86_64-1.patch |   44 --
 6 files changed, 156 insertions(+), 154 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-11 00:23:16 UTC (rev 212216)
+++ extra-i686/PKGBUILD 2014-05-11 00:25:53 UTC (rev 212217)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andreas Radke andy...@archlinux.org
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=bin86
-pkgver=0.16.19
-pkgrel=1
-pkgdesc=A complete 8086 assembler and loader
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.debath.co.uk/;
-depends=('glibc')
-source=(http://www.debath.co.uk/dev86/$pkgname-$pkgver.tar.gz;
-bin86-0.16.17-x86_64-1.patch)
-md5sums=('0a20d79765a6855ce7c8c2d02b23a0f0'
- '92bdce7b0655cd2e9f83c83fc56d128e')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  if [[ $CARCH = x86_64 ]]; then
- patch -Np1  $srcdir/bin86-0.16.17-x86_64-1.patch
-  fi
-
-  make PREFIX=/usr
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  mkdir -p $pkgdir/usr/bin $pkgdir/usr/share/man/man1
-  make PREFIX=$pkgdir/usr MANDIR=$pkgdir/usr/share/man/man1 install
-}

Copied: bin86/repos/extra-i686/PKGBUILD (from rev 212216, bin86/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-11 00:25:53 UTC (rev 212217)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+
+pkgname=bin86
+pkgver=0.16.21
+pkgrel=1
+pkgdesc=A complete 8086 assembler and loader
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://v3.sk/~lkundrak/dev86/;
+depends=('glibc')
+source=(http://v3.sk/~lkundrak/dev86/$pkgname-$pkgver.tar.gz
+bin86-0.16.17-x86_64-1.patch)
+sha1sums=('35a1222350adce5b6d62dd56f3477d9416c59174'
+  '2c967c062fbee4e40ca1bf55feec2033e132e0a9')
+
+prepare() {
+  cd $pkgname-$pkgver
+  if [[ $CARCH = x86_64 ]]; then
+ patch -Np1  $srcdir/bin86-0.16.17-x86_64-1.patch
+  fi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  make PREFIX=/usr
+}
+
+package() {
+  cd $pkgname-$pkgver
+  install -d $pkgdir/usr/{bin,share/man/man1}
+  make PREFIX=$pkgdir/usr MANDIR=$pkgdir/usr/share/man/man1 install
+}

Deleted: extra-i686/bin86-0.16.17-x86_64-1.patch
===
--- extra-i686/bin86-0.16.17-x86_64-1.patch 2014-05-11 00:23:16 UTC (rev 
212216)
+++ extra-i686/bin86-0.16.17-x86_64-1.patch 2014-05-11 00:25:53 UTC (rev 
212217)
@@ -1,44 +0,0 @@
-Submitted By: Ken Moffat k...@kenmoffat.uklinux.net
-Date: 2005-06-28
-Initial Package Version: 0.16.14
-Upstream Status: Submitted Upstream
-Origin: from ROCK Linux
-Description: Allows bin86 to compile on x86_64, which permits lilo to
- be used in a 64-bit system.  I'm dubious about ROCK's attempts to
- automatically add dual-licensing to all their patches, but bin86 is
- already GPL'd.  I've heard from the maintainer that this will be
- included in the next upload.
-
-
-# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
-# 
-# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
-# Please add additional copyright information _after_ the line containing
-# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
-# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
-# 
-# ROCK Linux: rock-src/package/x86/bin86/x86_64.patch
-# ROCK Linux is Copyright (C) 1998 - 2005 Clifford Wolf
-# 
-# This patch file is dual-licensed. It is available under the license the
-# patched project is licensed under, as long as it is an OpenSource license
-# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
-# of the GNU General Public License as published by the Free Software
-# Foundation; either version 2 of the License, or 

[arch-commits] Commit in xfce4-mount-plugin/trunk (PKGBUILD)

2014-05-10 Thread Eric Bélanger
Date: Sunday, May 11, 2014 @ 02:41:34
  Author: eric
Revision: 212218

upgpkg: xfce4-mount-plugin 0.6.7-1

Upstream update

Modified:
  xfce4-mount-plugin/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-05-11 00:25:53 UTC (rev 212217)
+++ PKGBUILD2014-05-11 00:41:34 UTC (rev 212218)
@@ -3,7 +3,7 @@
 # Contributor: Tobias Kieslich tobias (at) archlinux.org
 
 pkgname=xfce4-mount-plugin
-pkgver=0.6.4
+pkgver=0.6.7
 pkgrel=1
 pkgdesc=Plugin for the Xfce4 panel to mount and unmount volumes
 arch=('i686' 'x86_64')
@@ -14,11 +14,10 @@
 makedepends=('intltool')
 install=$pkgname.install
 
source=(http://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('541d7af84d7d0b00ae547aa1f438e2fac51ee4195c4d0a17173c4f72accb227d')
+sha256sums=('541b94a892aa15d57707db9703bef85a5ce342769326f138cbf6cd7af1e2ac8d')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
-
+  cd $pkgname-$pkgver
   ./configure \
 --prefix=/usr \
 --sysconfdir=/etc \
@@ -30,8 +29,6 @@
 }
 
 package() {
-  cd $srcdir/$pkgname-$pkgver
+  cd $pkgname-$pkgver
   make DESTDIR=$pkgdir install
 }
-
-# vim:set ts=2 sw=2 et:



[arch-commits] Commit in xfce4-mount-plugin/repos (8 files)

2014-05-10 Thread Eric Bélanger
Date: Sunday, May 11, 2014 @ 02:44:29
  Author: eric
Revision: 212219

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

Added:
  xfce4-mount-plugin/repos/extra-i686/PKGBUILD
(from rev 212218, xfce4-mount-plugin/trunk/PKGBUILD)
  xfce4-mount-plugin/repos/extra-i686/xfce4-mount-plugin.install
(from rev 212218, xfce4-mount-plugin/trunk/xfce4-mount-plugin.install)
  xfce4-mount-plugin/repos/extra-x86_64/PKGBUILD
(from rev 212218, xfce4-mount-plugin/trunk/PKGBUILD)
  xfce4-mount-plugin/repos/extra-x86_64/xfce4-mount-plugin.install
(from rev 212218, xfce4-mount-plugin/trunk/xfce4-mount-plugin.install)
Deleted:
  xfce4-mount-plugin/repos/extra-i686/PKGBUILD
  xfce4-mount-plugin/repos/extra-i686/xfce4-mount-plugin.install
  xfce4-mount-plugin/repos/extra-x86_64/PKGBUILD
  xfce4-mount-plugin/repos/extra-x86_64/xfce4-mount-plugin.install

-+
 /PKGBUILD   |   68 ++
 /xfce4-mount-plugin.install |   26 +++
 extra-i686/PKGBUILD |   37 
 extra-i686/xfce4-mount-plugin.install   |   13 -
 extra-x86_64/PKGBUILD   |   37 
 extra-x86_64/xfce4-mount-plugin.install |   13 -
 6 files changed, 94 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-05-11 00:41:34 UTC (rev 212218)
+++ extra-i686/PKGBUILD 2014-05-11 00:44:29 UTC (rev 212219)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Contributor: Tobias Kieslich tobias (at) archlinux.org
-
-pkgname=xfce4-mount-plugin
-pkgver=0.6.4
-pkgrel=1
-pkgdesc=Plugin for the Xfce4 panel to mount and unmount volumes
-arch=('i686' 'x86_64')
-url=http://xfce-goodies.berlios.de/;
-license=('GPL')
-groups=('xfce4-goodies')
-depends=('xfce4-panel')
-makedepends=('intltool')
-install=$pkgname.install
-source=(http://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
-sha256sums=('541d7af84d7d0b00ae547aa1f438e2fac51ee4195c4d0a17173c4f72accb227d')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib \
---localstatedir=/var \
---disable-static \
---disable-debug
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-mount-plugin/repos/extra-i686/PKGBUILD (from rev 212218, 
xfce4-mount-plugin/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-05-11 00:44:29 UTC (rev 212219)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: Tobias Kieslich tobias (at) archlinux.org
+
+pkgname=xfce4-mount-plugin
+pkgver=0.6.7
+pkgrel=1
+pkgdesc=Plugin for the Xfce4 panel to mount and unmount volumes
+arch=('i686' 'x86_64')
+url=http://xfce-goodies.berlios.de/;
+license=('GPL')
+groups=('xfce4-goodies')
+depends=('xfce4-panel')
+makedepends=('intltool')
+install=$pkgname.install
+source=(http://archive.xfce.org/src/panel-plugins/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha256sums=('541b94a892aa15d57707db9703bef85a5ce342769326f138cbf6cd7af1e2ac8d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--libexecdir=/usr/lib \
+--localstatedir=/var \
+--disable-static \
+--disable-debug
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: extra-i686/xfce4-mount-plugin.install
===
--- extra-i686/xfce4-mount-plugin.install   2014-05-11 00:41:34 UTC (rev 
212218)
+++ extra-i686/xfce4-mount-plugin.install   2014-05-11 00:44:29 UTC (rev 
212219)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: xfce4-mount-plugin/repos/extra-i686/xfce4-mount-plugin.install (from 
rev 212218, xfce4-mount-plugin/trunk/xfce4-mount-plugin.install)
===
--- extra-i686/xfce4-mount-plugin.install   (rev 0)
+++ extra-i686/xfce4-mount-plugin.install   2014-05-11 00:44:29 UTC (rev 
212219)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-05-11 00:41:34 UTC (rev 212218)
+++ extra-x86_64/PKGBUILD   2014-05-11 00:44:29 UTC (rev 212219)
@@ -1,37 

[arch-commits] Commit in bind/trunk (01-fix-forgotten-log.patch PKGBUILD)

2014-05-10 Thread Sébastien Luttringer
Date: Sunday, May 11, 2014 @ 02:58:17
  Author: seblu
Revision: 110958

upgpkg: bind 9.10.0.P1-1

Added:
  bind/trunk/01-fix-forgotten-log.patch
Modified:
  bind/trunk/PKGBUILD

+
 01-fix-forgotten-log.patch |   41 +
 PKGBUILD   |   10 +++---
 2 files changed, 48 insertions(+), 3 deletions(-)

Added: 01-fix-forgotten-log.patch
===
--- 01-fix-forgotten-log.patch  (rev 0)
+++ 01-fix-forgotten-log.patch  2014-05-11 00:58:17 UTC (rev 110958)
@@ -0,0 +1,41 @@
+# https://lists.isc.org/pipermail/bind-users/2014-May/093124.html
+From 73a2c0ec42c0915bde0275c81861f57645daf683 Mon Sep 17 00:00:00 2001
+From: Tony Finch d...@dotat.at
+Date: Thu, 28 Nov 2013 17:23:57 +
+Subject: [PATCH] Disable XXXMPA verbose packet logging in EDNS fallback code.
+
+---
+ lib/dns/resolver.c | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c
+index 11c805f..e50071e 100644
+--- a/lib/dns/resolver.c
 b/lib/dns/resolver.c
+@@ -7339,9 +7339,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) 
{
+   sizeof(addrbuf));
+   snprintf(buf, sizeof(buf), received packet from %s 
+(bad edns):\n, addrbuf);
++/*
+   dns_message_logpacket(message, buf,
+ DNS_LOGCATEGORY_RESOLVER, DNS_LOGMODULE_RESOLVER,
+ ISC_LOG_NOTICE, fctx-res-mctx);
++*/
+   dns_adb_changeflags(fctx-adb, query-addrinfo,
+   DNS_FETCHOPT_NOEDNS0,
+   DNS_FETCHOPT_NOEDNS0);
+@@ -7369,9 +7371,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) 
{
+   sizeof(addrbuf));
+   snprintf(buf, sizeof(buf), received packet from %s (no 
opt):\n,
+addrbuf);
++/*
+   dns_message_logpacket(message, buf,
+ DNS_LOGCATEGORY_RESOLVER, DNS_LOGMODULE_RESOLVER,
+ ISC_LOG_NOTICE, fctx-res-mctx);
++*/
+   dns_adb_changeflags(fctx-adb, query-addrinfo,
+   DNS_FETCHOPT_NOEDNS0,
+   DNS_FETCHOPT_NOEDNS0);
+-- 
+1.9.1
+

Modified: PKGBUILD
===
--- PKGBUILD2014-05-10 16:52:31 UTC (rev 110957)
+++ PKGBUILD2014-05-11 00:58:17 UTC (rev 110958)
@@ -5,8 +5,8 @@
 # Contributor: Mario Vazquez mario_v...@hotmail.com
 
 pkgname=bind
-_pkgver=9.10.0
-pkgver=9.10.0
+_pkgver=9.10.0-P1
+pkgver=${_pkgver//-/.}
 pkgrel=1
 pkgdesc='The ISC BIND nameserver'
 url='http://www.isc.org/software/bind/'
@@ -19,6 +19,7 @@
 'etc/named.conf')
 install=$pkgname.install
 source=(http://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz{,.asc}
+'01-fix-forgotten-log.patch'
 'root.hint::http://www.internic.net/zones/named.root'
 'tmpfiles.d'
 'named.conf'
@@ -26,8 +27,9 @@
 'named.logrotate'
 'localhost.zone'
 '127.0.0.zone')
-sha1sums=('75776823efc5fa6fed1618030854b6a265694abd'
+sha1sums=('2404524f321107d7654e4c64f4174f6c464debb9'
   'SKIP'
+  '4d96c9b9ef0aebdad7e79c749536858a344779b5'
   '029f89c49550c40ec7a95116b6a33f0e5a041094'
   'c5a2bcd9b0f009ae71f3a03fbdbe012196962a11'
   'c71a7fc02d4bf0d55e8e29d1e014607ac1d58726'
@@ -39,6 +41,8 @@
 prepare() {
   # remove dig to avoid conflict with dnsutils
   sed -i 's/dig//' $pkgname-$_pkgver/bin/Makefile.in
+  # https://lists.isc.org/pipermail/bind-users/2014-May/093124.html
+  patch -p1 -d bind-$_pkgver  01-fix-forgotten-log.patch
 }
 
 build() {



[arch-commits] Commit in bind/repos (34 files)

2014-05-10 Thread Sébastien Luttringer
Date: Sunday, May 11, 2014 @ 02:59:07
  Author: seblu
Revision: 110960

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

Added:
  bind/repos/community-i686/01-fix-forgotten-log.patch
(from rev 110958, bind/trunk/01-fix-forgotten-log.patch)
  bind/repos/community-i686/127.0.0.zone
(from rev 110958, bind/trunk/127.0.0.zone)
  bind/repos/community-i686/PKGBUILD
(from rev 110958, bind/trunk/PKGBUILD)
  bind/repos/community-i686/bind.install
(from rev 110958, bind/trunk/bind.install)
  bind/repos/community-i686/localhost.zone
(from rev 110958, bind/trunk/localhost.zone)
  bind/repos/community-i686/named.conf
(from rev 110958, bind/trunk/named.conf)
  bind/repos/community-i686/named.logrotate
(from rev 110958, bind/trunk/named.logrotate)
  bind/repos/community-i686/named.service
(from rev 110958, bind/trunk/named.service)
  bind/repos/community-i686/tmpfiles.d
(from rev 110958, bind/trunk/tmpfiles.d)
  bind/repos/community-x86_64/01-fix-forgotten-log.patch
(from rev 110958, bind/trunk/01-fix-forgotten-log.patch)
  bind/repos/community-x86_64/127.0.0.zone
(from rev 110958, bind/trunk/127.0.0.zone)
  bind/repos/community-x86_64/PKGBUILD
(from rev 110958, bind/trunk/PKGBUILD)
  bind/repos/community-x86_64/bind.install
(from rev 110958, bind/trunk/bind.install)
  bind/repos/community-x86_64/localhost.zone
(from rev 110958, bind/trunk/localhost.zone)
  bind/repos/community-x86_64/named.conf
(from rev 110958, bind/trunk/named.conf)
  bind/repos/community-x86_64/named.logrotate
(from rev 110958, bind/trunk/named.logrotate)
  bind/repos/community-x86_64/named.service
(from rev 110958, bind/trunk/named.service)
  bind/repos/community-x86_64/tmpfiles.d
(from rev 110958, bind/trunk/tmpfiles.d)
Deleted:
  bind/repos/community-i686/127.0.0.zone
  bind/repos/community-i686/PKGBUILD
  bind/repos/community-i686/bind.install
  bind/repos/community-i686/localhost.zone
  bind/repos/community-i686/named.conf
  bind/repos/community-i686/named.logrotate
  bind/repos/community-i686/named.service
  bind/repos/community-i686/tmpfiles.d
  bind/repos/community-x86_64/127.0.0.zone
  bind/repos/community-x86_64/PKGBUILD
  bind/repos/community-x86_64/bind.install
  bind/repos/community-x86_64/localhost.zone
  bind/repos/community-x86_64/named.conf
  bind/repos/community-x86_64/named.logrotate
  bind/repos/community-x86_64/named.service
  bind/repos/community-x86_64/tmpfiles.d

-+
 /127.0.0.zone   |   22 +++
 /PKGBUILD   |  170 ++
 /bind.install   |   46 +++
 /localhost.zone |   20 +++
 /named.conf |  128 +++
 /named.logrotate|   12 +
 /named.service  |   22 +++
 /tmpfiles.d |2 
 community-i686/01-fix-forgotten-log.patch   |   41 ++
 community-i686/127.0.0.zone |   11 -
 community-i686/PKGBUILD |   81 
 community-i686/bind.install |   23 ---
 community-i686/localhost.zone   |   10 -
 community-i686/named.conf   |   64 -
 community-i686/named.logrotate  |6 
 community-i686/named.service|   11 -
 community-i686/tmpfiles.d   |1 
 community-x86_64/01-fix-forgotten-log.patch |   41 ++
 community-x86_64/127.0.0.zone   |   11 -
 community-x86_64/PKGBUILD   |   81 
 community-x86_64/bind.install   |   23 ---
 community-x86_64/localhost.zone |   10 -
 community-x86_64/named.conf |   64 -
 community-x86_64/named.logrotate|6 
 community-x86_64/named.service  |   11 -
 community-x86_64/tmpfiles.d |1 
 26 files changed, 504 insertions(+), 414 deletions(-)

Copied: bind/repos/community-i686/01-fix-forgotten-log.patch (from rev 110958, 
bind/trunk/01-fix-forgotten-log.patch)
===
--- community-i686/01-fix-forgotten-log.patch   (rev 0)
+++ community-i686/01-fix-forgotten-log.patch   2014-05-11 00:59:07 UTC (rev 
110960)
@@ -0,0 +1,41 @@
+# https://lists.isc.org/pipermail/bind-users/2014-May/093124.html
+From 73a2c0ec42c0915bde0275c81861f57645daf683 Mon Sep 17 00:00:00 2001
+From: Tony Finch d...@dotat.at
+Date: Thu, 28 Nov 2013 17:23:57 +
+Subject: [PATCH] Disable XXXMPA verbose packet logging in EDNS fallback code.
+
+---
+ lib/dns/resolver.c | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c
+index 11c805f..e50071e 100644
+--- a/lib/dns/resolver.c
 b/lib/dns/resolver.c
+@@ -7339,9 +7339,11 @@ 

[arch-commits] Commit in bind/repos (community-testing-x86_64)

2014-05-10 Thread Sébastien Luttringer
Date: Sunday, May 11, 2014 @ 02:59:10
  Author: seblu
Revision: 110961

db-remove: bind removed by seblu

Deleted:
  bind/repos/community-testing-x86_64/



[arch-commits] Commit in bind/repos (community-testing-i686)

2014-05-10 Thread Sébastien Luttringer
Date: Sunday, May 11, 2014 @ 02:59:02
  Author: seblu
Revision: 110959

db-remove: bind removed by seblu

Deleted:
  bind/repos/community-testing-i686/