[arch-commits] Commit in gvim/trunk (PKGBUILD fetch_patches.sh)

2010-02-14 Thread Daniel Griffiths
Date: Sunday, February 14, 2010 @ 03:07:37
  Author: dgriffiths
Revision: 68715

Modified:
  gvim/trunk/PKGBUILD
  gvim/trunk/fetch_patches.sh

--+
 PKGBUILD |   20 ++--
 fetch_patches.sh |   64 ++---
 2 files changed, 26 insertions(+), 58 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 00:31:31 UTC (rev 68714)
+++ PKGBUILD2010-02-14 08:07:37 UTC (rev 68715)
@@ -3,15 +3,15 @@
 
 pkgname=gvim
 _srcver=7.2
-_patchlevel=266
+_patchlevel=359
 pkgver=${_srcver}.${_patchlevel}
-pkgrel=2
+pkgrel=1
 pkgdesc=the vim text editor with advanced features enabled, such as a gui 
mode
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 license=('custom:vim')
 url=http://www.vim.org;
 depends=(vim=${pkgver} 'python' 'libxt' 'desktop-file-utils' 'gtk2')
-makedepends=('pkgconfig' 'sed' 'perl')
+makedepends=('pkgconfig' 'sed' 'perl' 'curl')
 install=${pkgname}.install
 source=(ftp://ftp.vim.org/pub/vim/unix/vim-${_srcver}.tar.bz2 \
 ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-extra.tar.gz \
@@ -19,7 +19,7 @@
 ${pkgname}.desktop fetch_patches.sh)
 md5sums=('f0901284b338e448bfd79ccca0041254' '35e04482f07c57221c9a751aaa3b8dac' 
\
  'd8884786979e0e520c112faf2e176f05' '2be104c0372dd6dae19cb7968c03cd4f' 
\
- 'df640c8196c480795fdda24c817e0f11')
+ '159d4d11ecaf85c06623a02c1f843d01')
 
 build()
 {
@@ -28,6 +28,7 @@
   # pull in patches from vim.org (or the src cache alternatively)
   . ${srcdir}/fetch_patches.sh
   get_patches || return 1
+
   cd ${srcdir}/${_versiondir}
# define the place for the global (g)vimrc file (set to /etc/vimrc)
   sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*\) .*$|\1|' src/feature.h
@@ -36,8 +37,13 @@
 --with-x=yes --disable-gpm --enable-gui=gtk2 \
 --enable-multibyte --enable-cscope --enable-netbeans \
 --enable-perlinterp --enable-pythoninterp --disable-rubyinterp
+
   make || return 1
-   # install everything first ...
+}
+
+package() {
+  _versiondir=vim$(echo ${_srcver} | sed s/\.//)
+  cd ${srcdir}/${_versiondir}
   make VIMRCLOC=/etc DESTDIR=${pkgdir} install
 
# ... and clean up what vim already has for us
@@ -65,7 +71,7 @@
   rm -rf ${pkgdir}/usr/share/vim
# freedesktop links
   install -D -m644 ${srcdir}/${pkgname}.desktop \
-${startdir}/pkg/usr/share/applications/gvim.desktop
+${pkgdir}/usr/share/applications/gvim.desktop
   install -D -m644 ${srcdir}/${_versiondir}/runtime/vim48x48.png \
 ${pkgdir}/usr/share/pixmaps/gvim.png
 }

Modified: fetch_patches.sh
===
--- fetch_patches.sh2010-02-14 00:31:31 UTC (rev 68714)
+++ fetch_patches.sh2010-02-14 08:07:37 UTC (rev 68715)
@@ -1,67 +1,29 @@
 # the external logic for pulling in patches
 
 get_patches() {
-  _patchdir=${srcdir}/patches
-  cd ${srcdir}/vim$(echo ${_srcver} | sed s/\.//)
-  if [ -d ${_patchdir} ]; then
-rm -rf ${_patchdir}
-echo -e \tremove patches from old build
-  fi
-  mkdir ${_patchdir}  cd ${_patchdir}
-  _rpath=ftp://ftp.vim.org/pub/vim/patches/${_srcver}
 
-  # change IFS to loop line-by-line
-  _OLDIFS=$IFS
-  IFS=
-
-  echo -e \tfetching checksumfile for patches
-  wget ${_rpath}/MD5SUMS /dev/null 21
+  curl ftp://ftp.vim.org/pub/vim/patches/${_srcver}/MD5SUMS | sed -e \
+'/.gz$/d'  MD5SUMS
+  let _patchlevel=$_patchlevel+1
+  _currpatch=$(cat MD5SUMS | wc -l)
+  sed -i ${_patchlevel},\$d MD5SUMS
+  cat MD5SUMS | awk '{ print $2 }' | sed -e \
+s|^|ftp://ftp.vim.org/pub/vim/patches/${_srcver}/| | \
+xargs -P 0 -r -n 1 wget -nv
+  md5sum -c MD5SUMS  /dev/null || return 1
+  for file in $(cat MD5SUMS | awk '{ print $2 }')
+do patch -p0  $file  vim.full.patch.log; done
 
-  downloads=0
-  for _line in $(/bin/cat MD5SUMS); do
-_file=$(echo $_line | cut -d ' ' -f3)
-[ ${_file##*.} == gz ]  continue
-downloads=$((${downloads} + 1))
-_md5=$(echo $_line | cut -d ' ' -f1)
-if [ -f ${SRCDEST}/vim-${_srcver}/${_file} ]; then
-  echo -e \thaving patch file:${_file}
-  cp ${SRCDEST}/vim-${_srcver}/${_file} ./
-else
-  echo -n -e \t... fetching patch file: ${_file} ...
-  wget ${_rpath}/${_file} /dev/null 21
-  if [ -w ${SRCDEST} ]; then
-if [ ! -d ${SRCDEST}/vim-${_srcver} ]; then
-  mkdir -p ${SRCDEST}/vim-${_srcver}
-fi
-cp ${_file} ${SRCDEST}/vim-${_srcver}/
-echo  done!
-  fi
-fi
-
-if [ $(echo ${_md5}  ${_file} | md5sum --status -c -) ]; then
-  echo ${_file} md5sums do not match
-  return 1
-fi
-  done
-
   
 
-  if [ ${downloads} != ${_patchlevel} ]; then
+  if [ ${_patchlevel} -le ${_currpatch} ]; then
 echo 
 echo -e \t\tWARNING!
 echo You are not building the latest available version! A newer 
patchlevel
 echo seems to be available. Please edit the PKGBUILD and add the 

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

2010-02-14 Thread Daniel Griffiths
Date: Sunday, February 14, 2010 @ 03:07:52
  Author: dgriffiths
Revision: 68716

Merged revisions 68715 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/gvim/trunk


  r68715 | dgriffiths | 2010-02-14 02:07:37 -0600 (Sun, 14 Feb 2010) | 1 line


Modified:
  gvim/repos/extra-i686/(properties)
  gvim/repos/extra-i686/PKGBUILD
  gvim/repos/extra-i686/fetch_patches.sh

--+
 PKGBUILD |   20 ++--
 fetch_patches.sh |   64 ++---
 2 files changed, 26 insertions(+), 58 deletions(-)


Property changes on: gvim/repos/extra-i686
___
Modified: svnmerge-integrated
   - /gvim/trunk:1-53532
   + /gvim/trunk:1-68715

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2010-02-14 08:07:37 UTC (rev 68715)
+++ extra-i686/PKGBUILD 2010-02-14 08:07:52 UTC (rev 68716)
@@ -3,15 +3,15 @@
 
 pkgname=gvim
 _srcver=7.2
-_patchlevel=266
+_patchlevel=359
 pkgver=${_srcver}.${_patchlevel}
-pkgrel=2
+pkgrel=1
 pkgdesc=the vim text editor with advanced features enabled, such as a gui 
mode
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 license=('custom:vim')
 url=http://www.vim.org;
 depends=(vim=${pkgver} 'python' 'libxt' 'desktop-file-utils' 'gtk2')
-makedepends=('pkgconfig' 'sed' 'perl')
+makedepends=('pkgconfig' 'sed' 'perl' 'curl')
 install=${pkgname}.install
 source=(ftp://ftp.vim.org/pub/vim/unix/vim-${_srcver}.tar.bz2 \
 ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-extra.tar.gz \
@@ -19,7 +19,7 @@
 ${pkgname}.desktop fetch_patches.sh)
 md5sums=('f0901284b338e448bfd79ccca0041254' '35e04482f07c57221c9a751aaa3b8dac' 
\
  'd8884786979e0e520c112faf2e176f05' '2be104c0372dd6dae19cb7968c03cd4f' 
\
- 'df640c8196c480795fdda24c817e0f11')
+ '159d4d11ecaf85c06623a02c1f843d01')
 
 build()
 {
@@ -28,6 +28,7 @@
   # pull in patches from vim.org (or the src cache alternatively)
   . ${srcdir}/fetch_patches.sh
   get_patches || return 1
+
   cd ${srcdir}/${_versiondir}
# define the place for the global (g)vimrc file (set to /etc/vimrc)
   sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*\) .*$|\1|' src/feature.h
@@ -36,8 +37,13 @@
 --with-x=yes --disable-gpm --enable-gui=gtk2 \
 --enable-multibyte --enable-cscope --enable-netbeans \
 --enable-perlinterp --enable-pythoninterp --disable-rubyinterp
+
   make || return 1
-   # install everything first ...
+}
+
+package() {
+  _versiondir=vim$(echo ${_srcver} | sed s/\.//)
+  cd ${srcdir}/${_versiondir}
   make VIMRCLOC=/etc DESTDIR=${pkgdir} install
 
# ... and clean up what vim already has for us
@@ -65,7 +71,7 @@
   rm -rf ${pkgdir}/usr/share/vim
# freedesktop links
   install -D -m644 ${srcdir}/${pkgname}.desktop \
-${startdir}/pkg/usr/share/applications/gvim.desktop
+${pkgdir}/usr/share/applications/gvim.desktop
   install -D -m644 ${srcdir}/${_versiondir}/runtime/vim48x48.png \
 ${pkgdir}/usr/share/pixmaps/gvim.png
 }

Modified: extra-i686/fetch_patches.sh
===
--- extra-i686/fetch_patches.sh 2010-02-14 08:07:37 UTC (rev 68715)
+++ extra-i686/fetch_patches.sh 2010-02-14 08:07:52 UTC (rev 68716)
@@ -1,67 +1,29 @@
 # the external logic for pulling in patches
 
 get_patches() {
-  _patchdir=${srcdir}/patches
-  cd ${srcdir}/vim$(echo ${_srcver} | sed s/\.//)
-  if [ -d ${_patchdir} ]; then
-rm -rf ${_patchdir}
-echo -e \tremove patches from old build
-  fi
-  mkdir ${_patchdir}  cd ${_patchdir}
-  _rpath=ftp://ftp.vim.org/pub/vim/patches/${_srcver}
 
-  # change IFS to loop line-by-line
-  _OLDIFS=$IFS
-  IFS=
-
-  echo -e \tfetching checksumfile for patches
-  wget ${_rpath}/MD5SUMS /dev/null 21
+  curl ftp://ftp.vim.org/pub/vim/patches/${_srcver}/MD5SUMS | sed -e \
+'/.gz$/d'  MD5SUMS
+  let _patchlevel=$_patchlevel+1
+  _currpatch=$(cat MD5SUMS | wc -l)
+  sed -i ${_patchlevel},\$d MD5SUMS
+  cat MD5SUMS | awk '{ print $2 }' | sed -e \
+s|^|ftp://ftp.vim.org/pub/vim/patches/${_srcver}/| | \
+xargs -P 0 -r -n 1 wget -nv
+  md5sum -c MD5SUMS  /dev/null || return 1
+  for file in $(cat MD5SUMS | awk '{ print $2 }')
+do patch -p0  $file  vim.full.patch.log; done
 
-  downloads=0
-  for _line in $(/bin/cat MD5SUMS); do
-_file=$(echo $_line | cut -d ' ' -f3)
-[ ${_file##*.} == gz ]  continue
-downloads=$((${downloads} + 1))
-_md5=$(echo $_line | cut -d ' ' -f1)
-if [ -f ${SRCDEST}/vim-${_srcver}/${_file} ]; then
-  echo -e \thaving patch file:${_file}
-  cp ${SRCDEST}/vim-${_srcver}/${_file} ./
-else
-  echo -n -e \t... fetching patch file: ${_file} ...
-  wget ${_rpath}/${_file} /dev/null 21
-  if [ -w ${SRCDEST} ]; then
-if [ ! -d ${SRCDEST}/vim-${_srcver} ]; then
-  mkdir -p ${SRCDEST}/vim-${_srcver}
-fi
-cp 

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

2010-02-14 Thread Daniel Griffiths
Date: Sunday, February 14, 2010 @ 03:08:09
  Author: dgriffiths
Revision: 68717

Merged revisions 68715 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/gvim/trunk


  r68715 | dgriffiths | 2010-02-14 02:07:37 -0600 (Sun, 14 Feb 2010) | 1 line


Modified:
  gvim/repos/extra-x86_64/  (properties)
  gvim/repos/extra-x86_64/PKGBUILD
  gvim/repos/extra-x86_64/fetch_patches.sh

--+
 PKGBUILD |   20 ++--
 fetch_patches.sh |   64 ++---
 2 files changed, 26 insertions(+), 58 deletions(-)


Property changes on: gvim/repos/extra-x86_64
___
Modified: svnmerge-integrated
   - /gvim/trunk:1-53601
   + /gvim/trunk:1-68716

Modified: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2010-02-14 08:07:52 UTC (rev 68716)
+++ extra-x86_64/PKGBUILD   2010-02-14 08:08:09 UTC (rev 68717)
@@ -3,15 +3,15 @@
 
 pkgname=gvim
 _srcver=7.2
-_patchlevel=266
+_patchlevel=359
 pkgver=${_srcver}.${_patchlevel}
-pkgrel=2
+pkgrel=1
 pkgdesc=the vim text editor with advanced features enabled, such as a gui 
mode
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 license=('custom:vim')
 url=http://www.vim.org;
 depends=(vim=${pkgver} 'python' 'libxt' 'desktop-file-utils' 'gtk2')
-makedepends=('pkgconfig' 'sed' 'perl')
+makedepends=('pkgconfig' 'sed' 'perl' 'curl')
 install=${pkgname}.install
 source=(ftp://ftp.vim.org/pub/vim/unix/vim-${_srcver}.tar.bz2 \
 ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-extra.tar.gz \
@@ -19,7 +19,7 @@
 ${pkgname}.desktop fetch_patches.sh)
 md5sums=('f0901284b338e448bfd79ccca0041254' '35e04482f07c57221c9a751aaa3b8dac' 
\
  'd8884786979e0e520c112faf2e176f05' '2be104c0372dd6dae19cb7968c03cd4f' 
\
- 'df640c8196c480795fdda24c817e0f11')
+ '159d4d11ecaf85c06623a02c1f843d01')
 
 build()
 {
@@ -28,6 +28,7 @@
   # pull in patches from vim.org (or the src cache alternatively)
   . ${srcdir}/fetch_patches.sh
   get_patches || return 1
+
   cd ${srcdir}/${_versiondir}
# define the place for the global (g)vimrc file (set to /etc/vimrc)
   sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*\) .*$|\1|' src/feature.h
@@ -36,8 +37,13 @@
 --with-x=yes --disable-gpm --enable-gui=gtk2 \
 --enable-multibyte --enable-cscope --enable-netbeans \
 --enable-perlinterp --enable-pythoninterp --disable-rubyinterp
+
   make || return 1
-   # install everything first ...
+}
+
+package() {
+  _versiondir=vim$(echo ${_srcver} | sed s/\.//)
+  cd ${srcdir}/${_versiondir}
   make VIMRCLOC=/etc DESTDIR=${pkgdir} install
 
# ... and clean up what vim already has for us
@@ -65,7 +71,7 @@
   rm -rf ${pkgdir}/usr/share/vim
# freedesktop links
   install -D -m644 ${srcdir}/${pkgname}.desktop \
-${startdir}/pkg/usr/share/applications/gvim.desktop
+${pkgdir}/usr/share/applications/gvim.desktop
   install -D -m644 ${srcdir}/${_versiondir}/runtime/vim48x48.png \
 ${pkgdir}/usr/share/pixmaps/gvim.png
 }

Modified: extra-x86_64/fetch_patches.sh
===
--- extra-x86_64/fetch_patches.sh   2010-02-14 08:07:52 UTC (rev 68716)
+++ extra-x86_64/fetch_patches.sh   2010-02-14 08:08:09 UTC (rev 68717)
@@ -1,67 +1,29 @@
 # the external logic for pulling in patches
 
 get_patches() {
-  _patchdir=${srcdir}/patches
-  cd ${srcdir}/vim$(echo ${_srcver} | sed s/\.//)
-  if [ -d ${_patchdir} ]; then
-rm -rf ${_patchdir}
-echo -e \tremove patches from old build
-  fi
-  mkdir ${_patchdir}  cd ${_patchdir}
-  _rpath=ftp://ftp.vim.org/pub/vim/patches/${_srcver}
 
-  # change IFS to loop line-by-line
-  _OLDIFS=$IFS
-  IFS=
-
-  echo -e \tfetching checksumfile for patches
-  wget ${_rpath}/MD5SUMS /dev/null 21
+  curl ftp://ftp.vim.org/pub/vim/patches/${_srcver}/MD5SUMS | sed -e \
+'/.gz$/d'  MD5SUMS
+  let _patchlevel=$_patchlevel+1
+  _currpatch=$(cat MD5SUMS | wc -l)
+  sed -i ${_patchlevel},\$d MD5SUMS
+  cat MD5SUMS | awk '{ print $2 }' | sed -e \
+s|^|ftp://ftp.vim.org/pub/vim/patches/${_srcver}/| | \
+xargs -P 0 -r -n 1 wget -nv
+  md5sum -c MD5SUMS  /dev/null || return 1
+  for file in $(cat MD5SUMS | awk '{ print $2 }')
+do patch -p0  $file  vim.full.patch.log; done
 
-  downloads=0
-  for _line in $(/bin/cat MD5SUMS); do
-_file=$(echo $_line | cut -d ' ' -f3)
-[ ${_file##*.} == gz ]  continue
-downloads=$((${downloads} + 1))
-_md5=$(echo $_line | cut -d ' ' -f1)
-if [ -f ${SRCDEST}/vim-${_srcver}/${_file} ]; then
-  echo -e \thaving patch file:${_file}
-  cp ${SRCDEST}/vim-${_srcver}/${_file} ./
-else
-  echo -n -e \t... fetching patch file: ${_file} ...
-  wget ${_rpath}/${_file} /dev/null 21
-  if [ -w ${SRCDEST} ]; then
-if [ ! -d ${SRCDEST}/vim-${_srcver} ]; then
-  mkdir -p 

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

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 04:19:20
  Author: pierre
Revision: 68718

remove non-safe regexp

Somehow \s* matches differently when using a non-utf8 locale

Modified:
  filesystem/trunk/PKGBUILD
  filesystem/trunk/filesystem.install

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 08:08:09 UTC (rev 68717)
+++ PKGBUILD2010-02-14 09:19:20 UTC (rev 68718)
@@ -4,7 +4,7 @@
 
 pkgname=filesystem
 pkgver=2010.02
-pkgrel=2
+pkgrel=3
 pkgdesc=Base filesystem
 arch=('any')
 license=('GPL')

Modified: filesystem.install
===
--- filesystem.install  2010-02-14 08:08:09 UTC (rev 68717)
+++ filesystem.install  2010-02-14 09:19:20 UTC (rev 68718)
@@ -62,6 +62,6 @@
 usr/sbin/groupadd -g 24 rfkill /dev/null
   fi
 
-  grep -q '^\s*include\s*/etc/ld.so.conf.d/\*.conf\s*$' etc/ld.so.conf \
+  grep -q '^include /etc/ld.so.conf.d/\*.conf$' etc/ld.so.conf \
 || echo 'include /etc/ld.so.conf.d/*.conf'  etc/ld.so.conf
 }



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

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 04:19:26
  Author: pierre
Revision: 68719

archrelease: remove testing-any

Deleted:
  filesystem/repos/testing-any/



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

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 04:19:42
  Author: pierre
Revision: 68720

archrelease: copy trunk to testing-any

Added:
  filesystem/repos/testing-any/



[arch-commits] Commit in nvidia-173xx/repos (extra-x86_64)

2010-02-14 Thread Tobias Powalowski
Date: Sunday, February 14, 2010 @ 04:45:25
  Author: tpowa
Revision: 68726

archrelease: copy trunk to extra-x86_64

Added:
  nvidia-173xx/repos/extra-x86_64/



[arch-commits] Commit in mkinitcpio-nfs-utils/repos (testing-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 05:45:15
  Author: thomas
Revision: 68751

archrelease: remove testing-x86_64

Deleted:
  mkinitcpio-nfs-utils/repos/testing-x86_64/



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

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 05:56:55
  Author: thomas
Revision: 68754

archrelease: remove testing-any

Deleted:
  mkinitcpio/repos/testing-any/



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

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 05:57:02
  Author: thomas
Revision: 68755

archrelease: copy trunk to testing-any

Added:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in nano/repos (core-x86_64 testing-x86_64)

2010-02-14 Thread andyrtr
Date: Sunday, February 14, 2010 @ 06:03:21
  Author: andyrtr
Revision: 68760

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

Added:
  nano/repos/core-x86_64/
Deleted:
  nano/repos/testing-x86_64/



[arch-commits] Commit in nano/repos (core-i686)

2010-02-14 Thread andyrtr
Date: Sunday, February 14, 2010 @ 06:03:33
  Author: andyrtr
Revision: 68763

db-move: nano removed by andyrtr for move to core

Deleted:
  nano/repos/core-i686/



[arch-commits] Commit in filesystem/repos (core-any)

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 06:04:18
  Author: pierre
Revision: 68767

db-move: filesystem removed by pierre for move to core

Deleted:
  filesystem/repos/core-any/



[arch-commits] Commit in filesystem/repos (core-any testing-any)

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 06:04:19
  Author: pierre
Revision: 68768

db-move: moved filesystem from [testing] to [core] (any)

Added:
  filesystem/repos/core-any/
Deleted:
  filesystem/repos/testing-any/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 06:04:53
  Author: jgc
Revision: 68769

upgpkg: gtk-engines 2.19.0-1
Update to 2.19.0

Modified:
  gtk-engines/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 11:04:19 UTC (rev 68768)
+++ PKGBUILD2010-02-14 11:04:53 UTC (rev 68769)
@@ -2,19 +2,19 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gtk-engines
-pkgver=2.18.5
+pkgver=2.19.0
 pkgrel=1
 pkgdesc=Theme engines for GTK+ 2
 arch=(i686 x86_64)
 license=('GPL' 'LGPL')
-depends=('gtk2=2.18.6')
+depends=('gtk2=2.19.5')
 makedepends=('pkgconfig' 'intltool')
 options=('!libtool')
 url=http://live.gnome.org/GnomeArt;
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.18/${pkgname}-${pkgver}.tar.bz2)
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.19/${pkgname}-${pkgver}.tar.bz2)
 conflicts=('lighthouse-gtk2' 'clearlooks-gtk2')
 replaces=('lighthouse-gtk2')
-sha256sums=('494db7876b8c69b760c097493e4c3566a71231c54a90eaa6ef9529884e2a9f12')
+sha256sums=('9d22617d87d10c1529e3786b17bfc560615d8c21b7ce7d84b27ea492ffe7944a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in gtk-engines/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 06:05:02
  Author: jgc
Revision: 68770

archrelease: copy trunk to gnome-unstable-i686

Added:
  gtk-engines/repos/gnome-unstable-i686/



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

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 06:17:52
  Author: pierre
Revision: 68772

db-move: devtools removed by pierre for move to extra

Deleted:
  devtools/repos/extra-any/



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

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 06:17:54
  Author: pierre
Revision: 68773

db-move: moved devtools from [testing] to [extra] (any)

Added:
  devtools/repos/extra-any/
Deleted:
  devtools/repos/testing-any/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 06:20:43
  Author: jgc
Revision: 68774

upgpkg: seahorse 2.29.90-1
Update to 2.29.90

Modified:
  seahorse/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 11:17:54 UTC (rev 68773)
+++ PKGBUILD2010-02-14 11:20:43 UTC (rev 68774)
@@ -3,20 +3,20 @@
 # Contributor: Michel Brabants michel.li...@tiscali.be
 
 pkgname=seahorse
-pkgver=2.28.1
+pkgver=2.29.90
 pkgrel=1
 pkgdesc=GNOME application for managing PGP keys.
 arch=(i686 x86_64)
 license=('GPL')
 url=http://seahorse.sourceforge.net/;
-depends=('gnome-keyring=2.28.1' 'avahi=0.6.25' 'libnotify=0.4.5' 
'libsoup=2.28.0' 'gpgme=1.2.0' 'desktop-file-utils' 'hicolor-icon-theme')
+depends=('libgnome-keyring=2.29.4' 'avahi=0.6.25' 'libnotify=0.4.5' 
'libsoup=2.29.90' 'gpgme=1.2.0' 'desktop-file-utils' 'hicolor-icon-theme')
 makedepends=('gettext' 'libldap' 'intltool' 'pkgconfig' 
'gnome-doc-utils=0.18.0' 'openssh' 'libsm')
 options=('!libtool' '!emptydirs')
 groups=('gnome-extra')
 replaces=('gnome-keyring-manager')
 install=seahorse.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/seahorse/2.28/seahorse-${pkgver}.tar.bz2)
-sha256sums=('67a1ae5eaceca6306a6a740c8753c5a6c4b511cfbf8a8031a78ae61297ced0a0')
+source=(http://ftp.gnome.org/pub/GNOME/sources/seahorse/2.29/seahorse-${pkgver}.tar.bz2)
+sha256sums=('470ddaf6e6a4f0747640f99ba6bfe72983ea3bee39c1c46f51d06091a7e3ef43')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in seahorse/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 06:21:08
  Author: jgc
Revision: 68775

archrelease: copy trunk to gnome-unstable-i686

Added:
  seahorse/repos/gnome-unstable-i686/



[arch-commits] Commit in seahorse/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 06:21:31
  Author: jgc
Revision: 68776

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  seahorse/repos/gnome-unstable-x86_64/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 07:11:27
  Author: jgc
Revision: 68777

upgpkg: pygobject 2.21.1-1
Update to 2.21.1

Modified:
  pygobject/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 11:21:31 UTC (rev 68776)
+++ PKGBUILD2010-02-14 12:11:27 UTC (rev 68777)
@@ -2,16 +2,16 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=pygobject
-pkgver=2.20.0
+pkgver=2.21.1
 pkgrel=1
 pkgdesc=Python bindings for GObject
 arch=(i686 x86_64)
 license=('LGPL')
-depends=('python=2.6.1' 'glib2=2.22.0')
-source=(http://ftp.gnome.org/pub/gnome/sources/pygobject/2.20/${pkgname}-${pkgver}.tar.bz2)
+depends=('python=2.6.4' 'glib2=2.23.3' 'libffi=3.0.8')
+source=(http://ftp.gnome.org/pub/gnome/sources/pygobject/2.21/${pkgname}-${pkgver}.tar.bz2)
 options=('!libtool')
 url=http://www.pygtk.org/;
-sha256sums=('41e923a3f4426a3e19f6d154c424e3dac6f39defca77af602ac6272ce270fa81')
+sha256sums=('e6ae6c70966899d2040c82ae4e1590cf941ebf121a3ec61e80bf517ce8d9be0a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in pygobject/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 07:11:37
  Author: jgc
Revision: 68778

archrelease: copy trunk to gnome-unstable-i686

Added:
  pygobject/repos/gnome-unstable-i686/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 07:47:21
  Author: jgc
Revision: 68780

upgpkg: pygtk 2.17.0-1
Update to 2.17.0

Modified:
  pygtk/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 12:11:47 UTC (rev 68779)
+++ PKGBUILD2010-02-14 12:47:21 UTC (rev 68780)
@@ -3,18 +3,18 @@
 # Contributor: Sarah Hay sarah...@mb.sympatico.ca
 
 pkgname=pygtk
-pkgver=2.16.0
-pkgrel=2
+pkgver=2.17.0
+pkgrel=1
 pkgdesc=Python bindings for the GTK widget set
 arch=('i686' 'x86_64')
 license=('LGPL')
-depends=('libglade=2.6.4' 'pycairo=1.8.6' 'pygobject=2.20.0')
+depends=('libglade=2.6.4' 'pycairo=1.8.8' 'pygobject=2.21.1')
 makedepends=('python-numpy')
 optdepends=('python-numpy')
 options=('!libtool')
 url=http://www.pygtk.org/;
-source=(http://ftp.gnome.org/pub/gnome/sources/pygtk/2.16/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('7fae5e01af217a01738eae41c38ad7f86d1f538f444300d0fa2847aafb7444a8')
+source=(http://ftp.gnome.org/pub/gnome/sources/pygtk/2.17/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('6a61817a2e765c6209c72ecdf44389ec134c1ebed1d842408bf001c9321f1400')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in pygtk/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 07:53:04
  Author: jgc
Revision: 68783

archrelease: remove gnome-unstable-x86_64

Deleted:
  pygtk/repos/gnome-unstable-x86_64/



[arch-commits] Commit in pygtk/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 07:53:10
  Author: jgc
Revision: 68784

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  pygtk/repos/gnome-unstable-x86_64/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 07:59:33
  Author: jgc
Revision: 68785

upgpkg: pygtksourceview2 2.9.1-1
Update to 2.9.1

Modified:
  pygtksourceview2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 12:53:10 UTC (rev 68784)
+++ PKGBUILD2010-02-14 12:59:33 UTC (rev 68785)
@@ -2,17 +2,17 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=pygtksourceview2
-pkgver=2.8.0
+pkgver=2.9.1
 pkgrel=1
 pkgdesc=Python bindings for gtksourceview2
 arch=(i686 x86_64)
 license=('GPL')
-depends=('gtksourceview2=2.8.0' 'pygtk=2.16.0')
-makedepends=('perlxml' 'pkgconfig')
+depends=('gtksourceview2=2.9.5' 'pygtk=2.17.0')
+makedepends=('intltool' 'pkgconfig')
 options=('!libtool')
 url=http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/gnome/sources/pygtksourceview/2.8/pygtksourceview-${pkgver}.tar.bz2)
-sha256sums=('27f531270b46285982573089a58a19d622174ad9a4568e12d8fa4aedbfc174da')
+source=(http://ftp.gnome.org/pub/gnome/sources/pygtksourceview/2.9/pygtksourceview-${pkgver}.tar.bz2)
+sha256sums=('0d8f0ed50400b25a33f8f02a5ab2291916c9745bc69acc6c56776ef22b259a69')
 
 build() {
   cd ${srcdir}/pygtksourceview-${pkgver}



[arch-commits] Commit in pygtksourceview2/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 07:59:40
  Author: jgc
Revision: 68786

archrelease: copy trunk to gnome-unstable-i686

Added:
  pygtksourceview2/repos/gnome-unstable-i686/



[arch-commits] Commit in gnome-python-desktop/trunk (2 files)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 08:19:47
  Author: jgc
Revision: 68788

upgpkg: gnome-python-desktop 2.29.1-1
Update to 2.29.1

Added:
  gnome-python-desktop/trunk/totem-plparser-api.patch
Modified:
  gnome-python-desktop/trunk/PKGBUILD

--+
 PKGBUILD |   15 -
 totem-plparser-api.patch |  498 +
 2 files changed, 507 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 12:59:48 UTC (rev 68787)
+++ PKGBUILD2010-02-14 13:19:47 UTC (rev 68788)
@@ -4,21 +4,24 @@
 # Contributor: Wael Nasreddine gand...@siemens-mobiles.org
 
 pkgname=gnome-python-desktop
-pkgver=2.28.0
-pkgrel=3
+pkgver=2.29.1
+pkgrel=1
 pkgdesc=Gnome Python interfaces for libraries not part of the core platform
 arch=(i686 x86_64)
 license=('GPL' 'LGPL')
-depends=('gnome-desktop=2.28.1' 'gnome-python=2.28.0')
+depends=('gnome-desktop=2.29.90' 'gnome-python=2.28.0')
 options=('!libtool')
-makedepends=('intltool' 'pkgconfig' 'gnome-media=2.28.1' 
'gnome-panel=2.28.0' 'gtksourceview=1.8.5' 'libgnomeprintui=2.18.4' 
'libgtop=2.28.0' 'totem-plparser=2.28.1' 'evince=2.28.1' 'bug-buddy=2.28.0' 
'brasero=2.28.2')
+makedepends=('intltool' 'pkgconfig' 'gnome-media=2.28.5' 
'gnome-panel=2.29.6' 'gtksourceview=1.8.5' 'libgnomeprintui=2.18.4' 
'libgtop=2.28.0' 'totem-plparser=2.29.1' 'evince=2.29.5' 'bug-buddy=2.28.0' 
'brasero=2.29.90')
 optdepends=('gnome-media' 'gnome-panel' 'gtksourceview' 'libgnomeprintui' 
'libgtop' 'totem-plparser' 'evince' 'bug-buddy' 'brasero')
 url=http://www.gnome.org;
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.28/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('92948d2dd0d03a56abe565f3c24725242251db261bd0a12aad5a742326cb3c7f')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.29/${pkgname}-${pkgver}.tar.bz2
+totem-plparser-api.patch)
+sha256sums=('7cc853f9d7cc7fdc895006abbe7a8c5bb3b27d6d4dc14d2bb09afc63fd397618'
+'2657e937801103b009a4c84777bfaa764ca847293a2ae9fcf6d946070c7f8309')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+  patch -Np1 -i ${srcdir}/totem-plparser-api.patch || return 1
   ./waf configure --prefix=/usr || return 1
   ./waf build ${MAKEFLAGS} || return 1
   ./waf install --destdir=${pkgdir} || return 1

Added: totem-plparser-api.patch
===
--- totem-plparser-api.patch(rev 0)
+++ totem-plparser-api.patch2010-02-14 13:19:47 UTC (rev 68788)
@@ -0,0 +1,498 @@
+From fa0d4db4f90d50d82ccdd6628eec91476a567a88 Mon Sep 17 00:00:00 2001
+From: Gustavo Carneiro g...@inescporto.pt
+Date: Thu, 28 Jan 2010 16:10:16 +
+Subject: Bug 608331 - totem-pl-parser doesn't build with latest totem-pl-parser
+
+---
+diff --git a/totem/plparser.defs b/totem/plparser.defs
+index 184578e..9f25ff1 100644
+--- a/totem/plparser.defs
 b/totem/plparser.defs
+@@ -1,8 +1,24 @@
+ ;; -*- scheme -*-
+ ; object definitions ...
++
++(define-object Parser
++  (in-module totem.plparser)
++  (parent GObject)
++  (c-name TotemPlParser)
++  (gtype-id TOTEM_TYPE_PL_PARSER)
++)
++
++(define-object Playlist
++  (in-module totem.playlist)
++  (parent GObject)
++  (c-name TotemPlPlaylist)
++  (gtype-id TOTEM_TYPE_PL_PLAYLIST)
++)
++
+ ;; Enumerations and flags ...
+ 
+-(define-enum ParserResult
++
++(define-enum PlParserResult
+   (in-module Totem)
+   (c-name TotemPlParserResult)
+   (gtype-id TOTEM_TYPE_PL_PARSER_RESULT)
+@@ -10,10 +26,12 @@
+ '(unhandled TOTEM_PL_PARSER_RESULT_UNHANDLED)
+ '(error TOTEM_PL_PARSER_RESULT_ERROR)
+ '(success TOTEM_PL_PARSER_RESULT_SUCCESS)
++'(ignored TOTEM_PL_PARSER_RESULT_IGNORED)
++'(cancelled TOTEM_PL_PARSER_RESULT_CANCELLED)
+   )
+ )
+ 
+-(define-enum ParserType
++(define-enum PlParserType
+   (in-module Totem)
+   (c-name TotemPlParserType)
+   (gtype-id TOTEM_TYPE_PL_PARSER_TYPE)
+@@ -21,47 +39,60 @@
+ '(pls TOTEM_PL_PARSER_PLS)
+ '(m3u TOTEM_PL_PARSER_M3U)
+ '(m3u-dos TOTEM_PL_PARSER_M3U_DOS)
++'(xspf TOTEM_PL_PARSER_XSPF)
++'(iriver-pla TOTEM_PL_PARSER_IRIVER_PLA)
+   )
+ )
+ 
+-(define-enum ParserError
++(define-enum PlParserError
+   (in-module Totem)
+   (c-name TotemPlParserError)
+   (gtype-id TOTEM_TYPE_PL_PARSER_ERROR)
+   (values
+-'(open TOTEM_PL_PARSER_ERROR_VFS_OPEN)
+-'(write TOTEM_PL_PARSER_ERROR_VFS_WRITE)
++'(no-disc TOTEM_PL_PARSER_ERROR_NO_DISC)
++'(mount-failed TOTEM_PL_PARSER_ERROR_MOUNT_FAILED)
+   )
+ )
+ 
+ 
+ ;; From totem-pl-parser.h
+ 
+-(define-object Parser
+-  (in-module PlaylistParser)
+-  (parent GObject)
+-  (c-name TotemPlParser)
+-  (gtype-id TOTEM_TYPE_PL_PARSER)
+-)
+-
+-(define-function totem_pl_parser_error_quark
++(define-function error_quark
+   (c-name totem_pl_parser_error_quark)
+   (return-type GQuark)
+ )
+ 
+-(define-function totem_pl_parser_get_type
++(define-function get_type
+   (c-name 

[arch-commits] Commit in lvm2/repos (core-i686)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:36:58
  Author: thomas
Revision: 68799

db-move: lvm2 removed by thomas for move to core

Deleted:
  lvm2/repos/core-i686/



[arch-commits] Commit in mdadm/repos (core-i686)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:37:03
  Author: thomas
Revision: 68801

db-move: mdadm removed by thomas for move to core

Deleted:
  mdadm/repos/core-i686/



[arch-commits] Commit in mdadm/repos (core-i686 testing-i686)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:37:04
  Author: thomas
Revision: 68802

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

Added:
  mdadm/repos/core-i686/
Deleted:
  mdadm/repos/testing-i686/



[arch-commits] Commit in cryptsetup/repos (core-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:37:21
  Author: thomas
Revision: 68805

db-move: cryptsetup removed by thomas for move to core

Deleted:
  cryptsetup/repos/core-x86_64/



[arch-commits] Commit in dmraid/repos (core-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:37:24
  Author: thomas
Revision: 68807

db-move: dmraid removed by thomas for move to core

Deleted:
  dmraid/repos/core-x86_64/



[arch-commits] Commit in dmraid/repos (core-x86_64 testing-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:37:25
  Author: thomas
Revision: 68808

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

Added:
  dmraid/repos/core-x86_64/
Deleted:
  dmraid/repos/testing-x86_64/



[arch-commits] Commit in v86d/repos (extra-i686 testing-i686)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:37:08
  Author: thomas
Revision: 68804

db-move: moved v86d from [testing] to [extra] (i686)

Added:
  v86d/repos/extra-i686/
Deleted:
  v86d/repos/testing-i686/



[arch-commits] Commit in lvm2/repos (core-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:37:27
  Author: thomas
Revision: 68809

db-move: lvm2 removed by thomas for move to core

Deleted:
  lvm2/repos/core-x86_64/



[arch-commits] Commit in lvm2/repos (core-x86_64 testing-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:37:29
  Author: thomas
Revision: 68810

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

Added:
  lvm2/repos/core-x86_64/
Deleted:
  lvm2/repos/testing-x86_64/



[arch-commits] Commit in mdadm/repos (core-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:37:35
  Author: thomas
Revision: 68811

db-move: mdadm removed by thomas for move to core

Deleted:
  mdadm/repos/core-x86_64/



[arch-commits] Commit in mdadm/repos (core-x86_64 testing-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:37:37
  Author: thomas
Revision: 68812

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

Added:
  mdadm/repos/core-x86_64/
Deleted:
  mdadm/repos/testing-x86_64/



[arch-commits] Commit in v86d/repos (extra-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:37:41
  Author: thomas
Revision: 68813

db-move: v86d removed by thomas for move to extra

Deleted:
  v86d/repos/extra-x86_64/



[arch-commits] Commit in mkinitcpio/repos (core-any)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:38:00
  Author: thomas
Revision: 68815

db-move: mkinitcpio removed by thomas for move to core

Deleted:
  mkinitcpio/repos/core-any/



[arch-commits] Commit in mkinitcpio/repos (core-any testing-any)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:38:01
  Author: thomas
Revision: 68816

db-move: moved mkinitcpio from [testing] to [core] (any)

Added:
  mkinitcpio/repos/core-any/
Deleted:
  mkinitcpio/repos/testing-any/



[arch-commits] Commit in klibc/repos (core-i686)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:40:33
  Author: thomas
Revision: 68817

db-remove: klibc removed by thomas

Deleted:
  klibc/repos/core-i686/



[arch-commits] Commit in klibc/repos (core-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:40:34
  Author: thomas
Revision: 68818

db-remove: klibc removed by thomas

Deleted:
  klibc/repos/core-x86_64/



[arch-commits] Commit in klibc-extras/repos (core-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:40:38
  Author: thomas
Revision: 68820

db-remove: klibc-extras removed by thomas

Deleted:
  klibc-extras/repos/core-x86_64/



[arch-commits] Commit in klibc-extras/repos (core-i686)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:40:35
  Author: thomas
Revision: 68819

db-remove: klibc-extras removed by thomas

Deleted:
  klibc-extras/repos/core-i686/



[arch-commits] Commit in klibc-kbd/repos (core-i686)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:40:39
  Author: thomas
Revision: 68821

db-remove: klibc-kbd removed by thomas

Deleted:
  klibc-kbd/repos/core-i686/



[arch-commits] Commit in klibc-kbd/repos (core-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:40:41
  Author: thomas
Revision: 68822

db-remove: klibc-kbd removed by thomas

Deleted:
  klibc-kbd/repos/core-x86_64/



[arch-commits] Commit in klibc-module-init-tools/repos (core-i686)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:40:42
  Author: thomas
Revision: 68823

db-remove: klibc-module-init-tools removed by thomas

Deleted:
  klibc-module-init-tools/repos/core-i686/



[arch-commits] Commit in klibc-module-init-tools/repos (core-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:40:44
  Author: thomas
Revision: 68824

db-remove: klibc-module-init-tools removed by thomas

Deleted:
  klibc-module-init-tools/repos/core-x86_64/



[arch-commits] Commit in klibc-udev/repos (core-x86_64)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:40:48
  Author: thomas
Revision: 68826

db-remove: klibc-udev removed by thomas

Deleted:
  klibc-udev/repos/core-x86_64/



[arch-commits] Commit in klibc-udev/repos (core-i686)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 08:40:46
  Author: thomas
Revision: 68825

db-remove: klibc-udev removed by thomas

Deleted:
  klibc-udev/repos/core-i686/



[arch-commits] Commit in (5 files)

2010-02-14 Thread Thomas Bächler
Date: Sunday, February 14, 2010 @ 09:03:28
  Author: thomas
Revision: 68827

Remove obsolete klibc stuff from subversion

Deleted:
  klibc-extras/
  klibc-kbd/
  klibc-module-init-tools/
  klibc-udev/
  klibc/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 09:14:59
  Author: jgc
Revision: 68828

upgpkg: gedit 2.29.6-1
Update to 2.29.6

Modified:
  gedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 14:03:28 UTC (rev 68827)
+++ PKGBUILD2010-02-14 14:14:59 UTC (rev 68828)
@@ -2,19 +2,19 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gedit
-pkgver=2.28.3
+pkgver=2.29.6
 pkgrel=1
 pkgdesc=A text editor for GNOME
 arch=('i686' 'x86_64')
 license=('GPL')
-depends=('gconf=2.28.0' 'pygtksourceview2=2.8.0' 'enchant=1.5.0' 
'desktop-file-utils' 'iso-codes=3.10.1' 'gtksourceview2=2.8.2' 'libsm')
+depends=('gconf=2.28.0' 'pygtksourceview2=2.9.1' 'enchant=1.5.0' 
'desktop-file-utils' 'iso-codes=3.10.1' 'libsm')
 makedepends=('pkgconfig' 'gnome-doc-utils=0.18.0' 'intltool')
 groups=('gnome-extra')
 options=('!libtool' '!emptydirs')
 url=http://www.gnome.org;
 install=gedit.install
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.28/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('59458f21850eaaf72d26d957735e728f9e9b197ca7070a1ca096d8b66313b51d')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.29/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('598ed53b2815857f8cce749667d9b7ad7adc9c477f1ea4e642cd16262de6e646')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in gedit/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 09:15:39
  Author: jgc
Revision: 68829

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  gedit/repos/gnome-unstable-x86_64/



[arch-commits] Commit in gedit/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 09:18:25
  Author: jgc
Revision: 68830

archrelease: copy trunk to gnome-unstable-i686

Added:
  gedit/repos/gnome-unstable-i686/



[arch-commits] Commit in gedit/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 09:18:29
  Author: jgc
Revision: 68831

archrelease: remove gnome-unstable-x86_64

Deleted:
  gedit/repos/gnome-unstable-x86_64/



[arch-commits] Commit in gedit/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 09:18:36
  Author: jgc
Revision: 68832

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  gedit/repos/gnome-unstable-x86_64/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 09:25:48
  Author: jgc
Revision: 68833

upgpkg: gnome-mag 0.16.0-1
Update to 0.16.0

Modified:
  gnome-mag/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 14:18:36 UTC (rev 68832)
+++ PKGBUILD2010-02-14 14:25:48 UTC (rev 68833)
@@ -2,18 +2,18 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-mag
-pkgver=0.15.9
+pkgver=0.16.0
 pkgrel=1
 pkgdesc=Gnome magnifier
 arch=(i686 x86_64)
 license=('GPL')
 url=http://www.gnome.org;
-depends=('at-spi=1.27.90')
+depends=('at-spi=1.29.90')
 makedepends=('intltool' 'pkgconfig')
 options=('!libtool')
 groups=('gnome-extra')
-source=(http://ftp.gnome.org/pub/gnome/sources/gnome-mag/0.15/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('6f921419143088587dce201afd972a60317ade269e47b0d67a38872a7615a025')
+source=(http://ftp.gnome.org/pub/gnome/sources/gnome-mag/0.16/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('15fb6a7198a707aea31d73aa95e697f857ca7435b65a8cc4bc25aa1484152c75')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in gnome-mag/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 09:25:57
  Author: jgc
Revision: 68834

archrelease: copy trunk to gnome-unstable-i686

Added:
  gnome-mag/repos/gnome-unstable-i686/



[arch-commits] Commit in gnome-mag/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 09:26:07
  Author: jgc
Revision: 68835

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  gnome-mag/repos/gnome-unstable-x86_64/



[arch-commits] Commit in gnome2-user-docs/trunk (PKGBUILD)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 09:34:14
  Author: jgc
Revision: 68836

upgpkg: gnome2-user-docs 2.29.2-1
Update to 2.29.2

Modified:
  gnome2-user-docs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 14:26:07 UTC (rev 68835)
+++ PKGBUILD2010-02-14 14:34:14 UTC (rev 68836)
@@ -2,17 +2,17 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome2-user-docs
-pkgver=2.28.2
+pkgver=2.29.2
 pkgrel=1
 pkgdesc=User documentation for GNOME2
 arch=(any)
 license=('FDL')
-depends=('yelp=2.28.0')
+depends=('yelp=2.29.0')
 url=http://www.gnome.org;
 groups=('gnome')
 options=(!makeflags)
-source=(http://ftp.gnome.org/pub/gnome/sources/gnome-user-docs/2.28/gnome-user-docs-${pkgver}.tar.bz2)
-sha256sums=('9f2c864b0c18974d7a3cc3c095778085a1628f275c1f7c434167bccf3b85f465')
+source=(http://ftp.gnome.org/pub/gnome/sources/gnome-user-docs/2.29/gnome-user-docs-${pkgver}.tar.bz2)
+sha256sums=('b2ed62ed3cbdb5becb69d58459b8924bb30bddff3aa4fd40815176a8c708536d')
 
 build() {
   cd ${srcdir}/gnome-user-docs-${pkgver}



[arch-commits] Commit in gnome2-user-docs/repos (gnome-unstable-any)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 09:35:34
  Author: jgc
Revision: 68837

archrelease: copy trunk to gnome-unstable-any

Added:
  gnome2-user-docs/repos/gnome-unstable-any/



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

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 10:15:52
  Author: pierre
Revision: 68838

upgpkg: qt3 3.3.8-15
rebuild due to FS#18238

Modified:
  qt3/trunk/PKGBUILD
  qt3/trunk/qt.install

+
 PKGBUILD   |5 -
 qt.install |7 ---
 2 files changed, 8 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 14:35:34 UTC (rev 68837)
+++ PKGBUILD2010-02-14 15:15:52 UTC (rev 68838)
@@ -4,7 +4,7 @@
 
 pkgname=qt3
 pkgver=3.3.8
-pkgrel=14
+pkgrel=15
 pkgdesc=The QT gui toolkit.
 arch=(i686 x86_64)
 license=('GPL')
@@ -112,4 +112,7 @@
   # install man pages
   mkdir -p $startdir/pkg/opt/qt/man
   cp -r $startdir/src/$pkgfqn/doc/man/{man1,man3} $startdir/pkg/opt/qt/man/
+
+  install -d -m755 ${pkgdir}/etc/ld.so.conf.d/
+  echo '/opt/qt/lib'  ${pkgdir}/etc/ld.so.conf.d/qt3.conf
 }

Modified: qt.install
===
--- qt.install  2010-02-14 14:35:34 UTC (rev 68837)
+++ qt.install  2010-02-14 15:15:52 UTC (rev 68838)
@@ -1,11 +1,12 @@
 post_install() {
-   grep -q '/opt/qt/lib' etc/ld.so.conf || echo '/opt/qt/lib'  
etc/ld.so.conf
+   post_remove
 }
 
 post_upgrade() {
-   post_install
+   post_remove
 }
 
 post_remove() {
-   sed  -ie '/\/opt\/qt\/lib/d' etc/ld.so.conf 
+   # this can be removed in future versions
+   sed  -ie '/\/opt\/qt\/lib/d' etc/ld.so.conf
 }



[arch-commits] Commit in qt3/repos (extra-i686)

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 10:17:52
  Author: pierre
Revision: 68839

archrelease: remove extra-i686

Deleted:
  qt3/repos/extra-i686/



[arch-commits] Commit in qt3/repos (extra-i686)

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 10:18:07
  Author: pierre
Revision: 68840

archrelease: copy trunk to extra-i686

Added:
  qt3/repos/extra-i686/



[arch-commits] Commit in qt3/repos (extra-x86_64)

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 10:20:01
  Author: pierre
Revision: 68841

archrelease: remove extra-x86_64

Deleted:
  qt3/repos/extra-x86_64/



[arch-commits] Commit in qt3/repos (extra-x86_64)

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 10:20:16
  Author: pierre
Revision: 68842

archrelease: copy trunk to extra-x86_64

Added:
  qt3/repos/extra-x86_64/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 10:31:10
  Author: jgc
Revision: 68843

upgpkg: gnome-themes 2.29.6-1
Update to 2.29.6

Modified:
  gnome-themes/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 15:20:16 UTC (rev 68842)
+++ PKGBUILD2010-02-14 15:31:10 UTC (rev 68843)
@@ -2,19 +2,19 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-themes
-pkgver=2.28.1
+pkgver=2.29.6
 pkgrel=1
 pkgdesc=Default themes for GNOME2
 arch=(any)
 license=('LGPL')
-depends=('gtk-engines=2.18.3' 'librsvg=2.26.0')
+depends=('gtk-engines=2.19.0' 'librsvg=2.26.0')
 makedepends=('intltool' 'icon-naming-utils')
 url=http://www.gnome.org;
 groups=('gnome')
 replaces=('gtk-thinice-engine' 'clearlooks-gtk2')
 options=(!makeflags)
-source=(http://ftp.gnome.org/pub/gnome/sources/gnome-themes/2.28/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('62396dad35acf20874a430d679e81554f8e3dcf22b8ecb85c464d060f315902e')
+source=(http://ftp.gnome.org/pub/gnome/sources/gnome-themes/2.29/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('34a363d3ad783534c0fcf40cc7990b080cf0aaf85bdce0a988e17af271519f90')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in gnome-themes/repos (gnome-unstable-any)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 10:31:24
  Author: jgc
Revision: 68844

archrelease: copy trunk to gnome-unstable-any

Added:
  gnome-themes/repos/gnome-unstable-any/



[arch-commits] Commit in seahorse-plugins/trunk (PKGBUILD gpgme-init.patch)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 11:00:29
  Author: jgc
Revision: 68845

upgpkg: seahorse-plugins 2.29.90-1
Update to 2.29.90 - update patch to fix more issues with gpgme

Modified:
  seahorse-plugins/trunk/PKGBUILD
  seahorse-plugins/trunk/gpgme-init.patch

--+
 PKGBUILD |   12 ++--
 gpgme-init.patch |   40 
 2 files changed, 42 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 15:31:24 UTC (rev 68844)
+++ PKGBUILD2010-02-14 16:00:29 UTC (rev 68845)
@@ -2,21 +2,21 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=seahorse-plugins
-pkgver=2.28.1
+pkgver=2.29.90
 pkgrel=1
 pkgdesc=Seahorse plugins
 arch=(i686 x86_64)
 license=('GPL')
-depends=('gnome-panel=2.28.0' 'seahorse=2.28.1' 'desktop-file-utils')
-makedepends=('intltool' 'gnome-doc-utils=0.18.0' 'pkgconfig' 'gedit=2.28.0' 
'nautilus=2.28.0')
+depends=('gnome-panel=2.29.6' 'seahorse=2.29.90' 'desktop-file-utils')
+makedepends=('intltool' 'gnome-doc-utils=0.18.0' 'pkgconfig' 'gedit=2.29.6' 
'nautilus=2.29.90')
 groups=('gnome-extra')
 url=http://www.gnome.org;
 options=(!libtool !emptydirs)
 install=seahorse-plugins.install
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.28/${pkgname}-${pkgver}.tar.bz2
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.29/${pkgname}-${pkgver}.tar.bz2
 gpgme-init.patch)
-sha256sums=('e04f9bba2d0527951cb15367e285d0f75de6392b140ca4183a70cec3fef7e97e'
-'58a84873173ac30e1ea6d1ebbe6debbd1339b7c985cc8a99343062437dc88936')
+sha256sums=('f39134b404ce809c869544aa4fdcc51ffb750ad514f75585ef20e90b06b8961e'
+'418d67892b348d02885e968c5299416baf545b12cf8f58b23579f79e87776ab2')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}

Modified: gpgme-init.patch
===
--- gpgme-init.patch2010-02-14 15:31:24 UTC (rev 68844)
+++ gpgme-init.patch2010-02-14 16:00:29 UTC (rev 68845)
@@ -1,7 +1,30 @@
-diff -ruN seahorse-plugins-2.28.0/plugins/nautilus/seahorse-tool.c 
seahorse-plugins-2.28.0.patched/plugins/nautilus/seahorse-tool.c
 seahorse-plugins-2.28.0/plugins/nautilus/seahorse-tool.c   2009-09-03 
13:20:15.0 +0200
-+++ seahorse-plugins-2.28.0.patched/plugins/nautilus/seahorse-tool.c   
2009-10-13 09:03:34.0 +0200
-@@ -171,6 +172,7 @@
+diff -ruN seahorse-plugins-2.29.90.orig/agent/seahorse-agent-cache.c 
seahorse-plugins-2.29.90/agent/seahorse-agent-cache.c
+--- seahorse-plugins-2.29.90.orig/agent/seahorse-agent-cache.c 2010-01-25 
03:06:50.0 +0100
 seahorse-plugins-2.29.90/agent/seahorse-agent-cache.c  2010-02-14 
12:31:01.0 +0100
+@@ -236,6 +236,7 @@
+ if (g_cache == NULL) {
+ g_cache =
+ g_hash_table_new_full (g_str_hash, g_str_equal, NULL, 
destroy_cache_item);
++gpgme_check_version (NULL);
+ 
+ err = gpgme_engine_check_version (proto);
+ g_return_if_fail (GPG_IS_OK (err));
+diff -ruN seahorse-plugins-2.29.90.orig/libseahorse/seahorse-pgp-operation.c 
seahorse-plugins-2.29.90/libseahorse/seahorse-pgp-operation.c
+--- seahorse-plugins-2.29.90.orig/libseahorse/seahorse-pgp-operation.c 
2010-01-25 03:06:50.0 +0100
 seahorse-plugins-2.29.90/libseahorse/seahorse-pgp-operation.c  
2010-02-14 12:31:25.0 +0100
+@@ -322,6 +322,8 @@
+ gpgme_protocol_t proto = GPGME_PROTOCOL_OpenPGP;
+ gpgme_error_t err;
+ gpgme_ctx_t ctx;
++
++gpgme_check_version (NULL);
+  
+ err = gpgme_engine_check_version (proto);
+ g_return_if_fail (GPG_IS_OK (err));
+diff -ruN seahorse-plugins-2.29.90.orig/plugins/nautilus/seahorse-tool.c 
seahorse-plugins-2.29.90/plugins/nautilus/seahorse-tool.c
+--- seahorse-plugins-2.29.90.orig/plugins/nautilus/seahorse-tool.c 
2010-01-25 03:06:50.0 +0100
 seahorse-plugins-2.29.90/plugins/nautilus/seahorse-tool.c  2010-02-14 
12:32:44.0 +0100
+@@ -171,6 +171,7 @@
  
  if (recips) {
  
@@ -9,3 +32,12 @@
  gerr = gpgme_new (ctx);
  g_return_val_if_fail (GPG_IS_OK (gerr), NULL);
  
+@@ -328,6 +329,8 @@
+ id = cryptui_keyset_key_raw_keyid (keyset, signer);
+ g_free (signer);
+ 
++gpgme_check_version (NULL);
++
+ gerr = gpgme_new (ctx);
+ g_return_val_if_fail (GPG_IS_OK (gerr), NULL);
+ 



[arch-commits] Commit in seahorse-plugins/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 11:00:41
  Author: jgc
Revision: 68846

archrelease: copy trunk to gnome-unstable-i686

Added:
  seahorse-plugins/repos/gnome-unstable-i686/



[arch-commits] Commit in seahorse-plugins/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 11:00:53
  Author: jgc
Revision: 68847

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  seahorse-plugins/repos/gnome-unstable-x86_64/



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

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 11:02:29
  Author: pierre
Revision: 68848

upgpkg: kdelibs3 3.5.10-10
rebuild due to FS#18238

Modified:
  kdelibs3/trunk/PKGBUILD
  kdelibs3/trunk/kdelibs3.install

--+
 PKGBUILD |5 -
 kdelibs3.install |5 +++--
 2 files changed, 7 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 16:00:53 UTC (rev 68847)
+++ PKGBUILD2010-02-14 16:02:29 UTC (rev 68848)
@@ -4,7 +4,7 @@
 
 pkgname=kdelibs3
 pkgver=3.5.10
-pkgrel=9
+pkgrel=10
 pkgdesc='KDE3 Core Libraries'
 arch=('i686' 'x86_64')
 url='http://www.kde.org'
@@ -79,4 +79,7 @@
 
# we don't have khelpcenter anyway
rm -rf $pkgdir/opt/kde/share/doc
+
+   install -d -m755 ${pkgdir}/etc/ld.so.conf.d/
+   echo '/opt/kde/lib'  ${pkgdir}/etc/ld.so.conf.d/kdelibs3.conf
 }

Modified: kdelibs3.install
===
--- kdelibs3.install2010-02-14 16:00:53 UTC (rev 68847)
+++ kdelibs3.install2010-02-14 16:02:29 UTC (rev 68848)
@@ -1,11 +1,12 @@
 post_install() {
-   grep -q '/opt/kde/lib' etc/ld.so.conf || echo '/opt/kde/lib'  
etc/ld.so.conf
+   post_remove
 }
 
 post_upgrade() {
-   post_install
+   post_remove
 }
 
 post_remove() {
+   # this can be removed in future versions
sed  -ie '/\/opt\/kde\/lib/d' etc/ld.so.conf
 }



[arch-commits] Commit in kdelibs3/repos (extra-i686)

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 11:05:52
  Author: pierre
Revision: 68849

archrelease: remove extra-i686

Deleted:
  kdelibs3/repos/extra-i686/



[arch-commits] Commit in kdelibs3/repos (extra-i686)

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 11:06:08
  Author: pierre
Revision: 68850

archrelease: copy trunk to extra-i686

Added:
  kdelibs3/repos/extra-i686/



[arch-commits] Commit in kdelibs3/repos (extra-x86_64)

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 11:09:36
  Author: pierre
Revision: 68851

archrelease: remove extra-x86_64

Deleted:
  kdelibs3/repos/extra-x86_64/



[arch-commits] Commit in kdelibs3/repos (extra-x86_64)

2010-02-14 Thread Pierre Schmitz
Date: Sunday, February 14, 2010 @ 11:09:51
  Author: pierre
Revision: 68852

archrelease: copy trunk to extra-x86_64

Added:
  kdelibs3/repos/extra-x86_64/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 11:10:38
  Author: jgc
Revision: 68853

upgpkg: tomboy 1.1.2-1
Update to 1.1.2

Modified:
  tomboy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 16:09:51 UTC (rev 68852)
+++ PKGBUILD2010-02-14 16:10:38 UTC (rev 68853)
@@ -2,19 +2,19 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=tomboy
-pkgver=1.1.0
+pkgver=1.1.2
 pkgrel=1
 pkgdesc=Desktop note-taking application for Linux and Unix
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.gnome.org/projects/tomboy/;
-depends=('gtkspell' 'gmime=2.4.9' 'ndesk-dbus-glib=0.4.1' 
'gnome-sharp=2.24.1' 'mono-addins=0.4' 'libsm' 'gnome-desktop-sharp=2.26.0' 
'hicolor-icon-theme')
-makedepends=('intltool' 'pkgconfig' 'gnome-panel=2.28.0' 
'gnome-doc-utils=0.18.0')
+depends=('gtkspell' 'gmime=2.4.14' 'ndesk-dbus-glib=0.4.1' 
'gnome-sharp=2.24.1' 'mono-addins=0.4' 'libsm' 'gnome-desktop-sharp=2.26.0' 
'hicolor-icon-theme')
+makedepends=('intltool' 'pkgconfig' 'gnome-panel=2.29.6' 
'gnome-doc-utils=0.18.0')
 options=('!libtool' '!emptydirs')
 groups=('gnome-extra')
 install=tomboy.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/1.1/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('618e9154e71798ebc4b1fad808c8495e716ae263cbd4c8a82fa3947db35ed129')
+sha256sums=('362763ef2b27626505f6f6d1e7528ec9eeb8f3334fb84445117a2b92e9cbaf5f')
 
 build() {
   export MONO_SHARED_DIR=${srcdir}/.wabi



[arch-commits] Commit in tomboy/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 11:11:15
  Author: jgc
Revision: 68854

archrelease: copy trunk to gnome-unstable-i686

Added:
  tomboy/repos/gnome-unstable-i686/



[arch-commits] Commit in tomboy/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 11:11:52
  Author: jgc
Revision: 68855

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  tomboy/repos/gnome-unstable-x86_64/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 11:19:39
  Author: jgc
Revision: 68856

upgpkg: gnome-utils 2.29.5-1
Update to 2.29.5

Modified:
  gnome-utils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 16:11:52 UTC (rev 68855)
+++ PKGBUILD2010-02-14 16:19:39 UTC (rev 68856)
@@ -2,19 +2,19 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-utils
-pkgver=2.28.3
+pkgver=2.29.5
 pkgrel=1
 pkgdesc=Common utilities for GNOME
 arch=(i686 x86_64)
 license=('GPL')
-depends=('libgtop=2.28.0' 'gnome-panel=2.28.0' 'libcanberra=0.21')
+depends=('libgtop=2.28.0' 'gnome-panel=2.29.6' 'libcanberra=0.21')
 makedepends=('gnome-doc-utils=0.18.0' 'pkgconfig' 'intltool')
 options=('!libtool' '!emptydirs')
 url=http://www.gnome.org;
 groups=('gnome-extra')
 install=gnome-utils.install
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.28/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('35f4456fbefda17d39cacb788298e5c1bae29c06a1bd0477b5dc16400255bfd9')
+source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.29/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('e8291a84091c5b37a7fedbc566d40fddf05e346d654bceba74e51d48f4bfcc00')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



[arch-commits] Commit in gnome-utils/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 11:20:22
  Author: jgc
Revision: 68857

archrelease: copy trunk to gnome-unstable-i686

Added:
  gnome-utils/repos/gnome-unstable-i686/



[arch-commits] Commit in gnome-utils/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 11:21:04
  Author: jgc
Revision: 68858

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  gnome-utils/repos/gnome-unstable-x86_64/



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

2010-02-14 Thread Giovanni Scafora
Date: Sunday, February 14, 2010 @ 11:51:21
  Author: giovanni
Revision: 68859

upgpkg: rosegarden 10.02-1
upstream release

Added:
  rosegarden/trunk/rosegarden.install
Modified:
  rosegarden/trunk/PKGBUILD

+
 PKGBUILD   |   35 +--
 rosegarden.install |   14 ++
 2 files changed, 31 insertions(+), 18 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 16:21:04 UTC (rev 68858)
+++ PKGBUILD2010-02-14 16:51:21 UTC (rev 68859)
@@ -1,28 +1,27 @@
 # $Id$
+# Maintainer: 
+# Contributor: Giovanni Scafora giova...@archlinux.org
 # Contributor: damir da...@archlinux.org
 # Contributor: Robert Emil Berge rob...@rebi.no
 
 pkgname=rosegarden
-_origver=1.7.3
-pkgver=4.$_origver
-pkgrel=2
-pkgdesc=Audio and MIDI sequencer, score editor, and general-purpose music 
composition and editing application
-arch=(i686 x86_64)
-license=('GPL')
+pkgver=10.02
+pkgrel=1
+pkgdesc=MIDI and audio sequencer and notation editor
+arch=('i686' 'x86_64')
 url=http://www.rosegardenmusic.com/;
-depends=('gcc-libs' 'fftw' 'perl-xml-twig' 'kdelibs3' 'readline' 'liblrdf' 
'dssi'
-   'jack-audio-connection-kit' 'ladspa' 'liblo=0.26' 'libxft' 'libxext' 
'libsm')
-makedepends=('cmake')
-provides=('rosegarden-4')
-replaces=('rosegarden-4')
-options=(!libtool)
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$_origver.tar.bz2;)
-md5sums=('122eab42e375d2f3b009c8540ae8069c')
+license=('GPL')
+depends=('fftw' 'qt' 'liblrdf' 'dssi' 'ladspa' 'liblo' 'lirc-utils' 
'shared-mime-info')
+makedepends=('pkgconfig' 'imake')
+install=rosegarden.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+md5sums=('64c09426f0085af7984cc4c26f352c97')
 
 build() {
-  unset LDFLAGS
-  cd $srcdir/$pkgname-$_origver
-  cmake . -DCMAKE_INSTALL_PREFIX=/opt/kde -DWANT_LIRC=OFF || return 1
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr \
+  --with-qtdir=/usr || return 1
   make || return 1
-  make install DESTDIR=$pkgdir || return 1
+  make DESTDIR=${pkgdir} install || return 1
 }

Added: rosegarden.install
===
--- rosegarden.install  (rev 0)
+++ rosegarden.install  2010-02-14 16:51:21 UTC (rev 68859)
@@ -0,0 +1,14 @@
+post_install() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_upgrade() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-mime-database usr/share/mime  /dev/null
+}
+
+post_remove() {
+  xdg-icon-resource forceupdate --theme hicolor  /dev/null
+  update-mime-database usr/share/mime  /dev/null
+}



[arch-commits] Commit in rosegarden/repos (extra-i686)

2010-02-14 Thread Giovanni Scafora
Date: Sunday, February 14, 2010 @ 11:53:09
  Author: giovanni
Revision: 68861

archrelease: copy trunk to extra-i686

Added:
  rosegarden/repos/extra-i686/



[arch-commits] Commit in rosegarden/repos (extra-x86_64)

2010-02-14 Thread Giovanni Scafora
Date: Sunday, February 14, 2010 @ 11:54:36
  Author: giovanni
Revision: 68862

archrelease: remove extra-x86_64

Deleted:
  rosegarden/repos/extra-x86_64/



[arch-commits] Commit in rosegarden/repos (extra-x86_64)

2010-02-14 Thread Giovanni Scafora
Date: Sunday, February 14, 2010 @ 11:54:57
  Author: giovanni
Revision: 68863

archrelease: copy trunk to extra-x86_64

Added:
  rosegarden/repos/extra-x86_64/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 11:59:37
  Author: jgc
Revision: 68864

upgpkg: empathy 2.29.90-1
Update to 2.29.90

Modified:
  empathy/trunk/PKGBUILD

--+
 PKGBUILD |   37 ++---
 1 file changed, 18 insertions(+), 19 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 16:54:57 UTC (rev 68863)
+++ PKGBUILD2010-02-14 16:59:37 UTC (rev 68864)
@@ -1,14 +1,13 @@
 # $Id$
 # Maintainer: Biru Ionut io...@archlinux.ro
 pkgname=empathy
-pkgver=2.28.2
+pkgver=2.29.90
 pkgrel=1
 pkgdesc=A GNOME instant messaging client using the Telepathy framework.
 arch=('i686' 'x86_64')
 url=http://live.gnome.org/Empathy;
 license=('GPL2')
-depends=('iso-codes' 'gnome-panel=2.28.0' 'telepathy-mission-control=5.3.1' 
'telepathy-farsight=0.0.12'
- 'libcanberra' 'libnotify' 'libunique=1.1.2' 'libwebkit=1.1.15.4')
+depends=('iso-codes' 'telepathy-mission-control=5.3.1' 
'telepathy-farsight=0.0.12' 'libcanberra' 'libnotify' 'libunique=1.1.6' 
'libwebkit=1.1.21' 'evolution-data-server=2.29.90')
 makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils=0.18.0')
 optdepends=('telepathy-gabble: XMPP/Jabber support'
 'telepathy-butterfly: MSN support'
@@ -19,23 +18,23 @@
 options=('!libtool')
 groups=('gnome-extra')
 install=empathy.install
-source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/2.28/$pkgname-$pkgver.tar.gz)
+source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/2.29/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('98c16260606e3d3f829e95f3c877435696c76a4ef8b9486866ad87a7b092c633')
 
 build() {
-cd $srcdir/$pkgname-$pkgver
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc  \
+  --libexecdir=/usr/lib/empathy \
+  --enable-nautilus-sendto=no \
+  --disable-schemas-install || return 1
+  make || return 1
+  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 \
+  DESTDIR=${pkgdir} install || return 1
 
-./configure --prefix=/usr \
-   --sysconfdir=/etc  \
---libexecdir=/usr/lib/empathy \
-   --enable-shave \
-   --disable-schemas-install
-make || return 1
-make DESTDIR=$pkgdir install || return 1
-
-# Merge schemas file in a single file and remove trash
-mkdir -p $pkgdir/usr/share/gconf/schemas
-gconf-merge-schema $pkgdir/usr/share/gconf/schemas/$pkgname.schemas \
-$pkgdir/etc/gconf/schemas/*.schemas
-rm -rf $pkgdir/etc/gconf
+  # Merge schemas file in a single file and remove trash
+  mkdir -p ${pkgdir}/usr/share/gconf/schemas
+  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas \
+  --domain empathy ${pkgdir}/etc/gconf/schemas/*.schemas
+  rm -rf ${pkgdir}/etc/gconf
 }
-md5sums=('af4ac36f8162810dc97423d5cf1137fd')



[arch-commits] Commit in empathy/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 11:59:56
  Author: jgc
Revision: 68865

archrelease: copy trunk to gnome-unstable-i686

Added:
  empathy/repos/gnome-unstable-i686/



[arch-commits] Commit in empathy/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 12:00:14
  Author: jgc
Revision: 68866

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  empathy/repos/gnome-unstable-x86_64/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 12:19:57
  Author: jgc
Revision: 68867

upgpkg: empathy 2.29.90-2
Add nautilus-sendto plugin

Modified:
  empathy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 17:00:14 UTC (rev 68866)
+++ PKGBUILD2010-02-14 17:19:57 UTC (rev 68867)
@@ -2,13 +2,13 @@
 # Maintainer: Biru Ionut io...@archlinux.ro
 pkgname=empathy
 pkgver=2.29.90
-pkgrel=1
+pkgrel=2
 pkgdesc=A GNOME instant messaging client using the Telepathy framework.
 arch=('i686' 'x86_64')
 url=http://live.gnome.org/Empathy;
 license=('GPL2')
 depends=('iso-codes' 'telepathy-mission-control=5.3.1' 
'telepathy-farsight=0.0.12' 'libcanberra' 'libnotify' 'libunique=1.1.6' 
'libwebkit=1.1.21' 'evolution-data-server=2.29.90')
-makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils=0.18.0')
+makedepends=('pkgconfig' 'intltool' 'gnome-doc-utils=0.18.0' 
'nautilus-sendto')
 optdepends=('telepathy-gabble: XMPP/Jabber support'
 'telepathy-butterfly: MSN support'
 'telepathy-idle: IRC support'
@@ -26,7 +26,6 @@
   ./configure --prefix=/usr \
   --sysconfdir=/etc  \
   --libexecdir=/usr/lib/empathy \
-  --enable-nautilus-sendto=no \
   --disable-schemas-install || return 1
   make || return 1
   make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 \



[arch-commits] Commit in empathy/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 12:20:22
  Author: jgc
Revision: 68869

archrelease: copy trunk to gnome-unstable-i686

Added:
  empathy/repos/gnome-unstable-i686/



[arch-commits] Commit in empathy/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 12:20:14
  Author: jgc
Revision: 68868

archrelease: remove gnome-unstable-i686

Deleted:
  empathy/repos/gnome-unstable-i686/



[arch-commits] Commit in empathy/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 12:20:39
  Author: jgc
Revision: 68870

archrelease: remove gnome-unstable-x86_64

Deleted:
  empathy/repos/gnome-unstable-x86_64/



[arch-commits] Commit in empathy/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 12:20:46
  Author: jgc
Revision: 68871

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  empathy/repos/gnome-unstable-x86_64/



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

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 12:48:52
  Author: jgc
Revision: 68872

upgpkg: nautilus-sendto 2.28.2-2
Add to gnome-extra group. Remove makedepend on empathy as empathy includes the 
plugin now

Modified:
  nautilus-sendto/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-02-14 17:20:46 UTC (rev 68871)
+++ PKGBUILD2010-02-14 17:48:52 UTC (rev 68872)
@@ -1,16 +1,18 @@
 # $Id$
-# Maintainer: Eduardo Romero edua...@archlinux.org
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: Eduardo Romero edua...@archlinux.org
 # Contributor: Tor Krill t...@krill.nu
 
 pkgname=nautilus-sendto
 pkgver=2.28.2
-pkgrel=1
+pkgrel=2
 pkgdesc=Nautilus context menu for sending files.
 arch=('i686' 'x86_64')
 url=http://download.gnome.org/sources/nautilus-sendto/;
 license=('GPL')
-depends=('evolution-data-server=2.28.0' 'nautilus=2.28.1')
-makedepends=('pidgin' 'gajim' 'gettext' 'intltool' 'empathy')
+groups=('gnome-extra')
+depends=('evolution-data-server=2.29.90' 'nautilus=2.29.90')
+makedepends=('pidgin' 'gajim' 'gettext' 'intltool')
 options=('!libtool' '!emptydirs')
 install=nautilus-sendto.install
 
source=(http://ftp.gnome.org/pub/GNOME/sources/nautilus-sendto/2.28/${pkgname}-${pkgver}.tar.bz2)



[arch-commits] Commit in nautilus-sendto/repos (gnome-unstable-i686)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 12:49:01
  Author: jgc
Revision: 68873

archrelease: copy trunk to gnome-unstable-i686

Added:
  nautilus-sendto/repos/gnome-unstable-i686/



[arch-commits] Commit in nautilus-sendto/repos (gnome-unstable-x86_64)

2010-02-14 Thread Jan de Groot
Date: Sunday, February 14, 2010 @ 12:49:09
  Author: jgc
Revision: 68874

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  nautilus-sendto/repos/gnome-unstable-x86_64/



  1   2   >