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

2014-09-21 Thread Kyle Keen
Date: Sunday, September 21, 2014 @ 09:19:26
  Author: kkeen
Revision: 119350

upgpkg: words 2.1-3

Modified:
  words/trunk/PKGBUILD
  words/trunk/words.install

---+
 PKGBUILD  |2 +-
 words.install |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 05:43:34 UTC (rev 119349)
+++ PKGBUILD2014-09-21 07:19:26 UTC (rev 119350)
@@ -4,7 +4,7 @@
 # Contributor: Eric Johnson e...@coding-zone.com
 pkgname=words
 pkgver=2.1
-pkgrel=2
+pkgrel=3
 pkgdesc=A collection of International 'words' files for /usr/share/dict.
 arch=('any')
 url=ftp://ftp.gnu.org/gnu/aspell/dict/0index.html;

Modified: words.install
===
--- words.install   2014-09-21 05:43:34 UTC (rev 119349)
+++ words.install   2014-09-21 07:19:26 UTC (rev 119350)
@@ -3,7 +3,7 @@
 
   echo == Determining which 'words' file to use in /usr/share/dict
   case $(locale | sed -n 's/^LANG=\([^.]*\)\(\..*\)\?$/\1/p') in
-en_GB|gb|british) lang='british' ;;
+en_GB|en_NZ|gb|british) lang='british' ;;
 ca_*|ca|catalan) lang='catalan' ;;
 fi_*|fi|finnish) lang='finnish' ;;
 fr_*|fr|french) lang='french' ;;



[arch-commits] Commit in words/repos/community-any (4 files)

2014-09-21 Thread Kyle Keen
Date: Sunday, September 21, 2014 @ 09:19:59
  Author: kkeen
Revision: 119351

archrelease: copy trunk to community-any

Added:
  words/repos/community-any/PKGBUILD
(from rev 119350, words/trunk/PKGBUILD)
  words/repos/community-any/words.install
(from rev 119350, words/trunk/words.install)
Deleted:
  words/repos/community-any/PKGBUILD
  words/repos/community-any/words.install

---+
 PKGBUILD  |  162 
 words.install |   66 +++---
 2 files changed, 114 insertions(+), 114 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-21 07:19:26 UTC (rev 119350)
+++ PKGBUILD2014-09-21 07:19:59 UTC (rev 119351)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-# Contributor: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Eric Johnson e...@coding-zone.com
-pkgname=words
-pkgver=2.1
-pkgrel=2
-pkgdesc=A collection of International 'words' files for /usr/share/dict.
-arch=('any')
-url=ftp://ftp.gnu.org/gnu/aspell/dict/0index.html;
-license=('GPL' 'GPL2' 'custom')
-depends=()
-makedepends=('glibc' 'aspell')
-install=words.install
-source=('ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-7.1-0.tar.bz2'
-'ftp://ftp.gnu.org/gnu/aspell/dict/ca/aspell6-ca-2.1.5-1.tar.bz2'
-'ftp://ftp.gnu.org/gnu/aspell/dict/fi/aspell6-fi-0.7-0.tar.bz2'
-'ftp://ftp.gnu.org/gnu/aspell/dict/fr/aspell-fr-0.50-3.tar.bz2'
-'ftp://ftp.gnu.org/gnu/aspell/dict/de-alt/aspell6-de-alt-2.1-1.tar.bz2'
-
'ftp://ftp.gnu.org/gnu/aspell/dict/it/aspell6-it-2.2_20050523-0.tar.bz2'
-'ftp://ftp.gnu.org/gnu/aspell/dict/de/aspell-de-0.50-2.tar.bz2'
-'ftp://ftp.gnu.org/gnu/aspell/dict/es/aspell6-es-1.11-2.tar.bz2')
-md5sums=('beba5e8f3afd3ed1644653bb685b2dfb'
- '153d26f724866909c6faf49eecefe8b3'
- '6d1032116982c0efab1af8fce83259c0'
- '53a2d05c4e8f7fabd3cefe24db977be7'
- '13245374b03088608d729fd15c58cd7a'
- 'b1217299a0b67d1e121494d7ec18a88d'
- '204a9737ff0110fb8c7d284bd7200f7d'
- '8406336a89c64e47e96f4153d0af70c4')
-
-build() {
-mkdir -p $srcdir/$pkgname
-cd $srcdir/$pkgname
-
-find $srcdir -name '*.cwl' -exec cp '{}' './' \;
-preunzip *.cwl
-for wl in *.wl; do
-iconv --from-code=ISO-8859-1 --to-code=UTF-8 $wl | \
-cut -d '/' -f 1  $wl.utf8
-done
-rm *.wl
-
-mkdir -p copy
-while read cr; do
-ver=$(cut -d '-' -f 2  $cr)
-cp $cr copy/copyright-$ver
-done  $(find $srcdir -name 'Copyright')
-chmod 644 copy/*
-
-# locale specific sort?
-cat en-common.wl.utf8 en_US* | sort -u  us-merged
-cat en-common.wl.utf8 en_GB* | sort -u  gb-merged
-cat de-only.wl.utf8   de_*   | sort -u  de-merged
-}
-
-package() {
-cd $srcdir/$pkgname
-
-install -Dm644 us-merged $pkgdir/usr/share/dict/american-english
-install -Dm644 gb-merged $pkgdir/usr/share/dict/british-english
-ln -s american-english   $pkgdir/usr/share/dict/usa
-ln -s british-english$pkgdir/usr/share/dict/british
-
-install -Dm644 ca-common.wl.utf8 $pkgdir/usr/share/dict/catala
-ln -s catala $pkgdir/usr/share/dict/catalan
-
-install -Dm644 de-merged   $pkgdir/usr/share/dict/ngerman
-install -Dm644 de-alt.wl.utf8  $pkgdir/usr/share/dict/ogerman
-ln -s ngerman $pkgdir/usr/share/dict/german
-
-install -Dm644 fr-40-only.wl.utf8 $pkgdir/usr/share/dict/french
-
-install -Dm644 es.wl.utf8 $pkgdir/usr/share/dict/spanish
-install -Dm644 fi.wl.utf8 $pkgdir/usr/share/dict/finnish
-install -Dm644 it.wl.utf8 $pkgdir/usr/share/dict/italian
-
-install -d $pkgdir/usr/share/licenses/$pkgname/
-cp copy/*  $pkgdir/usr/share/licenses/$pkgname/
-}
-

Copied: words/repos/community-any/PKGBUILD (from rev 119350, 
words/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-21 07:19:59 UTC (rev 119351)
@@ -0,0 +1,81 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Lukas Fleischer archlinux at cryptocrack dot de
+# Contributor: Eric Johnson e...@coding-zone.com
+pkgname=words
+pkgver=2.1
+pkgrel=3
+pkgdesc=A collection of International 'words' files for /usr/share/dict.
+arch=('any')
+url=ftp://ftp.gnu.org/gnu/aspell/dict/0index.html;
+license=('GPL' 'GPL2' 'custom')
+depends=()
+makedepends=('glibc' 'aspell')
+install=words.install
+source=('ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-7.1-0.tar.bz2'
+'ftp://ftp.gnu.org/gnu/aspell/dict/ca/aspell6-ca-2.1.5-1.tar.bz2'
+'ftp://ftp.gnu.org/gnu/aspell/dict/fi/aspell6-fi-0.7-0.tar.bz2'
+'ftp://ftp.gnu.org/gnu/aspell/dict/fr/aspell-fr-0.50-3.tar.bz2'
+'ftp://ftp.gnu.org/gnu/aspell/dict/de-alt/aspell6-de-alt-2.1-1.tar.bz2'
+

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

2014-09-21 Thread Kyle Keen
Date: Sunday, September 21, 2014 @ 09:28:37
  Author: kkeen
Revision: 119352

upgpkg: python-markdown 2.5-1

Modified:
  python-markdown/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 07:19:59 UTC (rev 119351)
+++ PKGBUILD2014-09-21 07:28:37 UTC (rev 119352)
@@ -8,7 +8,7 @@
 pkgbase=python-markdown
 pkgname=('python-markdown' 'python2-markdown')
 _pkgbasename=Markdown
-pkgver=2.4.1
+pkgver=2.5
 pkgrel=1
 pkgdesc=Python implementation of John Gruber's Markdown.
 arch=('any')
@@ -16,7 +16,7 @@
 license=('BSD')
 makedepends=('python' 'python2')
 
source=(http://pypi.python.org/packages/source/M/$_pkgbasename/$_pkgbasename-$pkgver.tar.gz;)
-md5sums=('5e13d1b1f1da4838b7a5db157143e334')
+md5sums=('37d4ef8512c595ea5c2ce70ce3a6c2ea')
 
 build() {
   # bug in 2.4, some DOS line endings slipped in



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

2014-09-21 Thread Kyle Keen
Date: Sunday, September 21, 2014 @ 09:30:18
  Author: kkeen
Revision: 119353

archrelease: copy trunk to community-any

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-21 07:28:37 UTC (rev 119352)
+++ PKGBUILD2014-09-21 07:30:18 UTC (rev 119353)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-# Contributor: Angel Velasquez an...@archlinux.org
-# Contributor: Andrew Antle andrew dot antle at gmail dot com
-# Contributor: Thomas Dziedzic  gostrc at gmail 
-# Contributor: Chaiwat Suttipongsakul cwt at bashell dot com
-
-pkgbase=python-markdown
-pkgname=('python-markdown' 'python2-markdown')
-_pkgbasename=Markdown
-pkgver=2.4.1
-pkgrel=1
-pkgdesc=Python implementation of John Gruber's Markdown.
-arch=('any')
-url='http://pypi.python.org/pypi/Markdown'
-license=('BSD')
-makedepends=('python' 'python2')
-source=(http://pypi.python.org/packages/source/M/$_pkgbasename/$_pkgbasename-$pkgver.tar.gz;)
-md5sums=('5e13d1b1f1da4838b7a5db157143e334')
-
-build() {
-  # bug in 2.4, some DOS line endings slipped in
-  find $_pkgbasename-$pkgver/ -name '*py' | xargs sed -i 's|\r||g'
-
-  cp -r $_pkgbasename-$pkgver $srcdir/python2-markdown
-  cd $srcdir/python2-markdown
-  find $srcdir/python2-markdown -name '*py' | xargs sed -i 's|#!/usr/bin/env 
python$|2|'
-}
-
-package_python-markdown() {
-  depends=('python')
-  cd $srcdir/$_pkgbasename-$pkgver
-  python3 setup.py install --root=$pkgdir --optimize=0
-  install -Dm644 LICENSE.md 
$pkgdir/usr/share/licenses/python-markdown/LICENSE
-}
-
-package_python2-markdown() {
-  depends=('python2')
-  cd $srcdir/python2-markdown
-  python2 setup.py install --root=$pkgdir --optimize=0
-  mv $pkgdir/usr/bin/markdown_py $pkgdir/usr/bin/markdown_py2
-  install -Dm644 LICENSE.md 
$pkgdir/usr/share/licenses/python2-markdown/LICENSE
-}

Copied: python-markdown/repos/community-any/PKGBUILD (from rev 119352, 
python-markdown/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-21 07:30:18 UTC (rev 119353)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Kyle Keen keen...@gmail.com
+# Contributor: Angel Velasquez an...@archlinux.org
+# Contributor: Andrew Antle andrew dot antle at gmail dot com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Chaiwat Suttipongsakul cwt at bashell dot com
+
+pkgbase=python-markdown
+pkgname=('python-markdown' 'python2-markdown')
+_pkgbasename=Markdown
+pkgver=2.5
+pkgrel=1
+pkgdesc=Python implementation of John Gruber's Markdown.
+arch=('any')
+url='http://pypi.python.org/pypi/Markdown'
+license=('BSD')
+makedepends=('python' 'python2')
+source=(http://pypi.python.org/packages/source/M/$_pkgbasename/$_pkgbasename-$pkgver.tar.gz;)
+md5sums=('37d4ef8512c595ea5c2ce70ce3a6c2ea')
+
+build() {
+  # bug in 2.4, some DOS line endings slipped in
+  find $_pkgbasename-$pkgver/ -name '*py' | xargs sed -i 's|\r||g'
+
+  cp -r $_pkgbasename-$pkgver $srcdir/python2-markdown
+  cd $srcdir/python2-markdown
+  find $srcdir/python2-markdown -name '*py' | xargs sed -i 's|#!/usr/bin/env 
python$|2|'
+}
+
+package_python-markdown() {
+  depends=('python')
+  cd $srcdir/$_pkgbasename-$pkgver
+  python3 setup.py install --root=$pkgdir --optimize=0
+  install -Dm644 LICENSE.md 
$pkgdir/usr/share/licenses/python-markdown/LICENSE
+}
+
+package_python2-markdown() {
+  depends=('python2')
+  cd $srcdir/python2-markdown
+  python2 setup.py install --root=$pkgdir --optimize=0
+  mv $pkgdir/usr/bin/markdown_py $pkgdir/usr/bin/markdown_py2
+  install -Dm644 LICENSE.md 
$pkgdir/usr/share/licenses/python2-markdown/LICENSE
+}



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

2014-09-21 Thread Martin Wimpress
Date: Sunday, September 21, 2014 @ 11:35:18
  Author: flexiondotorg
Revision: 119354

upgpkg: syncthing 0.9.17-1 - New upstream release.

Modified:
  syncthing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 07:30:18 UTC (rev 119353)
+++ PKGBUILD2014-09-21 09:35:18 UTC (rev 119354)
@@ -5,7 +5,7 @@
 # Contributor: korjjj korjjj+...@gmail.com
 
 pkgname=syncthing
-pkgver=0.9.15
+pkgver=0.9.17
 pkgrel=1
 pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
 url=http://syncthing.net/;



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

2014-09-21 Thread Martin Wimpress
Date: Sunday, September 21, 2014 @ 11:35:38
  Author: flexiondotorg
Revision: 119355

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

Added:
  syncthing/repos/community-i686/PKGBUILD
(from rev 119354, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-i686/syncthing.1
(from rev 119354, syncthing/trunk/syncthing.1)
  syncthing/repos/community-i686/syncthing.install
(from rev 119354, syncthing/trunk/syncthing.install)
  syncthing/repos/community-i686/syncthing@.service
(from rev 119354, syncthing/trunk/syncthing@.service)
  syncthing/repos/community-x86_64/PKGBUILD
(from rev 119354, syncthing/trunk/PKGBUILD)
  syncthing/repos/community-x86_64/syncthing.1
(from rev 119354, syncthing/trunk/syncthing.1)
  syncthing/repos/community-x86_64/syncthing.install
(from rev 119354, syncthing/trunk/syncthing.install)
  syncthing/repos/community-x86_64/syncthing@.service
(from rev 119354, syncthing/trunk/syncthing@.service)
Deleted:
  syncthing/repos/community-i686/PKGBUILD
  syncthing/repos/community-i686/syncthing.1
  syncthing/repos/community-i686/syncthing.install
  syncthing/repos/community-i686/syncthing@.service
  syncthing/repos/community-x86_64/PKGBUILD
  syncthing/repos/community-x86_64/syncthing.1
  syncthing/repos/community-x86_64/syncthing.install
  syncthing/repos/community-x86_64/syncthing@.service

-+
 /PKGBUILD   |  104 ++
 /syncthing.1|  188 ++
 /syncthing.install  |   26 
 /syncthing@.service |   24 
 community-i686/PKGBUILD |   52 -
 community-i686/syncthing.1  |   94 -
 community-i686/syncthing.install|   13 --
 community-i686/syncthing@.service   |   12 --
 community-x86_64/PKGBUILD   |   52 -
 community-x86_64/syncthing.1|   94 -
 community-x86_64/syncthing.install  |   13 --
 community-x86_64/syncthing@.service |   12 --
 12 files changed, 342 insertions(+), 342 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-21 09:35:18 UTC (rev 119354)
+++ community-i686/PKGBUILD 2014-09-21 09:35:38 UTC (rev 119355)
@@ -1,52 +0,0 @@
-# $Id:
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: Sauyon Lee sauy...@sauyon.com
-# Contributor: Kevin MacMartin pruri...@gmail.com
-# Contributor: korjjj korjjj+...@gmail.com
-
-pkgname=syncthing
-pkgver=0.9.15
-pkgrel=1
-pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
-url=http://syncthing.net/;
-license=('MIT')
-arch=('i686' 'x86_64')
-depends=('glibc')
-makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
-source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
-syncthing@.service
-syncthing.1)
-sha1sums=('SKIP'
-  '204cad3823306c793a14a17a23220e26199160d4'
-  '17be8b3f99c577e325765abc251f597e204d7711')
-install=${pkgname}.install
-
-prepare() {
-cd ${srcdir}
-mkdir -p src/github.com/syncthing
-mv ${pkgname}-${pkgver} src/github.com/syncthing/${pkgname}
-}
-
-build() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-./build.sh  -tags noupgrade
-}
-
-check() {
-export GOPATH=${srcdir}
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-./build.sh test
-}
-
-package() {
-cd ${srcdir}/src/github.com/syncthing/${pkgname}
-for FILE in bin/*; do
-BASE_FILE=$(basename ${FILE})
-install -D -m 755 bin/${BASE_FILE} ${pkgdir}/usr/bin/${BASE_FILE}
-done
-install -D -m 644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-install -D -m 644 README.md ${pkgdir}/usr/share/doc/${pkgname}/README.md
-install -D -m 644 ${srcdir}/${pkgname}@.service 
${pkgdir}/usr/lib/systemd/system/${pkgname}@.service
-install -D -m 644 ${srcdir}/${pkgname}.1 
${pkgdir}/usr/share/man/man1/${pkgname}.1
-}

Copied: syncthing/repos/community-i686/PKGBUILD (from rev 119354, 
syncthing/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-21 09:35:38 UTC (rev 119355)
@@ -0,0 +1,52 @@
+# $Id:
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Sauyon Lee sauy...@sauyon.com
+# Contributor: Kevin MacMartin pruri...@gmail.com
+# Contributor: korjjj korjjj+...@gmail.com
+
+pkgname=syncthing
+pkgver=0.9.17
+pkgrel=1
+pkgdesc=Open Source Continuous Replication / Cluster Synchronization Thing
+url=http://syncthing.net/;
+license=('MIT')
+arch=('i686' 'x86_64')
+depends=('glibc')
+makedepends=('git' 'go' 'godep' 'inetutils' 'sed')
+source=($pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git#tag=v${pkgver};
+syncthing@.service
+  

[arch-commits] Commit in mate-applet-streamer/trunk (PKGBUILD)

2014-09-21 Thread Martin Wimpress
Date: Sunday, September 21, 2014 @ 11:42:27
  Author: flexiondotorg
Revision: 119356

upgpkg: mate-applet-streamer 0.1.0-2 - Rebuild against MATE 1.8

Modified:
  mate-applet-streamer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 09:35:38 UTC (rev 119355)
+++ PKGBUILD2014-09-21 09:42:27 UTC (rev 119356)
@@ -3,7 +3,7 @@
 
 pkgname=mate-applet-streamer
 pkgver=0.1.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A MATE panel applet to let you play your favourite online radio 
station with a single click.
 url=http://www.zavedil.com/online-radio-applet/;
 arch=('i686' 'x86_64')



[arch-commits] Commit in mate-applet-streamer/repos (8 files)

2014-09-21 Thread Martin Wimpress
Date: Sunday, September 21, 2014 @ 11:42:48
  Author: flexiondotorg
Revision: 119357

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

Added:
  mate-applet-streamer/repos/community-i686/PKGBUILD
(from rev 119356, mate-applet-streamer/trunk/PKGBUILD)
  mate-applet-streamer/repos/community-i686/mate-applet-streamer.install
(from rev 119356, mate-applet-streamer/trunk/mate-applet-streamer.install)
  mate-applet-streamer/repos/community-x86_64/PKGBUILD
(from rev 119356, mate-applet-streamer/trunk/PKGBUILD)
  mate-applet-streamer/repos/community-x86_64/mate-applet-streamer.install
(from rev 119356, mate-applet-streamer/trunk/mate-applet-streamer.install)
Deleted:
  mate-applet-streamer/repos/community-i686/PKGBUILD
  mate-applet-streamer/repos/community-i686/mate-applet-streamer.install
  mate-applet-streamer/repos/community-x86_64/PKGBUILD
  mate-applet-streamer/repos/community-x86_64/mate-applet-streamer.install

---+
 /PKGBUILD |   60 
 /mate-applet-streamer.install |   22 
 community-i686/PKGBUILD   |   30 
 community-i686/mate-applet-streamer.install   |   11 
 community-x86_64/PKGBUILD |   30 
 community-x86_64/mate-applet-streamer.install |   11 
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-21 09:42:27 UTC (rev 119356)
+++ community-i686/PKGBUILD 2014-09-21 09:42:48 UTC (rev 119357)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-
-pkgname=mate-applet-streamer
-pkgver=0.1.0
-pkgrel=1
-pkgdesc=A MATE panel applet to let you play your favourite online radio 
station with a single click.
-url=http://www.zavedil.com/online-radio-applet/;
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('gst-plugins-base' 'gtk2' 'libnotify' 'mate-panel' 'sqlite')
-makedepends=('mate-common')
-optdepends=('gst-plugins-bad: for MP3 decoding')
-source=(http://www.zavedil.com/wp-content/uploads/2014/04/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('8ccd0f6471de7cb0902ea8c1087b9b6f0293156a')
-install=${pkgname}.install
-
-build() {
-cd ${srcdir}/${pkgname}-${pkgver}
-./configure \
---prefix=/usr \
---libexecdir=/usr/lib/${pkgname}
-make
-}
-
-package() {
-cd ${srcdir}/${pkgname}-${pkgver}
-make DESTDIR=${pkgdir} install
-rm -f ${pkgdir}/usr/share/glib-2.0/schemas/gschemas.compiled
-}

Copied: mate-applet-streamer/repos/community-i686/PKGBUILD (from rev 119356, 
mate-applet-streamer/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-21 09:42:48 UTC (rev 119357)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+
+pkgname=mate-applet-streamer
+pkgver=0.1.0
+pkgrel=2
+pkgdesc=A MATE panel applet to let you play your favourite online radio 
station with a single click.
+url=http://www.zavedil.com/online-radio-applet/;
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('gst-plugins-base' 'gtk2' 'libnotify' 'mate-panel' 'sqlite')
+makedepends=('mate-common')
+optdepends=('gst-plugins-bad: for MP3 decoding')
+source=(http://www.zavedil.com/wp-content/uploads/2014/04/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('8ccd0f6471de7cb0902ea8c1087b9b6f0293156a')
+install=${pkgname}.install
+
+build() {
+cd ${srcdir}/${pkgname}-${pkgver}
+./configure \
+--prefix=/usr \
+--libexecdir=/usr/lib/${pkgname}
+make
+}
+
+package() {
+cd ${srcdir}/${pkgname}-${pkgver}
+make DESTDIR=${pkgdir} install
+rm -f ${pkgdir}/usr/share/glib-2.0/schemas/gschemas.compiled
+}

Deleted: community-i686/mate-applet-streamer.install
===
--- community-i686/mate-applet-streamer.install 2014-09-21 09:42:27 UTC (rev 
119356)
+++ community-i686/mate-applet-streamer.install 2014-09-21 09:42:48 UTC (rev 
119357)
@@ -1,11 +0,0 @@
-post_install() {
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade() {
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: mate-applet-streamer/repos/community-i686/mate-applet-streamer.install 
(from rev 119356, mate-applet-streamer/trunk/mate-applet-streamer.install)
===
--- community-i686/mate-applet-streamer.install (rev 0)
+++ community-i686/mate-applet-streamer.install 2014-09-21 09:42:48 UTC (rev 
119357)
@@ -0,0 +1,11 @@
+post_install() {
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade() {
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: 

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

2014-09-21 Thread Alexander Rødseth
Date: Sunday, September 21, 2014 @ 11:52:07
  Author: arodseth
Revision: 119358

upgpkg: libhubbub 0.3.0-2

Modified:
  libhubbub/trunk/PKGBUILD

--+
 PKGBUILD |   15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 09:42:48 UTC (rev 119357)
+++ PKGBUILD2014-09-21 09:52:07 UTC (rev 119358)
@@ -5,7 +5,7 @@
 
 pkgname=libhubbub
 pkgver=0.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='HTML5 compliant parsing library'
 arch=('x86_64' 'i686')
 url='http://www.netsurf-browser.org/projects/hubbub/'
@@ -18,17 +18,18 @@
 
source=(http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz;)
 sha256sums=('dbf3b55bf2531d2a8e70f370a9b396cc78bfd5a092f87beb10b05c04fd7cdaa7')
 
+prepare() {
+  sed -i 's:-Werror::' $pkgname-$pkgver/Makefile
+}
+
 build() {
-  cd $pkgname-$pkgver
-
-  sed -i 's:-Werror::' Makefile
-  make LIBDIR=lib PREFIX=/usr COMPONENT_TYPE='lib-shared'
+  make -C $pkgname-$pkgver LIBDIR=lib PREFIX=/usr COMPONENT_TYPE='lib-shared'
 }
 
 package() {
   cd $pkgname-$pkgver
-
-  make install LIBDIR=lib PREFIX=/usr DESTDIR=$pkgdir 
COMPONENT_TYPE='lib-shared'   
+  make install \
+LIBDIR=lib PREFIX=/usr DESTDIR=$pkgdir COMPONENT_TYPE='lib-shared'
   install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
 }
 



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

2014-09-21 Thread Alexander Rødseth
Date: Sunday, September 21, 2014 @ 11:52:22
  Author: arodseth
Revision: 119359

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

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

---+
 /PKGBUILD |   72 
 community-i686/PKGBUILD   |   35 -
 community-x86_64/PKGBUILD |   35 -
 3 files changed, 72 insertions(+), 70 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-21 09:52:07 UTC (rev 119358)
+++ community-i686/PKGBUILD 2014-09-21 09:52:22 UTC (rev 119359)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# Contributor: Paulo Matias matiasΘarchlinux-br·org
-
-pkgname=libhubbub
-pkgver=0.3.0
-pkgrel=1
-pkgdesc='HTML5 compliant parsing library'
-arch=('x86_64' 'i686')
-url='http://www.netsurf-browser.org/projects/hubbub/'
-license=('MIT')
-provides=('hubbub')
-replaces=('hubbub')
-conflicts=('hubbub')
-depends=('libparserutils=0.2.0')
-makedepends=('netsurf-buildsystem')
-source=(http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz;)
-sha256sums=('dbf3b55bf2531d2a8e70f370a9b396cc78bfd5a092f87beb10b05c04fd7cdaa7')
-
-build() {
-  cd $pkgname-$pkgver
-
-  sed -i 's:-Werror::' Makefile
-  make LIBDIR=lib PREFIX=/usr COMPONENT_TYPE='lib-shared'
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install LIBDIR=lib PREFIX=/usr DESTDIR=$pkgdir 
COMPONENT_TYPE='lib-shared'   
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libhubbub/repos/community-i686/PKGBUILD (from rev 119358, 
libhubbub/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-21 09:52:22 UTC (rev 119359)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Paulo Matias matiasΘarchlinux-br·org
+
+pkgname=libhubbub
+pkgver=0.3.0
+pkgrel=2
+pkgdesc='HTML5 compliant parsing library'
+arch=('x86_64' 'i686')
+url='http://www.netsurf-browser.org/projects/hubbub/'
+license=('MIT')
+provides=('hubbub')
+replaces=('hubbub')
+conflicts=('hubbub')
+depends=('libparserutils=0.2.0')
+makedepends=('netsurf-buildsystem')
+source=(http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz;)
+sha256sums=('dbf3b55bf2531d2a8e70f370a9b396cc78bfd5a092f87beb10b05c04fd7cdaa7')
+
+prepare() {
+  sed -i 's:-Werror::' $pkgname-$pkgver/Makefile
+}
+
+build() {
+  make -C $pkgname-$pkgver LIBDIR=lib PREFIX=/usr COMPONENT_TYPE='lib-shared'
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make install \
+LIBDIR=lib PREFIX=/usr DESTDIR=$pkgdir COMPONENT_TYPE='lib-shared'
+  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-09-21 09:52:07 UTC (rev 119358)
+++ community-x86_64/PKGBUILD   2014-09-21 09:52:22 UTC (rev 119359)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-# Contributor: Paulo Matias matiasΘarchlinux-br·org
-
-pkgname=libhubbub
-pkgver=0.3.0
-pkgrel=1
-pkgdesc='HTML5 compliant parsing library'
-arch=('x86_64' 'i686')
-url='http://www.netsurf-browser.org/projects/hubbub/'
-license=('MIT')
-provides=('hubbub')
-replaces=('hubbub')
-conflicts=('hubbub')
-depends=('libparserutils=0.2.0')
-makedepends=('netsurf-buildsystem')
-source=(http://download.netsurf-browser.org/libs/releases/$pkgname-$pkgver-src.tar.gz;)
-sha256sums=('dbf3b55bf2531d2a8e70f370a9b396cc78bfd5a092f87beb10b05c04fd7cdaa7')
-
-build() {
-  cd $pkgname-$pkgver
-
-  sed -i 's:-Werror::' Makefile
-  make LIBDIR=lib PREFIX=/usr COMPONENT_TYPE='lib-shared'
-}
-
-package() {
-  cd $pkgname-$pkgver
-
-  make install LIBDIR=lib PREFIX=/usr DESTDIR=$pkgdir 
COMPONENT_TYPE='lib-shared'   
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libhubbub/repos/community-x86_64/PKGBUILD (from rev 119358, 
libhubbub/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-09-21 09:52:22 UTC (rev 119359)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# 

[arch-commits] Commit in (android-ndk)

2014-09-21 Thread Alexander Rødseth
Date: Sunday, September 21, 2014 @ 11:57:23
  Author: arodseth
Revision: 119360

Too soon. android-sdk requires a lot of work.

android-sdk requires a lot of work to be moved first, and android-ndk depends 
on android-sdk. Still think it would be nice to have both android-sdk and 
android-ndk in [community].

Deleted:
  android-ndk/



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

2014-09-21 Thread Laurent Carlier
Date: Sunday, September 21, 2014 @ 12:27:46
  Author: lcarlier
Revision: 119361

upgpkg: lib32-mesa 10.3.0-2.1

partially fix FS#42046

Modified:
  lib32-mesa/trunk/PKGBUILD

--+
 PKGBUILD |   16 +++-
 1 file changed, 11 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 09:57:23 UTC (rev 119360)
+++ PKGBUILD2014-09-21 10:27:46 UTC (rev 119361)
@@ -5,7 +5,7 @@
 pkgbase=lib32-mesa
 pkgname=('lib32-mesa-dri' 'lib32-mesa-vdpau' 'lib32-mesa' 'lib32-mesa-libgl')
 pkgver=10.3.0
-pkgrel=2
+pkgrel=2.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'
@@ -116,8 +116,11 @@
   mv -v ${srcdir}/fakeinstall/usr/lib32/libEGL.so*   ${pkgdir}/usr/lib32/mesa/
   mv -v ${srcdir}/fakeinstall/usr/lib32/libGLES*.so* ${pkgdir}/usr/lib32/mesa/
 
-  install -m755 -d ${pkgdir}/usr/share/licenses/lib32-mesa
-  install -m644 ${srcdir}/LICENSE ${pkgdir}/usr/share/licenses/lib32-mesa/
+  # keep symlinks until pacman 4.2 FS#42046
+  #install -m755 -d ${pkgdir}/usr/share/licenses/lib32-mesa
+  #install -m644 ${srcdir}/LICENSE ${pkgdir}/usr/share/licenses/lib32-mesa/
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -s mesa $pkgdir/usr/share/licenses/lib32-mesa
 }
 
 package_lib32-mesa-libgl() {
@@ -144,6 +147,9 @@
   ln -s libGLESv2.so.2.0.0 ${pkgdir}/usr/lib32/libGLESv2.so.2
   ln -s libGLESv2.so.2.0.0 ${pkgdir}/usr/lib32/libGLESv2.so
 
-  install -m755 -d ${pkgdir}/usr/share/licenses/lib32-mesa-libgl
-  install -m644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/lib32-mesa-libgl/
+  # keep symlinks until pacman 4.2 FS#42046
+  #install -m755 -d ${pkgdir}/usr/share/licenses/lib32-mesa-libgl
+  #install -m644 ${srcdir}/LICENSE 
${pkgdir}/usr/share/licenses/lib32-mesa-libgl/
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -s lib32-mesa ${pkgdir}/usr/share/licenses/lib32-mesa-libgl
 }



[arch-commits] Commit in lib32-mesa/repos/multilib-testing-x86_64 (4 files)

2014-09-21 Thread Laurent Carlier
Date: Sunday, September 21, 2014 @ 12:27:53
  Author: lcarlier
Revision: 119362

archrelease: copy trunk to multilib-testing-x86_64

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

--+
 LICENSE  |  164 
 PKGBUILD |  304 +++--
 2 files changed, 237 insertions(+), 231 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-09-21 10:27:46 UTC (rev 119361)
+++ LICENSE 2014-09-21 10:27:53 UTC (rev 119362)
@@ -1,82 +0,0 @@
-Disclaimer
-
-Mesa is a 3-D graphics library with an API which is very similar to
-that of OpenGL*
-To the extent that Mesa utilizes the OpenGL command syntax or state
-machine, it is being used with authorization from Silicon Graphics,
-Inc.(SGI). However, the author does not possess an OpenGL license
-from SGI, and makes no claim that Mesa is in any way a compatible
-replacement for OpenGL or associated with SGI. Those who want a
-licensed implementation of OpenGL should contact a licensed
-vendor.
-
-Please do not refer to the library as MesaGL (for legal
-reasons). It's just Mesa or The Mesa 3-D graphics
-library
-
-* OpenGL is a trademark of Silicon Graphics Incorporated.
-
-License / Copyright Information
-
-The Mesa distribution consists of several components.  Different copyrights
-and licenses apply to different components.  For example, GLUT is copyrighted
-by Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa
-device drivers are copyrighted by their authors.  See below for a list of
-Mesa's main components and the license for each.
-
-The core Mesa library is licensed according to the terms of the MIT license.
-This allows integration with the XFree86, Xorg and DRI projects.
-
-The default Mesa license is as follows:
-
-Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the Software),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
-BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Attention, Contributors
-
-When contributing to the Mesa project you must agree to the licensing terms
-of the component to which you're contributing.
-The following section lists the primary components of the Mesa distribution
-and their respective licenses.
-
-
-Mesa Component Licenses
-
-Component Location   Primary Author  License
-
-Main Mesa codesrc/mesa/  Brian Paul  Mesa (MIT)
-
-Device driverssrc/mesa/drivers/* See drivers See drivers
-
-Ext headers   include/GL/glext.h SGI SGI Free B
-  include/GL/glxext.h
-
-GLUT  src/glut/  Mark KilgardMark's copyright
-
-Mesa GLU library  src/glu/mesa/  Brian Paul  GNU-LGPL
-
-SGI GLU library   src/glu/sgi/   SGI SGI Free B
-
-demo programs progs/demos/   various see source files
-
-X demos   progs/xdemos/  Brian Paul  see source files
-
-SGI demos progs/samples/ SGI SGI copyright
-
-RedBook demos progs/redbook/ SGI SGI copyright

Copied: lib32-mesa/repos/multilib-testing-x86_64/LICENSE (from rev 119361, 
lib32-mesa/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-09-21 10:27:53 UTC (rev 119362)
@@ -0,0 +1,82 @@
+Disclaimer
+
+Mesa is a 3-D graphics library with an API which is very similar to
+that of OpenGL*
+To the extent that Mesa utilizes the OpenGL command syntax or state
+machine, it is being used with authorization from Silicon Graphics,

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

2014-09-21 Thread Jan de Groot
Date: Sunday, September 21, 2014 @ 12:47:47
  Author: jgc
Revision: 222530

upgpkg: dconf 0.22.0-1

Modified:
  dconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 05:05:48 UTC (rev 222529)
+++ PKGBUILD2014-09-21 10:47:47 UTC (rev 222530)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=dconf
-pkgver=0.21.0
+pkgver=0.22.0
 pkgrel=1
 pkgdesc=A low-level configuration system.
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 optdepends=('gtk3: for dconf-editor')
 install=dconf.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('600a620db8367fd757ffc4cf2f44d76ea14e90279ac289b269424e773a1d950b')
+sha256sums=('0a277cb0c3f09e77d9413c5a9b3577fc2b5d6e941b59b44940392e024a224b8e')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-21 Thread Jan de Groot
Date: Sunday, September 21, 2014 @ 12:47:53
  Author: jgc
Revision: 222531

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

Added:
  dconf/repos/gnome-unstable-i686/PKGBUILD
(from rev 222530, dconf/trunk/PKGBUILD)
  dconf/repos/gnome-unstable-i686/dconf.install
(from rev 222530, dconf/trunk/dconf.install)
  dconf/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 222530, dconf/trunk/PKGBUILD)
  dconf/repos/gnome-unstable-x86_64/dconf.install
(from rev 222530, dconf/trunk/dconf.install)
Deleted:
  dconf/repos/gnome-unstable-i686/PKGBUILD
  dconf/repos/gnome-unstable-i686/dconf.install
  dconf/repos/gnome-unstable-x86_64/PKGBUILD
  dconf/repos/gnome-unstable-x86_64/dconf.install

-+
 /PKGBUILD   |   62 ++
 /dconf.install  |   30 
 gnome-unstable-i686/PKGBUILD|   31 -
 gnome-unstable-i686/dconf.install   |   15 
 gnome-unstable-x86_64/PKGBUILD  |   31 -
 gnome-unstable-x86_64/dconf.install |   15 
 6 files changed, 92 insertions(+), 92 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2014-09-21 10:47:47 UTC (rev 222530)
+++ gnome-unstable-i686/PKGBUILD2014-09-21 10:47:53 UTC (rev 222531)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=dconf
-pkgver=0.21.0
-pkgrel=1
-pkgdesc=A low-level configuration system.
-arch=(i686 x86_64)
-url=http://live.gnome.org/dconf;
-license=('LGPL2.1')
-depends=('glib2')
-makedepends=('vala' 'gtk3' 'intltool' 'docbook-xsl' 'python' 'python2')
-optdepends=('gtk3: for dconf-editor')
-install=dconf.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('600a620db8367fd757ffc4cf2f44d76ea14e90279ac289b269424e773a1d950b')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/dconf
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make completiondir=/usr/share/bash-completion/completions DESTDIR=$pkgdir 
install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: dconf/repos/gnome-unstable-i686/PKGBUILD (from rev 222530, 
dconf/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-21 10:47:53 UTC (rev 222531)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=dconf
+pkgver=0.22.0
+pkgrel=1
+pkgdesc=A low-level configuration system.
+arch=(i686 x86_64)
+url=http://live.gnome.org/dconf;
+license=('LGPL2.1')
+depends=('glib2')
+makedepends=('vala' 'gtk3' 'intltool' 'docbook-xsl' 'python' 'python2')
+optdepends=('gtk3: for dconf-editor')
+install=dconf.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('0a277cb0c3f09e77d9413c5a9b3577fc2b5d6e941b59b44940392e024a224b8e')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/dconf
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make completiondir=/usr/share/bash-completion/completions DESTDIR=$pkgdir 
install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gnome-unstable-i686/dconf.install
===
--- gnome-unstable-i686/dconf.install   2014-09-21 10:47:47 UTC (rev 222530)
+++ gnome-unstable-i686/dconf.install   2014-09-21 10:47:53 UTC (rev 222531)
@@ -1,15 +0,0 @@
-post_install() {
-  gio-querymodules /usr/lib/gio/modules
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  if [[ -x /usr/bin/gtk-update-icon-cache ]]; then
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-  fi
-}
-
-post_upgrade(){
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: dconf/repos/gnome-unstable-i686/dconf.install (from rev 222530, 
dconf/trunk/dconf.install)
===
--- gnome-unstable-i686/dconf.install   (rev 0)
+++ gnome-unstable-i686/dconf.install   2014-09-21 10:47:53 UTC (rev 222531)
@@ -0,0 +1,15 @@
+post_install() {
+  gio-querymodules /usr/lib/gio/modules
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  if [[ -x /usr/bin/gtk-update-icon-cache ]]; then
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+  fi
+}
+
+post_upgrade(){
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2014-09-21 10:47:47 UTC (rev 222530)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-21 10:47:53 UTC (rev 222531)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru 

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

2014-09-21 Thread Jan de Groot
Date: Sunday, September 21, 2014 @ 12:52:46
  Author: jgc
Revision: 222532

upgpkg: aisleriot 3.13.90-1

Add environment variables to disable lock elision during build. Fixes build on 
pkgbuild.com due to guile crashing

Modified:
  aisleriot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 10:47:53 UTC (rev 222531)
+++ PKGBUILD2014-09-21 10:52:46 UTC (rev 222532)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=aisleriot
-pkgver=3.12.1
+pkgver=3.13.90
 pkgrel=1
 pkgdesc=A collection of patience games written in guile scheme
 arch=(i686 x86_64)
@@ -10,7 +10,7 @@
 url=http://www.gnome.org;
 groups=('gnome-extra')
 depends=(guile gtk3 librsvg libcanberra gconf hicolor-icon-theme dconf)
-makedepends=(intltool itstool docbook-xsl yelp-tools desktop-file-utils)
+makedepends=(intltool itstool docbook-xsl yelp-tools desktop-file-utils 
appdata-tools)
 optdepends=('libkdegames: KDE card sets'
 'pysolfc: PySol card sets'
 'pysolfc-cardsets: PySol card sets')
@@ -17,10 +17,12 @@
 options=('!emptydirs')
 install=aisleriot.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('64cb81f5bacd7064bafc38d29b925428ec9f85f06c0775f4b98b2ed3331b933c')
+sha256sums=('d8cb306f24facd2639d48103ec0f48d793f7e3c589f93cb3016c1f6a383ca8e3')
 
 build() {
   cd $pkgname-$pkgver
+  export GLIBC_PTHREAD_MUTEX=none
+  export GLIBC_PTHREAD_RWLOCK=none
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
 --libexecdir=/usr/lib --disable-static \
 --with-card-theme-formats=all \



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

2014-09-21 Thread Jan de Groot
Date: Sunday, September 21, 2014 @ 12:52:51
  Author: jgc
Revision: 222533

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

Added:
  aisleriot/repos/gnome-unstable-i686/
  aisleriot/repos/gnome-unstable-i686/PKGBUILD
(from rev 222532, aisleriot/trunk/PKGBUILD)
  aisleriot/repos/gnome-unstable-i686/aisleriot.install
(from rev 222532, aisleriot/trunk/aisleriot.install)
  aisleriot/repos/gnome-unstable-x86_64/
  aisleriot/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 222532, aisleriot/trunk/PKGBUILD)
  aisleriot/repos/gnome-unstable-x86_64/aisleriot.install
(from rev 222532, aisleriot/trunk/aisleriot.install)

-+
 gnome-unstable-i686/PKGBUILD|   46 ++
 gnome-unstable-i686/aisleriot.install   |   22 ++
 gnome-unstable-x86_64/PKGBUILD  |   46 ++
 gnome-unstable-x86_64/aisleriot.install |   22 ++
 4 files changed, 136 insertions(+)

Copied: aisleriot/repos/gnome-unstable-i686/PKGBUILD (from rev 222532, 
aisleriot/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-21 10:52:51 UTC (rev 222533)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=aisleriot
+pkgver=3.13.90
+pkgrel=1
+pkgdesc=A collection of patience games written in guile scheme
+arch=(i686 x86_64)
+license=(GPL)
+url=http://www.gnome.org;
+groups=('gnome-extra')
+depends=(guile gtk3 librsvg libcanberra gconf hicolor-icon-theme dconf)
+makedepends=(intltool itstool docbook-xsl yelp-tools desktop-file-utils 
appdata-tools)
+optdepends=('libkdegames: KDE card sets'
+'pysolfc: PySol card sets'
+'pysolfc-cardsets: PySol card sets')
+options=('!emptydirs')
+install=aisleriot.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('d8cb306f24facd2639d48103ec0f48d793f7e3c589f93cb3016c1f6a383ca8e3')
+
+build() {
+  cd $pkgname-$pkgver
+  export GLIBC_PTHREAD_MUTEX=none
+  export GLIBC_PTHREAD_RWLOCK=none
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --disable-static \
+--with-card-theme-formats=all \
+--with-kde-card-theme-path=/usr/share/apps/carddecks \
+--with-pysol-card-theme-path=/usr/share/PySolFC
+
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
+  install -m755 -d $pkgdir/usr/share/gconf/schemas
+  gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas \
+--domain aisleriot $pkgdir/etc/gconf/schemas/*.schemas
+  rm -f $pkgdir/etc/gconf/schemas/*.schemas
+}

Copied: aisleriot/repos/gnome-unstable-i686/aisleriot.install (from rev 222532, 
aisleriot/trunk/aisleriot.install)
===
--- gnome-unstable-i686/aisleriot.install   (rev 0)
+++ gnome-unstable-i686/aisleriot.install   2014-09-21 10:52:51 UTC (rev 
222533)
@@ -0,0 +1,22 @@
+post_install() {
+  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  usr/sbin/gconfpkg --install aisleriot
+}
+
+pre_upgrade() {
+  pre_remove
+}
+
+post_upgrade() {
+  post_install
+}
+
+pre_remove() {
+  usr/sbin/gconfpkg --uninstall aisleriot
+}
+
+post_remove() {
+  usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -f -t usr/share/icons/hicolor
+}

Copied: aisleriot/repos/gnome-unstable-x86_64/PKGBUILD (from rev 222532, 
aisleriot/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-21 10:52:51 UTC (rev 222533)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=aisleriot
+pkgver=3.13.90
+pkgrel=1
+pkgdesc=A collection of patience games written in guile scheme
+arch=(i686 x86_64)
+license=(GPL)
+url=http://www.gnome.org;
+groups=('gnome-extra')
+depends=(guile gtk3 librsvg libcanberra gconf hicolor-icon-theme dconf)
+makedepends=(intltool itstool docbook-xsl yelp-tools desktop-file-utils 
appdata-tools)
+optdepends=('libkdegames: KDE card sets'
+'pysolfc: PySol card sets'
+'pysolfc-cardsets: PySol card sets')
+options=('!emptydirs')
+install=aisleriot.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('d8cb306f24facd2639d48103ec0f48d793f7e3c589f93cb3016c1f6a383ca8e3')
+
+build() {
+  cd $pkgname-$pkgver
+  

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

2014-09-21 Thread Jan de Groot
Date: Sunday, September 21, 2014 @ 12:55:32
  Author: jgc
Revision: 222534

upgpkg: gnome-chess 3.13.92-1

Modified:
  gnome-chess/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 10:52:51 UTC (rev 222533)
+++ PKGBUILD2014-09-21 10:55:32 UTC (rev 222534)
@@ -3,13 +3,13 @@
 # Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-chess
-pkgver=3.12.3
+pkgver=3.13.92
 pkgrel=1
 pkgdesc=Play the classic two-player boardgame of chess
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('desktop-file-utils' 'hicolor-icon-theme' 'gtk3' 'librsvg' 'glu')
-makedepends=('intltool' 'itstool' 'gobject-introspection')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'gtk3' 'librsvg')
+makedepends=('intltool' 'itstool' 'gobject-introspection' 'python2')
 optdepends=('gnuchess: Play against computer')
 conflicts=('gnome-games')
 replaces=('gnome-games')
@@ -18,7 +18,7 @@
 url=https://live.gnome.org/Chess;
 groups=('gnome-extra')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('8e36200baedc8eafe3c7ab3fd748688240917ed76c845607ae38d912d30e7678')
+sha256sums=('4a698011a7a36f910b3e9a969d0b1d757b40e903c7a9efde63037f597e80a285')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-21 Thread Jan de Groot
Date: Sunday, September 21, 2014 @ 12:55:37
  Author: jgc
Revision: 222535

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

Added:
  gnome-chess/repos/gnome-unstable-i686/
  gnome-chess/repos/gnome-unstable-i686/PKGBUILD
(from rev 222534, gnome-chess/trunk/PKGBUILD)
  gnome-chess/repos/gnome-unstable-i686/gnome-chess.install
(from rev 222534, gnome-chess/trunk/gnome-chess.install)
  gnome-chess/repos/gnome-unstable-x86_64/
  gnome-chess/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 222534, gnome-chess/trunk/PKGBUILD)
  gnome-chess/repos/gnome-unstable-x86_64/gnome-chess.install
(from rev 222534, gnome-chess/trunk/gnome-chess.install)

---+
 gnome-unstable-i686/PKGBUILD  |   33 
 gnome-unstable-i686/gnome-chess.install   |   13 +++
 gnome-unstable-x86_64/PKGBUILD|   33 
 gnome-unstable-x86_64/gnome-chess.install |   13 +++
 4 files changed, 92 insertions(+)

Copied: gnome-chess/repos/gnome-unstable-i686/PKGBUILD (from rev 222534, 
gnome-chess/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-21 10:55:37 UTC (rev 222535)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=gnome-chess
+pkgver=3.13.92
+pkgrel=1
+pkgdesc=Play the classic two-player boardgame of chess
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'gtk3' 'librsvg')
+makedepends=('intltool' 'itstool' 'gobject-introspection' 'python2')
+optdepends=('gnuchess: Play against computer')
+conflicts=('gnome-games')
+replaces=('gnome-games')
+options=('!emptydirs')
+install=gnome-chess.install
+url=https://live.gnome.org/Chess;
+groups=('gnome-extra')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('4a698011a7a36f910b3e9a969d0b1d757b40e903c7a9efde63037f597e80a285')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: gnome-chess/repos/gnome-unstable-i686/gnome-chess.install (from rev 
222534, gnome-chess/trunk/gnome-chess.install)
===
--- gnome-unstable-i686/gnome-chess.install (rev 0)
+++ gnome-unstable-i686/gnome-chess.install 2014-09-21 10:55:37 UTC (rev 
222535)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -f -q usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Copied: gnome-chess/repos/gnome-unstable-x86_64/PKGBUILD (from rev 222534, 
gnome-chess/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2014-09-21 10:55:37 UTC (rev 222535)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=gnome-chess
+pkgver=3.13.92
+pkgrel=1
+pkgdesc=Play the classic two-player boardgame of chess
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('desktop-file-utils' 'hicolor-icon-theme' 'gtk3' 'librsvg')
+makedepends=('intltool' 'itstool' 'gobject-introspection' 'python2')
+optdepends=('gnuchess: Play against computer')
+conflicts=('gnome-games')
+replaces=('gnome-games')
+options=('!emptydirs')
+install=gnome-chess.install
+url=https://live.gnome.org/Chess;
+groups=('gnome-extra')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('4a698011a7a36f910b3e9a969d0b1d757b40e903c7a9efde63037f597e80a285')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: gnome-chess/repos/gnome-unstable-x86_64/gnome-chess.install (from rev 
222534, gnome-chess/trunk/gnome-chess.install)
===
--- gnome-unstable-x86_64/gnome-chess.install   (rev 0)
+++ gnome-unstable-x86_64/gnome-chess.install   2014-09-21 10:55:37 UTC (rev 
222535)
@@ -0,0 +1,13 @@
+post_install() {
+  glib-compile-schemas usr/share/glib-2.0/schemas
+  update-desktop-database -q
+  gtk-update-icon-cache -f -q usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2014-09-21 Thread Laurent Carlier
Date: Sunday, September 21, 2014 @ 13:07:21
  Author: lcarlier
Revision: 222536

upgpkg: xorg-server 1.16.1-1

upstream update 1.16.1

Modified:
  xorg-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 10:55:37 UTC (rev 222535)
+++ PKGBUILD2014-09-21 11:07:21 UTC (rev 222536)
@@ -4,8 +4,8 @@
 
 pkgbase=xorg-server
 pkgname=('xorg-server' 'xorg-server-xephyr' 'xorg-server-xdmx' 
'xorg-server-xvfb' 'xorg-server-xnest' 'xorg-server-xwayland' 
'xorg-server-common' 'xorg-server-devel')
-pkgver=1.16.0
-pkgrel=6 # build first with 0.1 and then rebuild it after xf86-input-evdev 
rebuild
+pkgver=1.16.1
+pkgrel=1 # build first with 0.1 and then rebuild it after xf86-input-evdev 
rebuild
 arch=('i686' 'x86_64')
 license=('custom')
 url=http://xorg.freedesktop.org;
@@ -18,15 +18,13 @@
 source=(${url}/releases/individual/xserver/${pkgbase}-${pkgver}.tar.bz2{,.sig}
 autoconfig-nvidia.patch
 autoconfig-sis.patch
-glamor-upstream-fix.patch
 nvidia-drm-outputclass.conf
 xvfb-run
 xvfb-run.1)
-sha256sums=('38330a03c5f7a38745a3f9816cf069db5b8844eebb358fd39dbabf61f32cd06b'
+sha256sums=('f4677c6ec9fb7b59648321737087aeb9963b60bcea50ee3773fe46be1a37e060'
 'SKIP'
 '66e25f76a7496c429e0aff4b0670f168719bb0ceaeb88c6f2272f2bf3ed21162'
 'd027776fac1f7675b0a9ee817502290b1c45f9c09b0f0a6bb058c35f92361e84'
-'fbd898f0e867c77c9bf918fd2e7956c7776ecb3cc3634c61290fb03513b47987'
 'af1c3d2ea5de7f6a6b5f7c60951a189a4749d1495e5462f3157ae7ac8fe1dc56'
 'ff0156309470fc1d378fd2e104338020a884295e285972cc88e250e031cc35b9'
 '2460adccd3362fefd4cdc5f1c70f332d7b578091fb9167bf88b5f91265bbd776')
@@ -39,8 +37,6 @@
   # this means that older drivers (304xx and before) aren't currently supported
   # Use nouveau/nv/nvidia drivers for nvidia devices
   patch -Np1 -i ../autoconfig-nvidia.patch
-  # merged upstream (1.16 branch)
-  patch -Np1 -i ../glamor-upstream-fix.patch
 }
 
 build() {
@@ -111,7 +107,7 @@
 
 package_xorg-server() {
   pkgdesc=Xorg X server
-  depends=(libepoxy libxdmcp libxfont libpciaccess libdrm pixman libgcrypt 
libxau xorg-server-common xf86-input-evdev libxshmfence)
+  depends=(libepoxy libxdmcp libxfont libpciaccess libdrm pixman libgcrypt 
libxau xorg-server-common xf86-input-evdev libxshmfence libgl)
   # see xorg-server-*/hw/xfree86/common/xf86Module.h for ABI versions - we 
provide major numbers that drivers can depend on
   # and /usr/lib/pkgconfig/xorg-server.pc in xorg-server-devel pkg
   provides=('X-ABI-VIDEODRV_VERSION=18' 'X-ABI-XINPUT_VERSION=21' 
'X-ABI-EXTENSION_VERSION=8.0' 'x-server')



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

2014-09-21 Thread Laurent Carlier
Date: Sunday, September 21, 2014 @ 13:07:51
  Author: lcarlier
Revision: 222537

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

Added:
  xorg-server/repos/testing-i686/
  xorg-server/repos/testing-i686/PKGBUILD
(from rev 222536, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-i686/autoconfig-nvidia.patch
(from rev 222536, xorg-server/trunk/autoconfig-nvidia.patch)
  xorg-server/repos/testing-i686/autoconfig-sis.patch
(from rev 222536, xorg-server/trunk/autoconfig-sis.patch)
  xorg-server/repos/testing-i686/glamor-upstream-fix.patch
(from rev 222536, xorg-server/trunk/glamor-upstream-fix.patch)
  xorg-server/repos/testing-i686/nvidia-drm-outputclass.conf
(from rev 222536, xorg-server/trunk/nvidia-drm-outputclass.conf)
  xorg-server/repos/testing-i686/xorg-server.install
(from rev 222536, xorg-server/trunk/xorg-server.install)
  xorg-server/repos/testing-i686/xvfb-run
(from rev 222536, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-i686/xvfb-run.1
(from rev 222536, xorg-server/trunk/xvfb-run.1)
  xorg-server/repos/testing-x86_64/
  xorg-server/repos/testing-x86_64/PKGBUILD
(from rev 222536, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-x86_64/autoconfig-nvidia.patch
(from rev 222536, xorg-server/trunk/autoconfig-nvidia.patch)
  xorg-server/repos/testing-x86_64/autoconfig-sis.patch
(from rev 222536, xorg-server/trunk/autoconfig-sis.patch)
  xorg-server/repos/testing-x86_64/glamor-upstream-fix.patch
(from rev 222536, xorg-server/trunk/glamor-upstream-fix.patch)
  xorg-server/repos/testing-x86_64/nvidia-drm-outputclass.conf
(from rev 222536, xorg-server/trunk/nvidia-drm-outputclass.conf)
  xorg-server/repos/testing-x86_64/xorg-server.install
(from rev 222536, xorg-server/trunk/xorg-server.install)
  xorg-server/repos/testing-x86_64/xvfb-run
(from rev 222536, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-x86_64/xvfb-run.1
(from rev 222536, xorg-server/trunk/xvfb-run.1)

+
 testing-i686/PKGBUILD  |  223 +
 testing-i686/autoconfig-nvidia.patch   |   28 ++
 testing-i686/autoconfig-sis.patch  |   21 ++
 testing-i686/glamor-upstream-fix.patch |  178 +
 testing-i686/nvidia-drm-outputclass.conf   |6 
 testing-i686/xorg-server.install   |   18 +
 testing-i686/xvfb-run  |  180 +
 testing-i686/xvfb-run.1|  282 +++
 testing-x86_64/PKGBUILD|  223 +
 testing-x86_64/autoconfig-nvidia.patch |   28 ++
 testing-x86_64/autoconfig-sis.patch|   21 ++
 testing-x86_64/glamor-upstream-fix.patch   |  178 +
 testing-x86_64/nvidia-drm-outputclass.conf |6 
 testing-x86_64/xorg-server.install |   18 +
 testing-x86_64/xvfb-run|  180 +
 testing-x86_64/xvfb-run.1  |  282 +++
 16 files changed, 1872 insertions(+)

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


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

2014-09-21 Thread Pierre Schmitz
Date: Sunday, September 21, 2014 @ 13:33:51
  Author: pierre
Revision: 222538

upgpkg: xz 5.0.7-1

Modified:
  xz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 11:07:51 UTC (rev 222537)
+++ PKGBUILD2014-09-21 11:33:51 UTC (rev 222538)
@@ -3,7 +3,7 @@
 # Contributor: François Charette firmi...@gmx.net
 
 pkgname=xz
-pkgver=5.0.6
+pkgver=5.0.7
 pkgrel=1
 pkgdesc='Library and command line tools for XZ and LZMA compressed files'
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 depends=('sh')
 source=(http://tukaani.org/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 http://tukaani.org/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
-md5sums=('cf04e9d298d91ec35c47aa19199197a3'
+md5sums=('60449e1c9c0eabefc9c3166e325636e5'
  'SKIP')
 
 build() {



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

2014-09-21 Thread Pierre Schmitz
Date: Sunday, September 21, 2014 @ 13:34:11
  Author: pierre
Revision: 222539

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

Added:
  xz/repos/testing-i686/
  xz/repos/testing-i686/PKGBUILD
(from rev 222538, xz/trunk/PKGBUILD)
  xz/repos/testing-x86_64/
  xz/repos/testing-x86_64/PKGBUILD
(from rev 222538, xz/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   38 ++
 testing-x86_64/PKGBUILD |   38 ++
 2 files changed, 76 insertions(+)

Copied: xz/repos/testing-i686/PKGBUILD (from rev 222538, xz/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-09-21 11:34:11 UTC (rev 222539)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+# Contributor: François Charette firmi...@gmx.net
+
+pkgname=xz
+pkgver=5.0.7
+pkgrel=1
+pkgdesc='Library and command line tools for XZ and LZMA compressed files'
+arch=('i686' 'x86_64')
+url='http://tukaani.org/xz/'
+license=('GPL' 'LGPL' 'custom')
+depends=('sh')
+source=(http://tukaani.org/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+http://tukaani.org/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
+md5sums=('60449e1c9c0eabefc9c3166e325636e5'
+ 'SKIP')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure --prefix=/usr \
+   --disable-rpath \
+   --enable-werror
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   install -d -m755 ${pkgdir}/usr/share/licenses/xz/
+   ln -sf /usr/share/doc/xz/COPYING ${pkgdir}/usr/share/licenses/xz/
+   ln -sf /usr/share/licenses/common/GPL2/license.txt 
${pkgdir}/usr/share/doc/xz/COPYING.GPLv2
+}

Copied: xz/repos/testing-x86_64/PKGBUILD (from rev 222538, xz/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2014-09-21 11:34:11 UTC (rev 222539)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+# Contributor: François Charette firmi...@gmx.net
+
+pkgname=xz
+pkgver=5.0.7
+pkgrel=1
+pkgdesc='Library and command line tools for XZ and LZMA compressed files'
+arch=('i686' 'x86_64')
+url='http://tukaani.org/xz/'
+license=('GPL' 'LGPL' 'custom')
+depends=('sh')
+source=(http://tukaani.org/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+http://tukaani.org/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
+md5sums=('60449e1c9c0eabefc9c3166e325636e5'
+ 'SKIP')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure --prefix=/usr \
+   --disable-rpath \
+   --enable-werror
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   install -d -m755 ${pkgdir}/usr/share/licenses/xz/
+   ln -sf /usr/share/doc/xz/COPYING ${pkgdir}/usr/share/licenses/xz/
+   ln -sf /usr/share/licenses/common/GPL2/license.txt 
${pkgdir}/usr/share/doc/xz/COPYING.GPLv2
+}



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

2014-09-21 Thread Daniel Isenmann
Date: Sunday, September 21, 2014 @ 15:41:55
  Author: daniel
Revision: 222540

upgpkg: gimp 2.8.14-1

New upstream release

Modified:
  gimp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 11:34:11 UTC (rev 222539)
+++ PKGBUILD2014-09-21 13:41:55 UTC (rev 222540)
@@ -2,7 +2,7 @@
 # Maintainer: Daniel Isenmann dan...@archlinux.org
 
 pkgname=gimp
-pkgver=2.8.10
+pkgver=2.8.14
 pkgrel=1
 pkgdesc=GNU Image Manipulation Program
 arch=('i686' 'x86_64')
@@ -20,24 +20,14 @@
 options=('!makeflags')
 conflicts=('gimp-devel')
 install=gimp.install
-source=(ftp://ftp.gimp.org/pub/gimp/v${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2 
linux.gpl 
-uri-backend-libcurl.patch
-   patch_CVE197.patch
-   patch_CVE1913.patch
-   freetype_location.patch)
-md5sums=('84c964aab7044489af69f7319bb59b47'
+source=(http://download.gimp.org/pub/gimp/v${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
 linux.gpl 
+uri-backend-libcurl.patch)
+md5sums=('233c948203383fa078434cc3f8f925cb'
  'bb27bc214261d36484093e857f015f38'
- 'e894f4b2ffa92c71448fdd350e9b78c6'
- '901643efc82fae57af466d8a0a8991ff'
- 'dcc2acc9f9962a7c83ffb4243c08c469'
- 'ca0f32cb329ddad8079f8e2c0fc75b29')
+ 'e894f4b2ffa92c71448fdd350e9b78c6')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  #patch -p1  ../uri-backend-libcurl.patch
-  patch -p1  ../patch_CVE1913.patch
-  patch -p1  ../patch_CVE197.patch
-  patch -p1  ../freetype_location.patch
   PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
 --enable-mp --enable-gimp-console --enable-gimp-remote \
 --enable-python --with-gif-compression=lzw --with-libcurl \
@@ -56,3 +46,4 @@
   ln -s gimptool-2.0 ${pkgdir}/usr/bin/gimptool
   ln -sf gimptool-2.0.1.gz ${pkgdir}/usr/share/man/man1/gimptool.1.gz
 }
+



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

2014-09-21 Thread Daniel Isenmann
Date: Sunday, September 21, 2014 @ 15:42:05
  Author: daniel
Revision: 222541

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

Added:
  gimp/repos/extra-i686/PKGBUILD
(from rev 222540, gimp/trunk/PKGBUILD)
  gimp/repos/extra-i686/freetype_location.patch
(from rev 222540, gimp/trunk/freetype_location.patch)
  gimp/repos/extra-i686/gimp.install
(from rev 222540, gimp/trunk/gimp.install)
  gimp/repos/extra-i686/linux.gpl
(from rev 222540, gimp/trunk/linux.gpl)
  gimp/repos/extra-i686/patch_CVE1913.patch
(from rev 222540, gimp/trunk/patch_CVE1913.patch)
  gimp/repos/extra-i686/patch_CVE197.patch
(from rev 222540, gimp/trunk/patch_CVE197.patch)
  gimp/repos/extra-i686/uri-backend-libcurl.patch
(from rev 222540, gimp/trunk/uri-backend-libcurl.patch)
  gimp/repos/extra-x86_64/PKGBUILD
(from rev 222540, gimp/trunk/PKGBUILD)
  gimp/repos/extra-x86_64/freetype_location.patch
(from rev 222540, gimp/trunk/freetype_location.patch)
  gimp/repos/extra-x86_64/gimp.install
(from rev 222540, gimp/trunk/gimp.install)
  gimp/repos/extra-x86_64/linux.gpl
(from rev 222540, gimp/trunk/linux.gpl)
  gimp/repos/extra-x86_64/patch_CVE1913.patch
(from rev 222540, gimp/trunk/patch_CVE1913.patch)
  gimp/repos/extra-x86_64/patch_CVE197.patch
(from rev 222540, gimp/trunk/patch_CVE197.patch)
  gimp/repos/extra-x86_64/uri-backend-libcurl.patch
(from rev 222540, gimp/trunk/uri-backend-libcurl.patch)
Deleted:
  gimp/repos/extra-i686/PKGBUILD
  gimp/repos/extra-i686/freetype_location.patch
  gimp/repos/extra-i686/gimp.install
  gimp/repos/extra-i686/linux.gpl
  gimp/repos/extra-i686/patch_CVE1913.patch
  gimp/repos/extra-i686/patch_CVE197.patch
  gimp/repos/extra-i686/uri-backend-libcurl.patch
  gimp/repos/extra-x86_64/PKGBUILD
  gimp/repos/extra-x86_64/freetype_location.patch
  gimp/repos/extra-x86_64/gimp.install
  gimp/repos/extra-x86_64/linux.gpl
  gimp/repos/extra-x86_64/patch_CVE1913.patch
  gimp/repos/extra-x86_64/patch_CVE197.patch
  gimp/repos/extra-x86_64/uri-backend-libcurl.patch

+
 /PKGBUILD  |   98 ++
 /freetype_location.patch   |   50 +
 /gimp.install  |   24 ++
 /linux.gpl |   38 +++
 /patch_CVE1913.patch   |   60 ++
 /patch_CVE197.patch|  300 +++
 /uri-backend-libcurl.patch |  154 +++
 extra-i686/PKGBUILD|   58 -
 extra-i686/freetype_location.patch |   25 --
 extra-i686/gimp.install|   12 -
 extra-i686/linux.gpl   |   19 -
 extra-i686/patch_CVE1913.patch |   30 ---
 extra-i686/patch_CVE197.patch  |  150 ---
 extra-i686/uri-backend-libcurl.patch   |   77 ---
 extra-x86_64/PKGBUILD  |   58 -
 extra-x86_64/freetype_location.patch   |   25 --
 extra-x86_64/gimp.install  |   12 -
 extra-x86_64/linux.gpl |   19 -
 extra-x86_64/patch_CVE1913.patch   |   30 ---
 extra-x86_64/patch_CVE197.patch|  150 ---
 extra-x86_64/uri-backend-libcurl.patch |   77 ---
 21 files changed, 724 insertions(+), 742 deletions(-)

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


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

2014-09-21 Thread Jelle van der Waa
Date: Sunday, September 21, 2014 @ 16:19:36
  Author: jelle
Revision: 119363

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-21 10:27:53 UTC (rev 119362)
+++ community-i686/PKGBUILD 2014-09-21 14:19:36 UTC (rev 119363)
@@ -1,28 +0,0 @@
-# $Id$
-# Contributor: Bartłomiej Piotrowski
-# Contributor: Renato Garcia fgar.renatoATgmailDOTcom
-# Contributor: Gerson E. Ruotolo gersonruot...@globo.com
-
-pkgname=dos2unix
-pkgver=7.0
-pkgrel=1
-pkgdesc='Text file format converter'
-arch=('i686' 'x86_64')
-url='http://waterlan.home.xs4all.nl/dos2unix.html'
-license=('BSD')
-depends=('glibc')
-makedepends=('perl')
-conflicts=('hd2u')
-source=(http://waterlan.home.xs4all.nl/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('7abcb86ef1cfac629448a86d3d7b3a52')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-  install -D -m644 COPYING.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: dos2unix/repos/community-i686/PKGBUILD (from rev 119362, 
dos2unix/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-21 14:19:36 UTC (rev 119363)
@@ -0,0 +1,28 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski
+# Contributor: Renato Garcia fgar.renatoATgmailDOTcom
+# Contributor: Gerson E. Ruotolo gersonruot...@globo.com
+
+pkgname=dos2unix
+pkgver=7.0
+pkgrel=1
+pkgdesc='Text file format converter'
+arch=('i686' 'x86_64')
+url='http://waterlan.home.xs4all.nl/dos2unix.html'
+license=('BSD')
+depends=('glibc')
+makedepends=('perl')
+conflicts=('hd2u')
+source=(http://waterlan.home.xs4all.nl/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('7abcb86ef1cfac629448a86d3d7b3a52')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D -m644 COPYING.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}

Copied: dos2unix/repos/community-x86_64/PKGBUILD (from rev 119362, 
dos2unix/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-09-21 14:19:36 UTC (rev 119363)
@@ -0,0 +1,28 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski
+# Contributor: Renato Garcia fgar.renatoATgmailDOTcom
+# Contributor: Gerson E. Ruotolo gersonruot...@globo.com
+
+pkgname=dos2unix
+pkgver=7.0
+pkgrel=1
+pkgdesc='Text file format converter'
+arch=('i686' 'x86_64')
+url='http://waterlan.home.xs4all.nl/dos2unix.html'
+license=('BSD')
+depends=('glibc')
+makedepends=('perl')
+conflicts=('hd2u')
+source=(http://waterlan.home.xs4all.nl/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('7abcb86ef1cfac629448a86d3d7b3a52')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -D -m644 COPYING.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2014-09-21 Thread Jan de Groot
Date: Sunday, September 21, 2014 @ 16:30:17
  Author: jgc
Revision: 222542

upgpkg: gucharmap 3.14.0-1

Modified:
  gucharmap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 13:42:05 UTC (rev 222541)
+++ PKGBUILD2014-09-21 14:30:17 UTC (rev 222542)
@@ -3,7 +3,7 @@
 # Contributor: Jan De Groot j...@archlinux.org
 
 pkgname=gucharmap
-pkgver=3.13.90
+pkgver=3.14.0
 pkgrel=1
 pkgdesc=Gnome Unicode Charmap
 arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@
 groups=(gnome)
 install=gucharmap.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('b7f8f8ba46ea95f10c2e5f64eeb9d1269947f45a46bfbb1756d14c8b24d37b22')
+sha256sums=('7aeda976f0db68f923291717a166456da6d1c765fee6838e0d9432cea74749c8')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-21 Thread Jan de Groot
Date: Sunday, September 21, 2014 @ 16:30:23
  Author: jgc
Revision: 222543

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

Added:
  gucharmap/repos/gnome-unstable-i686/PKGBUILD
(from rev 222542, gucharmap/trunk/PKGBUILD)
  gucharmap/repos/gnome-unstable-i686/gucharmap.install
(from rev 222542, gucharmap/trunk/gucharmap.install)
  gucharmap/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 222542, gucharmap/trunk/PKGBUILD)
  gucharmap/repos/gnome-unstable-x86_64/gucharmap.install
(from rev 222542, gucharmap/trunk/gucharmap.install)
Deleted:
  gucharmap/repos/gnome-unstable-i686/PKGBUILD
  gucharmap/repos/gnome-unstable-i686/gucharmap.install
  gucharmap/repos/gnome-unstable-x86_64/PKGBUILD
  gucharmap/repos/gnome-unstable-x86_64/gucharmap.install

-+
 /PKGBUILD   |   62 ++
 /gucharmap.install  |   34 
 gnome-unstable-i686/PKGBUILD|   31 ---
 gnome-unstable-i686/gucharmap.install   |   17 
 gnome-unstable-x86_64/PKGBUILD  |   31 ---
 gnome-unstable-x86_64/gucharmap.install |   17 
 6 files changed, 96 insertions(+), 96 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2014-09-21 14:30:17 UTC (rev 222542)
+++ gnome-unstable-i686/PKGBUILD2014-09-21 14:30:23 UTC (rev 222543)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan De Groot j...@archlinux.org
-
-pkgname=gucharmap
-pkgver=3.13.90
-pkgrel=1
-pkgdesc=Gnome Unicode Charmap
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://www.gnome.org;
-depends=('dconf' 'gtk3' 'hicolor-icon-theme')
-makedepends=('gtk-doc' 'intltool' 'gobject-introspection' 'itstool' 
'docbook-xsl' 'desktop-file-utils' 'python2' 'appdata-tools')
-options=('!emptydirs')
-groups=(gnome)
-install=gucharmap.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('b7f8f8ba46ea95f10c2e5f64eeb9d1269947f45a46bfbb1756d14c8b24d37b22')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --disable-schemas-compile  --enable-introspection
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gucharmap/repos/gnome-unstable-i686/PKGBUILD (from rev 222542, 
gucharmap/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-21 14:30:23 UTC (rev 222543)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan De Groot j...@archlinux.org
+
+pkgname=gucharmap
+pkgver=3.14.0
+pkgrel=1
+pkgdesc=Gnome Unicode Charmap
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.gnome.org;
+depends=('dconf' 'gtk3' 'hicolor-icon-theme')
+makedepends=('gtk-doc' 'intltool' 'gobject-introspection' 'itstool' 
'docbook-xsl' 'desktop-file-utils' 'python2' 'appdata-tools')
+options=('!emptydirs')
+groups=(gnome)
+install=gucharmap.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('7aeda976f0db68f923291717a166456da6d1c765fee6838e0d9432cea74749c8')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --disable-schemas-compile  --enable-introspection
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: gnome-unstable-i686/gucharmap.install
===
--- gnome-unstable-i686/gucharmap.install   2014-09-21 14:30:17 UTC (rev 
222542)
+++ gnome-unstable-i686/gucharmap.install   2014-09-21 14:30:23 UTC (rev 
222543)
@@ -1,17 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-pre_upgrade() {
-  (( $(vercmp $2 3.3)  0 ))  gconfpkg --uninstall gucharmap
-  return 0
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: gucharmap/repos/gnome-unstable-i686/gucharmap.install (from rev 222542, 
gucharmap/trunk/gucharmap.install)
===
--- gnome-unstable-i686/gucharmap.install   (rev 0)
+++ gnome-unstable-i686/gucharmap.install   2014-09-21 14:30:23 UTC (rev 
222543)
@@ -0,0 +1,17 @@
+post_install() {
+  glib-compile-schemas /usr/share/glib-2.0/schemas
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  (( $(vercmp $2 3.3)  0 ))  gconfpkg 

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

2014-09-21 Thread Jan de Groot
Date: Sunday, September 21, 2014 @ 16:32:05
  Author: jgc
Revision: 222544

upgpkg: gnome-terminal 3.14.0-1

Modified:
  gnome-terminal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 14:30:23 UTC (rev 222543)
+++ PKGBUILD2014-09-21 14:32:05 UTC (rev 222544)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-terminal
-pkgver=3.13.92
+pkgver=3.14.0
 pkgrel=1
 pkgdesc=The GNOME Terminal Emulator
 arch=(i686 x86_64)
@@ -16,7 +16,7 @@
 groups=('gnome')
 install=gnome-terminal.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('47ae3fb5f8b9a17a8b173234343a4d71464eb3743161a5b00bdc1e6107007d79')
+sha256sums=('3680ffe52a834566f249ad85b44c32d521f34a7a6816e900942ae54a58e0413d')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-21 Thread Jan de Groot
Date: Sunday, September 21, 2014 @ 16:32:11
  Author: jgc
Revision: 222545

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

Added:
  gnome-terminal/repos/gnome-unstable-i686/PKGBUILD
(from rev 222544, gnome-terminal/trunk/PKGBUILD)
  gnome-terminal/repos/gnome-unstable-i686/gnome-terminal.install
(from rev 222544, gnome-terminal/trunk/gnome-terminal.install)
  gnome-terminal/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 222544, gnome-terminal/trunk/PKGBUILD)
  gnome-terminal/repos/gnome-unstable-x86_64/gnome-terminal.install
(from rev 222544, gnome-terminal/trunk/gnome-terminal.install)
Deleted:
  gnome-terminal/repos/gnome-unstable-i686/PKGBUILD
  gnome-terminal/repos/gnome-unstable-i686/gnome-terminal.install
  gnome-terminal/repos/gnome-unstable-x86_64/PKGBUILD
  gnome-terminal/repos/gnome-unstable-x86_64/gnome-terminal.install

--+
 /PKGBUILD|   72 +
 /gnome-terminal.install  |   26 +
 gnome-unstable-i686/PKGBUILD |   36 
 gnome-unstable-i686/gnome-terminal.install   |   13 
 gnome-unstable-x86_64/PKGBUILD   |   36 
 gnome-unstable-x86_64/gnome-terminal.install |   13 
 6 files changed, 98 insertions(+), 98 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2014-09-21 14:32:05 UTC (rev 222544)
+++ gnome-unstable-i686/PKGBUILD2014-09-21 14:32:11 UTC (rev 222545)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=gnome-terminal
-pkgver=3.13.92
-pkgrel=1
-pkgdesc=The GNOME Terminal Emulator
-arch=(i686 x86_64)
-license=(GPL)
-depends=(vte3 gsettings-desktop-schemas dconf)
-makedepends=(gnome-doc-utils intltool itstool docbook-xsl desktop-file-utils
- libnautilus-extension appdata-tools gnome-shell gconf vala)
-optdepends=('gconf: settings migration when upgrading from older version')
-options=('!emptydirs')
-url=http://www.gnome.org;
-groups=('gnome')
-install=gnome-terminal.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('47ae3fb5f8b9a17a8b173234343a4d71464eb3743161a5b00bdc1e6107007d79')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib/$pkgname --disable-static --with-nautilus-extension
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gnome-terminal/repos/gnome-unstable-i686/PKGBUILD (from rev 222544, 
gnome-terminal/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-21 14:32:11 UTC (rev 222545)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=gnome-terminal
+pkgver=3.14.0
+pkgrel=1
+pkgdesc=The GNOME Terminal Emulator
+arch=(i686 x86_64)
+license=(GPL)
+depends=(vte3 gsettings-desktop-schemas dconf)
+makedepends=(gnome-doc-utils intltool itstool docbook-xsl desktop-file-utils
+ libnautilus-extension appdata-tools gnome-shell gconf vala)
+optdepends=('gconf: settings migration when upgrading from older version')
+options=('!emptydirs')
+url=http://www.gnome.org;
+groups=('gnome')
+install=gnome-terminal.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('3680ffe52a834566f249ad85b44c32d521f34a7a6816e900942ae54a58e0413d')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib/$pkgname --disable-static --with-nautilus-extension
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: gnome-unstable-i686/gnome-terminal.install
===
--- gnome-unstable-i686/gnome-terminal.install  2014-09-21 14:32:05 UTC (rev 
222544)
+++ gnome-unstable-i686/gnome-terminal.install  2014-09-21 14:32:11 UTC (rev 
222545)
@@ -1,13 +0,0 @@
-post_install() {
-  glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-pre_upgrade() {
-  if [ -f /usr/share/gconf/schemas/gnome-terminal.schemas ]; then
-gconfpkg --uninstall gnome-terminal
-  fi
-}
-
-post_upgrade() {
-  post_install $1
-}

Copied: gnome-terminal/repos/gnome-unstable-i686/gnome-terminal.install (from 
rev 222544, gnome-terminal/trunk/gnome-terminal.install)
===
--- gnome-unstable-i686/gnome-terminal.install  (rev 0)
+++ 

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

2014-09-21 Thread Jan de Groot
Date: Sunday, September 21, 2014 @ 16:34:13
  Author: jgc
Revision: 222546

upgpkg: aisleriot 3.14.0-1

Modified:
  aisleriot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 14:32:11 UTC (rev 222545)
+++ PKGBUILD2014-09-21 14:34:13 UTC (rev 222546)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=aisleriot
-pkgver=3.13.90
+pkgver=3.14.0
 pkgrel=1
 pkgdesc=A collection of patience games written in guile scheme
 arch=(i686 x86_64)
@@ -17,7 +17,7 @@
 options=('!emptydirs')
 install=aisleriot.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('d8cb306f24facd2639d48103ec0f48d793f7e3c589f93cb3016c1f6a383ca8e3')
+sha256sums=('4ade0606e53c85dd94da17e1a36e94bceddb6f9d5ff0650238b26c92a7898645')
 
 build() {
   cd $pkgname-$pkgver



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

2014-09-21 Thread Jan de Groot
Date: Sunday, September 21, 2014 @ 16:34:19
  Author: jgc
Revision: 222547

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

Added:
  aisleriot/repos/gnome-unstable-i686/PKGBUILD
(from rev 222546, aisleriot/trunk/PKGBUILD)
  aisleriot/repos/gnome-unstable-i686/aisleriot.install
(from rev 222546, aisleriot/trunk/aisleriot.install)
  aisleriot/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 222546, aisleriot/trunk/PKGBUILD)
  aisleriot/repos/gnome-unstable-x86_64/aisleriot.install
(from rev 222546, aisleriot/trunk/aisleriot.install)
Deleted:
  aisleriot/repos/gnome-unstable-i686/PKGBUILD
  aisleriot/repos/gnome-unstable-i686/aisleriot.install
  aisleriot/repos/gnome-unstable-x86_64/PKGBUILD
  aisleriot/repos/gnome-unstable-x86_64/aisleriot.install

-+
 /PKGBUILD   |   92 ++
 /aisleriot.install  |   44 ++
 gnome-unstable-i686/PKGBUILD|   46 ---
 gnome-unstable-i686/aisleriot.install   |   22 ---
 gnome-unstable-x86_64/PKGBUILD  |   46 ---
 gnome-unstable-x86_64/aisleriot.install |   22 ---
 6 files changed, 136 insertions(+), 136 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2014-09-21 14:34:13 UTC (rev 222546)
+++ gnome-unstable-i686/PKGBUILD2014-09-21 14:34:19 UTC (rev 222547)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=aisleriot
-pkgver=3.13.90
-pkgrel=1
-pkgdesc=A collection of patience games written in guile scheme
-arch=(i686 x86_64)
-license=(GPL)
-url=http://www.gnome.org;
-groups=('gnome-extra')
-depends=(guile gtk3 librsvg libcanberra gconf hicolor-icon-theme dconf)
-makedepends=(intltool itstool docbook-xsl yelp-tools desktop-file-utils 
appdata-tools)
-optdepends=('libkdegames: KDE card sets'
-'pysolfc: PySol card sets'
-'pysolfc-cardsets: PySol card sets')
-options=('!emptydirs')
-install=aisleriot.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('d8cb306f24facd2639d48103ec0f48d793f7e3c589f93cb3016c1f6a383ca8e3')
-
-build() {
-  cd $pkgname-$pkgver
-  export GLIBC_PTHREAD_MUTEX=none
-  export GLIBC_PTHREAD_RWLOCK=none
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---libexecdir=/usr/lib --disable-static \
---with-card-theme-formats=all \
---with-kde-card-theme-path=/usr/share/apps/carddecks \
---with-pysol-card-theme-path=/usr/share/PySolFC
-
-
-  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
-  install -m755 -d $pkgdir/usr/share/gconf/schemas
-  gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas \
---domain aisleriot $pkgdir/etc/gconf/schemas/*.schemas
-  rm -f $pkgdir/etc/gconf/schemas/*.schemas
-}

Copied: aisleriot/repos/gnome-unstable-i686/PKGBUILD (from rev 222546, 
aisleriot/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2014-09-21 14:34:19 UTC (rev 222547)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=aisleriot
+pkgver=3.14.0
+pkgrel=1
+pkgdesc=A collection of patience games written in guile scheme
+arch=(i686 x86_64)
+license=(GPL)
+url=http://www.gnome.org;
+groups=('gnome-extra')
+depends=(guile gtk3 librsvg libcanberra gconf hicolor-icon-theme dconf)
+makedepends=(intltool itstool docbook-xsl yelp-tools desktop-file-utils 
appdata-tools)
+optdepends=('libkdegames: KDE card sets'
+'pysolfc: PySol card sets'
+'pysolfc-cardsets: PySol card sets')
+options=('!emptydirs')
+install=aisleriot.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('4ade0606e53c85dd94da17e1a36e94bceddb6f9d5ff0650238b26c92a7898645')
+
+build() {
+  cd $pkgname-$pkgver
+  export GLIBC_PTHREAD_MUTEX=none
+  export GLIBC_PTHREAD_RWLOCK=none
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--libexecdir=/usr/lib --disable-static \
+--with-card-theme-formats=all \
+--with-kde-card-theme-path=/usr/share/apps/carddecks \
+--with-pysol-card-theme-path=/usr/share/PySolFC
+
+
+  # https://bugzilla.gnome.org/show_bug.cgi?id=655517
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
+  install -m755 -d $pkgdir/usr/share/gconf/schemas
+  

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

2014-09-21 Thread Kyle Keen
Date: Sunday, September 21, 2014 @ 16:54:14
  Author: kkeen
Revision: 119364

upgpkg: seamonkey 2.29-1

Modified:
  seamonkey/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 14:19:36 UTC (rev 119363)
+++ PKGBUILD2014-09-21 14:54:14 UTC (rev 119364)
@@ -2,8 +2,8 @@
 # Maintainer: Kyle Keen keen...@gmail.com
 
 pkgname=seamonkey
-pkgver=2.26.1
-pkgrel=2
+pkgver=2.29
+pkgrel=1
 pkgdesc=SeaMonkey internet suite
 arch=('i686' 'x86_64')
 license=('MPL')
@@ -19,7 +19,7 @@
 mozconfig
 seamonkey-2.0-lang.patch
 rhbz-966424.patch)
-md5sums=('4bfa46b370b4d211eef56b90277a9517'
+md5sums=('ffd77471765e1a38c2a00ab3453a96a7'
  '9b6d65e9b77acf9fd7c6e3578a5d2acd'
  '25b6fe16ac24cd5c852213e5c1adb272'
  '8c1578232b7a60fa1caa9a0b322d1e2b')
@@ -78,3 +78,4 @@
 
 
 
+



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

2014-09-21 Thread Kyle Keen
Date: Sunday, September 21, 2014 @ 16:54:51
  Author: kkeen
Revision: 119365

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

Added:
  seamonkey/repos/community-i686/PKGBUILD
(from rev 119364, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-i686/mozconfig
(from rev 119364, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-i686/rhbz-966424.patch
(from rev 119364, seamonkey/trunk/rhbz-966424.patch)
  seamonkey/repos/community-i686/seamonkey-2.0-lang.patch
(from rev 119364, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/community-i686/seamonkey.install
(from rev 119364, seamonkey/trunk/seamonkey.install)
  seamonkey/repos/community-x86_64/PKGBUILD
(from rev 119364, seamonkey/trunk/PKGBUILD)
  seamonkey/repos/community-x86_64/mozconfig
(from rev 119364, seamonkey/trunk/mozconfig)
  seamonkey/repos/community-x86_64/rhbz-966424.patch
(from rev 119364, seamonkey/trunk/rhbz-966424.patch)
  seamonkey/repos/community-x86_64/seamonkey-2.0-lang.patch
(from rev 119364, seamonkey/trunk/seamonkey-2.0-lang.patch)
  seamonkey/repos/community-x86_64/seamonkey.install
(from rev 119364, seamonkey/trunk/seamonkey.install)
Deleted:
  seamonkey/repos/community-i686/PKGBUILD
  seamonkey/repos/community-i686/mozconfig
  seamonkey/repos/community-i686/seamonkey-2.0-lang.patch
  seamonkey/repos/community-i686/seamonkey.install
  seamonkey/repos/community-x86_64/PKGBUILD
  seamonkey/repos/community-x86_64/mozconfig
  seamonkey/repos/community-x86_64/seamonkey-2.0-lang.patch
  seamonkey/repos/community-x86_64/seamonkey.install

---+
 /PKGBUILD |  162 
 /mozconfig|   72 
 /seamonkey-2.0-lang.patch |   22 +++
 /seamonkey.install|   24 
 community-i686/PKGBUILD   |   75 
 community-i686/mozconfig  |   36 --
 community-i686/rhbz-966424.patch  |   23 +++
 community-i686/seamonkey-2.0-lang.patch   |   11 -
 community-i686/seamonkey.install  |   12 --
 community-x86_64/PKGBUILD |   75 
 community-x86_64/mozconfig|   36 --
 community-x86_64/rhbz-966424.patch|   23 +++
 community-x86_64/seamonkey-2.0-lang.patch |   11 -
 community-x86_64/seamonkey.install|   12 --
 14 files changed, 326 insertions(+), 268 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-21 14:54:14 UTC (rev 119364)
+++ community-i686/PKGBUILD 2014-09-21 14:54:51 UTC (rev 119365)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen keen...@gmail.com
-
-pkgname=seamonkey
-pkgver=2.26.1
-pkgrel=1
-pkgdesc=SeaMonkey internet suite
-arch=('i686' 'x86_64')
-license=('MPL')
-depends=('alsa-lib'  'dbus-glib'  'desktop-file-utils'  'gtk2' 'hunspell'  
'libevent'  'libnotify'  'libvpx'  'libxt' 'mime-types'  'mozilla-common'  
'nss'  'sqlite'  'startup-notification' 'libpulse' 'icu')
-makedepends=('unzip' 'zip' 'pkg-config'  'python2' 'yasm' 'wireless_tools' 
'mesa' 'autoconf2.13' 'imake' 'python3' 'gstreamer0.10-base')
-optdepends=('gstreamer0.10-base-plugins: vorbis decoding, ogg demuxing'
-'gstreamer0.10-bad-plugins: aac, vp8 and opus decoding'
-'gstreamer0.10-good-plugins: webm and mp4 demuxing'
-'gstreamer0.10-ugly-plugins: h.264 decoding')
-install=$pkgname.install
-url=http://www.seamonkey-project.org/;
-source=(ftp://ftp.mozilla.org/pub/mozilla.org/$pkgname/releases/$pkgver/source/$pkgname-$pkgver.source.tar.bz2
-mozconfig
-seamonkey-2.0-lang.patch)
-md5sums=('4bfa46b370b4d211eef56b90277a9517'
- '9b6d65e9b77acf9fd7c6e3578a5d2acd'
- '25b6fe16ac24cd5c852213e5c1adb272')
-
-prepare() {
-  cd comm-release
-  cp ../mozconfig .mozconfig
-  patch -Np1 -i ../seamonkey-2.0-lang.patch
-
-  # Don't exit with error when some libs are missing which we have in
-  # system.
-  sed -i '/^MOZ_PKG_FATAL_WARNINGS/s@= 1@= 0@' suite/installer/Makefile.in
-
-  # configure script misdetects the preprocessor without an optimization level
-  sed -i '/ac_cpp=/s/$CPPFLAGS/ -O2/' configure
-
-  # 2.26 build fix from wgnie (blfs ch 37)
-  sed -i 's/$(MOZ_ZLIB_CFLAGS)/ $(MOZ_PIXMAN_CFLAGS)/' config/config.mk
-}
-
-build() {
-  cd comm-release
-
-  export LDFLAGS=$LDFLAGS -Wl,-rpath,/usr/lib/seamonkey-$pkgver
-  export MOZ_MAKE_FLAGS=$MAKEFLAGS
-  unset MAKEFLAGS
-  unset CPPFLAGS
-
-  make -j1 -f client.mk build
-}
-
-package() {
-  cd comm-release
-
-  make -j1 -f client.mk DESTDIR=$pkgdir INSTALL_SDK= install
-
-  rm -rf $pkgdir/usr/lib/seamonkey-$pkgver/{dictionaries,hyphenation}
-  ln -s /usr/share/hunspell $pkgdir/usr/lib/seamonkey-$pkgver/dictionaries
-  ln -s /usr/share/hyphen $pkgdir/usr/lib/seamonkey-$pkgver/hyphenation
-
-  install 

[arch-commits] Commit in kdebase-workspace/trunk (PKGBUILD fix-intel-driver.patch)

2014-09-21 Thread Andrea Scarpino
Date: Sunday, September 21, 2014 @ 17:08:01
  Author: andrea
Revision: 222548

upgpkg: kdebase-workspace 4.11.12-1

Upstream release

Modified:
  kdebase-workspace/trunk/PKGBUILD
Deleted:
  kdebase-workspace/trunk/fix-intel-driver.patch

+
 PKGBUILD   |   17 ++---
 fix-intel-driver.patch |   29 -
 2 files changed, 6 insertions(+), 40 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 14:34:19 UTC (rev 222547)
+++ PKGBUILD2014-09-21 15:08:01 UTC (rev 222548)
@@ -4,9 +4,9 @@
 
 pkgname=kdebase-workspace
 _pkgname=kde-workspace
-pkgver=4.11.11
-_pkgver=4.13.3
-pkgrel=2
+pkgver=4.11.12
+_pkgver=4.14.1
+pkgrel=1
 pkgdesc=Provides the interface and basic tools for the KDE workspace
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kde/kde-workspace'
@@ -29,9 +29,8 @@
 
source=(http://download.kde.org/stable/${_pkgver}/src/${_pkgname}-${pkgver}.tar.xz;
 'kde.pam' 'kde-np.pam' 'kscreensaver.pam' 'kdm.service' 'kdm.logrotate'
 'etc-scripts.patch' 'terminate-server.patch' 'kdm-xinitrd.patch'
-'khotkeys-qt4.patch'
-'fix-intel-driver.patch')
-sha1sums=('84d70bb81a5d3b42869b666a12963dea14a33722'
+'khotkeys-qt4.patch')
+sha1sums=('64765044c0b0c487420594280eda379e7216eb8d'
   '660eae40a707d2711d8d7f32a93214865506b795'
   '6aeecc9e0e221f0515c6bf544f9a3c11cb6961fe'
   'c6afdf8964b2b2c4809b2e8e694729b2661e29df'
@@ -40,8 +39,7 @@
   'c079ebd157c836ba996190f0d2bcea1a7828d02c'
   'ac7bc292c865bc1ab8c02e6341aa7aeaf1a3'
   'd509dac592bd8b310df27991b208c95b6d907514'
-  'aa9d2e5a69986c4c3d47829721ea99edb473be12'
-  '0b7d847a3df097d066620d5da58b23bbbdc68dc9')
+  'aa9d2e5a69986c4c3d47829721ea99edb473be12')
 
 prepare() {
 mkdir build
@@ -57,9 +55,6 @@
 
 # KDEBUG#202629
 patch -p0 -i ${srcdir}/terminate-server.patch
-
-# KDEBUG#336589
-patch -p1 -i ${srcdir}/fix-intel-driver.patch
 }
 
 build() {

Deleted: fix-intel-driver.patch
===
--- fix-intel-driver.patch  2014-09-21 14:34:19 UTC (rev 222547)
+++ fix-intel-driver.patch  2014-09-21 15:08:01 UTC (rev 222548)
@@ -1,29 +0,0 @@
-From: Martin Gräßlin mgraess...@kde.org
-Date: Fri, 22 Aug 2014 05:37:42 +
-Subject: [libkwineffects] Require strict binding for intel driver
-X-Git-Url: 
http://quickgit.kde.org/?p=kde-workspace.gita=commitdiffh=04157f13de8d9b3028bca3a1832276ba96ae45fd

-[libkwineffects] Require strict binding for intel driver
-
-According to driver devs it's a buggy micro-optimisation, see
-https://bugs.freedesktop.org/show_bug.cgi?id=80349#c1
-
-CCBUG: 336589
-
-Backport from kwin.git e8241313fc979aefafc8c2a0207570d6394f1580

-
-
 a/kwin/libkwineffects/kwinglplatform.cpp
-+++ b/kwin/libkwineffects/kwinglplatform.cpp
-@@ -818,7 +818,8 @@
- m_supportsGLSL = false;
- 
- m_limitedGLSL = m_supportsGLSL  m_chipClass  I965;
--m_looseBinding = true;
-+// see https://bugs.freedesktop.org/show_bug.cgi?id=80349#c1
-+m_looseBinding = false;
- 
- if (m_chipClass  I965) {
- m_recommendedCompositor = OpenGL1Compositing;
-



[arch-commits] Commit in kdebase-workspace/repos (24 files)

2014-09-21 Thread Andrea Scarpino
Date: Sunday, September 21, 2014 @ 17:08:24
  Author: andrea
Revision: 222549

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

Added:
  kdebase-workspace/repos/testing-i686/
  kdebase-workspace/repos/testing-i686/PKGBUILD
(from rev 222548, kdebase-workspace/trunk/PKGBUILD)
  kdebase-workspace/repos/testing-i686/etc-scripts.patch
(from rev 222548, kdebase-workspace/trunk/etc-scripts.patch)
  kdebase-workspace/repos/testing-i686/kde-np.pam
(from rev 222548, kdebase-workspace/trunk/kde-np.pam)
  kdebase-workspace/repos/testing-i686/kde.pam
(from rev 222548, kdebase-workspace/trunk/kde.pam)
  kdebase-workspace/repos/testing-i686/kdebase-workspace.install
(from rev 222548, kdebase-workspace/trunk/kdebase-workspace.install)
  kdebase-workspace/repos/testing-i686/kdm-xinitrd.patch
(from rev 222548, kdebase-workspace/trunk/kdm-xinitrd.patch)
  kdebase-workspace/repos/testing-i686/kdm.logrotate
(from rev 222548, kdebase-workspace/trunk/kdm.logrotate)
  kdebase-workspace/repos/testing-i686/kdm.service
(from rev 222548, kdebase-workspace/trunk/kdm.service)
  kdebase-workspace/repos/testing-i686/khotkeys-qt4.patch
(from rev 222548, kdebase-workspace/trunk/khotkeys-qt4.patch)
  kdebase-workspace/repos/testing-i686/kscreensaver.pam
(from rev 222548, kdebase-workspace/trunk/kscreensaver.pam)
  kdebase-workspace/repos/testing-i686/terminate-server.patch
(from rev 222548, kdebase-workspace/trunk/terminate-server.patch)
  kdebase-workspace/repos/testing-x86_64/
  kdebase-workspace/repos/testing-x86_64/PKGBUILD
(from rev 222548, kdebase-workspace/trunk/PKGBUILD)
  kdebase-workspace/repos/testing-x86_64/etc-scripts.patch
(from rev 222548, kdebase-workspace/trunk/etc-scripts.patch)
  kdebase-workspace/repos/testing-x86_64/kde-np.pam
(from rev 222548, kdebase-workspace/trunk/kde-np.pam)
  kdebase-workspace/repos/testing-x86_64/kde.pam
(from rev 222548, kdebase-workspace/trunk/kde.pam)
  kdebase-workspace/repos/testing-x86_64/kdebase-workspace.install
(from rev 222548, kdebase-workspace/trunk/kdebase-workspace.install)
  kdebase-workspace/repos/testing-x86_64/kdm-xinitrd.patch
(from rev 222548, kdebase-workspace/trunk/kdm-xinitrd.patch)
  kdebase-workspace/repos/testing-x86_64/kdm.logrotate
(from rev 222548, kdebase-workspace/trunk/kdm.logrotate)
  kdebase-workspace/repos/testing-x86_64/kdm.service
(from rev 222548, kdebase-workspace/trunk/kdm.service)
  kdebase-workspace/repos/testing-x86_64/khotkeys-qt4.patch
(from rev 222548, kdebase-workspace/trunk/khotkeys-qt4.patch)
  kdebase-workspace/repos/testing-x86_64/kscreensaver.pam
(from rev 222548, kdebase-workspace/trunk/kscreensaver.pam)
  kdebase-workspace/repos/testing-x86_64/terminate-server.patch
(from rev 222548, kdebase-workspace/trunk/terminate-server.patch)

--+
 testing-i686/PKGBUILD|   93 +
 testing-i686/etc-scripts.patch   |   11 +++
 testing-i686/kde-np.pam  |   12 +++
 testing-i686/kde.pam |8 ++
 testing-i686/kdebase-workspace.install   |   31 +
 testing-i686/kdm-xinitrd.patch   |   18 +
 testing-i686/kdm.logrotate   |6 +
 testing-i686/kdm.service |9 ++
 testing-i686/khotkeys-qt4.patch  |   22 ++
 testing-i686/kscreensaver.pam|2 
 testing-i686/terminate-server.patch  |   11 +++
 testing-x86_64/PKGBUILD  |   93 +
 testing-x86_64/etc-scripts.patch |   11 +++
 testing-x86_64/kde-np.pam|   12 +++
 testing-x86_64/kde.pam   |8 ++
 testing-x86_64/kdebase-workspace.install |   31 +
 testing-x86_64/kdm-xinitrd.patch |   18 +
 testing-x86_64/kdm.logrotate |6 +
 testing-x86_64/kdm.service   |9 ++
 testing-x86_64/khotkeys-qt4.patch|   22 ++
 testing-x86_64/kscreensaver.pam  |2 
 testing-x86_64/terminate-server.patch|   11 +++
 22 files changed, 446 insertions(+)

Copied: kdebase-workspace/repos/testing-i686/PKGBUILD (from rev 222548, 
kdebase-workspace/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2014-09-21 15:08:24 UTC (rev 222549)
@@ -0,0 +1,93 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=kdebase-workspace
+_pkgname=kde-workspace
+pkgver=4.11.12
+_pkgver=4.14.1
+pkgrel=1
+pkgdesc=Provides the interface and basic tools for the KDE workspace
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kde/kde-workspace'
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdebase')
+# note on libxdamage:
+#  not detected by namcap because libgl depends on it
+#  but nvidia 

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

2014-09-21 Thread Evgeniy Alekseev
Date: Sunday, September 21, 2014 @ 20:30:57
  Author: arcanis
Revision: 119366

upgpkg: pymol 1.7.2.1-2

Modified:
  pymol/trunk/ChangeLog
  pymol/trunk/PKGBUILD

---+
 ChangeLog |3 +++
 PKGBUILD  |4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

Modified: ChangeLog
===
--- ChangeLog   2014-09-21 14:54:51 UTC (rev 119365)
+++ ChangeLog   2014-09-21 18:30:57 UTC (rev 119366)
@@ -1,3 +1,6 @@
+1.7.2.1-2:
+fix dep list
+
 1.7.2.1-1:
 upstream update
 

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 14:54:51 UTC (rev 119365)
+++ PKGBUILD2014-09-21 18:30:57 UTC (rev 119366)
@@ -5,12 +5,12 @@
 
 pkgname=pymol
 pkgver=1.7.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Molecular visualization system on an Open Source foundation
 arch=('i686' 'x86_64')
 url=http://pymol.org/;
 license=('custom')
-depends=('glew' 'glut' 'mesa' 'python2-numpy' 'python2-pmw' 'tcsh')
+depends=('glew' 'glut' 'libgl' 'python2-numpy' 'python2-pmw' 'tcsh')
 makedepends=('desktop-file-utils' 'gendesk')
 
source=(http://downloads.sourceforge.net/project/pymol/pymol/1.7/pymol-v${pkgver}.tar.bz2;
 ${pkgname}.png::https://c.fsdn.com/allura/p/pymol/icon;



[arch-commits] Commit in pymol/repos (20 files)

2014-09-21 Thread Evgeniy Alekseev
Date: Sunday, September 21, 2014 @ 20:31:25
  Author: arcanis
Revision: 119367

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

Added:
  pymol/repos/community-i686/ChangeLog
(from rev 119366, pymol/trunk/ChangeLog)
  pymol/repos/community-i686/PKGBUILD
(from rev 119366, pymol/trunk/PKGBUILD)
  pymol/repos/community-i686/apbstools_tcltk8.6.patch
(from rev 119366, pymol/trunk/apbstools_tcltk8.6.patch)
  pymol/repos/community-i686/pymol-38899.patch
(from rev 119366, pymol/trunk/pymol-38899.patch)
  pymol/repos/community-i686/pymol.install
(from rev 119366, pymol/trunk/pymol.install)
  pymol/repos/community-x86_64/ChangeLog
(from rev 119366, pymol/trunk/ChangeLog)
  pymol/repos/community-x86_64/PKGBUILD
(from rev 119366, pymol/trunk/PKGBUILD)
  pymol/repos/community-x86_64/apbstools_tcltk8.6.patch
(from rev 119366, pymol/trunk/apbstools_tcltk8.6.patch)
  pymol/repos/community-x86_64/pymol-38899.patch
(from rev 119366, pymol/trunk/pymol-38899.patch)
  pymol/repos/community-x86_64/pymol.install
(from rev 119366, pymol/trunk/pymol.install)
Deleted:
  pymol/repos/community-i686/ChangeLog
  pymol/repos/community-i686/PKGBUILD
  pymol/repos/community-i686/apbstools_tcltk8.6.patch
  pymol/repos/community-i686/pymol-38899.patch
  pymol/repos/community-i686/pymol.install
  pymol/repos/community-x86_64/ChangeLog
  pymol/repos/community-x86_64/PKGBUILD
  pymol/repos/community-x86_64/apbstools_tcltk8.6.patch
  pymol/repos/community-x86_64/pymol-38899.patch
  pymol/repos/community-x86_64/pymol.install

---+
 /ChangeLog|   22 +
 /PKGBUILD |  124 ++
 /apbstools_tcltk8.6.patch |  352 +++
 /pymol-38899.patch|  502 
 /pymol.install|   22 +
 community-i686/ChangeLog  |8 
 community-i686/PKGBUILD   |   62 ---
 community-i686/apbstools_tcltk8.6.patch   |  176 -
 community-i686/pymol-38899.patch  |  251 --
 community-i686/pymol.install  |   11 
 community-x86_64/ChangeLog|8 
 community-x86_64/PKGBUILD |   62 ---
 community-x86_64/apbstools_tcltk8.6.patch |  176 -
 community-x86_64/pymol-38899.patch|  251 --
 community-x86_64/pymol.install|   11 
 15 files changed, 1022 insertions(+), 1016 deletions(-)

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


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

2014-09-21 Thread Andrea Scarpino
Date: Sunday, September 21, 2014 @ 20:45:02
  Author: andrea
Revision: 119368

upgpkg: sbt 1:0.13.6-1

Upstream release

Modified:
  sbt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 18:31:25 UTC (rev 119367)
+++ PKGBUILD2014-09-21 18:45:02 UTC (rev 119368)
@@ -4,7 +4,7 @@
 
 pkgname=sbt
 epoch=1
-pkgver=0.13.5
+pkgver=0.13.6
 pkgrel=1
 pkgdesc=A minimally intrusive build tool for Scala projects
 arch=('any')
@@ -13,7 +13,7 @@
 depends=('java-runtime-headless' 'sh')
 
source=(http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${pkgver}/sbt-launch.jar;
 'LICENSE' 'LICENSE_Scala' 'sbt.sh' 'sbt.conf.sh' 'sbt.conf.csh')
-md5sums=('c74ce9787e64c3db246d740869a27117'
+md5sums=('9371cbb34dd1d1e8e7233d9140cef22e'
  '0cc49331142988765ce73782a5839c57'
  '4a09aae439532404ef76d0ba1db3342c'
  'd7b78b04e20ceb05c6870757bce6d3d9'



[arch-commits] Commit in sbt/repos/community-any (12 files)

2014-09-21 Thread Andrea Scarpino
Date: Sunday, September 21, 2014 @ 20:45:11
  Author: andrea
Revision: 119369

archrelease: copy trunk to community-any

Added:
  sbt/repos/community-any/LICENSE
(from rev 119368, sbt/trunk/LICENSE)
  sbt/repos/community-any/LICENSE_Scala
(from rev 119368, sbt/trunk/LICENSE_Scala)
  sbt/repos/community-any/PKGBUILD
(from rev 119368, sbt/trunk/PKGBUILD)
  sbt/repos/community-any/sbt.conf.csh
(from rev 119368, sbt/trunk/sbt.conf.csh)
  sbt/repos/community-any/sbt.conf.sh
(from rev 119368, sbt/trunk/sbt.conf.sh)
  sbt/repos/community-any/sbt.sh
(from rev 119368, sbt/trunk/sbt.sh)
Deleted:
  sbt/repos/community-any/LICENSE
  sbt/repos/community-any/LICENSE_Scala
  sbt/repos/community-any/PKGBUILD
  sbt/repos/community-any/sbt.conf.csh
  sbt/repos/community-any/sbt.conf.sh
  sbt/repos/community-any/sbt.sh

---+
 LICENSE   |   50 ++--
 LICENSE_Scala |   70 +--
 PKGBUILD  |   76 
 sbt.conf.csh  |2 -
 sbt.conf.sh   |2 -
 sbt.sh|6 ++--
 6 files changed, 103 insertions(+), 103 deletions(-)

Deleted: LICENSE
===
--- LICENSE 2014-09-21 18:45:02 UTC (rev 119368)
+++ LICENSE 2014-09-21 18:45:11 UTC (rev 119369)
@@ -1,25 +0,0 @@
-Copyright (c) 2008, 2009, 2010 Steven Blundy, Josh Cough, Mark Harrah, Stuart 
Roebuck, Tony Sloane, Vesa Vilhonen, Jason Zaugg
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-1. Redistributions of source code must retain the above copyright
-   notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
-   notice, this list of conditions and the following disclaimer in the
-   documentation and/or other materials provided with the distribution.
-3. The name of the author may not be used to endorse or promote products
-   derived from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
-IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
-IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-

Copied: sbt/repos/community-any/LICENSE (from rev 119368, sbt/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2014-09-21 18:45:11 UTC (rev 119369)
@@ -0,0 +1,25 @@
+Copyright (c) 2008, 2009, 2010 Steven Blundy, Josh Cough, Mark Harrah, Stuart 
Roebuck, Tony Sloane, Vesa Vilhonen, Jason Zaugg
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+3. The name of the author may not be used to endorse or promote products
+   derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+

Deleted: LICENSE_Scala
===
--- LICENSE_Scala   2014-09-21 18:45:02 UTC (rev 119368)
+++ LICENSE_Scala   2014-09-21 18:45:11 UTC (rev 119369)
@@ -1,35 +0,0 @@
-SCALA LICENSE
-
-Copyright (c) 2002-2008 EPFL, Lausanne, unless 

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

2014-09-21 Thread Bartłomiej Piotrowski
Date: Sunday, September 21, 2014 @ 20:58:08
  Author: bpiotrowski
Revision: 222550

upgpkg: libbluray 0.6.2-1

new upstream release

Modified:
  libbluray/trunk/PKGBUILD

--+
 PKGBUILD |   15 +--
 1 file changed, 5 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 15:08:24 UTC (rev 222549)
+++ PKGBUILD2014-09-21 18:58:08 UTC (rev 222550)
@@ -1,10 +1,10 @@
 # $Id$
 # Maintainer:  Ionut Biru ib...@archlinux.org
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
 # Contributor: Andrew Cook aris...@gmail.com
 
 pkgname=libbluray
-pkgver=0.6.0
+pkgver=0.6.2
 pkgrel=1
 pkgdesc='Library to access Blu-Ray disks for video playback'
 arch=('i686' 'x86_64')
@@ -12,19 +12,14 @@
 license=('LGPL2.1')
 depends=('libxml2' 'freetype2')
 
source=(ftp://ftp.videolan.org/pub/videolan/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('697886c09ef058bb9a2954ee5ee4f140')
+md5sums=('f4d2f2cab53f976cbb22cbae069057bd')
 
 build() {
   cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr \
---disable-static
+  ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
+  make DESTDIR=$pkgdir -C $pkgname-$pkgver install
 }
-
-# vim:set ts=2 sw=2 et:



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

2014-09-21 Thread Bartłomiej Piotrowski
Date: Sunday, September 21, 2014 @ 20:58:28
  Author: bpiotrowski
Revision: 222551

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-09-21 18:58:08 UTC (rev 222550)
+++ extra-i686/PKGBUILD 2014-09-21 18:58:28 UTC (rev 222551)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:  Ionut Biru ib...@archlinux.org
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Andrew Cook aris...@gmail.com
-
-pkgname=libbluray
-pkgver=0.6.0
-pkgrel=1
-pkgdesc='Library to access Blu-Ray disks for video playback'
-arch=('i686' 'x86_64')
-url='http://www.videolan.org/developers/libbluray.html'
-license=('LGPL2.1')
-depends=('libxml2' 'freetype2')
-source=(ftp://ftp.videolan.org/pub/videolan/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('697886c09ef058bb9a2954ee5ee4f140')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr \
---disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libbluray/repos/extra-i686/PKGBUILD (from rev 222550, 
libbluray/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-09-21 18:58:28 UTC (rev 222551)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer:  Ionut Biru ib...@archlinux.org
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Andrew Cook aris...@gmail.com
+
+pkgname=libbluray
+pkgver=0.6.2
+pkgrel=1
+pkgdesc='Library to access Blu-Ray disks for video playback'
+arch=('i686' 'x86_64')
+url='http://www.videolan.org/developers/libbluray.html'
+license=('LGPL2.1')
+depends=('libxml2' 'freetype2')
+source=(ftp://ftp.videolan.org/pub/videolan/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
+md5sums=('f4d2f2cab53f976cbb22cbae069057bd')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make DESTDIR=$pkgdir -C $pkgname-$pkgver install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2014-09-21 18:58:08 UTC (rev 222550)
+++ extra-x86_64/PKGBUILD   2014-09-21 18:58:28 UTC (rev 222551)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer:  Ionut Biru ib...@archlinux.org
-# Maintainer:  Bartłomiej Piotrowski nos...@bpiotrowski.pl
-# Contributor: Andrew Cook aris...@gmail.com
-
-pkgname=libbluray
-pkgver=0.6.0
-pkgrel=1
-pkgdesc='Library to access Blu-Ray disks for video playback'
-arch=('i686' 'x86_64')
-url='http://www.videolan.org/developers/libbluray.html'
-license=('LGPL2.1')
-depends=('libxml2' 'freetype2')
-source=(ftp://ftp.videolan.org/pub/videolan/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
-md5sums=('697886c09ef058bb9a2954ee5ee4f140')
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr \
---disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libbluray/repos/extra-x86_64/PKGBUILD (from rev 222550, 
libbluray/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-09-21 18:58:28 UTC (rev 222551)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer:  Ionut Biru ib...@archlinux.org
+# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Andrew Cook aris...@gmail.com
+
+pkgname=libbluray
+pkgver=0.6.2
+pkgrel=1
+pkgdesc='Library to access Blu-Ray disks for video playback'
+arch=('i686' 'x86_64')
+url='http://www.videolan.org/developers/libbluray.html'
+license=('LGPL2.1')
+depends=('libxml2' 'freetype2')
+source=(ftp://ftp.videolan.org/pub/videolan/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2)
+md5sums=('f4d2f2cab53f976cbb22cbae069057bd')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  make DESTDIR=$pkgdir -C $pkgname-$pkgver install
+}



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

2014-09-21 Thread Andrzej Giniewicz
Date: Sunday, September 21, 2014 @ 21:19:11
  Author: aginiewicz
Revision: 119371

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

Added:
  python-pytables/repos/community-i686/PKGBUILD
(from rev 119370, python-pytables/trunk/PKGBUILD)
  python-pytables/repos/community-i686/cython-0.21.patch
(from rev 119370, python-pytables/trunk/cython-0.21.patch)
  python-pytables/repos/community-x86_64/PKGBUILD
(from rev 119370, python-pytables/trunk/PKGBUILD)
  python-pytables/repos/community-x86_64/cython-0.21.patch
(from rev 119370, python-pytables/trunk/cython-0.21.patch)
Deleted:
  python-pytables/repos/community-i686/PKGBUILD
  python-pytables/repos/community-x86_64/PKGBUILD

+
 /PKGBUILD  |  118 +++
 community-i686/PKGBUILD|   52 ---
 community-i686/cython-0.21.patch   |   12 +++
 community-x86_64/PKGBUILD  |   52 ---
 community-x86_64/cython-0.21.patch |   12 +++
 5 files changed, 142 insertions(+), 104 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-21 19:18:59 UTC (rev 119370)
+++ community-i686/PKGBUILD 2014-09-21 19:19:11 UTC (rev 119371)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Andrzej Giniewicz ggi...@gmail.com
-# Contributor: Sebastien Binet bi...@cern.ch
-
-pkgbase=python-pytables
-pkgname=('python2-pytables' 'python-pytables')
-pkgver=3.1.1
-pkgrel=2
-arch=(i686 x86_64)
-pkgdesc=A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data
-url=http://www.pytables.org;
-license=(BSD)
-makedepends=('lzo' 'hdf5' 'python2-numexpr' 'cython2' 'python-numexpr' 
'cython')
-source=(http://pypi.python.org/packages/source/t/tables/tables-$pkgver.tar.gz;)
-md5sums=('38d917f0c6dfb0bc28ce9ea0c3492524')
-
-build() {
-  cd $srcdir
-  cp -a tables-$pkgver tables-py2-$pkgver
-
-  msg Building Python2
-  cd $srcdir/tables-py2-$pkgver
-  python2 setup.py build
-
-  msg Building Python3
-  cd $srcdir/tables-$pkgver
-  python setup.py build
-}
-
-package_python2-pytables() {
-  depends=('lzo' 'hdf5' 'python2-numexpr' 'cython2')
-
-  cd $srcdir/tables-py2-${pkgver}
-  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  # see FS#36015
-  mv $pkgdir/usr/bin/pt2to3{,-2.7}
-  mv $pkgdir/usr/bin/ptdump{,-2.7}
-  mv $pkgdir/usr/bin/ptrepack{,-2.7}
-}
-
-package_python-pytables() {
-  depends=('lzo' 'hdf5' 'python-numexpr' 'cython')
-
-  cd $srcdir/tables-${pkgver}
-  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
-
-  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-

Copied: python-pytables/repos/community-i686/PKGBUILD (from rev 119370, 
python-pytables/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-21 19:19:11 UTC (rev 119371)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Andrzej Giniewicz ggi...@gmail.com
+# Contributor: Sebastien Binet bi...@cern.ch
+
+pkgbase=python-pytables
+pkgname=('python2-pytables' 'python-pytables')
+pkgver=3.1.1
+pkgrel=3
+arch=(i686 x86_64)
+pkgdesc=A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data
+url=http://www.pytables.org;
+license=(BSD)
+makedepends=('lzo' 'hdf5' 'python2-numexpr' 'cython2' 'python-numexpr' 
'cython')
+source=(http://pypi.python.org/packages/source/t/tables/tables-$pkgver.tar.gz;
+cython-0.21.patch)
+md5sums=('38d917f0c6dfb0bc28ce9ea0c3492524'
+ 'c224fd77ddc69027955898a16a4766a9')
+
+prepare() {
+  cd $srcdir/tables-$pkgver
+  patch -p1  ../cython-0.21.patch
+
+  cd $srcdir
+  cp -a tables-$pkgver tables-py2-$pkgver
+}
+
+build() {
+  msg Building Python2
+  cd $srcdir/tables-py2-$pkgver
+  python2 setup.py build
+
+  msg Building Python3
+  cd $srcdir/tables-$pkgver
+  python setup.py build
+}
+
+package_python2-pytables() {
+  depends=('lzo' 'hdf5' 'python2-numexpr' 'cython2')
+
+  cd $srcdir/tables-py2-${pkgver}
+  python2 setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+
+  # see FS#36015
+  mv $pkgdir/usr/bin/pt2to3{,-2.7}
+  mv $pkgdir/usr/bin/ptdump{,-2.7}
+  mv $pkgdir/usr/bin/ptrepack{,-2.7}
+}
+
+package_python-pytables() {
+  depends=('lzo' 'hdf5' 'python-numexpr' 'cython')
+
+  cd $srcdir/tables-${pkgver}
+  python setup.py install --prefix=/usr --root=$pkgdir --optimize=1
+
+  install -Dm644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+

Copied: python-pytables/repos/community-i686/cython-0.21.patch (from rev 
119370, python-pytables/trunk/cython-0.21.patch)

[arch-commits] Commit in python-pytables/trunk (PKGBUILD cython-0.21.patch)

2014-09-21 Thread Andrzej Giniewicz
Date: Sunday, September 21, 2014 @ 21:18:59
  Author: aginiewicz
Revision: 119370

upgpkg: python-pytables 3.1.1-3

Rebuild for new release of hdf5

Added:
  python-pytables/trunk/cython-0.21.patch
Modified:
  python-pytables/trunk/PKGBUILD

---+
 PKGBUILD  |   15 +++
 cython-0.21.patch |   12 
 2 files changed, 23 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 18:45:11 UTC (rev 119369)
+++ PKGBUILD2014-09-21 19:18:59 UTC (rev 119370)
@@ -5,19 +5,26 @@
 pkgbase=python-pytables
 pkgname=('python2-pytables' 'python-pytables')
 pkgver=3.1.1
-pkgrel=2
+pkgrel=3
 arch=(i686 x86_64)
 pkgdesc=A package for managing hierarchical datasets and designed to 
efficiently and easily cope with extremely large amounts of data
 url=http://www.pytables.org;
 license=(BSD)
 makedepends=('lzo' 'hdf5' 'python2-numexpr' 'cython2' 'python-numexpr' 
'cython')
-source=(http://pypi.python.org/packages/source/t/tables/tables-$pkgver.tar.gz;)
-md5sums=('38d917f0c6dfb0bc28ce9ea0c3492524')
+source=(http://pypi.python.org/packages/source/t/tables/tables-$pkgver.tar.gz;
+cython-0.21.patch)
+md5sums=('38d917f0c6dfb0bc28ce9ea0c3492524'
+ 'c224fd77ddc69027955898a16a4766a9')
 
-build() {
+prepare() {
+  cd $srcdir/tables-$pkgver
+  patch -p1  ../cython-0.21.patch
+
   cd $srcdir
   cp -a tables-$pkgver tables-py2-$pkgver
+}
 
+build() {
   msg Building Python2
   cd $srcdir/tables-py2-$pkgver
   python2 setup.py build

Added: cython-0.21.patch
===
--- cython-0.21.patch   (rev 0)
+++ cython-0.21.patch   2014-09-21 19:18:59 UTC (rev 119370)
@@ -0,0 +1,12 @@
+diff -urN tables-3.1.1.orig/setup.py tables-3.1.1/setup.py
+--- tables-3.1.1.orig/setup.py 2014-09-21 21:11:18.612906437 +0200
 tables-3.1.1/setup.py  2014-09-21 21:11:38.562703246 +0200
+@@ -123,7 +123,7 @@
+ # Check if Cython is installed or not (requisite)
+ try:
+ from Cython.Distutils import build_ext
+-from Cython.Compiler.Main import Version
++from Cython.Compiler import Version
+ cmdclass['build_ext'] = build_ext
+ except ImportError:
+ exit_with_error(



[arch-commits] Commit in xf86-video-intel/trunk (2 files)

2014-09-21 Thread Laurent Carlier
Date: Sunday, September 21, 2014 @ 21:21:05
  Author: lcarlier
Revision: 222552

upgpkg: xf86-video-intel 2.99.916-2

fix FS#41944

Added:
  
xf86-video-intel/trunk/0001-sna-Use-default-monitor-options-on-the-first-output.patch
Modified:
  xf86-video-intel/trunk/PKGBUILD

+
 0001-sna-Use-default-monitor-options-on-the-first-output.patch |   37 
++
 PKGBUILD   |   15 +++-
 2 files changed, 49 insertions(+), 3 deletions(-)

Added: 0001-sna-Use-default-monitor-options-on-the-first-output.patch
===
--- 0001-sna-Use-default-monitor-options-on-the-first-output.patch  
(rev 0)
+++ 0001-sna-Use-default-monitor-options-on-the-first-output.patch  
2014-09-21 19:21:05 UTC (rev 222552)
@@ -0,0 +1,37 @@
+From 1aefd16964c30264c05d136cef3e1e7de5eb9c53 Mon Sep 17 00:00:00 2001
+From: Chris Wilson ch...@chris-wilson.co.uk
+Date: Fri, 12 Sep 2014 07:46:43 +0100
+Subject: [PATCH] sna: Use default monitor options on the first output
+
+commit 6554cf0a69f04710b64f3488384fe5cb2748dc35
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Mon Aug 11 12:22:17 2014 +0100
+
+sna: Parse output options early during initialisation
+
+rearranged the monitor query to before the num_outputs increment. The
+result was that it choose the second output as the default and not the
+intended first.
+
+Bugzilla: https://bugs.gentoo.org/show_bug.cgi?id=522500
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+---
+ src/sna/sna_display.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
+index f136c20..f6cfc80 100644
+--- a/src/sna/sna_display.c
 b/src/sna/sna_display.c
+@@ -3751,7 +3751,7 @@ sna_output_add(struct sna *sna, unsigned id, unsigned 
serial)
+   output-name = (char *)(output + 1);
+   memcpy(output-name, name, len + 1);
+ 
+-  output-use_screen_monitor = config-num_output != 1;
++  output-use_screen_monitor = config-num_output != 0;
+   xf86OutputUseScreenMonitor(output, !output-use_screen_monitor);
+   assert(output-options);
+ 
+-- 
+2.1.0
+

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 18:58:28 UTC (rev 222551)
+++ PKGBUILD2014-09-21 19:21:05 UTC (rev 222552)
@@ -4,7 +4,7 @@
 
 pkgname=xf86-video-intel
 pkgver=2.99.916
-pkgrel=1
+pkgrel=2
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
 license=('custom')
@@ -23,9 +23,18 @@
 conflicts=('xorg-server1.16' 'X-ABI-VIDEODRV_VERSION18' 
'X-ABI-VIDEODRV_VERSION=19'
'xf86-video-intel-sna' 'xf86-video-intel-uxa' 'xf86-video-i810' 
'xf86-video-intel-legacy')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('409a819f4ac3e7c9432dd4acafe4621bbb3702adb34b1ea942b2e6d7c71eed01')
+source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2
+0001-sna-Use-default-monitor-options-on-the-first-output.patch)
+sha256sums=('409a819f4ac3e7c9432dd4acafe4621bbb3702adb34b1ea942b2e6d7c71eed01'
+'0195f5e5e69fc4b86d7ab51bc3d297e283cbdaec5c729702cca1b213809b4a18')
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+
+  # Fix FS#41944 merged upstream
+  patch -Np1 -i 
../0001-sna-Use-default-monitor-options-on-the-first-output.patch
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   ./configure --prefix=/usr \



[arch-commits] Commit in xf86-video-intel/repos (10 files)

2014-09-21 Thread Laurent Carlier
Date: Sunday, September 21, 2014 @ 21:21:19
  Author: lcarlier
Revision: 222553

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

Added:
  
xf86-video-intel/repos/extra-i686/0001-sna-Use-default-monitor-options-on-the-first-output.patch
(from rev 222552, 
xf86-video-intel/trunk/0001-sna-Use-default-monitor-options-on-the-first-output.patch)
  xf86-video-intel/repos/extra-i686/PKGBUILD
(from rev 222552, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/extra-i686/xf86-video-intel.install
(from rev 222552, xf86-video-intel/trunk/xf86-video-intel.install)
  
xf86-video-intel/repos/extra-x86_64/0001-sna-Use-default-monitor-options-on-the-first-output.patch
(from rev 222552, 
xf86-video-intel/trunk/0001-sna-Use-default-monitor-options-on-the-first-output.patch)
  xf86-video-intel/repos/extra-x86_64/PKGBUILD
(from rev 222552, xf86-video-intel/trunk/PKGBUILD)
  xf86-video-intel/repos/extra-x86_64/xf86-video-intel.install
(from rev 222552, xf86-video-intel/trunk/xf86-video-intel.install)
Deleted:
  xf86-video-intel/repos/extra-i686/PKGBUILD
  xf86-video-intel/repos/extra-i686/xf86-video-intel.install
  xf86-video-intel/repos/extra-x86_64/PKGBUILD
  xf86-video-intel/repos/extra-x86_64/xf86-video-intel.install

-+
 /PKGBUILD   |  
118 ++
 /xf86-video-intel.install   |  
 44 +++
 extra-i686/0001-sna-Use-default-monitor-options-on-the-first-output.patch   |  
 37 +++
 extra-i686/PKGBUILD |  
 50 
 extra-i686/xf86-video-intel.install |  
 22 -
 extra-x86_64/0001-sna-Use-default-monitor-options-on-the-first-output.patch |  
 37 +++
 extra-x86_64/PKGBUILD   |  
 50 
 extra-x86_64/xf86-video-intel.install   |  
 22 -
 8 files changed, 236 insertions(+), 144 deletions(-)

Copied: 
xf86-video-intel/repos/extra-i686/0001-sna-Use-default-monitor-options-on-the-first-output.patch
 (from rev 222552, 
xf86-video-intel/trunk/0001-sna-Use-default-monitor-options-on-the-first-output.patch)
===
--- extra-i686/0001-sna-Use-default-monitor-options-on-the-first-output.patch   
(rev 0)
+++ extra-i686/0001-sna-Use-default-monitor-options-on-the-first-output.patch   
2014-09-21 19:21:19 UTC (rev 222553)
@@ -0,0 +1,37 @@
+From 1aefd16964c30264c05d136cef3e1e7de5eb9c53 Mon Sep 17 00:00:00 2001
+From: Chris Wilson ch...@chris-wilson.co.uk
+Date: Fri, 12 Sep 2014 07:46:43 +0100
+Subject: [PATCH] sna: Use default monitor options on the first output
+
+commit 6554cf0a69f04710b64f3488384fe5cb2748dc35
+Author: Chris Wilson ch...@chris-wilson.co.uk
+Date:   Mon Aug 11 12:22:17 2014 +0100
+
+sna: Parse output options early during initialisation
+
+rearranged the monitor query to before the num_outputs increment. The
+result was that it choose the second output as the default and not the
+intended first.
+
+Bugzilla: https://bugs.gentoo.org/show_bug.cgi?id=522500
+Signed-off-by: Chris Wilson ch...@chris-wilson.co.uk
+---
+ src/sna/sna_display.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
+index f136c20..f6cfc80 100644
+--- a/src/sna/sna_display.c
 b/src/sna/sna_display.c
+@@ -3751,7 +3751,7 @@ sna_output_add(struct sna *sna, unsigned id, unsigned 
serial)
+   output-name = (char *)(output + 1);
+   memcpy(output-name, name, len + 1);
+ 
+-  output-use_screen_monitor = config-num_output != 1;
++  output-use_screen_monitor = config-num_output != 0;
+   xf86OutputUseScreenMonitor(output, !output-use_screen_monitor);
+   assert(output-options);
+ 
+-- 
+2.1.0
+

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2014-09-21 19:21:05 UTC (rev 222552)
+++ extra-i686/PKGBUILD 2014-09-21 19:21:19 UTC (rev 222553)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR andy...@archlinux.org
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=xf86-video-intel
-pkgver=2.99.916
-pkgrel=1
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-install=$pkgname.install
-pkgdesc=X.org Intel i810/i830/i915/945G/G965+ video drivers
-depends=('intel-dri' 'libxvmc' 'pixman' 'xcb-util=0.3.9')
-makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=18' 'libx11' 
'libxrender'
- # additional deps for intel-virtual-output
-'libxrandr' 'libxinerama' 'libxcursor' 'libxtst')
-optdepends=('libxrandr: for intel-virtual-output'
-'libxinerama: for intel-virtual-output'
-'libxcursor: for intel-virtual-output'
-'libxtst: for 

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

2014-09-21 Thread Sergej Pupykin
Date: Sunday, September 21, 2014 @ 21:22:02
  Author: spupykin
Revision: 119372

upgpkg: dbmail 3.2.0-2

upd

Modified:
  dbmail/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 19:19:11 UTC (rev 119371)
+++ PKGBUILD2014-09-21 19:22:02 UTC (rev 119372)
@@ -4,7 +4,7 @@
 
 pkgname=dbmail
 pkgver=3.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Fast and scalable sql based mail services
 arch=('i686' 'x86_64')
 depends=('gmime' 'libzdb' 'mhash' 'libevent')
@@ -20,14 +20,14 @@
etc/xinetd.d/dbmail-pop3d
etc/xinetd.d/dbmail-lmtpd
etc/xinetd.d/dbmail-timsieved)
-#source=(dbmail-$pkgver::git://git.subdir.eu/paul/dbmail#branch=dbmail_3_1
 
#source=(dbmail-$pkgver.tar.gz::http://git.dbmail.eu/paul/dbmail/snapshot/dbmail-$pkgver.tar.gz;
-source=(http://www.dbmail.org/download/3.2/dbmail-${pkgver}.tar.gz;
+#source=(http://www.dbmail.org/download/3.2/dbmail-${pkgver}.tar.gz;
+source=(dbmail-$pkgver::git://git.subdir.eu/paul/dbmail#branch=dbmail_3_2
dbmail-imapd.xinetd
dbmail-lmtpd.xinetd
dbmail-pop3d.xinetd
dbmail-timsieved.xinetd)
-md5sums=('6375ea94b62e1752d8ecf3283eff100c'
+md5sums=('SKIP'
  '890de13361afbdf4fed12d6d7eb53e66'
  '961593658cd596297d03d25eb9c9e98f'
  '4cb764894abd3914802e90602bf90a0c'



[arch-commits] Commit in dbmail/repos (20 files)

2014-09-21 Thread Sergej Pupykin
Date: Sunday, September 21, 2014 @ 21:22:25
  Author: spupykin
Revision: 119373

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

Added:
  dbmail/repos/community-i686/PKGBUILD
(from rev 119372, dbmail/trunk/PKGBUILD)
  dbmail/repos/community-i686/dbmail-imapd.xinetd
(from rev 119372, dbmail/trunk/dbmail-imapd.xinetd)
  dbmail/repos/community-i686/dbmail-lmtpd.xinetd
(from rev 119372, dbmail/trunk/dbmail-lmtpd.xinetd)
  dbmail/repos/community-i686/dbmail-pop3d.xinetd
(from rev 119372, dbmail/trunk/dbmail-pop3d.xinetd)
  dbmail/repos/community-i686/dbmail-timsieved.xinetd
(from rev 119372, dbmail/trunk/dbmail-timsieved.xinetd)
  dbmail/repos/community-x86_64/PKGBUILD
(from rev 119372, dbmail/trunk/PKGBUILD)
  dbmail/repos/community-x86_64/dbmail-imapd.xinetd
(from rev 119372, dbmail/trunk/dbmail-imapd.xinetd)
  dbmail/repos/community-x86_64/dbmail-lmtpd.xinetd
(from rev 119372, dbmail/trunk/dbmail-lmtpd.xinetd)
  dbmail/repos/community-x86_64/dbmail-pop3d.xinetd
(from rev 119372, dbmail/trunk/dbmail-pop3d.xinetd)
  dbmail/repos/community-x86_64/dbmail-timsieved.xinetd
(from rev 119372, dbmail/trunk/dbmail-timsieved.xinetd)
Deleted:
  dbmail/repos/community-i686/PKGBUILD
  dbmail/repos/community-i686/dbmail-imapd.xinetd
  dbmail/repos/community-i686/dbmail-lmtpd.xinetd
  dbmail/repos/community-i686/dbmail-pop3d.xinetd
  dbmail/repos/community-i686/dbmail-timsieved.xinetd
  dbmail/repos/community-x86_64/PKGBUILD
  dbmail/repos/community-x86_64/dbmail-imapd.xinetd
  dbmail/repos/community-x86_64/dbmail-lmtpd.xinetd
  dbmail/repos/community-x86_64/dbmail-pop3d.xinetd
  dbmail/repos/community-x86_64/dbmail-timsieved.xinetd

--+
 /PKGBUILD|  122 +
 /dbmail-imapd.xinetd |   26 ++
 /dbmail-lmtpd.xinetd |   26 ++
 /dbmail-pop3d.xinetd |   26 ++
 /dbmail-timsieved.xinetd |   30 +++
 community-i686/PKGBUILD  |   61 --
 community-i686/dbmail-imapd.xinetd   |   13 ---
 community-i686/dbmail-lmtpd.xinetd   |   13 ---
 community-i686/dbmail-pop3d.xinetd   |   13 ---
 community-i686/dbmail-timsieved.xinetd   |   15 ---
 community-x86_64/PKGBUILD|   61 --
 community-x86_64/dbmail-imapd.xinetd |   13 ---
 community-x86_64/dbmail-lmtpd.xinetd |   13 ---
 community-x86_64/dbmail-pop3d.xinetd |   13 ---
 community-x86_64/dbmail-timsieved.xinetd |   15 ---
 15 files changed, 230 insertions(+), 230 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-21 19:22:02 UTC (rev 119372)
+++ community-i686/PKGBUILD 2014-09-21 19:22:25 UTC (rev 119373)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Sebastian Faltoni sebastian.falt...@gmail.com
-
-pkgname=dbmail
-pkgver=3.2.0
-pkgrel=1
-pkgdesc=Fast and scalable sql based mail services
-arch=('i686' 'x86_64')
-depends=('gmime' 'libzdb' 'mhash' 'libevent')
-makedepends=('asciidoc' 'xmlto' 'docbook-xsl' 'docbook-xml' 
'postgresql-libs=8.4.1'
-'sqlite' 'libmysqlclient' 'libldap=2.4.18' 'libsieve' 'git')
-optdepends=('libldap: for LDAP authentication'
-   'libsieve: for dbmail-sieve'
-   'python2-mysql2pgsql: migrate from MySQL to PostreSQL')
-url=http://www.dbmail.org;
-license=('GPL')
-options=('zipman')
-backup=(etc/xinetd.d/dbmail-imapd
-   etc/xinetd.d/dbmail-pop3d
-   etc/xinetd.d/dbmail-lmtpd
-   etc/xinetd.d/dbmail-timsieved)
-#source=(dbmail-$pkgver::git://git.subdir.eu/paul/dbmail#branch=dbmail_3_1
-#source=(dbmail-$pkgver.tar.gz::http://git.dbmail.eu/paul/dbmail/snapshot/dbmail-$pkgver.tar.gz;
-source=(http://www.dbmail.org/download/3.2/dbmail-${pkgver}.tar.gz;
-   dbmail-imapd.xinetd
-   dbmail-lmtpd.xinetd
-   dbmail-pop3d.xinetd
-   dbmail-timsieved.xinetd)
-md5sums=('6375ea94b62e1752d8ecf3283eff100c'
- '890de13361afbdf4fed12d6d7eb53e66'
- '961593658cd596297d03d25eb9c9e98f'
- '4cb764894abd3914802e90602bf90a0c'
- 'e78dc86355f9aaf24590bc7c6611162f')
-
-build() {
-  cd $srcdir/dbmail-${pkgver}/
-  aclocal
-  automake --add-missing
-  autoreconf
-  [ -f Makefile ] || ./configure \
---prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc \
---with-ldap --with-sieve \
---enable-systemd --enable-manpages
-  make
-}
-
-package() {
-  cd $srcdir/dbmail-${pkgver}/
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 dbmail.conf $pkgdir/etc/dbmail.conf.sample
-  mkdir $pkgdir/usr/share/dbmail
-  cp -r sql/* $pkgdir/usr/share/dbmail/
-  cp -a contrib $pkgdir/usr/share/dbmail/
-  cp dbmail.schema $pkgdir/usr/share/dbmail/
-
-  for i in dbmail-imapd dbmail-lmtpd dbmail-pop3d dbmail-timsieved; do
-install -Dm0644 

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

2014-09-21 Thread Sergej Pupykin
Date: Sunday, September 21, 2014 @ 21:24:45
  Author: spupykin
Revision: 119374

upgpkg: redis 2.8.17-1

upd

Modified:
  redis/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 19:22:25 UTC (rev 119373)
+++ PKGBUILD2014-09-21 19:24:45 UTC (rev 119374)
@@ -5,7 +5,7 @@
 # Contributor: nofxx x@nick.com
 
 pkgname=redis
-pkgver=2.8.16
+pkgver=2.8.17
 pkgrel=1
 pkgdesc='Advanced key-value store'
 arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@
 redis.logrotate redis.tmpfiles.d
 redis.conf-sane-defaults.patch
 redis-2.8.11-use-system-jemalloc.patch)
-md5sums=('edfab946e3bb4cefc3227a52399ce107'
+md5sums=('69023c3005664602268a5e2dbe23425c'
  'aec12c881dc2693754f85539ae8e0bc7'
  '9e2d75b7a9dc421122d673fe520ef17f'
  'dd9ab8022b4d963b2e5899170dfff490'



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

2014-09-21 Thread Sergej Pupykin
Date: Sunday, September 21, 2014 @ 21:25:08
  Author: spupykin
Revision: 119375

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

Added:
  redis/repos/community-i686/PKGBUILD
(from rev 119374, redis/trunk/PKGBUILD)
  redis/repos/community-i686/redis-2.8.11-use-system-jemalloc.patch
(from rev 119374, redis/trunk/redis-2.8.11-use-system-jemalloc.patch)
  redis/repos/community-i686/redis.conf-sane-defaults.patch
(from rev 119374, redis/trunk/redis.conf-sane-defaults.patch)
  redis/repos/community-i686/redis.install
(from rev 119374, redis/trunk/redis.install)
  redis/repos/community-i686/redis.logrotate
(from rev 119374, redis/trunk/redis.logrotate)
  redis/repos/community-i686/redis.service
(from rev 119374, redis/trunk/redis.service)
  redis/repos/community-i686/redis.tmpfiles.d
(from rev 119374, redis/trunk/redis.tmpfiles.d)
  redis/repos/community-x86_64/PKGBUILD
(from rev 119374, redis/trunk/PKGBUILD)
  redis/repos/community-x86_64/redis-2.8.11-use-system-jemalloc.patch
(from rev 119374, redis/trunk/redis-2.8.11-use-system-jemalloc.patch)
  redis/repos/community-x86_64/redis.conf-sane-defaults.patch
(from rev 119374, redis/trunk/redis.conf-sane-defaults.patch)
  redis/repos/community-x86_64/redis.install
(from rev 119374, redis/trunk/redis.install)
  redis/repos/community-x86_64/redis.logrotate
(from rev 119374, redis/trunk/redis.logrotate)
  redis/repos/community-x86_64/redis.service
(from rev 119374, redis/trunk/redis.service)
  redis/repos/community-x86_64/redis.tmpfiles.d
(from rev 119374, redis/trunk/redis.tmpfiles.d)
Deleted:
  redis/repos/community-i686/PKGBUILD
  redis/repos/community-i686/redis-2.8.11-use-system-jemalloc.patch
  redis/repos/community-i686/redis.conf-sane-defaults.patch
  redis/repos/community-i686/redis.install
  redis/repos/community-i686/redis.logrotate
  redis/repos/community-i686/redis.service
  redis/repos/community-i686/redis.tmpfiles.d
  redis/repos/community-x86_64/PKGBUILD
  redis/repos/community-x86_64/redis-2.8.11-use-system-jemalloc.patch
  redis/repos/community-x86_64/redis.conf-sane-defaults.patch
  redis/repos/community-x86_64/redis.install
  redis/repos/community-x86_64/redis.logrotate
  redis/repos/community-x86_64/redis.service
  redis/repos/community-x86_64/redis.tmpfiles.d

-+
 /PKGBUILD   |  102 ++
 /redis-2.8.11-use-system-jemalloc.patch |   30 
 /redis.conf-sane-defaults.patch |   62 
 /redis.install  |   16 ++
 /redis.logrotate|   10 +
 /redis.service  |   22 +++
 /redis.tmpfiles.d   |2 
 community-i686/PKGBUILD |   51 ---
 community-i686/redis-2.8.11-use-system-jemalloc.patch   |   15 --
 community-i686/redis.conf-sane-defaults.patch   |   31 
 community-i686/redis.install|8 -
 community-i686/redis.logrotate  |5 
 community-i686/redis.service|   11 -
 community-i686/redis.tmpfiles.d |1 
 community-x86_64/PKGBUILD   |   51 ---
 community-x86_64/redis-2.8.11-use-system-jemalloc.patch |   15 --
 community-x86_64/redis.conf-sane-defaults.patch |   31 
 community-x86_64/redis.install  |8 -
 community-x86_64/redis.logrotate|5 
 community-x86_64/redis.service  |   11 -
 community-x86_64/redis.tmpfiles.d   |1 
 21 files changed, 244 insertions(+), 244 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-21 19:24:45 UTC (rev 119374)
+++ community-i686/PKGBUILD 2014-09-21 19:25:08 UTC (rev 119375)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer:  Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer:  Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Jan-Erik Rediger badboy at archlinux dot us
-# Contributor: nofxx x@nick.com
-
-pkgname=redis
-pkgver=2.8.16
-pkgrel=1
-pkgdesc='Advanced key-value store'
-arch=('i686' 'x86_64')
-url='http://redis.io/'
-license=('BSD')
-depends=('jemalloc' 'grep' 'shadow')
-backup=('etc/redis.conf'
-'etc/logrotate.d/redis')
-install=redis.install
-source=(http://download.redis.io/releases/redis-$pkgver.tar.gz
-redis.service
-redis.logrotate redis.tmpfiles.d
-redis.conf-sane-defaults.patch
-redis-2.8.11-use-system-jemalloc.patch)
-md5sums=('edfab946e3bb4cefc3227a52399ce107'
- 'aec12c881dc2693754f85539ae8e0bc7'
- '9e2d75b7a9dc421122d673fe520ef17f'
- 

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

2014-09-21 Thread Sergej Pupykin
Date: Sunday, September 21, 2014 @ 21:42:11
  Author: spupykin
Revision: 119377

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

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

---+
 /PKGBUILD |   68 
 /shotwell.install |   34 ++
 community-i686/PKGBUILD   |   34 --
 community-i686/shotwell.install   |   17 -
 community-x86_64/PKGBUILD |   34 --
 community-x86_64/shotwell.install |   17 -
 6 files changed, 102 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-21 19:41:58 UTC (rev 119376)
+++ community-i686/PKGBUILD 2014-09-21 19:42:11 UTC (rev 119377)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Joeny Ang ang(dot)joeny(at)gmail(dot)com
-
-pkgname=shotwell
-epoch=1
-pkgver=0.18.1
-pkgrel=1
-pkgdesc=A digital photo organizer designed for the GNOME desktop environment
-arch=('i686' 'x86_64')
-url=http://yorba.org/shotwell/;
-license=('LGPL2.1')
-depends=('libgee' 'webkitgtk' 'libgexiv2' 'libraw' 'rest'
-'desktop-file-utils' 'dconf' 'hicolor-icon-theme' 'json-glib'
-'gst-plugins-base' 'libgphoto2')
-makedepends=('intltool' 'vala=0.17.2' 'libunique3' 'gnome-doc-utils')
-install=shotwell.install
-source=(https://download.gnome.org/sources/shotwell/0.18/shotwell-$pkgver.tar.xz;)
-md5sums=('361eeef67f5aaed36ec44b12cfd675b3')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --libexec=/usr/lib/shotwell \
-   --disable-schemas-compile \
-   --disable-desktop-update \
-   --disable-icon-update
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: shotwell/repos/community-i686/PKGBUILD (from rev 119376, 
shotwell/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-21 19:42:11 UTC (rev 119377)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Joeny Ang ang(dot)joeny(at)gmail(dot)com
+
+pkgname=shotwell
+epoch=1
+pkgver=0.20.0
+pkgrel=1
+pkgdesc=A digital photo organizer designed for the GNOME desktop environment
+arch=('i686' 'x86_64')
+url=http://yorba.org/shotwell/;
+license=('LGPL2.1')
+depends=('libgee' 'webkitgtk' 'libgexiv2' 'libraw' 'rest'
+'desktop-file-utils' 'dconf' 'hicolor-icon-theme' 'json-glib'
+'gst-plugins-base' 'libgphoto2')
+makedepends=('intltool' 'vala=0.17.2' 'libunique3' 'gnome-doc-utils')
+install=shotwell.install
+source=(https://download.gnome.org/sources/shotwell/0.20/shotwell-$pkgver.tar.xz;)
+md5sums=('e1ab302ea9f53025368023f15e6e457e')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --libexec=/usr/lib/shotwell \
+   --disable-schemas-compile \
+   --disable-desktop-update \
+   --disable-icon-update
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: community-i686/shotwell.install
===
--- community-i686/shotwell.install 2014-09-21 19:41:58 UTC (rev 119376)
+++ community-i686/shotwell.install 2014-09-21 19:42:11 UTC (rev 119377)
@@ -1,17 +0,0 @@
-pkgname=shotwell
-
-post_install() {
-  gtk-update-icon-cache -fq -t usr/share/icons/hicolor
-  update-desktop-database -q
-  glib-compile-schemas usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  update-desktop-database -q
-  gtk-update-icon-cache -fq -t usr/share/icons/hicolor
-  glib-compile-schemas usr/share/glib-2.0/schemas
-}

Copied: shotwell/repos/community-i686/shotwell.install (from rev 119376, 
shotwell/trunk/shotwell.install)
===
--- community-i686/shotwell.install (rev 0)
+++ community-i686/shotwell.install 2014-09-21 19:42:11 UTC (rev 119377)
@@ -0,0 +1,17 @@
+pkgname=shotwell
+
+post_install() {
+  gtk-update-icon-cache 

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

2014-09-21 Thread Sergej Pupykin
Date: Sunday, September 21, 2014 @ 21:41:58
  Author: spupykin
Revision: 119376

upgpkg: shotwell 1:0.20.0-1

upd

Modified:
  shotwell/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 19:25:08 UTC (rev 119375)
+++ PKGBUILD2014-09-21 19:41:58 UTC (rev 119376)
@@ -5,7 +5,7 @@
 
 pkgname=shotwell
 epoch=1
-pkgver=0.18.1
+pkgver=0.20.0
 pkgrel=1
 pkgdesc=A digital photo organizer designed for the GNOME desktop environment
 arch=('i686' 'x86_64')
@@ -16,8 +16,8 @@
 'gst-plugins-base' 'libgphoto2')
 makedepends=('intltool' 'vala=0.17.2' 'libunique3' 'gnome-doc-utils')
 install=shotwell.install
-source=(https://download.gnome.org/sources/shotwell/0.18/shotwell-$pkgver.tar.xz;)
-md5sums=('361eeef67f5aaed36ec44b12cfd675b3')
+source=(https://download.gnome.org/sources/shotwell/0.20/shotwell-$pkgver.tar.xz;)
+md5sums=('e1ab302ea9f53025368023f15e6e457e')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2014-09-21 Thread Sébastien Luttringer
Date: Sunday, September 21, 2014 @ 23:03:07
  Author: seblu
Revision: 119378

upgpkg: python-psutil 2.1.2-1

Modified:
  python-psutil/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 19:42:11 UTC (rev 119377)
+++ PKGBUILD2014-09-21 21:03:07 UTC (rev 119378)
@@ -3,7 +3,7 @@
 
 pkgbase=python-psutil
 pkgname=('python-psutil' 'python2-psutil')
-pkgver=2.1.1
+pkgver=2.1.2
 pkgrel=1
 arch=('i686' 'x86_64')
 url='http://code.google.com/p/psutil/'
@@ -11,7 +11,7 @@
 makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
 checkdepends=('net-tools' 'procps-ng')
 
source=(https://pypi.python.org/packages/source/p/psutil/psutil-$pkgver.tar.gz;)
-md5sums=('72a6b15d589fab11f6ca245b775bc3c6')
+md5sums=('1969c9b3e256f5ce8fb90c5d0124233e')
 
 build() {
   cd psutil-$pkgver



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

2014-09-21 Thread Sébastien Luttringer
Date: Sunday, September 21, 2014 @ 23:03:31
  Author: seblu
Revision: 119379

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

Added:
  python-psutil/repos/community-i686/PKGBUILD
(from rev 119378, python-psutil/trunk/PKGBUILD)
  python-psutil/repos/community-x86_64/PKGBUILD
(from rev 119378, python-psutil/trunk/PKGBUILD)
Deleted:
  python-psutil/repos/community-i686/PKGBUILD
  python-psutil/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-21 21:03:07 UTC (rev 119378)
+++ community-i686/PKGBUILD 2014-09-21 21:03:31 UTC (rev 119379)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Sébastien Luttringer
-
-pkgbase=python-psutil
-pkgname=('python-psutil' 'python2-psutil')
-pkgver=2.1.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://code.google.com/p/psutil/'
-license=('custom: BSD')
-makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
-checkdepends=('net-tools' 'procps-ng')
-source=(https://pypi.python.org/packages/source/p/psutil/psutil-$pkgver.tar.gz;)
-md5sums=('72a6b15d589fab11f6ca245b775bc3c6')
-
-build() {
-  cd psutil-$pkgver
-
-  msg2 python
-  python setup.py build --build-lib=build/python
-
-  msg2 python2
-  python2 setup.py build --build-lib=build/python2
-  find build/python2 -type f -exec \
-sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
-}
-
-check() {
-  cd psutil-$pkgver
-
-  msg2 python
-  export PYTHONPATH=$PWD/build/python
-  #python test/test_psutil.py
-  python test/test_memory_leaks.py
-
-  msg2 python2
-  export PYTHONPATH=$PWD/build/python2
-  #python2 test/test_psutil.py
-  python2 test/test_memory_leaks.py
-}
-
-package_python-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python'
-  depends=('glibc' 'python')
-
-  cd psutil-$pkgver
-  python setup.py build --build-lib=build/python \
-  install --root=$pkgdir --optimize=1
-  install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-psutil() {
-  pkgdesc='A cross-platform process and system utilities module for Python2'
-  depends=('glibc' 'python2')
-
-  cd psutil-$pkgver
-  python2 setup.py build --build-lib=build/python2 \
-   install --root=$pkgdir --optimize=1
-  install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-psutil/repos/community-i686/PKGBUILD (from rev 119378, 
python-psutil/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-21 21:03:31 UTC (rev 119379)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Sébastien Luttringer
+
+pkgbase=python-psutil
+pkgname=('python-psutil' 'python2-psutil')
+pkgver=2.1.2
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/psutil/'
+license=('custom: BSD')
+makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
+checkdepends=('net-tools' 'procps-ng')
+source=(https://pypi.python.org/packages/source/p/psutil/psutil-$pkgver.tar.gz;)
+md5sums=('1969c9b3e256f5ce8fb90c5d0124233e')
+
+build() {
+  cd psutil-$pkgver
+
+  msg2 python
+  python setup.py build --build-lib=build/python
+
+  msg2 python2
+  python2 setup.py build --build-lib=build/python2
+  find build/python2 -type f -exec \
+sed -i '1s,^#! \?/usr/bin/\(env \|\)python$,#!/usr/bin/python2,' {} \;
+}
+
+check() {
+  cd psutil-$pkgver
+
+  msg2 python
+  export PYTHONPATH=$PWD/build/python
+  #python test/test_psutil.py
+  python test/test_memory_leaks.py
+
+  msg2 python2
+  export PYTHONPATH=$PWD/build/python2
+  #python2 test/test_psutil.py
+  python2 test/test_memory_leaks.py
+}
+
+package_python-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python'
+  depends=('glibc' 'python')
+
+  cd psutil-$pkgver
+  python setup.py build --build-lib=build/python \
+  install --root=$pkgdir --optimize=1
+  install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-psutil() {
+  pkgdesc='A cross-platform process and system utilities module for Python2'
+  depends=('glibc' 'python2')
+
+  cd psutil-$pkgver
+  python2 setup.py build --build-lib=build/python2 \
+   install --root=$pkgdir --optimize=1
+  install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-09-21 21:03:07 UTC (rev 

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

2014-09-21 Thread Laurent Carlier
Date: Sunday, September 21, 2014 @ 23:30:24
  Author: lcarlier
Revision: 119380

upgpkg: lib32-systemd 216-2

fix FS#42048

Modified:
  lib32-systemd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 21:03:31 UTC (rev 119379)
+++ PKGBUILD2014-09-21 21:30:24 UTC (rev 119380)
@@ -5,7 +5,7 @@
 pkgname=lib32-systemd
 _pkgbasename=systemd
 pkgver=216
-pkgrel=1
+pkgrel=2
 pkgdesc=system and service manager (32-bit)
 arch=('x86_64')
 url=http://www.freedesktop.org/wiki/Software/systemd;
@@ -57,7 +57,6 @@
 
   rm -rf ${pkgdir}/{etc,var}
   rm -rf ${pkgdir}/usr/{bin,include,lib,share}
-  rm -rf ${pkgdir}/usr/lib32/libnss*
 
   install -m755 -d ${pkgdir}/usr/share/licenses
   ln -s systemd $pkgdir/usr/share/licenses/lib32-systemd



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

2014-09-21 Thread Laurent Carlier
Date: Sunday, September 21, 2014 @ 23:30:32
  Author: lcarlier
Revision: 119381

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-21 21:30:24 UTC (rev 119380)
+++ PKGBUILD2014-09-21 21:30:32 UTC (rev 119381)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Dave Reisner dreis...@archlinux.org
-# Maintainer: Tom Gundersen t...@jklm.no
-
-pkgname=lib32-systemd
-_pkgbasename=systemd
-pkgver=216
-pkgrel=1
-pkgdesc=system and service manager (32-bit)
-arch=('x86_64')
-url=http://www.freedesktop.org/wiki/Software/systemd;
-license=('GPL2' 'LGPL2.1' 'MIT')
-depends=('lib32-glib2' 'lib32-libgcrypt' 'lib32-xz' 'lib32-curl' 'systemd')
-makedepends=('lib32-gcc-libs' 'gcc-multilib' 'lib32-libcap' 'lib32-acl' 
- 'intltool' 'gperf')
-source=(http://www.freedesktop.org/software/$_pkgbasename/$_pkgbasename-$pkgver.tar.xz;)
-md5sums=('04fda588a04f549da0f397dce3ae6a39')
-
-build() {
-  export CC=gcc -m32
-  export CXX=g++ -m32
-  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
-
-  cd ${srcdir}/systemd-${pkgver}
-
-  # LTO currently breaks the build because of libtool failures
-  CFLAGS+=' -fno-lto'
-
-  ./configure \
---libexecdir=/usr/lib32 \
---libdir=/usr/lib32 \
---localstatedir=/var \
---sysconfdir=/etc \
---enable-compat-libs \
---disable-audit \
---disable-tests \
---disable-ima \
---disable-kdbus \
---disable-seccomp \
---disable-pam \
---disable-kmod \
---disable-networkd \
---disable-blkid \
---without-python \
---disable-libcryptsetup \
---with-sysvinit-path= \
---with-sysvrcnd-path= \
---with-firmware-path=/usr/lib/firmware/updates:/usr/lib/firmware
-
-  make
-}
-
-package() {
-  cd ${srcdir}/systemd-${pkgver}
-
-  make DESTDIR=$pkgdir install
-
-  rm -rf ${pkgdir}/{etc,var}
-  rm -rf ${pkgdir}/usr/{bin,include,lib,share}
-  rm -rf ${pkgdir}/usr/lib32/libnss*
-
-  install -m755 -d ${pkgdir}/usr/share/licenses
-  ln -s systemd $pkgdir/usr/share/licenses/lib32-systemd
-}

Copied: lib32-systemd/repos/multilib-x86_64/PKGBUILD (from rev 119380, 
lib32-systemd/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-21 21:30:32 UTC (rev 119381)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Dave Reisner dreis...@archlinux.org
+# Maintainer: Tom Gundersen t...@jklm.no
+
+pkgname=lib32-systemd
+_pkgbasename=systemd
+pkgver=216
+pkgrel=2
+pkgdesc=system and service manager (32-bit)
+arch=('x86_64')
+url=http://www.freedesktop.org/wiki/Software/systemd;
+license=('GPL2' 'LGPL2.1' 'MIT')
+depends=('lib32-glib2' 'lib32-libgcrypt' 'lib32-xz' 'lib32-curl' 'systemd')
+makedepends=('lib32-gcc-libs' 'gcc-multilib' 'lib32-libcap' 'lib32-acl' 
+ 'intltool' 'gperf')
+source=(http://www.freedesktop.org/software/$_pkgbasename/$_pkgbasename-$pkgver.tar.xz;)
+md5sums=('04fda588a04f549da0f397dce3ae6a39')
+
+build() {
+  export CC=gcc -m32
+  export CXX=g++ -m32
+  export PKG_CONFIG_PATH=/usr/lib32/pkgconfig
+
+  cd ${srcdir}/systemd-${pkgver}
+
+  # LTO currently breaks the build because of libtool failures
+  CFLAGS+=' -fno-lto'
+
+  ./configure \
+--libexecdir=/usr/lib32 \
+--libdir=/usr/lib32 \
+--localstatedir=/var \
+--sysconfdir=/etc \
+--enable-compat-libs \
+--disable-audit \
+--disable-tests \
+--disable-ima \
+--disable-kdbus \
+--disable-seccomp \
+--disable-pam \
+--disable-kmod \
+--disable-networkd \
+--disable-blkid \
+--without-python \
+--disable-libcryptsetup \
+--with-sysvinit-path= \
+--with-sysvrcnd-path= \
+--with-firmware-path=/usr/lib/firmware/updates:/usr/lib/firmware
+
+  make
+}
+
+package() {
+  cd ${srcdir}/systemd-${pkgver}
+
+  make DESTDIR=$pkgdir install
+
+  rm -rf ${pkgdir}/{etc,var}
+  rm -rf ${pkgdir}/usr/{bin,include,lib,share}
+
+  install -m755 -d ${pkgdir}/usr/share/licenses
+  ln -s systemd $pkgdir/usr/share/licenses/lib32-systemd
+}



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

2014-09-21 Thread Anatol Pomozov
Date: Monday, September 22, 2014 @ 01:07:45
  Author: anatolik
Revision: 119382

upgpkg: tup 0.7.3-1

Modified:
  tup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 21:30:32 UTC (rev 119381)
+++ PKGBUILD2014-09-21 23:07:45 UTC (rev 119382)
@@ -4,7 +4,7 @@
 # Contributor: Patrick McCarty pnorcks at gmail dot com
 
 pkgname=tup
-pkgver=0.7.2
+pkgver=0.7.3
 pkgrel=1
 pkgdesc='A fast, file-based build system'
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 depends=(fuse)
 install=tup.install
 source=(https://github.com/gittup/tup/archive/v$pkgver.zip)
-sha256sums=('983edc872d9764037ac5591e9a89fb7273ee05b650d562a52626c1096e5288dc')
+sha256sums=('5d90f2e3c77144898346e1a4a7713f60aeabe158b1ac4ab184bedd18583aa29d')
 
 prepare() {
   cd tup-$pkgver



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

2014-09-21 Thread Anatol Pomozov
Date: Monday, September 22, 2014 @ 01:08:37
  Author: anatolik
Revision: 119383

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

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

--+
 /PKGBUILD|   86 +
 /tup.install |   60 
 community-i686/PKGBUILD  |   43 
 community-i686/tup.install   |   30 --
 community-x86_64/PKGBUILD|   43 
 community-x86_64/tup.install |   30 --
 6 files changed, 146 insertions(+), 146 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-21 23:07:45 UTC (rev 119382)
+++ community-i686/PKGBUILD 2014-09-21 23:08:37 UTC (rev 119383)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
-# Contributor: Arvid Norlander anmaster A_T tele2 d_o_t (ccTLD for Sweden, 
which is se)
-# Contributor: Patrick McCarty pnorcks at gmail dot com
-
-pkgname=tup
-pkgver=0.7.2
-pkgrel=1
-pkgdesc='A fast, file-based build system'
-arch=(i686 x86_64)
-url='http://gittup.org/tup/index.html'
-license=(GPL2)
-depends=(fuse)
-install=tup.install
-source=(https://github.com/gittup/tup/archive/v$pkgver.zip)
-sha256sums=('983edc872d9764037ac5591e9a89fb7273ee05b650d562a52626c1096e5288dc')
-
-prepare() {
-  cd tup-$pkgver
-
-  sed s/\`git describe\`/$pkgver/ -i Tupfile
-  echo CFLAGS += $CFLAGS  Tuprules.tup
-  echo LDFLAGS += $LDFLAGS  Tuprules.tup
-}
-
-build() {
-  cd tup-$pkgver
-
-  # Clean environment does not allow to use fuse so ./bootstrap does not work
-  ./build.sh
-  ./build/tup generate runme.sh
-  ./runme.sh
-}
-
-package() {
-  cd tup-$pkgver
-
-  install -d $pkgdir/usr/bin $pkgdir/usr/share/man/man1 
$pkgdir/usr/share/vim/vimfiles/{syntax,ftdetect}
-  install -m755 -t $pkgdir/usr/bin tup
-  install -m644 -t $pkgdir/usr/share/man/man1 tup.1
-  install -m644 -t $pkgdir/usr/share/vim/vimfiles/syntax 
contrib/syntax/tup.vim
-  echo 'au BufNewFile,BufRead Tupfile,*.tup setf tup'  
$pkgdir/usr/share/vim/vimfiles/ftdetect/tup.vim
-}

Copied: tup/repos/community-i686/PKGBUILD (from rev 119382, tup/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-21 23:08:37 UTC (rev 119383)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Anatol Pomozov anatol.pomo...@gmail.com
+# Contributor: Arvid Norlander anmaster A_T tele2 d_o_t (ccTLD for Sweden, 
which is se)
+# Contributor: Patrick McCarty pnorcks at gmail dot com
+
+pkgname=tup
+pkgver=0.7.3
+pkgrel=1
+pkgdesc='A fast, file-based build system'
+arch=(i686 x86_64)
+url='http://gittup.org/tup/index.html'
+license=(GPL2)
+depends=(fuse)
+install=tup.install
+source=(https://github.com/gittup/tup/archive/v$pkgver.zip)
+sha256sums=('5d90f2e3c77144898346e1a4a7713f60aeabe158b1ac4ab184bedd18583aa29d')
+
+prepare() {
+  cd tup-$pkgver
+
+  sed s/\`git describe\`/$pkgver/ -i Tupfile
+  echo CFLAGS += $CFLAGS  Tuprules.tup
+  echo LDFLAGS += $LDFLAGS  Tuprules.tup
+}
+
+build() {
+  cd tup-$pkgver
+
+  # Clean environment does not allow to use fuse so ./bootstrap does not work
+  ./build.sh
+  ./build/tup generate runme.sh
+  ./runme.sh
+}
+
+package() {
+  cd tup-$pkgver
+
+  install -d $pkgdir/usr/bin $pkgdir/usr/share/man/man1 
$pkgdir/usr/share/vim/vimfiles/{syntax,ftdetect}
+  install -m755 -t $pkgdir/usr/bin tup
+  install -m644 -t $pkgdir/usr/share/man/man1 tup.1
+  install -m644 -t $pkgdir/usr/share/vim/vimfiles/syntax 
contrib/syntax/tup.vim
+  echo 'au BufNewFile,BufRead Tupfile,*.tup setf tup'  
$pkgdir/usr/share/vim/vimfiles/ftdetect/tup.vim
+}

Deleted: community-i686/tup.install
===
--- community-i686/tup.install  2014-09-21 23:07:45 UTC (rev 119382)
+++ community-i686/tup.install  2014-09-21 23:08:37 UTC (rev 119383)
@@ -1,30 +0,0 @@
-suid_set=tmp/tup.upgrade.suid_set
-binary=/usr/bin/tup
-
-suid_msg() {
-  if [ -f $suid_set ]; then
-echo $binary has suid bit set. It allows you to run commands in chroot-ed 
environment (e.g. for full dependency tracking).
-echo See 'man tup' for more information.
-  else
-echo If you want to be able to run commands in chroot-ed environment 
(e.g. for full dependency tracking) \
- you need to set suid bit on tup binary: 'sudo chmod 

[arch-commits] Commit in dhcp/trunk (6 files)

2014-09-21 Thread Anatol Pomozov
Date: Monday, September 22, 2014 @ 03:51:01
  Author: anatolik
Revision: 222554

upgpkg: dhcp 4.3.1-1

Move arch-specific changes out of LFS patches. It makes updating LFS patches 
easier.

Added:
  dhcp/trunk/arch_patch_over_lfs.patch
  dhcp/trunk/dhcp-4.3.1-client_script-1.patch
  dhcp/trunk/dhcp-4.3.1-missing_ipv6-1.patch
Modified:
  dhcp/trunk/PKGBUILD
Deleted:
  dhcp/trunk/dhcp-4.2.5-client_script-1.patch
  dhcp/trunk/dhcp-4.2.5-missing_ipv6-1.patch

--+
 PKGBUILD |   25 -
 arch_patch_over_lfs.patch|   27 +
 dhcp-4.2.5-client_script-1.patch |  648 -
 dhcp-4.2.5-missing_ipv6-1.patch  |   48 --
 dhcp-4.3.1-client_script-1.patch |  645 
 dhcp-4.3.1-missing_ipv6-1.patch  |   48 ++
 6 files changed, 735 insertions(+), 706 deletions(-)

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


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

2014-09-21 Thread Anatol Pomozov
Date: Monday, September 22, 2014 @ 03:53:33
  Author: anatolik
Revision: 222555

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

Added:
  dhcp/repos/testing-i686/
  dhcp/repos/testing-i686/PKGBUILD
(from rev 222554, dhcp/trunk/PKGBUILD)
  dhcp/repos/testing-i686/arch_patch_over_lfs.patch
(from rev 222554, dhcp/trunk/arch_patch_over_lfs.patch)
  dhcp/repos/testing-i686/dhcp-4.3.1-client_script-1.patch
(from rev 222554, dhcp/trunk/dhcp-4.3.1-client_script-1.patch)
  dhcp/repos/testing-i686/dhcp-4.3.1-missing_ipv6-1.patch
(from rev 222554, dhcp/trunk/dhcp-4.3.1-missing_ipv6-1.patch)
  dhcp/repos/testing-i686/dhcp.install
(from rev 222554, dhcp/trunk/dhcp.install)
  dhcp/repos/testing-i686/dhcpd4.service
(from rev 222554, dhcp/trunk/dhcpd4.service)
  dhcp/repos/testing-i686/dhcpd6.service
(from rev 222554, dhcp/trunk/dhcpd6.service)
  dhcp/repos/testing-x86_64/
  dhcp/repos/testing-x86_64/PKGBUILD
(from rev 222554, dhcp/trunk/PKGBUILD)
  dhcp/repos/testing-x86_64/arch_patch_over_lfs.patch
(from rev 222554, dhcp/trunk/arch_patch_over_lfs.patch)
  dhcp/repos/testing-x86_64/dhcp-4.3.1-client_script-1.patch
(from rev 222554, dhcp/trunk/dhcp-4.3.1-client_script-1.patch)
  dhcp/repos/testing-x86_64/dhcp-4.3.1-missing_ipv6-1.patch
(from rev 222554, dhcp/trunk/dhcp-4.3.1-missing_ipv6-1.patch)
  dhcp/repos/testing-x86_64/dhcp.install
(from rev 222554, dhcp/trunk/dhcp.install)
  dhcp/repos/testing-x86_64/dhcpd4.service
(from rev 222554, dhcp/trunk/dhcpd4.service)
  dhcp/repos/testing-x86_64/dhcpd6.service
(from rev 222554, dhcp/trunk/dhcpd6.service)

-+
 testing-i686/PKGBUILD   |   99 +++
 testing-i686/arch_patch_over_lfs.patch  |   27 
 testing-i686/dhcp-4.3.1-client_script-1.patch   |  645 ++
 testing-i686/dhcp-4.3.1-missing_ipv6-1.patch|   48 +
 testing-i686/dhcp.install   |   14 
 testing-i686/dhcpd4.service |   12 
 testing-i686/dhcpd6.service |   12 
 testing-x86_64/PKGBUILD |   99 +++
 testing-x86_64/arch_patch_over_lfs.patch|   27 
 testing-x86_64/dhcp-4.3.1-client_script-1.patch |  645 ++
 testing-x86_64/dhcp-4.3.1-missing_ipv6-1.patch  |   48 +
 testing-x86_64/dhcp.install |   14 
 testing-x86_64/dhcpd4.service   |   12 
 testing-x86_64/dhcpd6.service   |   12 
 14 files changed, 1714 insertions(+)

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


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

2014-09-21 Thread Alexandre Filgueira
Date: Monday, September 22, 2014 @ 04:15:07
  Author: faidoc
Revision: 119384

upgpkg: lxinput 0.3.3-1

Modified:
  lxinput/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-21 23:08:37 UTC (rev 119383)
+++ PKGBUILD2014-09-22 02:15:07 UTC (rev 119384)
@@ -3,8 +3,8 @@
 # Contributor: Filipp Scorp Andjelo sc...@mailueberfall.de
 
 pkgname=lxinput
-pkgver=0.3.2
-pkgrel=3
+pkgver=0.3.3
+pkgrel=1
 pkgdesc=A small program to configure keyboard and mouse for LXDE.
 arch=('i686' 'x86_64')
 url=http://lxde.org/;
@@ -12,8 +12,8 @@
 groups=('lxde')
 depends=('gtk2=2.12.0')
 makedepends=('pkgconfig' 'intltool')
-source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
-md5sums=('5bf563d04984ef2a147433f3bdda687b')
+source=(http://sourceforge.net/projects/lxde/files/LXInput%20%28Kbd%20and%20amp_%20mouse%20config%29/LXInput%200.3.x/${pkgname}-${pkgver}.tar.xz/download)
+sha256sums=('2452b47b3b7fb1e93d75e0c9c0018bb28b7f4eb718a566112445f0f1cb1e8498')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2014-09-21 Thread Alexandre Filgueira
Date: Monday, September 22, 2014 @ 04:16:49
  Author: faidoc
Revision: 119385

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-22 02:15:07 UTC (rev 119384)
+++ community-i686/PKGBUILD 2014-09-22 02:16:49 UTC (rev 119385)
@@ -1,28 +0,0 @@
-# $Id$
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Filipp Scorp Andjelo sc...@mailueberfall.de
-
-pkgname=lxinput
-pkgver=0.3.2
-pkgrel=3
-pkgdesc=A small program to configure keyboard and mouse for LXDE.
-arch=('i686' 'x86_64')
-url=http://lxde.org/;
-license=('GPL')
-groups=('lxde')
-depends=('gtk2=2.12.0')
-makedepends=('pkgconfig' 'intltool')
-source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
-md5sums=('5bf563d04984ef2a147433f3bdda687b')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-

Copied: lxinput/repos/community-i686/PKGBUILD (from rev 119384, 
lxinput/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-22 02:16:49 UTC (rev 119385)
@@ -0,0 +1,28 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Filipp Scorp Andjelo sc...@mailueberfall.de
+
+pkgname=lxinput
+pkgver=0.3.3
+pkgrel=1
+pkgdesc=A small program to configure keyboard and mouse for LXDE.
+arch=('i686' 'x86_64')
+url=http://lxde.org/;
+license=('GPL')
+groups=('lxde')
+depends=('gtk2=2.12.0')
+makedepends=('pkgconfig' 'intltool')
+source=(http://sourceforge.net/projects/lxde/files/LXInput%20%28Kbd%20and%20amp_%20mouse%20config%29/LXInput%200.3.x/${pkgname}-${pkgver}.tar.xz/download)
+sha256sums=('2452b47b3b7fb1e93d75e0c9c0018bb28b7f4eb718a566112445f0f1cb1e8498')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-09-22 02:15:07 UTC (rev 119384)
+++ community-x86_64/PKGBUILD   2014-09-22 02:16:49 UTC (rev 119385)
@@ -1,28 +0,0 @@
-# $Id$
-# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
-# Contributor: Filipp Scorp Andjelo sc...@mailueberfall.de
-
-pkgname=lxinput
-pkgver=0.3.2
-pkgrel=3
-pkgdesc=A small program to configure keyboard and mouse for LXDE.
-arch=('i686' 'x86_64')
-url=http://lxde.org/;
-license=('GPL')
-groups=('lxde')
-depends=('gtk2=2.12.0')
-makedepends=('pkgconfig' 'intltool')
-source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
-md5sums=('5bf563d04984ef2a147433f3bdda687b')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-

Copied: lxinput/repos/community-x86_64/PKGBUILD (from rev 119384, 
lxinput/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-09-22 02:16:49 UTC (rev 119385)
@@ -0,0 +1,28 @@
+# $Id$
+# Contributor: Bartłomiej Piotrowski bpiotrow...@archlinux.org
+# Contributor: Filipp Scorp Andjelo sc...@mailueberfall.de
+
+pkgname=lxinput
+pkgver=0.3.3
+pkgrel=1
+pkgdesc=A small program to configure keyboard and mouse for LXDE.
+arch=('i686' 'x86_64')
+url=http://lxde.org/;
+license=('GPL')
+groups=('lxde')
+depends=('gtk2=2.12.0')
+makedepends=('pkgconfig' 'intltool')
+source=(http://sourceforge.net/projects/lxde/files/LXInput%20%28Kbd%20and%20amp_%20mouse%20config%29/LXInput%200.3.x/${pkgname}-${pkgver}.tar.xz/download)
+sha256sums=('2452b47b3b7fb1e93d75e0c9c0018bb28b7f4eb718a566112445f0f1cb1e8498')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+



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

2014-09-21 Thread Alexandre Filgueira
Date: Monday, September 22, 2014 @ 04:19:12
  Author: faidoc
Revision: 119386

upgpkg: lxmenu-data 0.1.4-1

Modified:
  lxmenu-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-22 02:16:49 UTC (rev 119385)
+++ PKGBUILD2014-09-22 02:19:12 UTC (rev 119386)
@@ -3,16 +3,16 @@
 # Maintainer: Juergen Hoetzel juer...@archlinux.org
 
 pkgname=lxmenu-data
-pkgver=0.1.2
-pkgrel=2
+pkgver=0.1.4
+pkgrel=1
 pkgdesc=freedesktop.org desktop menus for LXDE
 arch=('i686' 'x86_64')
 license=('GPL2')
 url=http://lxde.org/;
 groups=('lxde')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz;)
+source=(http://sourceforge.net/projects/lxde/files/lxmenu-data%20%28desktop%20menu%29/lxmenu-data%200.1.4/${pkgname}-${pkgver}.tar.xz/download;)
 makedepends=('intltool')
-md5sums=('2184ab3746d572477f1bea7e98e230a8')
+sha256sums=('8802fbc88e4cac80dbf0a2926deb30eeb127c54b93254d7bda591cbe174bfb1c')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2014-09-21 Thread Alexandre Filgueira
Date: Monday, September 22, 2014 @ 04:21:36
  Author: faidoc
Revision: 119387

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

Added:
  lxmenu-data/repos/community-i686/PKGBUILD
(from rev 119386, lxmenu-data/trunk/PKGBUILD)
  lxmenu-data/repos/community-x86_64/PKGBUILD
(from rev 119386, lxmenu-data/trunk/PKGBUILD)
Deleted:
  lxmenu-data/repos/community-i686/PKGBUILD
  lxmenu-data/repos/community-x86_64/PKGBUILD

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-09-22 02:19:12 UTC (rev 119386)
+++ community-i686/PKGBUILD 2014-09-22 02:21:36 UTC (rev 119387)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org
-# Maintainer: Juergen Hoetzel juer...@archlinux.org
-
-pkgname=lxmenu-data
-pkgver=0.1.2
-pkgrel=2
-pkgdesc=freedesktop.org desktop menus for LXDE
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=http://lxde.org/;
-groups=('lxde')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz;)
-makedepends=('intltool')
-md5sums=('2184ab3746d572477f1bea7e98e230a8')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: lxmenu-data/repos/community-i686/PKGBUILD (from rev 119386, 
lxmenu-data/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-09-22 02:21:36 UTC (rev 119387)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=lxmenu-data
+pkgver=0.1.4
+pkgrel=1
+pkgdesc=freedesktop.org desktop menus for LXDE
+arch=('i686' 'x86_64')
+license=('GPL2')
+url=http://lxde.org/;
+groups=('lxde')
+source=(http://sourceforge.net/projects/lxde/files/lxmenu-data%20%28desktop%20menu%29/lxmenu-data%200.1.4/${pkgname}-${pkgver}.tar.xz/download;)
+makedepends=('intltool')
+sha256sums=('8802fbc88e4cac80dbf0a2926deb30eeb127c54b93254d7bda591cbe174bfb1c')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-09-22 02:19:12 UTC (rev 119386)
+++ community-x86_64/PKGBUILD   2014-09-22 02:21:36 UTC (rev 119387)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org
-# Maintainer: Juergen Hoetzel juer...@archlinux.org
-
-pkgname=lxmenu-data
-pkgver=0.1.2
-pkgrel=2
-pkgdesc=freedesktop.org desktop menus for LXDE
-arch=('i686' 'x86_64')
-license=('GPL2')
-url=http://lxde.org/;
-groups=('lxde')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz;)
-makedepends=('intltool')
-md5sums=('2184ab3746d572477f1bea7e98e230a8')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: lxmenu-data/repos/community-x86_64/PKGBUILD (from rev 119386, 
lxmenu-data/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-09-22 02:21:36 UTC (rev 119387)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Angel Velasquez an...@archlinux.org
+# Maintainer: Juergen Hoetzel juer...@archlinux.org
+
+pkgname=lxmenu-data
+pkgver=0.1.4
+pkgrel=1
+pkgdesc=freedesktop.org desktop menus for LXDE
+arch=('i686' 'x86_64')
+license=('GPL2')
+url=http://lxde.org/;
+groups=('lxde')
+source=(http://sourceforge.net/projects/lxde/files/lxmenu-data%20%28desktop%20menu%29/lxmenu-data%200.1.4/${pkgname}-${pkgver}.tar.xz/download;)
+makedepends=('intltool')
+sha256sums=('8802fbc88e4cac80dbf0a2926deb30eeb127c54b93254d7bda591cbe174bfb1c')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}