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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 10:27:10
  Author: jgc
Revision: 180634

upgpkg: pygobject 3.8.0-1

Modified:
  pygobject/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 04:42:25 UTC (rev 180633)
+++ PKGBUILD2013-03-25 09:27:10 UTC (rev 180634)
@@ -3,7 +3,7 @@
 
 pkgbase=pygobject
 pkgname=(python-gobject python2-gobject pygobject-devel)
-pkgver=3.4.2
+pkgver=3.8.0
 pkgrel=1
 arch=('i686' 'x86_64')
 url=https://live.gnome.org/PyGObject;
@@ -11,22 +11,21 @@
 makedepends=('python' 'python2' 'python-cairo' 'python2-cairo' 
'gobject-introspection')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver::3}/$pkgbase-$pkgver.tar.xz)
 options=('!libtool')
-sha256sums=('2b87ef3170be3a20a53fbdb348ae4ecb41a72a17ec6531baa67147c3437d2aad')
+sha256sums=('9c57f581ae35587108c978cb116eeb7ec186b50c95b145f62033589ee248b32d')
 
 build() {
-  cp -a $pkgbase-$pkgver python2-build
-  mkdir devel
+  mkdir build-py2 build-py3 devel
 
   (
-cd python2-build
+cd build-py2
 export PYTHON=/usr/bin/python2
-./configure --prefix=/usr
+../${pkgbase}-${pkgver}/configure --prefix=/usr
 make
   )
 
   (
-cd $pkgbase-$pkgver
-./configure --prefix=/usr
+cd build-py3
+../${pkgbase}-${pkgver}/configure --prefix=/usr
 make
   )
 }
@@ -35,7 +34,7 @@
   pkgdesc=Python 3 bindings for GObject
   depends=('gobject-introspection' 'python-cairo' pygobject-devel=$pkgver)
 
-  cd $pkgbase-$pkgver
+  cd build-py3
   make DESTDIR=$pkgdir install
   rm -r $pkgdir/usr/{include,lib/pkgconfig}
 }
@@ -44,7 +43,7 @@
   pkgdesc=Python 2 bindings for GObject
   depends=('gobject-introspection' 'python2-cairo' pygobject-devel=$pkgver)
 
-  cd python2-build
+  cd build-py2
   make DESTDIR=$pkgdir install
   mv $pkgdir/usr/{include,lib/pkgconfig} $srcdir/devel
 }



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 10:27:17
  Author: jgc
Revision: 180635

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

Added:
  pygobject/repos/gnome-unstable-i686/
  pygobject/repos/gnome-unstable-i686/PKGBUILD
(from rev 180634, pygobject/trunk/PKGBUILD)
  pygobject/repos/gnome-unstable-x86_64/
  pygobject/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180634, pygobject/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   57 +++
 gnome-unstable-x86_64/PKGBUILD |   57 +++
 2 files changed, 114 insertions(+)

Copied: pygobject/repos/gnome-unstable-i686/PKGBUILD (from rev 180634, 
pygobject/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 09:27:17 UTC (rev 180635)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgbase=pygobject
+pkgname=(python-gobject python2-gobject pygobject-devel)
+pkgver=3.8.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url=https://live.gnome.org/PyGObject;
+license=('LGPL')
+makedepends=('python' 'python2' 'python-cairo' 'python2-cairo' 
'gobject-introspection')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver::3}/$pkgbase-$pkgver.tar.xz)
+options=('!libtool')
+sha256sums=('9c57f581ae35587108c978cb116eeb7ec186b50c95b145f62033589ee248b32d')
+
+build() {
+  mkdir build-py2 build-py3 devel
+
+  (
+cd build-py2
+export PYTHON=/usr/bin/python2
+../${pkgbase}-${pkgver}/configure --prefix=/usr
+make
+  )
+
+  (
+cd build-py3
+../${pkgbase}-${pkgver}/configure --prefix=/usr
+make
+  )
+}
+
+package_python-gobject() {
+  pkgdesc=Python 3 bindings for GObject
+  depends=('gobject-introspection' 'python-cairo' pygobject-devel=$pkgver)
+
+  cd build-py3
+  make DESTDIR=$pkgdir install
+  rm -r $pkgdir/usr/{include,lib/pkgconfig}
+}
+
+package_python2-gobject() {
+  pkgdesc=Python 2 bindings for GObject
+  depends=('gobject-introspection' 'python2-cairo' pygobject-devel=$pkgver)
+
+  cd build-py2
+  make DESTDIR=$pkgdir install
+  mv $pkgdir/usr/{include,lib/pkgconfig} $srcdir/devel
+}
+
+package_pygobject-devel() {
+  pkgdesc=Development files for the pygobject bindings
+  cd devel
+  mkdir -p $pkgdir/usr/{include,lib}
+  mv include $pkgdir/usr/
+  mv pkgconfig $pkgdir/usr/lib/
+}

Copied: pygobject/repos/gnome-unstable-x86_64/PKGBUILD (from rev 180634, 
pygobject/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 09:27:17 UTC (rev 180635)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgbase=pygobject
+pkgname=(python-gobject python2-gobject pygobject-devel)
+pkgver=3.8.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url=https://live.gnome.org/PyGObject;
+license=('LGPL')
+makedepends=('python' 'python2' 'python-cairo' 'python2-cairo' 
'gobject-introspection')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver::3}/$pkgbase-$pkgver.tar.xz)
+options=('!libtool')
+sha256sums=('9c57f581ae35587108c978cb116eeb7ec186b50c95b145f62033589ee248b32d')
+
+build() {
+  mkdir build-py2 build-py3 devel
+
+  (
+cd build-py2
+export PYTHON=/usr/bin/python2
+../${pkgbase}-${pkgver}/configure --prefix=/usr
+make
+  )
+
+  (
+cd build-py3
+../${pkgbase}-${pkgver}/configure --prefix=/usr
+make
+  )
+}
+
+package_python-gobject() {
+  pkgdesc=Python 3 bindings for GObject
+  depends=('gobject-introspection' 'python-cairo' pygobject-devel=$pkgver)
+
+  cd build-py3
+  make DESTDIR=$pkgdir install
+  rm -r $pkgdir/usr/{include,lib/pkgconfig}
+}
+
+package_python2-gobject() {
+  pkgdesc=Python 2 bindings for GObject
+  depends=('gobject-introspection' 'python2-cairo' pygobject-devel=$pkgver)
+
+  cd build-py2
+  make DESTDIR=$pkgdir install
+  mv $pkgdir/usr/{include,lib/pkgconfig} $srcdir/devel
+}
+
+package_pygobject-devel() {
+  pkgdesc=Development files for the pygobject bindings
+  cd devel
+  mkdir -p $pkgdir/usr/{include,lib}
+  mv include $pkgdir/usr/
+  mv pkgconfig $pkgdir/usr/lib/
+}



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

2013-03-25 Thread Andrea Scarpino
Date: Monday, March 25, 2013 @ 11:10:38
  Author: andrea
Revision: 180636

upgpkg: qt4 4.8.4-16

icu rebuild

Modified:
  qt4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 09:27:17 UTC (rev 180635)
+++ PKGBUILD2013-03-25 10:10:38 UTC (rev 180636)
@@ -4,7 +4,7 @@
 
 pkgname=qt4
 pkgver=4.8.4
-pkgrel=15
+pkgrel=16
 arch=('i686' 'x86_64')
 url='http://qt-project.org/'
 license=('GPL3' 'LGPL')



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

2013-03-25 Thread Andrea Scarpino
Date: Monday, March 25, 2013 @ 11:10:53
  Author: andrea
Revision: 180637

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

Added:
  qt4/repos/testing-i686/PKGBUILD
(from rev 180636, qt4/trunk/PKGBUILD)
  qt4/repos/testing-i686/assistant-qt4.desktop
(from rev 180636, qt4/trunk/assistant-qt4.desktop)
  qt4/repos/testing-i686/designer-qt4.desktop
(from rev 180636, qt4/trunk/designer-qt4.desktop)
  qt4/repos/testing-i686/improve-cups-support.patch
(from rev 180636, qt4/trunk/improve-cups-support.patch)
  qt4/repos/testing-i686/linguist-qt4.desktop
(from rev 180636, qt4/trunk/linguist-qt4.desktop)
  qt4/repos/testing-i686/qt4.install
(from rev 180636, qt4/trunk/qt4.install)
  qt4/repos/testing-i686/qtconfig-qt4.desktop
(from rev 180636, qt4/trunk/qtconfig-qt4.desktop)
  qt4/repos/testing-x86_64/PKGBUILD
(from rev 180636, qt4/trunk/PKGBUILD)
  qt4/repos/testing-x86_64/assistant-qt4.desktop
(from rev 180636, qt4/trunk/assistant-qt4.desktop)
  qt4/repos/testing-x86_64/designer-qt4.desktop
(from rev 180636, qt4/trunk/designer-qt4.desktop)
  qt4/repos/testing-x86_64/improve-cups-support.patch
(from rev 180636, qt4/trunk/improve-cups-support.patch)
  qt4/repos/testing-x86_64/linguist-qt4.desktop
(from rev 180636, qt4/trunk/linguist-qt4.desktop)
  qt4/repos/testing-x86_64/qt4.install
(from rev 180636, qt4/trunk/qt4.install)
  qt4/repos/testing-x86_64/qtconfig-qt4.desktop
(from rev 180636, qt4/trunk/qtconfig-qt4.desktop)
Deleted:
  qt4/repos/testing-i686/PKGBUILD
  qt4/repos/testing-i686/assistant-qt4.desktop
  qt4/repos/testing-i686/designer-qt4.desktop
  qt4/repos/testing-i686/improve-cups-support.patch
  qt4/repos/testing-i686/linguist-qt4.desktop
  qt4/repos/testing-i686/qt4.install
  qt4/repos/testing-i686/qtconfig-qt4.desktop
  qt4/repos/testing-x86_64/PKGBUILD
  qt4/repos/testing-x86_64/assistant-qt4.desktop
  qt4/repos/testing-x86_64/designer-qt4.desktop
  qt4/repos/testing-x86_64/improve-cups-support.patch
  qt4/repos/testing-x86_64/linguist-qt4.desktop
  qt4/repos/testing-x86_64/qt4.install
  qt4/repos/testing-x86_64/qtconfig-qt4.desktop

---+
 /PKGBUILD |  238 
 /assistant-qt4.desktop|   18 ++
 /designer-qt4.desktop |   22 ++
 /improve-cups-support.patch   |  168 +++
 /linguist-qt4.desktop |   20 ++
 /qt4.install  |   24 ++
 /qtconfig-qt4.desktop |   18 ++
 testing-i686/PKGBUILD |  119 --
 testing-i686/assistant-qt4.desktop|9 -
 testing-i686/designer-qt4.desktop |   11 -
 testing-i686/improve-cups-support.patch   |   84 -
 testing-i686/linguist-qt4.desktop |   10 -
 testing-i686/qt4.install  |   12 -
 testing-i686/qtconfig-qt4.desktop |9 -
 testing-x86_64/PKGBUILD   |  119 --
 testing-x86_64/assistant-qt4.desktop  |9 -
 testing-x86_64/designer-qt4.desktop   |   11 -
 testing-x86_64/improve-cups-support.patch |   84 -
 testing-x86_64/linguist-qt4.desktop   |   10 -
 testing-x86_64/qt4.install|   12 -
 testing-x86_64/qtconfig-qt4.desktop   |9 -
 21 files changed, 508 insertions(+), 508 deletions(-)

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


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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 11:54:52
  Author: jgc
Revision: 180638

Build standalone again. This is the last release that supports GStreamer 0.10

Added:
  webkitgtk2/
  webkitgtk2/trunk/
Modified:
  webkitgtk2/trunk/PKGBUILD

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

Modified: webkitgtk2/trunk/PKGBUILD
===
--- webkitgtk/trunk/PKGBUILD2013-03-25 09:27:17 UTC (rev 180635)
+++ webkitgtk2/trunk/PKGBUILD   2013-03-25 10:54:52 UTC (rev 180638)
@@ -1,21 +1,20 @@
 # $Id$
 # Maintainer: Andreas Radke andy...@archlinux.org
 
-pkgbase=webkitgtk
-pkgname=('webkitgtk2' 'webkitgtk3')
+pkgname=webkitgtk2
 pkgver=1.10.2
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 url=http://webkitgtk.org/;
 license=('custom')
-makedepends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gtk3' 'gst-plugins-base-libs' 'gstreamer0.10-base' 'gperf' 
'gobject-introspection' 'python2' 'mesa' 'ruby' 'gtk-doc')
+makedepends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gstreamer0.10-base' 'gperf' 'gobject-introspection' 'python2' 'mesa' 
'ruby' 'gtk-doc')
 options=('!libtool' '!emptydirs')
 source=(http://webkitgtk.org/releases/webkitgtk-$pkgver.tar.xz)
 sha256sums=('19234f8e4edfaefe91ed06471a2aa8c71d26dd55d33787eede1dcfc9a3a96d9c')
 
 build() {
   cd $srcdir/webkitgtk-$pkgver
-  mkdir build-gtk2 build-gtk3
+  mkdir build-gtk2
 
   cd build-gtk2
   PYTHON=/usr/bin/python2 ../configure --prefix=/usr \
@@ -26,29 +25,9 @@
 --with-gtk=2.0 \
 --disable-webkit2
   make all stamp-po
-  
-  cd ../build-gtk3
-  PYTHON=/usr/bin/python2 ../configure --prefix=/usr \
---enable-introspection \
---disable-silent-rules \
---libexecdir=/usr/lib/webkitgtk3 \
---with-gstreamer=1.0
-  make all stamp-po
 }
 
-package_webkitgtk3() {
-  pkgdesc=GTK+ Web content engine library for GTK+ 3.0
-  depends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gtk3' 'gst-plugins-base-libs')
-  conflicts=('libwebkit3')
-  provides=(libwebkit3=${pkgver})
-  replaces=('libwebkit3')
-  
-  cd $srcdir/webkitgtk-$pkgver/build-gtk3
-  make -j1 DESTDIR=$pkgdir install
-  install -Dm644 ../Source/WebKit/LICENSE 
$pkgdir/usr/share/licenses/${pkgname}/LICENSE
-}
-
-package_webkitgtk2() {
+package() {
   pkgdesc=GTK+ Web content engine library for GTK+ 2.0
   depends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gstreamer0.10-base')
   conflicts=('libwebkit')



[arch-commits] Commit in webkitgtk2 (5 files)

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 11:55:42
  Author: jgc
Revision: 180639

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

Added:
  webkitgtk2/repos/
  webkitgtk2/repos/gnome-unstable-i686/
  webkitgtk2/repos/gnome-unstable-i686/PKGBUILD
(from rev 180638, webkitgtk2/trunk/PKGBUILD)
  webkitgtk2/repos/gnome-unstable-x86_64/
  webkitgtk2/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180638, webkitgtk2/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   40 +++
 gnome-unstable-x86_64/PKGBUILD |   40 +++
 2 files changed, 80 insertions(+)

Copied: webkitgtk2/repos/gnome-unstable-i686/PKGBUILD (from rev 180638, 
webkitgtk2/trunk/PKGBUILD)
===
--- repos/gnome-unstable-i686/PKGBUILD  (rev 0)
+++ repos/gnome-unstable-i686/PKGBUILD  2013-03-25 10:55:42 UTC (rev 180639)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=webkitgtk2
+pkgver=1.10.2
+pkgrel=4
+arch=('i686' 'x86_64')
+url=http://webkitgtk.org/;
+license=('custom')
+makedepends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gstreamer0.10-base' 'gperf' 'gobject-introspection' 'python2' 'mesa' 
'ruby' 'gtk-doc')
+options=('!libtool' '!emptydirs')
+source=(http://webkitgtk.org/releases/webkitgtk-$pkgver.tar.xz)
+sha256sums=('19234f8e4edfaefe91ed06471a2aa8c71d26dd55d33787eede1dcfc9a3a96d9c')
+
+build() {
+  cd $srcdir/webkitgtk-$pkgver
+  mkdir build-gtk2
+
+  cd build-gtk2
+  PYTHON=/usr/bin/python2 ../configure --prefix=/usr \
+--enable-introspection \
+--disable-silent-rules \
+--libexecdir=/usr/lib/webkitgtk2 \
+--with-gstreamer=0.10 \
+--with-gtk=2.0 \
+--disable-webkit2
+  make all stamp-po
+}
+
+package() {
+  pkgdesc=GTK+ Web content engine library for GTK+ 2.0
+  depends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gstreamer0.10-base')
+  conflicts=('libwebkit')
+  provides=(libwebkit=${pkgver})
+  replaces=('libwebkit')
+  
+  cd $srcdir/webkitgtk-$pkgver/build-gtk2
+  make -j1 DESTDIR=$pkgdir install
+  install -Dm644 ../Source/WebKit/LICENSE 
$pkgdir/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: webkitgtk2/repos/gnome-unstable-x86_64/PKGBUILD (from rev 180638, 
webkitgtk2/trunk/PKGBUILD)
===
--- repos/gnome-unstable-x86_64/PKGBUILD(rev 0)
+++ repos/gnome-unstable-x86_64/PKGBUILD2013-03-25 10:55:42 UTC (rev 
180639)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgname=webkitgtk2
+pkgver=1.10.2
+pkgrel=4
+arch=('i686' 'x86_64')
+url=http://webkitgtk.org/;
+license=('custom')
+makedepends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gstreamer0.10-base' 'gperf' 'gobject-introspection' 'python2' 'mesa' 
'ruby' 'gtk-doc')
+options=('!libtool' '!emptydirs')
+source=(http://webkitgtk.org/releases/webkitgtk-$pkgver.tar.xz)
+sha256sums=('19234f8e4edfaefe91ed06471a2aa8c71d26dd55d33787eede1dcfc9a3a96d9c')
+
+build() {
+  cd $srcdir/webkitgtk-$pkgver
+  mkdir build-gtk2
+
+  cd build-gtk2
+  PYTHON=/usr/bin/python2 ../configure --prefix=/usr \
+--enable-introspection \
+--disable-silent-rules \
+--libexecdir=/usr/lib/webkitgtk2 \
+--with-gstreamer=0.10 \
+--with-gtk=2.0 \
+--disable-webkit2
+  make all stamp-po
+}
+
+package() {
+  pkgdesc=GTK+ Web content engine library for GTK+ 2.0
+  depends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gstreamer0.10-base')
+  conflicts=('libwebkit')
+  provides=(libwebkit=${pkgver})
+  replaces=('libwebkit')
+  
+  cd $srcdir/webkitgtk-$pkgver/build-gtk2
+  make -j1 DESTDIR=$pkgdir install
+  install -Dm644 ../Source/WebKit/LICENSE 
$pkgdir/usr/share/licenses/${pkgname}/LICENSE
+}



[arch-commits] Commit in (6 files)

2013-03-25 Thread Alexander Rødseth
Date: Monday, March 25, 2013 @ 12:09:36
  Author: arodseth
Revision: 86959

JAR decompiler. 154 votes in AUR.

Added:
  jad/
  jad/repos/
  jad/repos/community-i686/
  jad/repos/community-x86_64/
  jad/trunk/
  jad/trunk/PKGBUILD

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

Added: jad/trunk/PKGBUILD
===
--- jad/trunk/PKGBUILD  (rev 0)
+++ jad/trunk/PKGBUILD  2013-03-25 11:09:36 UTC (rev 86959)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: astaroth astaro...@web.de
+
+pkgname=jad
+pkgver=1.5.8e
+pkgrel=4
+pkgdesc='Java decompiler'
+license=('custom')
+arch=('x86_64' 'i686')
+url='http://www.varaneckas.com/jad'
+source=(http://www.varaneckas.com/$pkgname/${pkgname}${pkgver//./}.linux.static.zip;
+'jad.html::http://www.varaneckas.com/jad')
+sha256sums=('2878e19fc1fdd725b516f538a57b02aaec1b2d1e4b106d550230381ffa9c0c81'
+'4acee94ff29fe01ea2a9c4c0b47f22fb5a93fc667ee2dd8b6740f7f36bcbcdf2')
+
+build() {
+  cd $srcdir
+
+  grep 'code' jad.html -A18 | sed 's:code::' | sed 's:/code::'  LICENSE
+}
+
+package() {
+  cd $srcdir
+
+  install -Dm755 $srcdir/$pkgname $pkgdir/usr/bin/$pkgname
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/LICENSE
+  install -Dm644 Readme.txt $pkgdir/usr/share/doc/$pkgname/README
+}
+
+# vim:set ts=2 sw=2 et:


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


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

2013-03-25 Thread Alexander Rødseth
Date: Monday, March 25, 2013 @ 12:11:46
  Author: arodseth
Revision: 86960

upgpkg: jad 1.5.8e-4

Modified:
  jad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 11:09:36 UTC (rev 86959)
+++ PKGBUILD2013-03-25 11:11:46 UTC (rev 86960)
@@ -24,7 +24,7 @@
   cd $srcdir
 
   install -Dm755 $srcdir/$pkgname $pkgdir/usr/bin/$pkgname
-  install -Dm644 LICENSE $pkgdir/usr/share/licenses/LICENSE
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
   install -Dm644 Readme.txt $pkgdir/usr/share/doc/$pkgname/README
 }
 



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

2013-03-25 Thread Alexander Rødseth
Date: Monday, March 25, 2013 @ 12:13:01
  Author: arodseth
Revision: 86961

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

Added:
  jad/repos/community-i686/PKGBUILD
(from rev 86960, jad/trunk/PKGBUILD)
  jad/repos/community-x86_64/PKGBUILD
(from rev 86960, jad/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   31 +++
 community-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: jad/repos/community-i686/PKGBUILD (from rev 86960, jad/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-25 11:13:01 UTC (rev 86961)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: astaroth astaro...@web.de
+
+pkgname=jad
+pkgver=1.5.8e
+pkgrel=4
+pkgdesc='Java decompiler'
+license=('custom')
+arch=('x86_64' 'i686')
+url='http://www.varaneckas.com/jad'
+source=(http://www.varaneckas.com/$pkgname/${pkgname}${pkgver//./}.linux.static.zip;
+'jad.html::http://www.varaneckas.com/jad')
+sha256sums=('2878e19fc1fdd725b516f538a57b02aaec1b2d1e4b106d550230381ffa9c0c81'
+'4acee94ff29fe01ea2a9c4c0b47f22fb5a93fc667ee2dd8b6740f7f36bcbcdf2')
+
+build() {
+  cd $srcdir
+
+  grep 'code' jad.html -A18 | sed 's:code::' | sed 's:/code::'  LICENSE
+}
+
+package() {
+  cd $srcdir
+
+  install -Dm755 $srcdir/$pkgname $pkgdir/usr/bin/$pkgname
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 Readme.txt $pkgdir/usr/share/doc/$pkgname/README
+}
+
+# vim:set ts=2 sw=2 et:

Copied: jad/repos/community-x86_64/PKGBUILD (from rev 86960, jad/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-03-25 11:13:01 UTC (rev 86961)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: astaroth astaro...@web.de
+
+pkgname=jad
+pkgver=1.5.8e
+pkgrel=4
+pkgdesc='Java decompiler'
+license=('custom')
+arch=('x86_64' 'i686')
+url='http://www.varaneckas.com/jad'
+source=(http://www.varaneckas.com/$pkgname/${pkgname}${pkgver//./}.linux.static.zip;
+'jad.html::http://www.varaneckas.com/jad')
+sha256sums=('2878e19fc1fdd725b516f538a57b02aaec1b2d1e4b106d550230381ffa9c0c81'
+'4acee94ff29fe01ea2a9c4c0b47f22fb5a93fc667ee2dd8b6740f7f36bcbcdf2')
+
+build() {
+  cd $srcdir
+
+  grep 'code' jad.html -A18 | sed 's:code::' | sed 's:/code::'  LICENSE
+}
+
+package() {
+  cd $srcdir
+
+  install -Dm755 $srcdir/$pkgname $pkgdir/usr/bin/$pkgname
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 Readme.txt $pkgdir/usr/share/doc/$pkgname/README
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in (7 files)

2013-03-25 Thread Alexander Rødseth
Date: Monday, March 25, 2013 @ 12:18:52
  Author: arodseth
Revision: 86962

Open .jar files directly in vim and see the decompiled version

Added:
  vim-jad/
  vim-jad/repos/
  vim-jad/repos/community-any/
  vim-jad/trunk/
  vim-jad/trunk/LICENSE
  vim-jad/trunk/PKGBUILD
  vim-jad/trunk/vim-jad.install

-+
 LICENSE |8 
 PKGBUILD|   27 +++
 vim-jad.install |   16 
 3 files changed, 51 insertions(+)

Added: vim-jad/trunk/LICENSE
===
--- vim-jad/trunk/LICENSE   (rev 0)
+++ vim-jad/trunk/LICENSE   2013-03-25 11:18:52 UTC (rev 86962)
@@ -0,0 +1,8 @@
+Copyright (C) 2002-2007 Yegappan Lakshmanan
+Permission is hereby granted to use and distribute this code,
+with or without modifications, provided that this copyright
+notice is copied with it. Like anything else that's free,
+taglist.vim is provided *as is* and comes with no warranty of any
+kind, either expressed or implied. In no event will the copyright
+holder be liable for any damamges resulting from the use of this
+software.

Added: vim-jad/trunk/PKGBUILD
===
--- vim-jad/trunk/PKGBUILD  (rev 0)
+++ vim-jad/trunk/PKGBUILD  2013-03-25 11:18:52 UTC (rev 86962)
@@ -0,0 +1,27 @@
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Laszlo Papp djszapi @ gmail at com
+# Contributor: Dmitry ixaphire_at-gmail-dot+com 
+
+pkgname=vim-jad
+pkgver=1.3
+pkgrel=3
+pkgdesc='Automatically decompiles java class files and displays java code'
+arch=('x86_64' 'i686')
+url='http://www.vim.org/scripts/script.php?script_id=446'
+license=('custom')
+depends=('vim' 'jad')
+groups=('vim-plugins')
+install=$pkgname.install
+source=($pkgname::http://www.vim.org/scripts/download_script.php?src_id=1329;
+'LICENSE')
+sha256sums=('0b39f72f8f22c0ec63b3378ac54399a4'
+ 'efbd5986e691ce8c876fb86e8f5961ea')
+
+build() {
+  cd $srcdir
+
+  install -Dm755 $srcdir/$pkgname 
$pkgdir/usr/share/vim/vimfiles/plugin/jad.vim
+  install -Dm755 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


Property changes on: vim-jad/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: vim-jad/trunk/vim-jad.install
===
--- vim-jad/trunk/vim-jad.install   (rev 0)
+++ vim-jad/trunk/vim-jad.install   2013-03-25 11:18:52 UTC (rev 86962)
@@ -0,0 +1,16 @@
+post_install() {
+  echo -n 'Updating vim help tags...'
+  /usr/bin/vim --noplugins -u NONE -U NONE \
+--cmd :helptags /usr/share/vim/vimfiles/doc --cmd :q  /dev/null 21
+  echo 'done.'
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-03-25 Thread Alexander Rødseth
Date: Monday, March 25, 2013 @ 12:19:49
  Author: arodseth
Revision: 86963

Is an 'any' package

Modified:
  vim-jad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 11:18:52 UTC (rev 86962)
+++ PKGBUILD2013-03-25 11:19:49 UTC (rev 86963)
@@ -6,7 +6,7 @@
 pkgver=1.3
 pkgrel=3
 pkgdesc='Automatically decompiles java class files and displays java code'
-arch=('x86_64' 'i686')
+arch=('any')
 url='http://www.vim.org/scripts/script.php?script_id=446'
 license=('custom')
 depends=('vim' 'jad')



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

2013-03-25 Thread Stéphane Gaudreault
Date: Monday, March 25, 2013 @ 12:20:51
  Author: stephane
Revision: 180640

upgpkg: boost 1.53.0-1

version bump

Added:
  boost/trunk/boost-1.53.0-python3.patch
(from rev 180637, boost/trunk/boost-1.52.0-python3.patch)
Modified:
  boost/trunk/PKGBUILD
Deleted:
  boost/trunk/boost-1.52.0-python3.patch

+
 PKGBUILD   |   14 +++---
 boost-1.52.0-python3.patch |   96 ---
 boost-1.53.0-python3.patch |   96 +++
 3 files changed, 103 insertions(+), 103 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 10:55:42 UTC (rev 180639)
+++ PKGBUILD2013-03-25 11:20:51 UTC (rev 180640)
@@ -8,28 +8,28 @@
 
 pkgbase=boost
 pkgname=('boost-libs' 'boost')
-pkgver=1.52.0
+pkgver=1.53.0
 _boostver=${pkgver//./_}
-pkgrel=2
+pkgrel=1
 url=http://www.boost.org/;
 arch=('i686' 'x86_64')
 license=('custom')
 makedepends=('icu=51.1' 'python' 'python2' 'bzip2' 'zlib' 'openmpi')
 
source=(http://downloads.sourceforge.net/${pkgbase}/${pkgbase}_${_boostver}.tar.gz
-   boost-1.52.0-python3.patch)
-sha1sums=('1120430030315b0a94b6d63fc04662960db2444c'
+boost-1.53.0-python3.patch)
+sha1sums=('0e4ef26cc7780c6bbc63987ef2f29be920e2395b'
   '34026072a7cb2534164f20e77bb71a5c75093307')
 
 _stagedir=${srcdir}/stagedir
 
 build() {
local JOBS=$(sed -e 's/.*\(-j *[0-9]\+\).*/\1/'  ${MAKEFLAGS})
-
+
cd ${srcdir}/${pkgbase}_${_boostver}
 
# Fix build errors with python 3
sed -i /PYTHON_ROOT/s/print sys.prefix/print(sys.prefix)/g bootstrap.sh
-   patch -Np1 -i ../boost-1.52.0-python3.patch
+   patch -Np1 -i ../boost-1.53.0-python3.patch
 
# Shut up strict aliasing warnings
echo using gcc : : : compileflags-fno-strict-aliasing ;  
./tools/build/v2/user-config.jam
@@ -53,7 +53,7 @@
${_stagedir}/bin/bjam --toolset=gcc cflags=-std=gnu++11 library_status
popd
cp -a dist/bin/* ${_stagedir}/bin
-   
+
#boostbook is needed by quickbook
install -d -m 755 ${_stagedir}/share/boostbook
cp -a tools/boostbook/{xsl,dtd} ${_stagedir}/share/boostbook/

Deleted: boost-1.52.0-python3.patch
===
--- boost-1.52.0-python3.patch  2013-03-25 10:55:42 UTC (rev 180639)
+++ boost-1.52.0-python3.patch  2013-03-25 11:20:51 UTC (rev 180640)
@@ -1,96 +0,0 @@
-diff -Naur boost_1_53_0.ori/libs/mpi/src/python/datatypes.cpp 
boost_1_53_0/libs/mpi/src/python/datatypes.cpp
 boost_1_53_0.ori/libs/mpi/src/python/datatypes.cpp 2007-11-25 
13:38:02.0 -0500
-+++ boost_1_53_0/libs/mpi/src/python/datatypes.cpp 2013-03-11 
20:59:57.171732691 -0400
-@@ -13,6 +13,10 @@
- #include boost/mpi/python/serialize.hpp
- #include boost/mpi.hpp
- 
-+#if PY_MAJOR_VERSION = 3
-+#define PyInt_Type PyLong_Type
-+#endif
-+
- namespace boost { namespace mpi { namespace python {
- 
- void export_datatypes()
-diff -Naur boost_1_53_0.ori/libs/mpi/src/python/py_environment.cpp 
boost_1_53_0/libs/mpi/src/python/py_environment.cpp
 boost_1_53_0.ori/libs/mpi/src/python/py_environment.cpp2007-11-25 
13:38:02.0 -0500
-+++ boost_1_53_0/libs/mpi/src/python/py_environment.cpp2013-03-11 
21:02:12.961737401 -0400
-@@ -11,6 +11,9 @@
-  *  This file reflects the Boost.MPI environment class into Python
-  *  methods at module level.
-  */
-+
-+#include locale
-+#include string
- #include boost/python.hpp
- #include boost/mpi.hpp
- 
-@@ -50,11 +53,65 @@
- 
-   // If anything changed, convert C-style argc/argv into Python argv
-   if (mpi_argv != my_argv)
-+  {
-+#if PY_MAJOR_VERSION = 3
-+// Code stolen from py3k/Modules/python.c.
-+
-+wchar_t **argv_copy = (wchar_t **)PyMem_Malloc(sizeof(wchar_t*)*mpi_argc);
-+/* We need a second copies, as Python might modify the first one. */
-+wchar_t **argv_copy2 = (wchar_t 
**)PyMem_Malloc(sizeof(wchar_t*)*mpi_argc);
-+
-+if (!argv_copy || !argv_copy2) {
-+  fprintf(stderr, out of memory\n);
-+  return false;
-+}
-+
-+std::locale mylocale;
-+mbstate_t mystate;
-+
-+const std::codecvtchar, wchar_t, mbstate_t myfacet =
-+  std::use_facetstd::codecvtchar, wchar_t, mbstate_t (mylocale);
-+
-+for (int i = 0; i  mpi_argc; i++) 
-+{
-+  size_t length = strlen(mpi_argv[i]);
-+
-+  wchar_t *dest = (wchar_t *) PyMem_Malloc(sizeof(wchar_t) * (length + 
1));
-+
-+  const char *from_next;
-+  wchar_t *to_next;
-+
-+  std::codecvtwchar_t,char,mbstate_t::result myresult = 
-+myfacet.out(mystate,
-+mpi_argv[i], mpi_argv[i] + length + 1, from_next,
-+dest, dest+length+1, to_next);
-+
-+  if (myresult != std::codecvtwchar_t,char,mbstate_t::ok )
-+  {
-+fprintf(stderr, failure translating argv\n);
-+return 1;
-+  }
-+
-+  argv_copy2[i] = argv_copy[i] = dest;
-+  if (!argv_copy[i])
-+  

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

2013-03-25 Thread Stéphane Gaudreault
Date: Monday, March 25, 2013 @ 12:21:24
  Author: stephane
Revision: 180641

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

Added:
  boost/repos/staging-i686/
  boost/repos/staging-i686/PKGBUILD
(from rev 180640, boost/trunk/PKGBUILD)
  boost/repos/staging-i686/boost-1.53.0-python3.patch
(from rev 180640, boost/trunk/boost-1.53.0-python3.patch)
  boost/repos/staging-x86_64/
  boost/repos/staging-x86_64/PKGBUILD
(from rev 180640, boost/trunk/PKGBUILD)
  boost/repos/staging-x86_64/boost-1.53.0-python3.patch
(from rev 180640, boost/trunk/boost-1.53.0-python3.patch)

---+
 staging-i686/PKGBUILD |  106 
 staging-i686/boost-1.53.0-python3.patch   |   96 +
 staging-x86_64/PKGBUILD   |  106 
 staging-x86_64/boost-1.53.0-python3.patch |   96 +
 4 files changed, 404 insertions(+)

Copied: boost/repos/staging-i686/PKGBUILD (from rev 180640, 
boost/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-03-25 11:21:24 UTC (rev 180641)
@@ -0,0 +1,106 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Maintainer: Ionut Biru ib...@archlinux.org
+# Contributor: kevin ke...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Kritoke krit...@gamebox.net
+# Contributor: Luca Roccia little_r...@users.sourceforge.net
+
+pkgbase=boost
+pkgname=('boost-libs' 'boost')
+pkgver=1.53.0
+_boostver=${pkgver//./_}
+pkgrel=1
+url=http://www.boost.org/;
+arch=('i686' 'x86_64')
+license=('custom')
+makedepends=('icu=51.1' 'python' 'python2' 'bzip2' 'zlib' 'openmpi')
+source=(http://downloads.sourceforge.net/${pkgbase}/${pkgbase}_${_boostver}.tar.gz
+boost-1.53.0-python3.patch)
+sha1sums=('0e4ef26cc7780c6bbc63987ef2f29be920e2395b'
+  '34026072a7cb2534164f20e77bb71a5c75093307')
+
+_stagedir=${srcdir}/stagedir
+
+build() {
+   local JOBS=$(sed -e 's/.*\(-j *[0-9]\+\).*/\1/'  ${MAKEFLAGS})
+
+   cd ${srcdir}/${pkgbase}_${_boostver}
+
+   # Fix build errors with python 3
+   sed -i /PYTHON_ROOT/s/print sys.prefix/print(sys.prefix)/g bootstrap.sh
+   patch -Np1 -i ../boost-1.53.0-python3.patch
+
+   # Shut up strict aliasing warnings
+   echo using gcc : : : compileflags-fno-strict-aliasing ;  
./tools/build/v2/user-config.jam
+   # Add an extra python version. This does not replace anything and python 
2.x need to be the default.
+   echo using python : 3.3 : /usr/bin/python3 : /usr/include/python3.3m : 
/usr/lib ;  ./tools/build/v2/user-config.jam
+   # Support for OpenMPI
+   echo using mpi ;  ./tools/build/v2/user-config.jam
+
+   ./bootstrap.sh --with-toolset=gcc --with-icu --with-python=/usr/bin/python2
+
+   _bindir=bin.linuxx86
+   [ ${CARCH} = x86_64 ]  _bindir=bin.linuxx86_64
+
+   install -d -m 755 ${_stagedir}/bin
+   install 
${srcdir}/${pkgbase}_${_boostver}/tools/build/v2/engine/${_bindir}/bjam 
${_stagedir}/bin/bjam
+
+   pushd tools
+   for _tool in bcp inspect quickbook compiler_status process_jam_log wave; do
+  ${_stagedir}/bin/bjam --toolset=gcc $_tool
+   done
+   ${_stagedir}/bin/bjam --toolset=gcc cflags=-std=gnu++11 library_status
+   popd
+   cp -a dist/bin/* ${_stagedir}/bin
+
+   #boostbook is needed by quickbook
+   install -d -m 755 ${_stagedir}/share/boostbook
+   cp -a tools/boostbook/{xsl,dtd} ${_stagedir}/share/boostbook/
+
+   # default minimal install: release link=shared,static
+   # runtime-link=shared threading=single,multi
+   # --layout=tagged will add the -mt suffix for multithreaded libraries
+   # and installs includes in /usr/include/boost.
+   # --layout=system no longer adds the -mt suffix for multi-threaded libs.
+   # install to ${_stagedir} in preparation for split packaging
+   ${_stagedir}/bin/bjam \
+  release \
+  debug-symbols=off \
+  threading=multi \
+  runtime-link=shared \
+  link=shared \
+  toolset=gcc \
+  --layout=system \
+  --prefix=${_stagedir} \
+  ${JOBS} \
+  install
+
+   find ${_stagedir} -name \*.a -exec rm -f {} \;
+}
+
+package_boost() {
+   pkgdesc=Free peer-reviewed portable C++ source libraries - Development
+   depends=(boost-libs=${pkgver})
+   optdepends=('python: for python bindings'
+   'python2: for python2 bindings'
+   'boost-build: to use boost jam for building your project.')
+
+   install -d -m 755 ${pkgdir}/usr
+   cp -a ${_stagedir}/{bin,include,share} ${pkgdir}/usr
+
+   install -D -m 644 ${srcdir}/${pkgbase}_${_boostver}/LICENSE_1_0.txt \
+  ${pkgdir}/usr/share/licenses/boost/LICENSE_1_0.txt
+}
+
+package_boost-libs() {
+   pkgdesc=Free peer-reviewed portable C++ source libraries - Runtime
+   depends=('bzip2' 'zlib' 'icu')
+   optdepends=('openmpi: for mpi support')
+
+   

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

2013-03-25 Thread Alexander Rødseth
Date: Monday, March 25, 2013 @ 12:53:05
  Author: arodseth
Revision: 86964

upgpkg: vim-jad 1.3-3

Modified:
  vim-jad/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 11:19:49 UTC (rev 86963)
+++ PKGBUILD2013-03-25 11:53:05 UTC (rev 86964)
@@ -14,14 +14,14 @@
 install=$pkgname.install
 source=($pkgname::http://www.vim.org/scripts/download_script.php?src_id=1329;
 'LICENSE')
-sha256sums=('0b39f72f8f22c0ec63b3378ac54399a4'
- 'efbd5986e691ce8c876fb86e8f5961ea')
+sha256sums=('26a11cb99945c44e817ac39243246be906f160fdfc850a33511005079b48c7ad'
+'4689a6d3ed3bca186ab8fea8360f32fdbb84f84c82fb21698390202efa7b7d19')
 
 build() {
   cd $srcdir
 
-  install -Dm755 $srcdir/$pkgname 
$pkgdir/usr/share/vim/vimfiles/plugin/jad.vim
-  install -Dm755 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+  install -Dm644 $srcdir/$pkgname 
$pkgdir/usr/share/vim/vimfiles/plugin/jad.vim
+  install -Dm644 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
 }
 
 # vim:set ts=2 sw=2 et:



[arch-commits] Commit in vim-jad/repos/community-any (3 files)

2013-03-25 Thread Alexander Rødseth
Date: Monday, March 25, 2013 @ 12:53:13
  Author: arodseth
Revision: 86965

archrelease: copy trunk to community-any

Added:
  vim-jad/repos/community-any/LICENSE
(from rev 86964, vim-jad/trunk/LICENSE)
  vim-jad/repos/community-any/PKGBUILD
(from rev 86964, vim-jad/trunk/PKGBUILD)
  vim-jad/repos/community-any/vim-jad.install
(from rev 86964, vim-jad/trunk/vim-jad.install)

-+
 LICENSE |8 
 PKGBUILD|   27 +++
 vim-jad.install |   16 
 3 files changed, 51 insertions(+)

Copied: vim-jad/repos/community-any/LICENSE (from rev 86964, 
vim-jad/trunk/LICENSE)
===
--- LICENSE (rev 0)
+++ LICENSE 2013-03-25 11:53:13 UTC (rev 86965)
@@ -0,0 +1,8 @@
+Copyright (C) 2002-2007 Yegappan Lakshmanan
+Permission is hereby granted to use and distribute this code,
+with or without modifications, provided that this copyright
+notice is copied with it. Like anything else that's free,
+taglist.vim is provided *as is* and comes with no warranty of any
+kind, either expressed or implied. In no event will the copyright
+holder be liable for any damamges resulting from the use of this
+software.

Copied: vim-jad/repos/community-any/PKGBUILD (from rev 86964, 
vim-jad/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-25 11:53:13 UTC (rev 86965)
@@ -0,0 +1,27 @@
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Laszlo Papp djszapi @ gmail at com
+# Contributor: Dmitry ixaphire_at-gmail-dot+com 
+
+pkgname=vim-jad
+pkgver=1.3
+pkgrel=3
+pkgdesc='Automatically decompiles java class files and displays java code'
+arch=('any')
+url='http://www.vim.org/scripts/script.php?script_id=446'
+license=('custom')
+depends=('vim' 'jad')
+groups=('vim-plugins')
+install=$pkgname.install
+source=($pkgname::http://www.vim.org/scripts/download_script.php?src_id=1329;
+'LICENSE')
+sha256sums=('26a11cb99945c44e817ac39243246be906f160fdfc850a33511005079b48c7ad'
+'4689a6d3ed3bca186ab8fea8360f32fdbb84f84c82fb21698390202efa7b7d19')
+
+build() {
+  cd $srcdir
+
+  install -Dm644 $srcdir/$pkgname 
$pkgdir/usr/share/vim/vimfiles/plugin/jad.vim
+  install -Dm644 $srcdir/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:

Copied: vim-jad/repos/community-any/vim-jad.install (from rev 86964, 
vim-jad/trunk/vim-jad.install)
===
--- vim-jad.install (rev 0)
+++ vim-jad.install 2013-03-25 11:53:13 UTC (rev 86965)
@@ -0,0 +1,16 @@
+post_install() {
+  echo -n 'Updating vim help tags...'
+  /usr/bin/vim --noplugins -u NONE -U NONE \
+--cmd :helptags /usr/share/vim/vimfiles/doc --cmd :q  /dev/null 21
+  echo 'done.'
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 13:09:58
  Author: jgc
Revision: 180642

upgpkg: gcr 3.8.0-1

Modified:
  gcr/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 11:21:24 UTC (rev 180641)
+++ PKGBUILD2013-03-25 12:09:58 UTC (rev 180642)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=gcr
-pkgver=3.7.92
+pkgver=3.8.0
 pkgrel=1
 pkgdesc=A library for bits of crypto UI and parsing
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 install=gcr.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz
 10-gcr.conf)
-sha256sums=('53be22a4708c7db5c7b86edf451e499d854d04ab3adde6c7ec7fa32a1d5577fb'
+sha256sums=('3d9ff72a7d5f0c26e42f7f4195fa6f82d384e255a07cfcf00f898b18334b8650'
 '5f2eda7175ae9f23ee0e09d2beceb24fd2f6daafd7bddfcc1c1f5a3734eb60fc')
 
 build() {



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 13:10:13
  Author: jgc
Revision: 180643

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

Added:
  gcr/repos/gnome-unstable-i686/10-gcr.conf
(from rev 180642, gcr/trunk/10-gcr.conf)
  gcr/repos/gnome-unstable-i686/PKGBUILD
(from rev 180642, gcr/trunk/PKGBUILD)
  gcr/repos/gnome-unstable-i686/gcr.install
(from rev 180642, gcr/trunk/gcr.install)
  gcr/repos/gnome-unstable-x86_64/10-gcr.conf
(from rev 180642, gcr/trunk/10-gcr.conf)
  gcr/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180642, gcr/trunk/PKGBUILD)
  gcr/repos/gnome-unstable-x86_64/gcr.install
(from rev 180642, gcr/trunk/gcr.install)
Deleted:
  gcr/repos/gnome-unstable-i686/10-gcr.conf
  gcr/repos/gnome-unstable-i686/PKGBUILD
  gcr/repos/gnome-unstable-i686/gcr.install
  gcr/repos/gnome-unstable-x86_64/10-gcr.conf
  gcr/repos/gnome-unstable-x86_64/PKGBUILD
  gcr/repos/gnome-unstable-x86_64/gcr.install

---+
 /10-gcr.conf  |6 ++
 /PKGBUILD |   80 
 /gcr.install  |   28 
 gnome-unstable-i686/10-gcr.conf   |3 -
 gnome-unstable-i686/PKGBUILD  |   40 --
 gnome-unstable-i686/gcr.install   |   14 --
 gnome-unstable-x86_64/10-gcr.conf |3 -
 gnome-unstable-x86_64/PKGBUILD|   40 --
 gnome-unstable-x86_64/gcr.install |   14 --
 9 files changed, 114 insertions(+), 114 deletions(-)

Deleted: gnome-unstable-i686/10-gcr.conf
===
--- gnome-unstable-i686/10-gcr.conf 2013-03-25 12:09:58 UTC (rev 180642)
+++ gnome-unstable-i686/10-gcr.conf 2013-03-25 12:10:13 UTC (rev 180643)
@@ -1,3 +0,0 @@
-@users - memlock 1024
-
-# vim:set ft=limits:

Copied: gcr/repos/gnome-unstable-i686/10-gcr.conf (from rev 180642, 
gcr/trunk/10-gcr.conf)
===
--- gnome-unstable-i686/10-gcr.conf (rev 0)
+++ gnome-unstable-i686/10-gcr.conf 2013-03-25 12:10:13 UTC (rev 180643)
@@ -0,0 +1,3 @@
+@users - memlock 1024
+
+# vim:set ft=limits:

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-03-25 12:09:58 UTC (rev 180642)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 12:10:13 UTC (rev 180643)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=gcr
-pkgver=3.7.92
-pkgrel=1
-pkgdesc=A library for bits of crypto UI and parsing
-arch=(i686 x86_64)
-url=http://www.gnome.org;
-license=('GPL2')
-depends=('dconf' 'desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libgcrypt')
-makedepends=('intltool' 'gobject-introspection' 'python')
-options=(!libtool)
-install=gcr.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz
-10-gcr.conf)
-sha256sums=('53be22a4708c7db5c7b86edf451e499d854d04ab3adde6c7ec7fa32a1d5577fb'
-'5f2eda7175ae9f23ee0e09d2beceb24fd2f6daafd7bddfcc1c1f5a3734eb60fc')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---libexec=/usr/lib/gcr \
---disable-static \
---disable-update-mime \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  # gcr wants to lock some memory to prevent swapping out private keys
-  # https://bugs.archlinux.org/task/32616
-  # https://bugzilla.gnome.org/show_bug.cgi?id=688161
-  install -Dm644 ../10-gcr.conf $pkgdir/etc/security/limits.d/10-gcr.conf
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gcr/repos/gnome-unstable-i686/PKGBUILD (from rev 180642, 
gcr/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 12:10:13 UTC (rev 180643)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=gcr
+pkgver=3.8.0
+pkgrel=1
+pkgdesc=A library for bits of crypto UI and parsing
+arch=(i686 x86_64)
+url=http://www.gnome.org;
+license=('GPL2')
+depends=('dconf' 'desktop-file-utils' 'gtk3' 'hicolor-icon-theme' 'libgcrypt')
+makedepends=('intltool' 'gobject-introspection' 'python')
+options=(!libtool)
+install=gcr.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz
+10-gcr.conf)
+sha256sums=('3d9ff72a7d5f0c26e42f7f4195fa6f82d384e255a07cfcf00f898b18334b8650'
+'5f2eda7175ae9f23ee0e09d2beceb24fd2f6daafd7bddfcc1c1f5a3734eb60fc')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr \
+--libexec=/usr/lib/gcr \
+--disable-static \
+--disable-update-mime \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # gcr wants to lock some memory 

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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 13:12:49
  Author: jgc
Revision: 180644

upgpkg: libgnome-keyring 3.8.0-1

Modified:
  libgnome-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 12:10:13 UTC (rev 180643)
+++ PKGBUILD2013-03-25 12:12:49 UTC (rev 180644)
@@ -2,8 +2,8 @@
 #Maintainer: Jan De Groot j...@archlinux.org
 
 pkgname=libgnome-keyring
-pkgver=3.6.0
-pkgrel=2
+pkgver=3.8.0
+pkgrel=1
 pkgdesc=GNOME keyring client library
 arch=(i686 x86_64)
 license=('GPL' 'LGPL')
@@ -13,7 +13,7 @@
 options=('!libtool' '!emptydirs')
 url=http://www.gnome.org;
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('6dca37fb7b37f800f498031ffe303a567410bec09a9bdd877a18865dafcc9830')
+sha256sums=('a8646f2bc62ef903be422946a6356b0718f7a4cbb29b5bdd35a84136f6b82f76')
 
 build() {
   cd $pkgname-$pkgver



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 13:12:56
  Author: jgc
Revision: 180645

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

Added:
  libgnome-keyring/repos/gnome-unstable-i686/
  libgnome-keyring/repos/gnome-unstable-i686/PKGBUILD
(from rev 180644, libgnome-keyring/trunk/PKGBUILD)
  libgnome-keyring/repos/gnome-unstable-x86_64/
  libgnome-keyring/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180644, libgnome-keyring/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   29 +
 gnome-unstable-x86_64/PKGBUILD |   29 +
 2 files changed, 58 insertions(+)

Copied: libgnome-keyring/repos/gnome-unstable-i686/PKGBUILD (from rev 180644, 
libgnome-keyring/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 12:12:56 UTC (rev 180645)
@@ -0,0 +1,29 @@
+#$Id$
+#Maintainer: Jan De Groot j...@archlinux.org
+
+pkgname=libgnome-keyring
+pkgver=3.8.0
+pkgrel=1
+pkgdesc=GNOME keyring client library
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+depends=('dbus-core' 'glib2' 'libgcrypt')
+makedepends=('intltool' 'gobject-introspection')
+optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
+options=('!libtool' '!emptydirs')
+url=http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a8646f2bc62ef903be422946a6356b0718f7a4cbb29b5bdd35a84136f6b82f76')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-keyring
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: libgnome-keyring/repos/gnome-unstable-x86_64/PKGBUILD (from rev 180644, 
libgnome-keyring/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 12:12:56 UTC (rev 180645)
@@ -0,0 +1,29 @@
+#$Id$
+#Maintainer: Jan De Groot j...@archlinux.org
+
+pkgname=libgnome-keyring
+pkgver=3.8.0
+pkgrel=1
+pkgdesc=GNOME keyring client library
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+depends=('dbus-core' 'glib2' 'libgcrypt')
+makedepends=('intltool' 'gobject-introspection')
+optdepends=('gnome-keyring: key storage service (or use any other service 
implementing org.freedesktop.secrets)')
+options=('!libtool' '!emptydirs')
+url=http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('a8646f2bc62ef903be422946a6356b0718f7a4cbb29b5bdd35a84136f6b82f76')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-keyring
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 13:16:06
  Author: jgc
Revision: 180646

upgpkg: gnome-keyring 3.8.0-1

Modified:
  gnome-keyring/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 12:12:56 UTC (rev 180645)
+++ PKGBUILD2013-03-25 12:16:06 UTC (rev 180646)
@@ -2,7 +2,7 @@
 # Maintainer: Jan De Groot j...@archlinux.org
 
 pkgname=gnome-keyring
-pkgver=3.7.92
+pkgver=3.8.0
 pkgrel=1
 pkgdesc=GNOME Password Management daemon
 arch=(i686 x86_64)
@@ -14,7 +14,7 @@
 url=http://www.gnome.org;
 install=gnome-keyring.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ced7555f7f8330a3723ca2eb07f5bdee23c9cf6e4b1b25d139e7658c34921df')
+sha256sums=('5ef9f4b7ff983a4fbc3d049aafee0fd3ecaf4d5cc7573517ac17c1b1a56bca6c')
 
 build() {
   cd $pkgname-$pkgver



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 13:16:13
  Author: jgc
Revision: 180647

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

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

-+
 /PKGBUILD   |   64 ++
 /gnome-keyring.install  |   24 +
 gnome-unstable-i686/PKGBUILD|   32 -
 gnome-unstable-i686/gnome-keyring.install   |   12 
 gnome-unstable-x86_64/PKGBUILD  |   32 -
 gnome-unstable-x86_64/gnome-keyring.install |   12 
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-03-25 12:16:06 UTC (rev 180646)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 12:16:13 UTC (rev 180647)
@@ -1,32 +0,0 @@
-#$Id$
-# Maintainer: Jan De Groot j...@archlinux.org
-
-pkgname=gnome-keyring
-pkgver=3.7.92
-pkgrel=1
-pkgdesc=GNOME Password Management daemon
-arch=(i686 x86_64)
-license=('GPL' 'LGPL')
-depends=('gtk3' 'gcr' 'libcap-ng')
-makedepends=('intltool')
-groups=('gnome')
-options=('!libtool' '!emptydirs')
-url=http://www.gnome.org;
-install=gnome-keyring.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5ced7555f7f8330a3723ca2eb07f5bdee23c9cf6e4b1b25d139e7658c34921df')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --libexecdir=/usr/lib/gnome-keyring \
-  --with-pam-dir=/usr/lib/security --with-root-certs=/etc/ssl/certs \
-  --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gnome-keyring/repos/gnome-unstable-i686/PKGBUILD (from rev 180646, 
gnome-keyring/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 12:16:13 UTC (rev 180647)
@@ -0,0 +1,32 @@
+#$Id$
+# Maintainer: Jan De Groot j...@archlinux.org
+
+pkgname=gnome-keyring
+pkgver=3.8.0
+pkgrel=1
+pkgdesc=GNOME Password Management daemon
+arch=(i686 x86_64)
+license=('GPL' 'LGPL')
+depends=('gtk3' 'gcr' 'libcap-ng')
+makedepends=('intltool')
+groups=('gnome')
+options=('!libtool' '!emptydirs')
+url=http://www.gnome.org;
+install=gnome-keyring.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5ef9f4b7ff983a4fbc3d049aafee0fd3ecaf4d5cc7573517ac17c1b1a56bca6c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gnome-keyring \
+  --with-pam-dir=/usr/lib/security --with-root-certs=/etc/ssl/certs \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: gnome-unstable-i686/gnome-keyring.install
===
--- gnome-unstable-i686/gnome-keyring.install   2013-03-25 12:16:06 UTC (rev 
180646)
+++ gnome-unstable-i686/gnome-keyring.install   2013-03-25 12:16:13 UTC (rev 
180647)
@@ -1,12 +0,0 @@
-post_install() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-setcap cap_ipc_lock=ep /usr/bin/gnome-keyring-daemon
-}
-
-post_upgrade() {
-post_install $1
-}
-
-post_remove() {
-glib-compile-schemas /usr/share/glib-2.0/schemas
-}

Copied: gnome-keyring/repos/gnome-unstable-i686/gnome-keyring.install (from rev 
180646, gnome-keyring/trunk/gnome-keyring.install)
===
--- gnome-unstable-i686/gnome-keyring.install   (rev 0)
+++ gnome-unstable-i686/gnome-keyring.install   2013-03-25 12:16:13 UTC (rev 
180647)
@@ -0,0 +1,12 @@
+post_install() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+setcap cap_ipc_lock=ep /usr/bin/gnome-keyring-daemon
+}
+
+post_upgrade() {
+post_install $1
+}
+
+post_remove() {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}

Deleted: 

[arch-commits] Commit in gsettings-desktop-schemas/trunk (PKGBUILD)

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 13:18:31
  Author: jgc
Revision: 180648

upgpkg: gsettings-desktop-schemas 3.8.0-1

Modified:
  gsettings-desktop-schemas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 12:16:13 UTC (rev 180647)
+++ PKGBUILD2013-03-25 12:18:31 UTC (rev 180648)
@@ -4,7 +4,7 @@
 # Contributor: Adam Hani Schakaki (krzd) k...@krzd.net
 
 pkgname=gsettings-desktop-schemas
-pkgver=3.7.92
+pkgver=3.8.0
 pkgrel=1
 pkgdesc=Shared GSettings schemas for the desktop
 arch=(any)
@@ -14,7 +14,7 @@
 makedepends=(intltool gobject-introspection)
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('49ab5a73b80c4a37c7551e2cb427fdc07700de3b8520316928d032b9f5e6e565')
+sha256sums=('9583384299c3b8cc21f99327a84527d3e7e55a26ada35ea81522dc4c05a5ae0c')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in gsettings-desktop-schemas/repos/gnome-unstable-any (4 files)

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 13:18:35
  Author: jgc
Revision: 180649

archrelease: copy trunk to gnome-unstable-any

Added:
  gsettings-desktop-schemas/repos/gnome-unstable-any/PKGBUILD
(from rev 180648, gsettings-desktop-schemas/trunk/PKGBUILD)
  
gsettings-desktop-schemas/repos/gnome-unstable-any/gsettings-desktop-schemas.install
(from rev 180648, 
gsettings-desktop-schemas/trunk/gsettings-desktop-schemas.install)
Deleted:
  gsettings-desktop-schemas/repos/gnome-unstable-any/PKGBUILD
  
gsettings-desktop-schemas/repos/gnome-unstable-any/gsettings-desktop-schemas.install

---+
 PKGBUILD  |   58 ++--
 gsettings-desktop-schemas.install |   22 ++---
 2 files changed, 40 insertions(+), 40 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-25 12:18:31 UTC (rev 180648)
+++ PKGBUILD2013-03-25 12:18:35 UTC (rev 180649)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
-# Contributor: Adam Hani Schakaki (krzd) k...@krzd.net
-
-pkgname=gsettings-desktop-schemas
-pkgver=3.7.92
-pkgrel=1
-pkgdesc=Shared GSettings schemas for the desktop
-arch=(any)
-url=http://live.gnome.org/;
-license=(GPL)
-depends=(glib2)
-makedepends=(intltool gobject-introspection)
-install=$pkgname.install
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('49ab5a73b80c4a37c7551e2cb427fdc07700de3b8520316928d032b9f5e6e565')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: gsettings-desktop-schemas/repos/gnome-unstable-any/PKGBUILD (from rev 
180648, gsettings-desktop-schemas/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-25 12:18:35 UTC (rev 180649)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer : Ionut Biru ib...@archlinux.org
+# Contributor: Jaroslav Lichtblau dragonl...@aur.archlinux.org
+# Contributor: Adam Hani Schakaki (krzd) k...@krzd.net
+
+pkgname=gsettings-desktop-schemas
+pkgver=3.8.0
+pkgrel=1
+pkgdesc=Shared GSettings schemas for the desktop
+arch=(any)
+url=http://live.gnome.org/;
+license=(GPL)
+depends=(glib2)
+makedepends=(intltool gobject-introspection)
+install=$pkgname.install
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('9583384299c3b8cc21f99327a84527d3e7e55a26ada35ea81522dc4c05a5ae0c')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: gsettings-desktop-schemas.install
===
--- gsettings-desktop-schemas.install   2013-03-25 12:18:31 UTC (rev 180648)
+++ gsettings-desktop-schemas.install   2013-03-25 12:18:35 UTC (rev 180649)
@@ -1,11 +0,0 @@
-post_install() {
-   glib-compile-schemas /usr/share/glib-2.0/schemas
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: 
gsettings-desktop-schemas/repos/gnome-unstable-any/gsettings-desktop-schemas.install
 (from rev 180648, 
gsettings-desktop-schemas/trunk/gsettings-desktop-schemas.install)
===
--- gsettings-desktop-schemas.install   (rev 0)
+++ gsettings-desktop-schemas.install   2013-03-25 12:18:35 UTC (rev 180649)
@@ -0,0 +1,11 @@
+post_install() {
+   glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 13:33:41
  Author: jgc
Revision: 180650

upgpkg: yelp-xsl 3.7.91-1

Modified:
  yelp-xsl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 12:18:35 UTC (rev 180649)
+++ PKGBUILD2013-03-25 12:33:41 UTC (rev 180650)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=yelp-xsl
-pkgver=3.6.0
+pkgver=3.7.91
 pkgrel=1
 pkgdesc=Stylesheets for Yelp
 arch=(any)
@@ -11,7 +11,7 @@
 options=('!emptydirs')
 url=http://www.gnome.org;
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4ed854a423a8bd672f6989dde1faef668c7133a048973677d932743e59449264')
+sha256sums=('c9d785032269560ac878632ef6d2811b9595a5d816ba63ac0ad4f60b14ab9ecb')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in yelp-xsl/repos (2 files)

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 13:33:46
  Author: jgc
Revision: 180651

archrelease: copy trunk to gnome-unstable-any

Added:
  yelp-xsl/repos/gnome-unstable-any/
  yelp-xsl/repos/gnome-unstable-any/PKGBUILD
(from rev 180650, yelp-xsl/trunk/PKGBUILD)

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

Copied: yelp-xsl/repos/gnome-unstable-any/PKGBUILD (from rev 180650, 
yelp-xsl/trunk/PKGBUILD)
===
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2013-03-25 12:33:46 UTC (rev 180651)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=yelp-xsl
+pkgver=3.7.91
+pkgrel=1
+pkgdesc=Stylesheets for Yelp
+arch=(any)
+makedepends=(intltool libxslt libxml2 itstool)
+license=(GPL)
+options=('!emptydirs')
+url=http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('c9d785032269560ac878632ef6d2811b9595a5d816ba63ac0ad4f60b14ab9ecb')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 13:36:31
  Author: jgc
Revision: 180652

upgpkg: yelp-tools 3.6.1-1

Modified:
  yelp-tools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 12:33:46 UTC (rev 180651)
+++ PKGBUILD2013-03-25 12:36:31 UTC (rev 180652)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=yelp-tools
-pkgver=3.6.0
+pkgver=3.6.1
 pkgrel=1
 pkgdesc=Tools for creating Yelp documentation
 arch=('any')
@@ -12,7 +12,7 @@
 options=('!emptydirs' '!libtool')
 url=http://www.gnome.org;
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('e5394b2d1a355c28df356db4b9c1426e633f65b47f5fcf29aa986c2969f30abd')
+sha256sums=('5226e8245bb87f10e485aa65f5bf18d9e4fb5ef82f2e3c3734dd91bdf6f5c19a')
 
 build() {
   cd $pkgname-$pkgver



[arch-commits] Commit in yelp-tools/repos (2 files)

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 13:36:35
  Author: jgc
Revision: 180653

archrelease: copy trunk to gnome-unstable-any

Added:
  yelp-tools/repos/gnome-unstable-any/
  yelp-tools/repos/gnome-unstable-any/PKGBUILD
(from rev 180652, yelp-tools/trunk/PKGBUILD)

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

Copied: yelp-tools/repos/gnome-unstable-any/PKGBUILD (from rev 180652, 
yelp-tools/trunk/PKGBUILD)
===
--- gnome-unstable-any/PKGBUILD (rev 0)
+++ gnome-unstable-any/PKGBUILD 2013-03-25 12:36:35 UTC (rev 180653)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=yelp-tools
+pkgver=3.6.1
+pkgrel=1
+pkgdesc=Tools for creating Yelp documentation
+arch=('any')
+depends=('yelp-xsl' 'libxslt' 'libxml2' 'itstool')
+license=('GPL')
+options=('!emptydirs' '!libtool')
+url=http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('5226e8245bb87f10e485aa65f5bf18d9e4fb5ef82f2e3c3734dd91bdf6f5c19a')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-03-25 Thread Alexander Rødseth
Date: Monday, March 25, 2013 @ 14:19:38
  Author: arodseth
Revision: 86966

Added empty GOPATH directory to make it more google-appengine-go friendly

Modified:
  go/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 11:53:13 UTC (rev 86965)
+++ PKGBUILD2013-03-25 13:19:38 UTC (rev 86966)
@@ -10,7 +10,7 @@
 
 pkgname=go
 pkgver=1.0.3
-pkgrel=6
+pkgrel=7
 epoch=2
 pkgdesc='Google Go compiler and tools'
 arch=('x86_64' 'i686')
@@ -18,8 +18,8 @@
 license=('custom')
 depends=('perl' 'gawk')
 makedepends=('inetutils')
-options=('!strip' '!emptydirs')
-install=go.install
+options=('!strip')
+install=$pkgname.install
 backup=('usr/lib/go/bin')
 source=(http://go.googlecode.com/files/${pkgname}$pkgver.src.tar.gz;
 $pkgname.sh)
@@ -34,6 +34,7 @@
   elif [ $CARCH == 'i686' ]; then
 export GOARCH=386
   else
+# A friendly gesture to Arch Linux ARM
 export GOARCH=arm
   fi
   export GOROOT_FINAL=/usr/lib/go
@@ -59,6 +60,7 @@
   elif [ $CARCH == 'i686' ]; then
 export GOARCH=386
   else
+# A friendly gesture to Arch Linux ARM
 export GOARCH=arm
   fi
 
@@ -90,7 +92,7 @@
 install -Dm644 misc/vim/$f $pkgdir/usr/share/vim/vimfiles/$f
   done
 
-  mkdir -p $pkgdir/{etc/profile.d,usr/{share/go,lib/go,lib/go/src}}
+  mkdir -p $pkgdir/{etc/profile.d,usr/{share/go,lib/go,lib/go/src,lib/go/site}}
 
   cp -r doc misc -t $pkgdir/usr/share/go
   ln -s /usr/share/go/doc $pkgdir/usr/lib/go/doc



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

2013-03-25 Thread Alexander Rødseth
Date: Monday, March 25, 2013 @ 14:19:54
  Author: arodseth
Revision: 86967

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

Added:
  go/repos/community-i686/PKGBUILD
(from rev 86966, go/trunk/PKGBUILD)
  go/repos/community-i686/go.install
(from rev 86966, go/trunk/go.install)
  go/repos/community-i686/go.sh
(from rev 86966, go/trunk/go.sh)
  go/repos/community-x86_64/PKGBUILD
(from rev 86966, go/trunk/PKGBUILD)
  go/repos/community-x86_64/go.install
(from rev 86966, go/trunk/go.install)
  go/repos/community-x86_64/go.sh
(from rev 86966, go/trunk/go.sh)
Deleted:
  go/repos/community-i686/PKGBUILD
  go/repos/community-i686/go.install
  go/repos/community-i686/go.sh
  go/repos/community-x86_64/PKGBUILD
  go/repos/community-x86_64/go.install
  go/repos/community-x86_64/go.sh

-+
 /PKGBUILD   |  284 ++
 /go.install |   26 +++
 /go.sh  |2 
 community-i686/PKGBUILD |  140 
 community-i686/go.install   |   13 -
 community-i686/go.sh|1 
 community-x86_64/PKGBUILD   |  140 
 community-x86_64/go.install |   13 -
 community-x86_64/go.sh  |1 
 9 files changed, 312 insertions(+), 308 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-25 13:19:38 UTC (rev 86966)
+++ community-i686/PKGBUILD 2013-03-25 13:19:54 UTC (rev 86967)
@@ -1,140 +0,0 @@
-# $Id$
-# Maintainer: Vesa Kaihlavirta ve...@iki.fi
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Rémy Oudompheng  r...@archlinux.org
-# Contributor: Andres Perera andres87p gmail
-# Contributor: Matthew Bauer mjbaue...@gmail.com
-# Contributor: Christian Himpel chres...@gmail.com
-# Contributor: Mike Rosset mike.ros...@gmail.com
-# Contributor: Daniel YC Lin dlin...@gmail.com
-
-pkgname=go
-pkgver=1.0.3
-pkgrel=6
-epoch=2
-pkgdesc='Google Go compiler and tools'
-arch=('x86_64' 'i686')
-url='http://golang.org/'
-license=('custom')
-depends=('perl' 'gawk')
-makedepends=('inetutils')
-options=('!strip' '!emptydirs')
-install=go.install
-backup=('usr/lib/go/bin')
-source=(http://go.googlecode.com/files/${pkgname}$pkgver.src.tar.gz;
-$pkgname.sh)
-sha256sums=('7fba3533d172f13629d3d8a79e57c620632b0bd075abe11d7698b338be0ae3df'
-'a03db71d323ed2794123bb31b5c8ad5febd551c490b5c0b341052c8e5f0ba892')
-
-build() {
-  cd $srcdir/$pkgname
-
-  if [ $CARCH == 'x86_64' ]; then
-export GOARCH=amd64
-  elif [ $CARCH == 'i686' ]; then
-export GOARCH=386
-  else
-export GOARCH=arm
-  fi
-  export GOROOT_FINAL=/usr/lib/go
-  export GOOS=linux
-
-  cd src
-  bash make.bash
-
-  # Enable ARM crosscompilation for non-arm platforms
-  if [ $CARCH == 'x86_64' ]; then
-export GOARCH=arm
-  elif [ $CARCH == 'i686' ]; then
-export GOARCH=arm
-  fi
-  bash make.bash
-}
-
-check() {
-  cd $srcdir/$pkgname
-
-  if [ $CARCH == 'x86_64' ]; then
-export GOARCH=amd64
-  elif [ $CARCH == 'i686' ]; then
-export GOARCH=386
-  else
-export GOARCH=arm
-  fi
-
-  export GOROOT=$srcdir/$pkgname
-  export PATH=$srcdir/$pkgname/bin:$PATH
-
-  # TestSimpleMulticastListener will fail in standard chroot.
-  cd src  bash run.bash --no-rebuild || true
-}
-
-package() {
-  cd $srcdir/$pkgname
-
-  install -Dm644 LICENSE \
-$pkgdir/usr/share/licenses/go/LICENSE
-  install -Dm644 misc/bash/go \
-$pkgdir/usr/share/bash-completion/completions/go
-  install -Dm644 misc/emacs/go-mode-load.el \
-$pkgdir/usr/share/emacs/site-lisp/go-mode-load.el
-  install -Dm644 misc/emacs/go-mode.el \
-$pkgdir/usr/share/emacs/site-lisp/go-mode.el
-  install -Dm644 misc/zsh/go \
-$pkgdir/usr/share/zsh/site-functions/_go
-
-  for f in ftdetect/gofiletype.vim autoload/go/complete.vim indent/go.vim \
-ftplugin/go/fmt.vim ftplugin/go/godoc.vim ftplugin/go/import.vim \
-syntax/go.vim syntax/godoc.vim plugin/godoc.vim;
-  do
-install -Dm644 misc/vim/$f $pkgdir/usr/share/vim/vimfiles/$f
-  done
-
-  mkdir -p $pkgdir/{etc/profile.d,usr/{share/go,lib/go,lib/go/src}}
-
-  cp -r doc misc -t $pkgdir/usr/share/go
-  ln -s /usr/share/go/doc $pkgdir/usr/lib/go/doc
-  cp -a bin $pkgdir/usr
-  cp -a pkg $pkgdir/usr/lib/go
-  cp -a $GOROOT/src/pkg $pkgdir/usr/lib/go/src/
-  cp -a $GOROOT/src/cmd $pkgdir/usr/lib/go/src/cmd
-  cp -a $GOROOT/src/lib9 $pkgdir/usr/lib/go/src/
-  cp -a $GOROOT/lib $pkgdir/usr/lib/go/
-  cp -a $GOROOT/include $pkgdir/usr/lib/go/
-
-  install -Dm644 src/Make.* $pkgdir/usr/lib/go/src
-
-  # Remove object files from target src dir
-  find $pkgdir/usr/lib/go/src/ -type f -name '*.[ao]' -delete
-
-  # Fix for FS#32813
-  find $pkgdir -type f -name sql.go -exec chmod -x {} \;
-  
-  # Remove all executable source files
-  find $pkgdir/usr/lib/go/src/pkg -type f -executable -delete
-
-  # Headers for C modules
-  

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

2013-03-25 Thread Andrea Scarpino
Date: Monday, March 25, 2013 @ 14:38:41
  Author: andrea
Revision: 180654

upgpkg: akonadi 1.9.1-3

boost

Modified:
  akonadi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 12:36:35 UTC (rev 180653)
+++ PKGBUILD2013-03-25 13:38:41 UTC (rev 180654)
@@ -4,7 +4,7 @@
 
 pkgname=akonadi
 pkgver=1.9.1
-pkgrel=2
+pkgrel=3
 pkgdesc=PIM layer, which provides an asynchronous API to access all kind of 
PIM data
 arch=('i686' 'x86_64')
 url='http://community.kde.org/KDE_PIM/Akonadi'



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

2013-03-25 Thread Andrea Scarpino
Date: Monday, March 25, 2013 @ 14:38:47
  Author: andrea
Revision: 180655

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

Added:
  akonadi/repos/staging-i686/
  akonadi/repos/staging-i686/PKGBUILD
(from rev 180654, akonadi/trunk/PKGBUILD)
  akonadi/repos/staging-i686/akonadi.install
(from rev 180654, akonadi/trunk/akonadi.install)
  akonadi/repos/staging-x86_64/
  akonadi/repos/staging-x86_64/PKGBUILD
(from rev 180654, akonadi/trunk/PKGBUILD)
  akonadi/repos/staging-x86_64/akonadi.install
(from rev 180654, akonadi/trunk/akonadi.install)

+
 staging-i686/PKGBUILD  |   32 
 staging-i686/akonadi.install   |   11 +++
 staging-x86_64/PKGBUILD|   32 
 staging-x86_64/akonadi.install |   11 +++
 4 files changed, 86 insertions(+)

Copied: akonadi/repos/staging-i686/PKGBUILD (from rev 180654, 
akonadi/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-03-25 13:38:47 UTC (rev 180655)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=akonadi
+pkgver=1.9.1
+pkgrel=3
+pkgdesc=PIM layer, which provides an asynchronous API to access all kind of 
PIM data
+arch=('i686' 'x86_64')
+url='http://community.kde.org/KDE_PIM/Akonadi'
+license=('LGPL')
+depends=('shared-mime-info' 'boost-libs' 'mariadb' 'soprano')
+makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('f150d5e9b4776d683d0b1d64316f0276')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE \
+-DQT_QMAKE_EXECUTABLE=qmake-qt4
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: akonadi/repos/staging-i686/akonadi.install (from rev 180654, 
akonadi/trunk/akonadi.install)
===
--- staging-i686/akonadi.install(rev 0)
+++ staging-i686/akonadi.install2013-03-25 13:38:47 UTC (rev 180655)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: akonadi/repos/staging-x86_64/PKGBUILD (from rev 180654, 
akonadi/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-03-25 13:38:47 UTC (rev 180655)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=akonadi
+pkgver=1.9.1
+pkgrel=3
+pkgdesc=PIM layer, which provides an asynchronous API to access all kind of 
PIM data
+arch=('i686' 'x86_64')
+url='http://community.kde.org/KDE_PIM/Akonadi'
+license=('LGPL')
+depends=('shared-mime-info' 'boost-libs' 'mariadb' 'soprano')
+makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('f150d5e9b4776d683d0b1d64316f0276')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE \
+-DQT_QMAKE_EXECUTABLE=qmake-qt4
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: akonadi/repos/staging-x86_64/akonadi.install (from rev 180654, 
akonadi/trunk/akonadi.install)
===
--- staging-x86_64/akonadi.install  (rev 0)
+++ staging-x86_64/akonadi.install  2013-03-25 13:38:47 UTC (rev 180655)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-03-25 Thread Andrea Scarpino
Date: Monday, March 25, 2013 @ 15:06:15
  Author: andrea
Revision: 180656

upgpkg: kdeedu-kig 4.10.1-2

boost rebuild

Modified:
  kdeedu-kig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 13:38:47 UTC (rev 180655)
+++ PKGBUILD2013-03-25 14:06:15 UTC (rev 180656)
@@ -3,7 +3,7 @@
 
 pkgname=kdeedu-kig
 pkgver=4.10.1
-pkgrel=1
+pkgrel=2
 pkgdesc=Interactive Geometry
 url=http://kde.org/applications/education/kig/;
 arch=('i686' 'x86_64')
@@ -16,7 +16,6 @@
 sha1sums=('44b6c9d6585d42cb1b5d9970fd6a43c9c0610ca1')
 
 build() {
-  cd ${srcdir}
   mkdir build
   cd build
   cmake ../kig-${pkgver} \
@@ -27,7 +26,7 @@
 }
 
 package() {
-  cd ${srcdir}/build
+  cd build
   make DESTDIR=${pkgdir} install
 
   # Use the python2 executable



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

2013-03-25 Thread Andrea Scarpino
Date: Monday, March 25, 2013 @ 15:06:21
  Author: andrea
Revision: 180657

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

Added:
  kdeedu-kig/repos/staging-i686/
  kdeedu-kig/repos/staging-i686/PKGBUILD
(from rev 180656, kdeedu-kig/trunk/PKGBUILD)
  kdeedu-kig/repos/staging-i686/kdeedu-kig.install
(from rev 180656, kdeedu-kig/trunk/kdeedu-kig.install)
  kdeedu-kig/repos/staging-x86_64/
  kdeedu-kig/repos/staging-x86_64/PKGBUILD
(from rev 180656, kdeedu-kig/trunk/PKGBUILD)
  kdeedu-kig/repos/staging-x86_64/kdeedu-kig.install
(from rev 180656, kdeedu-kig/trunk/kdeedu-kig.install)

---+
 staging-i686/PKGBUILD |   34 ++
 staging-i686/kdeedu-kig.install   |   12 
 staging-x86_64/PKGBUILD   |   34 ++
 staging-x86_64/kdeedu-kig.install |   12 
 4 files changed, 92 insertions(+)

Copied: kdeedu-kig/repos/staging-i686/PKGBUILD (from rev 180656, 
kdeedu-kig/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-03-25 14:06:21 UTC (rev 180657)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-kig
+pkgver=4.10.1
+pkgrel=2
+pkgdesc=Interactive Geometry
+url=http://kde.org/applications/education/kig/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kig-${pkgver}.tar.xz;)
+sha1sums=('44b6c9d6585d42cb1b5d9970fd6a43c9c0610ca1')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kig-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
${pkgdir}/usr/bin/pykig.py
+}

Copied: kdeedu-kig/repos/staging-i686/kdeedu-kig.install (from rev 180656, 
kdeedu-kig/trunk/kdeedu-kig.install)
===
--- staging-i686/kdeedu-kig.install (rev 0)
+++ staging-i686/kdeedu-kig.install 2013-03-25 14:06:21 UTC (rev 180657)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: kdeedu-kig/repos/staging-x86_64/PKGBUILD (from rev 180656, 
kdeedu-kig/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-03-25 14:06:21 UTC (rev 180657)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kdeedu-kig
+pkgver=4.10.1
+pkgrel=2
+pkgdesc=Interactive Geometry
+url=http://kde.org/applications/education/kig/;
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeedu')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgver}/src/kig-${pkgver}.tar.xz;)
+sha1sums=('44b6c9d6585d42cb1b5d9970fd6a43c9c0610ca1')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../kig-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DKDE4_BUILD_TESTS=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+
+  # Use the python2 executable
+  sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|' 
${pkgdir}/usr/bin/pykig.py
+}

Copied: kdeedu-kig/repos/staging-x86_64/kdeedu-kig.install (from rev 180656, 
kdeedu-kig/trunk/kdeedu-kig.install)
===
--- staging-x86_64/kdeedu-kig.install   (rev 0)
+++ staging-x86_64/kdeedu-kig.install   2013-03-25 14:06:21 UTC (rev 180657)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 15:18:24
  Author: jgc
Revision: 180658

upgpkg: webkitgtk 1.11.92-1

Added:
  webkitgtk/trunk/python3.patch
Modified:
  webkitgtk/trunk/PKGBUILD

---+
 PKGBUILD  |   50 +++---
 python3.patch |   20 
 2 files changed, 35 insertions(+), 35 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 14:06:21 UTC (rev 180657)
+++ PKGBUILD2013-03-25 14:18:24 UTC (rev 180658)
@@ -2,60 +2,40 @@
 # Maintainer: Andreas Radke andy...@archlinux.org
 
 pkgbase=webkitgtk
-pkgname=('webkitgtk2' 'webkitgtk3')
-pkgver=1.10.2
-pkgrel=3
+pkgname=('webkitgtk3')
+pkgver=1.11.92
+pkgrel=1
 arch=('i686' 'x86_64')
 url=http://webkitgtk.org/;
 license=('custom')
-makedepends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gtk3' 'gst-plugins-base-libs' 'gstreamer0.10-base' 'gperf' 
'gobject-introspection' 'python2' 'mesa' 'ruby' 'gtk-doc')
+makedepends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gtk3' 'gst-plugins-base-libs' 'gperf' 'gobject-introspection' 'python' 
'mesa' 'ruby' 'gtk-doc' 'libsecret' 'libwebp')
 options=('!libtool' '!emptydirs')
-source=(http://webkitgtk.org/releases/webkitgtk-$pkgver.tar.xz)
-sha256sums=('19234f8e4edfaefe91ed06471a2aa8c71d26dd55d33787eede1dcfc9a3a96d9c')
+source=(http://webkitgtk.org/releases/webkitgtk-$pkgver.tar.xz
+   python3.patch)
+sha256sums=('3800ec67da490750e55cf2ed2c1f947365d9fb49bb0d448c78d017ab06e74fad'
+'15cef03698b2e45fcdaf5f6b6de918b86537bf8b1e181fe08cde239344203225')
 
 build() {
   cd $srcdir/webkitgtk-$pkgver
-  mkdir build-gtk2 build-gtk3
-
-  cd build-gtk2
-  PYTHON=/usr/bin/python2 ../configure --prefix=/usr \
+  patch -Np1 -i ../python3.patch
+  mkdir build-gtk3
+  cd build-gtk3
+  ../configure --prefix=/usr \
 --enable-introspection \
 --disable-silent-rules \
---libexecdir=/usr/lib/webkitgtk2 \
---with-gstreamer=0.10 \
---with-gtk=2.0 \
---disable-webkit2
+--libexecdir=/usr/lib/webkitgtk3
   make all stamp-po
-  
-  cd ../build-gtk3
-  PYTHON=/usr/bin/python2 ../configure --prefix=/usr \
---enable-introspection \
---disable-silent-rules \
---libexecdir=/usr/lib/webkitgtk3 \
---with-gstreamer=1.0
-  make all stamp-po
 }
 
 package_webkitgtk3() {
   pkgdesc=GTK+ Web content engine library for GTK+ 3.0
-  depends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gtk3' 'gst-plugins-base-libs')
+  depends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk3' 'gst-plugins-base-libs' 'libsecret' 'libwebp')
   conflicts=('libwebkit3')
   provides=(libwebkit3=${pkgver})
   replaces=('libwebkit3')
+  optdepends=('gtk2: Webkit2 plugin support')
   
   cd $srcdir/webkitgtk-$pkgver/build-gtk3
   make -j1 DESTDIR=$pkgdir install
   install -Dm644 ../Source/WebKit/LICENSE 
$pkgdir/usr/share/licenses/${pkgname}/LICENSE
 }
-
-package_webkitgtk2() {
-  pkgdesc=GTK+ Web content engine library for GTK+ 2.0
-  depends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gstreamer0.10-base')
-  conflicts=('libwebkit')
-  provides=(libwebkit=${pkgver})
-  replaces=('libwebkit')
-  
-  cd $srcdir/webkitgtk-$pkgver/build-gtk2
-  make -j1 DESTDIR=$pkgdir install
-  install -Dm644 ../Source/WebKit/LICENSE 
$pkgdir/usr/share/licenses/${pkgname}/LICENSE
-}

Added: python3.patch
===
--- python3.patch   (rev 0)
+++ python3.patch   2013-03-25 14:18:24 UTC (rev 180658)
@@ -0,0 +1,20 @@
+diff --git a/Tools/gtk/generate-feature-defines-files 
b/Tools/gtk/generate-feature-defines-files
+index 
1a92bf50a05831655308cb62646eb05a6db4b63c..f5b2c7e61eab12bf0eb25b0f9c595f2fd83ebbe9
 100755
+--- a/Tools/gtk/generate-feature-defines-files
 b/Tools/gtk/generate-feature-defines-files
+@@ -32,13 +32,13 @@ def write_file_if_contents_changed(filename, contents):
+ 
+ def write_feature_defines_header(feature_defines):
+ contents = ''
+-for (feature, value) in feature_defines.iteritems():
++for (feature, value) in feature_defines.items():
+ contents += '#define {0} {1}\n'.format(feature, value)
+ write_file_if_contents_changed(WebKitFeatures.h, contents)
+ 
+ def write_flattened_feature_defines_file(feature_defines):
+ contents = ''
+-for (feature, value) in feature_defines.iteritems():
++for (feature, value) in feature_defines.items():
+ contents += '{0}={1}\n'.format(feature, value)
+ write_file_if_contents_changed(WebKitFeatures.txt, contents)
+ 



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 15:18:30
  Author: jgc
Revision: 180659

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

Added:
  webkitgtk/repos/gnome-unstable-i686/
  webkitgtk/repos/gnome-unstable-i686/PKGBUILD
(from rev 180658, webkitgtk/trunk/PKGBUILD)
  webkitgtk/repos/gnome-unstable-i686/python3.patch
(from rev 180658, webkitgtk/trunk/python3.patch)
  webkitgtk/repos/gnome-unstable-x86_64/
  webkitgtk/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180658, webkitgtk/trunk/PKGBUILD)
  webkitgtk/repos/gnome-unstable-x86_64/python3.patch
(from rev 180658, webkitgtk/trunk/python3.patch)

-+
 gnome-unstable-i686/PKGBUILD|   41 ++
 gnome-unstable-i686/python3.patch   |   20 
 gnome-unstable-x86_64/PKGBUILD  |   41 ++
 gnome-unstable-x86_64/python3.patch |   20 
 4 files changed, 122 insertions(+)

Copied: webkitgtk/repos/gnome-unstable-i686/PKGBUILD (from rev 180658, 
webkitgtk/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 14:18:30 UTC (rev 180659)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgbase=webkitgtk
+pkgname=('webkitgtk3')
+pkgver=1.11.92
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://webkitgtk.org/;
+license=('custom')
+makedepends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gtk3' 'gst-plugins-base-libs' 'gperf' 'gobject-introspection' 'python' 
'mesa' 'ruby' 'gtk-doc' 'libsecret' 'libwebp')
+options=('!libtool' '!emptydirs')
+source=(http://webkitgtk.org/releases/webkitgtk-$pkgver.tar.xz
+   python3.patch)
+sha256sums=('3800ec67da490750e55cf2ed2c1f947365d9fb49bb0d448c78d017ab06e74fad'
+'15cef03698b2e45fcdaf5f6b6de918b86537bf8b1e181fe08cde239344203225')
+
+build() {
+  cd $srcdir/webkitgtk-$pkgver
+  patch -Np1 -i ../python3.patch
+  mkdir build-gtk3
+  cd build-gtk3
+  ../configure --prefix=/usr \
+--enable-introspection \
+--disable-silent-rules \
+--libexecdir=/usr/lib/webkitgtk3
+  make all stamp-po
+}
+
+package_webkitgtk3() {
+  pkgdesc=GTK+ Web content engine library for GTK+ 3.0
+  depends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk3' 'gst-plugins-base-libs' 'libsecret' 'libwebp')
+  conflicts=('libwebkit3')
+  provides=(libwebkit3=${pkgver})
+  replaces=('libwebkit3')
+  optdepends=('gtk2: Webkit2 plugin support')
+  
+  cd $srcdir/webkitgtk-$pkgver/build-gtk3
+  make -j1 DESTDIR=$pkgdir install
+  install -Dm644 ../Source/WebKit/LICENSE 
$pkgdir/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: webkitgtk/repos/gnome-unstable-i686/python3.patch (from rev 180658, 
webkitgtk/trunk/python3.patch)
===
--- gnome-unstable-i686/python3.patch   (rev 0)
+++ gnome-unstable-i686/python3.patch   2013-03-25 14:18:30 UTC (rev 180659)
@@ -0,0 +1,20 @@
+diff --git a/Tools/gtk/generate-feature-defines-files 
b/Tools/gtk/generate-feature-defines-files
+index 
1a92bf50a05831655308cb62646eb05a6db4b63c..f5b2c7e61eab12bf0eb25b0f9c595f2fd83ebbe9
 100755
+--- a/Tools/gtk/generate-feature-defines-files
 b/Tools/gtk/generate-feature-defines-files
+@@ -32,13 +32,13 @@ def write_file_if_contents_changed(filename, contents):
+ 
+ def write_feature_defines_header(feature_defines):
+ contents = ''
+-for (feature, value) in feature_defines.iteritems():
++for (feature, value) in feature_defines.items():
+ contents += '#define {0} {1}\n'.format(feature, value)
+ write_file_if_contents_changed(WebKitFeatures.h, contents)
+ 
+ def write_flattened_feature_defines_file(feature_defines):
+ contents = ''
+-for (feature, value) in feature_defines.iteritems():
++for (feature, value) in feature_defines.items():
+ contents += '{0}={1}\n'.format(feature, value)
+ write_file_if_contents_changed(WebKitFeatures.txt, contents)
+ 

Copied: webkitgtk/repos/gnome-unstable-x86_64/PKGBUILD (from rev 180658, 
webkitgtk/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 14:18:30 UTC (rev 180659)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andreas Radke andy...@archlinux.org
+
+pkgbase=webkitgtk
+pkgname=('webkitgtk3')
+pkgver=1.11.92
+pkgrel=1
+arch=('i686' 'x86_64')
+url=http://webkitgtk.org/;
+license=('custom')
+makedepends=('libxt' 'libxslt' 'sqlite' 'libsoup' 'enchant' 'libgl' 'geoclue' 
'gtk2' 'gtk3' 'gst-plugins-base-libs' 'gperf' 'gobject-introspection' 'python' 
'mesa' 'ruby' 'gtk-doc' 'libsecret' 'libwebp')
+options=('!libtool' '!emptydirs')

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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 15:20:36
  Author: jgc
Revision: 180660

upgpkg: glib-networking 2.36.0-1

Modified:
  glib-networking/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 14:18:30 UTC (rev 180659)
+++ PKGBUILD2013-03-25 14:20:36 UTC (rev 180660)
@@ -2,7 +2,7 @@
 # Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=glib-networking
-pkgver=2.35.9
+pkgver=2.36.0
 pkgrel=1
 pkgdesc=Network-related giomodules for glib
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 options=('!libtool')
 install=glib-networking.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5c2da09292d40571fb76ec62feb4d8d083d20d97295cba7a4b49541e1b64b628')
+sha256sums=('190d66fbaeb023ba4f43c315f23c5372c43be6cbe857596e00990211514650d9')
 
 build() {
   cd $pkgname-$pkgver



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 15:20:45
  Author: jgc
Revision: 180661

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

Added:
  glib-networking/repos/gnome-unstable-i686/PKGBUILD
(from rev 180660, glib-networking/trunk/PKGBUILD)
  glib-networking/repos/gnome-unstable-i686/glib-networking.install
(from rev 180660, glib-networking/trunk/glib-networking.install)
  glib-networking/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180660, glib-networking/trunk/PKGBUILD)
  glib-networking/repos/gnome-unstable-x86_64/glib-networking.install
(from rev 180660, glib-networking/trunk/glib-networking.install)
Deleted:
  glib-networking/repos/gnome-unstable-i686/PKGBUILD
  glib-networking/repos/gnome-unstable-i686/glib-networking.install
  glib-networking/repos/gnome-unstable-x86_64/PKGBUILD
  glib-networking/repos/gnome-unstable-x86_64/glib-networking.install

---+
 /PKGBUILD |   60 
 /glib-networking.install  |   22 
 gnome-unstable-i686/PKGBUILD  |   30 
 gnome-unstable-i686/glib-networking.install   |   11 
 gnome-unstable-x86_64/PKGBUILD|   30 
 gnome-unstable-x86_64/glib-networking.install |   11 
 6 files changed, 82 insertions(+), 82 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-03-25 14:20:36 UTC (rev 180660)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 14:20:45 UTC (rev 180661)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-
-pkgname=glib-networking
-pkgver=2.35.9
-pkgrel=1
-pkgdesc=Network-related giomodules for glib
-arch=(i686 x86_64)
-url=http://www.gtk.org/;
-license=(GPL2)
-depends=(glib2 libproxy gnutls ca-certificates gsettings-desktop-schemas)
-makedepends=(intltool)
-options=('!libtool')
-install=glib-networking.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('5c2da09292d40571fb76ec62feb4d8d083d20d97295cba7a4b49541e1b64b628')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/$pkgname --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: glib-networking/repos/gnome-unstable-i686/PKGBUILD (from rev 180660, 
glib-networking/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 14:20:45 UTC (rev 180661)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=glib-networking
+pkgver=2.36.0
+pkgrel=1
+pkgdesc=Network-related giomodules for glib
+arch=(i686 x86_64)
+url=http://www.gtk.org/;
+license=(GPL2)
+depends=(glib2 libproxy gnutls ca-certificates gsettings-desktop-schemas)
+makedepends=(intltool)
+options=('!libtool')
+install=glib-networking.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('190d66fbaeb023ba4f43c315f23c5372c43be6cbe857596e00990211514650d9')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/$pkgname --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gnome-unstable-i686/glib-networking.install
===
--- gnome-unstable-i686/glib-networking.install 2013-03-25 14:20:36 UTC (rev 
180660)
+++ gnome-unstable-i686/glib-networking.install 2013-03-25 14:20:45 UTC (rev 
180661)
@@ -1,11 +0,0 @@
-post_install() {
-  gio-querymodules /usr/lib/gio/modules
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: glib-networking/repos/gnome-unstable-i686/glib-networking.install (from 
rev 180660, glib-networking/trunk/glib-networking.install)
===
--- gnome-unstable-i686/glib-networking.install (rev 0)
+++ gnome-unstable-i686/glib-networking.install 2013-03-25 14:20:45 UTC (rev 
180661)
@@ -0,0 +1,11 @@
+post_install() {
+  gio-querymodules /usr/lib/gio/modules
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2013-03-25 14:20:36 UTC (rev 180660)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 14:20:45 UTC (rev 180661)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-

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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 15:24:24
  Author: jgc
Revision: 180662

upgpkg: libsoup 2.42.0-1

Modified:
  libsoup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 14:20:45 UTC (rev 180661)
+++ PKGBUILD2013-03-25 14:24:24 UTC (rev 180662)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libsoup
-pkgver=2.41.92
+pkgver=2.42.0
 pkgrel=1
 pkgdesc=GNOME HTTP Library
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 replaces=(libsoup-gnome)
 options=('!libtool' '!emptydirs')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7980f94e38a61e9c61f516a1fc6905db858706418d8bbbdfdef73b3234651bc0')
+sha256sums=('9e0e7eb5d3f7401ccf521fbc289fc1fa0923b7c7833729e2ed7696f7b848893e')
 
 build() {
   cd $pkgname-$pkgver



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 15:24:32
  Author: jgc
Revision: 180663

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

Added:
  libsoup/repos/gnome-unstable-i686/PKGBUILD
(from rev 180662, libsoup/trunk/PKGBUILD)
  libsoup/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180662, libsoup/trunk/PKGBUILD)
Deleted:
  libsoup/repos/gnome-unstable-i686/PKGBUILD
  libsoup/repos/gnome-unstable-x86_64/PKGBUILD

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

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-03-25 14:24:24 UTC (rev 180662)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 14:24:32 UTC (rev 180663)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libsoup
-pkgver=2.41.92
-pkgrel=1
-pkgdesc=GNOME HTTP Library
-arch=(i686 x86_64)
-license=(LGPL)
-url=http://www.gnome.org;
-depends=(glib2 libxml2 glib-networking sqlite)
-makedepends=(intltool gobject-introspection python2)
-provides=(libsoup-gnome=$pkgver-$pkgrel)
-conflicts=(libsoup-gnome)
-replaces=(libsoup-gnome)
-options=('!libtool' '!emptydirs')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7980f94e38a61e9c61f516a1fc6905db858706418d8bbbdfdef73b3234651bc0')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # Python3 has UnicodeDecodeErrors
-  sed -i -e '1s/python$/2/' libsoup/tld-parser.py
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libsoup/repos/gnome-unstable-i686/PKGBUILD (from rev 180662, 
libsoup/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 14:24:32 UTC (rev 180663)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libsoup
+pkgver=2.42.0
+pkgrel=1
+pkgdesc=GNOME HTTP Library
+arch=(i686 x86_64)
+license=(LGPL)
+url=http://www.gnome.org;
+depends=(glib2 libxml2 glib-networking sqlite)
+makedepends=(intltool gobject-introspection python2)
+provides=(libsoup-gnome=$pkgver-$pkgrel)
+conflicts=(libsoup-gnome)
+replaces=(libsoup-gnome)
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('9e0e7eb5d3f7401ccf521fbc289fc1fa0923b7c7833729e2ed7696f7b848893e')
+
+build() {
+  cd $pkgname-$pkgver
+
+  # Python3 has UnicodeDecodeErrors
+  sed -i -e '1s/python$/2/' libsoup/tld-parser.py
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2013-03-25 14:24:24 UTC (rev 180662)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 14:24:32 UTC (rev 180663)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libsoup
-pkgver=2.41.92
-pkgrel=1
-pkgdesc=GNOME HTTP Library
-arch=(i686 x86_64)
-license=(LGPL)
-url=http://www.gnome.org;
-depends=(glib2 libxml2 glib-networking sqlite)
-makedepends=(intltool gobject-introspection python2)
-provides=(libsoup-gnome=$pkgver-$pkgrel)
-conflicts=(libsoup-gnome)
-replaces=(libsoup-gnome)
-options=('!libtool' '!emptydirs')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('7980f94e38a61e9c61f516a1fc6905db858706418d8bbbdfdef73b3234651bc0')
-
-build() {
-  cd $pkgname-$pkgver
-
-  # Python3 has UnicodeDecodeErrors
-  sed -i -e '1s/python$/2/' libsoup/tld-parser.py
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libsoup/repos/gnome-unstable-x86_64/PKGBUILD (from rev 180662, 
libsoup/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 14:24:32 UTC (rev 180663)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libsoup
+pkgver=2.42.0
+pkgrel=1
+pkgdesc=GNOME HTTP Library
+arch=(i686 x86_64)
+license=(LGPL)
+url=http://www.gnome.org;
+depends=(glib2 libxml2 glib-networking sqlite)
+makedepends=(intltool gobject-introspection python2)
+provides=(libsoup-gnome=$pkgver-$pkgrel)

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

2013-03-25 Thread Alexander Rødseth
Date: Monday, March 25, 2013 @ 15:30:27
  Author: arodseth
Revision: 86968

upgpkg: python-pymongo 2.5-1

Modified:
  python-pymongo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 13:19:54 UTC (rev 86967)
+++ PKGBUILD2013-03-25 14:30:27 UTC (rev 86968)
@@ -5,7 +5,7 @@
 
 pkgbase=python-pymongo
 pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=2.4.2
+pkgver=2.5
 pkgrel=1
 pkgdesc='Python driver for MongoDB'
 arch=('x86_64' 'i686')
@@ -13,23 +13,26 @@
 url='http://pypi.python.org/pypi/pymongo/'
 makedepends=('python-distribute' 'python2-distribute')
 
source=(http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
-sha256sums=('6862c85844f1766c261a39022ec7a6b631988cb5528a31f8d20e78181398aa5f')
+sha256sums=('79aff1c77ec6be6158a4d1a11002400ee0eb8f74dc6f4f67527f59bfac78c222')
 
 build() {
-  cd $srcdir
-  cp -a pymongo-$pkgver pymongo2-$pkgver
+  cd $srcdir
+
+  cp -a pymongo-$pkgver pymongo2-$pkgver
 }
 
 package_python2-pymongo() {
   depends=('python2')
-  cd $srcdir/pymongo2-$pkgver
-  python2 setup.py install --root=$pkgdir --optimize=1
+
+  cd $srcdir/pymongo2-$pkgver
+  python2 setup.py install --root=$pkgdir --optimize=1
 }
 
 package_python-pymongo() {
   depends=('python')
-  cd $srcdir/pymongo-$pkgver
-  python setup.py install --root=$pkgdir --optimize=1
+
+  cd $srcdir/pymongo-$pkgver
+  python setup.py install --root=$pkgdir --optimize=1
 }
 
 # vim:set ts=2 sw=2 et:



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

2013-03-25 Thread Alexander Rødseth
Date: Monday, March 25, 2013 @ 15:30:39
  Author: arodseth
Revision: 86969

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-25 14:30:27 UTC (rev 86968)
+++ community-i686/PKGBUILD 2013-03-25 14:30:39 UTC (rev 86969)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Thomas S Hatch thatc...@gmail.com
-# Contributor: Jelle van der Waa je...@vdwaa.nl
-
-pkgbase=python-pymongo
-pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=2.4.2
-pkgrel=1
-pkgdesc='Python driver for MongoDB'
-arch=('x86_64' 'i686')
-license=('APACHE')
-url='http://pypi.python.org/pypi/pymongo/'
-makedepends=('python-distribute' 'python2-distribute')
-source=(http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
-sha256sums=('6862c85844f1766c261a39022ec7a6b631988cb5528a31f8d20e78181398aa5f')
-
-build() {
-  cd $srcdir
-  cp -a pymongo-$pkgver pymongo2-$pkgver
-}
-
-package_python2-pymongo() {
-  depends=('python2')
-  cd $srcdir/pymongo2-$pkgver
-  python2 setup.py install --root=$pkgdir --optimize=1
-}
-
-package_python-pymongo() {
-  depends=('python')
-  cd $srcdir/pymongo-$pkgver
-  python setup.py install --root=$pkgdir --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pymongo/repos/community-i686/PKGBUILD (from rev 86968, 
python-pymongo/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-25 14:30:39 UTC (rev 86969)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Thomas S Hatch thatc...@gmail.com
+# Contributor: Jelle van der Waa je...@vdwaa.nl
+
+pkgbase=python-pymongo
+pkgname=('python-pymongo' 'python2-pymongo')
+pkgver=2.5
+pkgrel=1
+pkgdesc='Python driver for MongoDB'
+arch=('x86_64' 'i686')
+license=('APACHE')
+url='http://pypi.python.org/pypi/pymongo/'
+makedepends=('python-distribute' 'python2-distribute')
+source=(http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
+sha256sums=('79aff1c77ec6be6158a4d1a11002400ee0eb8f74dc6f4f67527f59bfac78c222')
+
+build() {
+  cd $srcdir
+
+  cp -a pymongo-$pkgver pymongo2-$pkgver
+}
+
+package_python2-pymongo() {
+  depends=('python2')
+
+  cd $srcdir/pymongo2-$pkgver
+  python2 setup.py install --root=$pkgdir --optimize=1
+}
+
+package_python-pymongo() {
+  depends=('python')
+
+  cd $srcdir/pymongo-$pkgver
+  python setup.py install --root=$pkgdir --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-03-25 14:30:27 UTC (rev 86968)
+++ community-x86_64/PKGBUILD   2013-03-25 14:30:39 UTC (rev 86969)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Thomas S Hatch thatc...@gmail.com
-# Contributor: Jelle van der Waa je...@vdwaa.nl
-
-pkgbase=python-pymongo
-pkgname=('python-pymongo' 'python2-pymongo')
-pkgver=2.4.2
-pkgrel=1
-pkgdesc='Python driver for MongoDB'
-arch=('x86_64' 'i686')
-license=('APACHE')
-url='http://pypi.python.org/pypi/pymongo/'
-makedepends=('python-distribute' 'python2-distribute')
-source=(http://pypi.python.org/packages/source/p/pymongo/pymongo-$pkgver.tar.gz;)
-sha256sums=('6862c85844f1766c261a39022ec7a6b631988cb5528a31f8d20e78181398aa5f')
-
-build() {
-  cd $srcdir
-  cp -a pymongo-$pkgver pymongo2-$pkgver
-}
-
-package_python2-pymongo() {
-  depends=('python2')
-  cd $srcdir/pymongo2-$pkgver
-  python2 setup.py install --root=$pkgdir --optimize=1
-}
-
-package_python-pymongo() {
-  depends=('python')
-  cd $srcdir/pymongo-$pkgver
-  python setup.py install --root=$pkgdir --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-pymongo/repos/community-x86_64/PKGBUILD (from rev 86968, 
python-pymongo/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-03-25 14:30:39 UTC (rev 86969)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Thomas S Hatch thatc...@gmail.com
+# Contributor: Jelle van der Waa je...@vdwaa.nl
+

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

2013-03-25 Thread Lukas Jirkovsky
Date: Monday, March 25, 2013 @ 15:38:59
  Author: stativ
Revision: 86970

upgpkg: pion 4.0.13.1-4

boost 1.53 rebuild

Modified:
  pion/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 14:30:39 UTC (rev 86969)
+++ PKGBUILD2013-03-25 14:38:59 UTC (rev 86970)
@@ -4,7 +4,7 @@
 pkgver=4.0.13.1
 # use the git snapshot until a new version is out
 _pkgver=dddce5e02d8a60f958e466e690d38eee924475b0
-pkgrel=3
+pkgrel=4
 pkgdesc=A C++ development library for implementing lightweight HTTP 
interfaces
 url=http://www.cloudmeter.com/pion/support/;
 arch=('i686' 'x86_64')



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

2013-03-25 Thread Lukas Jirkovsky
Date: Monday, March 25, 2013 @ 15:39:54
  Author: stativ
Revision: 86971

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

Added:
  pion/repos/community-staging-i686/
  pion/repos/community-staging-i686/PKGBUILD
(from rev 86970, pion/trunk/PKGBUILD)
  pion/repos/community-staging-x86_64/
  pion/repos/community-staging-x86_64/PKGBUILD
(from rev 86970, pion/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   46 
 community-staging-x86_64/PKGBUILD |   46 
 2 files changed, 92 insertions(+)

Copied: pion/repos/community-staging-i686/PKGBUILD (from rev 86970, 
pion/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-03-25 14:39:54 UTC (rev 86971)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=pion
+pkgver=4.0.13.1
+# use the git snapshot until a new version is out
+_pkgver=dddce5e02d8a60f958e466e690d38eee924475b0
+pkgrel=4
+pkgdesc=A C++ development library for implementing lightweight HTTP 
interfaces
+url=http://www.cloudmeter.com/pion/support/;
+arch=('i686' 'x86_64')
+license=('custom:Boost')
+depends=('boost-libs' 'openssl' 'log4cpp')
+makedepends=('boost')
+provides=('pion-net')
+conflicts=('pion-net')
+replaces=('pion-net')
+source=(https://github.com/cloudmeter/pion/archive/${_pkgver}.zip)
+md5sums=('4b312452058a6f2580b5d88b03321457')
+
+build() {
+  cd $srcdir/$pkgname-$_pkgver
+
+  sh autogen.sh
+
+  # override configure bug (forces debug even when nobody asked for it)
+  sed -i s/ -ggdb//g configure
+  # override Makefile bug
+  sed -i /docs:/ s/doxygen-doc// Makefile.in
+
+  ./configure --prefix=/usr --disable-doxygen-doc
+
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$_pkgver
+  make -k check
+}
+
+package() {
+  cd $srcdir/$pkgname-$_pkgver
+  make DESTDIR=$pkgdir install
+
+  # install license
+  install -D -m0755 COPYING $pkgdir/usr/share/licenses/$pkgname/Boost
+}

Copied: pion/repos/community-staging-x86_64/PKGBUILD (from rev 86970, 
pion/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-03-25 14:39:54 UTC (rev 86971)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=pion
+pkgver=4.0.13.1
+# use the git snapshot until a new version is out
+_pkgver=dddce5e02d8a60f958e466e690d38eee924475b0
+pkgrel=4
+pkgdesc=A C++ development library for implementing lightweight HTTP 
interfaces
+url=http://www.cloudmeter.com/pion/support/;
+arch=('i686' 'x86_64')
+license=('custom:Boost')
+depends=('boost-libs' 'openssl' 'log4cpp')
+makedepends=('boost')
+provides=('pion-net')
+conflicts=('pion-net')
+replaces=('pion-net')
+source=(https://github.com/cloudmeter/pion/archive/${_pkgver}.zip)
+md5sums=('4b312452058a6f2580b5d88b03321457')
+
+build() {
+  cd $srcdir/$pkgname-$_pkgver
+
+  sh autogen.sh
+
+  # override configure bug (forces debug even when nobody asked for it)
+  sed -i s/ -ggdb//g configure
+  # override Makefile bug
+  sed -i /docs:/ s/doxygen-doc// Makefile.in
+
+  ./configure --prefix=/usr --disable-doxygen-doc
+
+  make
+}
+
+check() {
+  cd $srcdir/$pkgname-$_pkgver
+  make -k check
+}
+
+package() {
+  cd $srcdir/$pkgname-$_pkgver
+  make DESTDIR=$pkgdir install
+
+  # install license
+  install -D -m0755 COPYING $pkgdir/usr/share/licenses/$pkgname/Boost
+}



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 15:42:41
  Author: jgc
Revision: 180664

upgpkg: gnome-online-accounts 3.7.92-1

Modified:
  gnome-online-accounts/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 14:24:32 UTC (rev 180663)
+++ PKGBUILD2013-03-25 14:42:41 UTC (rev 180664)
@@ -2,18 +2,18 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=gnome-online-accounts
-pkgver=3.6.2
+pkgver=3.7.92
 pkgrel=1
 pkgdesc=GNOME service to access online accounts
 arch=(i686 x86_64)
 url=http://www.gnome.org;
 license=('GPL')
 depends=('webkitgtk3' 'json-glib' 'libnotify' 'rest' 'hicolor-icon-theme' 
'libsecret')
-makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl')
+makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl' 
'python')
 options=(!libtool)
 install=$pkgname.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
-sha256sums=('55d207d2dc5428f41b0a504aa3edd996a6167a5625d9e11d678f33f282935fa7')
+sha256sums=('846f3003898c3f7d5ef37db83eb4712a697ea4f78a79dec7efe4dc5c5dc31aa8')
 
 build() {
   cd $pkgname-$pkgver



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 15:42:48
  Author: jgc
Revision: 180665

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

Added:
  gnome-online-accounts/repos/gnome-unstable-i686/
  gnome-online-accounts/repos/gnome-unstable-i686/PKGBUILD
(from rev 180664, gnome-online-accounts/trunk/PKGBUILD)
  gnome-online-accounts/repos/gnome-unstable-i686/gnome-online-accounts.install
(from rev 180664, gnome-online-accounts/trunk/gnome-online-accounts.install)
  gnome-online-accounts/repos/gnome-unstable-x86_64/
  gnome-online-accounts/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180664, gnome-online-accounts/trunk/PKGBUILD)
  
gnome-online-accounts/repos/gnome-unstable-x86_64/gnome-online-accounts.install
(from rev 180664, gnome-online-accounts/trunk/gnome-online-accounts.install)

-+
 gnome-unstable-i686/PKGBUILD|   29 ++
 gnome-unstable-i686/gnome-online-accounts.install   |   11 ++
 gnome-unstable-x86_64/PKGBUILD  |   29 ++
 gnome-unstable-x86_64/gnome-online-accounts.install |   11 ++
 4 files changed, 80 insertions(+)

Copied: gnome-online-accounts/repos/gnome-unstable-i686/PKGBUILD (from rev 
180664, gnome-online-accounts/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 14:42:48 UTC (rev 180665)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=gnome-online-accounts
+pkgver=3.7.92
+pkgrel=1
+pkgdesc=GNOME service to access online accounts
+arch=(i686 x86_64)
+url=http://www.gnome.org;
+license=('GPL')
+depends=('webkitgtk3' 'json-glib' 'libnotify' 'rest' 'hicolor-icon-theme' 
'libsecret')
+makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl' 
'python')
+options=(!libtool)
+install=$pkgname.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('846f3003898c3f7d5ef37db83eb4712a697ea4f78a79dec7efe4dc5c5dc31aa8')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexec=/usr/lib/gnome-online-accounts
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gnome-online-accounts/repos/gnome-unstable-i686/gnome-online-accounts.install 
(from rev 180664, gnome-online-accounts/trunk/gnome-online-accounts.install)
===
--- gnome-unstable-i686/gnome-online-accounts.install   
(rev 0)
+++ gnome-unstable-i686/gnome-online-accounts.install   2013-03-25 14:42:48 UTC 
(rev 180665)
@@ -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
+}

Copied: gnome-online-accounts/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
180664, gnome-online-accounts/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 14:42:48 UTC (rev 180665)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=gnome-online-accounts
+pkgver=3.7.92
+pkgrel=1
+pkgdesc=GNOME service to access online accounts
+arch=(i686 x86_64)
+url=http://www.gnome.org;
+license=('GPL')
+depends=('webkitgtk3' 'json-glib' 'libnotify' 'rest' 'hicolor-icon-theme' 
'libsecret')
+makedepends=('intltool' 'libxslt' 'gobject-introspection' 'docbook-xsl' 
'python')
+options=(!libtool)
+install=$pkgname.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver:0:3}/$pkgname-$pkgver.tar.xz)
+sha256sums=('846f3003898c3f7d5ef37db83eb4712a697ea4f78a79dec7efe4dc5c5dc31aa8')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --libexec=/usr/lib/gnome-online-accounts
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Copied: 
gnome-online-accounts/repos/gnome-unstable-x86_64/gnome-online-accounts.install 
(from rev 180664, gnome-online-accounts/trunk/gnome-online-accounts.install)
===
--- gnome-unstable-x86_64/gnome-online-accounts.install 
(rev 0)
+++ gnome-unstable-x86_64/gnome-online-accounts.install 2013-03-25 14:42:48 UTC 
(rev 180665)
@@ -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
+}



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

2013-03-25 Thread Evangelos Foutras
Date: Monday, March 25, 2013 @ 15:53:07
  Author: foutrelis
Revision: 180666

upgpkg: chromium 25.0.1364.172-2

Compile against internal harfbuzz (FS#34450). Explicitly link to libgio-2.0 and 
libpci.

Modified:
  chromium/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 14:42:48 UTC (rev 180665)
+++ PKGBUILD2013-03-25 14:53:07 UTC (rev 180666)
@@ -6,13 +6,13 @@
 
 pkgname=chromium
 pkgver=25.0.1364.172
-pkgrel=1
+pkgrel=2
 pkgdesc=The open-source project behind Google Chrome, an attempt at creating 
a safer, faster, and more stable browser
 arch=('i686' 'x86_64')
 url=http://www.chromium.org/;
 license=('BSD')
 depends=('gtk2' 'nss' 'alsa-lib' 'xdg-utils' 'bzip2' 'libevent' 'libxss'
- 'libgcrypt' 'ttf-font' 'udev' 'dbus' 'harfbuzz' 'desktop-file-utils'
+ 'libgcrypt' 'ttf-font' 'udev' 'dbus' 'pciutils' 'desktop-file-utils'
  'hicolor-icon-theme')
 makedepends=('python2' 'perl' 'gperf' 'yasm' 'mesa' 'libgnome-keyring'
  'elfutils' 'subversion' 'nacl-toolchain-newlib')
@@ -93,6 +93,8 @@
 -Dgoogle_default_client_id=$_google_default_client_id \
 -Dgoogle_default_client_secret=$_google_default_client_secret \
 -Dwerror= \
+-Dlinux_link_gsettings=1 \
+-Dlinux_link_libpci=1 \
 -Dlinux_sandbox_path=/usr/lib/chromium/chromium-sandbox \
 -Dlinux_strip_binary=1 \
 -Dlinux_use_gold_binary=0 \
@@ -102,7 +104,6 @@
 -Dproprietary_codecs=1 \
 -Duse_system_bzip2=1 \
 -Duse_system_ffmpeg=0 \
--Duse_system_harfbuzz=1 \
 -Duse_system_libevent=1 \
 -Duse_system_libjpeg=1 \
 -Duse_system_libpng=1 \



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

2013-03-25 Thread Evangelos Foutras
Date: Monday, March 25, 2013 @ 15:53:49
  Author: foutrelis
Revision: 180667

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

Added:
  chromium/repos/extra-i686/PKGBUILD
(from rev 180666, chromium/trunk/PKGBUILD)
  chromium/repos/extra-i686/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch
(from rev 180666, 
chromium/trunk/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch)
  
chromium/repos/extra-i686/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch
(from rev 180666, 
chromium/trunk/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch)
  chromium/repos/extra-i686/chromium-no-pnacl-r0.patch
(from rev 180666, chromium/trunk/chromium-no-pnacl-r0.patch)
  chromium/repos/extra-i686/chromium-ppapi-r0.patch
(from rev 180666, chromium/trunk/chromium-ppapi-r0.patch)
  chromium/repos/extra-i686/chromium-system-libpng-r0.patch
(from rev 180666, chromium/trunk/chromium-system-libpng-r0.patch)
  chromium/repos/extra-i686/chromium.default
(from rev 180666, chromium/trunk/chromium.default)
  chromium/repos/extra-i686/chromium.desktop
(from rev 180666, chromium/trunk/chromium.desktop)
  chromium/repos/extra-i686/chromium.install
(from rev 180666, chromium/trunk/chromium.install)
  chromium/repos/extra-i686/chromium.sh
(from rev 180666, chromium/trunk/chromium.sh)
  chromium/repos/extra-x86_64/PKGBUILD
(from rev 180666, chromium/trunk/PKGBUILD)
  
chromium/repos/extra-x86_64/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch
(from rev 180666, 
chromium/trunk/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch)
  
chromium/repos/extra-x86_64/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch
(from rev 180666, 
chromium/trunk/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch)
  chromium/repos/extra-x86_64/chromium-no-pnacl-r0.patch
(from rev 180666, chromium/trunk/chromium-no-pnacl-r0.patch)
  chromium/repos/extra-x86_64/chromium-ppapi-r0.patch
(from rev 180666, chromium/trunk/chromium-ppapi-r0.patch)
  chromium/repos/extra-x86_64/chromium-system-libpng-r0.patch
(from rev 180666, chromium/trunk/chromium-system-libpng-r0.patch)
  chromium/repos/extra-x86_64/chromium.default
(from rev 180666, chromium/trunk/chromium.default)
  chromium/repos/extra-x86_64/chromium.desktop
(from rev 180666, chromium/trunk/chromium.desktop)
  chromium/repos/extra-x86_64/chromium.install
(from rev 180666, chromium/trunk/chromium.install)
  chromium/repos/extra-x86_64/chromium.sh
(from rev 180666, chromium/trunk/chromium.sh)
Deleted:
  chromium/repos/extra-i686/PKGBUILD
  chromium/repos/extra-i686/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch
  
chromium/repos/extra-i686/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch
  chromium/repos/extra-i686/chromium-no-pnacl-r0.patch
  chromium/repos/extra-i686/chromium-ppapi-r0.patch
  chromium/repos/extra-i686/chromium-system-libpng-r0.patch
  chromium/repos/extra-i686/chromium.default
  chromium/repos/extra-i686/chromium.desktop
  chromium/repos/extra-i686/chromium.install
  chromium/repos/extra-i686/chromium.sh
  chromium/repos/extra-x86_64/PKGBUILD
  
chromium/repos/extra-x86_64/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch
  
chromium/repos/extra-x86_64/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch
  chromium/repos/extra-x86_64/chromium-no-pnacl-r0.patch
  chromium/repos/extra-x86_64/chromium-ppapi-r0.patch
  chromium/repos/extra-x86_64/chromium-system-libpng-r0.patch
  chromium/repos/extra-x86_64/chromium.default
  chromium/repos/extra-x86_64/chromium.desktop
  chromium/repos/extra-x86_64/chromium.install
  chromium/repos/extra-x86_64/chromium.sh

---+
 /PKGBUILD |  326 
++
 /chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch  |   70 ++
 /chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch |  136 

 /chromium-no-pnacl-r0.patch   |   40 +
 /chromium-ppapi-r0.patch  |   22 
 /chromium-system-libpng-r0.patch  |   22 
 /chromium.default |8 
 /chromium.desktop |  226 
++
 /chromium.install |   24 
 /chromium.sh  |   32 
 extra-i686/PKGBUILD   |  162 

 extra-i686/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch|   35 -
 extra-i686/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch   |   68 --
 extra-i686/chromium-no-pnacl-r0.patch |   20 
 extra-i686/chromium-ppapi-r0.patch|   11 
 

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

2013-03-25 Thread Lukas Jirkovsky
Date: Monday, March 25, 2013 @ 16:27:01
  Author: stativ
Revision: 86972

upgpkg: luxrays 1.2-2

boost 1.53 rebuild

Modified:
  luxrays/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 14:39:54 UTC (rev 86971)
+++ PKGBUILD2013-03-25 15:27:01 UTC (rev 86972)
@@ -3,16 +3,17 @@
 pkgname=luxrays
 pkgver=1.2
 _pkgver=475fbf15f0ca
-pkgrel=1
+pkgrel=2
 pkgdesc=Accelerate the ray intersection process by using GPUs
 arch=('i686' 'x86_64')
 url=http://www.luxrender.net/;
 license=('GPL')
 depends=('freeimage' 'libcl' 'libgl')
-optdepends=('glew: slg, slg2, smallppmgpu' 'freeglut: slg, slg2, smallppmgpu')
+optdepends=('glew: demos (SmallLuxGPU etc.)' 'freeglut: demos (SmallLuxGPU 
etc.)'
+'boost-libs: demos (SmallLuxGPU etc.)')
 makedepends=('cmake' 'boost' 'mesa' 'opencl-headers' 'glew' 'freeglut')
 source=(https://bitbucket.org/luxrender/luxrays/get/$_pkgver.tar.bz2)
-md5sums=('e7c24e8407514f2f2211ded105756b2a')
+md5sums=('ac98e9a42ecc20d97d4c12dcdf17e315')
 
 build() {
   cd $srcdir/luxrender-$pkgname-$_pkgver



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

2013-03-25 Thread Lukas Jirkovsky
Date: Monday, March 25, 2013 @ 16:27:09
  Author: stativ
Revision: 86973

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

Added:
  luxrays/repos/community-staging-i686/
  luxrays/repos/community-staging-i686/PKGBUILD
(from rev 86972, luxrays/trunk/PKGBUILD)
  luxrays/repos/community-staging-x86_64/
  luxrays/repos/community-staging-x86_64/PKGBUILD
(from rev 86972, luxrays/trunk/PKGBUILD)

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

Copied: luxrays/repos/community-staging-i686/PKGBUILD (from rev 86972, 
luxrays/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-03-25 15:27:09 UTC (rev 86973)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=luxrays
+pkgver=1.2
+_pkgver=475fbf15f0ca
+pkgrel=2
+pkgdesc=Accelerate the ray intersection process by using GPUs
+arch=('i686' 'x86_64')
+url=http://www.luxrender.net/;
+license=('GPL')
+depends=('freeimage' 'libcl' 'libgl')
+optdepends=('glew: demos (SmallLuxGPU etc.)' 'freeglut: demos (SmallLuxGPU 
etc.)'
+'boost-libs: demos (SmallLuxGPU etc.)')
+makedepends=('cmake' 'boost' 'mesa' 'opencl-headers' 'glew' 'freeglut')
+source=(https://bitbucket.org/luxrender/luxrays/get/$_pkgver.tar.bz2)
+md5sums=('ac98e9a42ecc20d97d4c12dcdf17e315')
+
+build() {
+  cd $srcdir/luxrender-$pkgname-$_pkgver
+
+  export CXXFLAGS=$CXXFLAGS -lpthread
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DLUXRAYS_DISABLE_OPENCL=OFF \
+.
+  make
+}
+
+package() {
+  cd $srcdir/luxrender-$pkgname-$_pkgver
+
+  install -d -m755 $pkgdir/usr/{bin,include,lib}
+  install -m755 bin/* $pkgdir/usr/bin
+  install -m644 lib/* $pkgdir/usr/lib
+  cp -a include/luxrays $pkgdir/usr/include
+}
+
+# vim:set ts=2 sw=2 et:

Copied: luxrays/repos/community-staging-x86_64/PKGBUILD (from rev 86972, 
luxrays/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-03-25 15:27:09 UTC (rev 86973)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
+pkgname=luxrays
+pkgver=1.2
+_pkgver=475fbf15f0ca
+pkgrel=2
+pkgdesc=Accelerate the ray intersection process by using GPUs
+arch=('i686' 'x86_64')
+url=http://www.luxrender.net/;
+license=('GPL')
+depends=('freeimage' 'libcl' 'libgl')
+optdepends=('glew: demos (SmallLuxGPU etc.)' 'freeglut: demos (SmallLuxGPU 
etc.)'
+'boost-libs: demos (SmallLuxGPU etc.)')
+makedepends=('cmake' 'boost' 'mesa' 'opencl-headers' 'glew' 'freeglut')
+source=(https://bitbucket.org/luxrender/luxrays/get/$_pkgver.tar.bz2)
+md5sums=('ac98e9a42ecc20d97d4c12dcdf17e315')
+
+build() {
+  cd $srcdir/luxrender-$pkgname-$_pkgver
+
+  export CXXFLAGS=$CXXFLAGS -lpthread
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_SKIP_RPATH=ON \
+-DLUXRAYS_DISABLE_OPENCL=OFF \
+.
+  make
+}
+
+package() {
+  cd $srcdir/luxrender-$pkgname-$_pkgver
+
+  install -d -m755 $pkgdir/usr/{bin,include,lib}
+  install -m755 bin/* $pkgdir/usr/bin
+  install -m644 lib/* $pkgdir/usr/lib
+  cp -a include/luxrays $pkgdir/usr/include
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in gvfs/trunk (PKGBUILD fix-paranoia-include.patch)

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 16:37:15
  Author: jgc
Revision: 180668

upgpkg: gvfs 1.16.0-1

Modified:
  gvfs/trunk/PKGBUILD
Deleted:
  gvfs/trunk/fix-paranoia-include.patch

+
 PKGBUILD   |   47 ---
 fix-paranoia-include.patch |   11 --
 2 files changed, 35 insertions(+), 23 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 14:53:49 UTC (rev 180667)
+++ PKGBUILD2013-03-25 15:37:15 UTC (rev 180668)
@@ -2,22 +2,19 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgbase=gvfs
-pkgname=('gvfs' 'gvfs-smb' 'gvfs-afc' 'gvfs-afp' 'gvfs-gphoto2' 'gvfs-obexftp')
-pkgver=1.14.2
-pkgrel=4
+pkgname=('gvfs' 'gvfs-smb' 'gvfs-afc' 'gvfs-afp' 'gvfs-gphoto2' 'gvfs-obexftp' 
'gvfs-goa' 'gvfs-mtp')
+pkgver=1.16.0
+pkgrel=1
 arch=('i686' 'x86_64')
 license=('LGPL')
-makedepends=('avahi' 'bluez' 'dbus-glib' 'fuse' 'intltool' 'libarchive' 
'libcdio-paranoia' 'libgphoto2' 'libimobiledevice' 'libsoup-gnome' 'smbclient' 
'udisks2' 'libsecret' 'docbook-xsl' 'gtk3')
+makedepends=('avahi' 'bluez' 'dbus-glib' 'fuse' 'intltool' 'libarchive' 
'libcdio-paranoia' 'libgphoto2' 'libimobiledevice' 'libsoup-gnome' 'smbclient' 
'udisks2' 'libsecret' 'docbook-xsl' 'gtk3' 'libmtp' 'gnome-online-accounts' 
'libbluray')
 url=http://www.gnome.org;
 options=(!libtool)
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz
-fix-paranoia-include.patch)
-sha256sums=('c3bbdac4bc89de82a2ba373799da80d24fb6a038a9893d9b54e2c9429c878fbc'
-'4385f9c5100bc0e01c59d07bef07737bb8155e60b56d3ee948e0b48ff207ff76')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz)
+sha256sums=('b0cf3ec2be053ef42a25a34c64b90fdf28a5334c595452ee2e246734696dd55e')
 
 build() {
   cd $pkgbase-$pkgver
-  patch -Np0 -i ../fix-paranoia-include.patch
   ./configure --prefix=/usr --sysconfdir=/etc \
   --localstatedir=/var --disable-static \
   --libexecdir=/usr/lib/gvfs \
@@ -27,24 +24,28 @@
 
 package_gvfs() {
   pkgdesc=Userspace virtual filesystem implemented as a pluggable module for 
gio
-  depends=('avahi' 'dconf' 'fuse' 'libarchive' 'libcdio-paranoia' 
'libsoup-gnome' 'udisks2' 'libsecret')
+  depends=('avahi' 'dconf' 'fuse' 'libarchive' 'libcdio-paranoia' 
'libsoup-gnome' 'udisks2' 'libsecret' 'libbluray')
   optdepends=('gvfs-afc: AFC (mobile devices) support'
   'gvfs-smb: SMB/CIFS (Windows client) support'
   'gvfs-gphoto2: gphoto2 (PTP camera/MTP media player) support'
   'gvfs-obexftp: ObexFTP (bluetooth) support'
   'gvfs-afp: Apple Filing Protocol (AFP) support'
+  'gvfs-mtp: MTP device support'
+  'gvfs-goa: gnome-online-accounts support'
   'gtk3: Recent files support')
   install=gvfs.install
 
   cd $pkgbase-$pkgver
   sed -e 's/^am__append_4/#am__append_4/' \
   -e 's/^am__append_5/#am__append_5/' \
+  -e 's/^am__append_6/#am__append_6/' \
+  -e 's/^am__append_7/#am__append_7/' \
   -i monitor/Makefile
   make DESTDIR=$pkgdir install
 
   cd $pkgdir
-  rm usr/lib/gvfs/gvfsd-{smb,smb-browse,afc,afp,afp-browse,gphoto2,obexftp}
-  rm 
usr/share/gvfs/mounts/{smb,smb-browse,afc,afp,afp-browse,gphoto2,obexftp}.mount
+  rm usr/lib/gvfs/gvfsd-{smb,smb-browse,afc,afp,afp-browse,gphoto2,obexftp,mtp}
+  rm 
usr/share/gvfs/mounts/{smb,smb-browse,afc,afp,afp-browse,gphoto2,obexftp,mtp}.mount
   rm usr/share/glib-2.0/schemas/org.gnome.system.smb.gschema.xml
   rm usr/share/GConf/gsettings/gvfs-smb.convert
 }
@@ -114,3 +115,25 @@
   install -m755 .libs/gvfsd-afp{,-browse} $pkgdir/usr/lib/gvfs/
   install -m644 afp{,-browse}.mount $pkgdir/usr/share/gvfs/mounts/
 }
+
+package_gvfs-mtp() {
+  pkgdesc=MTP backend for gvfs
+  depends=(gvfs=$pkgver 'libmtp')
+  install=gvfs-module.install
+
+  cd $pkgbase-$pkgver/daemon
+  install -D .libs/gvfsd-mtp $pkgdir/usr/lib/gvfs/gvfsd-mtp
+  install -Dm644 mtp.mount $pkgdir/usr/share/gvfs/mounts/mtp.mount
+
+  cd $srcdir/$pkgbase-$pkgver/monitor/mtp
+  make DESTDIR=$pkgdir install
+}
+
+package_gvfs-goa() {
+  pkgdesc=Gnome Online Accounts (webservices) backend for gvfs
+  depends=(gvfs=$pkgver 'gnome-online-accounts')
+  install=gvfs-module.install
+
+  cd $srcdir/$pkgbase-$pkgver/monitor/goa
+  make DESTDIR=$pkgdir install
+}

Deleted: fix-paranoia-include.patch
===
--- fix-paranoia-include.patch  2013-03-25 14:53:49 UTC (rev 180667)
+++ fix-paranoia-include.patch  2013-03-25 15:37:15 UTC (rev 180668)
@@ -1,11 +0,0 @@
 daemon/gvfsbackendcdda.c.orig  2013-01-08 11:19:52.311593338 +
-+++ daemon/gvfsbackendcdda.c   2013-01-08 11:20:05.778169190 +
-@@ -55,7 +55,7 @@
- #include gvfsjobenumerate.h
- 
- #define DO_NOT_WANT_PARANOIA_COMPATIBILITY
--#include cdio/paranoia.h
-+#include 

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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 16:37:25
  Author: jgc
Revision: 180669

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

Added:
  gvfs/repos/gnome-unstable-i686/
  gvfs/repos/gnome-unstable-i686/PKGBUILD
(from rev 180668, gvfs/trunk/PKGBUILD)
  gvfs/repos/gnome-unstable-i686/gvfs-module.install
(from rev 180668, gvfs/trunk/gvfs-module.install)
  gvfs/repos/gnome-unstable-i686/gvfs-smb.install
(from rev 180668, gvfs/trunk/gvfs-smb.install)
  gvfs/repos/gnome-unstable-i686/gvfs.install
(from rev 180668, gvfs/trunk/gvfs.install)
  gvfs/repos/gnome-unstable-x86_64/
  gvfs/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180668, gvfs/trunk/PKGBUILD)
  gvfs/repos/gnome-unstable-x86_64/gvfs-module.install
(from rev 180668, gvfs/trunk/gvfs-module.install)
  gvfs/repos/gnome-unstable-x86_64/gvfs-smb.install
(from rev 180668, gvfs/trunk/gvfs-smb.install)
  gvfs/repos/gnome-unstable-x86_64/gvfs.install
(from rev 180668, gvfs/trunk/gvfs.install)

---+
 gnome-unstable-i686/PKGBUILD  |  139 
 gnome-unstable-i686/gvfs-module.install   |7 +
 gnome-unstable-i686/gvfs-smb.install  |   12 ++
 gnome-unstable-i686/gvfs.install  |   14 ++
 gnome-unstable-x86_64/PKGBUILD|  139 
 gnome-unstable-x86_64/gvfs-module.install |7 +
 gnome-unstable-x86_64/gvfs-smb.install|   12 ++
 gnome-unstable-x86_64/gvfs.install|   14 ++
 8 files changed, 344 insertions(+)

Copied: gvfs/repos/gnome-unstable-i686/PKGBUILD (from rev 180668, 
gvfs/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 15:37:25 UTC (rev 180669)
@@ -0,0 +1,139 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=gvfs
+pkgname=('gvfs' 'gvfs-smb' 'gvfs-afc' 'gvfs-afp' 'gvfs-gphoto2' 'gvfs-obexftp' 
'gvfs-goa' 'gvfs-mtp')
+pkgver=1.16.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('LGPL')
+makedepends=('avahi' 'bluez' 'dbus-glib' 'fuse' 'intltool' 'libarchive' 
'libcdio-paranoia' 'libgphoto2' 'libimobiledevice' 'libsoup-gnome' 'smbclient' 
'udisks2' 'libsecret' 'docbook-xsl' 'gtk3' 'libmtp' 'gnome-online-accounts' 
'libbluray')
+url=http://www.gnome.org;
+options=(!libtool)
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz)
+sha256sums=('b0cf3ec2be053ef42a25a34c64b90fdf28a5334c595452ee2e246734696dd55e')
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/gvfs \
+  --with-bash-completion-dir=/usr/share/bash-completion/completions
+  make
+}
+
+package_gvfs() {
+  pkgdesc=Userspace virtual filesystem implemented as a pluggable module for 
gio
+  depends=('avahi' 'dconf' 'fuse' 'libarchive' 'libcdio-paranoia' 
'libsoup-gnome' 'udisks2' 'libsecret' 'libbluray')
+  optdepends=('gvfs-afc: AFC (mobile devices) support'
+  'gvfs-smb: SMB/CIFS (Windows client) support'
+  'gvfs-gphoto2: gphoto2 (PTP camera/MTP media player) support'
+  'gvfs-obexftp: ObexFTP (bluetooth) support'
+  'gvfs-afp: Apple Filing Protocol (AFP) support'
+  'gvfs-mtp: MTP device support'
+  'gvfs-goa: gnome-online-accounts support'
+  'gtk3: Recent files support')
+  install=gvfs.install
+
+  cd $pkgbase-$pkgver
+  sed -e 's/^am__append_4/#am__append_4/' \
+  -e 's/^am__append_5/#am__append_5/' \
+  -e 's/^am__append_6/#am__append_6/' \
+  -e 's/^am__append_7/#am__append_7/' \
+  -i monitor/Makefile
+  make DESTDIR=$pkgdir install
+
+  cd $pkgdir
+  rm usr/lib/gvfs/gvfsd-{smb,smb-browse,afc,afp,afp-browse,gphoto2,obexftp,mtp}
+  rm 
usr/share/gvfs/mounts/{smb,smb-browse,afc,afp,afp-browse,gphoto2,obexftp,mtp}.mount
+  rm usr/share/glib-2.0/schemas/org.gnome.system.smb.gschema.xml
+  rm usr/share/GConf/gsettings/gvfs-smb.convert
+}
+
+package_gvfs-smb() {
+  pkgdesc=SMB/CIFS (Windows client) backend for gvfs
+  depends=(gvfs=$pkgver 'smbclient')
+  install=gvfs-smb.install
+
+  cd $pkgbase-$pkgver/daemon
+  install -m755 -d $pkgdir/usr/lib/gvfs
+  install -m755 -d $pkgdir/usr/share/gvfs/mounts
+
+  install -m755 .libs/gvfsd-smb{,-browse} $pkgdir/usr/lib/gvfs/
+  install -m644 smb{,-browse}.mount $pkgdir/usr/share/gvfs/mounts/
+
+  install -Dm644 org.gnome.system.smb.gschema.xml \
+$pkgdir/usr/share/glib-2.0/schemas/org.gnome.system.smb.gschema.xml
+  install -Dm644 gvfs-smb.convert \
+$pkgdir/usr/share/GConf/gsettings/gvfs-smb.convert
+}
+
+package_gvfs-afc() {
+  pkgdesc=AFC (mobile devices) backend for gvfs
+  depends=(gvfs=$pkgver 'libimobiledevice')
+  install=gvfs-module.install
+
+  cd $pkgbase-$pkgver/daemon
+  install -D .libs/gvfsd-afc $pkgdir/usr/lib/gvfs/gvfsd-afc
+  

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

2013-03-25 Thread Stéphane Gaudreault
Date: Monday, March 25, 2013 @ 16:39:32
  Author: stephane
Revision: 86974

upgpkg: python-pyopencl 2012.1-8

rebuild for boost 1.53

Modified:
  python-pyopencl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 15:27:09 UTC (rev 86973)
+++ PKGBUILD2013-03-25 15:39:32 UTC (rev 86974)
@@ -4,12 +4,12 @@
 pkgbase=python-pyopencl
 pkgname=('python2-pyopencl' 'python-pyopencl' 'pyopencl-headers')
 pkgver=2012.1
-pkgrel=7
+pkgrel=8
 pkgdesc=A complete, object-oriented language binding of OpenCL to Python
 arch=('i686' 'x86_64')
 url=http://mathema.tician.de/software/pyopencl;
 license=('custom')
-makedepends=('ctags' 'python2-distribute' 'python-distribute' 'libcl' 
'opencl-headers' 'mesa' 'boost=1.52.0' 'python2-mako' 'python-mako' 
'python-numpy' 'python2-numpy')
+makedepends=('ctags' 'python2-distribute' 'python-distribute' 'libcl' 
'opencl-headers' 'mesa' 'boost=1.53.0' 'python2-mako' 'python-mako' 
'python-numpy' 'python2-numpy')
 
source=(http://pypi.python.org/packages/source/p/pyopencl/pyopencl-${pkgver}.tar.gz;
 'LICENSE.txt')
 sha1sums=('ef2460d5e9b883d8afe0ec47863a243b6f8ac7ff'



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

2013-03-25 Thread Stéphane Gaudreault
Date: Monday, March 25, 2013 @ 16:41:12
  Author: stephane
Revision: 86975

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

Added:
  python-pyopencl/repos/community-staging-i686/
  python-pyopencl/repos/community-staging-i686/LICENSE.txt
(from rev 86974, python-pyopencl/trunk/LICENSE.txt)
  python-pyopencl/repos/community-staging-i686/PKGBUILD
(from rev 86974, python-pyopencl/trunk/PKGBUILD)
  python-pyopencl/repos/community-staging-x86_64/
  python-pyopencl/repos/community-staging-x86_64/LICENSE.txt
(from rev 86974, python-pyopencl/trunk/LICENSE.txt)
  python-pyopencl/repos/community-staging-x86_64/PKGBUILD
(from rev 86974, python-pyopencl/trunk/PKGBUILD)

--+
 community-staging-i686/LICENSE.txt   |   20 ++
 community-staging-i686/PKGBUILD  |   61 +
 community-staging-x86_64/LICENSE.txt |   20 ++
 community-staging-x86_64/PKGBUILD|   61 +
 4 files changed, 162 insertions(+)

Copied: python-pyopencl/repos/community-staging-i686/LICENSE.txt (from rev 
86974, python-pyopencl/trunk/LICENSE.txt)
===
--- community-staging-i686/LICENSE.txt  (rev 0)
+++ community-staging-i686/LICENSE.txt  2013-03-25 15:41:12 UTC (rev 86975)
@@ -0,0 +1,20 @@
+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 THE AUTHORS OR COPYRIGHT
+HOLDERS 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.

Copied: python-pyopencl/repos/community-staging-i686/PKGBUILD (from rev 86974, 
python-pyopencl/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-03-25 15:41:12 UTC (rev 86975)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+
+pkgbase=python-pyopencl
+pkgname=('python2-pyopencl' 'python-pyopencl' 'pyopencl-headers')
+pkgver=2012.1
+pkgrel=8
+pkgdesc=A complete, object-oriented language binding of OpenCL to Python
+arch=('i686' 'x86_64')
+url=http://mathema.tician.de/software/pyopencl;
+license=('custom')
+makedepends=('ctags' 'python2-distribute' 'python-distribute' 'libcl' 
'opencl-headers' 'mesa' 'boost=1.53.0' 'python2-mako' 'python-mako' 
'python-numpy' 'python2-numpy')
+source=(http://pypi.python.org/packages/source/p/pyopencl/pyopencl-${pkgver}.tar.gz;
+'LICENSE.txt')
+sha1sums=('ef2460d5e9b883d8afe0ec47863a243b6f8ac7ff'
+  '2e6966b3d9b15603ce2c3ff79eeadd63c5d066b7')
+
+build() {
+   cd $srcdir
+
+   cp -a pyopencl-$pkgver{,-python2}
+
+   cd ${srcdir}/pyopencl-${pkgver}
+   python3 ./configure.py --cl-enable-gl --no-use-shipped-boost 
--boost-python-libname=boost_python3
+   python3 setup.py build
+
+   cd $srcdir/pyopencl-$pkgver-python2
+   python2 ./configure.py --cl-enable-gl --no-use-shipped-boost
+   python2 setup.py build
+}
+
+package_python-pyopencl() {
+   depends=('libcl' 'opencl-headers' 'mesa' 'boost' 'python' 'python-numpy' 
'python-mako' 'python-pytools' 'pyopencl-headers')
+
+   cd ${srcdir}/pyopencl-${pkgver}
+   python3 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+
+   rm -fr ${pkgdir}/usr/include
+
+   install -D -m644 ../LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_python2-pyopencl() {
+   depends=('libcl' 'opencl-headers' 'mesa' 'boost' 'python2' 'python2-numpy' 
'python2-mako' 'python2-pytools' 'pyopencl-headers')
+
+   cd ${srcdir}/pyopencl-${pkgver}-python2
+   python2 setup.py install --prefix=/usr --root=${pkgdir} --optimize=1 
--skip-build
+
+   rm -fr ${pkgdir}/usr/include
+
+   install -D -m644 ../LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+package_pyopencl-headers() {
+   cd ${srcdir}/pyopencl-${pkgver}
+   install -dm755 ${pkgdir}/usr/include/pyopencl
+
+   for file in pyopencl-bessel-j.cl pyopencl-cephes.cl pyopencl-airy.cl 
pyopencl-ranluxcl.cl pyopencl-complex.h; do
+  

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

2013-03-25 Thread Andreas Radke
Date: Monday, March 25, 2013 @ 16:43:06
  Author: andyrtr
Revision: 180670

upgpkg: vigra 1.9.0-2

boost rebuild

Modified:
  vigra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 15:37:25 UTC (rev 180669)
+++ PKGBUILD2013-03-25 15:43:06 UTC (rev 180670)
@@ -5,7 +5,7 @@
 pkgbase=vigra
 pkgname=('vigra' 'vigra-doc')
 pkgver=1.9.0
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://hci.iwr.uni-heidelberg.de/vigra/;
 license=('custom:MIT')



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

2013-03-25 Thread Andreas Radke
Date: Monday, March 25, 2013 @ 16:43:22
  Author: andyrtr
Revision: 180671

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

Added:
  vigra/repos/staging-i686/
  vigra/repos/staging-i686/PKGBUILD
(from rev 180670, vigra/trunk/PKGBUILD)
  vigra/repos/staging-i686/vigra-1.7.1.gcc460.patch
(from rev 180670, vigra/trunk/vigra-1.7.1.gcc460.patch)
  vigra/repos/staging-x86_64/
  vigra/repos/staging-x86_64/PKGBUILD
(from rev 180670, vigra/trunk/PKGBUILD)
  vigra/repos/staging-x86_64/vigra-1.7.1.gcc460.patch
(from rev 180670, vigra/trunk/vigra-1.7.1.gcc460.patch)

-+
 staging-i686/PKGBUILD   |   64 ++
 staging-i686/vigra-1.7.1.gcc460.patch   |   33 +++
 staging-x86_64/PKGBUILD |   64 ++
 staging-x86_64/vigra-1.7.1.gcc460.patch |   33 +++
 4 files changed, 194 insertions(+)

Copied: vigra/repos/staging-i686/PKGBUILD (from rev 180670, 
vigra/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-03-25 15:43:22 UTC (rev 180671)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: AndyRTR andy...@archlinux.org
+# Contributor: Lukas Jirkovsky l.jirkov...@gmail.com
+
+pkgbase=vigra
+pkgname=('vigra' 'vigra-doc')
+pkgver=1.9.0
+pkgrel=2
+arch=('i686' 'x86_64')
+url=http://hci.iwr.uni-heidelberg.de/vigra/;
+license=('custom:MIT')
+makedepends=(# runtime deps
+ 'libpng=1.5.7' 'libtiff=4.0.0' 'gcc-libs' 'sh' 'hdf5=1.8.7' 
'fftw'
+# additional makedeps
+ 'cmake' 'python2-nose' 'doxygen' 'python2-sphinx' 'boost' 
'python2-numpy')
+options=('!libtool')
+source=(http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/${pkgname}-${pkgver}-src.tar.gz)
+md5sums=('b6155afe1ea967917d2be16d98a85404')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  cmake -DCMAKE_INSTALL_PREFIX=/usr \
+  -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+  -DWITH_VIGRANUMPY=1 \
+  -DDOCINSTALL=share/doc 
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make -k check || /bin/true # i686 fails
+}
+
+package_vigra() {
+  pkgdesc=Computer vision library
+  depends=('libpng=1.5.7' 'libtiff=4.0.0' 'gcc-libs' 'sh' 'hdf5=1.8.7' 
'fftw')
+  optdepends=('python2: for python bindings'
+  'boost-libs: for python bindings')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  # license
+  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+  
+  # remove doc
+  rm -rf ${pkgdir}/usr/share/doc
+  
+  #fix shebang for python2
+  sed -i 's|python$|python2|' $pkgdir/usr/bin/vigra-config
+}
+
+package_vigra-doc() {
+  pkgdesc=Computer vision library - documentation and examples
+  #depends=('vigra')
+  #arch=('any')
+
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  # cleanup
+  rm -rf ${pkgdir}/usr/{bin,include,lib}
+
+  # license
+  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: vigra/repos/staging-i686/vigra-1.7.1.gcc460.patch (from rev 180670, 
vigra/trunk/vigra-1.7.1.gcc460.patch)
===
--- staging-i686/vigra-1.7.1.gcc460.patch   (rev 0)
+++ staging-i686/vigra-1.7.1.gcc460.patch   2013-03-25 15:43:22 UTC (rev 
180671)
@@ -0,0 +1,33 @@
+diff -baur vigra-1.7.1.old/include/vigra/random_forest.hxx 
vigra-1.7.1/include/vigra/random_forest.hxx
+--- vigra-1.7.1.old/include/vigra/random_forest.hxx2010-12-03 
17:40:34.0 +
 vigra-1.7.1/include/vigra/random_forest.hxx2011-01-28 
00:16:32.0 +
+@@ -43,6 +43,7 @@
+ #include set
+ #include list
+ #include numeric
++#include stddef.h
+ #include mathutil.hxx
+ #include array_vector.hxx
+ #include sized_int.hxx
+diff -baur vigra-1.7.1.old/include/vigra/sifImport.hxx 
vigra-1.7.1/include/vigra/sifImport.hxx
+--- vigra-1.7.1.old/include/vigra/sifImport.hxx2010-12-03 
17:40:34.0 +
 vigra-1.7.1/include/vigra/sifImport.hxx2011-01-28 00:23:31.0 
+
+@@ -57,6 +57,7 @@
+ #include fstream
+ #include cstring
+ #include vector 
++#include stddef.h
+ #include vigra/multi_array.hxx
+ 
+ namespace vigra {
+diff -baur vigra-1.7.1.old/include/vigra/multi_iterator.hxx 
vigra-1.7.1/include/vigra/multi_iterator.hxx
+--- vigra-1.7.1.old/include/vigra/multi_iterator.hxx   2010-12-03 
17:40:34.0 +
 vigra-1.7.1/include/vigra/multi_iterator.hxx   2011-01-28 
00:23:31.0 +
+@@ -41,6 +41,7 @@
+ #define VIGRA_MULTI_ITERATOR_HXX
+ 
+ #include sys/types.h
++#include stddef.h
+ #include tinyvector.hxx
+ #include iteratortags.hxx
+ 

Copied: vigra/repos/staging-x86_64/PKGBUILD (from rev 180670, 
vigra/trunk/PKGBUILD)
===
--- 

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

2013-03-25 Thread Andreas Radke
Date: Monday, March 25, 2013 @ 16:48:42
  Author: andyrtr
Revision: 180672

fix license for future builds

Modified:
  gnutls/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 15:43:22 UTC (rev 180671)
+++ PKGBUILD2013-03-25 15:48:42 UTC (rev 180672)
@@ -7,7 +7,7 @@
 pkgrel=1
 pkgdesc=A library which provides a secure layer over a reliable transport 
layer
 arch=('i686' 'x86_64')
-license=('GPL3' 'LGPL')
+license=('GPL3' 'LGPL2.1')
 url=http://www.gnutls.org/;
 install=gnutls.install
 options=('!libtool' '!zipman')



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

2013-03-25 Thread Stéphane Gaudreault
Date: Monday, March 25, 2013 @ 16:58:24
  Author: stephane
Revision: 86976

upgpkg: python-pycuda 2012.1-3

rebuild for boost 1.53

Modified:
  python-pycuda/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 15:41:12 UTC (rev 86975)
+++ PKGBUILD2013-03-25 15:58:24 UTC (rev 86976)
@@ -3,13 +3,13 @@
 pkgbase=python-pycuda
 pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
 pkgver=2012.1
-pkgrel=2
+pkgrel=3
 pkgdesc=Python wrapper for Nvidia CUDA
 arch=('i686' 'x86_64')
 url=http://mathema.tician.de/software/pycuda;
 license=('MIT')
 
source=(http://pypi.python.org/packages/source/p/pycuda/pycuda-${pkgver}.tar.gz)
-makedepends=('ctags' 'python2-distribute' 'python-distribute' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost=1.52.0' 'nvidia-utils')
+makedepends=('ctags' 'python2-distribute' 'python-distribute' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost=1.53.0' 'nvidia-utils')
 sha1sums=('dd52ee697ae9f6256efac3bca682be9c6e7c9649')
 
 build() {



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

2013-03-25 Thread Stéphane Gaudreault
Date: Monday, March 25, 2013 @ 16:59:07
  Author: stephane
Revision: 86977

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

Added:
  python-pycuda/repos/community-staging-i686/
  python-pycuda/repos/community-staging-i686/PKGBUILD
(from rev 86976, python-pycuda/trunk/PKGBUILD)
  python-pycuda/repos/community-staging-x86_64/
  python-pycuda/repos/community-staging-x86_64/PKGBUILD
(from rev 86976, python-pycuda/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   66 
 community-staging-x86_64/PKGBUILD |   66 
 2 files changed, 132 insertions(+)

Copied: python-pycuda/repos/community-staging-i686/PKGBUILD (from rev 86976, 
python-pycuda/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-03-25 15:59:07 UTC (rev 86977)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+pkgbase=python-pycuda
+pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
+pkgver=2012.1
+pkgrel=3
+pkgdesc=Python wrapper for Nvidia CUDA
+arch=('i686' 'x86_64')
+url=http://mathema.tician.de/software/pycuda;
+license=('MIT')
+source=(http://pypi.python.org/packages/source/p/pycuda/pycuda-${pkgver}.tar.gz)
+makedepends=('ctags' 'python2-distribute' 'python-distribute' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost=1.53.0' 'nvidia-utils')
+sha1sums=('dd52ee697ae9f6256efac3bca682be9c6e7c9649')
+
+build() {
+   cd ${srcdir}
+  
+   _arch=''
+   [ $CARCH = x86_64 ]  _arch='64'
+
+   cp -a pycuda-${pkgver}{,-python2}
+  
+   cd ${srcdir}/pycuda-${pkgver}
+   python3 ./configure.py \
+  --cuda-root=/opt/cuda \
+  --cuda-inc-dir=/opt/cuda/include \
+  --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
+  --cudart-lib-dir=/opt/cuda/lib${_arch} \
+  --no-use-shipped-boost \
+  --boost-python-libname=boost_python3
+   make
+
+   cd ${srcdir}/pycuda-${pkgver}-python2
+   python2 ./configure.py \
+  --cuda-root=/opt/cuda \
+  --cuda-inc-dir=/opt/cuda/include \
+  --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
+  --cudart-lib-dir=/opt/cuda/lib${_arch} \
+  --no-use-shipped-boost
+   make
+}
+
+package_python-pycuda() {
+   depends=('cuda' 'nvidia-utils' 'python-numpy' 'python-pytools' 'python' 
'boost-libs' 'pycuda-headers')
+   cd ${srcdir}/pycuda-${pkgver}
+   python3 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
+
+   rm -fr ${pkgdir}/usr/include   
+}
+
+package_python2-pycuda() {
+   depends=('cuda' 'nvidia-utils' 'python2-numpy' 'python2-pytools' 'python2' 
'boost-libs' 'pycuda-headers')
+   cd ${srcdir}/pycuda-${pkgver}-python2
+   python2 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
+
+   rm -fr ${pkgdir}/usr/include   
+}
+
+package_pycuda-headers() {
+   cd ${srcdir}/pycuda-${pkgver}
+   install -dm755 ${pkgdir}/usr/include/pycuda
+
+   for file in $(ls -1 src/cuda/*.hpp); do
+  install -m644 ${file} ${pkgdir}/usr/include/pycuda
+   done
+}

Copied: python-pycuda/repos/community-staging-x86_64/PKGBUILD (from rev 86976, 
python-pycuda/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-03-25 15:59:07 UTC (rev 86977)
@@ -0,0 +1,66 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+pkgbase=python-pycuda
+pkgname=('python-pycuda' 'python2-pycuda' 'pycuda-headers')
+pkgver=2012.1
+pkgrel=3
+pkgdesc=Python wrapper for Nvidia CUDA
+arch=('i686' 'x86_64')
+url=http://mathema.tician.de/software/pycuda;
+license=('MIT')
+source=(http://pypi.python.org/packages/source/p/pycuda/pycuda-${pkgver}.tar.gz)
+makedepends=('ctags' 'python2-distribute' 'python-distribute' 'python2-numpy' 
'python-numpy' 'mesa' 'cuda' 'boost=1.53.0' 'nvidia-utils')
+sha1sums=('dd52ee697ae9f6256efac3bca682be9c6e7c9649')
+
+build() {
+   cd ${srcdir}
+  
+   _arch=''
+   [ $CARCH = x86_64 ]  _arch='64'
+
+   cp -a pycuda-${pkgver}{,-python2}
+  
+   cd ${srcdir}/pycuda-${pkgver}
+   python3 ./configure.py \
+  --cuda-root=/opt/cuda \
+  --cuda-inc-dir=/opt/cuda/include \
+  --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
+  --cudart-lib-dir=/opt/cuda/lib${_arch} \
+  --no-use-shipped-boost \
+  --boost-python-libname=boost_python3
+   make
+
+   cd ${srcdir}/pycuda-${pkgver}-python2
+   python2 ./configure.py \
+  --cuda-root=/opt/cuda \
+  --cuda-inc-dir=/opt/cuda/include \
+  --cudadrv-lib-dir=/opt/cuda/lib${_arch} \
+  

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

2013-03-25 Thread Sergej Pupykin
Date: Monday, March 25, 2013 @ 17:00:45
  Author: spupykin
Revision: 86978

upgpkg: q4wine 1.0_r2-1

Modified:
  q4wine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 15:59:07 UTC (rev 86977)
+++ PKGBUILD2013-03-25 16:00:45 UTC (rev 86978)
@@ -3,8 +3,8 @@
 # Contributor: Chris Giles Chris.G.27 (at) Gmail.com
 
 pkgname=q4wine
-pkgver=1.0_r1
-pkgrel=2
+pkgver=1.0_r2
+pkgrel=1
 pkgdesc=A Qt4 GUI for Wine
 arch=(i686 x86_64)
 url=http://sourceforge.net/projects/${pkgname}/;
@@ -14,7 +14,7 @@
 optdepends=(winetricks fuseiso)
 options=('!emptydirs')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver/_/-}.tar.bz2)
-md5sums=('9cee53cbeea515f7162b76ba8b12cae6')
+md5sums=('0f559a169cfa96d76f36ea177004d64e')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver/_/-}



[arch-commits] Commit in q4wine/repos/community-i686 (4 files)

2013-03-25 Thread Sergej Pupykin
Date: Monday, March 25, 2013 @ 17:00:59
  Author: spupykin
Revision: 86979

archrelease: copy trunk to community-i686

Added:
  q4wine/repos/community-i686/PKGBUILD
(from rev 86978, q4wine/trunk/PKGBUILD)
  q4wine/repos/community-i686/q4wine.desktop
(from rev 86978, q4wine/trunk/q4wine.desktop)
Deleted:
  q4wine/repos/community-i686/PKGBUILD
  q4wine/repos/community-i686/q4wine.desktop

+
 PKGBUILD   |   62 +++
 q4wine.desktop |   36 +++
 2 files changed, 49 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-25 16:00:45 UTC (rev 86978)
+++ PKGBUILD2013-03-25 16:00:59 UTC (rev 86979)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Chris Giles Chris.G.27 (at) Gmail.com
-
-pkgname=q4wine
-pkgver=1.0_r1
-pkgrel=2
-pkgdesc=A Qt4 GUI for Wine
-arch=(i686 x86_64)
-url=http://sourceforge.net/projects/${pkgname}/;
-license=(GPL3)
-depends=(qt4 wine sqlite3 which icoutils)
-makedepends=(cmake)
-optdepends=(winetricks fuseiso)
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver/_/-}.tar.bz2)
-md5sums=('9cee53cbeea515f7162b76ba8b12cae6')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver/_/-}
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_WINETRIKS=ON \
--DLIBS_ENTRY_PATH=/usr/lib/$pkgname .
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver/_/-}
-  make DESTDIR=${pkgdir} install
-}

Copied: q4wine/repos/community-i686/PKGBUILD (from rev 86978, 
q4wine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-25 16:00:59 UTC (rev 86979)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Chris Giles Chris.G.27 (at) Gmail.com
+
+pkgname=q4wine
+pkgver=1.0_r2
+pkgrel=1
+pkgdesc=A Qt4 GUI for Wine
+arch=(i686 x86_64)
+url=http://sourceforge.net/projects/${pkgname}/;
+license=(GPL3)
+depends=(qt4 wine sqlite3 which icoutils)
+makedepends=(cmake)
+optdepends=(winetricks fuseiso)
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver/_/-}.tar.bz2)
+md5sums=('0f559a169cfa96d76f36ea177004d64e')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver/_/-}
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_WINETRIKS=ON \
+-DLIBS_ENTRY_PATH=/usr/lib/$pkgname .
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver/_/-}
+  make DESTDIR=${pkgdir} install
+}

Deleted: q4wine.desktop
===
--- q4wine.desktop  2013-03-25 16:00:45 UTC (rev 86978)
+++ q4wine.desktop  2013-03-25 16:00:59 UTC (rev 86979)
@@ -1,18 +0,0 @@
-[Desktop Entry]
-Name=Q4Wine
-GenericName=A Qt4 GUI for Wine
-Comment=A Qt4 GUI for Wine
-#Version=0.1
-Type=Application
-Categories=KDE;Qt;Settings
-Terminal=false
-Encoding=UTF-8
-Icon=wine
-Exec=q4wine
-#ServiceTypes=inode/directory
-#Actions=Create;
-#X-KDE-Submenu=
-#X-KDE-Priority=TopLevel
-#X-KDE-Icon=tgz
-X-KDE-StartupNotify=true
-#X-DCOP-ServiceType=Unique

Copied: q4wine/repos/community-i686/q4wine.desktop (from rev 86978, 
q4wine/trunk/q4wine.desktop)
===
--- q4wine.desktop  (rev 0)
+++ q4wine.desktop  2013-03-25 16:00:59 UTC (rev 86979)
@@ -0,0 +1,18 @@
+[Desktop Entry]
+Name=Q4Wine
+GenericName=A Qt4 GUI for Wine
+Comment=A Qt4 GUI for Wine
+#Version=0.1
+Type=Application
+Categories=KDE;Qt;Settings
+Terminal=false
+Encoding=UTF-8
+Icon=wine
+Exec=q4wine
+#ServiceTypes=inode/directory
+#Actions=Create;
+#X-KDE-Submenu=
+#X-KDE-Priority=TopLevel
+#X-KDE-Icon=tgz
+X-KDE-StartupNotify=true
+#X-DCOP-ServiceType=Unique



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

2013-03-25 Thread Stéphane Gaudreault
Date: Monday, March 25, 2013 @ 17:02:13
  Author: stephane
Revision: 86980

Add chromaprint to dependencies (Fix FS#34120)

Modified:
  clementine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 16:00:59 UTC (rev 86979)
+++ PKGBUILD2013-03-25 16:02:13 UTC (rev 86980)
@@ -11,7 +11,7 @@
 license=('GPL')
 arch=('i686' 'x86_64')
 depends=('gstreamer0.10-base' 'taglib' 'glew' 'liblastfm' 'libgpod' 'projectm'
- 'libmtp' 'libplist' 'hicolor-icon-theme' 'qt4' 'libimobiledevice'
+ 'libmtp' 'libplist' 'hicolor-icon-theme' 'qt4' 'libimobiledevice' 
'chromaprint'
  'sparsehash' 'qjson' 'libcdio-paranoia' 'protobuf' 'qca' 'qca-ossl' 
'gvfs')
 makedepends=('cmake' 'boost' 'mesa-libgl' )
 optdepends=('gstreamer0.10-base-plugins: for more open formats'



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

2013-03-25 Thread Felix Yan
Date: Monday, March 25, 2013 @ 17:09:57
  Author: fyan
Revision: 86981

upgpkg: mongodb 2.4.1-2 boost 1.53.0 rebuild

Modified:
  mongodb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 16:02:13 UTC (rev 86980)
+++ PKGBUILD2013-03-25 16:09:57 UTC (rev 86981)
@@ -7,7 +7,7 @@
 
 pkgname=mongodb
 pkgver=2.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A high-performance, open source, schema-free document-oriented 
database'
 arch=('i686' 'x86_64')
 url='http://www.mongodb.org'



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

2013-03-25 Thread Felix Yan
Date: Monday, March 25, 2013 @ 17:11:04
  Author: fyan
Revision: 86982

upgpkg: librime 0.9.8-2 boost 1.53.0 rebuild

Modified:
  librime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 16:09:57 UTC (rev 86981)
+++ PKGBUILD2013-03-25 16:11:04 UTC (rev 86982)
@@ -5,7 +5,7 @@
 
 pkgname=librime
 pkgver=0.9.8
-pkgrel=1
+pkgrel=2
 pkgdesc=Rime input method engine
 arch=('i686' 'x86_64')
 url=http://code.google.com/p/rimeime/;



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

2013-03-25 Thread Felix Yan
Date: Monday, March 25, 2013 @ 17:13:16
  Author: fyan
Revision: 86983

upgpkg: librime 0.9.8-2 boost 1.53.0 rebuild

Modified:
  librime/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 16:11:04 UTC (rev 86982)
+++ PKGBUILD2013-03-25 16:13:16 UTC (rev 86983)
@@ -10,7 +10,7 @@
 arch=('i686' 'x86_64')
 url=http://code.google.com/p/rimeime/;
 license=('GPL3')
-depends=('boost' 'google-glog' 'kyotocabinet' 'opencc' 'yaml-cpp0.3')
+depends=('boost' 'google-glog' 'kyotocabinet' 'opencc' 'yaml-cpp')
 optdepends=('brise: Rime schema repository')
 makedepends=('cmake')
 source=(http://rimeime.googlecode.com/files/$pkgname-$pkgver.tar.gz;)



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

2013-03-25 Thread Felix Yan
Date: Monday, March 25, 2013 @ 17:15:15
  Author: fyan
Revision: 86984

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

Added:
  librime/repos/community-staging-i686/
  librime/repos/community-staging-i686/PKGBUILD
(from rev 86983, librime/trunk/PKGBUILD)
  librime/repos/community-staging-x86_64/
  librime/repos/community-staging-x86_64/PKGBUILD
(from rev 86983, librime/trunk/PKGBUILD)

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

Copied: librime/repos/community-staging-i686/PKGBUILD (from rev 86983, 
librime/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-03-25 16:15:15 UTC (rev 86984)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: GONG Chen chen dot sst at gmail dot com
+# Contributor: 網軍總司令
+
+pkgname=librime
+pkgver=0.9.8
+pkgrel=2
+pkgdesc=Rime input method engine
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/rimeime/;
+license=('GPL3')
+depends=('boost' 'google-glog' 'kyotocabinet' 'opencc' 'yaml-cpp')
+optdepends=('brise: Rime schema repository')
+makedepends=('cmake')
+source=(http://rimeime.googlecode.com/files/$pkgname-$pkgver.tar.gz;)
+
+build() {
+  cd ${srcdir}/$pkgname
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname
+  make DESTDIR=$pkgdir install
+}
+
+md5sums=('2ef61458bd5b08652ae0ca190af072ba')

Copied: librime/repos/community-staging-x86_64/PKGBUILD (from rev 86983, 
librime/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2013-03-25 16:15:15 UTC (rev 86984)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: GONG Chen chen dot sst at gmail dot com
+# Contributor: 網軍總司令
+
+pkgname=librime
+pkgver=0.9.8
+pkgrel=2
+pkgdesc=Rime input method engine
+arch=('i686' 'x86_64')
+url=http://code.google.com/p/rimeime/;
+license=('GPL3')
+depends=('boost' 'google-glog' 'kyotocabinet' 'opencc' 'yaml-cpp')
+optdepends=('brise: Rime schema repository')
+makedepends=('cmake')
+source=(http://rimeime.googlecode.com/files/$pkgname-$pkgver.tar.gz;)
+
+build() {
+  cd ${srcdir}/$pkgname
+  make
+}
+
+package() {
+  cd ${srcdir}/$pkgname
+  make DESTDIR=$pkgdir install
+}
+
+md5sums=('2ef61458bd5b08652ae0ca190af072ba')



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

2013-03-25 Thread Andrea Scarpino
Date: Monday, March 25, 2013 @ 17:17:52
  Author: andrea
Revision: 180673

upgpkg: xsd 3.3.0-8

boost rebuild

Modified:
  xsd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 15:48:42 UTC (rev 180672)
+++ PKGBUILD2013-03-25 16:17:52 UTC (rev 180673)
@@ -5,7 +5,7 @@
 pkgname=xsd
 pkgver=3.3.0
 _pkgver=3.3.0-2+dep
-pkgrel=7
+pkgrel=8
 pkgdesc=An open-source, cross-platform W3C XML Schema to C++ data binding 
compiler
 arch=('i686' 'x86_64')
 url=http://www.codesynthesis.com/products/xsd;



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

2013-03-25 Thread Andrea Scarpino
Date: Monday, March 25, 2013 @ 17:17:58
  Author: andrea
Revision: 180674

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

Added:
  xsd/repos/staging-i686/
  xsd/repos/staging-i686/PKGBUILD
(from rev 180673, xsd/trunk/PKGBUILD)
  xsd/repos/staging-i686/xsdcxx.patch
(from rev 180673, xsd/trunk/xsdcxx.patch)
  xsd/repos/staging-x86_64/
  xsd/repos/staging-x86_64/PKGBUILD
(from rev 180673, xsd/trunk/PKGBUILD)
  xsd/repos/staging-x86_64/xsdcxx.patch
(from rev 180673, xsd/trunk/xsdcxx.patch)

-+
 staging-i686/PKGBUILD   |   34 +++
 staging-i686/xsdcxx.patch   |  128 ++
 staging-x86_64/PKGBUILD |   34 +++
 staging-x86_64/xsdcxx.patch |  128 ++
 4 files changed, 324 insertions(+)

Copied: xsd/repos/staging-i686/PKGBUILD (from rev 180673, xsd/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-03-25 16:17:58 UTC (rev 180674)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer:
+# Contributor: kevku ke...@gmx.com
+
+pkgname=xsd
+pkgver=3.3.0
+_pkgver=3.3.0-2+dep
+pkgrel=8
+pkgdesc=An open-source, cross-platform W3C XML Schema to C++ data binding 
compiler
+arch=('i686' 'x86_64')
+url=http://www.codesynthesis.com/products/xsd;
+license=('GPL2')
+depends=('boost-libs' 'xerces-c')
+makedepends=('boost')
+source=(http://www.codesynthesis.com/download/${pkgname}/3.3/${pkgname}-${_pkgver}.tar.bz2;
+xsdcxx.patch)
+sha1sums=('1c9de9271f589b8ecf2be18f2e9ac87330fc8281'
+  '8f7ca8bf0440b30d8f5823e0f528db19810706f2')
+
+build() {
+  cd ${pkgname}-${_pkgver}
+  patch -p0 -i ${srcdir}/xsdcxx.patch
+
+  make CXXFLAGS=${CXXFLAGS}
+}
+
+package() {
+  cd ${pkgname}-${_pkgver}
+  make install_prefix=$pkgdir/usr install
+
+  # Fix conflicts with mono
+  mv ${pkgdir}/usr/bin/xsd{,cxx}
+  mv ${pkgdir}/usr/share/man/man1/xsd{,cxx}.1
+}

Copied: xsd/repos/staging-i686/xsdcxx.patch (from rev 180673, 
xsd/trunk/xsdcxx.patch)
===
--- staging-i686/xsdcxx.patch   (rev 0)
+++ staging-i686/xsdcxx.patch   2013-03-25 16:17:58 UTC (rev 180674)
@@ -0,0 +1,128 @@
+diff -up xsd/documentation/xsd.1.rename xsd/documentation/xsd.1
+--- xsd/documentation/xsd.1.rename 2010-06-20 15:45:31.0 +0300
 xsd/documentation/xsd.12010-06-20 15:46:24.0 +0300
+@@ -1,16 +1,16 @@
+ .\ Process this file with
+-.\ groff -man -Tascii xsd.1
++.\ groff -man -Tascii xsdcxx.1
+ .\
+ .TH XSD 1 April 2010 XSD 3.3.0
+ .SH NAME
+-xsd \- W3C XML Schema to C++ Compiler
++xsdcxx \- W3C XML Schema to C++ Compiler
+ .\
+ .\
+ .\
+ .\
+ .SH SYNOPSIS
+ .\
+-.B xsd
++.B xsdcxx
+ .I command
+ .B [
+ .I options
+@@ -20,19 +20,19 @@ xsd \- W3C XML Schema to C++ Compiler
+ .I file
+ .B ...]
+ .in
+-.B xsd help
++.B xsdcxx help
+ .B [
+ .I command
+ .B ]
+ .in
+-.B xsd version
++.B xsdcxx version
+ .\
+ .\
+ .\
+ .\
+ .SH DESCRIPTION
+ .\
+-.B xsd
++.B xsdcxx
+ generates vocabulary-specific, statically-typed C++ mapping from W3C XML
+ Schema definitions. Particular mapping to produce is selected by a
+ .IR command .
+@@ -96,7 +96,7 @@ Print usage information and exit. Use
+ .PP
+ .RS
+ .RS 3
+-.B xsd help
++.B xsdcxx help
+ .I command
+ .RE
+ .PP
+@@ -203,7 +203,7 @@ For example, if you have file
+ with namespace
+ .B http://example.com/hello
+ and you run
+-.B xsd
++.B xsdcxx
+ on this file, then the string in question will be:
+ 
+ .B hello.xsd. http://example.com/hello
+@@ -1877,7 +1877,7 @@ option. With this approach you don't nee
+ .\
+ .SH DIAGNOSTICS
+ If the input file is not a valid W3C XML Schema definition,
+-.B xsd
++.B xsdcxx
+ will issue diagnostic messages to
+ .B STDERR
+ and exit with non-zero exit code.
+diff -up xsd/documentation/xsd.xhtml.rename xsd/documentation/xsd.xhtml
+--- xsd/documentation/xsd.xhtml.rename 2010-06-20 15:47:29.0 +0300
 xsd/documentation/xsd.xhtml2010-06-20 15:47:30.0 +0300
+@@ -50,19 +50,19 @@
+ 
+   h1NAME/h1
+ 
+-  pxsd - W3C XML Schema to C++ Compiler/p
++  pxsdcxx - W3C XML Schema to C++ Compiler/p
+ 
+   h1SYNOPSIS/h1
+ 
+   dl id=synopsis
+-dtcodebxsd/b icommand/i [ioptions/i] ifile/i 
[ifile/i ...]/code/dt
+-dtcodebxsd help/b [icommand/i]/code/dt
+-dtcodebxsd version/b/code/dt
++dtcodebxsdcxx/b icommand/i [ioptions/i] ifile/i 
[ifile/i ...]/code/dt
++dtcodebxsdcxx help/b [icommand/i]/code/dt
++dtcodebxsdcxx version/b/code/dt
+   /dl
+ 
+   h1DESCRIPTION/h1
+ 
+-  pcodebxsd/b/code generates vocabulary-specific, 

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

2013-03-25 Thread Felix Yan
Date: Monday, March 25, 2013 @ 17:25:50
  Author: fyan
Revision: 86985

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

Added:
  mongodb/repos/community-staging-i686/
  mongodb/repos/community-staging-i686/PKGBUILD
(from rev 86984, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-staging-i686/SConscript.client.patch
(from rev 86984, mongodb/trunk/SConscript.client.patch)
  mongodb/repos/community-staging-i686/mongodb.conf
(from rev 86984, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-staging-i686/mongodb.install
(from rev 86984, mongodb/trunk/mongodb.install)
  mongodb/repos/community-staging-i686/mongodb.service
(from rev 86984, mongodb/trunk/mongodb.service)
  mongodb/repos/community-staging-i686/removeWerror.patch
(from rev 86984, mongodb/trunk/removeWerror.patch)
  mongodb/repos/community-staging-x86_64/
  mongodb/repos/community-staging-x86_64/PKGBUILD
(from rev 86984, mongodb/trunk/PKGBUILD)
  mongodb/repos/community-staging-x86_64/SConscript.client.patch
(from rev 86984, mongodb/trunk/SConscript.client.patch)
  mongodb/repos/community-staging-x86_64/mongodb.conf
(from rev 86984, mongodb/trunk/mongodb.conf)
  mongodb/repos/community-staging-x86_64/mongodb.install
(from rev 86984, mongodb/trunk/mongodb.install)
  mongodb/repos/community-staging-x86_64/mongodb.service
(from rev 86984, mongodb/trunk/mongodb.service)
  mongodb/repos/community-staging-x86_64/removeWerror.patch
(from rev 86984, mongodb/trunk/removeWerror.patch)

--+
 community-staging-i686/PKGBUILD  |   71 +
 community-staging-i686/SConscript.client.patch   |   13 +++
 community-staging-i686/mongodb.conf  |8 ++
 community-staging-i686/mongodb.install   |   32 +
 community-staging-i686/mongodb.service   |   10 ++
 community-staging-i686/removeWerror.patch|   11 +++
 community-staging-x86_64/PKGBUILD|   71 +
 community-staging-x86_64/SConscript.client.patch |   13 +++
 community-staging-x86_64/mongodb.conf|8 ++
 community-staging-x86_64/mongodb.install |   32 +
 community-staging-x86_64/mongodb.service |   10 ++
 community-staging-x86_64/removeWerror.patch  |   11 +++
 12 files changed, 290 insertions(+)

Copied: mongodb/repos/community-staging-i686/PKGBUILD (from rev 86984, 
mongodb/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-03-25 16:25:50 UTC (rev 86985)
@@ -0,0 +1,71 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@gmail.com
+# Contributor: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Thomas Dziedzic  gostrc at gmail 
+# Contributor: Mathias Stearn math...@10gen.com
+# Contributor: Alec Thomas
+
+pkgname=mongodb
+pkgver=2.4.1
+pkgrel=2
+pkgdesc='A high-performance, open source, schema-free document-oriented 
database'
+arch=('i686' 'x86_64')
+url='http://www.mongodb.org'
+license=('AGPL3')
+depends=('boost-libs')
+makedepends=('scons' 'boost' 'libpcap')
+checkdepends=('python2-pymongo')
+optdepends=('libpcap: needed for mongosniff')
+backup=('etc/mongodb.conf')
+install=mongodb.install
+source=(http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz;
+'mongodb.conf' 'mongodb.service' 'SConscript.client.patch'
+'removeWerror.patch')
+
+build() {
+  # fucking mongo aint no fun to package
+  export SCONSFLAGS=$MAKEFLAGS
+
+  cd mongodb-src-r${pkgver}
+
+  # fix https://jira.mongodb.org/browse/SERVER-5575
+  patch -Np1 -i ${srcdir}/SConscript.client.patch
+
+  # failed to build with -Werror since 2.4.0
+  patch -Np1 -i $srcdir/removeWerror.patch
+
+  scons all --use-system-boost # --sharedclient currently fails
+}
+
+COMMENT
+check() {
+  export SCONSFLAGS=$MAKEFLAGS
+
+  cd mongodb-src-r${pkgver}
+
+  scons smokeAll --smokedbprefix=$srcdir
+}
+COMMENT
+
+package() {
+  export SCONSFLAGS=$MAKEFLAGS
+
+  cd mongodb-src-r${pkgver}
+
+  scons install --use-system-boost --full --prefix=$pkgdir/usr # 
--sharedclient currently fails
+
+  install -Dm644 $srcdir/mongodb.conf $pkgdir/etc/mongodb.conf
+  [[ -f $pkgdir/usr/lib ]]  rm $pkgdir/usr/lib # wtf mongo
+  install -Dm644 $srcdir/mongodb.service 
$pkgdir/usr/lib/systemd/system/mongodb.service
+  install -dm700 $pkgdir/var/lib/mongodb
+  install -dm755 $pkgdir/var/log/mongodb
+
+  # the earlier SConscript patch actually gives us some trouble on x86_64 so 
we need to hack it out again
+  mv ${pkgdir}/usr/lib64/libmongoclient.a ${pkgdir}/usr/lib/ || true
+  rm -r ${pkgdir}/usr/lib64 || true
+}
+md5sums=('2123758b166144947860b2af490996c1'
+ '4839fe1d638187ca3226e8267b947318'
+ '96ab4517b48974ce0e566d9746a75a4f'
+ 'a9529e2a6e392ffecef7a9178394c814'
+ 'c980ebfe46df6dc87f4b3380af69a6cc')


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

2013-03-25 Thread Sergej Pupykin
Date: Monday, March 25, 2013 @ 18:04:20
  Author: spupykin
Revision: 86986

upgpkg: opendkim 2.8.1-1

upd

Modified:
  opendkim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 16:25:50 UTC (rev 86985)
+++ PKGBUILD2013-03-25 17:04:20 UTC (rev 86986)
@@ -3,7 +3,7 @@
 # Maintainer: Thomas Jost schno...@schnouki.net
 
 pkgname=opendkim
-pkgver=2.8.0
+pkgver=2.8.1
 pkgrel=1
 pkgdesc=An open source implementation of the DKIM sender authentication 
system. Based on a fork of dkim-milter.
 arch=(i686 x86_64)
@@ -18,7 +18,7 @@
opendkim.conf
opendkim.rc
opendkim.service)
-md5sums=('53bd811c6577235bd008f632e7f63dae'
+md5sums=('6c9810e343414f49ad7fee313f02a0a7'
  '3e2bb1058ac0662f01e675aa6ac7ee8f'
  '093f5c098a45cc68753f97e45a5b374c'
  'bc1b73856bc1941faaa4842e00437cb5')



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

2013-03-25 Thread Sergej Pupykin
Date: Monday, March 25, 2013 @ 18:04:53
  Author: spupykin
Revision: 86987

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

Added:
  opendkim/repos/community-i686/PKGBUILD
(from rev 86986, opendkim/trunk/PKGBUILD)
  opendkim/repos/community-i686/opendkim.conf
(from rev 86986, opendkim/trunk/opendkim.conf)
  opendkim/repos/community-i686/opendkim.install
(from rev 86986, opendkim/trunk/opendkim.install)
  opendkim/repos/community-i686/opendkim.rc
(from rev 86986, opendkim/trunk/opendkim.rc)
  opendkim/repos/community-i686/opendkim.service
(from rev 86986, opendkim/trunk/opendkim.service)
  opendkim/repos/community-x86_64/PKGBUILD
(from rev 86986, opendkim/trunk/PKGBUILD)
  opendkim/repos/community-x86_64/opendkim.conf
(from rev 86986, opendkim/trunk/opendkim.conf)
  opendkim/repos/community-x86_64/opendkim.install
(from rev 86986, opendkim/trunk/opendkim.install)
  opendkim/repos/community-x86_64/opendkim.rc
(from rev 86986, opendkim/trunk/opendkim.rc)
  opendkim/repos/community-x86_64/opendkim.service
(from rev 86986, opendkim/trunk/opendkim.service)
Deleted:
  opendkim/repos/community-i686/PKGBUILD
  opendkim/repos/community-i686/opendkim.conf
  opendkim/repos/community-i686/opendkim.install
  opendkim/repos/community-i686/opendkim.rc
  opendkim/repos/community-i686/opendkim.service
  opendkim/repos/community-x86_64/PKGBUILD
  opendkim/repos/community-x86_64/opendkim.conf
  opendkim/repos/community-x86_64/opendkim.install
  opendkim/repos/community-x86_64/opendkim.rc
  opendkim/repos/community-x86_64/opendkim.service

---+
 /PKGBUILD |  118 
 /opendkim.conf|2 
 /opendkim.install |   22 ++
 /opendkim.rc  |   78 +++
 /opendkim.service |   22 ++
 community-i686/PKGBUILD   |   59 --
 community-i686/opendkim.conf  |1 
 community-i686/opendkim.install   |   11 ---
 community-i686/opendkim.rc|   39 ---
 community-i686/opendkim.service   |   11 ---
 community-x86_64/PKGBUILD |   59 --
 community-x86_64/opendkim.conf|1 
 community-x86_64/opendkim.install |   11 ---
 community-x86_64/opendkim.rc  |   39 ---
 community-x86_64/opendkim.service |   11 ---
 15 files changed, 242 insertions(+), 242 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-25 17:04:20 UTC (rev 86986)
+++ community-i686/PKGBUILD 2013-03-25 17:04:53 UTC (rev 86987)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Thomas Jost schno...@schnouki.net
-
-pkgname=opendkim
-pkgver=2.8.0
-pkgrel=1
-pkgdesc=An open source implementation of the DKIM sender authentication 
system. Based on a fork of dkim-milter.
-arch=(i686 x86_64)
-url=http://www.opendkim.org/;
-license=('BSD' 'custom:Sendmail')
-depends=(db openssl)
-makedepends=(libmilter)
-options=(!libtool !emptydirs)
-backup=(etc/conf.d/opendkim)
-install=opendkim.install
-source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz
-   opendkim.conf
-   opendkim.rc
-   opendkim.service)
-md5sums=('53bd811c6577235bd008f632e7f63dae'
- '3e2bb1058ac0662f01e675aa6ac7ee8f'
- '093f5c098a45cc68753f97e45a5b374c'
- 'bc1b73856bc1941faaa4842e00437cb5')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --with-db
-  make
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir/ install
-
-  # Sample configuration
-  mkdir -p $pkgdir/etc/opendkim
-  mv $pkgdir/usr/share/doc/opendkim/opendkim.conf.sample 
$pkgdir/etc/opendkim/opendkim.conf.sample
-  chmod 0700 $pkgdir/etc/opendkim
-  chmod 0600 $pkgdir/etc/opendkim/opendkim.conf.sample
-
-  # Init script
-  install -Dm644 $srcdir/opendkim.conf $pkgdir/etc/conf.d/opendkim
-  install -Dm755 $srcdir/opendkim.rc $pkgdir/etc/rc.d/opendkim
-
-  # License
-  mkdir -p $pkgdir/usr/share/licenses/opendkim
-  for f in LICENSE LICENSE.Sendmail; do
-ln -s ../../doc/opendkim/$f $pkgdir/usr/share/licenses/opendkim/$f
-  done
-
-  install -Dm0644 $srcdir/$pkgname.service 
$pkgdir/usr/lib/systemd/system/$pkgname.service
-}

Copied: opendkim/repos/community-i686/PKGBUILD (from rev 86986, 
opendkim/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-25 17:04:53 UTC (rev 86987)
@@ -0,0 +1,59 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Thomas Jost schno...@schnouki.net
+
+pkgname=opendkim
+pkgver=2.8.1
+pkgrel=1
+pkgdesc=An open source implementation of the DKIM 

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

2013-03-25 Thread Sergej Pupykin
Date: Monday, March 25, 2013 @ 18:04:58
  Author: spupykin
Revision: 86988

upgpkg: tea 35.0.0-1

upd

Modified:
  tea/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 17:04:53 UTC (rev 86987)
+++ PKGBUILD2013-03-25 17:04:58 UTC (rev 86988)
@@ -6,8 +6,8 @@
 # Contributor: Zsolt Varadi sysop_...@fibermail.hu
 
 pkgname=tea
-pkgver=34.0.1
-pkgrel=2
+pkgver=35.0.0
+pkgrel=1
 pkgdesc=A QT-based text editor for Linux and *BSD. With an ultimate small 
size TEA provides you hundreds of functions.
 arch=('i686' 'x86_64')
 url=http://tea-editor.sourceforge.net/;
@@ -16,7 +16,7 @@
 install=tea.install
 
source=(http://downloads.sourceforge.net/project/tea-editor/tea-editor/$pkgver/tea-$pkgver.tar.bz2
 tea.desktop)
-md5sums=('4fcc661b7898d01f58b8734395f5bdda'
+md5sums=('aabbbac2b5251e7c3eeb36d8f188d08a'
  '377ace3363124f4c086de0babb820761')
 
 build() {



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

2013-03-25 Thread Sergej Pupykin
Date: Monday, March 25, 2013 @ 18:05:20
  Author: spupykin
Revision: 86989

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

Added:
  tea/repos/community-i686/PKGBUILD
(from rev 86988, tea/trunk/PKGBUILD)
  tea/repos/community-i686/tea.desktop
(from rev 86988, tea/trunk/tea.desktop)
  tea/repos/community-i686/tea.install
(from rev 86988, tea/trunk/tea.install)
  tea/repos/community-x86_64/PKGBUILD
(from rev 86988, tea/trunk/PKGBUILD)
  tea/repos/community-x86_64/tea.desktop
(from rev 86988, tea/trunk/tea.desktop)
  tea/repos/community-x86_64/tea.install
(from rev 86988, tea/trunk/tea.install)
Deleted:
  tea/repos/community-i686/PKGBUILD
  tea/repos/community-i686/tea.desktop
  tea/repos/community-i686/tea.install
  tea/repos/community-x86_64/PKGBUILD
  tea/repos/community-x86_64/tea.desktop
  tea/repos/community-x86_64/tea.install

--+
 /PKGBUILD|   68 +
 /tea.desktop |   20 
 /tea.install |8 
 community-i686/PKGBUILD  |   34 
 community-i686/tea.desktop   |   10 --
 community-i686/tea.install   |4 --
 community-x86_64/PKGBUILD|   34 
 community-x86_64/tea.desktop |   10 --
 community-x86_64/tea.install |4 --
 9 files changed, 96 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-03-25 17:04:58 UTC (rev 86988)
+++ community-i686/PKGBUILD 2013-03-25 17:05:20 UTC (rev 86989)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Roman Kyrylych ro...@archlinux.org
-# Contributor: Michal Kaliszka desm...@gmail.com
-# Contributor: Zsolt Varadi sysop_...@fibermail.hu
-
-pkgname=tea
-pkgver=34.0.1
-pkgrel=2
-pkgdesc=A QT-based text editor for Linux and *BSD. With an ultimate small 
size TEA provides you hundreds of functions.
-arch=('i686' 'x86_64')
-url=http://tea-editor.sourceforge.net/;
-license=('GPL')
-depends=('qt4' 'aspell' 'hunspell')
-install=tea.install
-source=(http://downloads.sourceforge.net/project/tea-editor/tea-editor/$pkgver/tea-$pkgver.tar.bz2
-tea.desktop)
-md5sums=('4fcc661b7898d01f58b8734395f5bdda'
- '377ace3363124f4c086de0babb820761')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i 's|i + j|(int)(i + j)|' textproc.cpp
-  qmake PREFIX=/usr/bin
-  make
-}
-
-package(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make INSTALL_ROOT=${pkgdir} install
-  install -Dm644 ${srcdir}/tea.desktop 
${pkgdir}/usr/share/applications/tea.desktop
-  install -Dm644 icons/tea_icon_v2.png ${pkgdir}/usr/share/pixmaps/tea.png
-}

Copied: tea/repos/community-i686/PKGBUILD (from rev 86988, tea/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-03-25 17:05:20 UTC (rev 86989)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Michal Kaliszka desm...@gmail.com
+# Contributor: Zsolt Varadi sysop_...@fibermail.hu
+
+pkgname=tea
+pkgver=35.0.0
+pkgrel=1
+pkgdesc=A QT-based text editor for Linux and *BSD. With an ultimate small 
size TEA provides you hundreds of functions.
+arch=('i686' 'x86_64')
+url=http://tea-editor.sourceforge.net/;
+license=('GPL')
+depends=('qt4' 'aspell' 'hunspell')
+install=tea.install
+source=(http://downloads.sourceforge.net/project/tea-editor/tea-editor/$pkgver/tea-$pkgver.tar.bz2
+tea.desktop)
+md5sums=('aabbbac2b5251e7c3eeb36d8f188d08a'
+ '377ace3363124f4c086de0babb820761')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i 's|i + j|(int)(i + j)|' textproc.cpp
+  qmake PREFIX=/usr/bin
+  make
+}
+
+package(){
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make INSTALL_ROOT=${pkgdir} install
+  install -Dm644 ${srcdir}/tea.desktop 
${pkgdir}/usr/share/applications/tea.desktop
+  install -Dm644 icons/tea_icon_v2.png ${pkgdir}/usr/share/pixmaps/tea.png
+}

Deleted: community-i686/tea.desktop
===
--- community-i686/tea.desktop  2013-03-25 17:04:58 UTC (rev 86988)
+++ community-i686/tea.desktop  2013-03-25 17:05:20 UTC (rev 86989)
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Encoding=UTF-8
-Name=Tea
-Comment=A small programmer's QT editor
-Exec=tea %U
-Terminal=false
-Type=Application
-StartupNotify=true
-Icon=tea.png
-Categories=Application;Utility;TextEditor;

Copied: tea/repos/community-i686/tea.desktop (from rev 86988, 
tea/trunk/tea.desktop)
===
--- community-i686/tea.desktop  (rev 

[arch-commits] Commit in fatrat/trunk (PKGBUILD QTBUG-22829-workaround.diff)

2013-03-25 Thread Lukas Jirkovsky
Date: Monday, March 25, 2013 @ 18:17:04
  Author: stativ
Revision: 86990

prepare for the boost 1.53.0 rebuild.

Added:
  fatrat/trunk/QTBUG-22829-workaround.diff
Modified:
  fatrat/trunk/PKGBUILD

-+
 PKGBUILD|   11 ---
 QTBUG-22829-workaround.diff |   12 
 2 files changed, 20 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 17:05:20 UTC (rev 86989)
+++ PKGBUILD2013-03-25 17:17:04 UTC (rev 86990)
@@ -2,7 +2,7 @@
 # Maintainer: Lukas Jirkovsky l.jirkov...@gmail.com
 pkgname=fatrat
 pkgver=1.2.0_beta2
-pkgrel=5
+pkgrel=6
 pkgdesc=QT4 based download manager with support for HTTP, FTP, SFTP, 
BitTorrent, rapidshare and more
 arch=('i686' 'x86_64')
 url=http://fatrat.dolezel.info/;
@@ -10,12 +10,17 @@
 depends=('gloox' 'libtorrent-rasterbar' 'pion' 'qtwebkit')
 optdepends=('geoip: GeoIP support')
 makedepends=('boost' 'cmake' 'java-environment')
-source=(http://www.dolezel.info/download/data/fatrat/fatrat-$pkgver.tar.xz)
-md5sums=('ad823d2a81f0583316ece815b928c71b')
+source=(http://www.dolezel.info/download/data/fatrat/fatrat-$pkgver.tar.xz \
+QTBUG-22829-workaround.diff)
+md5sums=('ad823d2a81f0583316ece815b928c71b'
+ '9c017f227437b8a72e92219ee6d58578')
 
 build() {
   cd $srcdir/$pkgname-$pkgver
 
+  # workaround the moc bug (QTBUG-22829) with new boost
+  patch -Np1  $srcdir/QTBUG-22829-workaround.diff || true
+
   cmake \
 -DWITH_EVERYTHING=ON \
 -DCMAKE_INSTALL_PREFIX=/usr \

Added: QTBUG-22829-workaround.diff
===
--- QTBUG-22829-workaround.diff (rev 0)
+++ QTBUG-22829-workaround.diff 2013-03-25 17:17:04 UTC (rev 86990)
@@ -0,0 +1,12 @@
+diff -rup fatrat-1.2.0_beta2/CMakeLists.txt 
fatrat-1.2.0_beta2.new/CMakeLists.txt
+--- fatrat-1.2.0_beta2/CMakeLists.txt  2012-07-14 11:44:27.0 +
 fatrat-1.2.0_beta2.new/CMakeLists.txt  2013-03-25 16:21:03.143596960 
+
+@@ -552,7 +552,7 @@ if(WITH_DOCUMENTATION)
+   )
+ endif(WITH_DOCUMENTATION)
+ 
+-qt4_wrap_cpp(fatrat_MOC_SRCS ${fatrat_MOC_HDRS})
++qt4_wrap_cpp(fatrat_MOC_SRCS ${fatrat_MOC_HDRS} OPTIONS 
-DBOOST_TT_HAS_OPERATOR_HPP_INCLUDED -DBOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
+ 
+ set(fatrat_RCS
+   gfx/resources.qrc



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

2013-03-25 Thread Sergej Pupykin
Date: Monday, March 25, 2013 @ 18:46:19
  Author: spupykin
Revision: 86991

upgpkg: q4wine 1.0_r2-1

Modified:
  q4wine/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 17:17:04 UTC (rev 86990)
+++ PKGBUILD2013-03-25 17:46:19 UTC (rev 86991)
@@ -9,8 +9,14 @@
 arch=(i686 x86_64)
 url=http://sourceforge.net/projects/${pkgname}/;
 license=(GPL3)
-depends=(qt4 wine sqlite3 which icoutils)
-makedepends=(cmake)
+if [[ $CARCH == x86_64 ]]; then
+  # in multilib repo catalyst is 1st and default, so hardcode lib32-mesa-libgl
+  depends=(lib32-mesa-libgl qt4 wine sqlite3 which icoutils)
+  makedepends=(cmake)
+else
+  depends=(qt4 wine sqlite3 which icoutils)
+  makedepends=(cmake)
+fi
 optdepends=(winetricks fuseiso)
 options=('!emptydirs')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver/_/-}.tar.bz2)
@@ -26,6 +32,11 @@
 }
 
 package() {
+if [[ $CARCH == x86_64 ]]; then
+  # remove hardcoded lib32-mesa-libgl
+  depends=(${depends[@]:1})
+fi
+
   cd ${srcdir}/${pkgname}-${pkgver/_/-}
   make DESTDIR=${pkgdir} install
 }



[arch-commits] Commit in q4wine/repos/multilib-x86_64 (4 files)

2013-03-25 Thread Sergej Pupykin
Date: Monday, March 25, 2013 @ 18:46:33
  Author: spupykin
Revision: 86992

archrelease: copy trunk to multilib-x86_64

Added:
  q4wine/repos/multilib-x86_64/PKGBUILD
(from rev 86991, q4wine/trunk/PKGBUILD)
  q4wine/repos/multilib-x86_64/q4wine.desktop
(from rev 86991, q4wine/trunk/q4wine.desktop)
Deleted:
  q4wine/repos/multilib-x86_64/PKGBUILD
  q4wine/repos/multilib-x86_64/q4wine.desktop

+
 PKGBUILD   |   73 +++
 q4wine.desktop |   36 +--
 2 files changed, 60 insertions(+), 49 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-25 17:46:19 UTC (rev 86991)
+++ PKGBUILD2013-03-25 17:46:33 UTC (rev 86992)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: Chris Giles Chris.G.27 (at) Gmail.com
-
-pkgname=q4wine
-pkgver=1.0_r1
-pkgrel=2
-pkgdesc=A Qt4 GUI for Wine
-arch=(i686 x86_64)
-url=http://sourceforge.net/projects/${pkgname}/;
-license=(GPL3)
-depends=(qt4 wine sqlite3 which icoutils)
-makedepends=(cmake)
-optdepends=(winetricks fuseiso)
-options=('!emptydirs')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver/_/-}.tar.bz2)
-md5sums=('9cee53cbeea515f7162b76ba8b12cae6')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver/_/-}
-  cmake \
--DCMAKE_INSTALL_PREFIX=/usr \
--DWITH_WINETRIKS=ON \
--DLIBS_ENTRY_PATH=/usr/lib/$pkgname .
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver/_/-}
-  make DESTDIR=${pkgdir} install
-}

Copied: q4wine/repos/multilib-x86_64/PKGBUILD (from rev 86991, 
q4wine/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-25 17:46:33 UTC (rev 86992)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Chris Giles Chris.G.27 (at) Gmail.com
+
+pkgname=q4wine
+pkgver=1.0_r2
+pkgrel=1
+pkgdesc=A Qt4 GUI for Wine
+arch=(i686 x86_64)
+url=http://sourceforge.net/projects/${pkgname}/;
+license=(GPL3)
+if [[ $CARCH == x86_64 ]]; then
+  # in multilib repo catalyst is 1st and default, so hardcode lib32-mesa-libgl
+  depends=(lib32-mesa-libgl qt4 wine sqlite3 which icoutils)
+  makedepends=(cmake)
+else
+  depends=(qt4 wine sqlite3 which icoutils)
+  makedepends=(cmake)
+fi
+optdepends=(winetricks fuseiso)
+options=('!emptydirs')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver/_/-}.tar.bz2)
+md5sums=('0f559a169cfa96d76f36ea177004d64e')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver/_/-}
+  cmake \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DWITH_WINETRIKS=ON \
+-DLIBS_ENTRY_PATH=/usr/lib/$pkgname .
+  make
+}
+
+package() {
+if [[ $CARCH == x86_64 ]]; then
+  # remove hardcoded lib32-mesa-libgl
+  depends=(${depends[@]:1})
+fi
+
+  cd ${srcdir}/${pkgname}-${pkgver/_/-}
+  make DESTDIR=${pkgdir} install
+}

Deleted: q4wine.desktop
===
--- q4wine.desktop  2013-03-25 17:46:19 UTC (rev 86991)
+++ q4wine.desktop  2013-03-25 17:46:33 UTC (rev 86992)
@@ -1,18 +0,0 @@
-[Desktop Entry]
-Name=Q4Wine
-GenericName=A Qt4 GUI for Wine
-Comment=A Qt4 GUI for Wine
-#Version=0.1
-Type=Application
-Categories=KDE;Qt;Settings
-Terminal=false
-Encoding=UTF-8
-Icon=wine
-Exec=q4wine
-#ServiceTypes=inode/directory
-#Actions=Create;
-#X-KDE-Submenu=
-#X-KDE-Priority=TopLevel
-#X-KDE-Icon=tgz
-X-KDE-StartupNotify=true
-#X-DCOP-ServiceType=Unique

Copied: q4wine/repos/multilib-x86_64/q4wine.desktop (from rev 86991, 
q4wine/trunk/q4wine.desktop)
===
--- q4wine.desktop  (rev 0)
+++ q4wine.desktop  2013-03-25 17:46:33 UTC (rev 86992)
@@ -0,0 +1,18 @@
+[Desktop Entry]
+Name=Q4Wine
+GenericName=A Qt4 GUI for Wine
+Comment=A Qt4 GUI for Wine
+#Version=0.1
+Type=Application
+Categories=KDE;Qt;Settings
+Terminal=false
+Encoding=UTF-8
+Icon=wine
+Exec=q4wine
+#ServiceTypes=inode/directory
+#Actions=Create;
+#X-KDE-Submenu=
+#X-KDE-Priority=TopLevel
+#X-KDE-Icon=tgz
+X-KDE-StartupNotify=true
+#X-DCOP-ServiceType=Unique



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

2013-03-25 Thread Bartłomiej Piotrowski
Date: Monday, March 25, 2013 @ 18:47:56
  Author: bpiotrowski
Revision: 86993

upgpkg: glances 1.6.1-1

upstream release

Modified:
  glances/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 17:46:33 UTC (rev 86992)
+++ PKGBUILD2013-03-25 17:47:56 UTC (rev 86993)
@@ -3,7 +3,7 @@
 # Contributor: Francois Boulogne fboulogne at april dot org
 
 pkgname=glances
-pkgver=1.6
+pkgver=1.6.1
 pkgrel=1
 pkgdesc='CLI curses-based monitoring tool'
 arch=('any')
@@ -13,14 +13,12 @@
 optdepends=('python2-jinja: HTML export'
 'python2-sensors: temperature sensors support')
 source=($pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz)
-sha256sums=('b5c6f97a047341b3fdec0c02b8201efbd0e2b1c09a7cdbde593a84bf1ce32814')
+sha256sums=('6da67b19e8508f6f93fb05536ba42b22355d3cb2637e34d21e056524f93d33a2')
 
 package() {
   cd $srcdir/$pkgname-$pkgver
-  sed 's|^#!/usr/bin/env python$|2|' -i glances/{glances,unitest}.py
+  sed 's|^#!/usr/bin/env python$|2|' -i glances/glances.py
   python2 setup.py install --prefix=/usr --root=$pkgdir
-
-  mv $pkgdir/usr/etc $pkgdir/
 }
 
 # vim:ts=2:sw=2:et:



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

2013-03-25 Thread Bartłomiej Piotrowski
Date: Monday, March 25, 2013 @ 18:48:03
  Author: bpiotrowski
Revision: 86994

archrelease: copy trunk to community-any

Added:
  glances/repos/community-any/PKGBUILD
(from rev 86993, glances/trunk/PKGBUILD)
Deleted:
  glances/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-03-25 17:47:56 UTC (rev 86993)
+++ PKGBUILD2013-03-25 17:48:03 UTC (rev 86994)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski s...@bpiotrowski.pl
-# Contributor: Francois Boulogne fboulogne at april dot org
-
-pkgname=glances
-pkgver=1.6
-pkgrel=1
-pkgdesc='CLI curses-based monitoring tool'
-arch=('any')
-url='https://github.com/nicolargo/glances'
-license=('LGPL')
-depends=('python2' 'python2-psutil' 'python2-distribute')
-optdepends=('python2-jinja: HTML export'
-'python2-sensors: temperature sensors support')
-source=($pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz)
-sha256sums=('b5c6f97a047341b3fdec0c02b8201efbd0e2b1c09a7cdbde593a84bf1ce32814')
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  sed 's|^#!/usr/bin/env python$|2|' -i glances/{glances,unitest}.py
-  python2 setup.py install --prefix=/usr --root=$pkgdir
-
-  mv $pkgdir/usr/etc $pkgdir/
-}
-
-# vim:ts=2:sw=2:et:

Copied: glances/repos/community-any/PKGBUILD (from rev 86993, 
glances/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-03-25 17:48:03 UTC (rev 86994)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski s...@bpiotrowski.pl
+# Contributor: Francois Boulogne fboulogne at april dot org
+
+pkgname=glances
+pkgver=1.6.1
+pkgrel=1
+pkgdesc='CLI curses-based monitoring tool'
+arch=('any')
+url='https://github.com/nicolargo/glances'
+license=('LGPL')
+depends=('python2' 'python2-psutil' 'python2-distribute')
+optdepends=('python2-jinja: HTML export'
+'python2-sensors: temperature sensors support')
+source=($pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz)
+sha256sums=('6da67b19e8508f6f93fb05536ba42b22355d3cb2637e34d21e056524f93d33a2')
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  sed 's|^#!/usr/bin/env python$|2|' -i glances/glances.py
+  python2 setup.py install --prefix=/usr --root=$pkgdir
+}
+
+# vim:ts=2:sw=2:et:



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

2013-03-25 Thread Sergej Pupykin
Date: Monday, March 25, 2013 @ 19:24:50
  Author: spupykin
Revision: 86995

upgpkg: schroot 1.6.5-2

upd

Modified:
  schroot/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 17:48:03 UTC (rev 86994)
+++ PKGBUILD2013-03-25 18:24:50 UTC (rev 86995)
@@ -4,7 +4,7 @@
 
 pkgname=schroot
 pkgver=1.6.5
-pkgrel=1
+pkgrel=2
 pkgdesc=Allows users to execute shell commands under different root 
filesystems. (Successor to dchroot).
 url=http://packages.qa.debian.org/s/schroot.html;
 license=('GPL3')



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

2013-03-25 Thread Sergej Pupykin
Date: Monday, March 25, 2013 @ 19:25:38
  Author: spupykin
Revision: 86996

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

Added:
  schroot/repos/community-staging-i686/
  schroot/repos/community-staging-i686/PKGBUILD
(from rev 86995, schroot/trunk/PKGBUILD)
  schroot/repos/community-staging-i686/arch32-config
(from rev 86995, schroot/trunk/arch32-config)
  schroot/repos/community-staging-i686/arch32-copyfiles
(from rev 86995, schroot/trunk/arch32-copyfiles)
  schroot/repos/community-staging-i686/arch32-example
(from rev 86995, schroot/trunk/arch32-example)
  schroot/repos/community-staging-i686/arch32-mount
(from rev 86995, schroot/trunk/arch32-mount)
  schroot/repos/community-staging-i686/arch32-nssdatabases
(from rev 86995, schroot/trunk/arch32-nssdatabases)
  schroot/repos/community-staging-i686/colon-completion.patch
(from rev 86995, schroot/trunk/colon-completion.patch)
  schroot/repos/community-staging-i686/fix-bash-completion.patch
(from rev 86995, schroot/trunk/fix-bash-completion.patch)
  schroot/repos/community-staging-i686/pam.d.schroot.patch
(from rev 86995, schroot/trunk/pam.d.schroot.patch)
  schroot/repos/community-staging-x86_64/
  schroot/repos/community-staging-x86_64/PKGBUILD
(from rev 86995, schroot/trunk/PKGBUILD)
  schroot/repos/community-staging-x86_64/arch32-config
(from rev 86995, schroot/trunk/arch32-config)
  schroot/repos/community-staging-x86_64/arch32-copyfiles
(from rev 86995, schroot/trunk/arch32-copyfiles)
  schroot/repos/community-staging-x86_64/arch32-example
(from rev 86995, schroot/trunk/arch32-example)
  schroot/repos/community-staging-x86_64/arch32-mount
(from rev 86995, schroot/trunk/arch32-mount)
  schroot/repos/community-staging-x86_64/arch32-nssdatabases
(from rev 86995, schroot/trunk/arch32-nssdatabases)
  schroot/repos/community-staging-x86_64/colon-completion.patch
(from rev 86995, schroot/trunk/colon-completion.patch)
  schroot/repos/community-staging-x86_64/fix-bash-completion.patch
(from rev 86995, schroot/trunk/fix-bash-completion.patch)
  schroot/repos/community-staging-x86_64/pam.d.schroot.patch
(from rev 86995, schroot/trunk/pam.d.schroot.patch)

+
 community-staging-i686/PKGBUILD|   77 +++
 community-staging-i686/arch32-config   |   11 ++
 community-staging-i686/arch32-copyfiles|6 +
 community-staging-i686/arch32-example  |   10 ++
 community-staging-i686/arch32-mount|   12 ++
 community-staging-i686/arch32-nssdatabases |6 +
 community-staging-i686/colon-completion.patch  |   20 
 community-staging-i686/fix-bash-completion.patch   |   11 ++
 community-staging-i686/pam.d.schroot.patch |   15 +++
 community-staging-x86_64/PKGBUILD  |   77 +++
 community-staging-x86_64/arch32-config |   11 ++
 community-staging-x86_64/arch32-copyfiles  |6 +
 community-staging-x86_64/arch32-example|   10 ++
 community-staging-x86_64/arch32-mount  |   12 ++
 community-staging-x86_64/arch32-nssdatabases   |6 +
 community-staging-x86_64/colon-completion.patch|   20 
 community-staging-x86_64/fix-bash-completion.patch |   11 ++
 community-staging-x86_64/pam.d.schroot.patch   |   15 +++
 18 files changed, 336 insertions(+)

Copied: schroot/repos/community-staging-i686/PKGBUILD (from rev 86995, 
schroot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-03-25 18:25:38 UTC (rev 86996)
@@ -0,0 +1,77 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: Andreas Wagner Andreas dot Wagner at em dot uni-frankfurt dot 
de
+
+pkgname=schroot
+pkgver=1.6.5
+pkgrel=2
+pkgdesc=Allows users to execute shell commands under different root 
filesystems. (Successor to dchroot).
+url=http://packages.qa.debian.org/s/schroot.html;
+license=('GPL3')
+depends=('pam' 'lockdev' 'boost' 'e2fsprogs')
+optdepends=('btrfs-progs-unstable' 'lvm2')
+arch=('i686' 'x86_64')
+conflicts=('dchroot')
+replaces=('dchroot')
+provides=('schroot' 'sbuild' 'dchroot')
+backup=('etc/schroot/schroot.conf'
+   'etc/schroot/arch32/config'
+   'etc/schroot/arch32/copyfiles'
+   'etc/schroot/arch32/mount'
+   'etc/schroot/arch32/nssdatabases')
+options=(!libtool)
+source=(http://ftp.debian.org/debian/pool/main/s/$pkgname/${pkgname}_${pkgver}.orig.tar.xz;
+   'arch32-example'
+   'arch32-config'
+   'arch32-copyfiles'
+   'arch32-mount'
+   'arch32-nssdatabases'
+   'pam.d.schroot.patch'
+   'colon-completion.patch'
+   'fix-bash-completion.patch')
+md5sums=('99f679d68f180a56289b3ec40d214ae4'
+ 

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

2013-03-25 Thread Giovanni Scafora
Date: Monday, March 25, 2013 @ 20:46:52
  Author: giovanni
Revision: 180691

upgpkg: smartmontools 6.1-1

upstream release

Modified:
  smartmontools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 19:15:43 UTC (rev 180690)
+++ PKGBUILD2013-03-25 19:46:52 UTC (rev 180691)
@@ -5,8 +5,8 @@
 # Contributor: Ralf Barth archlinux@haggy.org
 
 pkgname=smartmontools
-pkgver=6.0
-pkgrel=2
+pkgver=6.1
+pkgrel=1
 pkgdesc=Control and monitor S.M.A.R.T. enabled ATA and SCSI Hard Drives
 url=http://smartmontools.sourceforge.net;
 license=('GPL')
@@ -16,7 +16,7 @@
 'etc/conf.d/smartd')
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 'smartd.conf')
-md5sums=('5646a07f5f4bee8e2e649de8c6b7ae87'
+md5sums=('83a3a681f8183ed858392d550ae1cca6'
  '28c1b80c41dac52d433961dcfb4f70e0')
 
 build() {



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

2013-03-25 Thread Giovanni Scafora
Date: Monday, March 25, 2013 @ 20:47:01
  Author: giovanni
Revision: 180692

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

Added:
  smartmontools/repos/extra-i686/PKGBUILD
(from rev 180691, smartmontools/trunk/PKGBUILD)
  smartmontools/repos/extra-i686/smartd.conf
(from rev 180691, smartmontools/trunk/smartd.conf)
  smartmontools/repos/extra-x86_64/PKGBUILD
(from rev 180691, smartmontools/trunk/PKGBUILD)
  smartmontools/repos/extra-x86_64/smartd.conf
(from rev 180691, smartmontools/trunk/smartd.conf)
Deleted:
  smartmontools/repos/extra-i686/PKGBUILD
  smartmontools/repos/extra-i686/smartd.conf
  smartmontools/repos/extra-x86_64/PKGBUILD
  smartmontools/repos/extra-x86_64/smartd.conf

--+
 /PKGBUILD|   86 +
 /smartd.conf |2 +
 extra-i686/PKGBUILD  |   43 --
 extra-i686/smartd.conf   |1 
 extra-x86_64/PKGBUILD|   43 --
 extra-x86_64/smartd.conf |1 
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-03-25 19:46:52 UTC (rev 180691)
+++ extra-i686/PKGBUILD 2013-03-25 19:47:01 UTC (rev 180692)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Jeff Mickey j...@archlinux.org
-# Contributor: Jani Talikka jani.tali...@gmail.com
-# Contributor: Ralf Barth archlinux@haggy.org
-
-pkgname=smartmontools
-pkgver=6.0
-pkgrel=2
-pkgdesc=Control and monitor S.M.A.R.T. enabled ATA and SCSI Hard Drives
-url=http://smartmontools.sourceforge.net;
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('gcc-libs' 'libcap-ng' 'bash')
-backup=('etc/smartd.conf'
-'etc/conf.d/smartd')
-source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'smartd.conf')
-md5sums=('5646a07f5f4bee8e2e649de8c6b7ae87'
- '28c1b80c41dac52d433961dcfb4f70e0')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --enable-drivedb \
-  --with-libcap-ng=yes \
-  --with-systemdsystemunitdir=/usr/lib/systemd/system
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  sed -i -e s:sysconfig/smartmontools:conf.d/smartd:g smartd.service
-  sed -i -e s:smartd_opts:SMARTD_ARGS:g smartd.service
-
-  make DESTDIR=${pkgdir} install
-
-  rm -rf ${pkgdir}/etc/rc.d
-  install -Dm644 ${srcdir}/smartd.conf ${pkgdir}/etc/conf.d/smartd
-}

Copied: smartmontools/repos/extra-i686/PKGBUILD (from rev 180691, 
smartmontools/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-03-25 19:47:01 UTC (rev 180692)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Jeff Mickey j...@archlinux.org
+# Contributor: Jani Talikka jani.tali...@gmail.com
+# Contributor: Ralf Barth archlinux@haggy.org
+
+pkgname=smartmontools
+pkgver=6.1
+pkgrel=1
+pkgdesc=Control and monitor S.M.A.R.T. enabled ATA and SCSI Hard Drives
+url=http://smartmontools.sourceforge.net;
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('gcc-libs' 'libcap-ng' 'bash')
+backup=('etc/smartd.conf'
+'etc/conf.d/smartd')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'smartd.conf')
+md5sums=('83a3a681f8183ed858392d550ae1cca6'
+ '28c1b80c41dac52d433961dcfb4f70e0')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --enable-drivedb \
+  --with-libcap-ng=yes \
+  --with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  sed -i -e s:sysconfig/smartmontools:conf.d/smartd:g smartd.service
+  sed -i -e s:smartd_opts:SMARTD_ARGS:g smartd.service
+
+  make DESTDIR=${pkgdir} install
+
+  rm -rf ${pkgdir}/etc/rc.d
+  install -Dm644 ${srcdir}/smartd.conf ${pkgdir}/etc/conf.d/smartd
+}

Deleted: extra-i686/smartd.conf
===
--- extra-i686/smartd.conf  2013-03-25 19:46:52 UTC (rev 180691)
+++ extra-i686/smartd.conf  2013-03-25 19:47:01 UTC (rev 180692)
@@ -1 +0,0 @@
-SMARTD_ARGS=

Copied: smartmontools/repos/extra-i686/smartd.conf (from rev 180691, 
smartmontools/trunk/smartd.conf)
===
--- extra-i686/smartd.conf  (rev 0)
+++ extra-i686/smartd.conf  2013-03-25 19:47:01 UTC (rev 180692)
@@ -0,0 +1 @@
+SMARTD_ARGS=

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-03-25 

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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 22:54:41
  Author: jgc
Revision: 180693

upgpkg: glib2 2.36.0-1

Modified:
  glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 19:47:01 UTC (rev 180692)
+++ PKGBUILD2013-03-25 21:54:41 UTC (rev 180693)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=glib2
-pkgver=2.35.9
+pkgver=2.36.0
 pkgrel=1
 pkgdesc=Common C routines used by GTK+ and other libs
 url=http://www.gtk.org/;
@@ -15,7 +15,7 @@
 
source=(http://ftp.gnome.org/pub/GNOME/sources/glib/${pkgver%.*}/glib-$pkgver.tar.xz
 revert-warn-glib-compile-schemas.patch
 0001-Make-gtester-report-work-with-Python-3.x.patch)
-sha256sums=('75ce10a4c47c830234ce6af8e52dc4ebaf603a9c04b4114eb22dd00335f3943e'
+sha256sums=('455a8abe8692c5174bcc7ffa15b96a7521a2f2f9fb47594405927c35cb9bb227'
 '049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97'
 'a2b4ff3836fc0a5b03b8e6bfa69be44b9a65f16486e4c1e4bc6c3d50fe2ad632')
 



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 22:54:51
  Author: jgc
Revision: 180694

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

Added:
  
glib2/repos/gnome-unstable-i686/0001-Make-gtester-report-work-with-Python-3.x.patch
(from rev 180693, 
glib2/trunk/0001-Make-gtester-report-work-with-Python-3.x.patch)
  glib2/repos/gnome-unstable-i686/PKGBUILD
(from rev 180693, glib2/trunk/PKGBUILD)
  glib2/repos/gnome-unstable-i686/revert-warn-glib-compile-schemas.patch
(from rev 180693, glib2/trunk/revert-warn-glib-compile-schemas.patch)
  
glib2/repos/gnome-unstable-x86_64/0001-Make-gtester-report-work-with-Python-3.x.patch
(from rev 180693, 
glib2/trunk/0001-Make-gtester-report-work-with-Python-3.x.patch)
  glib2/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180693, glib2/trunk/PKGBUILD)
  glib2/repos/gnome-unstable-x86_64/revert-warn-glib-compile-schemas.patch
(from rev 180693, glib2/trunk/revert-warn-glib-compile-schemas.patch)
Deleted:
  
glib2/repos/gnome-unstable-i686/0001-Make-gtester-report-work-with-Python-3.x.patch
  glib2/repos/gnome-unstable-i686/PKGBUILD
  glib2/repos/gnome-unstable-i686/revert-warn-glib-compile-schemas.patch
  
glib2/repos/gnome-unstable-x86_64/0001-Make-gtester-report-work-with-Python-3.x.patch
  glib2/repos/gnome-unstable-x86_64/PKGBUILD
  glib2/repos/gnome-unstable-x86_64/revert-warn-glib-compile-schemas.patch

---+
 /0001-Make-gtester-report-work-with-Python-3.x.patch  |  
120 ++
 /PKGBUILD |   
80 ++
 /revert-warn-glib-compile-schemas.patch   |   
66 +
 gnome-unstable-i686/0001-Make-gtester-report-work-with-Python-3.x.patch   |   
60 -
 gnome-unstable-i686/PKGBUILD  |   
40 ---
 gnome-unstable-i686/revert-warn-glib-compile-schemas.patch|   
33 --
 gnome-unstable-x86_64/0001-Make-gtester-report-work-with-Python-3.x.patch |   
60 -
 gnome-unstable-x86_64/PKGBUILD|   
40 ---
 gnome-unstable-x86_64/revert-warn-glib-compile-schemas.patch  |   
33 --
 9 files changed, 266 insertions(+), 266 deletions(-)

Deleted: gnome-unstable-i686/0001-Make-gtester-report-work-with-Python-3.x.patch
===
--- gnome-unstable-i686/0001-Make-gtester-report-work-with-Python-3.x.patch 
2013-03-25 21:54:41 UTC (rev 180693)
+++ gnome-unstable-i686/0001-Make-gtester-report-work-with-Python-3.x.patch 
2013-03-25 21:54:51 UTC (rev 180694)
@@ -1,60 +0,0 @@
-From 3d81e0a414ecb876f2429c0108a685152bd4ee54 Mon Sep 17 00:00:00 2001
-From: Jan de Groot j...@archlinux.org
-Date: Thu, 21 Mar 2013 20:47:57 +0100
-Subject: [PATCH] Make gtester-report work with Python 3.x: - fix indentations
- (tabs to spaces) - Replace print with print(), still works with Python 2.x
-

- glib/gtester-report | 28 ++--
- 1 file changed, 14 insertions(+), 14 deletions(-)
-
-diff --git a/glib/gtester-report b/glib/gtester-report
-index 0fcdd9a..00296ea 100755
 a/glib/gtester-report
-+++ b/glib/gtester-report
-@@ -308,20 +308,20 @@ class HTMLReportWriter(ReportWriter):
- if binary.success_cases:
-   oklink = 'href=javascript:toggle_display (\'ResultTable\', \'tr\', 
\'b%u_\', \'success\')' % self.bcounter
- if real_cases != 0:
--  self.oprint ('a %sER/a\n' % erlink)
--  self.oprint ('a %sOK/a\n' % oklink)
--  self.oprint ('/td\n')
--  perc = binary.success_cases * 100.0 / real_cases
--  pcolor = {
--100 : 'bgcolor=lightgreen',
--0   : 'bgcolor=red',
--  }.get (int (perc), 'bgcolor=yellow')
--  self.oprint ('td align=right %s%.2f%%/td\n' % (pcolor, perc))
--  self.oprint ('/tr\n')
-+self.oprint ('a %sER/a\n' % erlink)
-+self.oprint ('a %sOK/a\n' % oklink)
-+self.oprint ('/td\n')
-+perc = binary.success_cases * 100.0 / real_cases
-+pcolor = {
-+  100 : 'bgcolor=lightgreen',
-+  0   : 'bgcolor=red',
-+}.get (int (perc), 'bgcolor=yellow')
-+self.oprint ('td align=right %s%.2f%%/td\n' % (pcolor, perc))
-+self.oprint ('/tr\n')
- else:
--  self.oprint ('Empty\n')
--  self.oprint ('/td\n')
--  self.oprint ('/tr\n')
-+self.oprint ('Empty\n')
-+self.oprint ('/td\n')
-+self.oprint ('/tr\n')
- for tc in binary.testcases:
-   self.handle_testcase (tc, binary)
-   def handle_totals (self):
-@@ -466,7 +466,7 @@ def parse_opts():
-  Needs python-subunit])
- options, files = parser.parse_args()
- if options.version:
--print parser.epilog
-+print(parser.epilog)
- return None, None
- if len(files) != 1:
- parser.error(Must supply a log file to parse.)
--- 

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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 22:58:51
  Author: jgc
Revision: 180695

upgpkg: vte3 0.34.3-1

Modified:
  vte3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 21:54:51 UTC (rev 180694)
+++ PKGBUILD2013-03-25 21:58:51 UTC (rev 180695)
@@ -3,7 +3,7 @@
 
 pkgbase=vte3
 pkgname=(vte3 vte-common)
-pkgver=0.34.2
+pkgver=0.34.3
 pkgrel=1
 pkgdesc=Virtual Terminal Emulator widget for use with GTK3
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('intltool' 'gobject-introspection' 'gtk3')
 url=http://www.gnome.org;
 source=(http://download.gnome.org/sources/vte/${pkgver::4}/vte-$pkgver.tar.xz)
-sha256sums=('f40f9fe0bcc6d65bc44b2fab5469b56a9f0631132c6b90e06053e421711159cf')
+sha256sums=('e5f52e505ce6ac66075bd84143f728cba858722753055ff9e64c59fce70822cc')
 
 build() {
   cd vte-$pkgver



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 22:58:58
  Author: jgc
Revision: 180696

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

Added:
  vte3/repos/gnome-unstable-i686/
  vte3/repos/gnome-unstable-i686/PKGBUILD
(from rev 180695, vte3/trunk/PKGBUILD)
  vte3/repos/gnome-unstable-x86_64/
  vte3/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180695, vte3/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   40 +++
 gnome-unstable-x86_64/PKGBUILD |   40 +++
 2 files changed, 80 insertions(+)

Copied: vte3/repos/gnome-unstable-i686/PKGBUILD (from rev 180695, 
vte3/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 21:58:58 UTC (rev 180696)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgbase=vte3
+pkgname=(vte3 vte-common)
+pkgver=0.34.3
+pkgrel=1
+pkgdesc=Virtual Terminal Emulator widget for use with GTK3
+arch=('i686' 'x86_64')
+license=('LGPL')
+options=('!libtool' '!emptydirs')
+makedepends=('intltool' 'gobject-introspection' 'gtk3')
+url=http://www.gnome.org;
+source=(http://download.gnome.org/sources/vte/${pkgver::4}/vte-$pkgver.tar.xz)
+sha256sums=('e5f52e505ce6ac66075bd84143f728cba858722753055ff9e64c59fce70822cc')
+
+build() {
+  cd vte-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/vte \
+  --localstatedir=/var --disable-static \
+  --enable-introspection
+  make
+}
+
+package_vte3(){
+  depends=('gtk3' 'vte-common')
+  cd vte-$pkgver
+  make DESTDIR=$pkgdir install
+
+  rm $pkgdir/usr/lib/vte/gnome-pty-helper
+}
+
+package_vte-common() {
+  pkgdesc=Common files used by vte and vte3
+  depends=('glibc')
+  cd vte-$pkgver
+
+  make -C gnome-pty-helper DESTDIR=$pkgdir install
+}

Copied: vte3/repos/gnome-unstable-x86_64/PKGBUILD (from rev 180695, 
vte3/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 21:58:58 UTC (rev 180696)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgbase=vte3
+pkgname=(vte3 vte-common)
+pkgver=0.34.3
+pkgrel=1
+pkgdesc=Virtual Terminal Emulator widget for use with GTK3
+arch=('i686' 'x86_64')
+license=('LGPL')
+options=('!libtool' '!emptydirs')
+makedepends=('intltool' 'gobject-introspection' 'gtk3')
+url=http://www.gnome.org;
+source=(http://download.gnome.org/sources/vte/${pkgver::4}/vte-$pkgver.tar.xz)
+sha256sums=('e5f52e505ce6ac66075bd84143f728cba858722753055ff9e64c59fce70822cc')
+
+build() {
+  cd vte-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --libexecdir=/usr/lib/vte \
+  --localstatedir=/var --disable-static \
+  --enable-introspection
+  make
+}
+
+package_vte3(){
+  depends=('gtk3' 'vte-common')
+  cd vte-$pkgver
+  make DESTDIR=$pkgdir install
+
+  rm $pkgdir/usr/lib/vte/gnome-pty-helper
+}
+
+package_vte-common() {
+  pkgdesc=Common files used by vte and vte3
+  depends=('glibc')
+  cd vte-$pkgver
+
+  make -C gnome-pty-helper DESTDIR=$pkgdir install
+}



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:01:08
  Author: jgc
Revision: 180697

upgpkg: dconf 0.16.0-1

Modified:
  dconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 21:58:58 UTC (rev 180696)
+++ PKGBUILD2013-03-25 22:01:08 UTC (rev 180697)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=dconf
-pkgver=0.15.3
+pkgver=0.16.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%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4ed6f4e9afb2cbc3a2f265ed16a1751ffc4d783dcfe44eb3c68ddc07cdb5c767')
+sha256sums=('192d682b8e160e22506f3fac6847444013c7cdbef188d937a6ae2b357f9134bb')
 
 build() {
   cd $pkgname-$pkgver



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:01:19
  Author: jgc
Revision: 180698

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

Added:
  dconf/repos/gnome-unstable-i686/PKGBUILD
(from rev 180697, dconf/trunk/PKGBUILD)
  dconf/repos/gnome-unstable-i686/dconf.install
(from rev 180697, dconf/trunk/dconf.install)
  dconf/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180697, dconf/trunk/PKGBUILD)
  dconf/repos/gnome-unstable-x86_64/dconf.install
(from rev 180697, 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  |   26 ++
 gnome-unstable-i686/PKGBUILD|   31 -
 gnome-unstable-i686/dconf.install   |   13 ---
 gnome-unstable-x86_64/PKGBUILD  |   31 -
 gnome-unstable-x86_64/dconf.install |   13 ---
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-03-25 22:01:08 UTC (rev 180697)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 22:01:19 UTC (rev 180698)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=dconf
-pkgver=0.15.3
-pkgrel=1
-pkgdesc=A low-level configuration system.
-arch=(i686 x86_64)
-url=http://live.gnome.org/dconf;
-license=('LGPL2.1')
-depends=('glib2' 'gtk-update-icon-cache')
-makedepends=('vala' 'gtk3' 'intltool' 'docbook-xsl' 'python')
-optdepends=('gtk3: for dconf-editor')
-install=dconf.install
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('4ed6f4e9afb2cbc3a2f265ed16a1751ffc4d783dcfe44eb3c68ddc07cdb5c767')
-
-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 180697, 
dconf/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 22:01:19 UTC (rev 180698)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=dconf
+pkgver=0.16.0
+pkgrel=1
+pkgdesc=A low-level configuration system.
+arch=(i686 x86_64)
+url=http://live.gnome.org/dconf;
+license=('LGPL2.1')
+depends=('glib2' 'gtk-update-icon-cache')
+makedepends=('vala' 'gtk3' 'intltool' 'docbook-xsl' 'python')
+optdepends=('gtk3: for dconf-editor')
+install=dconf.install
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('192d682b8e160e22506f3fac6847444013c7cdbef188d937a6ae2b357f9134bb')
+
+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   2013-03-25 22:01:08 UTC (rev 180697)
+++ gnome-unstable-i686/dconf.install   2013-03-25 22:01:19 UTC (rev 180698)
@@ -1,13 +0,0 @@
-post_install() {
-gio-querymodules /usr/lib/gio/modules
-glib-compile-schemas /usr/share/glib-2.0/schemas
-gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
-}
-
-post_upgrade(){
-post_install
-}
-
-post_remove() {
-post_install
-}

Copied: dconf/repos/gnome-unstable-i686/dconf.install (from rev 180697, 
dconf/trunk/dconf.install)
===
--- gnome-unstable-i686/dconf.install   (rev 0)
+++ gnome-unstable-i686/dconf.install   2013-03-25 22:01:19 UTC (rev 180698)
@@ -0,0 +1,13 @@
+post_install() {
+gio-querymodules /usr/lib/gio/modules
+glib-compile-schemas /usr/share/glib-2.0/schemas
+gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor
+}
+
+post_upgrade(){
+post_install
+}
+
+post_remove() {
+post_install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2013-03-25 22:01:08 UTC (rev 180697)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 22:01:19 UTC (rev 180698)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=dconf
-pkgver=0.15.3
-pkgrel=1
-pkgdesc=A low-level 

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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:05:33
  Author: jgc
Revision: 180699

upgpkg: cogl 1.14.0-1

Modified:
  cogl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 22:01:19 UTC (rev 180698)
+++ PKGBUILD2013-03-25 22:05:33 UTC (rev 180699)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=cogl
-pkgver=1.13.4
+pkgver=1.14.0
 pkgrel=1
 pkgdesc=An object oriented GL/GLES Abstraction/Utility Layer
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 makedepends=('mesa' 'gobject-introspection')
 options=(!libtool !emptydirs)
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('8e84ca9d6d08eb5e60f5c38e3bd80a3085e21ac86656a52797736706170bff6e')
+sha256sums=('276e8c9f5ff0fcd57c1eaf74cc245f41ad469a95a18ac831fac2d5960baa5ae8')
 
 build() {
   cd $pkgname-$pkgver



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:05:42
  Author: jgc
Revision: 180700

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

Added:
  cogl/repos/gnome-unstable-i686/PKGBUILD
(from rev 180699, cogl/trunk/PKGBUILD)
  cogl/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180699, cogl/trunk/PKGBUILD)
Deleted:
  cogl/repos/gnome-unstable-i686/PKGBUILD
  cogl/repos/gnome-unstable-x86_64/PKGBUILD

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

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-03-25 22:05:33 UTC (rev 180699)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 22:05:42 UTC (rev 180700)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=cogl
-pkgver=1.13.4
-pkgrel=1
-pkgdesc=An object oriented GL/GLES Abstraction/Utility Layer
-arch=('i686' 'x86_64')
-url=http://www.clutter-project.org/;
-license=('GPL2')
-depends=('libdrm' 'libxext' 'libxdamage' 'libxcomposite' 'gdk-pixbuf2' 'pango')
-makedepends=('mesa' 'gobject-introspection')
-options=(!libtool !emptydirs)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('8e84ca9d6d08eb5e60f5c38e3bd80a3085e21ac86656a52797736706170bff6e')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: cogl/repos/gnome-unstable-i686/PKGBUILD (from rev 180699, 
cogl/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 22:05:42 UTC (rev 180700)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=cogl
+pkgver=1.14.0
+pkgrel=1
+pkgdesc=An object oriented GL/GLES Abstraction/Utility Layer
+arch=('i686' 'x86_64')
+url=http://www.clutter-project.org/;
+license=('GPL2')
+depends=('libdrm' 'libxext' 'libxdamage' 'libxcomposite' 'gdk-pixbuf2' 'pango')
+makedepends=('mesa' 'gobject-introspection')
+options=(!libtool !emptydirs)
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('276e8c9f5ff0fcd57c1eaf74cc245f41ad469a95a18ac831fac2d5960baa5ae8')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2013-03-25 22:05:33 UTC (rev 180699)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 22:05:42 UTC (rev 180700)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=cogl
-pkgver=1.13.4
-pkgrel=1
-pkgdesc=An object oriented GL/GLES Abstraction/Utility Layer
-arch=('i686' 'x86_64')
-url=http://www.clutter-project.org/;
-license=('GPL2')
-depends=('libdrm' 'libxext' 'libxdamage' 'libxcomposite' 'gdk-pixbuf2' 'pango')
-makedepends=('mesa' 'gobject-introspection')
-options=(!libtool !emptydirs)
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('8e84ca9d6d08eb5e60f5c38e3bd80a3085e21ac86656a52797736706170bff6e')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: cogl/repos/gnome-unstable-x86_64/PKGBUILD (from rev 180699, 
cogl/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 22:05:42 UTC (rev 180700)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=cogl
+pkgver=1.14.0
+pkgrel=1
+pkgdesc=An object oriented GL/GLES Abstraction/Utility Layer
+arch=('i686' 'x86_64')
+url=http://www.clutter-project.org/;
+license=('GPL2')
+depends=('libdrm' 'libxext' 'libxdamage' 'libxcomposite' 'gdk-pixbuf2' 'pango')
+makedepends=('mesa' 'gobject-introspection')
+options=(!libtool !emptydirs)
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('276e8c9f5ff0fcd57c1eaf74cc245f41ad469a95a18ac831fac2d5960baa5ae8')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}
+
+# vim:set ts=2 sw=2 et:



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:10:39
  Author: jgc
Revision: 180701

upgpkg: clutter 1.14.0-1

Modified:
  clutter/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 22:05:42 UTC (rev 180700)
+++ PKGBUILD2013-03-25 22:10:39 UTC (rev 180701)
@@ -4,7 +4,7 @@
 # Contributor: William Rea sillywi...@gmail.com
 
 pkgname=clutter
-pkgver=1.13.10
+pkgver=1.14.0
 pkgrel=1
 pkgdesc=A GObject based library for creating fast, visually rich graphical 
user interfaces
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi')
 makedepends=('gobject-introspection')
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('64a5da9869af2ee76129e2abb3aa01cde38adbb73691d1aaa69ee98fb479d9c2')
+sha256sums=('3b7a07373c27fad4f0cf59fd66a6855d66f9a42b7b570a00ca51a8b488af64d5')
 
 build() {
   cd $pkgname-$pkgver



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:10:47
  Author: jgc
Revision: 180702

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

Added:
  clutter/repos/gnome-unstable-i686/PKGBUILD
(from rev 180701, clutter/trunk/PKGBUILD)
  clutter/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180701, clutter/trunk/PKGBUILD)
Deleted:
  clutter/repos/gnome-unstable-i686/PKGBUILD
  clutter/repos/gnome-unstable-x86_64/PKGBUILD

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

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-03-25 22:10:39 UTC (rev 180701)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 22:10:47 UTC (rev 180702)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=clutter
-pkgver=1.13.10
-pkgrel=1
-pkgdesc=A GObject based library for creating fast, visually rich graphical 
user interfaces
-arch=('i686' 'x86_64')
-url=http://clutter-project.org/;
-options=('!libtool')
-license=('LGPL')
-depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi')
-makedepends=('gobject-introspection')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('64a5da9869af2ee76129e2abb3aa01cde38adbb73691d1aaa69ee98fb479d9c2')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-introspection
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: clutter/repos/gnome-unstable-i686/PKGBUILD (from rev 180701, 
clutter/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 22:10:47 UTC (rev 180702)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=clutter
+pkgver=1.14.0
+pkgrel=1
+pkgdesc=A GObject based library for creating fast, visually rich graphical 
user interfaces
+arch=('i686' 'x86_64')
+url=http://clutter-project.org/;
+options=('!libtool')
+license=('LGPL')
+depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi')
+makedepends=('gobject-introspection')
+source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('3b7a07373c27fad4f0cf59fd66a6855d66f9a42b7b570a00ca51a8b488af64d5')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-introspection
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2013-03-25 22:10:39 UTC (rev 180701)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 22:10:47 UTC (rev 180702)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=clutter
-pkgver=1.13.10
-pkgrel=1
-pkgdesc=A GObject based library for creating fast, visually rich graphical 
user interfaces
-arch=('i686' 'x86_64')
-url=http://clutter-project.org/;
-options=('!libtool')
-license=('LGPL')
-depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi')
-makedepends=('gobject-introspection')
-source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('64a5da9869af2ee76129e2abb3aa01cde38adbb73691d1aaa69ee98fb479d9c2')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-introspection
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: clutter/repos/gnome-unstable-x86_64/PKGBUILD (from rev 180701, 
clutter/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 22:10:47 UTC (rev 180702)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Sergej Pupykin pupykin.s+a...@gmail.com
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=clutter
+pkgver=1.14.0
+pkgrel=1
+pkgdesc=A GObject based library for creating fast, visually rich graphical 
user interfaces
+arch=('i686' 'x86_64')
+url=http://clutter-project.org/;
+options=('!libtool')
+license=('LGPL')
+depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi')
+makedepends=('gobject-introspection')

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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:18:24
  Author: jgc
Revision: 180703

upgpkg: libgweather 3.8.0-1

Modified:
  libgweather/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 22:10:47 UTC (rev 180702)
+++ PKGBUILD2013-03-25 22:18:24 UTC (rev 180703)
@@ -2,12 +2,12 @@
 # Maintainer: Jan de Groot  j...@archlinux.org
 
 pkgname=libgweather
-pkgver=3.6.2
+pkgver=3.8.0
 pkgrel=1
 pkgdesc=Provides access to weather information from the net
 arch=('i686' 'x86_64')
 license=('LGPL')
-depends=('libsoup-gnome' 'gnome-icon-theme' 'gtk3')
+depends=('libsoup' 'gnome-icon-theme' 'gtk3')
 makedepends=('intltool' 'gtk-doc' 'gobject-introspection' 'gnome-common')
 options=('!libtool' '!emptydirs')
 url=http://www.gnome.org/;
@@ -15,7 +15,7 @@
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
 gettext-not-xml.patch
 no_external_gettext.patch)
-sha256sums=('0f2aeff290751590ca51e806c3d09054bf87b86b63b89f5179043a9b3fa8a0b0'
+sha256sums=('c1578dc0ba696e447a3e5bf1b814e1707edd2e1cd460ba8370f8b44f66e04306'
 '40325e0b5464ebb75eaad3c9292c0bab7b15cfefb93011d9ccc0ab82635a9533'
 'f07ac07a70ad4999c3acd5d5b82aabd8831e6a45beb9aaed239f212057ded672')
 



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:18:32
  Author: jgc
Revision: 180704

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

Added:
  libgweather/repos/gnome-unstable-i686/
  libgweather/repos/gnome-unstable-i686/PKGBUILD
(from rev 180703, libgweather/trunk/PKGBUILD)
  libgweather/repos/gnome-unstable-i686/gettext-not-xml.patch
(from rev 180703, libgweather/trunk/gettext-not-xml.patch)
  libgweather/repos/gnome-unstable-i686/libgweather.install
(from rev 180703, libgweather/trunk/libgweather.install)
  libgweather/repos/gnome-unstable-i686/no_external_gettext.patch
(from rev 180703, libgweather/trunk/no_external_gettext.patch)
  libgweather/repos/gnome-unstable-x86_64/
  libgweather/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180703, libgweather/trunk/PKGBUILD)
  libgweather/repos/gnome-unstable-x86_64/gettext-not-xml.patch
(from rev 180703, libgweather/trunk/gettext-not-xml.patch)
  libgweather/repos/gnome-unstable-x86_64/libgweather.install
(from rev 180703, libgweather/trunk/libgweather.install)
  libgweather/repos/gnome-unstable-x86_64/no_external_gettext.patch
(from rev 180703, libgweather/trunk/no_external_gettext.patch)

-+
 gnome-unstable-i686/PKGBUILD|   44 +
 gnome-unstable-i686/gettext-not-xml.patch   |  551 ++
 gnome-unstable-i686/libgweather.install |   18 
 gnome-unstable-i686/no_external_gettext.patch   |   14 
 gnome-unstable-x86_64/PKGBUILD  |   44 +
 gnome-unstable-x86_64/gettext-not-xml.patch |  551 ++
 gnome-unstable-x86_64/libgweather.install   |   18 
 gnome-unstable-x86_64/no_external_gettext.patch |   14 
 8 files changed, 1254 insertions(+)

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


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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:23:34
  Author: jgc
Revision: 180705

upgpkg: libgdata 0.13.3-1

Modified:
  libgdata/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 22:18:32 UTC (rev 180704)
+++ PKGBUILD2013-03-25 22:23:34 UTC (rev 180705)
@@ -2,17 +2,17 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libgdata
-pkgver=0.13.2
+pkgver=0.13.3
 pkgrel=1
 pkgdesc=GLib-based library for accessing online service APIs using the GData 
protocol
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('libsoup-gnome' 'liboauth' 'gcr' 'gnome-online-accounts')
+depends=('libsoup' 'liboauth' 'gcr' 'gnome-online-accounts')
 makedepends=('intltool' 'gobject-introspection')
 url=http://www.gnome.org;
 options=('!libtool')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('3dc4e3529b4bf13d4ae4ef7cc4d74c3b5c90bd96e7d9fa83db2066a2b9a36330')
+sha256sums=('4bf52706b2ab404f8b128e000509acd9937facf26916d3e907a3db8653f73637')
 
 build() {
   cd $pkgname-$pkgver



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:23:41
  Author: jgc
Revision: 180706

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

Added:
  libgdata/repos/gnome-unstable-i686/
  libgdata/repos/gnome-unstable-i686/PKGBUILD
(from rev 180705, libgdata/trunk/PKGBUILD)
  libgdata/repos/gnome-unstable-x86_64/
  libgdata/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180705, libgdata/trunk/PKGBUILD)

+
 gnome-unstable-i686/PKGBUILD   |   26 ++
 gnome-unstable-x86_64/PKGBUILD |   26 ++
 2 files changed, 52 insertions(+)

Copied: libgdata/repos/gnome-unstable-i686/PKGBUILD (from rev 180705, 
libgdata/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 22:23:41 UTC (rev 180706)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libgdata
+pkgver=0.13.3
+pkgrel=1
+pkgdesc=GLib-based library for accessing online service APIs using the GData 
protocol
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libsoup' 'liboauth' 'gcr' 'gnome-online-accounts')
+makedepends=('intltool' 'gobject-introspection')
+url=http://www.gnome.org;
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('4bf52706b2ab404f8b128e000509acd9937facf26916d3e907a3db8653f73637')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: libgdata/repos/gnome-unstable-x86_64/PKGBUILD (from rev 180705, 
libgdata/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 22:23:41 UTC (rev 180706)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libgdata
+pkgver=0.13.3
+pkgrel=1
+pkgdesc=GLib-based library for accessing online service APIs using the GData 
protocol
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libsoup' 'liboauth' 'gcr' 'gnome-online-accounts')
+makedepends=('intltool' 'gobject-introspection')
+url=http://www.gnome.org;
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('4bf52706b2ab404f8b128e000509acd9937facf26916d3e907a3db8653f73637')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:37:03
  Author: jgc
Revision: 180707

upgpkg: evolution-data-server 3.8.0-1

Modified:
  evolution-data-server/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 22:23:41 UTC (rev 180706)
+++ PKGBUILD2013-03-25 22:37:03 UTC (rev 180707)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=evolution-data-server
-pkgver=3.6.4
+pkgver=3.8.0
 pkgrel=1
 pkgdesc=Centralized access to appointments and contacts
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 url=http://www.gnome.org;
 license=('GPL')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('50b4ca21bc57d2fe4933ea3072bf11d5e6069d0ecaacced0bd0f55f098d09f4e')
+sha256sums=('fff7dca02abc52caa62ddbd93a9135c15da3f21c36c25774f3399fb7a6c1d41e')
 
 build() {
   cd $pkgname-$pkgver
@@ -21,7 +21,7 @@
   --localstatedir=/var --with-openldap=yes \
   --libexecdir=/usr/lib/evolution-data-server \
   --with-krb5=/usr --with-libdb=/usr \
-  --enable-vala-bindings
+  --enable-vala-bindings --disable-uoa
   sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
   make
 }



[arch-commits] Commit in evolution-data-server/repos (6 files)

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:37:09
  Author: jgc
Revision: 180708

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

Added:
  evolution-data-server/repos/gnome-unstable-i686/
  evolution-data-server/repos/gnome-unstable-i686/PKGBUILD
(from rev 180707, evolution-data-server/trunk/PKGBUILD)
  evolution-data-server/repos/gnome-unstable-i686/evolution-data-server.install
(from rev 180707, evolution-data-server/trunk/evolution-data-server.install)
  evolution-data-server/repos/gnome-unstable-x86_64/
  evolution-data-server/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180707, evolution-data-server/trunk/PKGBUILD)
  
evolution-data-server/repos/gnome-unstable-x86_64/evolution-data-server.install
(from rev 180707, evolution-data-server/trunk/evolution-data-server.install)

-+
 gnome-unstable-i686/PKGBUILD|   32 ++
 gnome-unstable-i686/evolution-data-server.install   |   11 ++
 gnome-unstable-x86_64/PKGBUILD  |   32 ++
 gnome-unstable-x86_64/evolution-data-server.install |   11 ++
 4 files changed, 86 insertions(+)

Copied: evolution-data-server/repos/gnome-unstable-i686/PKGBUILD (from rev 
180707, evolution-data-server/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 22:37:09 UTC (rev 180708)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=evolution-data-server
+pkgver=3.8.0
+pkgrel=1
+pkgdesc=Centralized access to appointments and contacts
+arch=('i686' 'x86_64')
+depends=('gnome-online-accounts' 'nss' 'krb5' 'libgweather' 'libical' 'db' 
'libgdata')
+makedepends=('intltool' 'gperf' 'gobject-introspection' 'vala')
+options=('!libtool')
+install=$pkgname.install
+url=http://www.gnome.org;
+license=('GPL')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('fff7dca02abc52caa62ddbd93a9135c15da3f21c36c25774f3399fb7a6c1d41e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --with-openldap=yes \
+  --libexecdir=/usr/lib/evolution-data-server \
+  --with-krb5=/usr --with-libdb=/usr \
+  --enable-vala-bindings --disable-uoa
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: 
evolution-data-server/repos/gnome-unstable-i686/evolution-data-server.install 
(from rev 180707, evolution-data-server/trunk/evolution-data-server.install)
===
--- gnome-unstable-i686/evolution-data-server.install   
(rev 0)
+++ gnome-unstable-i686/evolution-data-server.install   2013-03-25 22:37:09 UTC 
(rev 180708)
@@ -0,0 +1,11 @@
+post_install () {
+glib-compile-schemas /usr/share/glib-2.0/schemas
+}
+
+post_upgrade () {
+post_install
+}
+
+post_remove () {
+post_install
+}

Copied: evolution-data-server/repos/gnome-unstable-x86_64/PKGBUILD (from rev 
180707, evolution-data-server/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2013-03-25 22:37:09 UTC (rev 180708)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=evolution-data-server
+pkgver=3.8.0
+pkgrel=1
+pkgdesc=Centralized access to appointments and contacts
+arch=('i686' 'x86_64')
+depends=('gnome-online-accounts' 'nss' 'krb5' 'libgweather' 'libical' 'db' 
'libgdata')
+makedepends=('intltool' 'gperf' 'gobject-introspection' 'vala')
+options=('!libtool')
+install=$pkgname.install
+url=http://www.gnome.org;
+license=('GPL')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('fff7dca02abc52caa62ddbd93a9135c15da3f21c36c25774f3399fb7a6c1d41e')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --with-openldap=yes \
+  --libexecdir=/usr/lib/evolution-data-server \
+  --with-krb5=/usr --with-libdb=/usr \
+  --enable-vala-bindings --disable-uoa
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/if test 
$export_dynamic = yes  test -n $export_dynamic_flag_spec; then/  
func_append compile_command  -Wl,-O1,--as-needed\n  func_append 
finalize_command  -Wl,-O1,--as-needed\n\0/' libtool
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}


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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:46:57
  Author: jgc
Revision: 180709

upgpkg: gtk3 3.8.0-1

Modified:
  gtk3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 22:37:09 UTC (rev 180708)
+++ PKGBUILD2013-03-25 22:46:57 UTC (rev 180709)
@@ -2,7 +2,7 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=gtk3
-pkgver=3.7.14
+pkgver=3.8.0
 pkgrel=1
 pkgdesc=GObject-based multi-platform GUI toolkit (v3)
 arch=(i686 x86_64)
@@ -15,7 +15,7 @@
 license=(LGPL)
 
source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver%.*}/gtk+-$pkgver.tar.xz
 settings.ini)
-sha256sums=('43f5ce8c8b7807494e2723a452eaff1388d8b03de75a3648aa9cbd36bc844cc0'
+sha256sums=('db1345d89d6b5f5bad411b4b2a3b1a18a2a8f98d2ab1b40d43a0197a6e6c252e'
 'c214d3dcdcadda3d642112287524ab3e526ad592b70895c9f3e3733c23701621')
 build() {
 cd gtk+-$pkgver



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

2013-03-25 Thread Jan de Groot
Date: Monday, March 25, 2013 @ 23:47:07
  Author: jgc
Revision: 180710

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

Added:
  gtk3/repos/gnome-unstable-i686/PKGBUILD
(from rev 180709, gtk3/trunk/PKGBUILD)
  gtk3/repos/gnome-unstable-i686/gtk3.install
(from rev 180709, gtk3/trunk/gtk3.install)
  gtk3/repos/gnome-unstable-i686/settings.ini
(from rev 180709, gtk3/trunk/settings.ini)
  gtk3/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 180709, gtk3/trunk/PKGBUILD)
  gtk3/repos/gnome-unstable-x86_64/gtk3.install
(from rev 180709, gtk3/trunk/gtk3.install)
  gtk3/repos/gnome-unstable-x86_64/settings.ini
(from rev 180709, gtk3/trunk/settings.ini)
Deleted:
  gtk3/repos/gnome-unstable-i686/PKGBUILD
  gtk3/repos/gnome-unstable-i686/gtk3.install
  gtk3/repos/gnome-unstable-i686/settings.ini
  gtk3/repos/gnome-unstable-x86_64/PKGBUILD
  gtk3/repos/gnome-unstable-x86_64/gtk3.install
  gtk3/repos/gnome-unstable-x86_64/settings.ini

+
 /PKGBUILD  |   86 +++
 /gtk3.install  |   32 +
 /settings.ini  |4 +
 gnome-unstable-i686/PKGBUILD   |   43 -
 gnome-unstable-i686/gtk3.install   |   16 --
 gnome-unstable-i686/settings.ini   |2 
 gnome-unstable-x86_64/PKGBUILD |   43 -
 gnome-unstable-x86_64/gtk3.install |   16 --
 gnome-unstable-x86_64/settings.ini |2 
 9 files changed, 122 insertions(+), 122 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2013-03-25 22:46:57 UTC (rev 180709)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 22:47:07 UTC (rev 180710)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=gtk3
-pkgver=3.7.14
-pkgrel=1
-pkgdesc=GObject-based multi-platform GUI toolkit (v3)
-arch=(i686 x86_64)
-url=http://www.gtk.org/;
-install=gtk3.install
-depends=(atk cairo gtk-update-icon-cache libcups libxcursor libxinerama 
libxrandr libxi libxcomposite libxdamage pango shared-mime-info colord 
at-spi2-atk wayland libxkbcommon)
-makedepends=(gobject-introspection)
-options=('!libtool')
-backup=(etc/gtk-3.0/settings.ini)
-license=(LGPL)
-source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver%.*}/gtk+-$pkgver.tar.xz
-settings.ini)
-sha256sums=('43f5ce8c8b7807494e2723a452eaff1388d8b03de75a3648aa9cbd36bc844cc0'
-'c214d3dcdcadda3d642112287524ab3e526ad592b70895c9f3e3733c23701621')
-build() {
-cd gtk+-$pkgver
-
-CXX=/bin/false ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---enable-gtk2-dependency \
---disable-schemas-compile \
---enable-x11-backend \
---enable-broadway-backend \
---enable-wayland-backend
-
-#https://bugzilla.gnome.org/show_bug.cgi?id=655517
-sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-
-make
-}
-
-package() {
-cd gtk+-$pkgver
-make DESTDIR=$pkgdir install
-
-install -Dm644 $srcdir/settings.ini $pkgdir/etc/gtk-3.0/settings.ini
-}

Copied: gtk3/repos/gnome-unstable-i686/PKGBUILD (from rev 180709, 
gtk3/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2013-03-25 22:47:07 UTC (rev 180710)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=gtk3
+pkgver=3.8.0
+pkgrel=1
+pkgdesc=GObject-based multi-platform GUI toolkit (v3)
+arch=(i686 x86_64)
+url=http://www.gtk.org/;
+install=gtk3.install
+depends=(atk cairo gtk-update-icon-cache libcups libxcursor libxinerama 
libxrandr libxi libxcomposite libxdamage pango shared-mime-info colord 
at-spi2-atk wayland libxkbcommon)
+makedepends=(gobject-introspection)
+options=('!libtool')
+backup=(etc/gtk-3.0/settings.ini)
+license=(LGPL)
+source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/${pkgver%.*}/gtk+-$pkgver.tar.xz
+settings.ini)
+sha256sums=('db1345d89d6b5f5bad411b4b2a3b1a18a2a8f98d2ab1b40d43a0197a6e6c252e'
+'c214d3dcdcadda3d642112287524ab3e526ad592b70895c9f3e3733c23701621')
+build() {
+cd gtk+-$pkgver
+
+CXX=/bin/false ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--enable-gtk2-dependency \
+--disable-schemas-compile \
+--enable-x11-backend \
+--enable-broadway-backend \
+--enable-wayland-backend
+
+#https://bugzilla.gnome.org/show_bug.cgi?id=655517
+sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+
+make
+}
+
+package() {
+cd gtk+-$pkgver
+make DESTDIR=$pkgdir install
+
+install -Dm644 $srcdir/settings.ini $pkgdir/etc/gtk-3.0/settings.ini
+}

Deleted: gnome-unstable-i686/gtk3.install

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

2013-03-25 Thread Jan de Groot
Date: Tuesday, March 26, 2013 @ 00:03:29
  Author: jgc
Revision: 180711

upgpkg: udisks2 2.1.0-1

Modified:
  udisks2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-03-25 22:47:07 UTC (rev 180710)
+++ PKGBUILD2013-03-25 23:03:29 UTC (rev 180711)
@@ -2,19 +2,19 @@
 # Maintainer: Ionut Biru ib...@archlinux.org
 
 pkgname=udisks2
-pkgver=2.0.1
+pkgver=2.1.0
 pkgrel=1
 pkgdesc=Disk Management Service, version 2
 arch=('i686' 'x86_64')
 url=http://www.freedesktop.org/wiki/Software/udisks;
 license=('GPL2')
 depends=('glib2' 'udev' 'polkit' 'libatasmart' 'eject')
-makedepends=('intltool' 'docbook-xsl' 'gobject-introspection')
+makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'python')
 optdepends=('parted: partition management'
 'gptfdisk: GUID partition table support')
 options=(!libtool)
 source=(http://udisks.freedesktop.org/releases/udisks-$pkgver.tar.bz2)
-sha256sums=('7a6728942d3cd1adc8cd5ee770e8865b293694e9663487861b7b8bf7b495bbbf')
+sha256sums=('310208e5a10335dae4b52a0125c24d31cf292cce3d15cf65da4cd308e38d15a8')
 
 build() {
   cd udisks-$pkgver



  1   2   >