[arch-commits] Commit in bash-completion/trunk (PKGBUILD modinfo-path.diff)

2012-03-18 Thread Eric Bélanger
Date: Sunday, March 18, 2012 @ 02:03:07
  Author: eric
Revision: 153694

upgpkg: bash-completion 1.99-1

Upstream update

Added:
  bash-completion/trunk/modinfo-path.diff
Modified:
  bash-completion/trunk/PKGBUILD

---+
 PKGBUILD  |7 +--
 modinfo-path.diff |   15 +++
 2 files changed, 20 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 05:39:45 UTC (rev 153693)
+++ PKGBUILD2012-03-18 06:03:07 UTC (rev 153694)
@@ -10,11 +10,14 @@
 license=('GPL')
 depends=('bash')
 options=('!emptydirs')
-source=(http://bash-completion.alioth.debian.org/files/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('3cf478b7f1065f424d3d6ec35f80e4f2')
+source=(http://bash-completion.alioth.debian.org/files/${pkgname}-${pkgver}.tar.bz2
 \
+modinfo-path.diff)
+md5sums=('3cf478b7f1065f424d3d6ec35f80e4f2'
+ '7047eb6f484323e8d1d22fb260a43a8e')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/modinfo-path.diff
   ./configure --prefix=/usr --sysconfdir=/etc
   make
 }

Added: modinfo-path.diff
===
--- modinfo-path.diff   (rev 0)
+++ modinfo-path.diff   2012-03-18 06:03:07 UTC (rev 153694)
@@ -0,0 +1,15 @@
+Subject: [PATCH 1/1] insmod, modprobe: Don't hardcode path to modinfo (Alioth: 
#313569)
+
+--- a/completions/insmod
 b/completions/insmod
+@@ -9,8 +9,8 @@ _insmod()
+ 
+ if [[ $cword -gt 1  ${words[cword-1]} != -* ]]; then
+ # do module parameter completion
+-COMPREPLY=( $( compgen -W $( /sbin/modinfo -p ${words[1]} | \
+-cut -d: -f1 ) -- $cur ) )
++COMPREPLY=( $( compgen -W $( PATH=$PATH:/sbin modinfo \
++-p ${words[1]} 2/dev/null | cut -d: -f1 ) -- $cur ) )
+ else
+ _modules $(uname -r)
+ fi



[arch-commits] Commit in bash-completion/repos/testing-any (3 files)

2012-03-18 Thread Eric Bélanger
Date: Sunday, March 18, 2012 @ 02:04:33
  Author: eric
Revision: 153695

archrelease: copy trunk to testing-any

Added:
  bash-completion/repos/testing-any/PKGBUILD
(from rev 153694, bash-completion/trunk/PKGBUILD)
  bash-completion/repos/testing-any/modinfo-path.diff
(from rev 153694, bash-completion/trunk/modinfo-path.diff)
Deleted:
  bash-completion/repos/testing-any/PKGBUILD

---+
 PKGBUILD  |   59 +++-
 modinfo-path.diff |   15 +
 2 files changed, 46 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-03-18 06:03:07 UTC (rev 153694)
+++ PKGBUILD2012-03-18 06:04:33 UTC (rev 153695)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=bash-completion
-pkgver=1.99
-pkgrel=1
-pkgdesc=Programmable completion for the bash shell
-arch=('any')
-url=http://bash-completion.alioth.debian.org/;
-license=('GPL')
-depends=('bash')
-options=('!emptydirs')
-source=(http://bash-completion.alioth.debian.org/files/${pkgname}-${pkgver}.tar.bz2;)
-md5sums=('3cf478b7f1065f424d3d6ec35f80e4f2')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-
-# bash-completion is sourced in /etc/bash.bashrc so that non-bash shell don't 
source it
-  rm ${pkgdir}/etc/profile.d/bash_completion.sh
-}

Copied: bash-completion/repos/testing-any/PKGBUILD (from rev 153694, 
bash-completion/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-03-18 06:04:33 UTC (rev 153695)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=bash-completion
+pkgver=1.99
+pkgrel=1
+pkgdesc=Programmable completion for the bash shell
+arch=('any')
+url=http://bash-completion.alioth.debian.org/;
+license=('GPL')
+depends=('bash')
+options=('!emptydirs')
+source=(http://bash-completion.alioth.debian.org/files/${pkgname}-${pkgver}.tar.bz2
 \
+modinfo-path.diff)
+md5sums=('3cf478b7f1065f424d3d6ec35f80e4f2'
+ '7047eb6f484323e8d1d22fb260a43a8e')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/modinfo-path.diff
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+
+# bash-completion is sourced in /etc/bash.bashrc so that non-bash shell don't 
source it
+  rm ${pkgdir}/etc/profile.d/bash_completion.sh
+}

Copied: bash-completion/repos/testing-any/modinfo-path.diff (from rev 153694, 
bash-completion/trunk/modinfo-path.diff)
===
--- modinfo-path.diff   (rev 0)
+++ modinfo-path.diff   2012-03-18 06:04:33 UTC (rev 153695)
@@ -0,0 +1,15 @@
+Subject: [PATCH 1/1] insmod, modprobe: Don't hardcode path to modinfo (Alioth: 
#313569)
+
+--- a/completions/insmod
 b/completions/insmod
+@@ -9,8 +9,8 @@ _insmod()
+ 
+ if [[ $cword -gt 1  ${words[cword-1]} != -* ]]; then
+ # do module parameter completion
+-COMPREPLY=( $( compgen -W $( /sbin/modinfo -p ${words[1]} | \
+-cut -d: -f1 ) -- $cur ) )
++COMPREPLY=( $( compgen -W $( PATH=$PATH:/sbin modinfo \
++-p ${words[1]} 2/dev/null | cut -d: -f1 ) -- $cur ) )
+ else
+ _modules $(uname -r)
+ fi



[arch-commits] Commit in bash/trunk (PKGBUILD system.bashrc)

2012-03-18 Thread Eric Bélanger
Date: Sunday, March 18, 2012 @ 02:05:32
  Author: eric
Revision: 153696

upgpkg: bash 4.2.024-2

Update config file for new bash completions location

Modified:
  bash/trunk/PKGBUILD
  bash/trunk/system.bashrc

---+
 PKGBUILD  |   26 +-
 system.bashrc |2 +-
 2 files changed, 14 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 06:04:33 UTC (rev 153695)
+++ PKGBUILD2012-03-18 06:05:32 UTC (rev 153696)
@@ -6,7 +6,7 @@
 _basever=4.2
 _patchlevel=024 #prepare for some patches
 pkgver=$_basever.$_patchlevel
-pkgrel=1
+pkgrel=2
 pkgdesc=The GNU Bourne Again shell
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -29,7 +29,7 @@
 fi
 
 build() {
-  cd ${srcdir}/${pkgname}-$_basever
+  cd ${srcdir}/${pkgname}-$_basever
   for (( p=1; p=$((10#${_patchlevel})); p++ )); do
 msg applying patch bash${_basever//./}-$(printf %03d $p)
 patch -Np0 -i $srcdir/bash${_basever//./}-$(printf %03d $p)
@@ -48,28 +48,28 @@
 }
 
 check() {
-  cd ${srcdir}/${pkgname}-$_basever
+  cd ${srcdir}/${pkgname}-$_basever
   make check
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-$_basever
-  make DESTDIR=${pkgdir} install
+  cd ${srcdir}/${pkgname}-$_basever
+  make DESTDIR=${pkgdir} install
 
   # for now, bash is our default /bin/sh
-  cd ${pkgdir}/bin
+  cd ${pkgdir}/bin
   ln -s bash sh
 
-  install -dm755 ${pkgdir}/etc/skel/
+  install -dm755 ${pkgdir}/etc/skel/
   
   # system-wide configuration files
-  install -m644 ${srcdir}/system.bashrc ${pkgdir}/etc/bash.bashrc
-  install -m644 ${srcdir}/system.bash_logout ${pkgdir}/etc/bash.bash_logout
+  install -m644 ${srcdir}/system.bashrc ${pkgdir}/etc/bash.bashrc
+  install -m644 ${srcdir}/system.bash_logout ${pkgdir}/etc/bash.bash_logout
   
   # user configuration file skeletons
-  install -m644 ${srcdir}/dot.bashrc ${pkgdir}/etc/skel/.bashrc
-  install -m644 ${srcdir}/dot.bash_profile ${pkgdir}/etc/skel/.bash_profile
-  install -m644 ${srcdir}/dot.bash_logout ${pkgdir}/etc/skel/.bash_logout
+  install -m644 ${srcdir}/dot.bashrc ${pkgdir}/etc/skel/.bashrc
+  install -m644 ${srcdir}/dot.bash_profile ${pkgdir}/etc/skel/.bash_profile
+  install -m644 ${srcdir}/dot.bash_logout ${pkgdir}/etc/skel/.bash_logout
 }
 
 md5sums=('3fb927c7c33022f1c327f14a81c0d4b0'
@@ -77,7 +77,7 @@
  '027d6bd8f5f6a06b75bb7698cb478089'
  '2902e0fee7a9168f3a4fd2ccd60ff047'
  '42f4400ed2314bd7519c020d0187edc5'
- 'fe5d3a367f7d5f754214dc05e3d958ab'
+ '3546099a1b2f667adc9794f52e78e35b'
  '472f536d7c9e8250dc4568ec4cfaf294'
  '1100bc1dda2cdc06ac44d7e5d17864a3'
  'a7184b76eb4a079f10174a0a8f574819'

Modified: system.bashrc
===
--- system.bashrc   2012-03-18 06:04:33 UTC (rev 153695)
+++ system.bashrc   2012-03-18 06:05:32 UTC (rev 153696)
@@ -20,4 +20,4 @@
 ;;
 esac
 
-[ -r /etc/bash_completion   ]  . /etc/bash_completion
+[ -r /usr/share/bash-completion/bash_completion   ]  . 
/usr/share/bash-completion/bash_completion



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

2012-03-18 Thread Eric Bélanger
Date: Sunday, March 18, 2012 @ 02:05:58
  Author: eric
Revision: 153697

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

Added:
  bash/repos/testing-i686/
  bash/repos/testing-i686/PKGBUILD
(from rev 153696, bash/trunk/PKGBUILD)
  bash/repos/testing-i686/bash.install
(from rev 153696, bash/trunk/bash.install)
  bash/repos/testing-i686/dot.bash_logout
(from rev 153696, bash/trunk/dot.bash_logout)
  bash/repos/testing-i686/dot.bash_profile
(from rev 153696, bash/trunk/dot.bash_profile)
  bash/repos/testing-i686/dot.bashrc
(from rev 153696, bash/trunk/dot.bashrc)
  bash/repos/testing-i686/system.bash_logout
(from rev 153696, bash/trunk/system.bash_logout)
  bash/repos/testing-i686/system.bashrc
(from rev 153696, bash/trunk/system.bashrc)
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 153696, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/bash.install
(from rev 153696, bash/trunk/bash.install)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 153696, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 153696, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 153696, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 153696, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 153696, bash/trunk/system.bashrc)

---+
 testing-i686/PKGBUILD |  129 
 testing-i686/bash.install |   20 +
 testing-i686/dot.bash_logout  |3 
 testing-i686/dot.bash_profile |5 +
 testing-i686/dot.bashrc   |9 ++
 testing-i686/system.bash_logout   |3 
 testing-i686/system.bashrc|   23 ++
 testing-x86_64/PKGBUILD   |  129 
 testing-x86_64/bash.install   |   20 +
 testing-x86_64/dot.bash_logout|3 
 testing-x86_64/dot.bash_profile   |5 +
 testing-x86_64/dot.bashrc |9 ++
 testing-x86_64/system.bash_logout |3 
 testing-x86_64/system.bashrc  |   23 ++
 14 files changed, 384 insertions(+)

Copied: bash/repos/testing-i686/PKGBUILD (from rev 153696, bash/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-03-18 06:05:58 UTC (rev 153697)
@@ -0,0 +1,129 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+# Contributor: Aaron Griffin aa...@archlinux.org
+
+pkgname=bash
+_basever=4.2
+_patchlevel=024 #prepare for some patches
+pkgver=$_basever.$_patchlevel
+pkgrel=2
+pkgdesc=The GNU Bourne Again shell
+arch=('i686' 'x86_64')
+license=('GPL')
+url=http://www.gnu.org/software/bash/bash.html;
+groups=('base')
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline=6.1' 'glibc')
+provides=('sh')
+install=bash.install
+source=(http://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+if [ $_patchlevel -gt 000 ]; then
+for (( p=1; p=$((10#${_patchlevel})); p++ )); do
+source=(${source[@]} 
http://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//./}-$(printf 
%03d $p){,.sig})
+done
+fi
+
+build() {
+  cd ${srcdir}/${pkgname}-$_basever
+  for (( p=1; p=$((10#${_patchlevel})); p++ )); do
+msg applying patch bash${_basever//./}-$(printf %03d $p)
+patch -Np0 -i $srcdir/bash${_basever//./}-$(printf %03d $p)
+  done
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin\\'
+   -DSTANDARD_UTILS_PATH=\'\/usr/bin:/bin:/usr/sbin:/sbin\\'
+   -DSYS_BASHRC=\'\/etc/bash.bashrc\\'
+   -DSYS_BASH_LOGOUT=\'\/etc/bash.bash_logout\\')
+  export CFLAGS=${CFLAGS} ${_bashconfig[@]}
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline \
+--bindir=/bin --mandir=/usr/share/man --infodir=/usr/share/info
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-$_basever
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-$_basever
+  make DESTDIR=${pkgdir} install
+
+  # for now, bash is our default /bin/sh
+  cd ${pkgdir}/bin
+  ln -s bash sh
+
+  install -dm755 ${pkgdir}/etc/skel/
+  
+  # system-wide configuration files
+  install -m644 ${srcdir}/system.bashrc ${pkgdir}/etc/bash.bashrc
+  install -m644 ${srcdir}/system.bash_logout ${pkgdir}/etc/bash.bash_logout
+  
+  # user configuration file skeletons
+  install -m644 ${srcdir}/dot.bashrc ${pkgdir}/etc/skel/.bashrc
+  install -m644 ${srcdir}/dot.bash_profile ${pkgdir}/etc/skel/.bash_profile
+  install -m644 ${srcdir}/dot.bash_logout ${pkgdir}/etc/skel/.bash_logout
+}
+
+md5sums=('3fb927c7c33022f1c327f14a81c0d4b0'

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

2012-03-18 Thread Ionut Biru
Date: Sunday, March 18, 2012 @ 04:03:56
  Author: ibiru
Revision: 153698

python2-gobject is required by gmenu-simple-editor. FS#28971

Modified:
  gnome-menus/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 06:05:58 UTC (rev 153697)
+++ PKGBUILD2012-03-18 08:03:56 UTC (rev 153698)
@@ -6,7 +6,7 @@
 pkgrel=1
 pkgdesc=GNOME menu specifications
 arch=('i686' 'x86_64')
-depends=('glib2' 'python2')
+depends=('glib2' 'python2-gobject')
 makedepends=('intltool' 'gobject-introspection')
 options=('!libtool')
 license=('GPL' 'LGPL')



[arch-commits] Commit in xf86-input-evdev/trunk (2 files)

2012-03-18 Thread andyrtr
Date: Sunday, March 18, 2012 @ 04:50:00
  Author: andyrtr
Revision: 153699

upgpkg: xf86-input-evdev 2.7.0-2

add patch to fix inverted horizontal mouse scrolling

Added:
  xf86-input-evdev/trunk/Fix_inverted_horizontal_scroll.diff
Modified:
  xf86-input-evdev/trunk/PKGBUILD

-+
 Fix_inverted_horizontal_scroll.diff |   27 +++
 PKGBUILD|9 ++---
 2 files changed, 33 insertions(+), 3 deletions(-)

Added: Fix_inverted_horizontal_scroll.diff
===
--- Fix_inverted_horizontal_scroll.diff (rev 0)
+++ Fix_inverted_horizontal_scroll.diff 2012-03-18 08:50:00 UTC (rev 153699)
@@ -0,0 +1,27 @@
+From 99340147b9092a5aaec997eca407282a51e1f063 Mon Sep 17 00:00:00 2001
+From: Peter Hutterer peter.hutte...@who-t.net
+Date: Thu, 15 Mar 2012 05:46:32 +
+Subject: Fix inverted horizontal scroll (#46205)
+
+REL_HWHEEL has a positive increment, not a negative one like REL_WHEEL.
+
+X.Org Bug 46205 http://bugs.freedesktop.org/show_bug.cgi?id=46205
+
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+Reviewed-by: Chase Douglas chase.doug...@canonical.com
+---
+diff --git a/src/evdev.c b/src/evdev.c
+index d540b87..8cf630c 100644
+--- a/src/evdev.c
 b/src/evdev.c
+@@ -1600,7 +1600,7 @@ EvdevAddRelValuatorClass(DeviceIntPtr device)
+ else if (axis == REL_DIAL)
+ SetScrollValuator(device, axnum, SCROLL_TYPE_VERTICAL, -1.0, 
SCROLL_FLAG_NONE);
+ else if (axis == REL_HWHEEL)
+-SetScrollValuator(device, axnum, SCROLL_TYPE_HORIZONTAL, -1.0, 
SCROLL_FLAG_NONE);
++SetScrollValuator(device, axnum, SCROLL_TYPE_HORIZONTAL, 1.0, 
SCROLL_FLAG_NONE);
+ #endif
+ }
+ 
+--
+cgit v0.9.0.2-2-gbebe

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 08:03:56 UTC (rev 153698)
+++ PKGBUILD2012-03-18 08:50:00 UTC (rev 153699)
@@ -4,7 +4,7 @@
 
 pkgname=xf86-input-evdev
 pkgver=2.7.0
-pkgrel=1
+pkgrel=2
 pkgdesc=X.org evdev input driver
 arch=(i686 x86_64)
 url=http://xorg.freedesktop.org/;
@@ -14,11 +14,14 @@
 conflicts=('xorg-server1.11.99.902')
 options=('!libtool' '!makeflags')
 groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('f0cb2d8400c33e8e83b538b53512e77ba73367fa')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
+Fix_inverted_horizontal_scroll.diff)
+sha1sums=('f0cb2d8400c33e8e83b538b53512e77ba73367fa'
+  'e959e710d9a0c60a3af967148b9d5e014544993c')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/Fix_inverted_horizontal_scroll.diff
   ./configure --prefix=/usr
   make
 }



[arch-commits] Commit in xf86-input-evdev/repos (6 files)

2012-03-18 Thread andyrtr
Date: Sunday, March 18, 2012 @ 04:50:36
  Author: andyrtr
Revision: 153700

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

Added:
  xf86-input-evdev/repos/extra-i686/Fix_inverted_horizontal_scroll.diff
(from rev 153699, 
xf86-input-evdev/trunk/Fix_inverted_horizontal_scroll.diff)
  xf86-input-evdev/repos/extra-i686/PKGBUILD
(from rev 153699, xf86-input-evdev/trunk/PKGBUILD)
  xf86-input-evdev/repos/extra-x86_64/Fix_inverted_horizontal_scroll.diff
(from rev 153699, 
xf86-input-evdev/trunk/Fix_inverted_horizontal_scroll.diff)
  xf86-input-evdev/repos/extra-x86_64/PKGBUILD
(from rev 153699, xf86-input-evdev/trunk/PKGBUILD)
Deleted:
  xf86-input-evdev/repos/extra-i686/PKGBUILD
  xf86-input-evdev/repos/extra-x86_64/PKGBUILD

--+
 extra-i686/Fix_inverted_horizontal_scroll.diff   |   27 
 extra-i686/PKGBUILD  |   65 ++---
 extra-x86_64/Fix_inverted_horizontal_scroll.diff |   27 
 extra-x86_64/PKGBUILD|   65 ++---
 4 files changed, 122 insertions(+), 62 deletions(-)

Copied: xf86-input-evdev/repos/extra-i686/Fix_inverted_horizontal_scroll.diff 
(from rev 153699, xf86-input-evdev/trunk/Fix_inverted_horizontal_scroll.diff)
===
--- extra-i686/Fix_inverted_horizontal_scroll.diff  
(rev 0)
+++ extra-i686/Fix_inverted_horizontal_scroll.diff  2012-03-18 08:50:36 UTC 
(rev 153700)
@@ -0,0 +1,27 @@
+From 99340147b9092a5aaec997eca407282a51e1f063 Mon Sep 17 00:00:00 2001
+From: Peter Hutterer peter.hutte...@who-t.net
+Date: Thu, 15 Mar 2012 05:46:32 +
+Subject: Fix inverted horizontal scroll (#46205)
+
+REL_HWHEEL has a positive increment, not a negative one like REL_WHEEL.
+
+X.Org Bug 46205 http://bugs.freedesktop.org/show_bug.cgi?id=46205
+
+Signed-off-by: Peter Hutterer peter.hutte...@who-t.net
+Reviewed-by: Chase Douglas chase.doug...@canonical.com
+---
+diff --git a/src/evdev.c b/src/evdev.c
+index d540b87..8cf630c 100644
+--- a/src/evdev.c
 b/src/evdev.c
+@@ -1600,7 +1600,7 @@ EvdevAddRelValuatorClass(DeviceIntPtr device)
+ else if (axis == REL_DIAL)
+ SetScrollValuator(device, axnum, SCROLL_TYPE_VERTICAL, -1.0, 
SCROLL_FLAG_NONE);
+ else if (axis == REL_HWHEEL)
+-SetScrollValuator(device, axnum, SCROLL_TYPE_HORIZONTAL, -1.0, 
SCROLL_FLAG_NONE);
++SetScrollValuator(device, axnum, SCROLL_TYPE_HORIZONTAL, 1.0, 
SCROLL_FLAG_NONE);
+ #endif
+ }
+ 
+--
+cgit v0.9.0.2-2-gbebe

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-18 08:50:00 UTC (rev 153699)
+++ extra-i686/PKGBUILD 2012-03-18 08:50:36 UTC (rev 153700)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: Alexander Baldeck alexan...@archlinux.org
-
-pkgname=xf86-input-evdev
-pkgver=2.7.0
-pkgrel=1
-pkgdesc=X.org evdev input driver
-arch=(i686 x86_64)
-url=http://xorg.freedesktop.org/;
-license=('custom')
-depends=('glibc')
-makedepends=('xorg-server-devel=1.11.99.902')
-conflicts=('xorg-server1.11.99.902')
-options=('!libtool' '!makeflags')
-groups=('xorg-drivers' 'xorg')
-source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('f0cb2d8400c33e8e83b538b53512e77ba73367fa')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -m755 -d ${pkgdir}/usr/share/licenses/${pkgname}
-  install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/
-}

Copied: xf86-input-evdev/repos/extra-i686/PKGBUILD (from rev 153699, 
xf86-input-evdev/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-18 08:50:36 UTC (rev 153700)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Alexander Baldeck alexan...@archlinux.org
+
+pkgname=xf86-input-evdev
+pkgver=2.7.0
+pkgrel=2
+pkgdesc=X.org evdev input driver
+arch=(i686 x86_64)
+url=http://xorg.freedesktop.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel=1.11.99.902')
+conflicts=('xorg-server1.11.99.902')
+options=('!libtool' '!makeflags')
+groups=('xorg-drivers' 'xorg')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
+Fix_inverted_horizontal_scroll.diff)
+sha1sums=('f0cb2d8400c33e8e83b538b53512e77ba73367fa'
+  'e959e710d9a0c60a3af967148b9d5e014544993c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/Fix_inverted_horizontal_scroll.diff
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -m755 -d 

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

2012-03-18 Thread Andrea Scarpino
Date: Sunday, March 18, 2012 @ 04:57:07
  Author: andrea
Revision: 153701

Fix repo hierarchy, move qoauth from [community]

Added:
  qoauth/
  qoauth/repos/
  qoauth/trunk/
  qoauth/trunk/PKGBUILD

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

Added: qoauth/trunk/PKGBUILD
===
--- qoauth/trunk/PKGBUILD   (rev 0)
+++ qoauth/trunk/PKGBUILD   2012-03-18 08:57:07 UTC (rev 153701)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Peter Richard Lewis ple...@aur.archlinux.org
+
+pkgname=qoauth
+pkgver=1.0.1
+pkgrel=3
+pkgdesc=Support with OAuth-powered network services
+url='http://github.com/ayoy/qoauth'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('qca')
+makedepends=('cmake' 'automoc4')
+source=(http://files.ayoy.net/qoauth/release/current/src/${pkgname}-${pkgver}-src.tar.bz2;)
+md5sums=('bcb6d01e6c9a6fb22099c9e0f5889578')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}-src
+
+  # Install libraries in /usr/lib/
+  sed -i 's|lib64|lib|' src/src.pro
+
+  qmake
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}-src
+  make INSTALL_ROOT=${pkgdir} install
+}


Property changes on: qoauth/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id


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

2012-03-18 Thread Andrea Scarpino
Date: Sunday, March 18, 2012 @ 04:58:10
  Author: andrea
Revision: 153702

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

Added:
  qoauth/repos/extra-i686/
  qoauth/repos/extra-i686/PKGBUILD
(from rev 153701, qoauth/trunk/PKGBUILD)
  qoauth/repos/extra-x86_64/
  qoauth/repos/extra-x86_64/PKGBUILD
(from rev 153701, qoauth/trunk/PKGBUILD)

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

Copied: qoauth/repos/extra-i686/PKGBUILD (from rev 153701, 
qoauth/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-18 08:58:10 UTC (rev 153702)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Peter Richard Lewis ple...@aur.archlinux.org
+
+pkgname=qoauth
+pkgver=1.0.1
+pkgrel=3
+pkgdesc=Support with OAuth-powered network services
+url='http://github.com/ayoy/qoauth'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('qca')
+makedepends=('cmake' 'automoc4')
+source=(http://files.ayoy.net/qoauth/release/current/src/${pkgname}-${pkgver}-src.tar.bz2;)
+md5sums=('bcb6d01e6c9a6fb22099c9e0f5889578')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}-src
+
+  # Install libraries in /usr/lib/
+  sed -i 's|lib64|lib|' src/src.pro
+
+  qmake
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}-src
+  make INSTALL_ROOT=${pkgdir} install
+}

Copied: qoauth/repos/extra-x86_64/PKGBUILD (from rev 153701, 
qoauth/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-18 08:58:10 UTC (rev 153702)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Peter Richard Lewis ple...@aur.archlinux.org
+
+pkgname=qoauth
+pkgver=1.0.1
+pkgrel=3
+pkgdesc=Support with OAuth-powered network services
+url='http://github.com/ayoy/qoauth'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('qca')
+makedepends=('cmake' 'automoc4')
+source=(http://files.ayoy.net/qoauth/release/current/src/${pkgname}-${pkgver}-src.tar.bz2;)
+md5sums=('bcb6d01e6c9a6fb22099c9e0f5889578')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}-src
+
+  # Install libraries in /usr/lib/
+  sed -i 's|lib64|lib|' src/src.pro
+
+  qmake
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}-src
+  make INSTALL_ROOT=${pkgdir} install
+}



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

2012-03-18 Thread andyrtr
Date: Sunday, March 18, 2012 @ 04:59:50
  Author: andyrtr
Revision: 153703

fix download URL, FS#28988

Modified:
  libreoffice-i18n/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 08:58:10 UTC (rev 153702)
+++ PKGBUILD2012-03-18 08:59:50 UTC (rev 153703)
@@ -34,8 +34,8 @@
 
 #http://download.documentfoundation.org/mirrors/all.html
 #_url=http://dev-builds.libreoffice.org/pre-releases;
-#_url=http://download.documentfoundation.org/libreoffice/stable;
-_url=http://download.documentfoundation.org/libreoffice/testing; 
+_url=http://download.documentfoundation.org/libreoffice/stable;
+#_url=http://download.documentfoundation.org/libreoffice/testing; 
 #_url=http://www.libreoffice.org/download/pre-releases;
 _oover=3.5.1
 _oodlver=3.5.1rc2



[arch-commits] Commit in libreoffice-i18n/repos (extra-i686 extra-i686/PKGBUILD)

2012-03-18 Thread andyrtr
Date: Sunday, March 18, 2012 @ 05:00:26
  Author: andyrtr
Revision: 153704

archrelease: copy trunk to extra-i686

Added:
  libreoffice-i18n/repos/extra-i686/
  libreoffice-i18n/repos/extra-i686/PKGBUILD
(from rev 153703, libreoffice-i18n/trunk/PKGBUILD)

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

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


[arch-commits] Commit in libreoffice-i18n/repos (extra-x86_64 extra-x86_64/PKGBUILD)

2012-03-18 Thread andyrtr
Date: Sunday, March 18, 2012 @ 05:00:45
  Author: andyrtr
Revision: 153705

archrelease: copy trunk to extra-x86_64

Added:
  libreoffice-i18n/repos/extra-x86_64/
  libreoffice-i18n/repos/extra-x86_64/PKGBUILD
(from rev 153704, libreoffice-i18n/trunk/PKGBUILD)

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

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


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

2012-03-18 Thread andyrtr
Date: Sunday, March 18, 2012 @ 05:02:43
  Author: andyrtr
Revision: 153706

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

Added:
  linux-lts/repos/core-i686/CVE-2012-0056.patch
(from rev 153705, linux-lts/repos/testing-i686/CVE-2012-0056.patch)
  linux-lts/repos/core-i686/PKGBUILD
(from rev 153705, linux-lts/repos/testing-i686/PKGBUILD)
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
(from rev 153705, 
linux-lts/repos/testing-i686/change-default-console-loglevel.patch)
  linux-lts/repos/core-i686/config
(from rev 153705, linux-lts/repos/testing-i686/config)
  linux-lts/repos/core-i686/config.x86_64
(from rev 153705, linux-lts/repos/testing-i686/config.x86_64)
  linux-lts/repos/core-i686/ext4-options.patch
(from rev 153705, linux-lts/repos/testing-i686/ext4-options.patch)
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
(from rev 153705, 
linux-lts/repos/testing-i686/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-i686/linux-lts.install
(from rev 153705, linux-lts/repos/testing-i686/linux-lts.install)
  linux-lts/repos/core-i686/linux-lts.preset
(from rev 153705, linux-lts/repos/testing-i686/linux-lts.preset)
Deleted:
  linux-lts/repos/core-i686/CVE-2012-0056.patch
  linux-lts/repos/core-i686/PKGBUILD
  linux-lts/repos/core-i686/change-default-console-loglevel.patch
  linux-lts/repos/core-i686/config
  linux-lts/repos/core-i686/config.x86_64
  linux-lts/repos/core-i686/ext4-options.patch
  linux-lts/repos/core-i686/i915-fix-ghost-tv-output.patch
  linux-lts/repos/core-i686/linux-lts.install
  linux-lts/repos/core-i686/linux-lts.preset
  linux-lts/repos/testing-i686/

---+
 CVE-2012-0056.patch   |  538 -
 PKGBUILD  |  558 -
 change-default-console-loglevel.patch |   24 
 config|11596 
 config.x86_64 |11072 +++---
 ext4-options.patch|   98 
 i915-fix-ghost-tv-output.patch|   52 
 linux-lts.install |  124 
 linux-lts.preset  |   28 
 9 files changed, 12045 insertions(+), 12045 deletions(-)

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


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

2012-03-18 Thread andyrtr
Date: Sunday, March 18, 2012 @ 05:02:45
  Author: andyrtr
Revision: 153707

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

Added:
  linux-lts/repos/core-x86_64/CVE-2012-0056.patch
(from rev 153705, linux-lts/repos/testing-x86_64/CVE-2012-0056.patch)
  linux-lts/repos/core-x86_64/PKGBUILD
(from rev 153705, linux-lts/repos/testing-x86_64/PKGBUILD)
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
(from rev 153705, 
linux-lts/repos/testing-x86_64/change-default-console-loglevel.patch)
  linux-lts/repos/core-x86_64/config
(from rev 153705, linux-lts/repos/testing-x86_64/config)
  linux-lts/repos/core-x86_64/config.x86_64
(from rev 153705, linux-lts/repos/testing-x86_64/config.x86_64)
  linux-lts/repos/core-x86_64/ext4-options.patch
(from rev 153705, linux-lts/repos/testing-x86_64/ext4-options.patch)
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
(from rev 153705, 
linux-lts/repos/testing-x86_64/i915-fix-ghost-tv-output.patch)
  linux-lts/repos/core-x86_64/linux-lts.install
(from rev 153705, linux-lts/repos/testing-x86_64/linux-lts.install)
  linux-lts/repos/core-x86_64/linux-lts.preset
(from rev 153705, linux-lts/repos/testing-x86_64/linux-lts.preset)
Deleted:
  linux-lts/repos/core-x86_64/CVE-2012-0056.patch
  linux-lts/repos/core-x86_64/PKGBUILD
  linux-lts/repos/core-x86_64/change-default-console-loglevel.patch
  linux-lts/repos/core-x86_64/config
  linux-lts/repos/core-x86_64/config.x86_64
  linux-lts/repos/core-x86_64/ext4-options.patch
  linux-lts/repos/core-x86_64/i915-fix-ghost-tv-output.patch
  linux-lts/repos/core-x86_64/linux-lts.install
  linux-lts/repos/core-x86_64/linux-lts.preset
  linux-lts/repos/testing-x86_64/

---+
 CVE-2012-0056.patch   |  538 -
 PKGBUILD  |  558 -
 change-default-console-loglevel.patch |   24 
 config|11596 
 config.x86_64 |11072 +++---
 ext4-options.patch|   98 
 i915-fix-ghost-tv-output.patch|   52 
 linux-lts.install |  124 
 linux-lts.preset  |   28 
 9 files changed, 12045 insertions(+), 12045 deletions(-)

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


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

2012-03-18 Thread Jan Steffens
Date: Sunday, March 18, 2012 @ 09:16:41
  Author: heftig
Revision: 153708

tracker 0.14 rebuild

Modified:
  grilo-plugins/trunk/PKGBUILD

--+
 PKGBUILD |   22 +-
 1 file changed, 13 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 09:02:45 UTC (rev 153707)
+++ PKGBUILD2012-03-18 13:16:41 UTC (rev 153708)
@@ -1,16 +1,16 @@
 # $Id$
-# Maintainer: Jan heftig Steffens jan.steff...@gmail.com
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
 
 pkgname=grilo-plugins
 pkgver=0.1.18
-pkgrel=2
+pkgrel=3
 pkgdesc=Plugins for Grilo
 url=http://www.gnome.org;
 arch=('i686' 'x86_64')
 license=('LGPL')
 depends=('grilo')
 makedepends=('gupnp-av' 'libgdata' 'libquvi' 'sqlite3' 'gmime' 'libgcrypt'
- 'rest' 'libtracker-sparql')
+ 'rest' 'libtracker-sparql' 'gnome-common')
 optdepends=('gupnp-av: uPnP plugin'
 'libgdata: Youtube plugin'
 'libquvi: Youtube plugin'
@@ -22,18 +22,22 @@
 'rest: Blip.tv plugin'
 'libtracker-sparql: Tracker plugin')
 options=('!libtool' '!emptydirs')
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('7e382f402119f4f270380627a2f49b30a6c43a47ecd645bf5ffe4e0cd99a1c79')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
+tracker-0.14.patch)
+sha256sums=('7e382f402119f4f270380627a2f49b30a6c43a47ecd645bf5ffe4e0cd99a1c79'
+'c48201ed1633e2b0eb5132ef823d7b060e9c2cddb808c6981fb546133cd4ea63')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd $pkgname-$pkgver
+  
+  patch -Np1 -i ../tracker-0.14.patch
 
-  ./configure --prefix=/usr --sysconfdir=/etc --disable-static \
+  gnome-autogen.sh --prefix=/usr --sysconfdir=/etc --disable-static \
 --enable-shoutcast
   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
 }



[arch-commits] Commit in grilo-plugins/trunk (tracker-0.14.patch)

2012-03-18 Thread Jan Steffens
Date: Sunday, March 18, 2012 @ 09:19:57
  Author: heftig
Revision: 153709

forgot patch

Added:
  grilo-plugins/trunk/tracker-0.14.patch

+
 tracker-0.14.patch |   32 
 1 file changed, 32 insertions(+)

Added: tracker-0.14.patch
===
--- tracker-0.14.patch  (rev 0)
+++ tracker-0.14.patch  2012-03-18 13:19:57 UTC (rev 153709)
@@ -0,0 +1,32 @@
+From 9e00790f40ee498a7359b00e0b11a7523fdd1b3e Mon Sep 17 00:00:00 2001
+From: Vincent Untz vu...@gnome.org
+Date: Thu, 19 Jan 2012 09:30:28 +
+Subject: build: Support build against tracker 0.13/0.14
+
+https://bugzilla.gnome.org/show_bug.cgi?id=667855
+---
+diff --git a/configure.ac b/configure.ac
+index 1fd6743..71aceed 100644
+--- a/configure.ac
 b/configure.ac
+@@ -134,11 +134,17 @@ PKG_CHECK_MODULES(GMIME, gmime-2.6,
+HAVE_GMIME=yes,
+HAVE_GMIME=no)])
+ 
+-PKG_CHECK_MODULES(TRACKER_SPARQL, tracker-sparql-0.12,
++PKG_CHECK_MODULES(TRACKER_SPARQL, tracker-sparql-0.14,
+   HAVE_TRACKER_SPARQL=yes,
+   HAVE_TRACKER_SPARQL=no)
+ 
+ if test x$HAVE_TRACKER_SPARQL = xno; then
++   PKG_CHECK_MODULES(TRACKER_SPARQL, tracker-sparql-0.12,
++ HAVE_TRACKER_SPARQL=yes,
++ HAVE_TRACKER_SPARQL=no)
++fi
++
++if test x$HAVE_TRACKER_SPARQL = xno; then
+PKG_CHECK_MODULES(TRACKER_SPARQL, tracker-sparql-0.11,
+  HAVE_TRACKER_SPARQL=yes,
+  HAVE_TRACKER_SPARQL=no)
+--
+cgit v0.9.0.2



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

2012-03-18 Thread Jan Steffens
Date: Sunday, March 18, 2012 @ 09:20:56
  Author: heftig
Revision: 153710

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

Added:
  grilo-plugins/repos/gnome-unstable-i686/
  grilo-plugins/repos/gnome-unstable-i686/PKGBUILD
(from rev 153709, grilo-plugins/trunk/PKGBUILD)
  grilo-plugins/repos/gnome-unstable-i686/tracker-0.14.patch
(from rev 153709, grilo-plugins/trunk/tracker-0.14.patch)
  grilo-plugins/repos/gnome-unstable-x86_64/
  grilo-plugins/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 153709, grilo-plugins/trunk/PKGBUILD)
  grilo-plugins/repos/gnome-unstable-x86_64/tracker-0.14.patch
(from rev 153709, grilo-plugins/trunk/tracker-0.14.patch)

--+
 gnome-unstable-i686/PKGBUILD |   43 +
 gnome-unstable-i686/tracker-0.14.patch   |   32 +
 gnome-unstable-x86_64/PKGBUILD   |   43 +
 gnome-unstable-x86_64/tracker-0.14.patch |   32 +
 4 files changed, 150 insertions(+)

Copied: grilo-plugins/repos/gnome-unstable-i686/PKGBUILD (from rev 153709, 
grilo-plugins/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-18 13:20:56 UTC (rev 153710)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=grilo-plugins
+pkgver=0.1.18
+pkgrel=3
+pkgdesc=Plugins for Grilo
+url=http://www.gnome.org;
+arch=('i686' 'x86_64')
+license=('LGPL')
+depends=('grilo')
+makedepends=('gupnp-av' 'libgdata' 'libquvi' 'sqlite3' 'gmime' 'libgcrypt'
+ 'rest' 'libtracker-sparql' 'gnome-common')
+optdepends=('gupnp-av: uPnP plugin'
+'libgdata: Youtube plugin'
+'libquvi: Youtube plugin'
+'sqlite3: Podcasts plugin'
+'gmime: Podcasts plugin'
+'sqlite3: Bookmarks plugin'
+'sqlite3: Metadata store plugin'
+'libgcrypt: Vimeo plugin'
+'rest: Blip.tv plugin'
+'libtracker-sparql: Tracker plugin')
+options=('!libtool' '!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz
+tracker-0.14.patch)
+sha256sums=('7e382f402119f4f270380627a2f49b30a6c43a47ecd645bf5ffe4e0cd99a1c79'
+'c48201ed1633e2b0eb5132ef823d7b060e9c2cddb808c6981fb546133cd4ea63')
+
+build() {
+  cd $pkgname-$pkgver
+  
+  patch -Np1 -i ../tracker-0.14.patch
+
+  gnome-autogen.sh --prefix=/usr --sysconfdir=/etc --disable-static \
+--enable-shoutcast
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}

Copied: grilo-plugins/repos/gnome-unstable-i686/tracker-0.14.patch (from rev 
153709, grilo-plugins/trunk/tracker-0.14.patch)
===
--- gnome-unstable-i686/tracker-0.14.patch  (rev 0)
+++ gnome-unstable-i686/tracker-0.14.patch  2012-03-18 13:20:56 UTC (rev 
153710)
@@ -0,0 +1,32 @@
+From 9e00790f40ee498a7359b00e0b11a7523fdd1b3e Mon Sep 17 00:00:00 2001
+From: Vincent Untz vu...@gnome.org
+Date: Thu, 19 Jan 2012 09:30:28 +
+Subject: build: Support build against tracker 0.13/0.14
+
+https://bugzilla.gnome.org/show_bug.cgi?id=667855
+---
+diff --git a/configure.ac b/configure.ac
+index 1fd6743..71aceed 100644
+--- a/configure.ac
 b/configure.ac
+@@ -134,11 +134,17 @@ PKG_CHECK_MODULES(GMIME, gmime-2.6,
+HAVE_GMIME=yes,
+HAVE_GMIME=no)])
+ 
+-PKG_CHECK_MODULES(TRACKER_SPARQL, tracker-sparql-0.12,
++PKG_CHECK_MODULES(TRACKER_SPARQL, tracker-sparql-0.14,
+   HAVE_TRACKER_SPARQL=yes,
+   HAVE_TRACKER_SPARQL=no)
+ 
+ if test x$HAVE_TRACKER_SPARQL = xno; then
++   PKG_CHECK_MODULES(TRACKER_SPARQL, tracker-sparql-0.12,
++ HAVE_TRACKER_SPARQL=yes,
++ HAVE_TRACKER_SPARQL=no)
++fi
++
++if test x$HAVE_TRACKER_SPARQL = xno; then
+PKG_CHECK_MODULES(TRACKER_SPARQL, tracker-sparql-0.11,
+  HAVE_TRACKER_SPARQL=yes,
+  HAVE_TRACKER_SPARQL=no)
+--
+cgit v0.9.0.2

Copied: grilo-plugins/repos/gnome-unstable-x86_64/PKGBUILD (from rev 153709, 
grilo-plugins/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2012-03-18 13:20:56 UTC (rev 153710)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+
+pkgname=grilo-plugins
+pkgver=0.1.18
+pkgrel=3
+pkgdesc=Plugins for Grilo
+url=http://www.gnome.org;

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

2012-03-18 Thread Giovanni Scafora
Date: Sunday, March 18, 2012 @ 09:40:35
  Author: giovanni
Revision: 153711

upgpkg: iperf 2.0.5-4

added ipv6 support

Modified:
  iperf/trunk/PKGBUILD
Deleted:
  iperf/trunk/license

--+
 PKGBUILD |   10 +-
 license  |   25 -
 2 files changed, 5 insertions(+), 30 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 13:20:56 UTC (rev 153710)
+++ PKGBUILD2012-03-18 13:40:35 UTC (rev 153711)
@@ -4,17 +4,15 @@
 
 pkgname=iperf
 pkgver=2.0.5
-pkgrel=3
+pkgrel=4
 pkgdesc=A tool to measure maximum TCP bandwidth
 arch=('i686' 'x86_64')
 license=('custom')
 url=http://iperf.sourceforge.net;
 depends=('gcc-libs')
 source=(http://downloads.sourceforge.net/iperf/iperf-2.0.5.tar.gz;
-'license'
 'client.cpp.patch')
 md5sums=('44b5536b67719f4250faed632a3cd016'
- 'a2879f900b76668b28a1cc922909db18'
  '82ce63c87cc8bb2f0f94069857ac14a9')
 
 build() {
@@ -23,7 +21,9 @@
   # FS#25159
   patch -Np1 -i ${srcdir}/client.cpp.patch
 
-  ./configure --prefix=/usr
+  ./configure --prefix=/usr \
+  --enable-ipv6 \
+  --enable-threads
   make
 }
 
@@ -31,5 +31,5 @@
   cd ${srcdir}/${pkgname}-${pkgver}
 
   make DESTDIR=${pkgdir} install
-  install -Dm644 ${srcdir}/license ${pkgdir}/usr/share/licenses/iperf/LICENSE
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/iperf/LICENSE
 }

Deleted: license
===
--- license 2012-03-18 13:20:56 UTC (rev 153710)
+++ license 2012-03-18 13:40:35 UTC (rev 153711)
@@ -1,25 +0,0 @@
-Copyright (c) 1999-2006, The Board of Trustees of the University of Illinois
-All Rights Reserved.
-
-Iperf performance test
-Mark Gates
-Ajay Tirumala
-Jim Ferguson
-Jon Dugan
-Feng Qin
-Kevin Gibbs
-John Estabrook
-National Laboratory for Applied Network Research
-National Center for Supercomputing Applications
-University of Illinois at Urbana-Champaign
-http://www.ncsa.uiuc.edu
-
-Permission is hereby granted, free of charge, to any person obtaining a copy 
of this software (Iperf) and associated documentation files (the Software), 
to deal in the Software without restriction, including without limitation the 
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 
sell copies of the Software, and to permit persons to whom the Software is 
furnished to do so, subject to the following conditions:
-
-* Redistributions of source code must retain the above copyright notice, 
this list of conditions and the following disclaimers.
-
-* Redistributions in binary form must reproduce the above copyright 
notice, this list of conditions and the following disclaimers in the 
documentation and/or other materials provided with the distribution.
-
-* Neither the names of the University of Illinois, NCSA, nor the names of 
its contributors may be used to endorse or promote products derived from this 
Software without specific prior written permission. 
-
-THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
CONTIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
SOFTWARE.



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

2012-03-18 Thread Giovanni Scafora
Date: Sunday, March 18, 2012 @ 09:40:58
  Author: giovanni
Revision: 153712

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

Added:
  iperf/repos/extra-i686/PKGBUILD
(from rev 153711, iperf/trunk/PKGBUILD)
  iperf/repos/extra-i686/client.cpp.patch
(from rev 153711, iperf/trunk/client.cpp.patch)
  iperf/repos/extra-x86_64/PKGBUILD
(from rev 153711, iperf/trunk/PKGBUILD)
  iperf/repos/extra-x86_64/client.cpp.patch
(from rev 153711, iperf/trunk/client.cpp.patch)
Deleted:
  iperf/repos/extra-i686/PKGBUILD
  iperf/repos/extra-i686/client.cpp.patch
  iperf/repos/extra-i686/license
  iperf/repos/extra-x86_64/PKGBUILD
  iperf/repos/extra-x86_64/client.cpp.patch
  iperf/repos/extra-x86_64/license

---+
 extra-i686/PKGBUILD   |   70 
 extra-i686/client.cpp.patch   |   34 +--
 extra-i686/license|   25 --
 extra-x86_64/PKGBUILD |   70 
 extra-x86_64/client.cpp.patch |   34 +--
 extra-x86_64/license  |   25 --
 6 files changed, 104 insertions(+), 154 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-18 13:40:35 UTC (rev 153711)
+++ extra-i686/PKGBUILD 2012-03-18 13:40:58 UTC (rev 153712)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Dale Blount d...@archlinux.org
-
-pkgname=iperf
-pkgver=2.0.5
-pkgrel=3
-pkgdesc=A tool to measure maximum TCP bandwidth
-arch=('i686' 'x86_64')
-license=('custom')
-url=http://iperf.sourceforge.net;
-depends=('gcc-libs')
-source=(http://downloads.sourceforge.net/iperf/iperf-2.0.5.tar.gz;
-'license'
-'client.cpp.patch')
-md5sums=('44b5536b67719f4250faed632a3cd016'
- 'a2879f900b76668b28a1cc922909db18'
- '82ce63c87cc8bb2f0f94069857ac14a9')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # FS#25159
-  patch -Np1 -i ${srcdir}/client.cpp.patch
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-  install -Dm644 ${srcdir}/license ${pkgdir}/usr/share/licenses/iperf/LICENSE
-}

Copied: iperf/repos/extra-i686/PKGBUILD (from rev 153711, iperf/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-18 13:40:58 UTC (rev 153712)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Dale Blount d...@archlinux.org
+
+pkgname=iperf
+pkgver=2.0.5
+pkgrel=4
+pkgdesc=A tool to measure maximum TCP bandwidth
+arch=('i686' 'x86_64')
+license=('custom')
+url=http://iperf.sourceforge.net;
+depends=('gcc-libs')
+source=(http://downloads.sourceforge.net/iperf/iperf-2.0.5.tar.gz;
+'client.cpp.patch')
+md5sums=('44b5536b67719f4250faed632a3cd016'
+ '82ce63c87cc8bb2f0f94069857ac14a9')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  # FS#25159
+  patch -Np1 -i ${srcdir}/client.cpp.patch
+
+  ./configure --prefix=/usr \
+  --enable-ipv6 \
+  --enable-threads
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+  install -Dm644 COPYING ${pkgdir}/usr/share/licenses/iperf/LICENSE
+}

Deleted: extra-i686/client.cpp.patch
===
--- extra-i686/client.cpp.patch 2012-03-18 13:40:35 UTC (rev 153711)
+++ extra-i686/client.cpp.patch 2012-03-18 13:40:58 UTC (rev 153712)
@@ -1,17 +0,0 @@
 a/src/Client.cpp   2010-04-01 22:23:17.0 +0200
-+++ b/src/Client.cpp   2011-07-19 11:03:42.0 +0200
-@@ -212,10 +212,10 @@
- char* readAt = mBuf;
- 
- #if HAVE_THREAD
--if ( !isUDP( mSettings ) ) {
--  RunTCP();
--  return;
--}
-+//if ( !isUDP( mSettings ) ) {
-+//RunTCP();
-+//return;
-+//}
- #endif
- 
- // Indicates if the stream is readable 

Copied: iperf/repos/extra-i686/client.cpp.patch (from rev 153711, 
iperf/trunk/client.cpp.patch)
===
--- extra-i686/client.cpp.patch (rev 0)
+++ extra-i686/client.cpp.patch 2012-03-18 13:40:58 UTC (rev 153712)
@@ -0,0 +1,17 @@
+--- a/src/Client.cpp   2010-04-01 22:23:17.0 +0200
 b/src/Client.cpp   2011-07-19 11:03:42.0 +0200
+@@ -212,10 +212,10 @@
+ char* readAt = mBuf;
+ 
+ #if HAVE_THREAD
+-if ( !isUDP( mSettings ) ) {
+-  RunTCP();
+-  return;
+-}
++//if ( !isUDP( mSettings ) ) {
++//RunTCP();
++//return;
++//}
+ #endif
+ 
+ // Indicates if the stream is readable 

Deleted: extra-i686/license
===
--- extra-i686/license  2012-03-18 13:40:35 UTC 

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

2012-03-18 Thread Ionut Biru
Date: Sunday, March 18, 2012 @ 11:03:20
  Author: ibiru
Revision: 153713

update to 3.3.92

Modified:
  totem-plparser/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 13:40:58 UTC (rev 153712)
+++ PKGBUILD2012-03-18 15:03:20 UTC (rev 153713)
@@ -3,7 +3,7 @@
 # Contributor: Jan de Groot j...@archlinux.org
 
 pkgname=totem-plparser
-pkgver=3.2.0
+pkgver=3.3.92
 pkgrel=1
 url=http://www.gnome.org;
 pkgdesc=Totem playlist parser library
@@ -13,7 +13,7 @@
 makedepends=('intltool' 'gobject-introspection')
 options=('!libtool')
 
source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver%.*}/totem-pl-parser-$pkgver.tar.xz)
-sha256sums=('0142ec5ee8fcc0553e8c67f4c35e0a25fc610434cde918db70cb8311899f4c7d')
+sha256sums=('a434da30d0a3f2fe9e1cf96f882aa9c28cd4bff9354807ae22ba7b2a62ba4986')
 
 build() {
   cd totem-pl-parser-$pkgver



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

2012-03-18 Thread Ionut Biru
Date: Sunday, March 18, 2012 @ 11:07:01
  Author: ibiru
Revision: 153714

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

Added:
  totem-plparser/repos/gnome-unstable-i686/PKGBUILD
(from rev 153713, totem-plparser/trunk/PKGBUILD)
  totem-plparser/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 153713, totem-plparser/trunk/PKGBUILD)
Deleted:
  totem-plparser/repos/gnome-unstable-i686/PKGBUILD
  totem-plparser/repos/gnome-unstable-x86_64/PKGBUILD

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

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2012-03-18 15:03:20 UTC (rev 153713)
+++ gnome-unstable-i686/PKGBUILD2012-03-18 15:07:01 UTC (rev 153714)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=totem-plparser
-pkgver=3.2.0
-pkgrel=1
-url=http://www.gnome.org;
-pkgdesc=Totem playlist parser library
-license=('LGPL')
-arch=(i686 x86_64)
-depends=('gmime' 'libsoup-gnome' 'libarchive' 'libquvi')
-makedepends=('intltool' 'gobject-introspection')
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver%.*}/totem-pl-parser-$pkgver.tar.xz)
-sha256sums=('0142ec5ee8fcc0553e8c67f4c35e0a25fc610434cde918db70cb8311899f4c7d')
-
-build() {
-  cd totem-pl-parser-$pkgver
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --localstatedir=/var \
-  --disable-static
-  make
-}
-
-package(){
-  cd totem-pl-parser-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: totem-plparser/repos/gnome-unstable-i686/PKGBUILD (from rev 153713, 
totem-plparser/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-18 15:07:01 UTC (rev 153714)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=totem-plparser
+pkgver=3.3.92
+pkgrel=1
+url=http://www.gnome.org;
+pkgdesc=Totem playlist parser library
+license=('LGPL')
+arch=(i686 x86_64)
+depends=('gmime' 'libsoup-gnome' 'libarchive' 'libquvi')
+makedepends=('intltool' 'gobject-introspection')
+options=('!libtool')
+source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver%.*}/totem-pl-parser-$pkgver.tar.xz)
+sha256sums=('a434da30d0a3f2fe9e1cf96f882aa9c28cd4bff9354807ae22ba7b2a62ba4986')
+
+build() {
+  cd totem-pl-parser-$pkgver
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --localstatedir=/var \
+  --disable-static
+  make
+}
+
+package(){
+  cd totem-pl-parser-$pkgver
+  make DESTDIR=$pkgdir install
+}

Deleted: gnome-unstable-x86_64/PKGBUILD
===
--- gnome-unstable-x86_64/PKGBUILD  2012-03-18 15:03:20 UTC (rev 153713)
+++ gnome-unstable-x86_64/PKGBUILD  2012-03-18 15:07:01 UTC (rev 153714)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
-# Contributor: Jan de Groot j...@archlinux.org
-
-pkgname=totem-plparser
-pkgver=3.2.0
-pkgrel=1
-url=http://www.gnome.org;
-pkgdesc=Totem playlist parser library
-license=('LGPL')
-arch=(i686 x86_64)
-depends=('gmime' 'libsoup-gnome' 'libarchive' 'libquvi')
-makedepends=('intltool' 'gobject-introspection')
-options=('!libtool')
-source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver%.*}/totem-pl-parser-$pkgver.tar.xz)
-sha256sums=('0142ec5ee8fcc0553e8c67f4c35e0a25fc610434cde918db70cb8311899f4c7d')
-
-build() {
-  cd totem-pl-parser-$pkgver
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --localstatedir=/var \
-  --disable-static
-  make
-}
-
-package(){
-  cd totem-pl-parser-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: totem-plparser/repos/gnome-unstable-x86_64/PKGBUILD (from rev 153713, 
totem-plparser/trunk/PKGBUILD)
===
--- gnome-unstable-x86_64/PKGBUILD  (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD  2012-03-18 15:07:01 UTC (rev 153714)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) jan.steff...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+
+pkgname=totem-plparser
+pkgver=3.3.92
+pkgrel=1
+url=http://www.gnome.org;
+pkgdesc=Totem playlist parser library
+license=('LGPL')
+arch=(i686 x86_64)
+depends=('gmime' 'libsoup-gnome' 'libarchive' 'libquvi')
+makedepends=('intltool' 'gobject-introspection')
+options=('!libtool')

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

2012-03-18 Thread Ionut Biru
Date: Sunday, March 18, 2012 @ 11:13:41
  Author: ibiru
Revision: 153715

update to 3.3.92

Modified:
  totem/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 15:07:01 UTC (rev 153714)
+++ PKGBUILD2012-03-18 15:13:41 UTC (rev 153715)
@@ -3,8 +3,8 @@
 
 pkgbase=totem
 pkgname=('totem' 'totem-plugin')
-pkgver=3.3.90
-pkgrel=2
+pkgver=3.3.92
+pkgrel=1
 pkgdesc=A GNOME3 integrated movie player based on Gstreamer.
 url=http://www.gnome.org;
 arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@
 options=('!libtool' '!emptydirs')
 
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz
 browser-plugins.ini)
-sha256sums=('13e779d69a937d4c2b3087a1c90aed6cc906a4bf87c3649b498b5fda22c8d308'
+sha256sums=('d76180ddb030960a50b3df36ff3ba015380ae43b47748ed7c2d184a42382'
 'a50a3bbf35f0535f7e8e20af1893446a2e5711015484f9ae6d1ff91af3b23c4e')
 
 build() {



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

2012-03-18 Thread Ionut Biru
Date: Sunday, March 18, 2012 @ 11:16:36
  Author: ibiru
Revision: 153716

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

Added:
  totem/repos/gnome-unstable-i686/PKGBUILD
(from rev 153715, totem/trunk/PKGBUILD)
  totem/repos/gnome-unstable-i686/browser-plugins.ini
(from rev 153715, totem/trunk/browser-plugins.ini)
  totem/repos/gnome-unstable-i686/totem.install
(from rev 153715, totem/trunk/totem.install)
  totem/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 153715, totem/trunk/PKGBUILD)
  totem/repos/gnome-unstable-x86_64/browser-plugins.ini
(from rev 153715, totem/trunk/browser-plugins.ini)
  totem/repos/gnome-unstable-x86_64/totem.install
(from rev 153715, totem/trunk/totem.install)
Deleted:
  totem/repos/gnome-unstable-i686/PKGBUILD
  totem/repos/gnome-unstable-i686/browser-plugins.ini
  totem/repos/gnome-unstable-i686/totem.install
  totem/repos/gnome-unstable-x86_64/PKGBUILD
  totem/repos/gnome-unstable-x86_64/browser-plugins.ini
  totem/repos/gnome-unstable-x86_64/totem.install

---+
 gnome-unstable-i686/PKGBUILD  |  150 ++--
 gnome-unstable-i686/browser-plugins.ini   |4 
 gnome-unstable-i686/totem.install |   26 ++--
 gnome-unstable-x86_64/PKGBUILD|  150 ++--
 gnome-unstable-x86_64/browser-plugins.ini |4 
 gnome-unstable-x86_64/totem.install   |   26 ++--
 6 files changed, 180 insertions(+), 180 deletions(-)

Deleted: gnome-unstable-i686/PKGBUILD
===
--- gnome-unstable-i686/PKGBUILD2012-03-18 15:13:41 UTC (rev 153715)
+++ gnome-unstable-i686/PKGBUILD2012-03-18 15:16:36 UTC (rev 153716)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgbase=totem
-pkgname=('totem' 'totem-plugin')
-pkgver=3.3.90
-pkgrel=2
-pkgdesc=A GNOME3 integrated movie player based on Gstreamer.
-url=http://www.gnome.org;
-arch=('i686' 'x86_64')
-license=('GPL2' 'custom')
-depends=('gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 
'totem-plparser' 'libxxf86vm'
- 'libxtst' 'desktop-file-utils' 'iso-codes' 'python2' 'libpeas' 
'hicolor-icon-theme'
- 'gnome-icon-theme-symbolic' 'gsettings-desktop-schemas' 'dconf' 
'clutter-gst'
- 'clutter-gtk' 'mx' 'python2-gobject' 'pylint')
-makedepends=('intltool' 'gtk-doc' 'nautilus' 'libgdata' 'lirc-utils'
- 'libepc' 'bluez' 'vala' 'grilo')
-options=('!libtool' '!emptydirs')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/${pkgver%.*}/$pkgbase-$pkgver.tar.xz
-browser-plugins.ini)
-sha256sums=('13e779d69a937d4c2b3087a1c90aed6cc906a4bf87c3649b498b5fda22c8d308'
-'a50a3bbf35f0535f7e8e20af1893446a2e5711015484f9ae6d1ff91af3b23c4e')
-
-build() {
-  cd $pkgbase-$pkgver
-  ./configure --prefix=/usr \
---sysconfdir=/etc \
---libexecdir=/usr/lib/totem \
---localstatedir=/var \
---disable-static \
---enable-python \
---enable-nautilus
-  make
-}
-
-package_totem() {
-  groups=('gnome-extra')
-  install=totem.install
-  optdepends=('gstreamer0.10-ugly-plugins: Extra media codecs'
-  'gstreamer0.10-bad-plugins: Extra media codecs'
-  'gstreamer0.10-ffmpeg: Extra media codecs'
-  'lirc-utils: Infrared Remote Control plugin'
-  'libepc: Publish Playlist plugin'
-  'libgdata: YouTube Browser plugin'
-  'bluez: Bemused plugin'
-  'grilo-plugins: Browse sidebar (remote media)'
-  'pyxdg: opensubtitles plugin')
-
-  cd $pkgbase-$pkgver
-  make DESTDIR=${pkgdir} install
-
-  rm -r $pkgdir/usr/lib/mozilla
-  rm $pkgdir/usr/lib/totem/totem-plugin-viewer
-
-  sed -i s|#!/usr/bin/python$|#!/usr/bin/python2| \
-
$pkgdir/usr/lib/totem/{totem/totem-bugreport.py,plugins/iplayer/iplayer2.py}
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/totem/COPYING
-}
-
-package_totem-plugin() {
-  pkgdesc=Totem plugin for web browsers
-  depends=(totem=$pkgver)
-  backup=(etc/totem/browser-plugins.ini)
-
-  cd $pkgbase-$pkgver
-  make -C browser-plugin \
-plugindir=/usr/lib/mozilla/plugins \
-xptdir=/usr/lib/mozilla/plugins \
-DESTDIR=$pkgdir install
-  
-  install -Dm644 ../browser-plugins.ini $pkgdir/etc/totem/browser-plugins.ini
-
-  install -Dm644 COPYING $pkgdir/usr/share/licenses/totem-plugin/COPYING
-}

Copied: totem/repos/gnome-unstable-i686/PKGBUILD (from rev 153715, 
totem/trunk/PKGBUILD)
===
--- gnome-unstable-i686/PKGBUILD(rev 0)
+++ gnome-unstable-i686/PKGBUILD2012-03-18 15:16:36 UTC (rev 153716)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgbase=totem
+pkgname=('totem' 'totem-plugin')
+pkgver=3.3.92
+pkgrel=1
+pkgdesc=A GNOME3 integrated movie player based on Gstreamer.

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

2012-03-18 Thread Thomas Bächler
Date: Sunday, March 18, 2012 @ 11:36:11
  Author: thomas
Revision: 153717

upgpkg: netcfg 2.7-1

Modified:
  netcfg/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 15:16:36 UTC (rev 153716)
+++ PKGBUILD2012-03-18 15:36:11 UTC (rev 153717)
@@ -3,7 +3,7 @@
 # Contributor: James Rayner ja...@archlinux.org
 
 pkgname=netcfg
-pkgver=2.6.8
+pkgver=2.7
 pkgrel=1
 pkgdesc=Network configuration and profile scripts
 url=http://archlinux.org;
@@ -20,11 +20,10 @@
 )
 source=(ftp://ftp.archlinux.org/other/netcfg/netcfg-${pkgver}.tar.gz)
 arch=(any)
-md5sums=('8ea930ff39f5b08751372d32a5681478')
+sha256sums=('fa0fbda880314c1e474f5b102b0ea6d7aa0ec187c9a5f31fac36ca8096e05c03')
 
 package() {
   cd $srcdir/netcfg-${pkgver}
   make DESTDIR=$pkgdir install
   install -D -m644 LICENSE $pkgdir/usr/share/licenses/netcfg/LICENSE
 }
-



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

2012-03-18 Thread Thomas Bächler
Date: Sunday, March 18, 2012 @ 11:36:19
  Author: thomas
Revision: 153718

archrelease: copy trunk to testing-any

Added:
  netcfg/repos/testing-any/
  netcfg/repos/testing-any/PKGBUILD
(from rev 153717, netcfg/trunk/PKGBUILD)

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

Copied: netcfg/repos/testing-any/PKGBUILD (from rev 153717, 
netcfg/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-03-18 15:36:19 UTC (rev 153718)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Rémy Oudompheng r...@archlinux.org
+# Contributor: James Rayner ja...@archlinux.org
+
+pkgname=netcfg
+pkgver=2.7
+pkgrel=1
+pkgdesc=Network configuration and profile scripts
+url=http://archlinux.org;
+license=(BSD)
+backup=(etc/iftab etc/conf.d/netcfg)
+depends=(coreutils dhcpcd=4.0 iproute2)
+optdepends=('dialog: Required for menu based profile selector'
+'bridge-utils: To set up bridge connections'
+'wpa_supplicant: required for wireless network support'
+'wpa_actiond: Required for automatic wireless connection with 
rc.d/net-auto-wireless'
+'ifplugd: Required for automatic wired connection with 
rc.d/net-auto-wired'
+'wireless_tools: Required to support obsolete IWCONFIG option'
+'net-tools: required to support obsolete IFOPTS option'
+)
+source=(ftp://ftp.archlinux.org/other/netcfg/netcfg-${pkgver}.tar.gz)
+arch=(any)
+sha256sums=('fa0fbda880314c1e474f5b102b0ea6d7aa0ec187c9a5f31fac36ca8096e05c03')
+
+package() {
+  cd $srcdir/netcfg-${pkgver}
+  make DESTDIR=$pkgdir install
+  install -D -m644 LICENSE $pkgdir/usr/share/licenses/netcfg/LICENSE
+}



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

2012-03-18 Thread Ronald van Haren
Date: Sunday, March 18, 2012 @ 13:00:34
  Author: ronald
Revision: 153719

upgpkg: dhcpcd 5.5.4-2

update to current git for FS#28477 ipv6 problems; remove pathches that are now 
upstream

Modified:
  dhcpcd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 15:36:19 UTC (rev 153718)
+++ PKGBUILD2012-03-18 17:00:34 UTC (rev 153719)
@@ -3,9 +3,10 @@
 # Contributor: Tom Killian tom.archlinux.org
 # Contributor: Judd Vinet jvinet.zeroflux.org
 
+_gitrev=8316b24
 pkgname=dhcpcd
 pkgver=5.5.4
-pkgrel=1
+pkgrel=2
 pkgdesc=RFC2131 compliant DHCP client daemon
 url=http://roy.marples.name/dhcpcd/;
 arch=('i686' 'x86_64')
@@ -14,20 +15,18 @@
 depends=('glibc' 'sh')
 backup=('etc/conf.d/dhcpcd' 'etc/dhcpcd.conf')
 options=('emptydirs')  # We Need the Empty /var/lib/dhcpcd Directory
-source=(http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2; \
-'dhcpcd.conf.d' 
'0001-Set-hostname-via-proc-if-file-is-available.patch' \
-   '0001-set-MTU-via-sysfs-if-file-is-available.patch')
-sha1sums=('8aa42abd28d49cce5b179998490c36f6c490e338'
-  'b67b9ce6a2faaca75fea356966a16be2283b7db0'
-  'ee85adac972a8172a9d9b3a1bdd46e0430301582'
-  'afbed18dc5544f7d0b81e2266b322ca12becf9a4')
+#source=(http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2; 
\
+source=(ftp://ftp.archlinux.org/other/dhcpcd/dhcpcd-r8316b24.tar.bz2; \
+'dhcpcd.conf.d')
+sha1sums=('1e3e47b2aabed38e81cd695d1f11527fd41b3637'
+  'b67b9ce6a2faaca75fea356966a16be2283b7db0')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
-  # remove net-tools dep
-  patch -Np1 -i ${srcdir}/0001-Set-hostname-via-proc-if-file-is-available.patch
-  patch -Np1 -i ${srcdir}/0001-set-MTU-via-sysfs-if-file-is-available.patch
+  # remove net-tools dep (upstream now)
+#  patch -Np1 -i 
${srcdir}/0001-Set-hostname-via-proc-if-file-is-available.patch
+#  patch -Np1 -i ${srcdir}/0001-set-MTU-via-sysfs-if-file-is-available.patch
 
   # configure variables
   ./configure --libexecdir=/usr/lib/dhcpcd --dbdir=/var/lib/dhcpcd \



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

2012-03-18 Thread Ronald van Haren
Date: Sunday, March 18, 2012 @ 13:01:24
  Author: ronald
Revision: 153720

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

Added:
  dhcpcd/repos/testing-i686/
  
dhcpcd/repos/testing-i686/0001-Set-hostname-via-proc-if-file-is-available.patch
(from rev 153719, 
dhcpcd/trunk/0001-Set-hostname-via-proc-if-file-is-available.patch)
  dhcpcd/repos/testing-i686/0001-set-MTU-via-sysfs-if-file-is-available.patch
(from rev 153719, 
dhcpcd/trunk/0001-set-MTU-via-sysfs-if-file-is-available.patch)
  dhcpcd/repos/testing-i686/PKGBUILD
(from rev 153719, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-i686/dhcpcd.conf.d
(from rev 153719, dhcpcd/trunk/dhcpcd.conf.d)
  dhcpcd/repos/testing-i686/remove_ifconfig.patch
(from rev 153719, dhcpcd/trunk/remove_ifconfig.patch)
  dhcpcd/repos/testing-x86_64/
  
dhcpcd/repos/testing-x86_64/0001-Set-hostname-via-proc-if-file-is-available.patch
(from rev 153719, 
dhcpcd/trunk/0001-Set-hostname-via-proc-if-file-is-available.patch)
  dhcpcd/repos/testing-x86_64/0001-set-MTU-via-sysfs-if-file-is-available.patch
(from rev 153719, 
dhcpcd/trunk/0001-set-MTU-via-sysfs-if-file-is-available.patch)
  dhcpcd/repos/testing-x86_64/PKGBUILD
(from rev 153719, dhcpcd/trunk/PKGBUILD)
  dhcpcd/repos/testing-x86_64/dhcpcd.conf.d
(from rev 153719, dhcpcd/trunk/dhcpcd.conf.d)
  dhcpcd/repos/testing-x86_64/remove_ifconfig.patch
(from rev 153719, dhcpcd/trunk/remove_ifconfig.patch)

--+
 testing-i686/0001-Set-hostname-via-proc-if-file-is-available.patch   |   33 
+
 testing-i686/0001-set-MTU-via-sysfs-if-file-is-available.patch   |   61 
++
 testing-i686/PKGBUILD|   57 
+
 testing-i686/dhcpcd.conf.d   |6 
 testing-i686/remove_ifconfig.patch   |   20 +++
 testing-x86_64/0001-Set-hostname-via-proc-if-file-is-available.patch |   33 
+
 testing-x86_64/0001-set-MTU-via-sysfs-if-file-is-available.patch |   61 
++
 testing-x86_64/PKGBUILD  |   57 
+
 testing-x86_64/dhcpcd.conf.d |6 
 testing-x86_64/remove_ifconfig.patch |   20 +++
 10 files changed, 354 insertions(+)

Copied: 
dhcpcd/repos/testing-i686/0001-Set-hostname-via-proc-if-file-is-available.patch 
(from rev 153719, 
dhcpcd/trunk/0001-Set-hostname-via-proc-if-file-is-available.patch)
===
--- testing-i686/0001-Set-hostname-via-proc-if-file-is-available.patch  
(rev 0)
+++ testing-i686/0001-Set-hostname-via-proc-if-file-is-available.patch  
2012-03-18 17:01:24 UTC (rev 153720)
@@ -0,0 +1,33 @@
+From d345b36b483fec8fb2def5f3acdc2d3c5faa94eb Mon Sep 17 00:00:00 2001
+From: Dan McGee d...@archlinux.org
+Date: Sun, 19 Jun 2011 16:04:25 -0500
+Subject: [PATCH] Set hostname via /proc if file is available
+
+On Linux, the hostname can be set via this file if available, precluding
+the need for a `hostname` binary.
+
+Signed-off-by: Dan McGee d...@archlinux.org
+---
+ dhcpcd-hooks/30-hostname |6 +-
+ 1 files changed, 5 insertions(+), 1 deletions(-)
+
+diff --git a/dhcpcd-hooks/30-hostname b/dhcpcd-hooks/30-hostname
+index 65d1a13..af94262 100644
+--- a/dhcpcd-hooks/30-hostname
 b/dhcpcd-hooks/30-hostname
+@@ -21,7 +21,11 @@ need_hostname()
+ try_hostname()
+ {
+   if valid_domainname $1; then
+-  hostname $1
++  if [ -w /proc/sys/kernel/hostname ]; then
++  echo $1  /proc/sys/kernel/hostname
++  else
++  hostname $1
++  fi
+   else
+   syslog err Invalid hostname: $1
+   fi
+-- 
+1.7.5.4
+

Copied: 
dhcpcd/repos/testing-i686/0001-set-MTU-via-sysfs-if-file-is-available.patch 
(from rev 153719, 
dhcpcd/trunk/0001-set-MTU-via-sysfs-if-file-is-available.patch)
===
--- testing-i686/0001-set-MTU-via-sysfs-if-file-is-available.patch  
(rev 0)
+++ testing-i686/0001-set-MTU-via-sysfs-if-file-is-available.patch  
2012-03-18 17:01:24 UTC (rev 153720)
@@ -0,0 +1,61 @@
+From 950c00d1b183796034d227ef47a90eb248d79b72 Mon Sep 17 00:00:00 2001
+From: Dave Reisner d...@falconindy.com
+Date: Tue, 21 Jun 2011 09:32:47 -0400
+Subject: [PATCH] set MTU via sysfs if file is available
+
+On Linux, a network interface's MTU can be set by writing to
+/sys/class/net/$interface/mtu, which removes the dependency on ifconfig.
+
+Signed-off-by: Dave Reisner d...@falconindy.com
+---
+ dhcpcd-hooks/10-mtu |4 ++--
+ dhcpcd-run-hooks.in |   11 +++
+ 2 files changed, 13 insertions(+), 2 deletions(-)
+
+diff --git a/dhcpcd-hooks/10-mtu b/dhcpcd-hooks/10-mtu
+index 639697c..8763930 

[arch-commits] Commit in (4 files)

2012-03-18 Thread Ronald van Haren
Date: Sunday, March 18, 2012 @ 13:07:01
  Author: ronald
Revision: 153721

add suitesparse as replacement for umfpack

Added:
  suitesparse/
  suitesparse/repos/
  suitesparse/trunk/
  suitesparse/trunk/PKGBUILD

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

Added: suitesparse/trunk/PKGBUILD
===
--- suitesparse/trunk/PKGBUILD  (rev 0)
+++ suitesparse/trunk/PKGBUILD  2012-03-18 17:07:01 UTC (rev 153721)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+
+pkgname=suitesparse
+pkgver=3.7.0
+pkgrel=1
+pkgdesc=A collection of sparse matrix libraries
+url=http://www.cise.ufl.edu/research/sparse/SuiteSparse/;
+arch=('i686' 'x86_64')
+conflicts=('umfpack')
+provides=('umfpack')
+replaces=('umfpack')
+depends=('blas' 'lapack')
+makedepends=('gcc-fortran')
+license=('GPL')
+source=(http://www.cise.ufl.edu/research/sparse/SuiteSparse/SuiteSparse-$pkgver.tar.gz)
+sha1sums=('d0eb24b43ee2f7def032e80eaa7a589f94f546fc')
+
+build() {
+   cd $srcdir/SuiteSparse
+   export CFLAGS= ${CFLAGS} -DNPARTITION
+   
+   make -C UFconfig/xerbla
+   make -C UFconfig 
+   for _lib in AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK CHOLMOD CXSparse 
SPQR; do
+  make -C ${_lib} library
+   done
+}
+
+
+package() {
+   cd ${srcdir}/SuiteSparse
+   install -dm755 ${pkgdir}/usr/{lib,include}
+   
+   for _lib in UFconfig AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK CHOLMOD 
CXSparse SPQR; do
+  make -C ${_lib} INSTALL_LIB=${pkgdir}/usr/lib 
INSTALL_INCLUDE=${pkgdir}/usr/include install
+   done
+
+   chmod 644 ${pkgdir}/usr/include/*.{h,hpp}
+}


Property changes on: suitesparse/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id


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

2012-03-18 Thread Ronald van Haren
Date: Sunday, March 18, 2012 @ 13:12:55
  Author: ronald
Revision: 153722

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

Added:
  suitesparse/repos/extra-i686/
  suitesparse/repos/extra-i686/PKGBUILD
(from rev 153721, suitesparse/trunk/PKGBUILD)
  suitesparse/repos/extra-x86_64/
  suitesparse/repos/extra-x86_64/PKGBUILD
(from rev 153721, suitesparse/trunk/PKGBUILD)

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

Copied: suitesparse/repos/extra-i686/PKGBUILD (from rev 153721, 
suitesparse/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-18 17:12:55 UTC (rev 153722)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+
+pkgname=suitesparse
+pkgver=3.7.0
+pkgrel=1
+pkgdesc=A collection of sparse matrix libraries
+url=http://www.cise.ufl.edu/research/sparse/SuiteSparse/;
+arch=('i686' 'x86_64')
+conflicts=('umfpack')
+provides=('umfpack')
+replaces=('umfpack')
+depends=('blas' 'lapack')
+makedepends=('gcc-fortran')
+license=('GPL')
+source=(http://www.cise.ufl.edu/research/sparse/SuiteSparse/SuiteSparse-$pkgver.tar.gz)
+sha1sums=('d0eb24b43ee2f7def032e80eaa7a589f94f546fc')
+
+build() {
+   cd $srcdir/SuiteSparse
+   export CFLAGS= ${CFLAGS} -DNPARTITION
+   
+   make -C UFconfig/xerbla
+   make -C UFconfig 
+   for _lib in AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK CHOLMOD CXSparse 
SPQR; do
+  make -C ${_lib} library
+   done
+}
+
+
+package() {
+   cd ${srcdir}/SuiteSparse
+   install -dm755 ${pkgdir}/usr/{lib,include}
+   
+   for _lib in UFconfig AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK CHOLMOD 
CXSparse SPQR; do
+  make -C ${_lib} INSTALL_LIB=${pkgdir}/usr/lib 
INSTALL_INCLUDE=${pkgdir}/usr/include install
+   done
+
+   chmod 644 ${pkgdir}/usr/include/*.{h,hpp}
+}

Copied: suitesparse/repos/extra-x86_64/PKGBUILD (from rev 153721, 
suitesparse/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-03-18 17:12:55 UTC (rev 153722)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+
+pkgname=suitesparse
+pkgver=3.7.0
+pkgrel=1
+pkgdesc=A collection of sparse matrix libraries
+url=http://www.cise.ufl.edu/research/sparse/SuiteSparse/;
+arch=('i686' 'x86_64')
+conflicts=('umfpack')
+provides=('umfpack')
+replaces=('umfpack')
+depends=('blas' 'lapack')
+makedepends=('gcc-fortran')
+license=('GPL')
+source=(http://www.cise.ufl.edu/research/sparse/SuiteSparse/SuiteSparse-$pkgver.tar.gz)
+sha1sums=('d0eb24b43ee2f7def032e80eaa7a589f94f546fc')
+
+build() {
+   cd $srcdir/SuiteSparse
+   export CFLAGS= ${CFLAGS} -DNPARTITION
+   
+   make -C UFconfig/xerbla
+   make -C UFconfig 
+   for _lib in AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK CHOLMOD CXSparse 
SPQR; do
+  make -C ${_lib} library
+   done
+}
+
+
+package() {
+   cd ${srcdir}/SuiteSparse
+   install -dm755 ${pkgdir}/usr/{lib,include}
+   
+   for _lib in UFconfig AMD CAMD COLAMD BTF KLU LDL CCOLAMD UMFPACK CHOLMOD 
CXSparse SPQR; do
+  make -C ${_lib} INSTALL_LIB=${pkgdir}/usr/lib 
INSTALL_INCLUDE=${pkgdir}/usr/include install
+   done
+
+   chmod 644 ${pkgdir}/usr/include/*.{h,hpp}
+}



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

2012-03-18 Thread Ronald van Haren
Date: Sunday, March 18, 2012 @ 15:06:26
  Author: ronald
Revision: 153723

upgpkg: octave 3.6.1-2

rebuild against suitesparse

Modified:
  octave/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 17:12:55 UTC (rev 153722)
+++ PKGBUILD2012-03-18 19:06:26 UTC (rev 153723)
@@ -5,16 +5,15 @@
 
 pkgname=octave
 pkgver=3.6.1
-pkgrel=1
+pkgrel=2
 pkgdesc=A high-level language, primarily intended for numerical computations.
 arch=('i686' 'x86_64')
 url=http://www.octave.org;
 license=('GPL')
-depends=('fftw' 'pcre' 'curl' 'lapack' 'libx11' 'graphicsmagick' 'glpk' 'hdf5' 
'gcc-libs' 'qhull' 'fltk')
-makedepends=('texinfo' 'graphicsmagick' 'gcc-fortran' 'umfpack' 'texlive-core')
+depends=('fftw' 'pcre' 'curl' 'lapack' 'libx11' 'graphicsmagick' 'glpk' 'hdf5' 
'gcc-libs' 'qhull' 'fltk' 'suitesparse') 
+makedepends=('texinfo' 'graphicsmagick' 'gcc-fortran' 'suitesparse' 
'texlive-core')
 optdepends=('texinfo: for help-support in octave'
-'gnuplot: alternative plotting'
-   'umfpack: LU decomposition of some large sparse matrices')
+'gnuplot: alternative plotting')
 source=(ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2;)
 options=('!emptydirs')
 install=octave.install
@@ -27,7 +26,7 @@
   FFLAGS=-O -ffloat-store \
 
   ./configure --prefix=/usr --libexecdir=/usr/lib \
-  --enable-shared --disable-static --with-quantum-depth=16
+  --enable-shared --disable-static
 
   LANG=C make
 }



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

2012-03-18 Thread Ronald van Haren
Date: Sunday, March 18, 2012 @ 15:07:27
  Author: ronald
Revision: 153724

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

Added:
  octave/repos/extra-i686/PKGBUILD
(from rev 153723, octave/trunk/PKGBUILD)
  octave/repos/extra-i686/curlfix.patch
(from rev 153723, octave/trunk/curlfix.patch)
  octave/repos/extra-i686/imread.patch
(from rev 153723, octave/trunk/imread.patch)
  octave/repos/extra-i686/octave-3.4.0-gcc46.patch
(from rev 153723, octave/trunk/octave-3.4.0-gcc46.patch)
  octave/repos/extra-i686/octave.install
(from rev 153723, octave/trunk/octave.install)
  octave/repos/extra-x86_64/PKGBUILD
(from rev 153723, octave/trunk/PKGBUILD)
  octave/repos/extra-x86_64/curlfix.patch
(from rev 153723, octave/trunk/curlfix.patch)
  octave/repos/extra-x86_64/imread.patch
(from rev 153723, octave/trunk/imread.patch)
  octave/repos/extra-x86_64/octave-3.4.0-gcc46.patch
(from rev 153723, octave/trunk/octave-3.4.0-gcc46.patch)
  octave/repos/extra-x86_64/octave.install
(from rev 153723, octave/trunk/octave.install)
Deleted:
  octave/repos/extra-i686/PKGBUILD
  octave/repos/extra-i686/curlfix.patch
  octave/repos/extra-i686/imread.patch
  octave/repos/extra-i686/octave-3.4.0-gcc46.patch
  octave/repos/extra-i686/octave.install
  octave/repos/extra-x86_64/PKGBUILD
  octave/repos/extra-x86_64/curlfix.patch
  octave/repos/extra-x86_64/imread.patch
  octave/repos/extra-x86_64/octave-3.4.0-gcc46.patch
  octave/repos/extra-x86_64/octave.install

---+
 extra-i686/PKGBUILD   |   85 +++-
 extra-i686/curlfix.patch  |   20 +++
 extra-i686/imread.patch   |   58 ++---
 extra-i686/octave-3.4.0-gcc46.patch   |   48 +-
 extra-i686/octave.install |   36 ++---
 extra-x86_64/PKGBUILD |   85 +++-
 extra-x86_64/curlfix.patch|   20 +++
 extra-x86_64/imread.patch |   58 ++---
 extra-x86_64/octave-3.4.0-gcc46.patch |   48 +-
 extra-x86_64/octave.install   |   36 ++---
 10 files changed, 246 insertions(+), 248 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-18 19:06:26 UTC (rev 153723)
+++ extra-i686/PKGBUILD 2012-03-18 19:07:27 UTC (rev 153724)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor : shining shiningxc.at.gmail.com
-# Contributor : cyberdune cyberd...@gmail.com
-
-pkgname=octave
-pkgver=3.6.1
-pkgrel=1
-pkgdesc=A high-level language, primarily intended for numerical computations.
-arch=('i686' 'x86_64')
-url=http://www.octave.org;
-license=('GPL')
-depends=('fftw' 'pcre' 'curl' 'lapack' 'libx11' 'graphicsmagick' 'glpk' 'hdf5' 
'gcc-libs' 'qhull' 'fltk')
-makedepends=('texinfo' 'graphicsmagick' 'gcc-fortran' 'umfpack' 'texlive-core')
-optdepends=('texinfo: for help-support in octave'
-'gnuplot: alternative plotting'
-   'umfpack: LU decomposition of some large sparse matrices')
-source=(ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2;)
-options=('!emptydirs')
-install=octave.install
-sha1sums=('46fdc0b3d7db1b0266975a7443e26769c939a9c7')
-   
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  # http://www.nabble.com/Random-rounding-errors-td16010966.html
-  FFLAGS=-O -ffloat-store \
-
-  ./configure --prefix=/usr --libexecdir=/usr/lib \
-  --enable-shared --disable-static --with-quantum-depth=16
-
-  LANG=C make
-}
-
-package(){
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  # add octave library path to ld.so.conf.d
-  install -d ${pkgdir}/etc/ld.so.conf.d
-  echo /usr/lib/${pkgname}-${pkgver}  
${pkgdir}/etc/ld.so.conf.d/${pkgname}.conf
-}

Copied: octave/repos/extra-i686/PKGBUILD (from rev 153723, 
octave/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-18 19:07:27 UTC (rev 153724)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor : shining shiningxc.at.gmail.com
+# Contributor : cyberdune cyberd...@gmail.com
+
+pkgname=octave
+pkgver=3.6.1
+pkgrel=2
+pkgdesc=A high-level language, primarily intended for numerical computations.
+arch=('i686' 'x86_64')
+url=http://www.octave.org;
+license=('GPL')
+depends=('fftw' 'pcre' 'curl' 'lapack' 'libx11' 'graphicsmagick' 'glpk' 'hdf5' 
'gcc-libs' 'qhull' 'fltk' 'suitesparse') 
+makedepends=('texinfo' 'graphicsmagick' 'gcc-fortran' 'suitesparse' 
'texlive-core')
+optdepends=('texinfo: for help-support in octave'
+'gnuplot: alternative plotting')
+source=(ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2;)
+options=('!emptydirs')
+install=octave.install

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

2012-03-18 Thread Ronald van Haren
Date: Sunday, March 18, 2012 @ 15:54:59
  Author: ronald
Revision: 153725

upgpkg: r 2.14.2-1

update to 2.14.2

Modified:
  r/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 19:07:27 UTC (rev 153724)
+++ PKGBUILD2012-03-18 19:54:59 UTC (rev 153725)
@@ -4,8 +4,8 @@
 # Contributor: K. Piche kpi...@rogers.com
 
 pkgname=r
-pkgver=2.14.1
-pkgrel=3
+pkgver=2.14.2
+pkgrel=1
 pkgdesc=Language and environment for statistical computing and graphics
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -20,9 +20,10 @@
'r.desktop'
'r.png')
 install=r.install
-sha1sums=('5803a213480a749e36bccc155aecb13070ade096'
+sha1sums=('523dca7694e4d0c8701fcc783ea3767e46fe7a62'
   '13aa29219bcaa102e575de8c1c8e0833d233e836'
   'a69a07ec363440efc18ce0a7f2af103375dea978')
+
 build() {
cd ${srcdir}/R-${pkgver}
sed -i 's|#define NeedFunctionPrototypes 0|#define NeedFunctionPrototypes 
1|g' src/modules/X11/dataentry.c



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

2012-03-18 Thread Ronald van Haren
Date: Sunday, March 18, 2012 @ 15:57:52
  Author: ronald
Revision: 153726

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

Added:
  r/repos/extra-i686/PKGBUILD
(from rev 153725, r/trunk/PKGBUILD)
  r/repos/extra-i686/r.desktop
(from rev 153725, r/trunk/r.desktop)
  r/repos/extra-i686/r.install
(from rev 153725, r/trunk/r.install)
  r/repos/extra-i686/r.png
(from rev 153725, r/trunk/r.png)
  r/repos/extra-x86_64/PKGBUILD
(from rev 153725, r/trunk/PKGBUILD)
  r/repos/extra-x86_64/r.desktop
(from rev 153725, r/trunk/r.desktop)
  r/repos/extra-x86_64/r.install
(from rev 153725, r/trunk/r.install)
  r/repos/extra-x86_64/r.png
(from rev 153725, r/trunk/r.png)
Deleted:
  r/repos/extra-i686/PKGBUILD
  r/repos/extra-i686/r.desktop
  r/repos/extra-i686/r.install
  r/repos/extra-i686/r.png
  r/repos/extra-x86_64/PKGBUILD
  r/repos/extra-x86_64/r.desktop
  r/repos/extra-x86_64/r.install
  r/repos/extra-x86_64/r.png

+
 extra-i686/PKGBUILD|  137 +++
 extra-i686/r.desktop   |   22 +++
 extra-i686/r.install   |   24 
 extra-x86_64/PKGBUILD  |  137 +++
 extra-x86_64/r.desktop |   22 +++
 extra-x86_64/r.install |   24 
 6 files changed, 184 insertions(+), 182 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-18 19:54:59 UTC (rev 153725)
+++ extra-i686/PKGBUILD 2012-03-18 19:57:52 UTC (rev 153726)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: Damir Perisa damir.per...@bluewin.ch
-# Contributor: K. Piche kpi...@rogers.com
-
-pkgname=r
-pkgver=2.14.1
-pkgrel=3
-pkgdesc=Language and environment for statistical computing and graphics
-arch=('i686' 'x86_64')
-license=('GPL')
-url=('http://www.r-project.org/')
-depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
- 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
- 'tk' 'libxt' 'libxmu' 'pango' 'xz')
-makedepends=('openjdk6' 'gcc-fortran')
-backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories')
-options=('!makeflags')
-source=(http://cran.r-project.org/src/base/R-2/R-${pkgver}.tar.gz;
-   'r.desktop'
-   'r.png')
-install=r.install
-sha1sums=('5803a213480a749e36bccc155aecb13070ade096'
-  '13aa29219bcaa102e575de8c1c8e0833d233e836'
-  'a69a07ec363440efc18ce0a7f2af103375dea978')
-build() {
-   cd ${srcdir}/R-${pkgver}
-   sed -i 's|#define NeedFunctionPrototypes 0|#define NeedFunctionPrototypes 
1|g' src/modules/X11/dataentry.c
-   ./configure  --prefix=/usr \
-   --libdir=/usr/lib \
-   --sysconfdir=/etc/R \
-   --datarootdir=/usr/share \
- rsharedir=/usr/share/R/ \
- rincludedir=/usr/include/R/ \
- rdocdir=/usr/share/doc/R/ \
---with-x \
-   --enable-R-shlib \
---with-lapack \
-   --with-blas \
-F77=gfortran \
-   LIBnn=lib
-   make
-}
-
-package() {
-   cd ${srcdir}/R-${pkgver}
-   make -j1 DESTDIR=${pkgdir} install
-
-   #  Fixup R wrapper scripts.
-   sed -i s|${pkgdir} || ${pkgdir}/usr/bin/R
-   rm ${pkgdir}/usr/lib/R/bin/R
-   cd ${pkgdir}/usr/lib/R/bin
-   ln -s ../../../bin/R
-
-  # install some freedesktop.org compatibility
-  install -Dm644 ${srcdir}/r.desktop \
-   ${pkgdir}/usr/share/applications/r.desktop
-  install -Dm644 ${srcdir}/r.png \
-   ${pkgdir}/usr/share/pixmaps/r.png
-
-  # move the config directory to /etc and create symlinks
-  install -d ${pkgdir}/etc/R
-  cd ${pkgdir}/usr/lib/R/etc
-  for i in *; do
-mv -f ${i} ${pkgdir}/etc/R
-ln -s /etc/R/${i} ${i}
-  done
-}

Copied: r/repos/extra-i686/PKGBUILD (from rev 153725, r/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-18 19:57:52 UTC (rev 153726)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+# Contributor: K. Piche kpi...@rogers.com
+
+pkgname=r
+pkgver=2.14.2
+pkgrel=1
+pkgdesc=Language and environment for statistical computing and graphics
+arch=('i686' 'x86_64')
+license=('GPL')
+url=('http://www.r-project.org/')
+depends=('blas' 'lapack' 'bzip2'  'libpng' 'libjpeg' 'libtiff'
+ 'ncurses' 'pcre' 'readline' 'zlib' 'perl' 'gcc-libs'
+ 'tk' 'libxt' 'libxmu' 'pango' 'xz')
+makedepends=('openjdk6' 'gcc-fortran')
+backup=('etc/R/Makeconf' 'etc/R/Renviron' 'etc/R/ldpaths' 'etc/R/repositories')
+options=('!makeflags')
+source=(http://cran.r-project.org/src/base/R-2/R-${pkgver}.tar.gz;
+   'r.desktop'
+   'r.png')
+install=r.install
+sha1sums=('523dca7694e4d0c8701fcc783ea3767e46fe7a62'
+  

[arch-commits] Commit in libvisual-plugins/trunk (2 files)

2012-03-18 Thread Jan de Groot
Date: Sunday, March 18, 2012 @ 17:19:54
  Author: jgc
Revision: 153727

upgpkg: libvisual-plugins 0.4.0-6

Add patch to fix crashes in nastyfft plugin

Added:
  libvisual-plugins/trunk/60_no-const-vispluginfo-in-nastyfft.patch
Modified:
  libvisual-plugins/trunk/PKGBUILD

---+
 60_no-const-vispluginfo-in-nastyfft.patch |   18 ++
 PKGBUILD  |9 ++---
 2 files changed, 24 insertions(+), 3 deletions(-)

Added: 60_no-const-vispluginfo-in-nastyfft.patch
===
--- 60_no-const-vispluginfo-in-nastyfft.patch   (rev 0)
+++ 60_no-const-vispluginfo-in-nastyfft.patch   2012-03-18 21:19:54 UTC (rev 
153727)
@@ -0,0 +1,18 @@
+The static VisPluginInfo in nastyfft was declared as const, but libvisual write
+to its refcount when it visual_object_unref()s it (nasty!).  This is broken at
+various levels: libvisual shouldn't be writing to this static plugin which is
+allocated by a dlopen()ed plugin, and it should also honor the const
+VisPluginInfo API...  Anyway, nastyfft was the only occurrence and this fixes
+the crash for now; LP: #287448.
+
+--- libvisual-plugins-0.4.0.dfsg.1.orig/plugins/actor/nastyfft/actor_nastyfft.c
 libvisual-plugins-0.4.0.dfsg.1/plugins/actor/nastyfft/actor_nastyfft.c
+@@ -80,7 +80,7 @@
+   .vidoptions.depth = VISUAL_VIDEO_DEPTH_GL
+   }};
+ 
+-  static const VisPluginInfo info[] = {{
++  static VisPluginInfo info[] = {{
+   .type = VISUAL_PLUGIN_TYPE_ACTOR,
+ 
+   .plugname = N_(nastyfft),

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 19:57:52 UTC (rev 153726)
+++ PKGBUILD2012-03-18 21:19:54 UTC (rev 153727)
@@ -3,7 +3,7 @@
 
 pkgname=libvisual-plugins
 pkgver=0.4.0
-pkgrel=5
+pkgrel=6
 pkgdesc=plugins for libvisual
 arch=(i686 x86_64)
 license=('GPL')
@@ -16,13 +16,15 @@
 03_build_against_gl_fixes.patch
 04_lv_analyzer_build_fix.patch
 05_fix_po.patch
-050_all_automagic.patch)
+050_all_automagic.patch
+60_no-const-vispluginfo-in-nastyfft.patch)
 md5sums=('4330e9287f9d6fae02f482f428a1e77b'
  'f9cfb607bfcbfef60830fae4e7dc6963'
  '116701408747dbb87dc134434478ebe2'
  '01678a8f1584c76a44e59d81003a1109'
  '6189b7427c4e11c8b8d6c6266d6a1629'
- 'b50ae94c424a5f0af235deffa8451eb6')
+ 'b50ae94c424a5f0af235deffa8451eb6'
+ '7012518727cb072a7e90a826a5577cc6')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -30,6 +32,7 @@
   patch -Np1 -i ${srcdir}/03_build_against_gl_fixes.patch
   patch -Np1 -i ${srcdir}/04_lv_analyzer_build_fix.patch
   patch -Np0 -i ${srcdir}/050_all_automagic.patch
+  patch -Np1 -i ${srcdir}/60_no-const-vispluginfo-in-nastyfft.patch
 
   autoreconf -fi
   # Apply later as autoreconf overwrites po/Makefile.in.in



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

2012-03-18 Thread Jan de Groot
Date: Sunday, March 18, 2012 @ 17:20:45
  Author: jgc
Revision: 153728

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

Added:
  libvisual-plugins/repos/extra-i686/02_64-bit_JESS_fix.patch
(from rev 153727, libvisual-plugins/trunk/02_64-bit_JESS_fix.patch)
  libvisual-plugins/repos/extra-i686/03_build_against_gl_fixes.patch
(from rev 153727, libvisual-plugins/trunk/03_build_against_gl_fixes.patch)
  libvisual-plugins/repos/extra-i686/04_lv_analyzer_build_fix.patch
(from rev 153727, libvisual-plugins/trunk/04_lv_analyzer_build_fix.patch)
  libvisual-plugins/repos/extra-i686/050_all_automagic.patch
(from rev 153727, libvisual-plugins/trunk/050_all_automagic.patch)
  libvisual-plugins/repos/extra-i686/05_fix_po.patch
(from rev 153727, libvisual-plugins/trunk/05_fix_po.patch)
  libvisual-plugins/repos/extra-i686/60_no-const-vispluginfo-in-nastyfft.patch
(from rev 153727, 
libvisual-plugins/trunk/60_no-const-vispluginfo-in-nastyfft.patch)
  libvisual-plugins/repos/extra-i686/PKGBUILD
(from rev 153727, libvisual-plugins/trunk/PKGBUILD)
  libvisual-plugins/repos/extra-x86_64/02_64-bit_JESS_fix.patch
(from rev 153727, libvisual-plugins/trunk/02_64-bit_JESS_fix.patch)
  libvisual-plugins/repos/extra-x86_64/03_build_against_gl_fixes.patch
(from rev 153727, libvisual-plugins/trunk/03_build_against_gl_fixes.patch)
  libvisual-plugins/repos/extra-x86_64/04_lv_analyzer_build_fix.patch
(from rev 153727, libvisual-plugins/trunk/04_lv_analyzer_build_fix.patch)
  libvisual-plugins/repos/extra-x86_64/050_all_automagic.patch
(from rev 153727, libvisual-plugins/trunk/050_all_automagic.patch)
  libvisual-plugins/repos/extra-x86_64/05_fix_po.patch
(from rev 153727, libvisual-plugins/trunk/05_fix_po.patch)
  libvisual-plugins/repos/extra-x86_64/60_no-const-vispluginfo-in-nastyfft.patch
(from rev 153727, 
libvisual-plugins/trunk/60_no-const-vispluginfo-in-nastyfft.patch)
  libvisual-plugins/repos/extra-x86_64/PKGBUILD
(from rev 153727, libvisual-plugins/trunk/PKGBUILD)
Deleted:
  libvisual-plugins/repos/extra-i686/02_64-bit_JESS_fix.patch
  libvisual-plugins/repos/extra-i686/03_build_against_gl_fixes.patch
  libvisual-plugins/repos/extra-i686/04_lv_analyzer_build_fix.patch
  libvisual-plugins/repos/extra-i686/050_all_automagic.patch
  libvisual-plugins/repos/extra-i686/05_fix_po.patch
  libvisual-plugins/repos/extra-i686/PKGBUILD
  libvisual-plugins/repos/extra-x86_64/02_64-bit_JESS_fix.patch
  libvisual-plugins/repos/extra-x86_64/03_build_against_gl_fixes.patch
  libvisual-plugins/repos/extra-x86_64/04_lv_analyzer_build_fix.patch
  libvisual-plugins/repos/extra-x86_64/050_all_automagic.patch
  libvisual-plugins/repos/extra-x86_64/05_fix_po.patch
  libvisual-plugins/repos/extra-x86_64/PKGBUILD

+
 extra-i686/02_64-bit_JESS_fix.patch|  116 +-
 extra-i686/03_build_against_gl_fixes.patch |  744 +++
 extra-i686/04_lv_analyzer_build_fix.patch  |   24 
 extra-i686/050_all_automagic.patch |  100 +-
 extra-i686/05_fix_po.patch |  254 ++---
 extra-i686/60_no-const-vispluginfo-in-nastyfft.patch   |   18 
 extra-i686/PKGBUILD|   99 +
 extra-x86_64/02_64-bit_JESS_fix.patch  |  116 +-
 extra-x86_64/03_build_against_gl_fixes.patch   |  744 +++
 extra-x86_64/04_lv_analyzer_build_fix.patch|   24 
 extra-x86_64/050_all_automagic.patch   |  100 +-
 extra-x86_64/05_fix_po.patch   |  254 ++---
 extra-x86_64/60_no-const-vispluginfo-in-nastyfft.patch |   18 
 extra-x86_64/PKGBUILD  |   99 +
 14 files changed, 1376 insertions(+), 1334 deletions(-)

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


[arch-commits] Commit in gajim/trunk (PKGBUILD fix-unicode-characters.patch)

2012-03-18 Thread Eric Bélanger
Date: Sunday, March 18, 2012 @ 20:30:29
  Author: eric
Revision: 153729

upgpkg: gajim 0.15-1

Upstream update, Remove old patch, Add python2 fix

Modified:
  gajim/trunk/PKGBUILD
Deleted:
  gajim/trunk/fix-unicode-characters.patch

--+
 PKGBUILD |   14 +--
 fix-unicode-characters.patch |  162 -
 2 files changed, 5 insertions(+), 171 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-03-18 21:20:45 UTC (rev 153728)
+++ PKGBUILD2012-03-19 00:30:29 UTC (rev 153729)
@@ -2,8 +2,8 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=gajim
-pkgver=0.14.4
-pkgrel=2
+pkgver=0.15
+pkgrel=1
 pkgdesc=A full featured and easy to use Jabber client
 arch=('any')
 url=http://www.gajim.org/;
@@ -21,16 +21,12 @@
 'pycrypto: support for E2E encryption')
 options=('!libtool')
 install=gajim.install
-source=(http://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2;
-'fix-unicode-characters.patch')
-md5sums=('b6b88b084de38d9fb34d39c37d4f185b'
- '37faebd9b3d2aca56d6cc17c8e7d7112')
-sha1sums=('0343af3c4bae39aa49e547b641caac197a887bb4'
-  '7650dd14ce16d0d8b73f623083071a7249d27cff')
+source=(http://www.gajim.org/downloads/${pkgver}/gajim-${pkgver}.tar.bz2)
+sha1sums=('68934aa40090d21b2937df551373e454f5aa6bb6')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-site-packages
+  PYTHON=python2 ./configure --prefix=/usr --enable-site-packages
   make
 }
 

Deleted: fix-unicode-characters.patch
===
--- fix-unicode-characters.patch2012-03-18 21:20:45 UTC (rev 153728)
+++ fix-unicode-characters.patch2012-03-19 00:30:29 UTC (rev 153729)
@@ -1,162 +0,0 @@
-Index: src/common/xmpp/dispatcher_nb.py
-===
 src/common/xmpp/dispatcher_nb.py   (revision 13139)
-+++ src/common/xmpp/dispatcher_nb.py   (revision 13242)
-@@ -22,4 +22,5 @@
- 
- import simplexml, sys, locale
-+import re
- from xml.parsers.expat import ExpatError
- from plugin import PlugIn
-@@ -93,4 +94,22 @@
- # Let the dispatcher know if there is support for stream management
- self.sm = None
-+
-+# \ufddo - \ufdef range
-+c = u'\ufdd0'
-+r = c.encode('utf8')
-+while (c  u'\ufdef'):
-+c = unichr(ord(c) + 1)
-+r += '|' + c.encode('utf8')
-+
-+# \ufffe-\u, \u1fffe-\u1, ..., \u10fffe-\u10
-+c = u'\ufffe'
-+r += '|' + c.encode('utf8')
-+r += '|' + unichr(ord(c) + 1).encode('utf8')
-+while (c  u'\U0010fffe'):
-+c = unichr(ord(c) + 0x1)
-+r += '|' + c.encode('utf8')
-+r += '|' + unichr(ord(c) + 1).encode('utf8')
-+
-+self.invalid_chars_re = re.compile(r)
- 
- def getAnID(self):
-@@ -194,4 +213,5 @@
- # Is this intended?
- # also look at transports start_disconnect()
-+data = re.sub(self.invalid_chars_re, u'\ufffd'.encode('utf-8'), data)
- for handler in self._cycleHandlers:
- handler(self)
-Index: src/common/connection_handlers.py
-===
 src/common/connection_handlers.py  (revision 13172)
-+++ src/common/connection_handlers.py  (revision 13243)
-@@ -978,4 +978,6 @@
- def decrypt_thread(encmsg, keyID, obj):
- decmsg = self.gpg.decrypt(encmsg, keyID)
-+decmsg = self.connection.Dispatcher.replace_non_character(
-+decmsg)
- # \x00 chars are not allowed in C (so in GTK)
- obj.msgtxt = helpers.decode_string(decmsg.replace('\x00',
-Index: src/common/stanza_session.py
-===
 src/common/stanza_session.py   (revision 13172)
-+++ src/common/stanza_session.py   (revision 13243)
-@@ -493,4 +493,7 @@
- stanza.addChild(node=child)
- 
-+# replace non-character unicode
-+stranza = 
self.conn.connection.Dispatcher.replace_non_character(stanza)
-+
- return stanza
- 
-Index: src/common/xmpp/dispatcher_nb.py
-===
 src/common/xmpp/dispatcher_nb.py   (revision 13242)
-+++ src/common/xmpp/dispatcher_nb.py   (revision 13243)
-@@ -198,4 +198,7 @@
- % (tag, ns))
- 
-+def replace_non_character(self, data):
-+return re.sub(self.invalid_chars_re, u'\ufffd'.encode('utf-8'), data)
-+
- def ProcessNonBlocking(self, data):
- 
-@@ -213,5 +216,5 @@
- # Is this intended?
- # also look at transports start_disconnect()
--data = re.sub(self.invalid_chars_re, u'\ufffd'.encode('utf-8'), 

[arch-commits] Commit in gajim/repos/extra-any (5 files)

2012-03-18 Thread Eric Bélanger
Date: Sunday, March 18, 2012 @ 20:31:17
  Author: eric
Revision: 153730

archrelease: copy trunk to extra-any

Added:
  gajim/repos/extra-any/PKGBUILD
(from rev 153729, gajim/trunk/PKGBUILD)
  gajim/repos/extra-any/gajim.install
(from rev 153729, gajim/trunk/gajim.install)
Deleted:
  gajim/repos/extra-any/PKGBUILD
  gajim/repos/extra-any/fix-unicode-characters.patch
  gajim/repos/extra-any/gajim.install

--+
 PKGBUILD |   76 +--
 fix-unicode-characters.patch |  162 -
 gajim.install|   22 ++---
 3 files changed, 47 insertions(+), 213 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-03-19 00:30:29 UTC (rev 153729)
+++ PKGBUILD2012-03-19 00:31:17 UTC (rev 153730)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=gajim
-pkgver=0.14.4
-pkgrel=2
-pkgdesc=A full featured and easy to use Jabber client
-arch=('any')
-url=http://www.gajim.org/;
-license=('GPL3')
-depends=('pygtk' 'python2' 'python2-pyopenssl' 'hicolor-icon-theme' 'dnsutils')
-makedepends=('gettext' 'intltool')
-optdepends=('dbus-python: dbus support'
-'farsight2: video/voice support'
-'gstreamer0.10-good: video/voice support'
-'gstreamer0.10-bad: video/voice support'
-'gtkspell: spelling support'
-'libxss: for idle module'
-'notification-daemon: for desktop notification'
-'python-gnomekeyring: for GnomeKeyring support'
-'pycrypto: support for E2E encryption')
-options=('!libtool')
-install=gajim.install
-source=(http://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2;
-'fix-unicode-characters.patch')
-md5sums=('b6b88b084de38d9fb34d39c37d4f185b'
- '37faebd9b3d2aca56d6cc17c8e7d7112')
-sha1sums=('0343af3c4bae39aa49e547b641caac197a887bb4'
-  '7650dd14ce16d0d8b73f623083071a7249d27cff')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --enable-site-packages
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: gajim/repos/extra-any/PKGBUILD (from rev 153729, gajim/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-03-19 00:31:17 UTC (rev 153730)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=gajim
+pkgver=0.15
+pkgrel=1
+pkgdesc=A full featured and easy to use Jabber client
+arch=('any')
+url=http://www.gajim.org/;
+license=('GPL3')
+depends=('pygtk' 'python2' 'python2-pyopenssl' 'hicolor-icon-theme' 'dnsutils')
+makedepends=('gettext' 'intltool')
+optdepends=('dbus-python: dbus support'
+'farsight2: video/voice support'
+'gstreamer0.10-good: video/voice support'
+'gstreamer0.10-bad: video/voice support'
+'gtkspell: spelling support'
+'libxss: for idle module'
+'notification-daemon: for desktop notification'
+'python-gnomekeyring: for GnomeKeyring support'
+'pycrypto: support for E2E encryption')
+options=('!libtool')
+install=gajim.install
+source=(http://www.gajim.org/downloads/${pkgver}/gajim-${pkgver}.tar.bz2)
+sha1sums=('68934aa40090d21b2937df551373e454f5aa6bb6')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  PYTHON=python2 ./configure --prefix=/usr --enable-site-packages
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: fix-unicode-characters.patch
===
--- fix-unicode-characters.patch2012-03-19 00:30:29 UTC (rev 153729)
+++ fix-unicode-characters.patch2012-03-19 00:31:17 UTC (rev 153730)
@@ -1,162 +0,0 @@
-Index: src/common/xmpp/dispatcher_nb.py
-===
 src/common/xmpp/dispatcher_nb.py   (revision 13139)
-+++ src/common/xmpp/dispatcher_nb.py   (revision 13242)
-@@ -22,4 +22,5 @@
- 
- import simplexml, sys, locale
-+import re
- from xml.parsers.expat import ExpatError
- from plugin import PlugIn
-@@ -93,4 +94,22 @@
- # Let the dispatcher know if there is support for stream management
- self.sm = None
-+
-+# \ufddo - \ufdef range
-+c = u'\ufdd0'
-+r = c.encode('utf8')
-+while (c  u'\ufdef'):
-+c = unichr(ord(c) + 1)
-+r += '|' + c.encode('utf8')
-+
-+# \ufffe-\u, \u1fffe-\u1, ..., \u10fffe-\u10
-+c = u'\ufffe'
-+r += '|' + c.encode('utf8')
-+r += '|' + unichr(ord(c) + 1).encode('utf8')
-+while (c  u'\U0010fffe'):
-+c = unichr(ord(c) + 0x1)
-+r += '|' + c.encode('utf8')
-+r += '|' + unichr(ord(c) + 

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

2012-03-18 Thread Eric Bélanger
Date: Sunday, March 18, 2012 @ 20:47:18
  Author: eric
Revision: 153731

Fix library linking (close FS#28998)

Modified:
  rox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-19 00:31:17 UTC (rev 153730)
+++ PKGBUILD2012-03-19 00:47:18 UTC (rev 153731)
@@ -20,7 +20,7 @@
 
 build() {
   cd ${srcdir}/rox-filer-${pkgver}
-  ./ROX-Filer/AppRun --compile
+  ./ROX-Filer/AppRun --compile LIBS=-ldl -lm
 # finally we render a png as fallback for svg unaware menu applications
 # Attention: always make sure you check the dimensions of the source-svg,
 # you can read the dimensions via inkscape's export function



[arch-commits] Commit in rox/repos/extra-i686 (8 files)

2012-03-18 Thread Eric Bélanger
Date: Sunday, March 18, 2012 @ 20:47:49
  Author: eric
Revision: 153732

archrelease: copy trunk to extra-i686

Added:
  rox/repos/extra-i686/PKGBUILD
(from rev 153731, rox/trunk/PKGBUILD)
  rox/repos/extra-i686/rox.desktop
(from rev 153731, rox/trunk/rox.desktop)
  rox/repos/extra-i686/rox.sh
(from rev 153731, rox/trunk/rox.sh)
  rox/repos/extra-i686/rox.svg
(from rev 153731, rox/trunk/rox.svg)
Deleted:
  rox/repos/extra-i686/PKGBUILD
  rox/repos/extra-i686/rox.desktop
  rox/repos/extra-i686/rox.sh
  rox/repos/extra-i686/rox.svg

-+
 PKGBUILD|   88 ++---
 rox.desktop |   14 
 rox.sh  |4 
 rox.svg |  986 +-
 4 files changed, 546 insertions(+), 546 deletions(-)

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


[arch-commits] Commit in rox/repos/extra-x86_64 (8 files)

2012-03-18 Thread Eric Bélanger
Date: Sunday, March 18, 2012 @ 20:48:00
  Author: eric
Revision: 153733

archrelease: copy trunk to extra-x86_64

Added:
  rox/repos/extra-x86_64/PKGBUILD
(from rev 153732, rox/trunk/PKGBUILD)
  rox/repos/extra-x86_64/rox.desktop
(from rev 153732, rox/trunk/rox.desktop)
  rox/repos/extra-x86_64/rox.sh
(from rev 153732, rox/trunk/rox.sh)
  rox/repos/extra-x86_64/rox.svg
(from rev 153732, rox/trunk/rox.svg)
Deleted:
  rox/repos/extra-x86_64/PKGBUILD
  rox/repos/extra-x86_64/rox.desktop
  rox/repos/extra-x86_64/rox.sh
  rox/repos/extra-x86_64/rox.svg

-+
 PKGBUILD|   88 ++---
 rox.desktop |   14 
 rox.sh  |4 
 rox.svg |  986 +-
 4 files changed, 546 insertions(+), 546 deletions(-)

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


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

2012-03-18 Thread Eric Bélanger
Date: Sunday, March 18, 2012 @ 23:44:40
  Author: eric
Revision: 153734

upgpkg: python-pygame 1.9.1-5

Change python2 and portmidi makedepends to depends (close FS#28628), Clean up 
depends, Remove replaces and provides arrays, Add python2 fix, Remove ChangeLog

Modified:
  python-pygame/trunk/PKGBUILD
Deleted:
  python-pygame/trunk/ChangeLog

---+
 ChangeLog |   34 --
 PKGBUILD  |   51 ---
 2 files changed, 24 insertions(+), 61 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2012-03-19 00:48:00 UTC (rev 153733)
+++ ChangeLog   2012-03-19 03:44:40 UTC (rev 153734)
@@ -1,34 +0,0 @@
-2012-01-24  Angel Velasquez an...@archlinux.org
-
-   * Rebuilt against libpng 1.5
-
-2010-08-24  Eric Belanger  e...@archlinux.org
-
-   * Rebuilt for python2
-
-2009-08-06  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Updated to: 1.9.1
-
-2009-08-03  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Adding the examples folder
-
-2009-08-01  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Updated for x86_64: 1.9.0
-
-2008-08-06  Eric Belanger  e...@archlinux.org
-
-   * python-pygame 1.8.1-2
-   * Fixed file permissions (close FS#11082)
-
-2008-07-31  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Updated for i686: 1.8.1
-
-2008-03-31  Eric Belanger  e...@archlinux.org
-
-   * python-pygame 1.8.0-1
-   * Upstream update
-   * Added ChangeLog

Modified: PKGBUILD
===
--- PKGBUILD2012-03-19 00:48:00 UTC (rev 153733)
+++ PKGBUILD2012-03-19 03:44:40 UTC (rev 153734)
@@ -1,40 +1,37 @@
 # $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-# Contributor: Eric Belanger e...@archlinux.org
-# Contributor: john(?)
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Maintainer: Eric Bélanger e...@archlinux.org
+
 pkgname=python-pygame
 pkgver=1.9.1
-pkgrel=4
+pkgrel=5
 pkgdesc=Python game library
 arch=('i686' 'x86_64')
 url=http://www.pygame.org/;
 license=('LGPL')
-depends=('sdl_mixer' 'libvorbis' 'sdl_ttf' 'sdl_image' 'smpeg')
-makedepends=('python2' 'portmidi') 
-replaces=('pygame')
-provides=('pygame')
-changelog=ChangeLog
-source=(http://pygame.org/ftp/pygame-${pkgver}release.tar.gz 'config.patch'
-'pygame-v4l.patch')
-md5sums=('1c4cdc708d17c8250a2d78ef997222fc'
- 'aaa668f3cd710d8604114501ea6a6f48'
- '9915b63865c16519e80007909beed876')
+depends=('sdl_mixer' 'sdl_ttf' 'sdl_image' 'python2' 'portmidi')
+source=(http://pygame.org/ftp/pygame-${pkgver}release.tar.gz \
+config.patch pygame-v4l.patch)
+sha1sums=('a45aeb0623e36ae7a1707b5f41ee6274f72ca4fa'
+  '285815e28705d5a2aea53c9d952d35fddf10dd13'
+  '7e693fb2ef5ef636f9965ba1a4eb854f8b0b5070')
 
 build() {
-   cd ${srcdir}/pygame-${pkgver}release
-   patch -Np0 -i ${srcdir}/config.patch
-patch -Np1 -i ${srcdir}/pygame-v4l.patch
+  cd ${srcdir}/pygame-${pkgver}release
+  patch -Np0 -i ${srcdir}/config.patch
+  patch -Np1 -i ${srcdir}/pygame-v4l.patch
 }
 
 package() {
-   cd ${srcdir}/pygame-${pkgver}release
-   python2 config.py -auto
-   python2 setup.py install --root=${pkgdir} --prefix=/usr
-   # Copying the examples and tests
-   cp -R examples lib/* ${pkgdir}/usr/lib/python2.7/site-packages/pygame
-   cp -R test/* ${pkgdir}/usr/lib/python2.7/site-packages/pygame/tests
-   # Fixing permissions
-   chmod 644 ${pkgdir}/usr/include/python2.7/pygame/*
+  cd ${srcdir}/pygame-${pkgver}release
+  python2 config.py -auto
+  python2 setup.py install --root=${pkgdir} --prefix=/usr
+
+# Copying the examples and tests
+  cp -R examples lib/* ${pkgdir}/usr/lib/python2.7/site-packages/pygame
+  cp -R test/* ${pkgdir}/usr/lib/python2.7/site-packages/pygame/tests
+
+  find ${pkgdir} -type f -exec sed -i 's#/usr/bin/env python#/usr/bin/env 
python2#' {} +
+
+# Fixing permissions
+  chmod 644 ${pkgdir}/usr/include/python2.7/pygame/*
 }



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

2012-03-18 Thread Eric Bélanger
Date: Sunday, March 18, 2012 @ 23:45:07
  Author: eric
Revision: 153735

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

Added:
  python-pygame/repos/extra-i686/PKGBUILD
(from rev 153734, python-pygame/trunk/PKGBUILD)
  python-pygame/repos/extra-i686/config.patch
(from rev 153734, python-pygame/trunk/config.patch)
  python-pygame/repos/extra-i686/pygame-v4l.patch
(from rev 153734, python-pygame/trunk/pygame-v4l.patch)
  python-pygame/repos/extra-x86_64/PKGBUILD
(from rev 153734, python-pygame/trunk/PKGBUILD)
  python-pygame/repos/extra-x86_64/config.patch
(from rev 153734, python-pygame/trunk/config.patch)
  python-pygame/repos/extra-x86_64/pygame-v4l.patch
(from rev 153734, python-pygame/trunk/pygame-v4l.patch)
Deleted:
  python-pygame/repos/extra-i686/ChangeLog
  python-pygame/repos/extra-i686/PKGBUILD
  python-pygame/repos/extra-i686/config.patch
  python-pygame/repos/extra-i686/pygame-v4l.patch
  python-pygame/repos/extra-x86_64/ChangeLog
  python-pygame/repos/extra-x86_64/PKGBUILD
  python-pygame/repos/extra-x86_64/config.patch
  python-pygame/repos/extra-x86_64/pygame-v4l.patch

---+
 extra-i686/ChangeLog  |   34 ---
 extra-i686/PKGBUILD   |   77 -
 extra-i686/config.patch   |   52 +--
 extra-i686/pygame-v4l.patch   |  176 
 extra-x86_64/ChangeLog|   34 ---
 extra-x86_64/PKGBUILD |   77 -
 extra-x86_64/config.patch |   52 +--
 extra-x86_64/pygame-v4l.patch |  176 
 8 files changed, 302 insertions(+), 376 deletions(-)

Deleted: extra-i686/ChangeLog
===
--- extra-i686/ChangeLog2012-03-19 03:44:40 UTC (rev 153734)
+++ extra-i686/ChangeLog2012-03-19 03:45:07 UTC (rev 153735)
@@ -1,34 +0,0 @@
-2012-01-24  Angel Velasquez an...@archlinux.org
-
-   * Rebuilt against libpng 1.5
-
-2010-08-24  Eric Belanger  e...@archlinux.org
-
-   * Rebuilt for python2
-
-2009-08-06  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Updated to: 1.9.1
-
-2009-08-03  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Adding the examples folder
-
-2009-08-01  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Updated for x86_64: 1.9.0
-
-2008-08-06  Eric Belanger  e...@archlinux.org
-
-   * python-pygame 1.8.1-2
-   * Fixed file permissions (close FS#11082)
-
-2008-07-31  Douglas Soares de Andrade  doug...@archlinux.org
-
-   * Updated for i686: 1.8.1
-
-2008-03-31  Eric Belanger  e...@archlinux.org
-
-   * python-pygame 1.8.0-1
-   * Upstream update
-   * Added ChangeLog

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-19 03:44:40 UTC (rev 153734)
+++ extra-i686/PKGBUILD 2012-03-19 03:45:07 UTC (rev 153735)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Angel Velasquez an...@archlinux.org 
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-# Contributor: Eric Belanger e...@archlinux.org
-# Contributor: john(?)
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-pkgname=python-pygame
-pkgver=1.9.1
-pkgrel=4
-pkgdesc=Python game library
-arch=('i686' 'x86_64')
-url=http://www.pygame.org/;
-license=('LGPL')
-depends=('sdl_mixer' 'libvorbis' 'sdl_ttf' 'sdl_image' 'smpeg')
-makedepends=('python2' 'portmidi') 
-replaces=('pygame')
-provides=('pygame')
-changelog=ChangeLog
-source=(http://pygame.org/ftp/pygame-${pkgver}release.tar.gz 'config.patch'
-'pygame-v4l.patch')
-md5sums=('1c4cdc708d17c8250a2d78ef997222fc'
- 'aaa668f3cd710d8604114501ea6a6f48'
- '9915b63865c16519e80007909beed876')
-
-build() {
-   cd ${srcdir}/pygame-${pkgver}release
-   patch -Np0 -i ${srcdir}/config.patch
-patch -Np1 -i ${srcdir}/pygame-v4l.patch
-}
-
-package() {
-   cd ${srcdir}/pygame-${pkgver}release
-   python2 config.py -auto
-   python2 setup.py install --root=${pkgdir} --prefix=/usr
-   # Copying the examples and tests
-   cp -R examples lib/* ${pkgdir}/usr/lib/python2.7/site-packages/pygame
-   cp -R test/* ${pkgdir}/usr/lib/python2.7/site-packages/pygame/tests
-   # Fixing permissions
-   chmod 644 ${pkgdir}/usr/include/python2.7/pygame/*
-}

Copied: python-pygame/repos/extra-i686/PKGBUILD (from rev 153734, 
python-pygame/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-19 03:45:07 UTC (rev 153735)
@@ -0,0 +1,37 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=python-pygame
+pkgver=1.9.1
+pkgrel=5
+pkgdesc=Python game library
+arch=('i686' 'x86_64')
+url=http://www.pygame.org/;
+license=('LGPL')
+depends=('sdl_mixer' 'sdl_ttf' 'sdl_image' 'python2' 'portmidi')

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

2012-03-18 Thread Eric Bélanger
Date: Monday, March 19, 2012 @ 00:13:42
  Author: eric
Revision: 153736

upgpkg: liferea 1.8.2-1

Upstream update

Modified:
  liferea/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-19 03:45:07 UTC (rev 153735)
+++ PKGBUILD2012-03-19 04:13:42 UTC (rev 153736)
@@ -2,7 +2,7 @@
 # Maintainer: Eric Bélanger e...@archlinux.org
 
 pkgname=liferea
-pkgver=1.8.1b
+pkgver=1.8.2
 pkgrel=1
 pkgdesc=A desktop news aggregator for online news feeds and weblogs
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 options=('!libtool' '!emptydirs')
 install=liferea.install
 
source=(http://downloads.sourceforge.net/sourceforge/liferea/liferea-${pkgver}.tar.gz)
-sha1sums=('2e4e11561644f1846ed123d30df52b3cdae24bd3')
+sha1sums=('43b60c1df62c72b06c26a292eb0c4835d3932b3a')
 
 build() {
   cd ${srcdir}/liferea-${pkgver}



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

2012-03-18 Thread Eric Bélanger
Date: Monday, March 19, 2012 @ 00:13:56
  Author: eric
Revision: 153737

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

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

--+
 extra-i686/PKGBUILD  |   62 -
 extra-i686/liferea.install   |   44 ++---
 extra-x86_64/PKGBUILD|   62 -
 extra-x86_64/liferea.install |   44 ++---
 4 files changed, 106 insertions(+), 106 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-03-19 04:13:42 UTC (rev 153736)
+++ extra-i686/PKGBUILD 2012-03-19 04:13:56 UTC (rev 153737)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=liferea
-pkgver=1.8.1b
-pkgrel=1
-pkgdesc=A desktop news aggregator for online news feeds and weblogs
-arch=('i686' 'x86_64')
-url=http://liferea.sourceforge.net/;
-license=('GPL')
-depends=('gconf' 'libwebkit' 'libnotify' 'libunique' 'json-glib' 
'hicolor-icon-theme')
-makedepends=('intltool')
-options=('!libtool' '!emptydirs')
-install=liferea.install
-source=(http://downloads.sourceforge.net/sourceforge/liferea/liferea-${pkgver}.tar.gz)
-sha1sums=('2e4e11561644f1846ed123d30df52b3cdae24bd3')
-
-build() {
-  cd ${srcdir}/liferea-${pkgver}
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-schemas-install
-  make
-}
-
-package() {
-  cd ${srcdir}/liferea-${pkgver}
-  make DESTDIR=${pkgdir} install
-  
-  install -d ${pkgdir}/usr/share/gconf/schemas
-  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
${pkgdir}/etc/gconf/schemas/*.schemas
-  rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
-}

Copied: liferea/repos/extra-i686/PKGBUILD (from rev 153736, 
liferea/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-03-19 04:13:56 UTC (rev 153737)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=liferea
+pkgver=1.8.2
+pkgrel=1
+pkgdesc=A desktop news aggregator for online news feeds and weblogs
+arch=('i686' 'x86_64')
+url=http://liferea.sourceforge.net/;
+license=('GPL')
+depends=('gconf' 'libwebkit' 'libnotify' 'libunique' 'json-glib' 
'hicolor-icon-theme')
+makedepends=('intltool')
+options=('!libtool' '!emptydirs')
+install=liferea.install
+source=(http://downloads.sourceforge.net/sourceforge/liferea/liferea-${pkgver}.tar.gz)
+sha1sums=('43b60c1df62c72b06c26a292eb0c4835d3932b3a')
+
+build() {
+  cd ${srcdir}/liferea-${pkgver}
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--disable-schemas-install
+  make
+}
+
+package() {
+  cd ${srcdir}/liferea-${pkgver}
+  make DESTDIR=${pkgdir} install
+  
+  install -d ${pkgdir}/usr/share/gconf/schemas
+  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
${pkgdir}/etc/gconf/schemas/*.schemas
+  rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
+}

Deleted: extra-i686/liferea.install
===
--- extra-i686/liferea.install  2012-03-19 04:13:42 UTC (rev 153736)
+++ extra-i686/liferea.install  2012-03-19 04:13:56 UTC (rev 153737)
@@ -1,22 +0,0 @@
-pkgname=liferea
-
-post_install() {
-  usr/sbin/gconfpkg --install ${pkgname}
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}
-
-pre_upgrade() {
-  pre_remove $1
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
-  usr/sbin/gconfpkg --uninstall ${pkgname}
-}
-
-post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-}

Copied: liferea/repos/extra-i686/liferea.install (from rev 153736, 
liferea/trunk/liferea.install)
===
--- extra-i686/liferea.install  (rev 0)
+++ extra-i686/liferea.install  2012-03-19 04:13:56 UTC (rev 153737)
@@ -0,0 +1,22 @@
+pkgname=liferea
+
+post_install() {
+  usr/sbin/gconfpkg --install ${pkgname}
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}
+
+pre_upgrade() {
+  pre_remove $1
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+  usr/sbin/gconfpkg --uninstall ${pkgname}
+}
+
+post_remove() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+}

Deleted: extra-x86_64/PKGBUILD

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

2012-03-18 Thread Gaetan Bisson
Date: Monday, March 19, 2012 @ 00:14:24
  Author: bisson
Revision: 153738

fix FS#28994

Modified:
  w3m/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-03-19 04:13:56 UTC (rev 153737)
+++ PKGBUILD2012-03-19 04:14:24 UTC (rev 153738)
@@ -40,6 +40,6 @@
make DESTDIR=${pkgdir} install
 
install -d ${pkgdir}/usr/share/{doc,licenses}/${pkgname}
-   find doc/* | grep -v CVS | xargs -i install {} 
${pkgdir}/usr/share/doc/${pkgname}
+   find doc/* | grep -v CVS | xargs -i install -m644 {} 
${pkgdir}/usr/share/doc/${pkgname}
ln -s ../../doc/${pkgname}/README 
${pkgdir}/usr/share/licenses/${pkgname}
 }