[arch-commits] Commit in sbcl/repos/extra-x86_64 (6 files)

2013-02-18 Thread Jürgen Hötzel
Date: Monday, February 18, 2013 @ 10:01:22
  Author: juergen
Revision: 178213

archrelease: copy trunk to extra-x86_64

Added:
  sbcl/repos/extra-x86_64/PKGBUILD
(from rev 178212, sbcl/trunk/PKGBUILD)
  sbcl/repos/extra-x86_64/arch-fixes.lisp
(from rev 178212, sbcl/trunk/arch-fixes.lisp)
  sbcl/repos/extra-x86_64/sbcl.install
(from rev 178212, sbcl/trunk/sbcl.install)
Deleted:
  sbcl/repos/extra-x86_64/PKGBUILD
  sbcl/repos/extra-x86_64/arch-fixes.lisp
  sbcl/repos/extra-x86_64/sbcl.install

-+
 PKGBUILD|  140 +++---
 arch-fixes.lisp |   42 
 sbcl.install|   36 ++---
 3 files changed, 109 insertions(+), 109 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-18 07:06:48 UTC (rev 178212)
+++ PKGBUILD2013-02-18 09:01:22 UTC (rev 178213)
@@ -1,70 +0,0 @@
-# $Id$
-# Contributor: John Proctor jproc...@prium.net
-# Contributor: Daniel White dan...@whitehouse.id.au
-# Maintainer: Juergen Hoetzel juer...@archlinux.org
-# Contributor: Leslie Polzer (skypher)
-
-pkgname=sbcl
-pkgver=1.1.3
-pkgrel=1
-pkgdesc=Steel Bank Common Lisp
-url=http://www.sbcl.org/;
-arch=('i686' 'x86_64')
-license=('custom')
-depends=('glibc' 'zlib')
-provides=('common-lisp' 'cl-asdf')
-makedepends=('sbcl' 'texinfo')
-install=sbcl.install
-source=(http://downloads.sourceforge.net/project/sbcl/sbcl/$pkgver/$pkgname-$pkgver-source.tar.bz2;
-arch-fixes.lisp)
-md5sums=('a0f12d01697373499597018a1aad431a'
- '7ac0c1936547f4278198b8bf7725204d')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  export CFLAGS+= -D_GNU_SOURCE -DSBCL_HOME=\\\/usr/lib/sbcl\\\
-  export GNUMAKE=make -e
-
-  # build system uses LINKFLAGS and OS_LIBS to build LDFLAGS
-  export LINKFLAGS=$LDFLAGS
-  unset LDFLAGS
-
-  # Make a multi-threaded SBCL, disable LARGEFILE
-  cat customize-target-features.lisp EOF
-(lambda (features)
-  (flet ((enable (x) (pushnew x features))
- (disable (x) (setf features (remove x features
-  (enable :sb-thread)
-  (enable :sb-core-compression)
-  (disable :largefile)))
-EOF
-
-  sh make.sh sbcl
-  make -C doc/manual info
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  INSTALL_ROOT=$pkgdir/usr sh install.sh
-
-  src/runtime/sbcl --core output/sbcl.core --script ${srcdir}/arch-fixes.lisp
-  mv sbcl-new.core ${pkgdir}/usr/lib/sbcl/sbcl.core
-
-  # sources
-  mkdir -p $pkgdir/usr/share/sbcl-source
-  cp -R -t $pkgdir/usr/share/sbcl-source 
$srcdir/$pkgname-$pkgver/{src,contrib}
-
-  # license
-  install -D -m644 $srcdir/$pkgname-$pkgver/COPYING \
-   $pkgdir/usr/share/licenses/$pkgname/license.txt
-
-  # drop unwanted files
-  find $pkgdir \( -name Makefile -o -name .cvsignore \) -delete
-  find $pkgdir/usr/share/sbcl-source -type f \
-\( -name \*.fasl -o -name \*.o -o -name \*.log -o -name \*.so -o -name 
a.out \) -delete
-
-  rm $pkgdir/usr/share/sbcl-source/src/runtime/sbcl{,.nm}
-
-}

Copied: sbcl/repos/extra-x86_64/PKGBUILD (from rev 178212, sbcl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-18 09:01:22 UTC (rev 178213)
@@ -0,0 +1,70 @@
+# $Id$
+# Contributor: John Proctor jproc...@prium.net
+# Contributor: Daniel White dan...@whitehouse.id.au
+# Maintainer: Juergen Hoetzel juer...@archlinux.org
+# Contributor: Leslie Polzer (skypher)
+
+pkgname=sbcl
+pkgver=1.1.4
+pkgrel=1
+pkgdesc=Steel Bank Common Lisp
+url=http://www.sbcl.org/;
+arch=('i686' 'x86_64')
+license=('custom')
+depends=('glibc' 'zlib')
+provides=('common-lisp' 'cl-asdf')
+makedepends=('sbcl' 'texinfo')
+install=sbcl.install
+source=(http://downloads.sourceforge.net/project/sbcl/sbcl/$pkgver/$pkgname-$pkgver-source.tar.bz2;
+arch-fixes.lisp)
+md5sums=('9d82ec89abbaf265fbfc71a24445dd66'
+ '7ac0c1936547f4278198b8bf7725204d')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  export CFLAGS+= -D_GNU_SOURCE -DSBCL_HOME=\\\/usr/lib/sbcl\\\
+  export GNUMAKE=make -e
+
+  # build system uses LINKFLAGS and OS_LIBS to build LDFLAGS
+  export LINKFLAGS=$LDFLAGS
+  unset LDFLAGS
+
+  # Make a multi-threaded SBCL, disable LARGEFILE
+  cat customize-target-features.lisp EOF
+(lambda (features)
+  (flet ((enable (x) (pushnew x features))
+ (disable (x) (setf features (remove x features
+  (enable :sb-thread)
+  (enable :sb-core-compression)
+  (disable :largefile)))
+EOF
+
+  sh make.sh sbcl
+  make -C doc/manual info
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  INSTALL_ROOT=$pkgdir/usr sh install.sh
+
+  src/runtime/sbcl --core output/sbcl.core --script ${srcdir}/arch-fixes.lisp
+  mv sbcl-new.core ${pkgdir}/usr/lib/sbcl/sbcl.core
+
+  # sources
+  mkdir -p $pkgdir/usr/share/sbcl-source
+  cp -R -t $pkgdir/usr/share/sbcl-source 
$srcdir/$pkgname-$pkgver/{src,contrib}
+
+  # license
+  install -D -m644 

[arch-commits] Commit in maxima/repos/extra-x86_64 (6 files)

2013-02-18 Thread Jürgen Hötzel
Date: Monday, February 18, 2013 @ 10:05:06
  Author: juergen
Revision: 178214

archrelease: copy trunk to extra-x86_64

Added:
  maxima/repos/extra-x86_64/PKGBUILD
(from rev 178213, maxima/trunk/PKGBUILD)
  maxima/repos/extra-x86_64/maxima.desktop
(from rev 178213, maxima/trunk/maxima.desktop)
  maxima/repos/extra-x86_64/maxima.install
(from rev 178213, maxima/trunk/maxima.install)
Deleted:
  maxima/repos/extra-x86_64/PKGBUILD
  maxima/repos/extra-x86_64/maxima.desktop
  maxima/repos/extra-x86_64/maxima.install

+
 PKGBUILD   |   92 +++
 maxima.desktop |   22 ++---
 maxima.install |   36 ++---
 3 files changed, 75 insertions(+), 75 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-18 09:01:22 UTC (rev 178213)
+++ PKGBUILD2013-02-18 09:05:06 UTC (rev 178214)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: Damir Perisa da...@archlinux.org
-
-pkgname=maxima
-pkgver=5.28.0
-pkgrel=5
-pkgdesc=Maxima - a sophisticated computer algebra system
-arch=('i686' 'x86_64')
-license=('GPL')
-url=http://maxima.sourceforge.net;
-depends=('sbcl=1.1.3-1' 'texinfo' 'sh')
-makedepends=('python2')
-optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
-# needs rebuild when bash changes version
-# needs a rebuild when sbcl changes version
-options=('!makeflags' '!zipman') # don't zip info pages or they won't work 
inside maxima
-install=maxima.install
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
 $pkgname.desktop)
-sha1sums=('52d7dad4681711a6ead73b72835b177107363b9c'
-  '4398ebb1ec85ccfa12f37516a56d60c26f74b18b')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # set correct python executable to create docs
-  sed -i s|${PYTHONBIN:-python}|python2| doc/info/extract_categories.sh
-
-  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
-   --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-  # install some freedesktop.org compatibility
-  install -Dm644 ${srcdir}/${pkgname}.desktop \
-   ${pkgdir}/usr/share/applications/${pkgname}.desktop
-
-  # make sure, we have a nice icon for the desktop file at the right place ;)
-  install -d ${pkgdir}/usr/share/pixmaps/
-  ln -s /usr/share/maxima/${pkgver}/xmaxima/maxima-new.png \
-   ${pkgdir}/usr/share/pixmaps/${pkgname}.png
-}

Copied: maxima/repos/extra-x86_64/PKGBUILD (from rev 178213, 
maxima/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-18 09:05:06 UTC (rev 178214)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Damir Perisa da...@archlinux.org
+
+pkgname=maxima
+pkgver=5.28.0
+pkgrel=7
+pkgdesc=Maxima - a sophisticated computer algebra system
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://maxima.sourceforge.net;
+depends=('sbcl=1.1.4' 'texinfo' 'sh')
+makedepends=('python2')
+optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via 
/usr/bin/rmaxima' 'tk: graphical xmaxima interface')
+# needs rebuild when bash changes version
+# needs a rebuild when sbcl changes version
+options=('!makeflags' '!zipman') # don't zip info pages or they won't work 
inside maxima
+install=maxima.install
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz;
 $pkgname.desktop)
+sha1sums=('52d7dad4681711a6ead73b72835b177107363b9c'
+  '4398ebb1ec85ccfa12f37516a56d60c26f74b18b')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # set correct python executable to create docs
+  sed -i s|${PYTHONBIN:-python}|python2| doc/info/extract_categories.sh
+
+  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \
+   --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  # install some freedesktop.org compatibility
+  install -Dm644 ${srcdir}/${pkgname}.desktop \
+   ${pkgdir}/usr/share/applications/${pkgname}.desktop
+
+  # make sure, we have a nice icon for the desktop file at the right place ;)
+  install -d ${pkgdir}/usr/share/pixmaps/
+  ln -s /usr/share/maxima/${pkgver}/xmaxima/maxima-new.png \
+   ${pkgdir}/usr/share/pixmaps/${pkgname}.png
+}

Deleted: maxima.desktop
===
--- maxima.desktop  2013-02-18 09:01:22 UTC (rev 178213)
+++ maxima.desktop  2013-02-18 09:05:06 UTC (rev 178214)
@@ -1,11 +0,0 @@
-[Desktop Entry]
-Name=XMaxima
-GenericName=A computer algebra system

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

2013-02-18 Thread Andrea Scarpino
Date: Monday, February 18, 2013 @ 10:51:42
  Author: andrea
Revision: 178215

upgpkg: kwebkitpart 1.3.2-1

Upstream release

Modified:
  kwebkitpart/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 09:05:06 UTC (rev 178214)
+++ PKGBUILD2013-02-18 09:51:42 UTC (rev 178215)
@@ -2,7 +2,7 @@
 # Maintainer: Andrea Scarpino and...@archlinux.org
 
 pkgname=kwebkitpart
-pkgver=1.3.1
+pkgver=1.3.2
 pkgrel=1
 pkgdesc=A WebKit browser component for KDE
 url=https://projects.kde.org/projects/extragear/base/kwebkitpart/;
@@ -12,7 +12,7 @@
 makedepends=('cmake' 'automoc4')
 install=${pkgname}.install
 source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('aec1820fe59ea8f4fe62c81503560f8e')
+md5sums=('c8bfcf46b4b01594d328804b6f55dcc6')
 
 build() {
   mkdir build



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

2013-02-18 Thread Andrea Scarpino
Date: Monday, February 18, 2013 @ 10:51:49
  Author: andrea
Revision: 178216

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

Added:
  kwebkitpart/repos/extra-i686/PKGBUILD
(from rev 178215, kwebkitpart/trunk/PKGBUILD)
  kwebkitpart/repos/extra-i686/kwebkitpart.install
(from rev 178215, kwebkitpart/trunk/kwebkitpart.install)
  kwebkitpart/repos/extra-x86_64/PKGBUILD
(from rev 178215, kwebkitpart/trunk/PKGBUILD)
  kwebkitpart/repos/extra-x86_64/kwebkitpart.install
(from rev 178215, kwebkitpart/trunk/kwebkitpart.install)
Deleted:
  kwebkitpart/repos/extra-i686/PKGBUILD
  kwebkitpart/repos/extra-i686/kwebkitpart.install
  kwebkitpart/repos/extra-x86_64/PKGBUILD
  kwebkitpart/repos/extra-x86_64/kwebkitpart.install

--+
 extra-i686/PKGBUILD  |   58 ++---
 extra-i686/kwebkitpart.install   |   22 +++---
 extra-x86_64/PKGBUILD|   58 ++---
 extra-x86_64/kwebkitpart.install |   22 +++---
 4 files changed, 80 insertions(+), 80 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-02-18 09:51:42 UTC (rev 178215)
+++ extra-i686/PKGBUILD 2013-02-18 09:51:49 UTC (rev 178216)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kwebkitpart
-pkgver=1.3.1
-pkgrel=1
-pkgdesc=A WebKit browser component for KDE
-url=https://projects.kde.org/projects/extragear/base/kwebkitpart/;
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('aec1820fe59ea8f4fe62c81503560f8e')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: kwebkitpart/repos/extra-i686/PKGBUILD (from rev 178215, 
kwebkitpart/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-02-18 09:51:49 UTC (rev 178216)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=kwebkitpart
+pkgver=1.3.2
+pkgrel=1
+pkgdesc=A WebKit browser component for KDE
+url=https://projects.kde.org/projects/extragear/base/kwebkitpart/;
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('kdebase-runtime')
+makedepends=('cmake' 'automoc4')
+install=${pkgname}.install
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
+md5sums=('c8bfcf46b4b01594d328804b6f55dcc6')
+
+build() {
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/kwebkitpart.install
===
--- extra-i686/kwebkitpart.install  2013-02-18 09:51:42 UTC (rev 178215)
+++ extra-i686/kwebkitpart.install  2013-02-18 09:51:49 UTC (rev 178216)
@@ -1,11 +0,0 @@
-post_install() {
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: kwebkitpart/repos/extra-i686/kwebkitpart.install (from rev 178215, 
kwebkitpart/trunk/kwebkitpart.install)
===
--- extra-i686/kwebkitpart.install  (rev 0)
+++ extra-i686/kwebkitpart.install  2013-02-18 09:51:49 UTC (rev 178216)
@@ -0,0 +1,11 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-02-18 09:51:42 UTC (rev 178215)
+++ extra-x86_64/PKGBUILD   2013-02-18 09:51:49 UTC (rev 178216)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=kwebkitpart
-pkgver=1.3.1
-pkgrel=1
-pkgdesc=A WebKit browser component for KDE
-url=https://projects.kde.org/projects/extragear/base/kwebkitpart/;
-arch=('i686' 'x86_64')
-license=('LGPL')
-depends=('kdebase-runtime')
-makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.xz;)
-md5sums=('aec1820fe59ea8f4fe62c81503560f8e')
-
-build() {
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: 

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

2013-02-18 Thread Andrea Scarpino
Date: Monday, February 18, 2013 @ 12:00:56
  Author: andrea
Revision: 178217

Whoops

Modified:
  qt4/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 09:51:49 UTC (rev 178216)
+++ PKGBUILD2013-02-18 11:00:56 UTC (rev 178217)
@@ -105,5 +105,5 @@
 rm 
${pkgdir}/usr/lib/qt4/bin/{lrelease,lupdate,pixeltool,qcollectiongenerator}
 rm 
${pkgdir}/usr/lib/qt4/bin/{qdbus,qdbusviewer,qhelpconverter,qhelpgenerator}
 rm -r ${pkgdir}/usr/lib/qt4/plugins/designer
-rm /usr/share/qt4/translations/{assistant,designer,linguist,qt_help}_*.qm
+rm 
${pkgdir}/usr/share/qt4/translations/{assistant,designer,linguist,qt_help}_*.qm
 }



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

2013-02-18 Thread Gaetan Bisson
Date: Monday, February 18, 2013 @ 12:53:43
  Author: bisson
Revision: 178218

disable cgraph entirely - nothing uses it now - wait for applications to get 
ported first

Modified:
  graphviz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 11:00:56 UTC (rev 178217)
+++ PKGBUILD2013-02-18 11:53:43 UTC (rev 178218)
@@ -5,7 +5,7 @@
 
 pkgname=graphviz
 pkgver=2.30.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Graph visualization software'
 url='http://www.graphviz.org/'
 license=('custom:EPL')
@@ -34,9 +34,6 @@
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
 
-   # we still like the old libgraph.so api
-   sed 's/@WITH_CGRAPH_FALSE@//g' -i lib/graph/Makefile.in
-
sed \
-e '/archdir/s:$:+ '$(echo 
-I/usr/include/ruby-1.9.1/{$CARCH-linux,ruby/backward,})':' \
-e '/CONFIG/s:site:vendor:' \
@@ -46,7 +43,10 @@
export PYTHON=python2
export LUA=lua5.1
 
-   ./configure --prefix=/usr
+   ./configure \
+   --prefix=/usr \
+   --with-cgraph=false # apps need porting to that new api first
+
make || sed '/caml_array_length/d' -i tclpkg/gv/gv_ocaml.cpp # swig 
goes wonky
make
 }



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

2013-02-18 Thread Gaetan Bisson
Date: Monday, February 18, 2013 @ 12:54:31
  Author: bisson
Revision: 178219

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

Added:
  graphviz/repos/staging-i686/LICENSE
(from rev 178218, graphviz/trunk/LICENSE)
  graphviz/repos/staging-i686/PKGBUILD
(from rev 178218, graphviz/trunk/PKGBUILD)
  graphviz/repos/staging-i686/install
(from rev 178218, graphviz/trunk/install)
  graphviz/repos/staging-x86_64/LICENSE
(from rev 178218, graphviz/trunk/LICENSE)
  graphviz/repos/staging-x86_64/PKGBUILD
(from rev 178218, graphviz/trunk/PKGBUILD)
  graphviz/repos/staging-x86_64/install
(from rev 178218, graphviz/trunk/install)
Deleted:
  graphviz/repos/staging-i686/LICENSE
  graphviz/repos/staging-i686/PKGBUILD
  graphviz/repos/staging-i686/install
  graphviz/repos/staging-x86_64/LICENSE
  graphviz/repos/staging-x86_64/PKGBUILD
  graphviz/repos/staging-x86_64/install

-+
 staging-i686/LICENSE|  174 +++---
 staging-i686/PKGBUILD   |  120 +++
 staging-i686/install|   24 +++---
 staging-x86_64/LICENSE  |  174 +++---
 staging-x86_64/PKGBUILD |  120 +++
 staging-x86_64/install  |   24 +++---
 6 files changed, 318 insertions(+), 318 deletions(-)

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


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

2013-02-18 Thread Ray Rashif
Date: Monday, February 18, 2013 @ 14:25:11
  Author: schiv
Revision: 84402

upgpkg: subdownloader 2.0.18-1

upstream release

Modified:
  subdownloader/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 05:16:03 UTC (rev 84401)
+++ PKGBUILD2013-02-18 13:25:11 UTC (rev 84402)
@@ -5,8 +5,7 @@
 # Contributor: Thomas Jost thomas.j...@gmail.com
 
 pkgname=subdownloader
-pkgver=2.0.16_1
-_pkgver=2.0.16-1
+pkgver=2.0.18
 pkgrel=1
 pkgdesc=Automatic download/upload of subtitles using fast hashing
 arch=('any')
@@ -14,33 +13,23 @@
 license=('GPL3')
 depends=('imdbpy' 'kaa-metadata' 'python2-pyqt')
 makedepends=('icu')
+options=('!emptydirs')
 install=$pkgname.install
-source=(http://launchpad.net/$pkgname/trunk/$_pkgver/+download/${pkgname}_$_pkgver.tar.gz;)
-md5sums=('2c5fee6cc97b42c8f1b9dcee329ec962')
+source=(http://launchpad.net/$pkgname/trunk/$pkgver/+download/${pkgname}_$pkgver.orig.tar.gz;)
+md5sums=('11dbc455f542b68e96e2cc539deb3f8f')
 
 build() {
-  cd $srcdir/$pkgname
+  cd $srcdir/$pkgname-$pkgver
 
   # python2 fix
   for file in $(find . -name '*.py' -print); do
 sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
 sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
   done
-
-  # something upstream forgot to do? (gives us missing images_rc.py)
-  # see https://bugs.launchpad.net/subdownloader/+bug/1047425
-  if ! test -f gui/images_rc.py; then
-(
-cd gui
-sed -i -e 's/python /python2 /' \
-  -e 's/pyuic4 /python2-pyuic4 /' Makefile
-make
-)
-  fi
 }
 
 package() {
-  cd $srcdir/$pkgname
+  cd $srcdir/$pkgname-$pkgver
 
   # prepare dirs
   install -d $pkgdir/usr/share/$pkgname \
@@ -67,7 +56,7 @@
 
   # unnecessary directories
   cd $pkgdir/usr/share/$pkgname
-  rm -r debian distribution
+  rm -r distribution
 }
 
 # vim:set ts=2 sw=2 et:



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

2013-02-18 Thread Ray Rashif
Date: Monday, February 18, 2013 @ 14:25:20
  Author: schiv
Revision: 84403

archrelease: copy trunk to community-any

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

---+
 PKGBUILD  |  135 ++--
 subdownloader.install |   22 +++
 2 files changed, 73 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-18 13:25:11 UTC (rev 84402)
+++ PKGBUILD2013-02-18 13:25:20 UTC (rev 84403)
@@ -1,73 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
-# Contributor: Thomas Jost thomas.j...@gmail.com
-
-pkgname=subdownloader
-pkgver=2.0.16_1
-_pkgver=2.0.16-1
-pkgrel=1
-pkgdesc=Automatic download/upload of subtitles using fast hashing
-arch=('any')
-url=http://www.subdownloader.net/;
-license=('GPL3')
-depends=('imdbpy' 'kaa-metadata' 'python2-pyqt')
-makedepends=('icu')
-install=$pkgname.install
-source=(http://launchpad.net/$pkgname/trunk/$_pkgver/+download/${pkgname}_$_pkgver.tar.gz;)
-md5sums=('2c5fee6cc97b42c8f1b9dcee329ec962')
-
-build() {
-  cd $srcdir/$pkgname
-
-  # python2 fix
-  for file in $(find . -name '*.py' -print); do
-sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
-sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
-  done
-
-  # something upstream forgot to do? (gives us missing images_rc.py)
-  # see https://bugs.launchpad.net/subdownloader/+bug/1047425
-  if ! test -f gui/images_rc.py; then
-(
-cd gui
-sed -i -e 's/python /python2 /' \
-  -e 's/pyuic4 /python2-pyuic4 /' Makefile
-make
-)
-  fi
-}
-
-package() {
-  cd $srcdir/$pkgname
-
-  # prepare dirs
-  install -d $pkgdir/usr/share/$pkgname \
-$pkgdir/usr/bin \
-$pkgdir/usr/share/man/man1/
-
-  # manuals
-  gzip subdownloader.1
-  install -D subdownloader.1.gz $pkgdir/usr/share/man/man1/
-
-  # freedesktop.org
-  install -D -m644 subdownloader.desktop \
-$pkgdir/usr/share/applications/subdownloader.desktop
-  rm subdownloader.1.gz subdownloader.desktop
-
-  # runtime and executables
-  cp -a * $pkgdir/usr/share/$pkgname/
-  chmod 755 $pkgdir/usr/share/$pkgname/run.py
-  ln -s /usr/share/$pkgname/run.py \
-$pkgdir/usr/bin/subdownloader
-
-  install -D -m644 gui/images/subdownloader.png \
-$pkgdir/usr/share/pixmaps/subdownloader.png
-
-  # unnecessary directories
-  cd $pkgdir/usr/share/$pkgname
-  rm -r debian distribution
-}
-
-# vim:set ts=2 sw=2 et:

Copied: subdownloader/repos/community-any/PKGBUILD (from rev 84402, 
subdownloader/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-18 13:25:20 UTC (rev 84403)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Geoffroy Carrier geoffroy.carr...@koon.fr
+# Contributor: Thomas Jost thomas.j...@gmail.com
+
+pkgname=subdownloader
+pkgver=2.0.18
+pkgrel=1
+pkgdesc=Automatic download/upload of subtitles using fast hashing
+arch=('any')
+url=http://www.subdownloader.net/;
+license=('GPL3')
+depends=('imdbpy' 'kaa-metadata' 'python2-pyqt')
+makedepends=('icu')
+options=('!emptydirs')
+install=$pkgname.install
+source=(http://launchpad.net/$pkgname/trunk/$pkgver/+download/${pkgname}_$pkgver.orig.tar.gz;)
+md5sums=('11dbc455f542b68e96e2cc539deb3f8f')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # python2 fix
+  for file in $(find . -name '*.py' -print); do
+sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
+sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
+  done
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # prepare dirs
+  install -d $pkgdir/usr/share/$pkgname \
+$pkgdir/usr/bin \
+$pkgdir/usr/share/man/man1/
+
+  # manuals
+  gzip subdownloader.1
+  install -D subdownloader.1.gz $pkgdir/usr/share/man/man1/
+
+  # freedesktop.org
+  install -D -m644 subdownloader.desktop \
+$pkgdir/usr/share/applications/subdownloader.desktop
+  rm subdownloader.1.gz subdownloader.desktop
+
+  # runtime and executables
+  cp -a * $pkgdir/usr/share/$pkgname/
+  chmod 755 $pkgdir/usr/share/$pkgname/run.py
+  ln -s /usr/share/$pkgname/run.py \
+$pkgdir/usr/bin/subdownloader
+
+  install -D -m644 gui/images/subdownloader.png \
+$pkgdir/usr/share/pixmaps/subdownloader.png
+
+  # unnecessary directories
+  cd $pkgdir/usr/share/$pkgname
+  rm -r distribution
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: subdownloader.install

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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 15:05:45
  Author: jgc
Revision: 178220

upgpkg: libgnome 2.32.1-4

Fix pre_remove call to gconfpkg

Modified:
  libgnome/trunk/PKGBUILD
  libgnome/trunk/libgnome.install

--+
 PKGBUILD |6 +++---
 libgnome.install |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 11:54:31 UTC (rev 178219)
+++ PKGBUILD2013-02-18 14:05:45 UTC (rev 178220)
@@ -4,10 +4,10 @@
 pkgbase=libgnome
 pkgname=('libgnome' 'libgnome-data')
 pkgver=2.32.1
-pkgrel=3
+pkgrel=4
 arch=('i686' 'x86_64')
 license=('LGPL')
-makedepends=('intltool' 'gnome-vfs=2.24.4' 'libbonobo=2.32.1' 
'gconf=2.32.3' 'gvfs=1.8.1' 'libcanberra=0.28')
+makedepends=('intltool' 'gnome-vfs' 'libbonobo' 'gconf' 'gvfs' 'libcanberra')
 options=('!libtool' '!emptydirs')
 url=http://www.gnome.org;
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgbase}/2.32/${pkgbase}-${pkgver}.tar.bz2)
@@ -23,7 +23,7 @@
 
 package_libgnome() {
 pkgdesc=Common libraries for GNOME
-depends=(libgnome-data=${pkgver} 'gnome-vfs=2.24.4' 'libbonobo=2.32.1' 
'gconf=2.32.3' 'gvfs=1.8.1' 'libcanberra=0.28')
+depends=(libgnome-data=${pkgver} 'gnome-vfs' 'libbonobo' 'gconf' 'gvfs' 
'libcanberra')
 
 cd ${srcdir}/${pkgbase}-${pkgver}
 

Modified: libgnome.install
===
--- libgnome.install2013-02-18 11:54:31 UTC (rev 178219)
+++ libgnome.install2013-02-18 14:05:45 UTC (rev 178220)
@@ -13,5 +13,5 @@
 }
 
 pre_remove() {
-  usr/sbin/gconfpkg --install ${pkgname}
+  usr/sbin/gconfpkg --uninstall ${pkgname}
 }



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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 15:05:53
  Author: jgc
Revision: 178221

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

Added:
  libgnome/repos/extra-i686/PKGBUILD
(from rev 178220, libgnome/trunk/PKGBUILD)
  libgnome/repos/extra-i686/libgnome.install
(from rev 178220, libgnome/trunk/libgnome.install)
  libgnome/repos/extra-x86_64/PKGBUILD
(from rev 178220, libgnome/trunk/PKGBUILD)
  libgnome/repos/extra-x86_64/libgnome.install
(from rev 178220, libgnome/trunk/libgnome.install)
Deleted:
  libgnome/repos/extra-i686/PKGBUILD
  libgnome/repos/extra-i686/libgnome.install
  libgnome/repos/extra-x86_64/PKGBUILD
  libgnome/repos/extra-x86_64/libgnome.install

---+
 extra-i686/PKGBUILD   |   98 
 extra-i686/libgnome.install   |   34 ++---
 extra-x86_64/PKGBUILD |   98 
 extra-x86_64/libgnome.install |   34 ++---
 4 files changed, 132 insertions(+), 132 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-02-18 14:05:45 UTC (rev 178220)
+++ extra-i686/PKGBUILD 2013-02-18 14:05:53 UTC (rev 178221)
@@ -1,49 +0,0 @@
-# $Id$ 
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgbase=libgnome
-pkgname=('libgnome' 'libgnome-data')
-pkgver=2.32.1
-pkgrel=3
-arch=('i686' 'x86_64')
-license=('LGPL')
-makedepends=('intltool' 'gnome-vfs=2.24.4' 'libbonobo=2.32.1' 
'gconf=2.32.3' 'gvfs=1.8.1' 'libcanberra=0.28')
-options=('!libtool' '!emptydirs')
-url=http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgbase}/2.32/${pkgbase}-${pkgver}.tar.bz2)
-sha256sums=('b2c63916866485793b87398266dd7778548c1734923c272a94d84ee011b6f7a4')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static --disable-esd
-  make
-}
-
-package_libgnome() {
-pkgdesc=Common libraries for GNOME
-depends=(libgnome-data=${pkgver} 'gnome-vfs=2.24.4' 'libbonobo=2.32.1' 
'gconf=2.32.3' 'gvfs=1.8.1' 'libcanberra=0.28')
-
-cd ${srcdir}/${pkgbase}-${pkgver}
-
-make -C libgnome DESTDIR=${pkgdir} install
-make -C monikers DESTDIR=${pkgdir} install
-}
-
-package_libgnome-data() {
-   pkgdesc=Common data from libgnome
-   depends=('gconf')
-   install=libgnome.install
-
-   cd ${srcdir}/${pkgbase}-${pkgver}
-
-   for dir in doc gnome-data po schemas
-   do
-   make -C $dir GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 
DESTDIR=${pkgdir} install
-   done
-
-   install -m755 -d ${pkgdir}/usr/share/gconf/schemas
-   gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgbase}.schemas 
--domain libgnome-2.0 ${pkgdir}/etc/gconf/schemas/*.schemas
-   rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
-}

Copied: libgnome/repos/extra-i686/PKGBUILD (from rev 178220, 
libgnome/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-02-18 14:05:53 UTC (rev 178221)
@@ -0,0 +1,49 @@
+# $Id$ 
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=libgnome
+pkgname=('libgnome' 'libgnome-data')
+pkgver=2.32.1
+pkgrel=4
+arch=('i686' 'x86_64')
+license=('LGPL')
+makedepends=('intltool' 'gnome-vfs' 'libbonobo' 'gconf' 'gvfs' 'libcanberra')
+options=('!libtool' '!emptydirs')
+url=http://www.gnome.org;
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgbase}/2.32/${pkgbase}-${pkgver}.tar.bz2)
+sha256sums=('b2c63916866485793b87398266dd7778548c1734923c272a94d84ee011b6f7a4')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static --disable-esd
+  make
+}
+
+package_libgnome() {
+pkgdesc=Common libraries for GNOME
+depends=(libgnome-data=${pkgver} 'gnome-vfs' 'libbonobo' 'gconf' 'gvfs' 
'libcanberra')
+
+cd ${srcdir}/${pkgbase}-${pkgver}
+
+make -C libgnome DESTDIR=${pkgdir} install
+make -C monikers DESTDIR=${pkgdir} install
+}
+
+package_libgnome-data() {
+   pkgdesc=Common data from libgnome
+   depends=('gconf')
+   install=libgnome.install
+
+   cd ${srcdir}/${pkgbase}-${pkgver}
+
+   for dir in doc gnome-data po schemas
+   do
+   make -C $dir GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 
DESTDIR=${pkgdir} install
+   done
+
+   install -m755 -d ${pkgdir}/usr/share/gconf/schemas
+   gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgbase}.schemas 
--domain libgnome-2.0 ${pkgdir}/etc/gconf/schemas/*.schemas
+   rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
+}

Deleted: extra-i686/libgnome.install
===
--- extra-i686/libgnome.install 2013-02-18 14:05:45 UTC (rev 178220)
+++ extra-i686/libgnome.install 2013-02-18 14:05:53 UTC (rev 178221)
@@ -1,17 +0,0 @@
-pkgname=libgnome
-
-post_install() {
-  usr/sbin/gconfpkg --install 

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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 15:14:42
  Author: jgc
Revision: 178222

upgpkg: orca 3.6.3-2

Add gsettings-desktop-schemas dependency (FS#33689)

Modified:
  orca/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 14:05:53 UTC (rev 178221)
+++ PKGBUILD2013-02-18 14:14:42 UTC (rev 178222)
@@ -5,7 +5,7 @@
 
 pkgname=orca
 pkgver=3.6.3
-pkgrel=1
+pkgrel=2
 pkgdesc=Screen reader for individuals who are blind or visually impaired
 arch=(any)
 license=('LGPL')
@@ -13,7 +13,7 @@
 install=orca.install
 options=('!libtool')
 depends=(gtk3 at-spi2-atk python2-atspi python2-dbus python2-xdg 
speech-dispatcher liblouis brltty
- xorg-xmodmap hicolor-icon-theme)
+ xorg-xmodmap hicolor-icon-theme gsettings-desktop-schemas)
 makedepends=(itstool intltool gnome-doc-utils)
 groups=(gnome-extra)
 
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)



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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 15:14:47
  Author: jgc
Revision: 178223

archrelease: copy trunk to extra-any

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

--+
 PKGBUILD |   62 -
 orca.install |   22 ++--
 2 files changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-18 14:14:42 UTC (rev 178222)
+++ PKGBUILD2013-02-18 14:14:47 UTC (rev 178223)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-# Contributor: William Rea sillywi...@gmail.com
-
-pkgname=orca
-pkgver=3.6.3
-pkgrel=1
-pkgdesc=Screen reader for individuals who are blind or visually impaired
-arch=(any)
-license=('LGPL')
-url=http://www.gnome.org/projects/orca;
-install=orca.install
-options=('!libtool')
-depends=(gtk3 at-spi2-atk python2-atspi python2-dbus python2-xdg 
speech-dispatcher liblouis brltty
- xorg-xmodmap hicolor-icon-theme)
-makedepends=(itstool intltool gnome-doc-utils)
-groups=(gnome-extra)
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('403d2328b5fdbf8ccdd5759cdaf8c757ba897330339ef4429b3695d775d05763')
-
-build() {
-  cd $pkgname-$pkgver
-  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--localstatedir=/var
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: orca/repos/extra-any/PKGBUILD (from rev 178222, orca/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-18 14:14:47 UTC (rev 178223)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: William Rea sillywi...@gmail.com
+
+pkgname=orca
+pkgver=3.6.3
+pkgrel=2
+pkgdesc=Screen reader for individuals who are blind or visually impaired
+arch=(any)
+license=('LGPL')
+url=http://www.gnome.org/projects/orca;
+install=orca.install
+options=('!libtool')
+depends=(gtk3 at-spi2-atk python2-atspi python2-dbus python2-xdg 
speech-dispatcher liblouis brltty
+ xorg-xmodmap hicolor-icon-theme gsettings-desktop-schemas)
+makedepends=(itstool intltool gnome-doc-utils)
+groups=(gnome-extra)
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('403d2328b5fdbf8ccdd5759cdaf8c757ba897330339ef4429b3695d775d05763')
+
+build() {
+  cd $pkgname-$pkgver
+  PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc 
--localstatedir=/var
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: orca.install
===
--- orca.install2013-02-18 14:14:42 UTC (rev 178222)
+++ orca.install2013-02-18 14:14:47 UTC (rev 178223)
@@ -1,11 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}

Copied: orca/repos/extra-any/orca.install (from rev 178222, 
orca/trunk/orca.install)
===
--- orca.install(rev 0)
+++ orca.install2013-02-18 14:14:47 UTC (rev 178223)
@@ -0,0 +1,11 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  post_install $1
+}



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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 15:31:37
  Author: jgc
Revision: 178224

upgpkg: libpwquality 1.2.1-1

Fix python sitedir by specifying python-rev at configure time

Modified:
  libpwquality/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 14:14:47 UTC (rev 178223)
+++ PKGBUILD2013-02-18 14:31:37 UTC (rev 178224)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=libpwquality
-pkgver=1.2.0
+pkgver=1.2.1
 pkgrel=1
 pkgdesc=Library for password quality checking and generating random passwords
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 optdepends=('python2: Python bindings')
 makedepends=('python2')
 
source=(https://fedorahosted.org/releases/l/i/libpwquality/$pkgname-$pkgver.tar.bz2)
-md5sums=('8827419118064539db70090cbed5cb21')
+md5sums=('beb56c9028a713d936e04cc3c50c541d')
 
 build() {
 cd $pkgname-$pkgver
@@ -22,7 +22,8 @@
 PYTHON=python2 ./configure --prefix=/usr \
 --sysconfdir=/etc \
 --localstatedir=/var \
---disable-static
+--disable-static \
+--with-python-rev=2.7
 make
 }
 



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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 15:31:45
  Author: jgc
Revision: 178225

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

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

---+
 extra-i686/PKGBUILD   |   65 
 extra-x86_64/PKGBUILD |   65 
 2 files changed, 66 insertions(+), 64 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-02-18 14:31:37 UTC (rev 178224)
+++ extra-i686/PKGBUILD 2013-02-18 14:31:45 UTC (rev 178225)
@@ -1,32 +0,0 @@
-# $Id: $
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libpwquality
-pkgver=1.2.0
-pkgrel=1
-pkgdesc=Library for password quality checking and generating random passwords
-arch=('i686' 'x86_64')
-url=https://fedorahosted.org/libpwquality/;
-license=('GPL')
-options=('!libtool')
-depends=('cracklib')
-optdepends=('python2: Python bindings')
-makedepends=('python2')
-source=(https://fedorahosted.org/releases/l/i/libpwquality/$pkgname-$pkgver.tar.bz2)
-md5sums=('8827419118064539db70090cbed5cb21')
-
-build() {
-cd $pkgname-$pkgver
-sed -i -e 's/python setup.py/python2 setup.py/' python/Makefile.in
-
-PYTHON=python2 ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-static
-make
-}
-
-package() {
-cd $pkgname-$pkgver
-make DESTDIR=$pkgdir install
-}

Copied: libpwquality/repos/extra-i686/PKGBUILD (from rev 178224, 
libpwquality/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-02-18 14:31:45 UTC (rev 178225)
@@ -0,0 +1,33 @@
+# $Id: $
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libpwquality
+pkgver=1.2.1
+pkgrel=1
+pkgdesc=Library for password quality checking and generating random passwords
+arch=('i686' 'x86_64')
+url=https://fedorahosted.org/libpwquality/;
+license=('GPL')
+options=('!libtool')
+depends=('cracklib')
+optdepends=('python2: Python bindings')
+makedepends=('python2')
+source=(https://fedorahosted.org/releases/l/i/libpwquality/$pkgname-$pkgver.tar.bz2)
+md5sums=('beb56c9028a713d936e04cc3c50c541d')
+
+build() {
+cd $pkgname-$pkgver
+sed -i -e 's/python setup.py/python2 setup.py/' python/Makefile.in
+
+PYTHON=python2 ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--disable-static \
+--with-python-rev=2.7
+make
+}
+
+package() {
+cd $pkgname-$pkgver
+make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-02-18 14:31:37 UTC (rev 178224)
+++ extra-x86_64/PKGBUILD   2013-02-18 14:31:45 UTC (rev 178225)
@@ -1,32 +0,0 @@
-# $Id: $
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libpwquality
-pkgver=1.2.0
-pkgrel=1
-pkgdesc=Library for password quality checking and generating random passwords
-arch=('i686' 'x86_64')
-url=https://fedorahosted.org/libpwquality/;
-license=('GPL')
-options=('!libtool')
-depends=('cracklib')
-optdepends=('python2: Python bindings')
-makedepends=('python2')
-source=(https://fedorahosted.org/releases/l/i/libpwquality/$pkgname-$pkgver.tar.bz2)
-md5sums=('8827419118064539db70090cbed5cb21')
-
-build() {
-cd $pkgname-$pkgver
-sed -i -e 's/python setup.py/python2 setup.py/' python/Makefile.in
-
-PYTHON=python2 ./configure --prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---disable-static
-make
-}
-
-package() {
-cd $pkgname-$pkgver
-make DESTDIR=$pkgdir install
-}

Copied: libpwquality/repos/extra-x86_64/PKGBUILD (from rev 178224, 
libpwquality/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-02-18 14:31:45 UTC (rev 178225)
@@ -0,0 +1,33 @@
+# $Id: $
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libpwquality
+pkgver=1.2.1
+pkgrel=1
+pkgdesc=Library for password quality checking and generating random passwords
+arch=('i686' 'x86_64')
+url=https://fedorahosted.org/libpwquality/;
+license=('GPL')
+options=('!libtool')
+depends=('cracklib')
+optdepends=('python2: Python bindings')
+makedepends=('python2')
+source=(https://fedorahosted.org/releases/l/i/libpwquality/$pkgname-$pkgver.tar.bz2)
+md5sums=('beb56c9028a713d936e04cc3c50c541d')
+
+build() {
+cd $pkgname-$pkgver
+sed -i -e 's/python setup.py/python2 setup.py/' python/Makefile.in
+
+PYTHON=python2 ./configure 

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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 15:46:32
  Author: jgc
Revision: 178226

upgpkg: poppler 0.22.1-2

Move poppler-data to optdepends (FS#31768)

Modified:
  poppler/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 14:31:45 UTC (rev 178225)
+++ PKGBUILD2013-02-18 14:46:32 UTC (rev 178226)
@@ -4,7 +4,7 @@
 pkgbase=poppler
 pkgname=('poppler' 'poppler-glib' 'poppler-qt')
 pkgver=0.22.1
-pkgrel=1
+pkgrel=2
 arch=(i686 x86_64)
 license=('GPL')
 makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'gtk2' 'qt' 
'pkgconfig' 'lcms' 'gobject-introspection' 'icu')
@@ -42,7 +42,8 @@
 
 package_poppler() {
   pkgdesc=PDF rendering library based on xpdf 3.0
-  depends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'lcms' 
'poppler-data')
+  depends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'lcms')
+  optdepends=('poppler-data: encoding data to display PDF documents containing 
CJK characters')
   conflicts=(poppler-qt3${pkgver})
 
   cd ${srcdir}/${pkgbase}-${pkgver}



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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 15:46:39
  Author: jgc
Revision: 178227

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

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

---+
 extra-i686/PKGBUILD   |  163 
 extra-x86_64/PKGBUILD |  163 
 2 files changed, 164 insertions(+), 162 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-02-18 14:46:32 UTC (rev 178226)
+++ extra-i686/PKGBUILD 2013-02-18 14:46:39 UTC (rev 178227)
@@ -1,81 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgbase=poppler
-pkgname=('poppler' 'poppler-glib' 'poppler-qt')
-pkgver=0.22.1
-pkgrel=1
-arch=(i686 x86_64)
-license=('GPL')
-makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'gtk2' 'qt' 
'pkgconfig' 'lcms' 'gobject-introspection' 'icu')
-options=('!libtool' '!emptydirs')
-url=http://poppler.freedesktop.org/;
-_testtag=0d2bfd4af4c76a3bac27ccaff793d9129df7b57a
-source=(http://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.gz
-
http://cgit.freedesktop.org/poppler/test/snapshot/test-${_testtag}.tar.bz2)
-md5sums=('50c259fdda538c1ba94b62aa25f7ec87'
- '9dc64c254a31e570507bdd4ad4ba629a')
-
-build() {
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  sed -i -e '/AC_PATH_XTRA/d' configure.ac
-  sed -i s:AM_CONFIG_HEADER:AC_CONFIG_HEADERS: configure.ac
-
-  autoreconf -fi
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static \
-  --enable-cairo-output \
-  --enable-xpdf-headers \
-  --enable-libjpeg --enable-zlib \
-  --enable-poppler-qt4 \
-  --enable-poppler-glib
-  make
-}
-
-check() {
-  cd ${srcdir}
-  ln -sf test-${_testtag} test
-  cd ${pkgbase}-${pkgver}
-  LANG=en_US.UTF8 make check
-}
-
-package_poppler() {
-  pkgdesc=PDF rendering library based on xpdf 3.0
-  depends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'lcms' 
'poppler-data')
-  conflicts=(poppler-qt3${pkgver})
-
-  cd ${srcdir}/${pkgbase}-${pkgver}
-  sed -e 's/^glib_subdir =.*/glib_subdir =/' \
-  -e 's/^qt4_subdir =.*/qt4_subdir =/' -i Makefile
-  make DESTDIR=${pkgdir} install
-
-  rm -f ${pkgdir}/usr/lib/pkgconfig/poppler-{glib,qt4}.pc
-}
-
-package_poppler-glib() {
-  pkgdesc=Poppler glib bindings
-  depends=(poppler=${pkgver} 'glib2')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}/poppler
-  make DESTDIR=${pkgdir} install-libLTLIBRARIES
-  cd ${srcdir}/${pkgbase}-${pkgver}/glib
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/lib/pkgconfig
-  install -m644 ../poppler-glib.pc ${pkgdir}/usr/lib/pkgconfig/
-  rm -f ${pkgdir}/usr/lib/libpoppler.*
-  rm -f ${pkgdir}/usr/bin/poppler-glib-demo
-}
-
-package_poppler-qt() {
-  pkgdesc=Poppler Qt bindings
-  depends=(poppler=${pkgver} 'qt')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}/poppler
-  make DESTDIR=${pkgdir} install-libLTLIBRARIES
-  cd ${srcdir}/${pkgbase}-${pkgver}/qt4
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/lib/pkgconfig
-  install -m644 ../poppler-qt4.pc ${pkgdir}/usr/lib/pkgconfig/
-  rm -f ${pkgdir}/usr/lib/libpoppler.*
-}

Copied: poppler/repos/extra-i686/PKGBUILD (from rev 178226, 
poppler/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-02-18 14:46:39 UTC (rev 178227)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=poppler
+pkgname=('poppler' 'poppler-glib' 'poppler-qt')
+pkgver=0.22.1
+pkgrel=2
+arch=(i686 x86_64)
+license=('GPL')
+makedepends=('libjpeg' 'gcc-libs' 'cairo' 'fontconfig' 'openjpeg' 'gtk2' 'qt' 
'pkgconfig' 'lcms' 'gobject-introspection' 'icu')
+options=('!libtool' '!emptydirs')
+url=http://poppler.freedesktop.org/;
+_testtag=0d2bfd4af4c76a3bac27ccaff793d9129df7b57a
+source=(http://poppler.freedesktop.org/${pkgbase}-${pkgver}.tar.gz
+
http://cgit.freedesktop.org/poppler/test/snapshot/test-${_testtag}.tar.bz2)
+md5sums=('50c259fdda538c1ba94b62aa25f7ec87'
+ '9dc64c254a31e570507bdd4ad4ba629a')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  sed -i -e '/AC_PATH_XTRA/d' configure.ac
+  sed -i s:AM_CONFIG_HEADER:AC_CONFIG_HEADERS: configure.ac
+
+  autoreconf -fi
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --enable-cairo-output \
+  --enable-xpdf-headers \
+  --enable-libjpeg --enable-zlib \
+  --enable-poppler-qt4 \
+  --enable-poppler-glib
+  make
+}
+
+check() {
+  cd ${srcdir}
+  ln -sf test-${_testtag} test
+  cd ${pkgbase}-${pkgver}
+  LANG=en_US.UTF8 make check
+}
+

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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 16:57:20
  Author: jgc
Revision: 178228

upgpkg: xorg-server 1.13.2.901-1

Update to 1.13.3 RC1. Disable acpid code (FS#31907), Initialize a value to NULL 
to fix xorg segfaulting with vboxvideo (FS#33229)

Added:
  xorg-server/trunk/bug59825.patch
  xorg-server/trunk/xserver-1.6.0-less-acpi-brokenness.patch
Modified:
  xorg-server/trunk/PKGBUILD

--+
 PKGBUILD |   21 -
 bug59825.patch   |   12 
 xserver-1.6.0-less-acpi-brokenness.patch |   25 +
 3 files changed, 49 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 14:46:39 UTC (rev 178227)
+++ PKGBUILD2013-02-18 15:57:20 UTC (rev 178228)
@@ -3,7 +3,7 @@
 
 pkgbase=xorg-server
 pkgname=('xorg-server' 'xorg-server-xephyr' 'xorg-server-xdmx' 
'xorg-server-xvfb' 'xorg-server-xnest' 'xorg-server-common' 'xorg-server-devel')
-pkgver=1.13.2
+pkgver=1.13.2.901
 pkgrel=1
 arch=('i686' 'x86_64')
 license=('custom')
@@ -16,14 +16,17 @@
 source=(${url}/releases/individual/xserver/${pkgbase}-${pkgver}.tar.bz2
 autoconfig-nvidia.patch
 autoconfig-sis.patch
+xserver-1.6.0-less-acpi-brokenness.patch
+bug59825.patch
 xvfb-run
 xvfb-run.1
 10-quirks.conf
-#git-fixes.patch
 use-pixman-glyph-cache.patch)
-sha256sums=('3850adb89e9170ad85aea39d240279494c07779e50cd3cd60126028681209408'
+sha256sums=('5351e2d18949f22c92350ffa037cfc49d3ac09f2ac4d3be6a3ea566d2052723c'
 '66e25f76a7496c429e0aff4b0670f168719bb0ceaeb88c6f2272f2bf3ed21162'
 'd027776fac1f7675b0a9ee817502290b1c45f9c09b0f0a6bb058c35f92361e84'
+'e033f9bcc21980f7f0428e6ed6c362a3d55ad293b05fd6e6c6c1933b86f9e63a'
+'26ee6ff255a60d7c1e136c612925eb63c86e85a4a3a55d531852ad9275526588'
 'ff0156309470fc1d378fd2e104338020a884295e285972cc88e250e031cc35b9'
 '2460adccd3362fefd4cdc5f1c70f332d7b578091fb9167bf88b5f91265bbd776'
 '94612f5c0d34a3b7152915c2e285c7b462e9d8e38d3539bd551a339498eac166'
@@ -32,18 +35,18 @@
 build() {
   cd ${srcdir}/${pkgbase}-${pkgver}
 
-  # Apply upstream fixes from server-1.13 branch
-#  patch -Np1 -i ${srcdir}/git-fixes.patch
-
-  # Use pixman 0.28.0 glyph cache - backported from git master
-#  patch -Np1 -i ${srcdir}/use-pixman-glyph-cache.patch
-
   # Use nouveau/nv/nvidia drivers for nvidia devices
   patch -Np1 -i ${srcdir}/autoconfig-nvidia.patch
 
   # Use unofficial imedia SiS driver for supported SiS devices
   patch -Np0 -i ${srcdir}/autoconfig-sis.patch
 
+  # https://bugs.freedesktop.org/show_bug.cgi?id=59825 - fixes crash with 
vboxvideo
+  patch -Np1 -i ${srcdir}/bug59825.patch
+
+  # From Fedora. Do not build acpid code, it is buggy and we do not need it
+  patch -Np1 -i ${srcdir}/xserver-1.6.0-less-acpi-brokenness.patch
+
   autoreconf -fi
   ./configure --prefix=/usr \
   --enable-ipv6 \

Added: bug59825.patch
===
--- bug59825.patch  (rev 0)
+++ bug59825.patch  2013-02-18 15:57:20 UTC (rev 178228)
@@ -0,0 +1,12 @@
+diff -U 3 -b -d -p -r -- a/glx/glxdri.c b/glx/glxdri.c
+--- a/glx/glxdri.c 2013-01-24 22:14:35.216092949 +0100
 b/glx/glxdri.c 2013-01-24 22:13:48.499427991 +0100
+@@ -971,6 +971,8 @@ __glXDRIscreenProbe(ScreenPtr pScreen)
+ size_t buffer_size;
+ ScrnInfoPtr pScrn = xf86ScreenToScrn(pScreen);
+ 
++framebuffer.base = NULL;
++
+ if (!xf86LoaderCheckSymbol(DRIQueryDirectRenderingCapable) ||
+ !DRIQueryDirectRenderingCapable(pScreen, isCapable) || !isCapable) {
+ LogMessage(X_INFO,
\ No newline at end of file

Added: xserver-1.6.0-less-acpi-brokenness.patch
===
--- xserver-1.6.0-less-acpi-brokenness.patch(rev 0)
+++ xserver-1.6.0-less-acpi-brokenness.patch2013-02-18 15:57:20 UTC (rev 
178228)
@@ -0,0 +1,25 @@
+From 0002cde5312e785529b2901d7f8a82d5623e4ca7 Mon Sep 17 00:00:00 2001
+From: Adam Jackson a...@redhat.com
+Date: Wed, 9 Nov 2011 11:52:06 +1000
+Subject: [PATCH 2/7] Don't build the ACPI code.
+
+No good can come of this.
+---
+ configure.ac |1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index a12783c..54f4464 100644
+--- a/configure.ac
 b/configure.ac
+@@ -1620,7 +1620,6 @@ if test x$XORG = xyes; then
+   linux_alpha=yes
+   ;;
+ i*86|amd64*|x86_64*|ia64*)
+-  linux_acpi=yes
+   ;;
+ *)
+   ;;
+-- 
+1.7.10.1
+



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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 16:57:36
  Author: jgc
Revision: 178229

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

Added:
  xorg-server/repos/testing-i686/
  xorg-server/repos/testing-i686/10-quirks.conf
(from rev 178228, xorg-server/trunk/10-quirks.conf)
  xorg-server/repos/testing-i686/PKGBUILD
(from rev 178228, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-i686/autoconfig-nvidia.patch
(from rev 178228, xorg-server/trunk/autoconfig-nvidia.patch)
  xorg-server/repos/testing-i686/autoconfig-sis.patch
(from rev 178228, xorg-server/trunk/autoconfig-sis.patch)
  xorg-server/repos/testing-i686/bug59825.patch
(from rev 178228, xorg-server/trunk/bug59825.patch)
  xorg-server/repos/testing-i686/git-fixes.patch
(from rev 178228, xorg-server/trunk/git-fixes.patch)
  xorg-server/repos/testing-i686/use-pixman-glyph-cache.patch
(from rev 178228, xorg-server/trunk/use-pixman-glyph-cache.patch)
  xorg-server/repos/testing-i686/xserver-1.6.0-less-acpi-brokenness.patch
(from rev 178228, 
xorg-server/trunk/xserver-1.6.0-less-acpi-brokenness.patch)
  xorg-server/repos/testing-i686/xvfb-run
(from rev 178228, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-i686/xvfb-run.1
(from rev 178228, xorg-server/trunk/xvfb-run.1)
  xorg-server/repos/testing-x86_64/
  xorg-server/repos/testing-x86_64/10-quirks.conf
(from rev 178228, xorg-server/trunk/10-quirks.conf)
  xorg-server/repos/testing-x86_64/PKGBUILD
(from rev 178228, xorg-server/trunk/PKGBUILD)
  xorg-server/repos/testing-x86_64/autoconfig-nvidia.patch
(from rev 178228, xorg-server/trunk/autoconfig-nvidia.patch)
  xorg-server/repos/testing-x86_64/autoconfig-sis.patch
(from rev 178228, xorg-server/trunk/autoconfig-sis.patch)
  xorg-server/repos/testing-x86_64/bug59825.patch
(from rev 178228, xorg-server/trunk/bug59825.patch)
  xorg-server/repos/testing-x86_64/git-fixes.patch
(from rev 178228, xorg-server/trunk/git-fixes.patch)
  xorg-server/repos/testing-x86_64/use-pixman-glyph-cache.patch
(from rev 178228, xorg-server/trunk/use-pixman-glyph-cache.patch)
  xorg-server/repos/testing-x86_64/xserver-1.6.0-less-acpi-brokenness.patch
(from rev 178228, 
xorg-server/trunk/xserver-1.6.0-less-acpi-brokenness.patch)
  xorg-server/repos/testing-x86_64/xvfb-run
(from rev 178228, xorg-server/trunk/xvfb-run)
  xorg-server/repos/testing-x86_64/xvfb-run.1
(from rev 178228, xorg-server/trunk/xvfb-run.1)

-+
 testing-i686/10-quirks.conf |   10 
 testing-i686/PKGBUILD   |  210 
 testing-i686/autoconfig-nvidia.patch|   28 
 testing-i686/autoconfig-sis.patch   |   21 
 testing-i686/bug59825.patch |   12 
 testing-i686/git-fixes.patch|  643 ++
 testing-i686/use-pixman-glyph-cache.patch   |  270 +
 testing-i686/xserver-1.6.0-less-acpi-brokenness.patch   |   25 
 testing-i686/xvfb-run   |  180 +++
 testing-i686/xvfb-run.1 |  282 ++
 testing-x86_64/10-quirks.conf   |   10 
 testing-x86_64/PKGBUILD |  210 
 testing-x86_64/autoconfig-nvidia.patch  |   28 
 testing-x86_64/autoconfig-sis.patch |   21 
 testing-x86_64/bug59825.patch   |   12 
 testing-x86_64/git-fixes.patch  |  643 ++
 testing-x86_64/use-pixman-glyph-cache.patch |  270 +
 testing-x86_64/xserver-1.6.0-less-acpi-brokenness.patch |   25 
 testing-x86_64/xvfb-run |  180 +++
 testing-x86_64/xvfb-run.1   |  282 ++
 20 files changed, 3362 insertions(+)

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


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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 17:07:40
  Author: jgc
Revision: 178230

upgpkg: gtkhtml4 4.6.4-1

Modified:
  gtkhtml4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 15:57:36 UTC (rev 178229)
+++ PKGBUILD2013-02-18 16:07:40 UTC (rev 178230)
@@ -3,7 +3,7 @@
 
 pkgname=gtkhtml4
 _pkgbasename=gtkhtml
-pkgver=4.6.2
+pkgver=4.6.4
 pkgrel=1
 pkgdesc=A lightweight HTML renderer/editor widget for GTK3
 arch=(i686 x86_64)
@@ -13,7 +13,7 @@
 url=http://www.gnome.org;
 options=('!libtool')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
-sha256sums=('d0578892a5755f3ab661f0312d1a1376f4926afe72e65d83b6890011bc1f9fd7')
+sha256sums=('8c75278a4382150ae2d6e477cbcebf541367be05176edd05669f046e24736a0d')
 
 build() {
 cd $_pkgbasename-$pkgver



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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 17:07:47
  Author: jgc
Revision: 178231

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

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

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-02-18 16:07:40 UTC (rev 178230)
+++ extra-i686/PKGBUILD 2013-02-18 16:07:47 UTC (rev 178231)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=gtkhtml4
-_pkgbasename=gtkhtml
-pkgver=4.6.2
-pkgrel=1
-pkgdesc=A lightweight HTML renderer/editor widget for GTK3
-arch=(i686 x86_64)
-license=('GPL')
-depends=('gtk3' 'enchant' 'iso-codes' 'gnome-icon-theme' 'libsoup')
-makedepends=('intltool')
-url=http://www.gnome.org;
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
-sha256sums=('d0578892a5755f3ab661f0312d1a1376f4926afe72e65d83b6890011bc1f9fd7')
-
-build() {
-cd $_pkgbasename-$pkgver
-./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/gtkhtml4 \
---localstatedir=/var --disable-static
-make
-}
-
-package() {
-cd $_pkgbasename-$pkgver
-make DESTDIR=$pkgdir install
-}

Copied: gtkhtml4/repos/extra-i686/PKGBUILD (from rev 178230, 
gtkhtml4/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2013-02-18 16:07:47 UTC (rev 178231)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=gtkhtml4
+_pkgbasename=gtkhtml
+pkgver=4.6.4
+pkgrel=1
+pkgdesc=A lightweight HTML renderer/editor widget for GTK3
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gtk3' 'enchant' 'iso-codes' 'gnome-icon-theme' 'libsoup')
+makedepends=('intltool')
+url=http://www.gnome.org;
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
+sha256sums=('8c75278a4382150ae2d6e477cbcebf541367be05176edd05669f046e24736a0d')
+
+build() {
+cd $_pkgbasename-$pkgver
+./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/gtkhtml4 \
+--localstatedir=/var --disable-static
+make
+}
+
+package() {
+cd $_pkgbasename-$pkgver
+make DESTDIR=$pkgdir install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2013-02-18 16:07:40 UTC (rev 178230)
+++ extra-x86_64/PKGBUILD   2013-02-18 16:07:47 UTC (rev 178231)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru ib...@archlinux.org
-
-pkgname=gtkhtml4
-_pkgbasename=gtkhtml
-pkgver=4.6.2
-pkgrel=1
-pkgdesc=A lightweight HTML renderer/editor widget for GTK3
-arch=(i686 x86_64)
-license=('GPL')
-depends=('gtk3' 'enchant' 'iso-codes' 'gnome-icon-theme' 'libsoup')
-makedepends=('intltool')
-url=http://www.gnome.org;
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
-sha256sums=('d0578892a5755f3ab661f0312d1a1376f4926afe72e65d83b6890011bc1f9fd7')
-
-build() {
-cd $_pkgbasename-$pkgver
-./configure --prefix=/usr --sysconfdir=/etc \
---libexecdir=/usr/lib/gtkhtml4 \
---localstatedir=/var --disable-static
-make
-}
-
-package() {
-cd $_pkgbasename-$pkgver
-make DESTDIR=$pkgdir install
-}

Copied: gtkhtml4/repos/extra-x86_64/PKGBUILD (from rev 178230, 
gtkhtml4/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2013-02-18 16:07:47 UTC (rev 178231)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Ionut Biru ib...@archlinux.org
+
+pkgname=gtkhtml4
+_pkgbasename=gtkhtml
+pkgver=4.6.4
+pkgrel=1
+pkgdesc=A lightweight HTML renderer/editor widget for GTK3
+arch=(i686 x86_64)
+license=('GPL')
+depends=('gtk3' 'enchant' 'iso-codes' 'gnome-icon-theme' 'libsoup')
+makedepends=('intltool')
+url=http://www.gnome.org;
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
+sha256sums=('8c75278a4382150ae2d6e477cbcebf541367be05176edd05669f046e24736a0d')
+
+build() {
+cd $_pkgbasename-$pkgver
+./configure --prefix=/usr --sysconfdir=/etc \
+--libexecdir=/usr/lib/gtkhtml4 \
+--localstatedir=/var --disable-static
+make
+}
+
+package() {
+cd $_pkgbasename-$pkgver
+make 

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

2013-02-18 Thread Sven-Hendrik Haase
Date: Monday, February 18, 2013 @ 17:22:44
  Author: svenstaro
Revision: 84404

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

Added:
  cegui/repos/community-i686/PKGBUILD
(from rev 84403, cegui/trunk/PKGBUILD)
  cegui/repos/community-i686/cegui-0.7.6-python-detection.patch
(from rev 84403, cegui/trunk/cegui-0.7.6-python-detection.patch)
  cegui/repos/community-x86_64/PKGBUILD
(from rev 84403, cegui/trunk/PKGBUILD)
  cegui/repos/community-x86_64/cegui-0.7.6-python-detection.patch
(from rev 84403, cegui/trunk/cegui-0.7.6-python-detection.patch)
Deleted:
  cegui/repos/community-i686/PKGBUILD
  cegui/repos/community-i686/cegui-0.7.6-python-detection.patch
  cegui/repos/community-x86_64/PKGBUILD
  cegui/repos/community-x86_64/cegui-0.7.6-python-detection.patch

-+
 community-i686/PKGBUILD |  112 +-
 community-i686/cegui-0.7.6-python-detection.patch   |   22 +--
 community-x86_64/PKGBUILD   |  112 +-
 community-x86_64/cegui-0.7.6-python-detection.patch |   22 +--
 4 files changed, 134 insertions(+), 134 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-02-18 13:25:20 UTC (rev 84403)
+++ community-i686/PKGBUILD 2013-02-18 16:22:44 UTC (rev 84404)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Juergen Hoetzel juer...@archlinux.org 
-# Contributor: William Rea sillywi...@gmail.com, 
-# Contributor: Bjorn Lindeijer bj...@lindeijer.nl
-
-pkgbase=cegui
-pkgname=('cegui' 'cegui-docs')
-pkgver=0.7.9
-pkgrel=1
-pkgdesc=A free library providing windowing and widgets for graphics 
APIs/engines
-arch=('i686' 'x86_64')
-url=http://crayzedsgui.sourceforge.net;
-#options=('!libtool')
-license=(MIT)
-depends=('pcre' 'glew' 'expat' 'freetype2' 'libxml2' 'devil' 'freeglut' 
'lua51' 'silly')
-makedepends=('python2' 'doxygen' 'ogre' 'gtk2' 'boost' 'graphviz')
-optdepends=(python2: python bindings
-ogre: ogre module
-gtk2: gtk2 module)
-#irrlicht: irrlicht module) maybe again at some point
-options=(!libtool)
-source=(http://downloads.sourceforge.net/crayzedsgui/CEGUI-$pkgver.tar.gz)
-md5sums=('a8b682daf82e383edc169c2e6eb2b321')
-
-build() {
-  cd $srcdir/CEGUI-${pkgver}
-
-  ./bootstrap
-
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---enable-null-renderer \
---with-gtk2
-
-  make
-}
-
-package_cegui() {
-  cd $srcdir/CEGUI-${pkgver}
- 
-  make DESTDIR=${pkgdir} install
-
-  install -Dm644 doc/COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_cegui-docs() {
-  pkgdesc=Documentation for cegui
-  depends=()
-
-  cd $srcdir/CEGUI-${pkgver}
-
-  cd doc/doxygen  doxygen
-  cd ..  make DESTDIR=${pkgdir} install-html
-  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
-}

Copied: cegui/repos/community-i686/PKGBUILD (from rev 84403, 
cegui/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-02-18 16:22:44 UTC (rev 84404)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Juergen Hoetzel juer...@archlinux.org 
+# Contributor: William Rea sillywi...@gmail.com, 
+# Contributor: Bjorn Lindeijer bj...@lindeijer.nl
+
+pkgbase=cegui
+pkgname=('cegui' 'cegui-docs')
+pkgver=0.7.9
+pkgrel=1
+pkgdesc=A free library providing windowing and widgets for graphics 
APIs/engines
+arch=('i686' 'x86_64')
+url=http://crayzedsgui.sourceforge.net;
+#options=('!libtool')
+license=(MIT)
+depends=('pcre' 'glew' 'expat' 'freetype2' 'libxml2' 'devil' 'freeglut' 
'lua51' 'silly')
+makedepends=('python2' 'doxygen' 'ogre' 'gtk2' 'boost' 'graphviz')
+optdepends=(python2: python bindings
+ogre: ogre module
+gtk2: gtk2 module)
+#irrlicht: irrlicht module) maybe again at some point
+options=(!libtool)
+source=(http://downloads.sourceforge.net/crayzedsgui/CEGUI-$pkgver.tar.gz)
+md5sums=('a8b682daf82e383edc169c2e6eb2b321')
+
+build() {
+  cd $srcdir/CEGUI-${pkgver}
+
+  ./bootstrap
+
+  ./configure --prefix=/usr \
+--sysconfdir=/etc \
+--enable-null-renderer \
+--with-gtk2
+
+  make
+}
+
+package_cegui() {
+  cd $srcdir/CEGUI-${pkgver}
+ 
+  make DESTDIR=${pkgdir} install
+
+  install -Dm644 doc/COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_cegui-docs() {
+  pkgdesc=Documentation for cegui
+  depends=()
+
+  cd $srcdir/CEGUI-${pkgver}
+
+  cd doc/doxygen  doxygen
+  cd ..  make DESTDIR=${pkgdir} install-html
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+}

Deleted: community-i686/cegui-0.7.6-python-detection.patch
===
--- 

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

2013-02-18 Thread Ionuț Mircea Bîru
Date: Monday, February 18, 2013 @ 17:28:11
  Author: ioni
Revision: 178232

new snapshot
fixes vdpau crash

Modified:
  mplayer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 16:07:47 UTC (rev 178231)
+++ PKGBUILD2013-02-18 16:28:11 UTC (rev 178232)
@@ -4,7 +4,7 @@
 
 pkgbase=mplayer
 pkgname=('mplayer' 'mencoder')
-pkgver=35915
+pkgver=35920
 pkgrel=1
 arch=('i686' 'x86_64')
 makedepends=('libxxf86dga' 'libxxf86vm' 'libmad' 'libxinerama' 'sdl' 'lame' 
'libtheora' 'xvidcore' 'libmng' 'libxss' 'libgl' 'smbclient'
@@ -14,7 +14,7 @@
 url=http://www.mplayerhq.hu/;
 options=(!buildflags !emptydirs)
 
source=(ftp://ftp.archlinux.org/other/packages/$pkgbase/$pkgbase-$pkgver.tar.xz 
mplayer.desktop cdio-includes.patch)
-md5sums=('166dc6c426d38698a860dd07403b55b6'
+md5sums=('5f96e829d711e7d1ea65e324710dca50'
  'c0d6ef795cf6de48e3b87ff7c23f0319'
  '7b5be7191aafbea64218dc4916343bbc')
 



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

2013-02-18 Thread Ionuț Mircea Bîru
Date: Monday, February 18, 2013 @ 17:28:48
  Author: ioni
Revision: 178233

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

Added:
  mplayer/repos/extra-i686/PKGBUILD
(from rev 178232, mplayer/trunk/PKGBUILD)
  mplayer/repos/extra-i686/cdio-includes.patch
(from rev 178232, mplayer/trunk/cdio-includes.patch)
  mplayer/repos/extra-i686/mplayer.desktop
(from rev 178232, mplayer/trunk/mplayer.desktop)
  mplayer/repos/extra-i686/mplayer.install
(from rev 178232, mplayer/trunk/mplayer.install)
  mplayer/repos/extra-i686/mplayer.png
(from rev 178232, mplayer/trunk/mplayer.png)
  mplayer/repos/extra-x86_64/PKGBUILD
(from rev 178232, mplayer/trunk/PKGBUILD)
  mplayer/repos/extra-x86_64/cdio-includes.patch
(from rev 178232, mplayer/trunk/cdio-includes.patch)
  mplayer/repos/extra-x86_64/mplayer.desktop
(from rev 178232, mplayer/trunk/mplayer.desktop)
  mplayer/repos/extra-x86_64/mplayer.install
(from rev 178232, mplayer/trunk/mplayer.install)
  mplayer/repos/extra-x86_64/mplayer.png
(from rev 178232, mplayer/trunk/mplayer.png)
Deleted:
  mplayer/repos/extra-i686/PKGBUILD
  mplayer/repos/extra-i686/cdio-includes.patch
  mplayer/repos/extra-i686/mplayer.desktop
  mplayer/repos/extra-i686/mplayer.install
  mplayer/repos/extra-i686/mplayer.png
  mplayer/repos/extra-x86_64/PKGBUILD
  mplayer/repos/extra-x86_64/cdio-includes.patch
  mplayer/repos/extra-x86_64/mplayer.desktop
  mplayer/repos/extra-x86_64/mplayer.install
  mplayer/repos/extra-x86_64/mplayer.png

--+
 extra-i686/PKGBUILD  |  152 ++---
 extra-i686/cdio-includes.patch   |   86 ++--
 extra-i686/mplayer.desktop   |   42 +-
 extra-i686/mplayer.install   |   22 ++---
 extra-x86_64/PKGBUILD|  152 ++---
 extra-x86_64/cdio-includes.patch |   86 ++--
 extra-x86_64/mplayer.desktop |   42 +-
 extra-x86_64/mplayer.install |   22 ++---
 8 files changed, 302 insertions(+), 302 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2013-02-18 16:28:11 UTC (rev 178232)
+++ extra-i686/PKGBUILD 2013-02-18 16:28:48 UTC (rev 178233)
@@ -1,76 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-# Contributor: Hugo Doria h...@archlinux.org
-
-pkgbase=mplayer
-pkgname=('mplayer' 'mencoder')
-pkgver=35915
-pkgrel=1
-arch=('i686' 'x86_64')
-makedepends=('libxxf86dga' 'libxxf86vm' 'libmad' 'libxinerama' 'sdl' 'lame' 
'libtheora' 'xvidcore' 'libmng' 'libxss' 'libgl' 'smbclient'
-'aalib' 'jack' 'libcaca' 'x264' 'faac' 'faad2' 'lirc-utils'  'libxvmc' 'enca' 
'libvdpau' 'opencore-amr' 'libdca' 'a52dec' 'schroedinger' 'libvpx'
-'libpulse' 'fribidi' 'unzip' 'mesa' 'live-media' 'yasm' 'git' 'fontconfig' 
'mpg123' 'ladspa' 'libass' 'libbluray' 'libcdio-paranoia' 'subversion')
-license=('GPL')
-url=http://www.mplayerhq.hu/;
-options=(!buildflags !emptydirs)
-source=(ftp://ftp.archlinux.org/other/packages/$pkgbase/$pkgbase-$pkgver.tar.xz
 mplayer.desktop cdio-includes.patch)
-md5sums=('166dc6c426d38698a860dd07403b55b6'
- 'c0d6ef795cf6de48e3b87ff7c23f0319'
- '7b5be7191aafbea64218dc4916343bbc')
-
-build() {
-cd $srcdir/$pkgbase
-patch -Np0 -i ../cdio-includes.patch
-
-./configure --prefix=/usr \
---enable-runtime-cpudetection \
---disable-gui \
---disable-arts \
---disable-liblzo \
---disable-speex \
---disable-openal \
---disable-libdv \
---disable-musepack \
---disable-esd \
---disable-mga \
---disable-ass-internal \
---disable-cdparanoia \
---enable-xvmc \
---enable-radio \
---enable-radio-capture \
---language=all \
---confdir=/etc/mplayer 
-[ $CARCH = i686 ]   sed 's|-march=i486|-march=i686|g' -i config.mak
-
-make
-}
-
-package_mplayer() {
-pkgdesc=A movie player for linux
-install=mplayer.install
-backup=('etc/mplayer/codecs.conf' 'etc/mplayer/input.conf')
-depends=('desktop-file-utils' 'ttf-dejavu' 'enca' 'libxss' 'a52dec' 
'libvpx' 'lirc-utils' 'x264' 'libmng' 'libdca' 'aalib' 'lame' 'fontconfig'  
'libgl'
-'libxinerama' 'libvdpau' 'libpulse' 'smbclient' 'xvidcore' 'opencore-amr' 
'jack' 'libmad' 'sdl' 'libtheora' 'libcaca' 'libxxf86dga' 'fribidi'
-'libjpeg' 'faac' 'faad2' 'libxvmc' 'schroedinger' 'mpg123' 'libass' 
'libxxf86vm' 'libbluray' 'libcdio-paranoia')
-
-cd $srcdir/$pkgbase
-
-make DESTDIR=$pkgdir install-mplayer install-mplayer-man
-install -Dm644 etc/{codecs.conf,input.conf,example.conf} 
$pkgdir/etc/mplayer/
-install -dm755 $pkgdir/usr/share/mplayer/
-ln -s /usr/share/fonts/TTF/DejaVuSans.ttf 
$pkgdir/usr/share/mplayer/subfont.ttf
-rm -rf $pkgdir/usr/share/mplayer/font
-#desktop file  FS#14770
-install -Dm644 $srcdir/mplayer.desktop 

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

2013-02-18 Thread Sven-Hendrik Haase
Date: Monday, February 18, 2013 @ 17:30:37
  Author: svenstaro
Revision: 84405

upgpkg: lib32-libphobos 2.062-1

Updating to 2.062

Modified:
  lib32-libphobos/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 16:22:44 UTC (rev 84404)
+++ PKGBUILD2013-02-18 16:30:37 UTC (rev 84405)
@@ -7,15 +7,16 @@
 
 pkgname=('lib32-libphobos')
 _pkgname=dmd
-pkgver=2.061
+pkgver=2.062
 pkgrel=1
 pkgdesc=The phobos D standard library for DMD (32-bit)
 arch=('x86_64')
 url=http://www.digitalmars.com/d/2.0/;
-source=(http://ftp.digitalmars.com/$_pkgname.$pkgver.zip)
+#source=(http://ftp.digitalmars.com/$_pkgname.$pkgver.zip)
+source=(http://downloads.dlang.org.s3-website-us-east-1.amazonaws.com/releases/2013/dmd.${pkgver}.zip)
 makedepends=('dmd')
 license=('custom')
-md5sums=('823aba8a7e0fbb242bb2a2d922ced5c6')
+md5sums=('fd2211206532ab41a8aef764a9225d3c')
 
 build() {
 cd $srcdir/dmd2/src/



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

2013-02-18 Thread Sven-Hendrik Haase
Date: Monday, February 18, 2013 @ 17:30:43
  Author: svenstaro
Revision: 84406

archrelease: copy trunk to multilib-x86_64

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

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-18 16:30:37 UTC (rev 84405)
+++ PKGBUILD2013-02-18 16:30:43 UTC (rev 84406)
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 72006 2012-06-05 14:34:01Z svenstaro $
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Chris Brannon cmbranno...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Anders Bergh ande...@gmail.com
-# Contributor: Alexander Fehr pizzapunk gmail com
-
-pkgname=('lib32-libphobos')
-_pkgname=dmd
-pkgver=2.061
-pkgrel=1
-pkgdesc=The phobos D standard library for DMD (32-bit)
-arch=('x86_64')
-url=http://www.digitalmars.com/d/2.0/;
-source=(http://ftp.digitalmars.com/$_pkgname.$pkgver.zip)
-makedepends=('dmd')
-license=('custom')
-md5sums=('823aba8a7e0fbb242bb2a2d922ced5c6')
-
-build() {
-cd $srcdir/dmd2/src/
-
-cd druntime
-make -f posix.mak MODEL=32
-
-cd ../phobos
-make -f posix.mak MODEL=32
-}
-
-package() {
-  install -Dm644 $srcdir/dmd2/src/druntime/lib/libdruntime-linux32.a 
$pkgdir/usr/lib32/libdruntime.a
-  install -Dm644 
$srcdir/dmd2/src/phobos/generated/linux/release/32/libphobos2.a 
$pkgdir/usr/lib32/libphobos2.a
-
-  install -Dm644 $srcdir/dmd2/src/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: lib32-libphobos/repos/multilib-x86_64/PKGBUILD (from rev 84405, 
lib32-libphobos/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-18 16:30:43 UTC (rev 84406)
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 72006 2012-06-05 14:34:01Z svenstaro $
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Chris Brannon cmbranno...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Anders Bergh ande...@gmail.com
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgname=('lib32-libphobos')
+_pkgname=dmd
+pkgver=2.062
+pkgrel=1
+pkgdesc=The phobos D standard library for DMD (32-bit)
+arch=('x86_64')
+url=http://www.digitalmars.com/d/2.0/;
+#source=(http://ftp.digitalmars.com/$_pkgname.$pkgver.zip)
+source=(http://downloads.dlang.org.s3-website-us-east-1.amazonaws.com/releases/2013/dmd.${pkgver}.zip)
+makedepends=('dmd')
+license=('custom')
+md5sums=('fd2211206532ab41a8aef764a9225d3c')
+
+build() {
+cd $srcdir/dmd2/src/
+
+cd druntime
+make -f posix.mak MODEL=32
+
+cd ../phobos
+make -f posix.mak MODEL=32
+}
+
+package() {
+  install -Dm644 $srcdir/dmd2/src/druntime/lib/libdruntime-linux32.a 
$pkgdir/usr/lib32/libdruntime.a
+  install -Dm644 
$srcdir/dmd2/src/phobos/generated/linux/release/32/libphobos2.a 
$pkgdir/usr/lib32/libphobos2.a
+
+  install -Dm644 $srcdir/dmd2/src/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 17:38:15
  Author: jgc
Revision: 178234

upgpkg: gdm 3.6.2-2

Add upstream fixes from 3.6 branch. Backport an additional fix from master to 
fix backwards compatibility. Should fix FS#32967, FS#33580

Added:
  gdm/trunk/git-fixes.patch
  gdm/trunk/maintain-FamilyLocal-cookie.patch
Modified:
  gdm/trunk/PKGBUILD

---+
 PKGBUILD  |   13 
 git-fixes.patch   | 9067 
 maintain-FamilyLocal-cookie.patch |  124 
 3 files changed, 9201 insertions(+), 3 deletions(-)

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


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

2013-02-18 Thread Jan de Groot
Date: Monday, February 18, 2013 @ 17:38:26
  Author: jgc
Revision: 178235

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

Added:
  gdm/repos/extra-i686/PKGBUILD
(from rev 178234, gdm/trunk/PKGBUILD)
  gdm/repos/extra-i686/fix_external_program_directories.patch
(from rev 178234, gdm/trunk/fix_external_program_directories.patch)
  gdm/repos/extra-i686/gdm.install
(from rev 178234, gdm/trunk/gdm.install)
  gdm/repos/extra-i686/git-fixes.patch
(from rev 178234, gdm/trunk/git-fixes.patch)
  gdm/repos/extra-i686/maintain-FamilyLocal-cookie.patch
(from rev 178234, gdm/trunk/maintain-FamilyLocal-cookie.patch)
  gdm/repos/extra-x86_64/PKGBUILD
(from rev 178234, gdm/trunk/PKGBUILD)
  gdm/repos/extra-x86_64/fix_external_program_directories.patch
(from rev 178234, gdm/trunk/fix_external_program_directories.patch)
  gdm/repos/extra-x86_64/gdm.install
(from rev 178234, gdm/trunk/gdm.install)
  gdm/repos/extra-x86_64/git-fixes.patch
(from rev 178234, gdm/trunk/git-fixes.patch)
  gdm/repos/extra-x86_64/maintain-FamilyLocal-cookie.patch
(from rev 178234, gdm/trunk/maintain-FamilyLocal-cookie.patch)
Deleted:
  gdm/repos/extra-i686/PKGBUILD
  gdm/repos/extra-i686/fix_external_program_directories.patch
  gdm/repos/extra-i686/gdm.install
  gdm/repos/extra-x86_64/PKGBUILD
  gdm/repos/extra-x86_64/fix_external_program_directories.patch
  gdm/repos/extra-x86_64/gdm.install

-+
 extra-i686/PKGBUILD |  123 
 extra-i686/fix_external_program_directories.patch   |   24 
 extra-i686/gdm.install  |   60 
 extra-i686/git-fixes.patch  | 9067 ++
 extra-i686/maintain-FamilyLocal-cookie.patch|  124 
 extra-x86_64/PKGBUILD   |  123 
 extra-x86_64/fix_external_program_directories.patch |   24 
 extra-x86_64/gdm.install|   60 
 extra-x86_64/git-fixes.patch| 9067 ++
 extra-x86_64/maintain-FamilyLocal-cookie.patch  |  124 
 10 files changed, 18596 insertions(+), 200 deletions(-)

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


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

2013-02-18 Thread Andreas Radke
Date: Monday, February 18, 2013 @ 17:46:09
  Author: andyrtr
Revision: 178236

drop static libs for future builds - nothing needs them

Modified:
  wayland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 16:38:26 UTC (rev 178235)
+++ PKGBUILD2013-02-18 16:46:09 UTC (rev 178236)
@@ -17,7 +17,8 @@
 
 build() {
   cd $pkgname-$pkgver
-  ./configure --prefix=/usr
+  ./configure --prefix=/usr \
+--disable-static
   make
 }
 



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

2013-02-18 Thread Sven-Hendrik Haase
Date: Monday, February 18, 2013 @ 19:30:53
  Author: svenstaro
Revision: 84407

upgpkg: springlobby 0.168-1

Updating to 0.168

Modified:
  springlobby/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 16:30:43 UTC (rev 84406)
+++ PKGBUILD2013-02-18 18:30:53 UTC (rev 84407)
@@ -3,8 +3,8 @@
 # Contributor: DuGi d...@irc.pl
 
 pkgname=springlobby
-pkgver=0.159
-pkgrel=2
+pkgver=0.168
+pkgrel=1
 pkgdesc=A free cross-platform lobby client for the Spring RTS project.
 arch=('i686' 'x86_64')
 url=http://springlobby.info/;
@@ -14,7 +14,7 @@
 makedepends=('boost' 'asio' 'cmake')
 install=springlobby.install
 source=(http://www.springlobby.info/tarballs/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('9a8e89c32dd49a51332e446e47dc1be1')
+md5sums=('e8ab284a3ec1036b126676ed866dc4a3')
 
 build() {
   cd $srcdir/${pkgname}-$pkgver



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

2013-02-18 Thread Sven-Hendrik Haase
Date: Monday, February 18, 2013 @ 19:31:08
  Author: svenstaro
Revision: 84408

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

Added:
  springlobby/repos/community-i686/PKGBUILD
(from rev 84407, springlobby/trunk/PKGBUILD)
  springlobby/repos/community-i686/springlobby.desktop
(from rev 84407, springlobby/trunk/springlobby.desktop)
  springlobby/repos/community-i686/springlobby.install
(from rev 84407, springlobby/trunk/springlobby.install)
  springlobby/repos/community-i686/springlobby.png
(from rev 84407, springlobby/trunk/springlobby.png)
  springlobby/repos/community-x86_64/PKGBUILD
(from rev 84407, springlobby/trunk/PKGBUILD)
  springlobby/repos/community-x86_64/springlobby.desktop
(from rev 84407, springlobby/trunk/springlobby.desktop)
  springlobby/repos/community-x86_64/springlobby.install
(from rev 84407, springlobby/trunk/springlobby.install)
  springlobby/repos/community-x86_64/springlobby.png
(from rev 84407, springlobby/trunk/springlobby.png)
Deleted:
  springlobby/repos/community-i686/PKGBUILD
  springlobby/repos/community-i686/springlobby.desktop
  springlobby/repos/community-i686/springlobby.install
  springlobby/repos/community-i686/springlobby.png
  springlobby/repos/community-x86_64/PKGBUILD
  springlobby/repos/community-x86_64/springlobby.desktop
  springlobby/repos/community-x86_64/springlobby.install
  springlobby/repos/community-x86_64/springlobby.png

--+
 community-i686/PKGBUILD  |   66 -
 community-i686/springlobby.desktop   |   20 +-
 community-i686/springlobby.install   |   22 +--
 community-x86_64/PKGBUILD|   66 -
 community-x86_64/springlobby.desktop |   20 +-
 community-x86_64/springlobby.install |   22 +--
 6 files changed, 108 insertions(+), 108 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-02-18 18:30:53 UTC (rev 84407)
+++ community-i686/PKGBUILD 2013-02-18 18:31:08 UTC (rev 84408)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: DuGi d...@irc.pl
-
-pkgname=springlobby
-pkgver=0.159
-pkgrel=2
-pkgdesc=A free cross-platform lobby client for the Spring RTS project.
-arch=('i686' 'x86_64')
-url=http://springlobby.info/;
-license=('GPL2')
-depends=('hicolor-icon-theme' 'wxgtk' 'curl' 'libtorrent-rasterbar' 
'boost-libs' 'alure')
-optdepends=('sdl' 'sdl_sound' 'sdl_mixer') 
-makedepends=('boost' 'asio' 'cmake')
-install=springlobby.install
-source=(http://www.springlobby.info/tarballs/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('9a8e89c32dd49a51332e446e47dc1be1')
-
-build() {
-  cd $srcdir/${pkgname}-$pkgver
-
-  cmake . \
--DCMAKE_INSTALL_PREFIX=/usr
-  make 
-}
-
-package() {
-  cd $srcdir/${pkgname}-$pkgver
-
-  make DESTDIR=$pkgdir install
-}
-
-# vim: sw=2:ts=2 et:

Copied: springlobby/repos/community-i686/PKGBUILD (from rev 84407, 
springlobby/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-02-18 18:31:08 UTC (rev 84408)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: DuGi d...@irc.pl
+
+pkgname=springlobby
+pkgver=0.168
+pkgrel=1
+pkgdesc=A free cross-platform lobby client for the Spring RTS project.
+arch=('i686' 'x86_64')
+url=http://springlobby.info/;
+license=('GPL2')
+depends=('hicolor-icon-theme' 'wxgtk' 'curl' 'libtorrent-rasterbar' 
'boost-libs' 'alure')
+optdepends=('sdl' 'sdl_sound' 'sdl_mixer') 
+makedepends=('boost' 'asio' 'cmake')
+install=springlobby.install
+source=(http://www.springlobby.info/tarballs/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('e8ab284a3ec1036b126676ed866dc4a3')
+
+build() {
+  cd $srcdir/${pkgname}-$pkgver
+
+  cmake . \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make 
+}
+
+package() {
+  cd $srcdir/${pkgname}-$pkgver
+
+  make DESTDIR=$pkgdir install
+}
+
+# vim: sw=2:ts=2 et:

Deleted: community-i686/springlobby.desktop
===
--- community-i686/springlobby.desktop  2013-02-18 18:30:53 UTC (rev 84407)
+++ community-i686/springlobby.desktop  2013-02-18 18:31:08 UTC (rev 84408)
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Version=1.0
-Encoding=UTF-8
-Name=SpringLobby
-Comment=Lobby for Spring. An open source RTS with similar gameplay to TA
-Exec=springlobby
-Icon=springlobby.png
-Terminal=false
-Type=Application
-Categories=Application;Game;StrategyGame;

Copied: springlobby/repos/community-i686/springlobby.desktop (from rev 84407, 
springlobby/trunk/springlobby.desktop)
===
--- community-i686/springlobby.desktop  (rev 0)
+++ community-i686/springlobby.desktop  2013-02-18 

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

2013-02-18 Thread Jelle van der Waa
Date: Monday, February 18, 2013 @ 20:26:21
  Author: jelle
Revision: 84409

upgpkg: ettercap 0.7.5.3-2

fix deps in ettercap

Modified:
  ettercap/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 18:31:08 UTC (rev 84408)
+++ PKGBUILD2013-02-18 19:26:21 UTC (rev 84409)
@@ -5,16 +5,14 @@
 pkgbase=ettercap
 pkgname=('ettercap' 'ettercap-gtk')
 pkgver=0.7.5.3
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url=http://ettercap.github.com/ettercap/;
 license=('GPL')
 makedepends=('ghostscript' 'cmake' 'libpcap' 'libltdl' 'libnet' 'gtk2')
 options=('!libtool' '!makeflags' '!emptydirs')
 
source=(http://sourceforge.net/projects/ettercap/files/ettercap/0.7.5-Assimilation/$pkgname-$pkgver.tar.gz;)
-
-md5sums=('784b5cf2493246e95943179b21f70645'
- 'f9281fe1735ceba59753bfe442715bb6')
+md5sums=('784b5cf2493246e95943179b21f70645')
 build() {
   cd ${srcdir}
 
@@ -45,11 +43,11 @@
 
 package_ettercap-gtk() {
   pkgdesc=A network sniffer/interceptor/logger for ethernet LANs - GTK 
frontend
-  depends=('libpcap' 'pcre' 'libltdl' 'libnet'  'openssl' 'gtk2')
+  depends+=('gtk2')
   backup=('etc/ettercap/etter.conf')
   conflicts=('ettercap')
+  provides=('ettercap')
 
   cd ${srcdir}/${pkgbase}-${pkgver}-gtk/build
-#install -Dm755 src/ettercap ${pkgdir}/usr/bin/ettercap-gtk
   make DESTDIR=${pkgdir} install
 }



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

2013-02-18 Thread Jelle van der Waa
Date: Monday, February 18, 2013 @ 20:27:41
  Author: jelle
Revision: 84410

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

Added:
  ettercap/repos/community-i686/PKGBUILD
(from rev 84409, ettercap/trunk/PKGBUILD)
  ettercap/repos/community-i686/ettercap-gtk.install
(from rev 84409, ettercap/trunk/ettercap-gtk.install)
  ettercap/repos/community-i686/ettercap.desktop
(from rev 84409, ettercap/trunk/ettercap.desktop)
  ettercap/repos/community-x86_64/PKGBUILD
(from rev 84409, ettercap/trunk/PKGBUILD)
  ettercap/repos/community-x86_64/ettercap-gtk.install
(from rev 84409, ettercap/trunk/ettercap-gtk.install)
  ettercap/repos/community-x86_64/ettercap.desktop
(from rev 84409, ettercap/trunk/ettercap.desktop)
Deleted:
  ettercap/repos/community-i686/PKGBUILD
  ettercap/repos/community-i686/ettercap-gtk.install
  ettercap/repos/community-i686/ettercap.desktop
  ettercap/repos/community-x86_64/PKGBUILD
  ettercap/repos/community-x86_64/ettercap-gtk.install
  ettercap/repos/community-x86_64/ettercap.desktop

---+
 community-i686/PKGBUILD   |  108 +++-
 community-i686/ettercap-gtk.install   |   20 ++---
 community-i686/ettercap.desktop   |   16 ++--
 community-x86_64/PKGBUILD |  108 +++-
 community-x86_64/ettercap-gtk.install |   20 ++---
 community-x86_64/ettercap.desktop |   16 ++--
 6 files changed, 142 insertions(+), 146 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-02-18 19:26:21 UTC (rev 84409)
+++ community-i686/PKGBUILD 2013-02-18 19:27:41 UTC (rev 84410)
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgbase=ettercap
-pkgname=('ettercap' 'ettercap-gtk')
-pkgver=0.7.5.3
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://ettercap.github.com/ettercap/;
-license=('GPL')
-makedepends=('ghostscript' 'cmake' 'libpcap' 'libltdl' 'libnet' 'gtk2')
-options=('!libtool' '!makeflags' '!emptydirs')
-source=(http://sourceforge.net/projects/ettercap/files/ettercap/0.7.5-Assimilation/$pkgname-$pkgver.tar.gz;)
-
-md5sums=('784b5cf2493246e95943179b21f70645'
- 'f9281fe1735ceba59753bfe442715bb6')
-build() {
-  cd ${srcdir}
-
-  cp -r ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-gtk
-
-  cd ${pkgbase}-${pkgver}
-  mkdir build
-  cd build
-  cmake -D ENABLE_GTK=OFF -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_PREFIX=/usr 
-D CMAKE_BUILD_TYPE=RELEASE ../
-  make
-
-  cd $srcdir/${pkgbase}-${pkgver}-gtk
-  mkdir build
-  cd build
-  cmake -D ENABLE_GTK=ON -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_PREFIX=/usr 
-D CMAKE_BUILD_TYPE=RELEASE ../
-  make
-}
-
-package_ettercap() {
-  pkgdesc=A network sniffer/interceptor/logger for ethernet LANs - console
-  depends=('openssl' 'libpcap' 'pcre' 'libltdl' 'libnet')
-  backup=('etc/ettercap/etter.conf')
-  conflicts=('ettercap-gtk')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}/build
-  make DESTDIR=${pkgdir} install
-}
-
-package_ettercap-gtk() {
-  pkgdesc=A network sniffer/interceptor/logger for ethernet LANs - GTK 
frontend
-  depends=('libpcap' 'pcre' 'libltdl' 'libnet'  'openssl' 'gtk2')
-  backup=('etc/ettercap/etter.conf')
-  conflicts=('ettercap')
-
-  cd ${srcdir}/${pkgbase}-${pkgver}-gtk/build
-#install -Dm755 src/ettercap ${pkgdir}/usr/bin/ettercap-gtk
-  make DESTDIR=${pkgdir} install
-}

Copied: ettercap/repos/community-i686/PKGBUILD (from rev 84409, 
ettercap/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-02-18 19:27:41 UTC (rev 84410)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer:
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgbase=ettercap
+pkgname=('ettercap' 'ettercap-gtk')
+pkgver=0.7.5.3
+pkgrel=2
+arch=('i686' 'x86_64')
+url=http://ettercap.github.com/ettercap/;
+license=('GPL')
+makedepends=('ghostscript' 'cmake' 'libpcap' 'libltdl' 'libnet' 'gtk2')
+options=('!libtool' '!makeflags' '!emptydirs')
+source=(http://sourceforge.net/projects/ettercap/files/ettercap/0.7.5-Assimilation/$pkgname-$pkgver.tar.gz;)
+md5sums=('784b5cf2493246e95943179b21f70645')
+build() {
+  cd ${srcdir}
+
+  cp -r ${pkgbase}-${pkgver} ${pkgbase}-${pkgver}-gtk
+
+  cd ${pkgbase}-${pkgver}
+  mkdir build
+  cd build
+  cmake -D ENABLE_GTK=OFF -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_PREFIX=/usr 
-D CMAKE_BUILD_TYPE=RELEASE ../
+  make
+
+  cd $srcdir/${pkgbase}-${pkgver}-gtk
+  mkdir build
+  cd build
+  cmake -D ENABLE_GTK=ON -D CMAKE_INSTALL_PREFIX=/usr -D INSTALL_PREFIX=/usr 
-D CMAKE_BUILD_TYPE=RELEASE ../
+  make
+}
+
+package_ettercap() {
+  pkgdesc=A network sniffer/interceptor/logger for ethernet LANs - console
+  depends=('openssl' 'libpcap' 'pcre' 'libltdl' 'libnet')
+  backup=('etc/ettercap/etter.conf')
+  conflicts=('ettercap-gtk')
+
+  cd 

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

2013-02-18 Thread Andrea Scarpino
Date: Monday, February 18, 2013 @ 20:28:58
  Author: andrea
Revision: 178237

Replace qtwebkit 2.3 too

Modified:
  qt4/kde-unstable/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 16:46:09 UTC (rev 178236)
+++ PKGBUILD2013-02-18 19:28:58 UTC (rev 178237)
@@ -23,8 +23,8 @@
 'icu: Unicode support')
 install=${pkgname}.install
 options=('!libtool')
-replaces=('qt')
-conflicts=('qt')
+replaces=('qt=4.8.4' 'qtwebkit=2.3.beta2')
+conflicts=('qt=4.8.4' 'qtwebkit=2.3.beta2')
 _pkgfqn=qt-everywhere-opensource-src-${pkgver}
 source=(http://releases.qt-project.org/${pkgname}/source/${_pkgfqn}.tar.gz;
 'qtconfig.desktop'
@@ -62,7 +62,6 @@
 -system-sqlite \
 -no-phonon \
 -no-phonon-backend \
--no-webkit \
 -graphicssystem raster \
 -openssl-linked \
 -nomake demos \



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

2013-02-18 Thread Sergej Pupykin
Date: Monday, February 18, 2013 @ 21:12:28
  Author: spupykin
Revision: 84411

upgpkg: firefox-noscript 2.6.5.6-1

upd

Modified:
  firefox-noscript/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 19:27:41 UTC (rev 84410)
+++ PKGBUILD2013-02-18 20:12:28 UTC (rev 84411)
@@ -2,7 +2,7 @@
 # Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
 
 pkgname=firefox-noscript
-pkgver=2.6.4.4
+pkgver=2.6.5.6
 pkgrel=1
 pkgdesc=plugin for firefox which disables script
 arch=('any')
@@ -11,7 +11,7 @@
 depends=()
 makedepends=('unzip')
 source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('5d8369d040e7dc10111d2e7cce2dcf27')
+md5sums=('83fb677cf045bca4df7972bc39069582')
 
 package() {
 #  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`



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

2013-02-18 Thread Sergej Pupykin
Date: Monday, February 18, 2013 @ 21:13:01
  Author: spupykin
Revision: 84412

archrelease: copy trunk to community-any

Added:
  firefox-noscript/repos/community-any/PKGBUILD
(from rev 84411, firefox-noscript/trunk/PKGBUILD)
Deleted:
  firefox-noscript/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-18 20:12:28 UTC (rev 84411)
+++ PKGBUILD2013-02-18 20:13:01 UTC (rev 84412)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-
-pkgname=firefox-noscript
-pkgver=2.6.4.4
-pkgrel=1
-pkgdesc=plugin for firefox which disables script
-arch=('any')
-url=http://noscript.net/;
-license=('GPL2')
-depends=()
-makedepends=('unzip')
-source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
-md5sums=('5d8369d040e7dc10111d2e7cce2dcf27')
-
-build() {
-#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`
-#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
-  depends=(firefox)
-
-  cd $srcdir
-  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
-  local dstdir=$pkgdir/usr/lib/firefox/extensions/${emid}
-  install -d $dstdir
-#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion7.*/em:maxVersion#' 
install.rdf
-  cp -R * $dstdir
-  rm $dstdir/noscript-$pkgver.xpi
-}

Copied: firefox-noscript/repos/community-any/PKGBUILD (from rev 84411, 
firefox-noscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-18 20:13:01 UTC (rev 84412)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+
+pkgname=firefox-noscript
+pkgver=2.6.5.6
+pkgrel=1
+pkgdesc=plugin for firefox which disables script
+arch=('any')
+url=http://noscript.net/;
+license=('GPL2')
+depends=()
+makedepends=('unzip')
+source=(https://secure.informaction.com/download/releases/noscript-$pkgver.xpi)
+md5sums=('83fb677cf045bca4df7972bc39069582')
+
+package() {
+#  _ffver=`pacman -Q firefox | cut -f2 -d\ | cut -f1 -d-`
+#  depends=(firefox=${_ffver} firefox=${_ffver/0/99})
+  depends=(firefox)
+
+  cd $srcdir
+  local emid=$(sed -n -e '/\?em:id\?/!d; s/.*\([\{].*[}\]\).*/\1/; 
s/\//g; p; q' install.rdf)
+  local dstdir=$pkgdir/usr/lib/firefox/extensions/${emid}
+  install -d $dstdir
+#  sed -i 
's#em:maxVersion.*/em:maxVersion#em:maxVersion7.*/em:maxVersion#' 
install.rdf
+  cp -R * $dstdir
+  rm $dstdir/noscript-$pkgver.xpi
+}



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

2013-02-18 Thread Sergej Pupykin
Date: Monday, February 18, 2013 @ 21:13:11
  Author: spupykin
Revision: 84413

upgpkg: flightgear 2.10.0-1

upd

Modified:
  flightgear/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 20:13:01 UTC (rev 84412)
+++ PKGBUILD2013-02-18 20:13:11 UTC (rev 84413)
@@ -4,19 +4,19 @@
 # Contributor: Hans Janssen h...@janserv.xs4all.nl
 
 pkgname=flightgear
-pkgver=2.8.0
-pkgrel=2
+pkgver=2.10.0
+pkgrel=1
 pkgdesc=An open-source, multi-platform flight simulator
 arch=(i686 x86_64)
 depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 
'libxrandr' 'glu')
-makedepends=('boost' 'cmake')
+makedepends=('boost' 'cmake' 'mesa')
 license=(GPL)
 url=http://www.flightgear.org;
 options=('!makeflags')
 
#source=($pkgname-$pkgver.tar.gz::https://gitorious.org/fg/flightgear/archive-tarball/release/$pkgver;)
 
#source=(ftp://ftp.de.flightgear.org/pub/fgfs/Source/flightgear-$pkgver.tar.bz2;)
 
source=(http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Source/flightgear-$pkgver.tar.bz2;)
-md5sums=('9499194146f414323efef8cb3451b750')
+md5sums=('ae7fc8d1e446c5d1fe2aa82ee41dcac5')
 
 build() {
   cd $srcdir/flightgear-$pkgver



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

2013-02-18 Thread Sergej Pupykin
Date: Monday, February 18, 2013 @ 21:13:35
  Author: spupykin
Revision: 84414

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

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

---+
 community-i686/PKGBUILD   |   80 ++--
 community-x86_64/PKGBUILD |   80 ++--
 2 files changed, 80 insertions(+), 80 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-02-18 20:13:11 UTC (rev 84413)
+++ community-i686/PKGBUILD 2013-02-18 20:13:35 UTC (rev 84414)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: William Rea sillywi...@gmail.com
-# Contributor: Hans Janssen h...@janserv.xs4all.nl
-
-pkgname=flightgear
-pkgver=2.8.0
-pkgrel=2
-pkgdesc=An open-source, multi-platform flight simulator
-arch=(i686 x86_64)
-depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 
'libxrandr' 'glu')
-makedepends=('boost' 'cmake')
-license=(GPL)
-url=http://www.flightgear.org;
-options=('!makeflags')
-#source=($pkgname-$pkgver.tar.gz::https://gitorious.org/fg/flightgear/archive-tarball/release/$pkgver;)
-#source=(ftp://ftp.de.flightgear.org/pub/fgfs/Source/flightgear-$pkgver.tar.bz2;)
-source=(http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Source/flightgear-$pkgver.tar.bz2;)
-md5sums=('9499194146f414323efef8cb3451b750')
-
-build() {
-  cd $srcdir/flightgear-$pkgver
-  cmake \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DCMAKE_INSTALL_LIBDIR=lib \
-   -DFG_DATA_DIR:STRING=/usr/share/flightgear/data .
-  make
-  sed -i 's|Exec=.*|Exec=fgfs --fg-root=/usr/share/flightgear/data|' 
package/flightgear.desktop
-}
-
-package() {
-  depends=(${depends[@]} 'flightgear-data')
-
-  cd $srcdir/flightgear-$pkgver
-  make DESTDIR=$pkgdir install
-
-  install -Dm0644 package/flightgear.desktop 
$pkgdir/usr/share/applications/flightgear.desktop
-  install -Dm0644 package/flightgear.ico $pkgdir/usr/share/icons/flightgear.ico
-  ln -sf flightgear $pkgdir/usr/share/FlightGear
-}

Copied: flightgear/repos/community-i686/PKGBUILD (from rev 84413, 
flightgear/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-02-18 20:13:35 UTC (rev 84414)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: William Rea sillywi...@gmail.com
+# Contributor: Hans Janssen h...@janserv.xs4all.nl
+
+pkgname=flightgear
+pkgver=2.10.0
+pkgrel=1
+pkgdesc=An open-source, multi-platform flight simulator
+arch=(i686 x86_64)
+depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 
'libxrandr' 'glu')
+makedepends=('boost' 'cmake' 'mesa')
+license=(GPL)
+url=http://www.flightgear.org;
+options=('!makeflags')
+#source=($pkgname-$pkgver.tar.gz::https://gitorious.org/fg/flightgear/archive-tarball/release/$pkgver;)
+#source=(ftp://ftp.de.flightgear.org/pub/fgfs/Source/flightgear-$pkgver.tar.bz2;)
+source=(http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Source/flightgear-$pkgver.tar.bz2;)
+md5sums=('ae7fc8d1e446c5d1fe2aa82ee41dcac5')
+
+build() {
+  cd $srcdir/flightgear-$pkgver
+  cmake \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+   -DCMAKE_INSTALL_LIBDIR=lib \
+   -DFG_DATA_DIR:STRING=/usr/share/flightgear/data .
+  make
+  sed -i 's|Exec=.*|Exec=fgfs --fg-root=/usr/share/flightgear/data|' 
package/flightgear.desktop
+}
+
+package() {
+  depends=(${depends[@]} 'flightgear-data')
+
+  cd $srcdir/flightgear-$pkgver
+  make DESTDIR=$pkgdir install
+
+  install -Dm0644 package/flightgear.desktop 
$pkgdir/usr/share/applications/flightgear.desktop
+  install -Dm0644 package/flightgear.ico $pkgdir/usr/share/icons/flightgear.ico
+  ln -sf flightgear $pkgdir/usr/share/FlightGear
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-02-18 20:13:11 UTC (rev 84413)
+++ community-x86_64/PKGBUILD   2013-02-18 20:13:35 UTC (rev 84414)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: William Rea sillywi...@gmail.com
-# Contributor: Hans Janssen h...@janserv.xs4all.nl
-
-pkgname=flightgear
-pkgver=2.8.0
-pkgrel=2
-pkgdesc=An open-source, multi-platform flight simulator
-arch=(i686 x86_64)
-depends=('simgear' 'libxmu' 'libxi' 'zlib' 'openscenegraph' 'subversion' 
'libxrandr' 'glu')
-makedepends=('boost' 'cmake')
-license=(GPL)
-url=http://www.flightgear.org;
-options=('!makeflags')

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

2013-02-18 Thread Sergej Pupykin
Date: Monday, February 18, 2013 @ 21:13:46
  Author: spupykin
Revision: 84415

upgpkg: simgear 2.10.0-1

upd

Modified:
  simgear/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 20:13:35 UTC (rev 84414)
+++ PKGBUILD2013-02-18 20:13:46 UTC (rev 84415)
@@ -4,19 +4,19 @@
 # Contributor: Hans Janssen h...@janserv.xs4all.nl
 
 pkgname=simgear
-pkgver=2.8.0
+pkgver=2.10.0
 pkgrel=1
 pkgdesc=A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications.
 arch=(i686 x86_64)
 depends=('glut' 'freealut' 'plib' 'openscenegraph')
-makedepends=('boost' 'cmake')
+makedepends=('boost' 'cmake' 'mesa')
 license=(GPL)
 #url=http://www.simgear.org;
 url=https://gitorious.org/fg;
 options=('!makeflags')
 
#source=(SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver;)
 
source=(http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/simgear-$pkgver.tar.bz2;)
-md5sums=('0a8c77439ba7879b354a8fbcb7901ce3')
+md5sums=('0ec974d3778f777d5c99c89db671fcc7')
 
 build() {
   cd $srcdir/simgear-$pkgver



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

2013-02-18 Thread Sergej Pupykin
Date: Monday, February 18, 2013 @ 21:14:11
  Author: spupykin
Revision: 84416

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

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

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

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-02-18 20:13:46 UTC (rev 84415)
+++ community-i686/PKGBUILD 2013-02-18 20:14:11 UTC (rev 84416)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: William Rea sillywi...@gmail.com
-# Contributor: Hans Janssen h...@janserv.xs4all.nl
-
-pkgname=simgear
-pkgver=2.8.0
-pkgrel=1
-pkgdesc=A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications.
-arch=(i686 x86_64)
-depends=('glut' 'freealut' 'plib' 'openscenegraph')
-makedepends=('boost' 'cmake')
-license=(GPL)
-#url=http://www.simgear.org;
-url=https://gitorious.org/fg;
-options=('!makeflags')
-#source=(SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver;)
-source=(http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/simgear-$pkgver.tar.bz2;)
-md5sums=('0a8c77439ba7879b354a8fbcb7901ce3')
-
-build() {
-  cd $srcdir/simgear-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
-  make
-}
-
-package() {
-  cd $srcdir/simgear-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: simgear/repos/community-i686/PKGBUILD (from rev 84415, 
simgear/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-02-18 20:14:11 UTC (rev 84416)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: William Rea sillywi...@gmail.com
+# Contributor: Hans Janssen h...@janserv.xs4all.nl
+
+pkgname=simgear
+pkgver=2.10.0
+pkgrel=1
+pkgdesc=A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications.
+arch=(i686 x86_64)
+depends=('glut' 'freealut' 'plib' 'openscenegraph')
+makedepends=('boost' 'cmake' 'mesa')
+license=(GPL)
+#url=http://www.simgear.org;
+url=https://gitorious.org/fg;
+options=('!makeflags')
+#source=(SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver;)
+source=(http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/simgear-$pkgver.tar.bz2;)
+md5sums=('0ec974d3778f777d5c99c89db671fcc7')
+
+build() {
+  cd $srcdir/simgear-$pkgver
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
+  make
+}
+
+package() {
+  cd $srcdir/simgear-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2013-02-18 20:13:46 UTC (rev 84415)
+++ community-x86_64/PKGBUILD   2013-02-18 20:14:11 UTC (rev 84416)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: William Rea sillywi...@gmail.com
-# Contributor: Hans Janssen h...@janserv.xs4all.nl
-
-pkgname=simgear
-pkgver=2.8.0
-pkgrel=1
-pkgdesc=A set of open-source libraries designed to be used as building blocks 
for quickly assembling 3d simulations, games, and visualization applications.
-arch=(i686 x86_64)
-depends=('glut' 'freealut' 'plib' 'openscenegraph')
-makedepends=('boost' 'cmake')
-license=(GPL)
-#url=http://www.simgear.org;
-url=https://gitorious.org/fg;
-options=('!makeflags')
-#source=(SimGear-$pkgver.tar.gz::https://gitorious.org/fg/simgear/archive-tarball/release/$pkgver;)
-source=(http://mirrors.ibiblio.org/pub/mirrors/simgear/ftp/Source/simgear-$pkgver.tar.bz2;)
-md5sums=('0a8c77439ba7879b354a8fbcb7901ce3')
-
-build() {
-  cd $srcdir/simgear-$pkgver
-  cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib .
-  make
-}
-
-package() {
-  cd $srcdir/simgear-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: simgear/repos/community-x86_64/PKGBUILD (from rev 84415, 
simgear/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-02-18 20:14:11 UTC (rev 84416)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: William Rea sillywi...@gmail.com
+# Contributor: Hans Janssen h...@janserv.xs4all.nl
+
+pkgname=simgear

[arch-commits] Commit in qt4/kde-unstable (PKGBUILD ld-gold.patch)

2013-02-18 Thread Andrea Scarpino
Date: Monday, February 18, 2013 @ 21:49:29
  Author: andrea
Revision: 178238

Fix build on i686

Added:
  qt4/kde-unstable/ld-gold.patch
Modified:
  qt4/kde-unstable/PKGBUILD

---+
 PKGBUILD  |9 +++--
 ld-gold.patch |   22 ++
 2 files changed, 29 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 19:28:58 UTC (rev 178237)
+++ PKGBUILD2013-02-18 20:49:29 UTC (rev 178238)
@@ -28,10 +28,12 @@
 _pkgfqn=qt-everywhere-opensource-src-${pkgver}
 source=(http://releases.qt-project.org/${pkgname}/source/${_pkgfqn}.tar.gz;
 'qtconfig.desktop'
-'improve-cups-support.patch')
+'improve-cups-support.patch'
+'ld-gold.patch')
 md5sums=('89c5ecba180cae74c66260ac732dc5cb'
  '20ca06ef59775d749b9451ce7437fa9a'
- 'c439c7731c25387352d8453ca7574971')
+ 'c439c7731c25387352d8453ca7574971'
+ '864de59a34a2f72ab2668dd918634b64')
 
 build() {
   cd ${_pkgfqn}
@@ -39,6 +41,9 @@
   # (FS#28381) (KDEBUG#180051)
   patch -p1 -i ${srcdir}/improve-cups-support.patch
 
+  # build on i686 fails
+  patch -p1 -i ${srcdir}/ld-gold.patch
+
   export QT4DIR=${srcdir}/${_pkgfqn}
   export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
 

Added: ld-gold.patch
===
--- ld-gold.patch   (rev 0)
+++ ld-gold.patch   2013-02-18 20:49:29 UTC (rev 178238)
@@ -0,0 +1,22 @@
+diff -up 
qt-everywhere-opensource-src-4.8.0/src/3rdparty/webkit/Source/common.pri.me 
qt-everywhere-opensource-src-4.8.0/src/3rdparty/webkit/Source/common.pri
+--- 
qt-everywhere-opensource-src-4.8.0/src/3rdparty/webkit/Source/common.pri.me 
   2012-01-24 13:05:50.460890750 +0100
 qt-everywhere-opensource-src-4.8.0/src/3rdparty/webkit/Source/common.pri   
2012-01-24 13:19:08.836799974 +0100
+@@ -3,12 +3,12 @@
+ contains(JAVASCRIPTCORE_JIT,yes): DEFINES+=ENABLE_JIT=1
+ contains(JAVASCRIPTCORE_JIT,no): DEFINES+=ENABLE_JIT=0
+ 
+-linux-g++ {
+-isEmpty($$(SBOX_DPKG_INST_ARCH)):exists(/usr/bin/ld.gold) {
+-message(Using gold linker)
+-QMAKE_LFLAGS+=-fuse-ld=gold
+-}
+-}
++#linux-g++ {
++#isEmpty($$(SBOX_DPKG_INST_ARCH)):exists(/usr/bin/ld.gold) {
++#message(Using gold linker)
++#QMAKE_LFLAGS+=-fuse-ld=gold
++#}
++#}
+ 
+ # We use this flag on production branches
+ # See https://bugs.webkit.org/show_bug.cgi?id=60824



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

2013-02-18 Thread Andrea Scarpino
Date: Monday, February 18, 2013 @ 21:52:08
  Author: andrea
Revision: 178239

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

Added:
  qt4/repos/staging-i686/
  qt4/repos/staging-i686/PKGBUILD
(from rev 178238, qt4/kde-unstable/PKGBUILD)
  qt4/repos/staging-i686/improve-cups-support.patch
(from rev 178238, qt4/kde-unstable/improve-cups-support.patch)
  qt4/repos/staging-i686/ld-gold.patch
(from rev 178238, qt4/kde-unstable/ld-gold.patch)
  qt4/repos/staging-i686/qt4.install
(from rev 178238, qt4/kde-unstable/qt4.install)
  qt4/repos/staging-i686/qtconfig.desktop
(from rev 178238, qt4/kde-unstable/qtconfig.desktop)
  qt4/repos/staging-x86_64/
  qt4/repos/staging-x86_64/PKGBUILD
(from rev 178238, qt4/kde-unstable/PKGBUILD)
  qt4/repos/staging-x86_64/improve-cups-support.patch
(from rev 178238, qt4/kde-unstable/improve-cups-support.patch)
  qt4/repos/staging-x86_64/ld-gold.patch
(from rev 178238, qt4/kde-unstable/ld-gold.patch)
  qt4/repos/staging-x86_64/qt4.install
(from rev 178238, qt4/kde-unstable/qt4.install)
  qt4/repos/staging-x86_64/qtconfig.desktop
(from rev 178238, qt4/kde-unstable/qtconfig.desktop)

---+
 staging-i686/PKGBUILD |  113 
 staging-i686/improve-cups-support.patch   |   84 
 staging-i686/ld-gold.patch|   22 +
 staging-i686/qt4.install  |   12 ++
 staging-i686/qtconfig.desktop |9 ++
 staging-x86_64/PKGBUILD   |  113 
 staging-x86_64/improve-cups-support.patch |   84 
 staging-x86_64/ld-gold.patch  |   22 +
 staging-x86_64/qt4.install|   12 ++
 staging-x86_64/qtconfig.desktop   |9 ++
 10 files changed, 480 insertions(+)

Copied: qt4/repos/staging-i686/PKGBUILD (from rev 178238, 
qt4/kde-unstable/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-18 20:52:08 UTC (rev 178239)
@@ -0,0 +1,113 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=qt4
+pkgver=4.8.4
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL')
+pkgdesc='A cross-platform application and UI framework'
+depends=('libtiff' 'libpng' 'libmng' 'sqlite' 'ca-certificates' 'glib2' 'dbus'
+'fontconfig' 'libgl' 'libsm' 'libxrandr' 'libxv' 'libxi' 'alsa-lib'
+'xdg-utils' 'hicolor-icon-theme' 'desktop-file-utils')
+makedepends=('mesa' 'postgresql-libs' 'mysql' 'unixodbc' 'cups' 'gtk2' 
'libfbclient')
+optdepends=('postgresql-libs: PostgreSQL driver'
+'libmysqlclient: MySQL driver'
+'unixodbc: ODBC driver'
+'libfbclient: Firebird/iBase driver'
+'libxinerama: Xinerama support'
+'libxcursor: Xcursor support'
+'libxfixes: Xfixes support'
+'icu: Unicode support')
+install=${pkgname}.install
+options=('!libtool')
+replaces=('qt=4.8.4' 'qtwebkit=2.3.beta2')
+conflicts=('qt=4.8.4' 'qtwebkit=2.3.beta2')
+_pkgfqn=qt-everywhere-opensource-src-${pkgver}
+source=(http://releases.qt-project.org/${pkgname}/source/${_pkgfqn}.tar.gz;
+'qtconfig.desktop'
+'improve-cups-support.patch'
+'ld-gold.patch')
+md5sums=('89c5ecba180cae74c66260ac732dc5cb'
+ '20ca06ef59775d749b9451ce7437fa9a'
+ 'c439c7731c25387352d8453ca7574971'
+ '864de59a34a2f72ab2668dd918634b64')
+
+build() {
+  cd ${_pkgfqn}
+
+  # (FS#28381) (KDEBUG#180051)
+  patch -p1 -i ${srcdir}/improve-cups-support.patch
+
+  # build on i686 fails
+  patch -p1 -i ${srcdir}/ld-gold.patch
+
+  export QT4DIR=${srcdir}/${_pkgfqn}
+  export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
+
+  sed -i s|-O2|${CXXFLAGS}| mkspecs/common/{g++,gcc}-base.conf
+  sed -i /^QMAKE_LFLAGS_RPATH/s| -Wl,-rpath,||g 
mkspecs/common/gcc-base-unix.conf
+  sed -i /^QMAKE_LFLAGS\s/s|+=|+= ${LDFLAGS}|g mkspecs/common/gcc-base.conf
+
+  ./configure -confirm-license -opensource \
+-prefix /usr \
+-bindir /usr/lib/qt4/bin \
+-headerdir /usr/include/qt4 \
+-docdir /usr/share/doc/qt4 \
+-plugindir /usr/lib/qt4/plugins \
+-importdir /usr/lib/qt4/imports \
+-datadir /usr/share/qt4 \
+-translationdir /usr/share/qt4/translations \
+-sysconfdir /etc/xdg \
+-examplesdir /usr/share/doc/qt4/examples \
+-demosdir /usr/share/doc/qt4/demos \
+-plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
+-system-sqlite \
+-no-phonon \
+-no-phonon-backend \
+-graphicssystem raster \
+-openssl-linked \
+-nomake demos \
+-nomake examples \
+-nomake docs \
+-silent \
+-no-rpath \
+-optimized-qmake \
+-reduce-relocations \
+-dbus-linked \
+-no-openvg
+  make
+}
+

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

2013-02-18 Thread Andrea Scarpino
Date: Monday, February 18, 2013 @ 21:52:29
  Author: andrea
Revision: 178240

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

Added:
  qt/repos/staging-i686/
  qt/repos/staging-i686/PKGBUILD
(from rev 178239, qt/kde-unstable/PKGBUILD)
  qt/repos/staging-i686/assistant.desktop
(from rev 178239, qt/kde-unstable/assistant.desktop)
  qt/repos/staging-i686/designer.desktop
(from rev 178239, qt/kde-unstable/designer.desktop)
  qt/repos/staging-i686/linguist.desktop
(from rev 178239, qt/kde-unstable/linguist.desktop)
  qt/repos/staging-i686/qtbase.install
(from rev 178239, qt/kde-unstable/qtbase.install)
  qt/repos/staging-i686/qttools.install
(from rev 178239, qt/kde-unstable/qttools.install)
  qt/repos/staging-i686/use-python2.patch
(from rev 178239, qt/kde-unstable/use-python2.patch)
  qt/repos/staging-x86_64/
  qt/repos/staging-x86_64/PKGBUILD
(from rev 178239, qt/kde-unstable/PKGBUILD)
  qt/repos/staging-x86_64/assistant.desktop
(from rev 178239, qt/kde-unstable/assistant.desktop)
  qt/repos/staging-x86_64/designer.desktop
(from rev 178239, qt/kde-unstable/designer.desktop)
  qt/repos/staging-x86_64/linguist.desktop
(from rev 178239, qt/kde-unstable/linguist.desktop)
  qt/repos/staging-x86_64/qtbase.install
(from rev 178239, qt/kde-unstable/qtbase.install)
  qt/repos/staging-x86_64/qttools.install
(from rev 178239, qt/kde-unstable/qttools.install)
  qt/repos/staging-x86_64/use-python2.patch
(from rev 178239, qt/kde-unstable/use-python2.patch)

--+
 staging-i686/PKGBUILD|  195 +
 staging-i686/assistant.desktop   |8 +
 staging-i686/designer.desktop|   10 +
 staging-i686/linguist.desktop|9 +
 staging-i686/qtbase.install  |   11 ++
 staging-i686/qttools.install |   12 ++
 staging-i686/use-python2.patch   |   96 ++
 staging-x86_64/PKGBUILD  |  195 +
 staging-x86_64/assistant.desktop |8 +
 staging-x86_64/designer.desktop  |   10 +
 staging-x86_64/linguist.desktop  |9 +
 staging-x86_64/qtbase.install|   11 ++
 staging-x86_64/qttools.install   |   12 ++
 staging-x86_64/use-python2.patch |   96 ++
 14 files changed, 682 insertions(+)

Copied: qt/repos/staging-i686/PKGBUILD (from rev 178239, 
qt/kde-unstable/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-18 20:52:29 UTC (rev 178240)
@@ -0,0 +1,195 @@
+# $Id: PKGBUILD 172119 2012-11-29 17:17:54Z andrea $
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgbase=qt
+pkgname=('qtbase'
+ 'qtdeclarative'
+ 'qtmultimedia'
+ 'qt-addons'
+ 'qttools'
+ 'qtwebkit')
+pkgver=5.0.1
+pkgrel=1
+arch=('i686' 'x86_64')
+url='http://qt-project.org/'
+license=('GPL3' 'LGPL')
+makedepends=('libxcb' 'xcb-proto' 'xcb-util' 'xcb-util-image' 'xcb-util-wm' 
'xcb-util-keysyms'
+'mesa' 'libgl' 'at-spi2-core' 'alsa-lib' 
'gstreamer0.10-base-plugins'
+'libjpeg-turbo' 'cups' 'libpulse' 'hicolor-icon-theme' 
'desktop-file-utils'
+'postgresql-libs' 'libmysqlclient' 'sqlite' 'unixodbc' 
'libfbclient'
+'python2' 'ruby' 'gperf')
+groups=('qt5')
+options=('!libtool')
+_pkgfqn=${pkgbase}-everywhere-opensource-src-${pkgver}
+source=(http://releases.qt-project.org/qt5/${pkgver}/single/${_pkgfqn}.tar.xz;
+'assistant.desktop' 'designer.desktop' 'linguist.desktop'
+'use-python2.patch')
+md5sums=('00a577bd88e682d1b4d01d41d1d699cf'
+ 'f1837a03fd0ebbd2da58975845f278e3'
+ '480fea1ed076992b688373c8db274be0'
+ '5595c24d5bb942c21e3a4d299e6d0bf1'
+ 'ec3133b093550f16a21bb91e5f0f2943')
+
+build() {
+  cd ${_pkgfqn}
+
+  export QTDIR=${srcdir}/${_pkgfqn}
+  export LD_LIBRARY_PATH=${QTDIR}/lib:${LD_LIBRARY_PATH}
+
+  sed -i s|-O2|${CXXFLAGS}| qtbase/mkspecs/common/{g++,gcc}-base.conf
+  sed -i /^QMAKE_LFLAGS_RPATH/s| -Wl,-rpath,||g 
qtbase/mkspecs/common/gcc-base-unix.conf
+  sed -i /^QMAKE_LFLAGS\s/s|+=|+= ${LDFLAGS}|g 
qtbase/mkspecs/common/gcc-base.conf
+
+  # Use python2 for Python 2.x
+  patch -p1 -i ${srcdir}/use-python2.patch
+  sed -i -e s|#![ ]*/usr/bin/python$|#!/usr/bin/python2| \
+-e s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2| \
+$(find . -name '*.py')
+
+  ./configure -confirm-license -opensource \
+-prefix /usr \
+-docdir /usr/share/doc/qt \
+-archdatadir /usr/lib/qt \
+-datadir /usr/share/qt \
+-sysconfdir /etc/xdg \
+-examplesdir /usr/share/doc/qt/examples \
+-plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
+-system-sqlite \
+-openssl-linked \
+-nomake docs \
+-nomake examples \
+-nomake tests \
+-no-rpath \
+-optimized-qmake \
+-dbus-linked \
+-reduce-relocations
+
+  make
+}
+

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

2013-02-18 Thread Sergej Pupykin
Date: Monday, February 18, 2013 @ 22:06:09
  Author: spupykin
Revision: 84417

upgpkg: flightgear-data 2.10.0-1

upd

Modified:
  flightgear-data/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 20:14:11 UTC (rev 84416)
+++ PKGBUILD2013-02-18 21:06:09 UTC (rev 84417)
@@ -4,7 +4,7 @@
 # Contributor: Hans Janssen h...@janserv.xs4all.nl
 
 pkgname=flightgear-data
-pkgver=2.8.0
+pkgver=2.10.0
 pkgrel=1
 pkgdesc=Base-Data for the opensource flight-simulator.
 arch=(any)
@@ -14,7 +14,7 @@
 
#source=($pkgname-$pkgver.tar.gz::https://gitorious.org/fg/fgdata/archive-tarball/release/$pkgver;)
 
#source=(ftp://ftp.linux.kiev.ua/pub/mirrors/ftp.flightgear.org/flightgear/Shared/FlightGear-data-$pkgver.tar.bz2;)
 
source=(http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Shared/FlightGear-data-$pkgver.tar.bz2;)
-md5sums=('7672904c84c32120f33626b95e5043ef')
+md5sums=('82a9cbc81313195a7ed1aa87a9a2a0b3')
 
 package() {
   cd $srcdir



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

2013-02-18 Thread Sergej Pupykin
Date: Monday, February 18, 2013 @ 22:06:36
  Author: spupykin
Revision: 84418

archrelease: copy trunk to community-any

Added:
  flightgear-data/repos/community-any/PKGBUILD
(from rev 84417, flightgear-data/trunk/PKGBUILD)
Deleted:
  flightgear-data/repos/community-any/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-18 21:06:09 UTC (rev 84417)
+++ PKGBUILD2013-02-18 21:06:36 UTC (rev 84418)
@@ -1,24 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
-# Maintainer: William Rea sillywi...@gmail.com
-# Contributor: Hans Janssen h...@janserv.xs4all.nl
-
-pkgname=flightgear-data
-pkgver=2.8.0
-pkgrel=1
-pkgdesc=Base-Data for the opensource flight-simulator.
-arch=(any)
-license=(GPL)
-url=http://www.flightgear.org;
-options=(!strip)
-#source=($pkgname-$pkgver.tar.gz::https://gitorious.org/fg/fgdata/archive-tarball/release/$pkgver;)
-#source=(ftp://ftp.linux.kiev.ua/pub/mirrors/ftp.flightgear.org/flightgear/Shared/FlightGear-data-$pkgver.tar.bz2;)
-source=(http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Shared/FlightGear-data-$pkgver.tar.bz2;)
-md5sums=('7672904c84c32120f33626b95e5043ef')
-
-build() {
-  cd $srcdir
-  mkdir -p $pkgdir/usr/share/flightgear
-  mv data/ $pkgdir/usr/share/flightgear/data
-  chown root:root $pkgdir/usr/share/flightgear/data
-}

Copied: flightgear-data/repos/community-any/PKGBUILD (from rev 84417, 
flightgear-data/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-18 21:06:36 UTC (rev 84418)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: Sergej Pupykin pupykin.s+a...@gmail.com
+# Maintainer: William Rea sillywi...@gmail.com
+# Contributor: Hans Janssen h...@janserv.xs4all.nl
+
+pkgname=flightgear-data
+pkgver=2.10.0
+pkgrel=1
+pkgdesc=Base-Data for the opensource flight-simulator.
+arch=(any)
+license=(GPL)
+url=http://www.flightgear.org;
+options=(!strip)
+#source=($pkgname-$pkgver.tar.gz::https://gitorious.org/fg/fgdata/archive-tarball/release/$pkgver;)
+#source=(ftp://ftp.linux.kiev.ua/pub/mirrors/ftp.flightgear.org/flightgear/Shared/FlightGear-data-$pkgver.tar.bz2;)
+source=(http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Shared/FlightGear-data-$pkgver.tar.bz2;)
+md5sums=('82a9cbc81313195a7ed1aa87a9a2a0b3')
+
+package() {
+  cd $srcdir
+  mkdir -p $pkgdir/usr/share/flightgear
+  mv data/ $pkgdir/usr/share/flightgear/data
+  chown root:root $pkgdir/usr/share/flightgear/data
+}



[arch-commits] Commit in qt (kde-unstable trunk trunk)

2013-02-18 Thread Andrea Scarpino
Date: Monday, February 18, 2013 @ 22:33:02
  Author: andrea
Revision: 178241

Merge kde-unstable in trunk

Added:
  qt/trunk/
Deleted:
  qt/kde-unstable/
  qt/trunk/



[arch-commits] Commit in qt4 (9 files)

2013-02-18 Thread Andrea Scarpino
Date: Monday, February 18, 2013 @ 22:33:44
  Author: andrea
Revision: 178242

Merge kde-unstable in trunk

Added:
  qt4/trunk/
  qt4/trunk/PKGBUILD
(from rev 178238, qt4/kde-unstable/PKGBUILD)
  qt4/trunk/ld-gold.patch
(from rev 178238, qt4/kde-unstable/ld-gold.patch)
  qt4/trunk/qtconfig.desktop
(from rev 178036, qt4/kde-unstable/qtconfig.desktop)
Deleted:
  qt4/kde-unstable/
  qt4/trunk/
  qt4/trunk/PKGBUILD
  qt4/trunk/fix-crash-in-assistant.patch
  qt4/trunk/qtconfig.desktop

--+
 PKGBUILD |  130 -
 fix-crash-in-assistant.patch |   11 ---
 qtconfig.desktop |9 --
 trunk/PKGBUILD   |  113 +++
 trunk/ld-gold.patch  |   22 ++
 trunk/qtconfig.desktop   |9 ++
 6 files changed, 144 insertions(+), 150 deletions(-)

Deleted: trunk/PKGBUILD
===
--- kde-unstable/PKGBUILD   2013-02-13 22:22:13 UTC (rev 178032)
+++ trunk/PKGBUILD  2013-02-18 21:33:44 UTC (rev 178242)
@@ -1,130 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=qt4
-pkgname=('qt' 'qt-private-headers')
-pkgver=4.8.4
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL')
-makedepends=('libtiff' 'libpng' 'libmng' 'sqlite' 'ca-certificates' 'glib2' 
'dbus'
-'fontconfig' 'libgl' 'libsm' 'libxrandr' 'libxv' 'libxi' 'alsa-lib'
-'xdg-utils' 'hicolor-icon-theme' 'desktop-file-utils' 'mesa' 
'postgresql-libs'
-'mysql' 'unixodbc' 'cups' 'gtk2' 'libfbclient')
-options=('!libtool')
-_pkgfqn=qt-everywhere-opensource-src-${pkgver}
-source=(http://releases.qt-project.org/qt4/source/${_pkgfqn}.tar.gz;
-'qtconfig.desktop'
-'improve-cups-support.patch'
-'fix-crash-in-assistant.patch')
-md5sums=('89c5ecba180cae74c66260ac732dc5cb'
- 'f1837a03fd0ebbd2da58975845f278e3'
- '480fea1ed076992b688373c8db274be0'
- '5595c24d5bb942c21e3a4d299e6d0bf1'
- '824a3b77a25e98567f640e0441ccdebc'
- 'c439c7731c25387352d8453ca7574971'
- '57590084078b6379f0501f7728b02ae2')
-
-build() {
-  cd ${_pkgfqn}
-
-  # (FS#28381) (KDEBUG#180051)
-  patch -p1 -i ${srcdir}/improve-cups-support.patch
-
-  # (FS#29469)
-  patch -p1 -i ${srcdir}/fix-crash-in-assistant.patch
-
-  export QT4DIR=${srcdir}/${_pkgfqn}
-  export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
-
-  sed -i s|-O2|${CXXFLAGS}| mkspecs/common/{g++,gcc}-base.conf
-  sed -i /^QMAKE_LFLAGS_RPATH/s| -Wl,-rpath,||g 
mkspecs/common/gcc-base-unix.conf
-  sed -i /^QMAKE_LFLAGS\s/s|+=|+= ${LDFLAGS}|g mkspecs/common/gcc-base.conf
-
-  ./configure -confirm-license -opensource \
--prefix /usr \
--bindir /usr/lib/qt4/bin \
--headerdir /usr/include/qt4 \
--docdir /usr/share/doc/qt4 \
--plugindir /usr/lib/qt4/plugins \
--importdir /usr/lib/qt4/imports \
--datadir /usr/share/qt4 \
--translationdir /usr/share/qt4/translations \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt4/examples \
--demosdir /usr/share/doc/qt4/demos \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--no-phonon \
--no-phonon-backend \
--no-webkit \
--graphicssystem raster \
--openssl-linked \
--nomake demos \
--nomake examples \
--nomake docs \
--silent \
--no-rpath \
--optimized-qmake \
--reduce-relocations \
--dbus-linked \
--no-openvg
-  make
-}
-
-package_qt() {
-pkgdesc='A cross-platform application and UI framework'
-depends=('libtiff' 'libpng' 'libmng' 'sqlite' 'ca-certificates' 'glib2' 
'dbus'
-  'fontconfig' 'libgl' 'libsm' 'libxrandr' 'libxv' 'libxi' 'alsa-lib'
-  'xdg-utils' 'hicolor-icon-theme' 'desktop-file-utils')
-optdepends=('postgresql-libs: PostgreSQL driver'
-'libmysqlclient: MySQL driver'
-'unixodbc: ODBC driver'
-'libfbclient: Firebird/iBase driver'
-'libxinerama: Xinerama support'
-'libxcursor: Xcursor support'
-'libxfixes: Xfixes support'
-'icu: Unicode support')
-install='qt4.install'
-
-cd ${_pkgfqn}
-make INSTALL_ROOT=${pkgdir} install
-
-# install missing icons and desktop files
-install -D -m644 src/gui/dialogs/images/qtlogo-64.png \
-  ${pkgdir}/usr/share/icons/hicolor/64x64/apps/qt4logo.png
-install -d ${pkgdir}/usr/share/applications
-install -m644 ${srcdir}/qtconfig.desktop \
-  ${pkgdir}/usr/share/applications/
-
-# install license addition
-install -D -m644 LGPL_EXCEPTION.txt \
-  ${pkgdir}/usr/share/licenses/${pkgbase}/LGPL_EXCEPTION.txt
-
-# Fix wrong path in pkgconfig files
-find ${pkgdir}/usr/lib/pkgconfig -type f -name '*.pc' \
-  -exec perl -pi -e s, -L${srcdir}/?\S+,,g {} \;
-

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

2013-02-18 Thread Gaetan Bisson
Date: Monday, February 18, 2013 @ 22:52:38
  Author: bisson
Revision: 178243

db-move: moved graphviz from [staging] to [testing] (i686, x86_64)

Added:
  graphviz/repos/testing-i686/
  graphviz/repos/testing-i686/LICENSE
(from rev 178242, graphviz/repos/staging-i686/LICENSE)
  graphviz/repos/testing-i686/PKGBUILD
(from rev 178242, graphviz/repos/staging-i686/PKGBUILD)
  graphviz/repos/testing-i686/install
(from rev 178242, graphviz/repos/staging-i686/install)
  graphviz/repos/testing-x86_64/
  graphviz/repos/testing-x86_64/LICENSE
(from rev 178242, graphviz/repos/staging-x86_64/LICENSE)
  graphviz/repos/testing-x86_64/PKGBUILD
(from rev 178242, graphviz/repos/staging-x86_64/PKGBUILD)
  graphviz/repos/testing-x86_64/install
(from rev 178242, graphviz/repos/staging-x86_64/install)
Deleted:
  graphviz/repos/staging-i686/
  graphviz/repos/staging-x86_64/

-+
 testing-i686/LICENSE|   87 ++
 testing-i686/PKGBUILD   |   60 +++
 testing-i686/install|   12 ++
 testing-x86_64/LICENSE  |   87 ++
 testing-x86_64/PKGBUILD |   60 +++
 testing-x86_64/install  |   12 ++
 6 files changed, 318 insertions(+)

Copied: graphviz/repos/testing-i686/LICENSE (from rev 178242, 
graphviz/repos/staging-i686/LICENSE)
===
--- testing-i686/LICENSE(rev 0)
+++ testing-i686/LICENSE2013-02-18 21:52:38 UTC (rev 178243)
@@ -0,0 +1,87 @@
+Eclipse Public License - v 1.0
+
+THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC 
LICENSE (AGREEMENT). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM 
CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
+
+1. DEFINITIONS
+
+Contribution means:
+
+a) in the case of the initial Contributor, the initial code and documentation 
distributed under this Agreement, and
+
+b) in the case of each subsequent Contributor:
+
+i) changes to the Program, and
+
+ii) additions to the Program;
+
+where such changes and/or additions to the Program originate from and are 
distributed by that particular Contributor. A Contribution 'originates' from a 
Contributor if it was added to the Program by such Contributor itself or anyone 
acting on such Contributor's behalf. Contributions do not include additions to 
the Program which: (i) are separate modules of software distributed in 
conjunction with the Program under their own license agreement, and (ii) are 
not derivative works of the Program.
+
+Contributor means any person or entity that distributes the Program.
+
+Licensed Patents mean patent claims licensable by a Contributor which are 
necessarily infringed by the use or sale of its Contribution alone or when 
combined with the Program.
+
+Program means the Contributions distributed in accordance with this 
Agreement.
+
+Recipient means anyone who receives the Program under this Agreement, 
including all Contributors.
+
+2. GRANT OF RIGHTS
+
+a) Subject to the terms of this Agreement, each Contributor hereby grants 
Recipient a non-exclusive, worldwide, royalty-free copyright license to 
reproduce, prepare derivative works of, publicly display, publicly perform, 
distribute and sublicense the Contribution of such Contributor, if any, and 
such derivative works, in source code and object code form.
+
+b) Subject to the terms of this Agreement, each Contributor hereby grants 
Recipient a non-exclusive, worldwide, royalty-free patent license under 
Licensed Patents to make, use, sell, offer to sell, import and otherwise 
transfer the Contribution of such Contributor, if any, in source code and 
object code form. This patent license shall apply to the combination of the 
Contribution and the Program if, at the time the Contribution is added by the 
Contributor, such addition of the Contribution causes such combination to be 
covered by the Licensed Patents. The patent license shall not apply to any 
other combinations which include the Contribution. No hardware per se is 
licensed hereunder.
+
+c) Recipient understands that although each Contributor grants the licenses to 
its Contributions set forth herein, no assurances are provided by any 
Contributor that the Program does not infringe the patent or other intellectual 
property rights of any other entity. Each Contributor disclaims any liability 
to Recipient for claims brought by any other entity based on infringement of 
intellectual property rights or otherwise. As a condition to exercising the 
rights and licenses granted hereunder, each Recipient hereby assumes sole 
responsibility to secure any other intellectual property rights needed, if any. 
For example, if a third party patent license is required to allow Recipient to 
distribute the Program, it is Recipient's responsibility to acquire that 
license before 

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

2013-02-18 Thread Andrea Scarpino
Date: Monday, February 18, 2013 @ 23:03:11
  Author: andrea
Revision: 178244

upgpkg: cmake 2.8.10.2-2

Qt5 rebuild

Modified:
  cmake/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 21:52:38 UTC (rev 178243)
+++ PKGBUILD2013-02-18 22:03:11 UTC (rev 178244)
@@ -4,14 +4,14 @@
 
 pkgname=cmake
 pkgver=2.8.10.2
-pkgrel=1
+pkgrel=2
 pkgdesc=A cross-platform open-source make system
 arch=('i686' 'x86_64')
 url=http://www.cmake.org/;
 license=('custom')
 depends=('curl' 'libarchive' 'shared-mime-info')
-makedepends=('qt' 'emacs')
-optdepends=('qt: cmake-gui')
+makedepends=('qtbase' 'emacs')
+optdepends=('qtbase: cmake-gui')
 install=${pkgname}.install
 source=(http://www.cmake.org/files/v2.8/${pkgname}-${pkgver}.tar.gz;)
 md5sums=('097278785da7182ec0aea8769d06860c')
@@ -19,6 +19,10 @@
 build() {
   cd ${pkgname}-${pkgver}
 
+  # Qt is built with reduce-relocations
+  export CFLAGS=${CFLAGS} -fPIC
+  export CXXFLAGS=${CXXFLAGS} -fPIC
+
   ./bootstrap --prefix=/usr \
 --mandir=/share/man \
 --docdir=/share/doc/cmake \



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

2013-02-18 Thread Andrea Scarpino
Date: Monday, February 18, 2013 @ 23:03:17
  Author: andrea
Revision: 178245

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

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

--+
 staging-i686/PKGBUILD|   49 +
 staging-i686/cmake.install   |   12 ++
 staging-x86_64/PKGBUILD  |   49 +
 staging-x86_64/cmake.install |   12 ++
 4 files changed, 122 insertions(+)

Copied: cmake/repos/staging-i686/PKGBUILD (from rev 178244, 
cmake/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-18 22:03:17 UTC (rev 178245)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=cmake
+pkgver=2.8.10.2
+pkgrel=2
+pkgdesc=A cross-platform open-source make system
+arch=('i686' 'x86_64')
+url=http://www.cmake.org/;
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info')
+makedepends=('qtbase' 'emacs')
+optdepends=('qtbase: cmake-gui')
+install=${pkgname}.install
+source=(http://www.cmake.org/files/v2.8/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('097278785da7182ec0aea8769d06860c')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # Qt is built with reduce-relocations
+  export CFLAGS=${CFLAGS} -fPIC
+  export CXXFLAGS=${CXXFLAGS} -fPIC
+
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  vimpath=${pkgdir}/usr/share/vim/vimfiles
+  install -Dm644 Docs/cmake-indent.vim ${vimpath}/indent/cmake-indent.vim
+  install -Dm644 Docs/cmake-syntax.vim ${vimpath}/syntax/cmake-syntax.vim
+
+  install -Dm644 Docs/cmake-mode.el \
+${pkgdir}/usr/share/emacs/site-lisp/cmake-mode.el
+  emacs -batch -f batch-byte-compile 
${pkgdir}/usr/share/emacs/site-lisp/cmake-mode.el
+
+  install -Dm644 Copyright.txt \
+${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: cmake/repos/staging-i686/cmake.install (from rev 178244, 
cmake/trunk/cmake.install)
===
--- staging-i686/cmake.install  (rev 0)
+++ staging-i686/cmake.install  2013-02-18 22:03:17 UTC (rev 178245)
@@ -0,0 +1,12 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+[[ -x usr/bin/update-desktop-database ]]  update-desktop-database -q || 
true
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: cmake/repos/staging-x86_64/PKGBUILD (from rev 178244, 
cmake/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-02-18 22:03:17 UTC (rev 178245)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=cmake
+pkgver=2.8.10.2
+pkgrel=2
+pkgdesc=A cross-platform open-source make system
+arch=('i686' 'x86_64')
+url=http://www.cmake.org/;
+license=('custom')
+depends=('curl' 'libarchive' 'shared-mime-info')
+makedepends=('qtbase' 'emacs')
+optdepends=('qtbase: cmake-gui')
+install=${pkgname}.install
+source=(http://www.cmake.org/files/v2.8/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('097278785da7182ec0aea8769d06860c')
+
+build() {
+  cd ${pkgname}-${pkgver}
+
+  # Qt is built with reduce-relocations
+  export CFLAGS=${CFLAGS} -fPIC
+  export CXXFLAGS=${CXXFLAGS} -fPIC
+
+  ./bootstrap --prefix=/usr \
+--mandir=/share/man \
+--docdir=/share/doc/cmake \
+--system-libs \
+--qt-gui \
+--parallel=$(/usr/bin/getconf _NPROCESSORS_ONLN)
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+  vimpath=${pkgdir}/usr/share/vim/vimfiles
+  install -Dm644 Docs/cmake-indent.vim ${vimpath}/indent/cmake-indent.vim
+  install -Dm644 Docs/cmake-syntax.vim ${vimpath}/syntax/cmake-syntax.vim
+
+  install -Dm644 Docs/cmake-mode.el \
+${pkgdir}/usr/share/emacs/site-lisp/cmake-mode.el
+  emacs -batch -f batch-byte-compile 
${pkgdir}/usr/share/emacs/site-lisp/cmake-mode.el
+
+  install -Dm644 Copyright.txt \
+${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: cmake/repos/staging-x86_64/cmake.install (from rev 178244, 

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

2013-02-18 Thread Florian Pritz
Date: Monday, February 18, 2013 @ 23:42:11
  Author: bluewind
Revision: 84419

upgpkg: inxi 1.8.38-1

upstream update

Modified:
  inxi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 21:06:36 UTC (rev 84418)
+++ PKGBUILD2013-02-18 22:42:11 UTC (rev 84419)
@@ -1,14 +1,14 @@
 # $Id$
 # Maintainer: Florian Pritz f...@gmx.at
 pkgname=inxi
-pkgver=1.8.37
+pkgver=1.8.38
 pkgrel=1
 pkgdesc=script to get system information
 arch=('any')
 url=http://inxi.org;
 license=('GPL')
 
source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('f0bc2993167e7ef03a90f30d0bea795e')
+md5sums=('a4a8cf0b54021d8cdf8e8c3399d9a4a0')
 
 package() {
   cd $srcdir



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

2013-02-18 Thread Florian Pritz
Date: Monday, February 18, 2013 @ 23:42:20
  Author: bluewind
Revision: 84420

archrelease: copy trunk to community-any

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

--+
 PKGBUILD |   38 +++---
 upgpkg   |8 
 2 files changed, 23 insertions(+), 23 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-18 22:42:11 UTC (rev 84419)
+++ PKGBUILD2013-02-18 22:42:20 UTC (rev 84420)
@@ -1,19 +0,0 @@
-# $Id$
-# Maintainer: Florian Pritz f...@gmx.at
-pkgname=inxi
-pkgver=1.8.37
-pkgrel=1
-pkgdesc=script to get system information
-arch=('any')
-url=http://inxi.org;
-license=('GPL')
-source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('f0bc2993167e7ef03a90f30d0bea795e')
-
-package() {
-  cd $srcdir
-  install -D -m755 inxi $pkgdir/usr/bin/inxi
-  install -D -m755 inxi.1.gz $pkgdir/usr/share/man/man1/inxi.1.gz
-}
-
-# vim:set ts=2 sw=2 et:

Copied: inxi/repos/community-any/PKGBUILD (from rev 84419, inxi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-18 22:42:20 UTC (rev 84420)
@@ -0,0 +1,19 @@
+# $Id$
+# Maintainer: Florian Pritz f...@gmx.at
+pkgname=inxi
+pkgver=1.8.38
+pkgrel=1
+pkgdesc=script to get system information
+arch=('any')
+url=http://inxi.org;
+license=('GPL')
+source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('a4a8cf0b54021d8cdf8e8c3399d9a4a0')
+
+package() {
+  cd $srcdir
+  install -D -m755 inxi $pkgdir/usr/bin/inxi
+  install -D -m755 inxi.1.gz $pkgdir/usr/share/man/man1/inxi.1.gz
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: upgpkg
===
--- upgpkg  2013-02-18 22:42:11 UTC (rev 84419)
+++ upgpkg  2013-02-18 22:42:20 UTC (rev 84420)
@@ -1,4 +0,0 @@
-upgpkg_pre_upgrade() {
-  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
-  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
-}

Copied: inxi/repos/community-any/upgpkg (from rev 84419, inxi/trunk/upgpkg)
===
--- upgpkg  (rev 0)
+++ upgpkg  2013-02-18 22:42:20 UTC (rev 84420)
@@ -0,0 +1,4 @@
+upgpkg_pre_upgrade() {
+  wget http://inxi.googlecode.com/svn/trunk/inxi.tar.gz -O 
inxi-$_newpkgver.tar.gz
+  scp inxi-$_newpkgver.tar.gz nymeria:/srv/ftp/other/community/inxi
+}



[arch-commits] Commit in (10 files)

2013-02-18 Thread Maxime Gauduin
Date: Monday, February 18, 2013 @ 23:58:07
  Author: alucryd
Revision: 84421

Add virtualbox-host-hook and virtualbox-guest-hook

Added:
  virtualbox-guest-hook/
  virtualbox-guest-hook/repos/
  virtualbox-guest-hook/trunk/
  virtualbox-guest-hook/trunk/PKGBUILD
  virtualbox-guest-hook/trunk/virtualbox-guest-hook.install
  virtualbox-host-hook/
  virtualbox-host-hook/repos/
  virtualbox-host-hook/trunk/
  virtualbox-host-hook/trunk/PKGBUILD
  virtualbox-host-hook/trunk/virtualbox-host-hook.install

---+
 virtualbox-guest-hook/trunk/PKGBUILD  |   22 
 virtualbox-guest-hook/trunk/virtualbox-guest-hook.install |5 ++
 virtualbox-host-hook/trunk/PKGBUILD   |   22 
 virtualbox-host-hook/trunk/virtualbox-host-hook.install   |5 ++
 4 files changed, 54 insertions(+)

Added: virtualbox-guest-hook/trunk/PKGBUILD
===
--- virtualbox-guest-hook/trunk/PKGBUILD(rev 0)
+++ virtualbox-guest-hook/trunk/PKGBUILD2013-02-18 22:58:07 UTC (rev 
84421)
@@ -0,0 +1,22 @@
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=virtualbox-guest-hook
+pkgver=1.0
+pkgrel=1
+pkgdesc=mkinitcpio hook to compile the virtualbox guest modules
+url=https://github.com/Alucryd/mkinitcpio-hooks;
+arch=('any')
+license=('GPL3')
+depends=('virtualbox-guest-dkms')
+install=${pkgname}.install
+source=(https://raw.github.com/Alucryd/mkinitcpio-hooks/master/vboxguest;)
+sha256sums=('9b471fb0e6ad0d05a26dfd5cbc1706cb131edd45384c1e175e569711d0c5bb61')
+
+package() {
+  cd ${srcdir}
+  sed -i s|_arch|$CARCH| vboxguest
+  install -dm 755 ${pkgdir}/usr/lib/initcpio/install
+  install -m 644 vboxguest ${pkgdir}/usr/lib/initcpio/install/vboxguest
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: virtualbox-guest-hook/trunk/PKGBUILD
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: virtualbox-guest-hook/trunk/virtualbox-guest-hook.install
===
--- virtualbox-guest-hook/trunk/virtualbox-guest-hook.install   
(rev 0)
+++ virtualbox-guest-hook/trunk/virtualbox-guest-hook.install   2013-02-18 
22:58:07 UTC (rev 84421)
@@ -0,0 +1,5 @@
+post_install() {
+  echo Please add 'vboxguest' to the HOOKS array in /etc/mkinitcpio.conf, and 
'linux-headers' or any custom kernel headers to the SyncFirst array in 
/etc/pacman.conf to enable the automatic module compilation.
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: virtualbox-guest-hook/trunk/virtualbox-guest-hook.install
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: virtualbox-host-hook/trunk/PKGBUILD
===
--- virtualbox-host-hook/trunk/PKGBUILD (rev 0)
+++ virtualbox-host-hook/trunk/PKGBUILD 2013-02-18 22:58:07 UTC (rev 84421)
@@ -0,0 +1,22 @@
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=virtualbox-host-hook
+pkgver=1.0
+pkgrel=1
+pkgdesc=mkinitcpio hook to compile the virtualbox host modules
+url=https://github.com/Alucryd/mkinitcpio-hooks;
+arch=('any')
+license=('GPL3')
+depends=('virtualbox-host-dkms')
+install=${pkgname}.install
+source=(https://raw.github.com/Alucryd/mkinitcpio-hooks/master/vboxhost;)
+sha256sums=('6c5e321b6dac90ca6b7c7e45c842081762d140679bf186dcb948d65eb702bd15')
+
+package() {
+  cd ${srcdir}
+  sed -i s|_arch|$CARCH| vboxhost
+  install -dm 755 ${pkgdir}/usr/lib/initcpio/install
+  install -m 644 vboxhost ${pkgdir}/usr/lib/initcpio/install/vboxhost
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: virtualbox-host-hook/trunk/PKGBUILD
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: virtualbox-host-hook/trunk/virtualbox-host-hook.install
===
--- virtualbox-host-hook/trunk/virtualbox-host-hook.install 
(rev 0)
+++ virtualbox-host-hook/trunk/virtualbox-host-hook.install 2013-02-18 
22:58:07 UTC (rev 84421)
@@ -0,0 +1,5 @@
+post_install() {
+  echo Please add 'vboxhost' to the HOOKS array in /etc/mkinitcpio.conf, and 
'linux-headers' or any custom kernel headers to the SyncFirst array in 
/etc/pacman.conf to enable the automatic module compilation.
+}
+
+# vim: ts=2 sw=2 et:


Property changes on: virtualbox-host-hook/trunk/virtualbox-host-hook.install
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property


[arch-commits] Commit in virtualbox-host-hook/repos (3 files)

2013-02-18 Thread Maxime Gauduin
Date: Monday, February 18, 2013 @ 23:59:38
  Author: alucryd
Revision: 84422

archrelease: copy trunk to community-any

Added:
  virtualbox-host-hook/repos/community-any/
  virtualbox-host-hook/repos/community-any/PKGBUILD
(from rev 84421, virtualbox-host-hook/trunk/PKGBUILD)
  virtualbox-host-hook/repos/community-any/virtualbox-host-hook.install
(from rev 84421, virtualbox-host-hook/trunk/virtualbox-host-hook.install)

--+
 PKGBUILD |   22 ++
 virtualbox-host-hook.install |5 +
 2 files changed, 27 insertions(+)

Copied: virtualbox-host-hook/repos/community-any/PKGBUILD (from rev 84421, 
virtualbox-host-hook/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-02-18 22:59:38 UTC (rev 84422)
@@ -0,0 +1,22 @@
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=virtualbox-host-hook
+pkgver=1.0
+pkgrel=1
+pkgdesc=mkinitcpio hook to compile the virtualbox host modules
+url=https://github.com/Alucryd/mkinitcpio-hooks;
+arch=('any')
+license=('GPL3')
+depends=('virtualbox-host-dkms')
+install=${pkgname}.install
+source=(https://raw.github.com/Alucryd/mkinitcpio-hooks/master/vboxhost;)
+sha256sums=('6c5e321b6dac90ca6b7c7e45c842081762d140679bf186dcb948d65eb702bd15')
+
+package() {
+  cd ${srcdir}
+  sed -i s|_arch|$CARCH| vboxhost
+  install -dm 755 ${pkgdir}/usr/lib/initcpio/install
+  install -m 644 vboxhost ${pkgdir}/usr/lib/initcpio/install/vboxhost
+}
+
+# vim: ts=2 sw=2 et:

Copied: virtualbox-host-hook/repos/community-any/virtualbox-host-hook.install 
(from rev 84421, virtualbox-host-hook/trunk/virtualbox-host-hook.install)
===
--- community-any/virtualbox-host-hook.install  (rev 0)
+++ community-any/virtualbox-host-hook.install  2013-02-18 22:59:38 UTC (rev 
84422)
@@ -0,0 +1,5 @@
+post_install() {
+  echo Please add 'vboxhost' to the HOOKS array in /etc/mkinitcpio.conf, and 
'linux-headers' or any custom kernel headers to the SyncFirst array in 
/etc/pacman.conf to enable the automatic module compilation.
+}
+
+# vim: ts=2 sw=2 et:



[arch-commits] Commit in virtualbox-guest-hook/repos (3 files)

2013-02-18 Thread Maxime Gauduin
Date: Tuesday, February 19, 2013 @ 00:00:25
  Author: alucryd
Revision: 84423

archrelease: copy trunk to community-any

Added:
  virtualbox-guest-hook/repos/community-any/
  virtualbox-guest-hook/repos/community-any/PKGBUILD
(from rev 84422, virtualbox-guest-hook/trunk/PKGBUILD)
  virtualbox-guest-hook/repos/community-any/virtualbox-guest-hook.install
(from rev 84422, virtualbox-guest-hook/trunk/virtualbox-guest-hook.install)

---+
 PKGBUILD  |   22 ++
 virtualbox-guest-hook.install |5 +
 2 files changed, 27 insertions(+)

Copied: virtualbox-guest-hook/repos/community-any/PKGBUILD (from rev 84422, 
virtualbox-guest-hook/trunk/PKGBUILD)
===
--- community-any/PKGBUILD  (rev 0)
+++ community-any/PKGBUILD  2013-02-18 23:00:25 UTC (rev 84423)
@@ -0,0 +1,22 @@
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=virtualbox-guest-hook
+pkgver=1.0
+pkgrel=1
+pkgdesc=mkinitcpio hook to compile the virtualbox guest modules
+url=https://github.com/Alucryd/mkinitcpio-hooks;
+arch=('any')
+license=('GPL3')
+depends=('virtualbox-guest-dkms')
+install=${pkgname}.install
+source=(https://raw.github.com/Alucryd/mkinitcpio-hooks/master/vboxguest;)
+sha256sums=('9b471fb0e6ad0d05a26dfd5cbc1706cb131edd45384c1e175e569711d0c5bb61')
+
+package() {
+  cd ${srcdir}
+  sed -i s|_arch|$CARCH| vboxguest
+  install -dm 755 ${pkgdir}/usr/lib/initcpio/install
+  install -m 644 vboxguest ${pkgdir}/usr/lib/initcpio/install/vboxguest
+}
+
+# vim: ts=2 sw=2 et:

Copied: virtualbox-guest-hook/repos/community-any/virtualbox-guest-hook.install 
(from rev 84422, virtualbox-guest-hook/trunk/virtualbox-guest-hook.install)
===
--- community-any/virtualbox-guest-hook.install (rev 0)
+++ community-any/virtualbox-guest-hook.install 2013-02-18 23:00:25 UTC (rev 
84423)
@@ -0,0 +1,5 @@
+post_install() {
+  echo Please add 'vboxguest' to the HOOKS array in /etc/mkinitcpio.conf, and 
'linux-headers' or any custom kernel headers to the SyncFirst array in 
/etc/pacman.conf to enable the automatic module compilation.
+}
+
+# vim: ts=2 sw=2 et:



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:04:49
  Author: andrea
Revision: 178246

upgpkg: qjson 0.8.1-2

qt4 rebuild

Modified:
  qjson/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 22:03:17 UTC (rev 178245)
+++ PKGBUILD2013-02-18 23:04:49 UTC (rev 178246)
@@ -3,17 +3,19 @@
 
 pkgname=qjson
 pkgver=0.8.1
-pkgrel=1
+pkgrel=2
 pkgdesc=A qt-based library that maps JSON data to QVariant objects
 arch=('i686' 'x86_64')
 license=('GPL')
-url=http://qjson.sourceforge.net;
-depends=('qt')
+url='http://qjson.sourceforge.net/'
+depends=('qt4')
 makedepends=('cmake')
 
source=(${pkgname}-${pkgver}.tar.gz::https://github.com/flavio/${pkgname}/archive/${pkgver}.tar.gz;)
 md5sums=('4eef13da988edf8f91c260a3e1baeea9')
 
 build() {
+  . /etc/profile.d/qt4.sh
+
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:05:05
  Author: andrea
Revision: 178247

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

Added:
  qjson/repos/staging-i686/
  qjson/repos/staging-i686/PKGBUILD
(from rev 178246, qjson/trunk/PKGBUILD)
  qjson/repos/staging-x86_64/
  qjson/repos/staging-x86_64/PKGBUILD
(from rev 178246, qjson/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   30 ++
 staging-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: qjson/repos/staging-i686/PKGBUILD (from rev 178246, 
qjson/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-18 23:05:05 UTC (rev 178247)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=qjson
+pkgver=0.8.1
+pkgrel=2
+pkgdesc=A qt-based library that maps JSON data to QVariant objects
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://qjson.sourceforge.net/'
+depends=('qt4')
+makedepends=('cmake')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/flavio/${pkgname}/archive/${pkgver}.tar.gz;)
+md5sums=('4eef13da988edf8f91c260a3e1baeea9')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: qjson/repos/staging-x86_64/PKGBUILD (from rev 178246, 
qjson/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-02-18 23:05:05 UTC (rev 178247)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=qjson
+pkgver=0.8.1
+pkgrel=2
+pkgdesc=A qt-based library that maps JSON data to QVariant objects
+arch=('i686' 'x86_64')
+license=('GPL')
+url='http://qjson.sourceforge.net/'
+depends=('qt4')
+makedepends=('cmake')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/flavio/${pkgname}/archive/${pkgver}.tar.gz;)
+md5sums=('4eef13da988edf8f91c260a3e1baeea9')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (2 files)

2013-02-18 Thread Maxime Gauduin
Date: Tuesday, February 19, 2013 @ 00:05:07
  Author: alucryd
Revision: 84424

Hooks are not 'any' after all

Deleted:
  virtualbox-guest-hook/repos/community-any/
  virtualbox-host-hook/repos/community-any/



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:07:18
  Author: andrea
Revision: 178248

Remove tests; exports bins PATH

Added:
  qt4/trunk/qt4.profile
Modified:
  qt4/trunk/PKGBUILD

-+
 PKGBUILD|   12 +---
 qt4.profile |1 +
 2 files changed, 10 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:05:05 UTC (rev 178247)
+++ PKGBUILD2013-02-18 23:07:18 UTC (rev 178248)
@@ -4,7 +4,7 @@
 
 pkgname=qt4
 pkgver=4.8.4
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://qt-project.org/'
 license=('GPL3' 'LGPL')
@@ -27,11 +27,12 @@
 conflicts=('qt=4.8.4' 'qtwebkit=2.3.beta2')
 _pkgfqn=qt-everywhere-opensource-src-${pkgver}
 source=(http://releases.qt-project.org/${pkgname}/source/${_pkgfqn}.tar.gz;
-'qtconfig.desktop'
+'qtconfig.desktop' 'qt4.profile'
 'improve-cups-support.patch'
 'ld-gold.patch')
 md5sums=('89c5ecba180cae74c66260ac732dc5cb'
  '20ca06ef59775d749b9451ce7437fa9a'
+ '4ed0bd79a310e2b5d34fc71760b99139'
  'c439c7731c25387352d8453ca7574971'
  '864de59a34a2f72ab2668dd918634b64')
 
@@ -82,7 +83,6 @@
 }
 
 package() {
-
 cd ${_pkgfqn}
 make INSTALL_ROOT=${pkgdir} install
 
@@ -92,6 +92,9 @@
 install -Dm644 ${srcdir}/qtconfig.desktop \
   ${pkgdir}/usr/share/applications/qtconfig4.desktop
 
+# install the profile
+install -D -m755 ${srcdir}/qt4.profile ${pkgdir}/etc/profile.d/qt4.sh
+
 # install license addition
 install -D -m644 LGPL_EXCEPTION.txt \
   ${pkgdir}/usr/share/licenses/${pkgname}/LGPL_EXCEPTION.txt
@@ -110,4 +113,7 @@
 rm 
${pkgdir}/usr/lib/qt4/bin/{qdbus,qdbusviewer,qhelpconverter,qhelpgenerator}
 rm -r ${pkgdir}/usr/lib/qt4/plugins/designer
 rm 
${pkgdir}/usr/share/qt4/translations/{assistant,designer,linguist,qt_help}_*.qm
+
+# Remove tests
+rm -r ${pkgdir}/usr/tests
 }

Added: qt4.profile
===
--- qt4.profile (rev 0)
+++ qt4.profile 2013-02-18 23:07:18 UTC (rev 178248)
@@ -0,0 +1 @@
+export PATH=$PATH:/usr/lib/qt4/bin



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:07:37
  Author: andrea
Revision: 178249

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

Added:
  qt4/repos/staging-i686/PKGBUILD
(from rev 178248, qt4/trunk/PKGBUILD)
  qt4/repos/staging-i686/improve-cups-support.patch
(from rev 178248, qt4/trunk/improve-cups-support.patch)
  qt4/repos/staging-i686/ld-gold.patch
(from rev 178248, qt4/trunk/ld-gold.patch)
  qt4/repos/staging-i686/qt4.install
(from rev 178248, qt4/trunk/qt4.install)
  qt4/repos/staging-i686/qt4.profile
(from rev 178248, qt4/trunk/qt4.profile)
  qt4/repos/staging-i686/qtconfig.desktop
(from rev 178248, qt4/trunk/qtconfig.desktop)
  qt4/repos/staging-x86_64/PKGBUILD
(from rev 178248, qt4/trunk/PKGBUILD)
  qt4/repos/staging-x86_64/improve-cups-support.patch
(from rev 178248, qt4/trunk/improve-cups-support.patch)
  qt4/repos/staging-x86_64/ld-gold.patch
(from rev 178248, qt4/trunk/ld-gold.patch)
  qt4/repos/staging-x86_64/qt4.install
(from rev 178248, qt4/trunk/qt4.install)
  qt4/repos/staging-x86_64/qt4.profile
(from rev 178248, qt4/trunk/qt4.profile)
  qt4/repos/staging-x86_64/qtconfig.desktop
(from rev 178248, qt4/trunk/qtconfig.desktop)
Deleted:
  qt4/repos/staging-i686/PKGBUILD
  qt4/repos/staging-i686/improve-cups-support.patch
  qt4/repos/staging-i686/ld-gold.patch
  qt4/repos/staging-i686/qt4.install
  qt4/repos/staging-i686/qtconfig.desktop
  qt4/repos/staging-x86_64/PKGBUILD
  qt4/repos/staging-x86_64/improve-cups-support.patch
  qt4/repos/staging-x86_64/ld-gold.patch
  qt4/repos/staging-x86_64/qt4.install
  qt4/repos/staging-x86_64/qtconfig.desktop

---+
 staging-i686/PKGBUILD |  232 ++--
 staging-i686/improve-cups-support.patch   |  168 ++--
 staging-i686/ld-gold.patch|   44 ++---
 staging-i686/qt4.install  |   24 +-
 staging-i686/qt4.profile  |1 
 staging-i686/qtconfig.desktop |   18 +-
 staging-x86_64/PKGBUILD   |  232 ++--
 staging-x86_64/improve-cups-support.patch |  168 ++--
 staging-x86_64/ld-gold.patch  |   44 ++---
 staging-x86_64/qt4.install|   24 +-
 staging-x86_64/qt4.profile|1 
 staging-x86_64/qtconfig.desktop   |   18 +-
 12 files changed, 494 insertions(+), 480 deletions(-)

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


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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:09:56
  Author: andrea
Revision: 178250

upgpkg: libdbusmenu-qt 0.9.2-2

qt4 rebuild

Modified:
  libdbusmenu-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:07:37 UTC (rev 178249)
+++ PKGBUILD2013-02-18 23:09:56 UTC (rev 178250)
@@ -3,18 +3,19 @@
 
 pkgname=libdbusmenu-qt
 pkgver=0.9.2
-pkgrel=1
+pkgrel=2
 pkgdesc=A library that provides a Qt implementation of the DBusMenu spec
 arch=('i686' 'x86_64')
 url=https://launchpad.net/libdbusmenu-qt;
 license=('GPL')
-depends=('qt')
+depends=('qt4')
 makedepends=('cmake' 'doxygen' 'qjson')
 
source=(http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2;)
 md5sums=('9a49484927669cd2ec91b3bf9ba8b79e')
 
 build() {
-  cd ${srcdir}
+  . /etc/profile.d/qt4.sh
+
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \
@@ -24,6 +25,6 @@
 }
 
 package() {
-  cd ${srcdir}/build
+  cd build
   make DESTDIR=${pkgdir} install
 }



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:10:08
  Author: andrea
Revision: 178251

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

Added:
  libdbusmenu-qt/repos/staging-i686/
  libdbusmenu-qt/repos/staging-i686/PKGBUILD
(from rev 178250, libdbusmenu-qt/trunk/PKGBUILD)
  libdbusmenu-qt/repos/staging-x86_64/
  libdbusmenu-qt/repos/staging-x86_64/PKGBUILD
(from rev 178250, libdbusmenu-qt/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   30 ++
 staging-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: libdbusmenu-qt/repos/staging-i686/PKGBUILD (from rev 178250, 
libdbusmenu-qt/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-18 23:10:08 UTC (rev 178251)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libdbusmenu-qt
+pkgver=0.9.2
+pkgrel=2
+pkgdesc=A library that provides a Qt implementation of the DBusMenu spec
+arch=('i686' 'x86_64')
+url=https://launchpad.net/libdbusmenu-qt;
+license=('GPL')
+depends=('qt4')
+makedepends=('cmake' 'doxygen' 'qjson')
+source=(http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('9a49484927669cd2ec91b3bf9ba8b79e')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: libdbusmenu-qt/repos/staging-x86_64/PKGBUILD (from rev 178250, 
libdbusmenu-qt/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-02-18 23:10:08 UTC (rev 178251)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libdbusmenu-qt
+pkgver=0.9.2
+pkgrel=2
+pkgdesc=A library that provides a Qt implementation of the DBusMenu spec
+arch=('i686' 'x86_64')
+url=https://launchpad.net/libdbusmenu-qt;
+license=('GPL')
+depends=('qt4')
+makedepends=('cmake' 'doxygen' 'qjson')
+source=(http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('9a49484927669cd2ec91b3bf9ba8b79e')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:11:11
  Author: andrea
Revision: 178252

upgpkg: appmenu-qt 0.2.6-4

qt4 rebuild

Modified:
  appmenu-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:10:08 UTC (rev 178251)
+++ PKGBUILD2013-02-18 23:11:11 UTC (rev 178252)
@@ -3,7 +3,7 @@
 
 pkgname=appmenu-qt
 pkgver=0.2.6
-pkgrel=3
+pkgrel=4
 pkgdesc=Allows Qt applications to export menus over DBus to a menu applet
 arch=('i686' 'x86_64')
 url='https://launchpad.net/appmenu-qt'
@@ -17,6 +17,8 @@
  '5db00ca92274c8b1797c204321961189')
 
 build() {
+  . /etc/profile.d/qt4.sh
+
   # FS#33286
   cd ${pkgname}-${pkgver}
   patch -p0 -i ${srcdir}/appmenu-async.diff
@@ -26,7 +28,7 @@
   cd build
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
+-DCMAKE_BUILD_TYPE=Release
   make
 }
 



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:11:19
  Author: andrea
Revision: 178253

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

Added:
  appmenu-qt/repos/staging-i686/
  appmenu-qt/repos/staging-i686/PKGBUILD
(from rev 178252, appmenu-qt/trunk/PKGBUILD)
  appmenu-qt/repos/staging-i686/appmenu-async.diff
(from rev 178252, appmenu-qt/trunk/appmenu-async.diff)
  appmenu-qt/repos/staging-x86_64/
  appmenu-qt/repos/staging-x86_64/PKGBUILD
(from rev 178252, appmenu-qt/trunk/PKGBUILD)
  appmenu-qt/repos/staging-x86_64/appmenu-async.diff
(from rev 178252, appmenu-qt/trunk/appmenu-async.diff)

---+
 staging-i686/PKGBUILD |   38 +
 staging-i686/appmenu-async.diff   |  149 
 staging-x86_64/PKGBUILD   |   38 +
 staging-x86_64/appmenu-async.diff |  149 
 4 files changed, 374 insertions(+)

Copied: appmenu-qt/repos/staging-i686/PKGBUILD (from rev 178252, 
appmenu-qt/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-18 23:11:19 UTC (rev 178253)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=appmenu-qt
+pkgver=0.2.6
+pkgrel=4
+pkgdesc=Allows Qt applications to export menus over DBus to a menu applet
+arch=('i686' 'x86_64')
+url='https://launchpad.net/appmenu-qt'
+license=('GPL')
+depends=('libdbusmenu-qt')
+makedepends=('cmake')
+source=(http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.bz2{,.asc}
+'appmenu-async.diff')
+md5sums=('90cce750e5412d43ce075b0a9bdb6782'
+ 'de499d01369fc85040f5bbfc53ae1700'
+ '5db00ca92274c8b1797c204321961189')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  # FS#33286
+  cd ${pkgname}-${pkgver}
+  patch -p0 -i ${srcdir}/appmenu-async.diff
+  cd ../
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: appmenu-qt/repos/staging-i686/appmenu-async.diff (from rev 178252, 
appmenu-qt/trunk/appmenu-async.diff)
===
--- staging-i686/appmenu-async.diff (rev 0)
+++ staging-i686/appmenu-async.diff 2013-02-18 23:11:19 UTC (rev 178253)
@@ -0,0 +1,149 @@
+=== modified file 'src/CMakeLists.txt'
+--- src/CMakeLists.txt 2012-02-27 14:27:17 +
 src/CMakeLists.txt 2013-01-04 10:33:53 +
+@@ -15,6 +15,10 @@
+ ${QT_QTXML_INCLUDE_DIR}
+ )
+ 
++qt4_add_dbus_interface(appmenu_qt_SRCS com.canonical.AppMenu.Registrar.xml
++   registrar)
++
++
+ qt4_automoc(${appmenu_qt_SRCS})
+ 
+ link_directories(
+
+=== modified file 'src/appmenuplatformmenubar.cpp'
+--- src/appmenuplatformmenubar.cpp 2012-04-04 16:06:06 +
 src/appmenuplatformmenubar.cpp 2013-01-04 10:36:25 +
+@@ -15,6 +15,7 @@
+along with appmenu-qt.  If not, see http://www.gnu.org/licenses/.
+ */
+ #include appmenuplatformmenubar.h
++#include registrar.h
+ 
+ // dbusmenu-qt
+ #include dbusmenuexporter.h
+@@ -393,6 +394,8 @@
+ 
+ bool MenuBarAdapter::registerWindow()
+ {
++static com::canonical::AppMenu::Registrar *registrar = 0;
++
+ if (!m_menuBar-window()) {
+ WARN  No parent for this menubar;
+ return false;
+@@ -403,9 +406,8 @@
+ return true;
+ }
+ 
+-QDBusInterface host(REGISTRAR_SERVICE, REGISTRAR_PATH, REGISTRAR_IFACE);
+-if (!host.isValid()) {
+-return false;
++if (!registrar) {
++registrar = new com::canonical::AppMenu::Registrar(REGISTRAR_SERVICE, 
REGISTRAR_PATH, QDBusConnection::sessionBus(), 0);
+ }
+ 
+ Q_FOREACH(QAction *action, m_menuBar-actions()) {
+@@ -428,8 +430,9 @@
+ }
+ 
+ m_registeredWinId = winId;
+-QVariant path = 
QVariant::fromValueQDBusObjectPath(QDBusObjectPath(m_objectPath));
+-host.asyncCall(QLatin1String(RegisterWindow), QVariant(winId), path);
++if (registrar) {
++registrar-RegisterWindow(winId, QDBusObjectPath(m_objectPath));
++}
+ return true;
+ }
+ 
+
+=== added file 'src/com.canonical.AppMenu.Registrar.xml'
+--- src/com.canonical.AppMenu.Registrar.xml1970-01-01 00:00:00 +
 src/com.canonical.AppMenu.Registrar.xml2013-01-04 10:04:35 +
+@@ -0,0 +1,56 @@
++!DOCTYPE node PUBLIC -//freedesktop//DTD D-BUS Object Introspection 
1.0//EN http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd;
++node xmlns:dox=http://www.ayatana.org/dbus/dox.dtd;
++  dox:d![CDATA[
++@mainpage
++   
++An interface to register menus that are associated with a window in 
an application.  The
++main interface is docuemented here: @ref 
com::canonical::AppMenu::Registrar.
++  
++ 

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

2013-02-18 Thread Maxime Gauduin
Date: Tuesday, February 19, 2013 @ 00:16:02
  Author: alucryd
Revision: 84425

upgpkg: virtualbox-host-hook 1.0-2

Modified:
  virtualbox-host-hook/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:05:07 UTC (rev 84424)
+++ PKGBUILD2013-02-18 23:16:02 UTC (rev 84425)
@@ -2,10 +2,10 @@
 
 pkgname=virtualbox-host-hook
 pkgver=1.0
-pkgrel=1
+pkgrel=2
 pkgdesc=mkinitcpio hook to compile the virtualbox host modules
 url=https://github.com/Alucryd/mkinitcpio-hooks;
-arch=('any')
+arch=('i686' 'x86_64')
 license=('GPL3')
 depends=('virtualbox-host-dkms')
 install=${pkgname}.install



[arch-commits] Commit in virtualbox-host-hook/repos (6 files)

2013-02-18 Thread Maxime Gauduin
Date: Tuesday, February 19, 2013 @ 00:16:27
  Author: alucryd
Revision: 84426

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

Added:
  virtualbox-host-hook/repos/community-i686/
  virtualbox-host-hook/repos/community-i686/PKGBUILD
(from rev 84425, virtualbox-host-hook/trunk/PKGBUILD)
  virtualbox-host-hook/repos/community-i686/virtualbox-host-hook.install
(from rev 84425, virtualbox-host-hook/trunk/virtualbox-host-hook.install)
  virtualbox-host-hook/repos/community-x86_64/
  virtualbox-host-hook/repos/community-x86_64/PKGBUILD
(from rev 84425, virtualbox-host-hook/trunk/PKGBUILD)
  virtualbox-host-hook/repos/community-x86_64/virtualbox-host-hook.install
(from rev 84425, virtualbox-host-hook/trunk/virtualbox-host-hook.install)

---+
 community-i686/PKGBUILD   |   22 ++
 community-i686/virtualbox-host-hook.install   |5 +
 community-x86_64/PKGBUILD |   22 ++
 community-x86_64/virtualbox-host-hook.install |5 +
 4 files changed, 54 insertions(+)

Copied: virtualbox-host-hook/repos/community-i686/PKGBUILD (from rev 84425, 
virtualbox-host-hook/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-02-18 23:16:27 UTC (rev 84426)
@@ -0,0 +1,22 @@
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=virtualbox-host-hook
+pkgver=1.0
+pkgrel=2
+pkgdesc=mkinitcpio hook to compile the virtualbox host modules
+url=https://github.com/Alucryd/mkinitcpio-hooks;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('virtualbox-host-dkms')
+install=${pkgname}.install
+source=(https://raw.github.com/Alucryd/mkinitcpio-hooks/master/vboxhost;)
+sha256sums=('6c5e321b6dac90ca6b7c7e45c842081762d140679bf186dcb948d65eb702bd15')
+
+package() {
+  cd ${srcdir}
+  sed -i s|_arch|$CARCH| vboxhost
+  install -dm 755 ${pkgdir}/usr/lib/initcpio/install
+  install -m 644 vboxhost ${pkgdir}/usr/lib/initcpio/install/vboxhost
+}
+
+# vim: ts=2 sw=2 et:

Copied: virtualbox-host-hook/repos/community-i686/virtualbox-host-hook.install 
(from rev 84425, virtualbox-host-hook/trunk/virtualbox-host-hook.install)
===
--- community-i686/virtualbox-host-hook.install (rev 0)
+++ community-i686/virtualbox-host-hook.install 2013-02-18 23:16:27 UTC (rev 
84426)
@@ -0,0 +1,5 @@
+post_install() {
+  echo Please add 'vboxhost' to the HOOKS array in /etc/mkinitcpio.conf, and 
'linux-headers' or any custom kernel headers to the SyncFirst array in 
/etc/pacman.conf to enable the automatic module compilation.
+}
+
+# vim: ts=2 sw=2 et:

Copied: virtualbox-host-hook/repos/community-x86_64/PKGBUILD (from rev 84425, 
virtualbox-host-hook/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-02-18 23:16:27 UTC (rev 84426)
@@ -0,0 +1,22 @@
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=virtualbox-host-hook
+pkgver=1.0
+pkgrel=2
+pkgdesc=mkinitcpio hook to compile the virtualbox host modules
+url=https://github.com/Alucryd/mkinitcpio-hooks;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('virtualbox-host-dkms')
+install=${pkgname}.install
+source=(https://raw.github.com/Alucryd/mkinitcpio-hooks/master/vboxhost;)
+sha256sums=('6c5e321b6dac90ca6b7c7e45c842081762d140679bf186dcb948d65eb702bd15')
+
+package() {
+  cd ${srcdir}
+  sed -i s|_arch|$CARCH| vboxhost
+  install -dm 755 ${pkgdir}/usr/lib/initcpio/install
+  install -m 644 vboxhost ${pkgdir}/usr/lib/initcpio/install/vboxhost
+}
+
+# vim: ts=2 sw=2 et:

Copied: 
virtualbox-host-hook/repos/community-x86_64/virtualbox-host-hook.install (from 
rev 84425, virtualbox-host-hook/trunk/virtualbox-host-hook.install)
===
--- community-x86_64/virtualbox-host-hook.install   
(rev 0)
+++ community-x86_64/virtualbox-host-hook.install   2013-02-18 23:16:27 UTC 
(rev 84426)
@@ -0,0 +1,5 @@
+post_install() {
+  echo Please add 'vboxhost' to the HOOKS array in /etc/mkinitcpio.conf, and 
'linux-headers' or any custom kernel headers to the SyncFirst array in 
/etc/pacman.conf to enable the automatic module compilation.
+}
+
+# vim: ts=2 sw=2 et:



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

2013-02-18 Thread Maxime Gauduin
Date: Tuesday, February 19, 2013 @ 00:19:07
  Author: alucryd
Revision: 84427

upgpkg: virtualbox-guest-hook 1.0-2

Modified:
  virtualbox-guest-hook/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:16:27 UTC (rev 84426)
+++ PKGBUILD2013-02-18 23:19:07 UTC (rev 84427)
@@ -2,10 +2,10 @@
 
 pkgname=virtualbox-guest-hook
 pkgver=1.0
-pkgrel=1
+pkgrel=2
 pkgdesc=mkinitcpio hook to compile the virtualbox guest modules
 url=https://github.com/Alucryd/mkinitcpio-hooks;
-arch=('any')
+arch=('i686' 'x86_64')
 license=('GPL3')
 depends=('virtualbox-guest-dkms')
 install=${pkgname}.install



[arch-commits] Commit in virtualbox-guest-hook/repos (6 files)

2013-02-18 Thread Maxime Gauduin
Date: Tuesday, February 19, 2013 @ 00:19:28
  Author: alucryd
Revision: 84428

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

Added:
  virtualbox-guest-hook/repos/community-i686/
  virtualbox-guest-hook/repos/community-i686/PKGBUILD
(from rev 84427, virtualbox-guest-hook/trunk/PKGBUILD)
  virtualbox-guest-hook/repos/community-i686/virtualbox-guest-hook.install
(from rev 84427, virtualbox-guest-hook/trunk/virtualbox-guest-hook.install)
  virtualbox-guest-hook/repos/community-x86_64/
  virtualbox-guest-hook/repos/community-x86_64/PKGBUILD
(from rev 84427, virtualbox-guest-hook/trunk/PKGBUILD)
  virtualbox-guest-hook/repos/community-x86_64/virtualbox-guest-hook.install
(from rev 84427, virtualbox-guest-hook/trunk/virtualbox-guest-hook.install)

+
 community-i686/PKGBUILD|   22 ++
 community-i686/virtualbox-guest-hook.install   |5 +
 community-x86_64/PKGBUILD  |   22 ++
 community-x86_64/virtualbox-guest-hook.install |5 +
 4 files changed, 54 insertions(+)

Copied: virtualbox-guest-hook/repos/community-i686/PKGBUILD (from rev 84427, 
virtualbox-guest-hook/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-02-18 23:19:28 UTC (rev 84428)
@@ -0,0 +1,22 @@
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=virtualbox-guest-hook
+pkgver=1.0
+pkgrel=2
+pkgdesc=mkinitcpio hook to compile the virtualbox guest modules
+url=https://github.com/Alucryd/mkinitcpio-hooks;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('virtualbox-guest-dkms')
+install=${pkgname}.install
+source=(https://raw.github.com/Alucryd/mkinitcpio-hooks/master/vboxguest;)
+sha256sums=('9b471fb0e6ad0d05a26dfd5cbc1706cb131edd45384c1e175e569711d0c5bb61')
+
+package() {
+  cd ${srcdir}
+  sed -i s|_arch|$CARCH| vboxguest
+  install -dm 755 ${pkgdir}/usr/lib/initcpio/install
+  install -m 644 vboxguest ${pkgdir}/usr/lib/initcpio/install/vboxguest
+}
+
+# vim: ts=2 sw=2 et:

Copied: 
virtualbox-guest-hook/repos/community-i686/virtualbox-guest-hook.install (from 
rev 84427, virtualbox-guest-hook/trunk/virtualbox-guest-hook.install)
===
--- community-i686/virtualbox-guest-hook.install
(rev 0)
+++ community-i686/virtualbox-guest-hook.install2013-02-18 23:19:28 UTC 
(rev 84428)
@@ -0,0 +1,5 @@
+post_install() {
+  echo Please add 'vboxguest' to the HOOKS array in /etc/mkinitcpio.conf, and 
'linux-headers' or any custom kernel headers to the SyncFirst array in 
/etc/pacman.conf to enable the automatic module compilation.
+}
+
+# vim: ts=2 sw=2 et:

Copied: virtualbox-guest-hook/repos/community-x86_64/PKGBUILD (from rev 84427, 
virtualbox-guest-hook/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2013-02-18 23:19:28 UTC (rev 84428)
@@ -0,0 +1,22 @@
+# Maintainer: Maxime Gauduin aluc...@gmail.com
+
+pkgname=virtualbox-guest-hook
+pkgver=1.0
+pkgrel=2
+pkgdesc=mkinitcpio hook to compile the virtualbox guest modules
+url=https://github.com/Alucryd/mkinitcpio-hooks;
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('virtualbox-guest-dkms')
+install=${pkgname}.install
+source=(https://raw.github.com/Alucryd/mkinitcpio-hooks/master/vboxguest;)
+sha256sums=('9b471fb0e6ad0d05a26dfd5cbc1706cb131edd45384c1e175e569711d0c5bb61')
+
+package() {
+  cd ${srcdir}
+  sed -i s|_arch|$CARCH| vboxguest
+  install -dm 755 ${pkgdir}/usr/lib/initcpio/install
+  install -m 644 vboxguest ${pkgdir}/usr/lib/initcpio/install/vboxguest
+}
+
+# vim: ts=2 sw=2 et:

Copied: 
virtualbox-guest-hook/repos/community-x86_64/virtualbox-guest-hook.install 
(from rev 84427, virtualbox-guest-hook/trunk/virtualbox-guest-hook.install)
===
--- community-x86_64/virtualbox-guest-hook.install  
(rev 0)
+++ community-x86_64/virtualbox-guest-hook.install  2013-02-18 23:19:28 UTC 
(rev 84428)
@@ -0,0 +1,5 @@
+post_install() {
+  echo Please add 'vboxguest' to the HOOKS array in /etc/mkinitcpio.conf, and 
'linux-headers' or any custom kernel headers to the SyncFirst array in 
/etc/pacman.conf to enable the automatic module compilation.
+}
+
+# vim: ts=2 sw=2 et:



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

2013-02-18 Thread Sven-Hendrik Haase
Date: Tuesday, February 19, 2013 @ 00:24:12
  Author: svenstaro
Revision: 84429

upgpkg: dmd 2.062-1

Updating to 2.062

Modified:
  dmd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:19:28 UTC (rev 84428)
+++ PKGBUILD2013-02-18 23:24:12 UTC (rev 84429)
@@ -7,14 +7,15 @@
 
 pkgname=('dmd' 'libphobos')
 pkgbase=dmd
-pkgver=2.061
+pkgver=2.062
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.digitalmars.com/d/2.0/;
-source=(http://ftp.digitalmars.com/$pkgname.$pkgver.zip
+#source=(http://ftp.digitalmars.com/$pkgname.$pkgver.zip
+source=(http://downloads.dlang.org.s3-website-us-east-1.amazonaws.com/releases/2013/dmd.${pkgver}.zip
 
tools-${pkgver}.tar.gz::https://github.com/D-Programming-Language/tools/tarball/v${pkgver})
 license=('custom')
-md5sums=('823aba8a7e0fbb242bb2a2d922ced5c6'
+md5sums=('fd2211206532ab41a8aef764a9225d3c'
  '2e301d06071fb24c7c2d504c8ddbbc39')
 
 [[ $CARCH == x86_64 ]]  _archbits=64
@@ -23,6 +24,7 @@
 build() {
 cd $srcdir/dmd2/src/
 
+echo $pkgver  VERSION # Fix specific release bug of 2.062
 cd dmd
 make -f posix.mak MODEL=$_archbits
 



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

2013-02-18 Thread Sven-Hendrik Haase
Date: Tuesday, February 19, 2013 @ 00:24:23
  Author: svenstaro
Revision: 84430

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

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

---+
 community-i686/PKGBUILD   |  178 ++--
 community-x86_64/PKGBUILD |  178 ++--
 2 files changed, 180 insertions(+), 176 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-02-18 23:24:12 UTC (rev 84429)
+++ community-i686/PKGBUILD 2013-02-18 23:24:23 UTC (rev 84430)
@@ -1,88 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
-# Contributor: Chris Brannon cmbranno...@gmail.com
-# Contributor: Andrea Scarpino and...@archlinux.org
-# Contributor: Anders Bergh ande...@gmail.com
-# Contributor: Alexander Fehr pizzapunk gmail com
-
-pkgname=('dmd' 'libphobos')
-pkgbase=dmd
-pkgver=2.061
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://www.digitalmars.com/d/2.0/;
-source=(http://ftp.digitalmars.com/$pkgname.$pkgver.zip
-
tools-${pkgver}.tar.gz::https://github.com/D-Programming-Language/tools/tarball/v${pkgver})
-license=('custom')
-md5sums=('823aba8a7e0fbb242bb2a2d922ced5c6'
- '2e301d06071fb24c7c2d504c8ddbbc39')
-
-[[ $CARCH == x86_64 ]]  _archbits=64
-[[ $CARCH == i686 ]]  _archbits=32
-
-build() {
-cd $srcdir/dmd2/src/
-
-cd dmd
-make -f posix.mak MODEL=$_archbits
-
-cd ../druntime
-make -f posix.mak MODEL=$_archbits DMD=../dmd/dmd
-
-cd ../phobos
-make -f posix.mak MODEL=$_archbits DMD=../dmd/dmd
-
-# Building rdmd ourselves breaks in dmd 2.059
-#cd $srcdir/D-Programming-Language-tools-*
-#$srcdir/dmd2/src/dmd/dmd -I$srcdir/dmd2/src/druntime/import/ 
-I$srcdir/dmd2/src/phobos 
-L-L$srcdir/dmd2/src/phobos/generated/linux/release/$_archbits/ rdmd.d
-}
-
-package_dmd() {
-  pkgdesc=The Digital Mars D compiler
-  backup=('etc/dmd.conf')
-  depends=('libphobos' 'gcc')
-
-  install -Dm755 $srcdir/dmd2/src/dmd/dmd $pkgdir/usr/bin/dmd
-
-  mkdir -p $pkgdir/etc
-  echo -e [Environment]\nDFLAGS=-I/usr/include/d 
-I/usr/include/d/druntime/import -L-L/usr/lib -L-L/usr/lib32 
-L--no-warn-search-mismatch -L--export-dynamic  $pkgdir/etc/dmd.conf
-
-
-  install -Dm644 $srcdir/dmd2/man/man1/dmd.1 $pkgdir/usr/share/man/man1/dmd.1
-  install -Dm644 $srcdir/dmd2/man/man1/rdmd.1 $pkgdir/usr/share/man/man1/rdmd.1
-  install -Dm644 $srcdir/dmd2/man/man1/dmd.conf.5 
$pkgdir/usr/share/man/man5/dmd.conf.5
-
-  install -Dm644 $srcdir/dmd2/license.txt 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  mkdir -p $pkgdir/usr/share/d/samples/
-  cp -r $srcdir/dmd2/samples/d/* $pkgdir/usr/share/d/samples/
-
-  find $pkgdir/usr -type f | xargs chmod 0644
-  chmod 755 $pkgdir/usr/bin/*
-
-  install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/ddemangle 
$pkgdir/usr/bin/ddemangle
-  install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/dman $pkgdir/usr/bin/dman
-  install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/dumpobj 
$pkgdir/usr/bin/dumpobj
-  install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/obj2asm 
$pkgdir/usr/bin/obj2asm
-  install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/rdmd $pkgdir/usr/bin/rdmd
-  #install -Dm755 $srcdir/D-Programming-Language-tools-*/rdmd 
$pkgdir/usr/bin/rdmd
-}
-
-package_libphobos() {
-  pkgdesc=The phobos D standard library for DMD
-  install -Dm644 $srcdir/dmd2/src/druntime/lib/libdruntime-linux${_archbits}.a 
$pkgdir/usr/lib/libdruntime.a
-  install -Dm644 
$srcdir/dmd2/src/phobos/generated/linux/release/$_archbits/libphobos2.a 
$pkgdir/usr/lib/libphobos2.a
-
-  mkdir -p $pkgdir/usr/include/d
-  cp -r $srcdir/dmd2/src/phobos/{*.d,etc,std} $pkgdir/usr/include/d
-
-  mkdir -p $pkgdir/usr/include/d/druntime
-  cp -r $srcdir/dmd2/src/druntime/import $pkgdir/usr/include/d/druntime
-
-  mkdir -p $pkgdir/usr/share/doc/d/
-  cp -r $srcdir/dmd2/html $pkgdir/usr/share/doc/d/
-
-  find $pkgdir/usr -type f | xargs chmod 0644
-
-  install -Dm644 $srcdir/dmd2/src/druntime/LICENSE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: dmd/repos/community-i686/PKGBUILD (from rev 84429, dmd/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-02-18 23:24:23 UTC (rev 84430)
@@ -0,0 +1,90 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase s...@lutzhaase.com
+# Contributor: Chris Brannon cmbranno...@gmail.com
+# Contributor: Andrea Scarpino and...@archlinux.org
+# Contributor: Anders Bergh ande...@gmail.com
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgname=('dmd' 'libphobos')
+pkgbase=dmd
+pkgver=2.062
+pkgrel=1
+arch=('i686' 'x86_64')

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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:26:51
  Author: andrea
Revision: 178254

upgpkg: soprano 2.8.0-3

qt4 rebuild

Modified:
  soprano/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:11:19 UTC (rev 178253)
+++ PKGBUILD2013-02-18 23:26:51 UTC (rev 178254)
@@ -4,18 +4,19 @@
 
 pkgname=soprano
 pkgver=2.8.0
-pkgrel=2
+pkgrel=3
 pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
 arch=('i686' 'x86_64')
 url='http://soprano.sourceforge.net/'
 license=('GPL' 'LGPL')
-depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
+depends=('qt4' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
 makedepends=('cmake' 'openjdk6' 'doxygen')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
 md5sums=('273c3403aeb6d8a43e78a4887f50a385')
 
 build() {
-  cd ${srcdir}
+  . /etc/profile.d/qt4.sh
+
   mkdir build
   cd build
   . /etc/profile.d/openjdk6.sh
@@ -29,6 +30,6 @@
 }
 
 package() {
-  cd ${srcdir}/build
+  cd build
   make DESTDIR=${pkgdir} install
 }



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:26:58
  Author: andrea
Revision: 178255

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

Added:
  soprano/repos/staging-i686/
  soprano/repos/staging-i686/PKGBUILD
(from rev 178254, soprano/trunk/PKGBUILD)
  soprano/repos/staging-x86_64/
  soprano/repos/staging-x86_64/PKGBUILD
(from rev 178254, soprano/trunk/PKGBUILD)

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

Copied: soprano/repos/staging-i686/PKGBUILD (from rev 178254, 
soprano/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-18 23:26:58 UTC (rev 178255)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=soprano
+pkgver=2.8.0
+pkgrel=3
+pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
+arch=('i686' 'x86_64')
+url='http://soprano.sourceforge.net/'
+license=('GPL' 'LGPL')
+depends=('qt4' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
+makedepends=('cmake' 'openjdk6' 'doxygen')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('273c3403aeb6d8a43e78a4887f50a385')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  . /etc/profile.d/openjdk6.sh
+  # we need the rpath
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSOPRANO_DISABLE_CLUCENE_INDEX=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: soprano/repos/staging-x86_64/PKGBUILD (from rev 178254, 
soprano/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-02-18 23:26:58 UTC (rev 178255)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=soprano
+pkgver=2.8.0
+pkgrel=3
+pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
+arch=('i686' 'x86_64')
+url='http://soprano.sourceforge.net/'
+license=('GPL' 'LGPL')
+depends=('qt4' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
+makedepends=('cmake' 'openjdk6' 'doxygen')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('273c3403aeb6d8a43e78a4887f50a385')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  . /etc/profile.d/openjdk6.sh
+  # we need the rpath
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSOPRANO_DISABLE_CLUCENE_INDEX=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:29:51
  Author: andrea
Revision: 178256

upgpkg: automoc4 0.9.88-4

qt4 rebuild

Modified:
  automoc4/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:26:58 UTC (rev 178255)
+++ PKGBUILD2013-02-18 23:29:51 UTC (rev 178256)
@@ -4,12 +4,12 @@
 
 pkgname=automoc4
 pkgver=0.9.88
-pkgrel=3
+pkgrel=4
 pkgdesc=Automatic moc for Qt4
 arch=('i686' 'x86_64')
 url='http://www.kde.org/'
 license=('custom')
-depends=('qt')
+depends=('qt4')
 makedepends=('pkgconfig' 'cmake')
 
source=(http://download.kde.org/stable/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2;
 'license.txt')
@@ -17,8 +17,9 @@
  '9014edbb7e2f02fe90b2db8707487bce')
 
 build() {
-   cd ${srcdir}
-   mkdir build
+   . /etc/profile.d/qt4.sh
+
+mkdir build
cd build
cmake ../${pkgname}-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
@@ -27,7 +28,9 @@
 }
 
 package() {
-cd ${srcdir}/build
+cd build
make DESTDIR=${pkgdir} install
-   install -Dm644 ${srcdir}/license.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+install -Dm644 ${srcdir}/license.txt \
+  ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:29:59
  Author: andrea
Revision: 178257

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

Added:
  automoc4/repos/staging-i686/
  automoc4/repos/staging-i686/PKGBUILD
(from rev 178256, automoc4/trunk/PKGBUILD)
  automoc4/repos/staging-i686/license.txt
(from rev 178256, automoc4/trunk/license.txt)
  automoc4/repos/staging-x86_64/
  automoc4/repos/staging-x86_64/PKGBUILD
(from rev 178256, automoc4/trunk/PKGBUILD)
  automoc4/repos/staging-x86_64/license.txt
(from rev 178256, automoc4/trunk/license.txt)

+
 staging-i686/PKGBUILD  |   36 
 staging-i686/license.txt   |   31 +++
 staging-x86_64/PKGBUILD|   36 
 staging-x86_64/license.txt |   31 +++
 4 files changed, 134 insertions(+)

Copied: automoc4/repos/staging-i686/PKGBUILD (from rev 178256, 
automoc4/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-18 23:29:59 UTC (rev 178257)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=automoc4
+pkgver=0.9.88
+pkgrel=4
+pkgdesc=Automatic moc for Qt4
+arch=('i686' 'x86_64')
+url='http://www.kde.org/'
+license=('custom')
+depends=('qt4')
+makedepends=('pkgconfig' 'cmake')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2;
+'license.txt')
+md5sums=('91bf517cb940109180ecd07bc90c69ec'
+ '9014edbb7e2f02fe90b2db8707487bce')
+
+build() {
+   . /etc/profile.d/qt4.sh
+
+mkdir build
+   cd build
+   cmake ../${pkgname}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+cd build
+   make DESTDIR=${pkgdir} install
+
+install -Dm644 ${srcdir}/license.txt \
+  ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Copied: automoc4/repos/staging-i686/license.txt (from rev 178256, 
automoc4/trunk/license.txt)
===
--- staging-i686/license.txt(rev 0)
+++ staging-i686/license.txt2013-02-18 23:29:59 UTC (rev 178257)
@@ -0,0 +1,31 @@
+Upstream Authors: 
+
+   Mathias Kretz kr...@kde.org
+   Alexander Neundorff neundo...@kde.org
+
+Copyright: 
+
+   Copyright (c) 2007 Mathias Kretz kr...@kde.org
+
+License:
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Copied: automoc4/repos/staging-x86_64/PKGBUILD (from rev 178256, 
automoc4/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-02-18 23:29:59 UTC (rev 178257)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=automoc4
+pkgver=0.9.88
+pkgrel=4
+pkgdesc=Automatic moc for Qt4
+arch=('i686' 'x86_64')
+url='http://www.kde.org/'
+license=('custom')
+depends=('qt4')
+makedepends=('pkgconfig' 'cmake')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2;
+'license.txt')
+md5sums=('91bf517cb940109180ecd07bc90c69ec'
+ '9014edbb7e2f02fe90b2db8707487bce')
+
+build() {
+   . /etc/profile.d/qt4.sh
+
+mkdir build
+   cd build
+   cmake ../${pkgname}-${pkgver} \
+   -DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr
+   make
+}
+
+package() {
+

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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:35:27
  Author: andrea
Revision: 178258

upgpkg: akonadi 1.8.1-3

qt4 rebuild

Modified:
  akonadi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:29:59 UTC (rev 178257)
+++ PKGBUILD2013-02-18 23:35:27 UTC (rev 178258)
@@ -4,7 +4,7 @@
 
 pkgname=akonadi
 pkgver=1.8.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'
@@ -16,6 +16,8 @@
 md5sums=('39411abc7bec8a485362ea7460e7e3d7')
 
 build() {
+  . /etc/profile.d/qt4.sh
+
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:35:33
  Author: andrea
Revision: 178259

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

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

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

Copied: akonadi/repos/staging-i686/PKGBUILD (from rev 178258, 
akonadi/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-18 23:35:33 UTC (rev 178259)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=akonadi
+pkgver=1.8.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' 'mysql' 'soprano')
+makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('39411abc7bec8a485362ea7460e7e3d7')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: akonadi/repos/staging-i686/akonadi.install (from rev 178258, 
akonadi/trunk/akonadi.install)
===
--- staging-i686/akonadi.install(rev 0)
+++ staging-i686/akonadi.install2013-02-18 23:35:33 UTC (rev 178259)
@@ -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 178258, 
akonadi/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-02-18 23:35:33 UTC (rev 178259)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=akonadi
+pkgver=1.8.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' 'mysql' 'soprano')
+makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('39411abc7bec8a485362ea7460e7e3d7')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: akonadi/repos/staging-x86_64/akonadi.install (from rev 178258, 
akonadi/trunk/akonadi.install)
===
--- staging-x86_64/akonadi.install  (rev 0)
+++ staging-x86_64/akonadi.install  2013-02-18 23:35:33 UTC (rev 178259)
@@ -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 libqzeitgeist/trunk (PKGBUILD)

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:44:08
  Author: andrea
Revision: 178260

upgpkg: libqzeitgeist 0.8.0-3

qt4 rebuild

Modified:
  libqzeitgeist/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:35:33 UTC (rev 178259)
+++ PKGBUILD2013-02-18 23:44:08 UTC (rev 178260)
@@ -3,12 +3,12 @@
 
 pkgname=libqzeitgeist
 pkgver=0.8.0
-pkgrel=2
+pkgrel=3
 pkgdesc=A Qt interface to the Zeitgeist event tracking system
-url=https://projects.kde.org/projects/kdesupport/libqzeitgeist;
+url='https://projects.kde.org/projects/kdesupport/libqzeitgeist'
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('qt')
+depends=('qt4')
 makedepends=('cmake' 'automoc4' 'python2' 'zeitgeist')
 
source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;
 'set-declarative-installation-dir.patch')
@@ -16,10 +16,10 @@
  '712013e582acb73296e41ad842d0da01')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   patch -p1 -i ${srcdir}/set-declarative-installation-dir.patch
+  cd ../
 
-  cd ${srcdir}
   # Fix python2 path
   sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
 ${pkgname}-${pkgver}/scripts/onto2cpp.py
@@ -29,11 +29,11 @@
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
--DDECLARATIVE_IMPORT_PREFIX=/usr/lib/qt/imports/
+-DDECLARATIVE_IMPORT_PREFIX=/usr/lib/qt4/imports/
   make
 }
 
 package() {
-  cd ${srcdir}/build
+  cd build
   make DESTDIR=${pkgdir} install
 }



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:44:14
  Author: andrea
Revision: 178261

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

Added:
  libqzeitgeist/repos/staging-i686/
  libqzeitgeist/repos/staging-i686/PKGBUILD
(from rev 178260, libqzeitgeist/trunk/PKGBUILD)
  libqzeitgeist/repos/staging-i686/set-declarative-installation-dir.patch
(from rev 178260, 
libqzeitgeist/trunk/set-declarative-installation-dir.patch)
  libqzeitgeist/repos/staging-x86_64/
  libqzeitgeist/repos/staging-x86_64/PKGBUILD
(from rev 178260, libqzeitgeist/trunk/PKGBUILD)
  libqzeitgeist/repos/staging-x86_64/set-declarative-installation-dir.patch
(from rev 178260, 
libqzeitgeist/trunk/set-declarative-installation-dir.patch)

---+
 staging-i686/PKGBUILD |   39 
 staging-i686/set-declarative-installation-dir.patch   |   14 +
 staging-x86_64/PKGBUILD   |   39 
 staging-x86_64/set-declarative-installation-dir.patch |   14 +
 4 files changed, 106 insertions(+)

Copied: libqzeitgeist/repos/staging-i686/PKGBUILD (from rev 178260, 
libqzeitgeist/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-18 23:44:14 UTC (rev 178261)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libqzeitgeist
+pkgver=0.8.0
+pkgrel=3
+pkgdesc=A Qt interface to the Zeitgeist event tracking system
+url='https://projects.kde.org/projects/kdesupport/libqzeitgeist'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('qt4')
+makedepends=('cmake' 'automoc4' 'python2' 'zeitgeist')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;
+'set-declarative-installation-dir.patch')
+md5sums=('97bdea6a1865db7d5f29c93e3a492f24'
+ '712013e582acb73296e41ad842d0da01')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/set-declarative-installation-dir.patch
+  cd ../
+
+  # Fix python2 path
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+${pkgname}-${pkgver}/scripts/onto2cpp.py
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+-DDECLARATIVE_IMPORT_PREFIX=/usr/lib/qt4/imports/
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: libqzeitgeist/repos/staging-i686/set-declarative-installation-dir.patch 
(from rev 178260, libqzeitgeist/trunk/set-declarative-installation-dir.patch)
===
--- staging-i686/set-declarative-installation-dir.patch 
(rev 0)
+++ staging-i686/set-declarative-installation-dir.patch 2013-02-18 23:44:14 UTC 
(rev 178261)
@@ -0,0 +1,14 @@
+--- libqzeitgeist-0.8.0/declarative/CMakeLists.txt~2012-01-28 
10:55:56.178972521 +
 libqzeitgeist-0.8.0/declarative/CMakeLists.txt 2012-01-28 
10:57:29.601561527 +
+@@ -14,7 +14,9 @@
+ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../src/)
+ automoc4_add_library(QZeitgeistDeclarativePlugin MODULE ${declarative_SRCS})
+ 
+-target_link_libraries(QZeitgeistDeclarativePlugin ${QT_LIBRARIES} qzeitgeist)
++target_link_libraries(QZeitgeistDeclarativePlugin 
${QT_QTDECLARATIVE_LIBRARIES} qzeitgeist)
+ 
+-install(TARGETS QZeitgeistDeclarativePlugin DESTINATION 
lib${LIB_SUFFIX}/qt4/imports/org/gnome/zeitgeist)
++set(DECLARATIVE_IMPORT_PREFIX ${QT_IMPORTS_DIR} CACHE PATH Location to 
install declarative bindings)
++
++install(TARGETS QZeitgeistDeclarativePlugin DESTINATION 
${DECLARATIVE_IMPORT_PREFIX}/org/gnome/zeitgeist)
+ install(FILES qmldir DESTINATION ${QT_IMPORTS_DIR}/org/gnome/zeitgeist)

Copied: libqzeitgeist/repos/staging-x86_64/PKGBUILD (from rev 178260, 
libqzeitgeist/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-02-18 23:44:14 UTC (rev 178261)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libqzeitgeist
+pkgver=0.8.0
+pkgrel=3
+pkgdesc=A Qt interface to the Zeitgeist event tracking system
+url='https://projects.kde.org/projects/kdesupport/libqzeitgeist'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('qt4')
+makedepends=('cmake' 'automoc4' 'python2' 'zeitgeist')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;
+'set-declarative-installation-dir.patch')
+md5sums=('97bdea6a1865db7d5f29c93e3a492f24'
+ '712013e582acb73296e41ad842d0da01')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/set-declarative-installation-dir.patch
+  cd ../
+
+  # Fix python2 path
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+

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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:51:46
  Author: andrea
Revision: 178262

upgpkg: phonon 1:4.6.0-4

qt4 rebuild

Modified:
  phonon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:44:14 UTC (rev 178261)
+++ PKGBUILD2013-02-18 23:51:46 UTC (rev 178262)
@@ -3,15 +3,15 @@
 
 pkgname=phonon
 pkgver=4.6.0
-pkgrel=3
+pkgrel=4
 epoch=1
 arch=('i686' 'x86_64')
 url='http://phonon.kde.org/'
 license=('LGPL')
 pkgdesc=The multimedia framework for KDE
-depends=('qt' 'phonon-backend' 'libpulse' 'libqzeitgeist')
+depends=('qt4' 'phonon-backend' 'libpulse' 'libqzeitgeist')
 optdepends=('pulseaudio: PulseAudio support')
-makedepends=('cmake' 'automoc4' 'pulseaudio' 'qtwebkit')
+makedepends=('cmake' 'automoc4' 'pulseaudio')
 
source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
 'fix-plugindir-for-qt-app.patch'
 'fix-qmake.patch')
@@ -31,8 +31,8 @@
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_SKIP_RPATH=ON \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DPHONON_QT_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
--DPHONON_QT_PLUGIN_INSTALL_DIR=/usr/lib/qt/plugins/designer
+-DPHONON_QT_MKSPECS_INSTALL_DIR=/usr/share/qt4/mkspecs/modules \
+-DPHONON_QT_PLUGIN_INSTALL_DIR=/usr/lib/qt4/plugins/designer
   make
 }
 



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:51:53
  Author: andrea
Revision: 178263

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

Added:
  phonon/repos/staging-i686/
  phonon/repos/staging-i686/PKGBUILD
(from rev 178262, phonon/trunk/PKGBUILD)
  phonon/repos/staging-i686/fix-plugindir-for-qt-app.patch
(from rev 178262, phonon/trunk/fix-plugindir-for-qt-app.patch)
  phonon/repos/staging-i686/fix-qmake.patch
(from rev 178262, phonon/trunk/fix-qmake.patch)
  phonon/repos/staging-x86_64/
  phonon/repos/staging-x86_64/PKGBUILD
(from rev 178262, phonon/trunk/PKGBUILD)
  phonon/repos/staging-x86_64/fix-plugindir-for-qt-app.patch
(from rev 178262, phonon/trunk/fix-plugindir-for-qt-app.patch)
  phonon/repos/staging-x86_64/fix-qmake.patch
(from rev 178262, phonon/trunk/fix-qmake.patch)

---+
 staging-i686/PKGBUILD |   42 
 staging-i686/fix-plugindir-for-qt-app.patch   |   11 ++
 staging-i686/fix-qmake.patch  |   27 +++
 staging-x86_64/PKGBUILD   |   42 
 staging-x86_64/fix-plugindir-for-qt-app.patch |   11 ++
 staging-x86_64/fix-qmake.patch|   27 +++
 6 files changed, 160 insertions(+)

Copied: phonon/repos/staging-i686/PKGBUILD (from rev 178262, 
phonon/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-18 23:51:53 UTC (rev 178263)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=phonon
+pkgver=4.6.0
+pkgrel=4
+epoch=1
+arch=('i686' 'x86_64')
+url='http://phonon.kde.org/'
+license=('LGPL')
+pkgdesc=The multimedia framework for KDE
+depends=('qt4' 'phonon-backend' 'libpulse' 'libqzeitgeist')
+optdepends=('pulseaudio: PulseAudio support')
+makedepends=('cmake' 'automoc4' 'pulseaudio')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
+'fix-plugindir-for-qt-app.patch'
+'fix-qmake.patch')
+md5sums=('bbe0c1c62ed14c31479c4c1a6cf1e173'
+ 'e37d67038c2501f25ac7ee7c2de54a9a'
+ 'c17d8617e9482f02b3e098842946b679')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/fix-plugindir-for-qt-app.patch
+  patch -p1 -i ${srcdir}/fix-qmake.patch
+  cd ../
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_QT_MKSPECS_INSTALL_DIR=/usr/share/qt4/mkspecs/modules \
+-DPHONON_QT_PLUGIN_INSTALL_DIR=/usr/lib/qt4/plugins/designer
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: phonon/repos/staging-i686/fix-plugindir-for-qt-app.patch (from rev 
178262, phonon/trunk/fix-plugindir-for-qt-app.patch)
===
--- staging-i686/fix-plugindir-for-qt-app.patch (rev 0)
+++ staging-i686/fix-plugindir-for-qt-app.patch 2013-02-18 23:51:53 UTC (rev 
178263)
@@ -0,0 +1,11 @@
+--- a/phonon/CMakeLists.txt
 b/phonon/CMakeLists.txt
+@@ -78,7 +78,7 @@ if (PHONON_NO_PLATFORMPLUGIN)
+ add_definitions(-DQT_NO_PHONON_PLATFORMPLUGIN)
+ endif (PHONON_NO_PLATFORMPLUGIN)
+ 
+-add_definitions(-DPHONON_LIBRARY_PATH=${PLUGIN_INSTALL_DIR}/plugins)
++add_definitions(-DPHONON_LIBRARY_PATH=${CMAKE_INSTALL_PREFIX}/${PLUGIN_INSTALL_DIR}/plugins)
+ 
+ automoc4_add_library(phonon SHARED ${phonon_LIB_SRCS})
+ target_link_libraries(phonon ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})

Copied: phonon/repos/staging-i686/fix-qmake.patch (from rev 178262, 
phonon/trunk/fix-qmake.patch)
===
--- staging-i686/fix-qmake.patch(rev 0)
+++ staging-i686/fix-qmake.patch2013-02-18 23:51:53 UTC (rev 178263)
@@ -0,0 +1,27 @@
+From: Oswald Buddenhagen o...@kde.org
+Date: Sat, 27 Oct 2012 07:58:16 +
+Subject: remove unnecessary if() statement
+X-Git-Url: 
http://quickgit.kde.org/?p=phonon.gitamp;a=commitdiffamp;h=a8c431494d2a6f3785c132f14d00d38ea0e5b328
+---
+remove unnecessary if() statement
+
+as it happens, this works around a qmake breakage relating to parsing if()
+
+BUG: 295037
+FIXED-IN: 4.6.1
+---
+
+
+--- a/qt_phonon.pri
 b/qt_phonon.pri
+@@ -3,7 +3,7 @@
+ # the next build of Qt. So pretend we're not there in this case.
+ # This file is loaded by qt_config.prf, before .qmake.cache has been loaded.
+ # Consequently, we have to do some stunts to get values out of the cache.
+-if(!exists($$_QMAKE_CACHE_)| \
+-   !contains($$list($$fromfile($$_QMAKE_CACHE_, CONFIG)), QTDIR_build)): \
++!exists($$_QMAKE_CACHE_)| \
++   !contains($$list($$fromfile($$_QMAKE_CACHE_, CONFIG)), QTDIR_build): \
+ QT_CONFIG += phonon
+ 
+

Copied: 

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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:56:04
  Author: andrea
Revision: 178264

Missing source

Modified:
  phonon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:51:53 UTC (rev 178263)
+++ PKGBUILD2013-02-18 23:56:04 UTC (rev 178264)
@@ -20,6 +20,8 @@
  'c17d8617e9482f02b3e098842946b679')
 
 build() {
+  . /etc/profile.d/qt4.sh
+
   cd ${pkgname}-${pkgver}
   patch -p1 -i ${srcdir}/fix-plugindir-for-qt-app.patch
   patch -p1 -i ${srcdir}/fix-qmake.patch



[arch-commits] Commit in phonon/repos/staging-i686 (6 files)

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:56:23
  Author: andrea
Revision: 178265

archrelease: copy trunk to staging-i686

Added:
  phonon/repos/staging-i686/PKGBUILD
(from rev 178264, phonon/trunk/PKGBUILD)
  phonon/repos/staging-i686/fix-plugindir-for-qt-app.patch
(from rev 178264, phonon/trunk/fix-plugindir-for-qt-app.patch)
  phonon/repos/staging-i686/fix-qmake.patch
(from rev 178264, phonon/trunk/fix-qmake.patch)
Deleted:
  phonon/repos/staging-i686/PKGBUILD
  phonon/repos/staging-i686/fix-plugindir-for-qt-app.patch
  phonon/repos/staging-i686/fix-qmake.patch

+
 PKGBUILD   |   86 +++
 fix-plugindir-for-qt-app.patch |   22 -
 fix-qmake.patch|   54 
 3 files changed, 82 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-18 23:56:04 UTC (rev 178264)
+++ PKGBUILD2013-02-18 23:56:23 UTC (rev 178265)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=phonon
-pkgver=4.6.0
-pkgrel=4
-epoch=1
-arch=('i686' 'x86_64')
-url='http://phonon.kde.org/'
-license=('LGPL')
-pkgdesc=The multimedia framework for KDE
-depends=('qt4' 'phonon-backend' 'libpulse' 'libqzeitgeist')
-optdepends=('pulseaudio: PulseAudio support')
-makedepends=('cmake' 'automoc4' 'pulseaudio')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
-'fix-plugindir-for-qt-app.patch'
-'fix-qmake.patch')
-md5sums=('bbe0c1c62ed14c31479c4c1a6cf1e173'
- 'e37d67038c2501f25ac7ee7c2de54a9a'
- 'c17d8617e9482f02b3e098842946b679')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/fix-plugindir-for-qt-app.patch
-  patch -p1 -i ${srcdir}/fix-qmake.patch
-  cd ../
-
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPHONON_QT_MKSPECS_INSTALL_DIR=/usr/share/qt4/mkspecs/modules \
--DPHONON_QT_PLUGIN_INSTALL_DIR=/usr/lib/qt4/plugins/designer
-  make
-}
-
-package(){
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: phonon/repos/staging-i686/PKGBUILD (from rev 178264, 
phonon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-18 23:56:23 UTC (rev 178265)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=phonon
+pkgver=4.6.0
+pkgrel=4
+epoch=1
+arch=('i686' 'x86_64')
+url='http://phonon.kde.org/'
+license=('LGPL')
+pkgdesc=The multimedia framework for KDE
+depends=('qt4' 'phonon-backend' 'libpulse' 'libqzeitgeist')
+optdepends=('pulseaudio: PulseAudio support')
+makedepends=('cmake' 'automoc4' 'pulseaudio')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
+'fix-plugindir-for-qt-app.patch'
+'fix-qmake.patch')
+md5sums=('bbe0c1c62ed14c31479c4c1a6cf1e173'
+ 'e37d67038c2501f25ac7ee7c2de54a9a'
+ 'c17d8617e9482f02b3e098842946b679')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/fix-plugindir-for-qt-app.patch
+  patch -p1 -i ${srcdir}/fix-qmake.patch
+  cd ../
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_QT_MKSPECS_INSTALL_DIR=/usr/share/qt4/mkspecs/modules \
+-DPHONON_QT_PLUGIN_INSTALL_DIR=/usr/lib/qt4/plugins/designer
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: fix-plugindir-for-qt-app.patch
===
--- fix-plugindir-for-qt-app.patch  2013-02-18 23:56:04 UTC (rev 178264)
+++ fix-plugindir-for-qt-app.patch  2013-02-18 23:56:23 UTC (rev 178265)
@@ -1,11 +0,0 @@
 a/phonon/CMakeLists.txt
-+++ b/phonon/CMakeLists.txt
-@@ -78,7 +78,7 @@ if (PHONON_NO_PLATFORMPLUGIN)
- add_definitions(-DQT_NO_PHONON_PLATFORMPLUGIN)
- endif (PHONON_NO_PLATFORMPLUGIN)
- 
--add_definitions(-DPHONON_LIBRARY_PATH=${PLUGIN_INSTALL_DIR}/plugins)
-+add_definitions(-DPHONON_LIBRARY_PATH=${CMAKE_INSTALL_PREFIX}/${PLUGIN_INSTALL_DIR}/plugins)
- 
- automoc4_add_library(phonon SHARED ${phonon_LIB_SRCS})
- target_link_libraries(phonon ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})

Copied: phonon/repos/staging-i686/fix-plugindir-for-qt-app.patch (from rev 
178264, phonon/trunk/fix-plugindir-for-qt-app.patch)
===
--- fix-plugindir-for-qt-app.patch  (rev 0)
+++ fix-plugindir-for-qt-app.patch  2013-02-18 23:56:23 UTC (rev 178265)
@@ -0,0 +1,11 @@
+--- a/phonon/CMakeLists.txt
 b/phonon/CMakeLists.txt
+@@ -78,7 +78,7 @@ if 

[arch-commits] Commit in phonon/repos/staging-x86_64 (6 files)

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:56:29
  Author: andrea
Revision: 178266

archrelease: copy trunk to staging-x86_64

Added:
  phonon/repos/staging-x86_64/PKGBUILD
(from rev 178265, phonon/trunk/PKGBUILD)
  phonon/repos/staging-x86_64/fix-plugindir-for-qt-app.patch
(from rev 178265, phonon/trunk/fix-plugindir-for-qt-app.patch)
  phonon/repos/staging-x86_64/fix-qmake.patch
(from rev 178265, phonon/trunk/fix-qmake.patch)
Deleted:
  phonon/repos/staging-x86_64/PKGBUILD
  phonon/repos/staging-x86_64/fix-plugindir-for-qt-app.patch
  phonon/repos/staging-x86_64/fix-qmake.patch

+
 PKGBUILD   |   86 +++
 fix-plugindir-for-qt-app.patch |   22 -
 fix-qmake.patch|   54 
 3 files changed, 82 insertions(+), 80 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-18 23:56:23 UTC (rev 178265)
+++ PKGBUILD2013-02-18 23:56:29 UTC (rev 178266)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=phonon
-pkgver=4.6.0
-pkgrel=4
-epoch=1
-arch=('i686' 'x86_64')
-url='http://phonon.kde.org/'
-license=('LGPL')
-pkgdesc=The multimedia framework for KDE
-depends=('qt4' 'phonon-backend' 'libpulse' 'libqzeitgeist')
-optdepends=('pulseaudio: PulseAudio support')
-makedepends=('cmake' 'automoc4' 'pulseaudio')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
-'fix-plugindir-for-qt-app.patch'
-'fix-qmake.patch')
-md5sums=('bbe0c1c62ed14c31479c4c1a6cf1e173'
- 'e37d67038c2501f25ac7ee7c2de54a9a'
- 'c17d8617e9482f02b3e098842946b679')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/fix-plugindir-for-qt-app.patch
-  patch -p1 -i ${srcdir}/fix-qmake.patch
-  cd ../
-
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPHONON_QT_MKSPECS_INSTALL_DIR=/usr/share/qt4/mkspecs/modules \
--DPHONON_QT_PLUGIN_INSTALL_DIR=/usr/lib/qt4/plugins/designer
-  make
-}
-
-package(){
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: phonon/repos/staging-x86_64/PKGBUILD (from rev 178265, 
phonon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-18 23:56:29 UTC (rev 178266)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=phonon
+pkgver=4.6.0
+pkgrel=4
+epoch=1
+arch=('i686' 'x86_64')
+url='http://phonon.kde.org/'
+license=('LGPL')
+pkgdesc=The multimedia framework for KDE
+depends=('qt4' 'phonon-backend' 'libpulse' 'libqzeitgeist')
+optdepends=('pulseaudio: PulseAudio support')
+makedepends=('cmake' 'automoc4' 'pulseaudio')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
+'fix-plugindir-for-qt-app.patch'
+'fix-qmake.patch')
+md5sums=('bbe0c1c62ed14c31479c4c1a6cf1e173'
+ 'e37d67038c2501f25ac7ee7c2de54a9a'
+ 'c17d8617e9482f02b3e098842946b679')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/fix-plugindir-for-qt-app.patch
+  patch -p1 -i ${srcdir}/fix-qmake.patch
+  cd ../
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_QT_MKSPECS_INSTALL_DIR=/usr/share/qt4/mkspecs/modules \
+-DPHONON_QT_PLUGIN_INSTALL_DIR=/usr/lib/qt4/plugins/designer
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: fix-plugindir-for-qt-app.patch
===
--- fix-plugindir-for-qt-app.patch  2013-02-18 23:56:23 UTC (rev 178265)
+++ fix-plugindir-for-qt-app.patch  2013-02-18 23:56:29 UTC (rev 178266)
@@ -1,11 +0,0 @@
 a/phonon/CMakeLists.txt
-+++ b/phonon/CMakeLists.txt
-@@ -78,7 +78,7 @@ if (PHONON_NO_PLATFORMPLUGIN)
- add_definitions(-DQT_NO_PHONON_PLATFORMPLUGIN)
- endif (PHONON_NO_PLATFORMPLUGIN)
- 
--add_definitions(-DPHONON_LIBRARY_PATH=${PLUGIN_INSTALL_DIR}/plugins)
-+add_definitions(-DPHONON_LIBRARY_PATH=${CMAKE_INSTALL_PREFIX}/${PLUGIN_INSTALL_DIR}/plugins)
- 
- automoc4_add_library(phonon SHARED ${phonon_LIB_SRCS})
- target_link_libraries(phonon ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})

Copied: phonon/repos/staging-x86_64/fix-plugindir-for-qt-app.patch (from rev 
178265, phonon/trunk/fix-plugindir-for-qt-app.patch)
===
--- fix-plugindir-for-qt-app.patch  (rev 0)
+++ fix-plugindir-for-qt-app.patch  2013-02-18 23:56:29 UTC (rev 178266)
@@ -0,0 +1,11 @@
+--- a/phonon/CMakeLists.txt
 b/phonon/CMakeLists.txt
+@@ 

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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:57:02
  Author: andrea
Revision: 178267

Missing source

Modified:
  libqzeitgeist/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:56:29 UTC (rev 178266)
+++ PKGBUILD2013-02-18 23:57:02 UTC (rev 178267)
@@ -16,6 +16,8 @@
  '712013e582acb73296e41ad842d0da01')
 
 build() {
+  . /etc/profile.d/qt4.sh
+
   cd ${pkgname}-${pkgver}
   patch -p1 -i ${srcdir}/set-declarative-installation-dir.patch
   cd ../



[arch-commits] Commit in libqzeitgeist/repos/staging-i686 (4 files)

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:57:13
  Author: andrea
Revision: 178268

archrelease: copy trunk to staging-i686

Added:
  libqzeitgeist/repos/staging-i686/PKGBUILD
(from rev 178267, libqzeitgeist/trunk/PKGBUILD)
  libqzeitgeist/repos/staging-i686/set-declarative-installation-dir.patch
(from rev 178267, 
libqzeitgeist/trunk/set-declarative-installation-dir.patch)
Deleted:
  libqzeitgeist/repos/staging-i686/PKGBUILD
  libqzeitgeist/repos/staging-i686/set-declarative-installation-dir.patch

+
 PKGBUILD   |   80 +++
 set-declarative-installation-dir.patch |   28 +-
 2 files changed, 55 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-18 23:57:02 UTC (rev 178267)
+++ PKGBUILD2013-02-18 23:57:13 UTC (rev 178268)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libqzeitgeist
-pkgver=0.8.0
-pkgrel=3
-pkgdesc=A Qt interface to the Zeitgeist event tracking system
-url='https://projects.kde.org/projects/kdesupport/libqzeitgeist'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('qt4')
-makedepends=('cmake' 'automoc4' 'python2' 'zeitgeist')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;
-'set-declarative-installation-dir.patch')
-md5sums=('97bdea6a1865db7d5f29c93e3a492f24'
- '712013e582acb73296e41ad842d0da01')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/set-declarative-installation-dir.patch
-  cd ../
-
-  # Fix python2 path
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
-${pkgname}-${pkgver}/scripts/onto2cpp.py
-
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
--DDECLARATIVE_IMPORT_PREFIX=/usr/lib/qt4/imports/
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libqzeitgeist/repos/staging-i686/PKGBUILD (from rev 178267, 
libqzeitgeist/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-18 23:57:13 UTC (rev 178268)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libqzeitgeist
+pkgver=0.8.0
+pkgrel=3
+pkgdesc=A Qt interface to the Zeitgeist event tracking system
+url='https://projects.kde.org/projects/kdesupport/libqzeitgeist'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('qt4')
+makedepends=('cmake' 'automoc4' 'python2' 'zeitgeist')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;
+'set-declarative-installation-dir.patch')
+md5sums=('97bdea6a1865db7d5f29c93e3a492f24'
+ '712013e582acb73296e41ad842d0da01')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/set-declarative-installation-dir.patch
+  cd ../
+
+  # Fix python2 path
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+${pkgname}-${pkgver}/scripts/onto2cpp.py
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+-DDECLARATIVE_IMPORT_PREFIX=/usr/lib/qt4/imports/
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: set-declarative-installation-dir.patch
===
--- set-declarative-installation-dir.patch  2013-02-18 23:57:02 UTC (rev 
178267)
+++ set-declarative-installation-dir.patch  2013-02-18 23:57:13 UTC (rev 
178268)
@@ -1,14 +0,0 @@
 libqzeitgeist-0.8.0/declarative/CMakeLists.txt~2012-01-28 
10:55:56.178972521 +
-+++ libqzeitgeist-0.8.0/declarative/CMakeLists.txt 2012-01-28 
10:57:29.601561527 +
-@@ -14,7 +14,9 @@
- include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../src/)
- automoc4_add_library(QZeitgeistDeclarativePlugin MODULE ${declarative_SRCS})
- 
--target_link_libraries(QZeitgeistDeclarativePlugin ${QT_LIBRARIES} qzeitgeist)
-+target_link_libraries(QZeitgeistDeclarativePlugin 
${QT_QTDECLARATIVE_LIBRARIES} qzeitgeist)
- 
--install(TARGETS QZeitgeistDeclarativePlugin DESTINATION 
lib${LIB_SUFFIX}/qt4/imports/org/gnome/zeitgeist)
-+set(DECLARATIVE_IMPORT_PREFIX ${QT_IMPORTS_DIR} CACHE PATH Location to 
install declarative bindings)
-+
-+install(TARGETS QZeitgeistDeclarativePlugin DESTINATION 
${DECLARATIVE_IMPORT_PREFIX}/org/gnome/zeitgeist)
- install(FILES qmldir DESTINATION ${QT_IMPORTS_DIR}/org/gnome/zeitgeist)

Copied: libqzeitgeist/repos/staging-i686/set-declarative-installation-dir.patch 
(from rev 178267, libqzeitgeist/trunk/set-declarative-installation-dir.patch)
===
--- set-declarative-installation-dir.patch  (rev 

[arch-commits] Commit in libqzeitgeist/repos/staging-x86_64 (4 files)

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:57:18
  Author: andrea
Revision: 178269

archrelease: copy trunk to staging-x86_64

Added:
  libqzeitgeist/repos/staging-x86_64/PKGBUILD
(from rev 178268, libqzeitgeist/trunk/PKGBUILD)
  libqzeitgeist/repos/staging-x86_64/set-declarative-installation-dir.patch
(from rev 178268, 
libqzeitgeist/trunk/set-declarative-installation-dir.patch)
Deleted:
  libqzeitgeist/repos/staging-x86_64/PKGBUILD
  libqzeitgeist/repos/staging-x86_64/set-declarative-installation-dir.patch

+
 PKGBUILD   |   80 +++
 set-declarative-installation-dir.patch |   28 +-
 2 files changed, 55 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-02-18 23:57:13 UTC (rev 178268)
+++ PKGBUILD2013-02-18 23:57:18 UTC (rev 178269)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=libqzeitgeist
-pkgver=0.8.0
-pkgrel=3
-pkgdesc=A Qt interface to the Zeitgeist event tracking system
-url='https://projects.kde.org/projects/kdesupport/libqzeitgeist'
-arch=('i686' 'x86_64')
-license=('GPL')
-depends=('qt4')
-makedepends=('cmake' 'automoc4' 'python2' 'zeitgeist')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;
-'set-declarative-installation-dir.patch')
-md5sums=('97bdea6a1865db7d5f29c93e3a492f24'
- '712013e582acb73296e41ad842d0da01')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/set-declarative-installation-dir.patch
-  cd ../
-
-  # Fix python2 path
-  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
-${pkgname}-${pkgver}/scripts/onto2cpp.py
-
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_INSTALL_PREFIX=/usr \
--DDECLARATIVE_IMPORT_PREFIX=/usr/lib/qt4/imports/
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: libqzeitgeist/repos/staging-x86_64/PKGBUILD (from rev 178268, 
libqzeitgeist/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-02-18 23:57:18 UTC (rev 178269)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=libqzeitgeist
+pkgver=0.8.0
+pkgrel=3
+pkgdesc=A Qt interface to the Zeitgeist event tracking system
+url='https://projects.kde.org/projects/kdesupport/libqzeitgeist'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('qt4')
+makedepends=('cmake' 'automoc4' 'python2' 'zeitgeist')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2;
+'set-declarative-installation-dir.patch')
+md5sums=('97bdea6a1865db7d5f29c93e3a492f24'
+ '712013e582acb73296e41ad842d0da01')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/set-declarative-installation-dir.patch
+  cd ../
+
+  # Fix python2 path
+  sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \
+${pkgname}-${pkgver}/scripts/onto2cpp.py
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+   -DCMAKE_INSTALL_PREFIX=/usr \
+-DDECLARATIVE_IMPORT_PREFIX=/usr/lib/qt4/imports/
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: set-declarative-installation-dir.patch
===
--- set-declarative-installation-dir.patch  2013-02-18 23:57:13 UTC (rev 
178268)
+++ set-declarative-installation-dir.patch  2013-02-18 23:57:18 UTC (rev 
178269)
@@ -1,14 +0,0 @@
 libqzeitgeist-0.8.0/declarative/CMakeLists.txt~2012-01-28 
10:55:56.178972521 +
-+++ libqzeitgeist-0.8.0/declarative/CMakeLists.txt 2012-01-28 
10:57:29.601561527 +
-@@ -14,7 +14,9 @@
- include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../src/)
- automoc4_add_library(QZeitgeistDeclarativePlugin MODULE ${declarative_SRCS})
- 
--target_link_libraries(QZeitgeistDeclarativePlugin ${QT_LIBRARIES} qzeitgeist)
-+target_link_libraries(QZeitgeistDeclarativePlugin 
${QT_QTDECLARATIVE_LIBRARIES} qzeitgeist)
- 
--install(TARGETS QZeitgeistDeclarativePlugin DESTINATION 
lib${LIB_SUFFIX}/qt4/imports/org/gnome/zeitgeist)
-+set(DECLARATIVE_IMPORT_PREFIX ${QT_IMPORTS_DIR} CACHE PATH Location to 
install declarative bindings)
-+
-+install(TARGETS QZeitgeistDeclarativePlugin DESTINATION 
${DECLARATIVE_IMPORT_PREFIX}/org/gnome/zeitgeist)
- install(FILES qmldir DESTINATION ${QT_IMPORTS_DIR}/org/gnome/zeitgeist)

Copied: 
libqzeitgeist/repos/staging-x86_64/set-declarative-installation-dir.patch (from 
rev 178268, libqzeitgeist/trunk/set-declarative-installation-dir.patch)
===
--- set-declarative-installation-dir.patch 

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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:57:38
  Author: andrea
Revision: 178270

upgpkg: attica 0.4.1-2

qt4 rebuild

Modified:
  attica/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:57:18 UTC (rev 178269)
+++ PKGBUILD2013-02-18 23:57:38 UTC (rev 178270)
@@ -3,18 +3,19 @@
 
 pkgname=attica
 pkgver=0.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc='A Qt library that implements the Open Collaboration Services API'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kdesupport/attica'
 license=('LGPL')
-depends=('qt')
+depends=('qt4')
 makedepends=('cmake')
 
source=(http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
 md5sums=('b90983ec5d79e5ddcbc9146fa23cab72')
 
 build() {
-  cd ${srcdir}
+  . /etc/profile.d/qt4.sh
+
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \
@@ -24,6 +25,6 @@
 }
 
 package() {
-  cd ${srcdir}/build
+  cd build
   make DESTDIR=${pkgdir} install
 }



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 00:57:45
  Author: andrea
Revision: 178271

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

Added:
  attica/repos/staging-i686/
  attica/repos/staging-i686/PKGBUILD
(from rev 178270, attica/trunk/PKGBUILD)
  attica/repos/staging-x86_64/
  attica/repos/staging-x86_64/PKGBUILD
(from rev 178270, attica/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   30 ++
 staging-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: attica/repos/staging-i686/PKGBUILD (from rev 178270, 
attica/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-18 23:57:45 UTC (rev 178271)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=attica
+pkgver=0.4.1
+pkgrel=2
+pkgdesc='A Qt library that implements the Open Collaboration Services API'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/attica'
+license=('LGPL')
+depends=('qt4')
+makedepends=('cmake')
+source=(http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('b90983ec5d79e5ddcbc9146fa23cab72')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: attica/repos/staging-x86_64/PKGBUILD (from rev 178270, 
attica/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-02-18 23:57:45 UTC (rev 178271)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=attica
+pkgver=0.4.1
+pkgrel=2
+pkgdesc='A Qt library that implements the Open Collaboration Services API'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/attica'
+license=('LGPL')
+depends=('qt4')
+makedepends=('cmake')
+source=(http://download.kde.org/stable/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('b90983ec5d79e5ddcbc9146fa23cab72')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 01:07:07
  Author: andrea
Revision: 178272

upgpkg: soprano 2.9.0-2

qt4 rebuild

Added:
  soprano/trunk/
Modified:
  soprano/trunk/PKGBUILD
Deleted:
  soprano/trunk/

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

Modified: trunk/PKGBUILD
===
--- kde-unstable/PKGBUILD   2013-02-18 23:57:45 UTC (rev 178271)
+++ trunk/PKGBUILD  2013-02-19 00:07:07 UTC (rev 178272)
@@ -4,20 +4,21 @@
 
 pkgname=soprano
 pkgver=2.9.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
 arch=('i686' 'x86_64')
 url='http://soprano.sourceforge.net/'
 license=('GPL' 'LGPL')
-depends=('qt' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
-makedepends=('cmake' 'openjdk6' 'doxygen')
+depends=('qt4' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
+makedepends=('cmake' 'java-environment' 'doxygen')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
 md5sums=('90134eaaf40b6663dd01cfaefdaba7fb')
 
 build() {
   mkdir build
   cd build
-  . /etc/profile.d/openjdk6.sh
+  . /etc/profile.d/jdk.sh
+  . /etc/profile.d/qt4.sh
   # we need the rpath
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 01:07:16
  Author: andrea
Revision: 178273

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

Added:
  soprano/repos/staging-i686/PKGBUILD
(from rev 178272, soprano/trunk/PKGBUILD)
  soprano/repos/staging-x86_64/PKGBUILD
(from rev 178272, soprano/trunk/PKGBUILD)
Deleted:
  soprano/kde-unstable/
  soprano/repos/staging-i686/PKGBUILD
  soprano/repos/staging-x86_64/PKGBUILD

-+
 staging-i686/PKGBUILD   |   69 ++
 staging-x86_64/PKGBUILD |   69 ++
 2 files changed, 68 insertions(+), 70 deletions(-)

Deleted: repos/staging-i686/PKGBUILD
===
--- repos/staging-i686/PKGBUILD 2013-02-19 00:07:07 UTC (rev 178272)
+++ repos/staging-i686/PKGBUILD 2013-02-19 00:07:16 UTC (rev 178273)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Tobias Powalowski tp...@archlinux.org
-
-pkgname=soprano
-pkgver=2.8.0
-pkgrel=3
-pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
-arch=('i686' 'x86_64')
-url='http://soprano.sourceforge.net/'
-license=('GPL' 'LGPL')
-depends=('qt4' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
-makedepends=('cmake' 'openjdk6' 'doxygen')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('273c3403aeb6d8a43e78a4887f50a385')
-
-build() {
-  . /etc/profile.d/qt4.sh
-
-  mkdir build
-  cd build
-  . /etc/profile.d/openjdk6.sh
-  # we need the rpath
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSOPRANO_DISABLE_CLUCENE_INDEX=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: soprano/repos/staging-i686/PKGBUILD (from rev 178272, 
soprano/trunk/PKGBUILD)
===
--- repos/staging-i686/PKGBUILD (rev 0)
+++ repos/staging-i686/PKGBUILD 2013-02-19 00:07:16 UTC (rev 178273)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=soprano
+pkgver=2.9.0
+pkgrel=2
+pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
+arch=('i686' 'x86_64')
+url='http://soprano.sourceforge.net/'
+license=('GPL' 'LGPL')
+depends=('qt4' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
+makedepends=('cmake' 'java-environment' 'doxygen')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('90134eaaf40b6663dd01cfaefdaba7fb')
+
+build() {
+  mkdir build
+  cd build
+  . /etc/profile.d/jdk.sh
+  . /etc/profile.d/qt4.sh
+  # we need the rpath
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=OFF \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSOPRANO_DISABLE_CLUCENE_INDEX=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: repos/staging-x86_64/PKGBUILD
===
--- repos/staging-x86_64/PKGBUILD   2013-02-19 00:07:07 UTC (rev 178272)
+++ repos/staging-x86_64/PKGBUILD   2013-02-19 00:07:16 UTC (rev 178273)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Tobias Powalowski tp...@archlinux.org
-
-pkgname=soprano
-pkgver=2.8.0
-pkgrel=3
-pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
-arch=('i686' 'x86_64')
-url='http://soprano.sourceforge.net/'
-license=('GPL' 'LGPL')
-depends=('qt4' 'redland-storage-virtuoso' 'libiodbc' 'virtuoso-base')
-makedepends=('cmake' 'openjdk6' 'doxygen')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('273c3403aeb6d8a43e78a4887f50a385')
-
-build() {
-  . /etc/profile.d/qt4.sh
-
-  mkdir build
-  cd build
-  . /etc/profile.d/openjdk6.sh
-  # we need the rpath
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=OFF \
--DCMAKE_INSTALL_PREFIX=/usr \
--DSOPRANO_DISABLE_CLUCENE_INDEX=ON
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: soprano/repos/staging-x86_64/PKGBUILD (from rev 178272, 
soprano/trunk/PKGBUILD)
===
--- repos/staging-x86_64/PKGBUILD   (rev 0)
+++ repos/staging-x86_64/PKGBUILD   2013-02-19 00:07:16 UTC (rev 178273)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=soprano
+pkgver=2.9.0
+pkgrel=2
+pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
+arch=('i686' 

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

2013-02-18 Thread Gaetan Bisson
Date: Tuesday, February 19, 2013 @ 01:13:41
  Author: bisson
Revision: 84431

upstream update

Modified:
  djview4/trunk/PKGBUILD
  djview4/trunk/install

--+
 PKGBUILD |   11 +--
 install  |5 ++---
 2 files changed, 7 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-18 23:24:23 UTC (rev 84430)
+++ PKGBUILD2013-02-19 00:13:41 UTC (rev 84431)
@@ -6,28 +6,27 @@
 # Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=djview4
-pkgver=4.8
-pkgrel=2
+pkgver=4.9
+pkgrel=1
 pkgdesc='Portable DjVu viewer and browser plugin'
 url='http://djvu.sourceforge.net/djview4.html'
 license=('GPL')
 arch=('i686' 'x86_64')
 depends=('qt' 'djvulibre')
 source=(http://downloads.sourceforge.net/djvu/djview-${pkgver}.tar.gz;)
-sha1sums=('266d207afb63a1ee63eed054190bf8fda572')
+sha1sums=('07f97e32919bfb34ff2d59b928c47ffbc96dcfc5')
 
 install=install
 
 build() {
-   cd ${srcdir}/djview-${pkgver}
+   cd ${srcdir}/${pkgname}-${pkgver}
QTDIR=/usr ./configure --prefix=/usr
sed 's/netscape/mozilla/g' -i nsdejavu/Makefile
-   sed 's/swap/rofl_swap/g' -i src/qdjvuwidget.cpp
make
 }
 
 package() {
-   cd ${srcdir}/djview-${pkgver}
+   cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install-djview install-nsdejavu
 
cd desktopfiles

Modified: install
===
--- install 2013-02-18 23:24:23 UTC (rev 84430)
+++ install 2013-02-19 00:13:41 UTC (rev 84431)
@@ -1,7 +1,6 @@
 post_install() {
-   if type xdg-icon-resource /dev/null; then
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-   fi
+   xdg-icon-resource forceupdate --theme hicolor  /dev/null || true
+   update-desktop-database -q || true
 }
 
 post_upgrade() {



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

2013-02-18 Thread Gaetan Bisson
Date: Tuesday, February 19, 2013 @ 01:14:18
  Author: bisson
Revision: 84432

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

Added:
  djview4/repos/community-i686/PKGBUILD
(from rev 84431, djview4/trunk/PKGBUILD)
  djview4/repos/community-i686/install
(from rev 84431, djview4/trunk/install)
  djview4/repos/community-x86_64/PKGBUILD
(from rev 84431, djview4/trunk/PKGBUILD)
  djview4/repos/community-x86_64/install
(from rev 84431, djview4/trunk/install)
Deleted:
  djview4/repos/community-i686/PKGBUILD
  djview4/repos/community-i686/install
  djview4/repos/community-x86_64/PKGBUILD
  djview4/repos/community-x86_64/install

---+
 community-i686/PKGBUILD   |   75 +---
 community-i686/install|   25 +++---
 community-x86_64/PKGBUILD |   75 +---
 community-x86_64/install  |   25 +++---
 4 files changed, 98 insertions(+), 102 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-02-19 00:13:41 UTC (rev 84431)
+++ community-i686/PKGBUILD 2013-02-19 00:14:18 UTC (rev 84432)
@@ -1,38 +0,0 @@
-# $Id$
-# Contributor: Paulo Matias matias.archlinux-br.org
-# Contributor: Leslie P. Polzer polzer.gnu.org
-# Contributor: erm67 erm67.yahoo.it
-# Contributor: Daniel J Griffiths
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=djview4
-pkgver=4.8
-pkgrel=2
-pkgdesc='Portable DjVu viewer and browser plugin'
-url='http://djvu.sourceforge.net/djview4.html'
-license=('GPL')
-arch=('i686' 'x86_64')
-depends=('qt' 'djvulibre')
-source=(http://downloads.sourceforge.net/djvu/djview-${pkgver}.tar.gz;)
-sha1sums=('266d207afb63a1ee63eed054190bf8fda572')
-
-install=install
-
-build() {
-   cd ${srcdir}/djview-${pkgver}
-   QTDIR=/usr ./configure --prefix=/usr
-   sed 's/netscape/mozilla/g' -i nsdejavu/Makefile
-   sed 's/swap/rofl_swap/g' -i src/qdjvuwidget.cpp
-   make
-}
-
-package() {
-   cd ${srcdir}/djview-${pkgver}
-   make DESTDIR=${pkgdir} install-djview install-nsdejavu
-
-   cd desktopfiles
-   install -Dm644 hi32-djview4.png 
${pkgdir}/usr/share/icons/hicolor/32x32/apps/djvulibre-djview4.png
-   install -Dm644 hi64-djview4.png 
${pkgdir}/usr/share/icons/hicolor/64x64/apps/djvulibre-djview4.png
-   install -Dm644 hi64-djview4.png 
${pkgdir}/usr/share/pixmaps/djvulibre-djview4.png
-   install -Dm644 djvulibre-djview4.desktop 
${pkgdir}/usr/share/applications/djvulibre-djview4.desktop
-}

Copied: djview4/repos/community-i686/PKGBUILD (from rev 84431, 
djview4/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-02-19 00:14:18 UTC (rev 84432)
@@ -0,0 +1,37 @@
+# $Id$
+# Contributor: Paulo Matias matias.archlinux-br.org
+# Contributor: Leslie P. Polzer polzer.gnu.org
+# Contributor: erm67 erm67.yahoo.it
+# Contributor: Daniel J Griffiths
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=djview4
+pkgver=4.9
+pkgrel=1
+pkgdesc='Portable DjVu viewer and browser plugin'
+url='http://djvu.sourceforge.net/djview4.html'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('qt' 'djvulibre')
+source=(http://downloads.sourceforge.net/djvu/djview-${pkgver}.tar.gz;)
+sha1sums=('07f97e32919bfb34ff2d59b928c47ffbc96dcfc5')
+
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   QTDIR=/usr ./configure --prefix=/usr
+   sed 's/netscape/mozilla/g' -i nsdejavu/Makefile
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install-djview install-nsdejavu
+
+   cd desktopfiles
+   install -Dm644 hi32-djview4.png 
${pkgdir}/usr/share/icons/hicolor/32x32/apps/djvulibre-djview4.png
+   install -Dm644 hi64-djview4.png 
${pkgdir}/usr/share/icons/hicolor/64x64/apps/djvulibre-djview4.png
+   install -Dm644 hi64-djview4.png 
${pkgdir}/usr/share/pixmaps/djvulibre-djview4.png
+   install -Dm644 djvulibre-djview4.desktop 
${pkgdir}/usr/share/applications/djvulibre-djview4.desktop
+}

Deleted: community-i686/install
===
--- community-i686/install  2013-02-19 00:13:41 UTC (rev 84431)
+++ community-i686/install  2013-02-19 00:14:18 UTC (rev 84432)
@@ -1,13 +0,0 @@
-post_install() {
-   if type xdg-icon-resource /dev/null; then
-   xdg-icon-resource forceupdate --theme hicolor  /dev/null
-   fi
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: djview4/repos/community-i686/install (from rev 84431, 
djview4/trunk/install)
===
--- community-i686/install  (rev 0)
+++ community-i686/install 

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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 01:16:00
  Author: andrea
Revision: 178274

upgpkg: akonadi 1.9.0-3

qt4 rebuild

Added:
  akonadi/trunk/
Modified:
  akonadi/trunk/PKGBUILD
Deleted:
  akonadi/trunk/

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

Modified: trunk/PKGBUILD
===
--- kde-unstable/PKGBUILD   2013-02-18 23:57:45 UTC (rev 178271)
+++ trunk/PKGBUILD  2013-02-19 00:16:00 UTC (rev 178274)
@@ -4,7 +4,7 @@
 
 pkgname=akonadi
 pkgver=1.9.0
-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'
@@ -16,6 +16,8 @@
 md5sums=('51ef4c9455f97ce4346c5934174b9da8')
 
 build() {
+  . /etc/profile.d/qt4.sh
+
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \



[arch-commits] Commit in akonadi (9 files)

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 01:16:08
  Author: andrea
Revision: 178275

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

Added:
  akonadi/repos/staging-i686/PKGBUILD
(from rev 178274, akonadi/trunk/PKGBUILD)
  akonadi/repos/staging-i686/akonadi.install
(from rev 178274, akonadi/trunk/akonadi.install)
  akonadi/repos/staging-x86_64/PKGBUILD
(from rev 178274, akonadi/trunk/PKGBUILD)
  akonadi/repos/staging-x86_64/akonadi.install
(from rev 178274, akonadi/trunk/akonadi.install)
Deleted:
  akonadi/kde-unstable/
  akonadi/repos/staging-i686/PKGBUILD
  akonadi/repos/staging-i686/akonadi.install
  akonadi/repos/staging-x86_64/PKGBUILD
  akonadi/repos/staging-x86_64/akonadi.install

+
 staging-i686/PKGBUILD  |   66 +++
 staging-i686/akonadi.install   |   22 ++---
 staging-x86_64/PKGBUILD|   66 +++
 staging-x86_64/akonadi.install |   22 ++---
 4 files changed, 88 insertions(+), 88 deletions(-)

Deleted: repos/staging-i686/PKGBUILD
===
--- repos/staging-i686/PKGBUILD 2013-02-19 00:16:00 UTC (rev 178274)
+++ repos/staging-i686/PKGBUILD 2013-02-19 00:16:08 UTC (rev 178275)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=akonadi
-pkgver=1.8.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' 'mysql' 'soprano')
-makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('39411abc7bec8a485362ea7460e7e3d7')
-
-build() {
-  . /etc/profile.d/qt4.sh
-
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
-  make
-}
-
-package() {
-  cd build
-  make DESTDIR=${pkgdir} install
-}

Copied: akonadi/repos/staging-i686/PKGBUILD (from rev 178274, 
akonadi/trunk/PKGBUILD)
===
--- repos/staging-i686/PKGBUILD (rev 0)
+++ repos/staging-i686/PKGBUILD 2013-02-19 00:16:08 UTC (rev 178275)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=akonadi
+pkgver=1.9.0
+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' 'mysql' 'soprano')
+makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost')
+install=${pkgname}.install
+source=(http://download.kde.org/stable/${pkgname}/src/${pkgname}-${pkgver}.tar.bz2;)
+md5sums=('51ef4c9455f97ce4346c5934174b9da8')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: repos/staging-i686/akonadi.install
===
--- repos/staging-i686/akonadi.install  2013-02-19 00:16:00 UTC (rev 178274)
+++ repos/staging-i686/akonadi.install  2013-02-19 00:16:08 UTC (rev 178275)
@@ -1,11 +0,0 @@
-post_install() {
-   update-mime-database usr/share/mime  /dev/null
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: akonadi/repos/staging-i686/akonadi.install (from rev 178274, 
akonadi/trunk/akonadi.install)
===
--- repos/staging-i686/akonadi.install  (rev 0)
+++ repos/staging-i686/akonadi.install  2013-02-19 00:16:08 UTC (rev 178275)
@@ -0,0 +1,11 @@
+post_install() {
+   update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: repos/staging-x86_64/PKGBUILD
===
--- repos/staging-x86_64/PKGBUILD   2013-02-19 00:16:00 UTC (rev 178274)
+++ repos/staging-x86_64/PKGBUILD   2013-02-19 00:16:08 UTC (rev 178275)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=akonadi
-pkgver=1.8.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')

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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 01:16:51
  Author: andrea
Revision: 178276

upgpkg: polkit-qt 0.103.0-2

qt4 rebuild

Modified:
  polkit-qt/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-19 00:16:08 UTC (rev 178275)
+++ PKGBUILD2013-02-19 00:16:51 UTC (rev 178276)
@@ -4,18 +4,19 @@
 
 pkgname=polkit-qt
 pkgver=0.103.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A library that allows developers to access PolicyKit API with a nice 
Qt-style API'
 arch=('i686' 'x86_64')
 url='https://projects.kde.org/projects/kdesupport/polkit-qt-1'
 license=('LGPL')
-depends=('polkit' 'qt')
+depends=('polkit' 'qt4')
 makedepends=('cmake' 'automoc4')
 
source=(http://download.kde.org/stable/apps/KDE4.x/admin/${pkgname}-1-${pkgver}.tar.bz2;)
 md5sums=('a105e233e6733fb072c9080cd7ae1af2')
 
 build() {
-  cd ${srcdir}
+  . /etc/profile.d/qt4.sh
+
   mkdir build
   cd build
   cmake ../${pkgname}-1-${pkgver} \
@@ -25,6 +26,6 @@
 }
 
 package() {
-  cd ${srcdir}/build
+  cd build
   make DESTDIR=${pkgdir} install
 }



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 01:16:57
  Author: andrea
Revision: 178277

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

Added:
  polkit-qt/repos/staging-i686/
  polkit-qt/repos/staging-i686/PKGBUILD
(from rev 178276, polkit-qt/trunk/PKGBUILD)
  polkit-qt/repos/staging-x86_64/
  polkit-qt/repos/staging-x86_64/PKGBUILD
(from rev 178276, polkit-qt/trunk/PKGBUILD)

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

Copied: polkit-qt/repos/staging-i686/PKGBUILD (from rev 178276, 
polkit-qt/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-19 00:16:57 UTC (rev 178277)
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 102633 2010-12-09 08:40:59Z andrea $
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=polkit-qt
+pkgver=0.103.0
+pkgrel=2
+pkgdesc='A library that allows developers to access PolicyKit API with a nice 
Qt-style API'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/polkit-qt-1'
+license=('LGPL')
+depends=('polkit' 'qt4')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/apps/KDE4.x/admin/${pkgname}-1-${pkgver}.tar.bz2;)
+md5sums=('a105e233e6733fb072c9080cd7ae1af2')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-1-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: polkit-qt/repos/staging-x86_64/PKGBUILD (from rev 178276, 
polkit-qt/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-02-19 00:16:57 UTC (rev 178277)
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 102633 2010-12-09 08:40:59Z andrea $
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Pierre Schmitz pie...@archlinux.de
+
+pkgname=polkit-qt
+pkgver=0.103.0
+pkgrel=2
+pkgdesc='A library that allows developers to access PolicyKit API with a nice 
Qt-style API'
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/polkit-qt-1'
+license=('LGPL')
+depends=('polkit' 'qt4')
+makedepends=('cmake' 'automoc4')
+source=(http://download.kde.org/stable/apps/KDE4.x/admin/${pkgname}-1-${pkgver}.tar.bz2;)
+md5sums=('a105e233e6733fb072c9080cd7ae1af2')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-1-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 01:22:00
  Author: andrea
Revision: 178278

upgpkg: grantlee 0.3.0-2

qt4 rebuild

Modified:
  grantlee/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-19 00:16:57 UTC (rev 178277)
+++ PKGBUILD2013-02-19 00:22:00 UTC (rev 178278)
@@ -3,22 +3,25 @@
 
 pkgname=grantlee
 pkgver=0.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A string template engine based on the Django template system and 
written in Qt
 arch=('i686' 'x86_64')
 url=http://www.gitorious.org/grantlee/pages/Home;
 license=('LGPL3')
-depends=('qt')
+depends=('qt4')
 makedepends=('cmake' 'doxygen')
 source=(http://downloads.grantlee.org/${pkgname}-${pkgver}.tar.gz;)
 md5sums=('195763a3238f51f8885881fc8012cd83')
 
 build() {
+  . /etc/profile.d/qt4.sh
+
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_BUILD_TYPE=Release
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTS=OFF
   make
 }
 



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

2013-02-18 Thread Andrea Scarpino
Date: Tuesday, February 19, 2013 @ 01:22:07
  Author: andrea
Revision: 178279

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

Added:
  grantlee/repos/staging-i686/
  grantlee/repos/staging-i686/PKGBUILD
(from rev 178278, grantlee/trunk/PKGBUILD)
  grantlee/repos/staging-x86_64/
  grantlee/repos/staging-x86_64/PKGBUILD
(from rev 178278, grantlee/trunk/PKGBUILD)

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

Copied: grantlee/repos/staging-i686/PKGBUILD (from rev 178278, 
grantlee/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2013-02-19 00:22:07 UTC (rev 178279)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=grantlee
+pkgver=0.3.0
+pkgrel=2
+pkgdesc=A string template engine based on the Django template system and 
written in Qt
+arch=('i686' 'x86_64')
+url=http://www.gitorious.org/grantlee/pages/Home;
+license=('LGPL3')
+depends=('qt4')
+makedepends=('cmake' 'doxygen')
+source=(http://downloads.grantlee.org/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('195763a3238f51f8885881fc8012cd83')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTS=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Copied: grantlee/repos/staging-x86_64/PKGBUILD (from rev 178278, 
grantlee/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2013-02-19 00:22:07 UTC (rev 178279)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=grantlee
+pkgver=0.3.0
+pkgrel=2
+pkgdesc=A string template engine based on the Django template system and 
written in Qt
+arch=('i686' 'x86_64')
+url=http://www.gitorious.org/grantlee/pages/Home;
+license=('LGPL3')
+depends=('qt4')
+makedepends=('cmake' 'doxygen')
+source=(http://downloads.grantlee.org/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('195763a3238f51f8885881fc8012cd83')
+
+build() {
+  . /etc/profile.d/qt4.sh
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_BUILD_TYPE=Release \
+-DBUILD_TESTS=OFF
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR=${pkgdir} install
+}



[arch-commits] Commit in (6 files)

2013-02-18 Thread Alexandre Filgueira
Date: Tuesday, February 19, 2013 @ 01:47:56
  Author: faidoc
Revision: 84433

Moving nemo from aur to community

Added:
  nemo/
  nemo/repos/
  nemo/trunk/
  nemo/trunk/PKGBUILD
  nemo/trunk/gnome-autogen.sh
  nemo/trunk/nemo.install

--+
 PKGBUILD |   53 +
 gnome-autogen.sh |  538 +
 nemo.install |   14 +
 3 files changed, 605 insertions(+)

Added: nemo/trunk/PKGBUILD
===
--- nemo/trunk/PKGBUILD (rev 0)
+++ nemo/trunk/PKGBUILD 2013-02-19 00:47:56 UTC (rev 84433)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Alexandre Filgueira alexfilgue...@cinnarch.com
+# Contributor: Ner0
+
+pkgname=nemo
+pkgver=1.1.2
+pkgrel=2
+pkgdesc=Cinnamon file manager (Nautilus fork), stable version
+arch=('i686' 'x86_64')
+url=https://github.com/linuxmint/nemo;
+license=('GPL')
+depends=('libexif' 'gvfs' 'dconf' 'desktop-file-utils' 'exempi' 
'gnome-desktop' 'gnome-icon-theme' 'libnotify' 'libtracker-sparql')
+makedepends=('gtk-doc' 'gobject-introspection' 'intltool' 'gnome-common')
+optdepends=('gksu: Open as Root')
+provides=('nemo-fm')
+replaces=('nemo-fm')
+conflicts=('nemo-fm')
+options=('!emptydirs' '!libtool')
+install=nemo.install
+source=($pkgname-$pkgver.tar.gz::https://github.com/linuxmint/nemo/tarball/$pkgver;
+gnome-autogen.sh)
+md5sums=('6f432bd9277a597a295ac22475d4a12e'
+ 'a925691c9b57a6a884dcf07da057fd1f')
+
+build() {
+  cd linuxmint-nemo-*
+
+  # Get default terminal value
+  _terminal=$(gsettings get org.gnome.desktop.default-applications.terminal 
exec | tr -d ')
+
+  # Set Open in Terminal to default terminal (Arch doesn't use 
x-terminal-emulator)
+  sed -i s/x-terminal-emulator/$_terminal/ src/nemo-view.c
+
+  cp ${srcdir}/gnome-autogen.sh .
+  sed -i 's/\ --warn-all\ --warn-error//' src/Makefile.am
+  sed -i 's/gnome-autogen.sh/.\/gnome-autogen.sh/g' autogen.sh
+  chmod +x gnome-autogen.sh
+
+  ./autogen.sh --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static \
+  --libexecdir=/usr/lib/nemo \
+  --disable-nst-extension \
+  --disable-update-mimedb \
+  --disable-packagekit \
+  --disable-gtk-doc-html \
+  --disable-schemas-compile
+  make
+}
+
+package() {
+  cd linuxmint-nemo-*
+  make DESTDIR=$pkgdir/ install
+}


Property changes on: nemo/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: nemo/trunk/gnome-autogen.sh
===
--- nemo/trunk/gnome-autogen.sh (rev 0)
+++ nemo/trunk/gnome-autogen.sh 2013-02-19 00:47:56 UTC (rev 84433)
@@ -0,0 +1,538 @@
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
+
+#name of package
+test $PKG_NAME || PKG_NAME=Package
+test $srcdir || srcdir=.
+
+# default version requirements ...
+test $REQUIRED_AUTOCONF_VERSION || REQUIRED_AUTOCONF_VERSION=2.53
+test $REQUIRED_AUTOMAKE_VERSION || REQUIRED_AUTOMAKE_VERSION=1.9
+test $REQUIRED_LIBTOOL_VERSION || REQUIRED_LIBTOOL_VERSION=1.4.3
+test $REQUIRED_GETTEXT_VERSION || REQUIRED_GETTEXT_VERSION=0.10.40
+test $REQUIRED_GLIB_GETTEXT_VERSION || REQUIRED_GLIB_GETTEXT_VERSION=2.2.0
+test $REQUIRED_INTLTOOL_VERSION || REQUIRED_INTLTOOL_VERSION=0.25
+test $REQUIRED_PKG_CONFIG_VERSION || REQUIRED_PKG_CONFIG_VERSION=0.14.0
+test $REQUIRED_GTK_DOC_VERSION || REQUIRED_GTK_DOC_VERSION=1.0
+test $REQUIRED_DOC_COMMON_VERSION || REQUIRED_DOC_COMMON_VERSION=2.3.0
+test $REQUIRED_GNOME_DOC_UTILS_VERSION || 
REQUIRED_GNOME_DOC_UTILS_VERSION=0.4.2
+
+# a list of required m4 macros.  Package can set an initial value
+test $REQUIRED_M4MACROS || REQUIRED_M4MACROS=
+test $FORBIDDEN_M4MACROS || FORBIDDEN_M4MACROS=
+
+# Not all echo versions allow -n, so we check what is possible. This test is
+# based on the one in autoconf.
+ECHO_C=
+ECHO_N=
+case `echo -n x` in
+-n*)
+  case `echo 'x\c'` in
+  *c*) ;;
+  *)   ECHO_C='\c';;
+  esac;;
+*)
+  ECHO_N='-n';;
+esac
+
+# some terminal codes ...
+if tty  /dev/null 1/dev/null 21; then
+boldface=`tput bold 2/dev/null`
+normal=`tput sgr0 2/dev/null`
+else
+boldface=
+normal=
+fi
+printbold() {
+echo $ECHO_N $boldface $ECHO_C
+echo $@
+echo $ECHO_N $normal $ECHO_C
+}
+printerr() {
+echo $@ 2
+}
+
+# Usage:
+# compare_versions MIN_VERSION ACTUAL_VERSION
+# returns true if ACTUAL_VERSION = MIN_VERSION
+compare_versions() {
+ch_min_version=$1
+ch_actual_version=$2
+ch_status=0
+IFS=${IFS= }; ch_save_IFS=$IFS; IFS=.
+set $ch_actual_version
+for ch_min in $ch_min_version; do
+ch_cur=`echo $1 | sed 's/[^0-9].*$//'`; shift # remove letter suffixes
+if [ -z $ch_min ]; then break; fi
+if [ -z $ch_cur ]; then ch_status=1; break; fi
+if [ $ch_cur -gt $ch_min ]; then break; fi
+  

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

2013-02-18 Thread Gaetan Bisson
Date: Tuesday, February 19, 2013 @ 02:11:52
  Author: bisson
Revision: 178280

rebuild for qt4

Modified:
  graphviz/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-02-19 00:22:07 UTC (rev 178279)
+++ PKGBUILD2013-02-19 01:11:52 UTC (rev 178280)
@@ -5,13 +5,13 @@
 
 pkgname=graphviz
 pkgver=2.30.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Graph visualization software'
 url='http://www.graphviz.org/'
 license=('custom:EPL')
 arch=('i686' 'x86_64')
 depends=('libltdl' 'gd' 'librsvg' 'libxaw' 'ghostscript' 'pango' 'gts')
-makedepends=('swig' 'mono' 'guile' 'lua51' 'ocaml' 'perl' 'php' 'python2' 'r' 
'ruby' 'tk' 'qt')
+makedepends=('swig' 'mono' 'guile' 'lua51' 'ocaml' 'perl' 'php' 'python2' 'r' 
'ruby' 'tk' 'qt4')
 optdepends=('mono: sharp bindings'
 'guile: guile bindings'
 'lua51: lua bindings'
@@ -22,7 +22,7 @@
 'r: r bindings'
 'ruby: ruby bindings'
 'tcl: tcl bindings'
-'qt: gvedit')
+'qt4: gvedit')
 source=(${url}/pub/${pkgname}/stable/SOURCES/${pkgname}-${pkgver}.tar.gz
 'LICENSE')
 sha1sums=('596c1ddf60c5428c5c4700d10f3ea86534195311'
@@ -40,6 +40,7 @@
-i config/config_ruby.rb
 
sed '/LIBPOSTFIX=64/d' -i configure
+   source /etc/profile.d/qt4.sh
export PYTHON=python2
export LUA=lua5.1
 



  1   2   >