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

2010-04-18 Thread Daniel Griffiths
Date: Sunday, April 18, 2010 @ 03:37:23
  Author: dgriffiths
Revision: 77810

FS#19087

Added:
  vim/trunk/gvim.desktop
  vim/trunk/gvim.install
Modified:
  vim/trunk/PKGBUILD
Deleted:
  vim/trunk/fetch_patches.sh
  vim/trunk/fetch_runtime.sh
  vim/trunk/vim.install

--+
 PKGBUILD |  245 +++--
 fetch_patches.sh |   28 --
 fetch_runtime.sh |  117 -
 gvim.desktop |   42 +
 gvim.install |   13 ++
 vim.install  |   37 
 6 files changed, 236 insertions(+), 246 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 04:30:29 UTC (rev 77809)
+++ PKGBUILD2010-04-18 07:37:23 UTC (rev 77810)
@@ -1,84 +1,201 @@
-# $Id$
+# Contributor: Jan heftig Steffens uo...@stud.uni-karlsruhe.de
 # Maintainer: tobias [ tobias at archlinux org ]
+# Maintainer: Daniel J Griffiths ghost1...@archlinux.us
 
-pkgname=vim
+pkgbase=('vim')
+pkgname=('vim' 'gvim' 'vim-runtime')
 _srcver=7.2
-_patchlevel=385
+_patchlevel=411
 pkgver=${_srcver}.${_patchlevel}
 pkgrel=1
-pkgdesc='Vi Improved, a highly configurable, improved version of the vi text 
editor'
 arch=('i686' 'x86_64')
 license=('custom:vim')
 url=http://www.vim.org;
-depends=('gpm' 'coreutils' 'perl')
-makedepends=('wget' 'sed' 'grep' 'gettext' 'curl' 'rsync')
-backup=(etc/vimrc)
-install=${pkgname}.install
-# we need the extra-stuff to get all patches applied smoothly
+makedepends=('gpm' 'coreutils' 'perl' 'python' 'ruby' 'libxt' \
+'desktop-file-utils' 'gtk2' 'wget' 'sed' 'grep' \
+'gettext' 'curl' 'rsync' 'pkgconfig')
 source=(ftp://ftp.vim.org/pub/vim/unix/vim-${_srcver}.tar.bz2 \
 ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-extra.tar.gz \
 ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-lang.tar.gz \
-fetch_patches.sh fetch_runtime.sh vimrc archlinux.vim)
-md5sums=('f0901284b338e448bfd79ccca0041254' '35e04482f07c57221c9a751aaa3b8dac' 
\
- 'd8884786979e0e520c112faf2e176f05' '9c8f6b302fc3f343962686b8cf4a0350' 
\
- '45c1c3c6aff7de0d8fc2a9d8cd5cec7d' 'e5374891063b9ca48a1fe392ac05' 
\
- '10353a61aadc3f276692d0e17db1478e')
+vimrc archlinux.vim gvim.desktop)
+md5sums=('f0901284b338e448bfd79ccca0041254' '35e04482f07c57221c9a751aaa3b8dac'
+ 'd8884786979e0e520c112faf2e176f05' 'e5374891063b9ca48a1fe392ac05'
+ '10353a61aadc3f276692d0e17db1478e' '2be104c0372dd6dae19cb7968c03cd4f')
 
-build()
-{
-  _versiondir=vim$(echo ${_srcver} | sed s/\.//)
-  # pull in patches from vim.org (or the src cache alternatively)
-  . ${srcdir}/fetch_patches.sh
-  get_patches || return 1
+_versiondir=vim$(echo ${_srcver} | sed s/\.//)
 
-  cd ${srcdir}/${_versiondir}
-  sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*\) .*$|\1|' src/feature.h
-  sed -i 's|^.*\(#define VIMRC_FILE.*\) .*$|\1|' src/feature.h
-  # build party
-  ./configure --prefix=/usr --localstatedir=/var/lib/vim 
--mandir=/usr/share/man \
---with-compiledby=ArchLinux --with-features=big \
---enable-gpm --enable-acl --with-x=no --disable-gui \
---enable-multibyte --enable-cscope \
---enable-perlinterp 
-#--with-global-runtime=/usr/share/vim --with-vim-name=vim \
-  make || return 1
+# Build #
+
+_get_patches() {
+   curl ftp://ftp.vim.org/pub/vim/patches/${_srcver}/MD5SUMS | sed -e 
'/.gz$/d'  MD5SUMS
+   _currpatch=$(cat MD5SUMS | wc -l)
+
+   rsync -avzcP --exclude '*.gz' 
ftp.nluug.nl::Vim/patches/${_srcver}/${_srcver}.* .
+   md5sum -c MD5SUMS  /dev/null || return 1
+
+vim.full.patch.log
+   for _file in $(cat MD5SUMS | awk '{ print $2 }'); do
+   patch -d ${_versiondir} -p0  ${_file}  vim.full.patch.log || 
return 1
+   done
+
+   if [ ${_patchlevel} -lt ${_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 latest'
+   echo ${_currpatch} as pkgrel number!
+   echo ''
+   sleep 10
+   fi
+   return 0
 }
 
-package()
-{
-  . ${srcdir}/fetch_runtime.sh
-  _versiondir=vim$(echo ${_srcver} | sed s/\.//)
-  cd ${srcdir}/${_versiondir}
+_get_runtime() {
+   # Get a copy of the runtime from the archive if we don't already have 
one
+   if [ ! -d runtime ]; then
+   cp -r ${_versiondir}/runtime . || return 1
+   fi
 
-  make  VIMRCLOC=/etc DESTDIR=${pkgdir} install
-  cd ${pkgdir}/usr/bin
-  rm ex view  # provided by (n)vi in core
-  mv vim vim-normal   # we create a vim-symlink on post_install
-  ln -sf vim-normal vim
-  # ... make g* related symlinks point directly to the actual binary
-  ln -sf vim-normal rview
-  ln -sf vim-normal rvim
-  ln -sf vim-normal vimdiff
+   # Update our 

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

2010-04-18 Thread Daniel Griffiths
Date: Sunday, April 18, 2010 @ 03:37:38
  Author: dgriffiths
Revision: 77811

archrelease: copy trunk to testing-i686

Added:
  vim/repos/testing-i686/



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

2010-04-18 Thread Daniel Griffiths
Date: Sunday, April 18, 2010 @ 03:37:51
  Author: dgriffiths
Revision: 77812

archrelease: copy trunk to testing-x86_64

Added:
  vim/repos/testing-x86_64/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 03:47:31
  Author: allan
Revision: 77813

upgpkg: rp-pppoe 3.10-5
make sure sh is available for install script, compress man pages (affected i686 
ony)

Modified:
  rp-pppoe/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 07:37:51 UTC (rev 77812)
+++ PKGBUILD2010-04-18 07:47:31 UTC (rev 77813)
@@ -1,15 +1,16 @@
 # $Id$
 # Contributor: orelien aurelien.fo...@wanadoo.fr
-# Maintainer: judd jvi...@zeroflux.org
+# Maintainer:
+
 pkgname=rp-pppoe
 pkgver=3.10
-pkgrel=4
+pkgrel=5
 pkgdesc=Roaring Penguin's Point-to-Point Protocol over Ethernet client
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 url=http://www.roaringpenguin.com/pppoe/;
 license=('GPL')
 groups=('base')
-depends=('ppp=2.4.5')
+depends=('ppp=2.4.5' 'sh')
 options=('!makeflags')
 backup=(etc/ppp/pppoe.conf etc/ppp/firewall-standalone etc/ppp/firewall-masq 
etc/ppp/pppoe-server-options)
 source=(http://www.roaringpenguin.com/files/download/rp-pppoe-$pkgver.tar.gz 
adsl)
@@ -18,10 +19,14 @@
  'adace1ad441aa88dcb3db52fb7f9c97f')
 
 build() {
-  cd $startdir/src/$pkgname-$pkgver/src
+  cd $srcdir/$pkgname-$pkgver/src
   ./configure --prefix=/usr --enable-plugin=/ppp-2.4.4
   make || return 1
-  make DESTDIR=$startdir/pkg install
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver/src
+  make DESTDIR=$pkgdir install
   
   #moving .so files to /usr/lib according to FS#13876
   mkdir -p ${pkgdir}/usr/lib/rp-pppoe
@@ -31,5 +36,5 @@
   #changing config to the new path
   #sed -i 's/LINUX_PLUGIN=/LINUX_PLUGIN=\/usr\/lib\/rp-pppoe\/rp-pppoe.so/g' 
${pkgdir}/etc/ppp/pppoe.conf
   
-  install -m755 -D ../../adsl $startdir/pkg/etc/rc.d/adsl
+  install -Dm755 $srcdir/adsl $pkgdir/etc/rc.d/adsl
 }



[arch-commits] Commit in rp-pppoe/repos (testing-i686)

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 03:48:04
  Author: allan
Revision: 77814

archrelease: copy trunk to testing-i686

Added:
  rp-pppoe/repos/testing-i686/



[arch-commits] Commit in rp-pppoe/repos (testing-x86_64)

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 03:48:36
  Author: allan
Revision: 77815

archrelease: copy trunk to testing-x86_64

Added:
  rp-pppoe/repos/testing-x86_64/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 04:52:19
  Author: allan
Revision: 77816

upgpkg: sed 4.2.1-2
make sure sh is available for install script

Modified:
  sed/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 07:48:36 UTC (rev 77815)
+++ PKGBUILD2010-04-18 08:52:19 UTC (rev 77816)
@@ -4,13 +4,13 @@
 
 pkgname=sed
 pkgver=4.2.1
-pkgrel=1
+pkgrel=2
 pkgdesc=GNU stream editor
 arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/sed;
 license=('GPL3')
 groups=('base')
-depends=('acl')
+depends=('acl' 'sh')
 makedepends=('gettext')
 install=sed.install
 source=(ftp://ftp.gnu.org/pub/gnu/sed/$pkgname-$pkgver.tar.gz)
@@ -20,8 +20,9 @@
   cd $srcdir/$pkgname-$pkgver
   ./configure --prefix=/usr --bindir=/bin --without-included-regex
   make || return 1
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
   make DESTDIR=$pkgdir install
-  
-  rm $pkgdir/usr/share/info/dir
-  gzip -9 $pkgdir/usr/share/info/*
 }



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 04:52:54
  Author: allan
Revision: 77817

archrelease: copy trunk to testing-i686

Added:
  sed/repos/testing-i686/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 04:53:29
  Author: allan
Revision: 77818

archrelease: copy trunk to testing-x86_64

Added:
  sed/repos/testing-x86_64/



[arch-commits] Commit in haskell-binary/repos (extra-x86_64 testing-x86_64)

2010-04-18 Thread Vesa Kaihlavirta
Date: Sunday, April 18, 2010 @ 05:26:14
  Author: vesa
Revision: 77819

db-move: moved haskell-binary from [testing] to [extra] (x86_64)

Added:
  haskell-binary/repos/extra-x86_64/
Deleted:
  haskell-binary/repos/testing-x86_64/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 05:29:42
  Author: allan
Revision: 77821

upgpkg: ncurses 5.7-3
rebuild to remove from base group

Modified:
  ncurses/trunk/PKGBUILD
Deleted:
  ncurses/trunk/ChangeLog

---+
 ChangeLog |   15 ---
 PKGBUILD  |   31 ---
 2 files changed, 20 insertions(+), 26 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2010-04-18 09:26:21 UTC (rev 77820)
+++ ChangeLog   2010-04-18 09:29:42 UTC (rev 77821)
@@ -1,15 +0,0 @@
-2009-01-22  Allan McRae al...@archlinux.org
-   * ncurses-5.7-2.1
-   * x86_64 only build
-   * compile non-wide charater library with chtype=long
-  for compatibility with binary blobs (FS#13351)
-
-2008-11-15  Allan McRae al...@archlinux.org
-   * ncurses-5.7-2
-   * fix installation of non-wide charater libraries (FS#12124)
-
-2008-11-03  Allan McRae al...@archlinux.org
-   * ncurses-5.7-1
-   * upstream update
-   * remove coverity patch (included upstream)
-   * enable makeflags

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 09:26:21 UTC (rev 77820)
+++ PKGBUILD2010-04-18 09:29:42 UTC (rev 77821)
@@ -4,7 +4,7 @@
 
 pkgname=ncurses
 pkgver=5.7
-pkgrel=2.1
+pkgrel=3
 pkgdesc=System V Release 4.0 curses emulation library
 arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/ncurses/;
@@ -14,12 +14,26 @@
 md5sums=('cce05daf61a64501ef6cd8da1f727ec6')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr --mandir=/usr/share/man \
+  cd ${srcdir}/
+  mkdir ncurses{,w}-build
+  
+  cd ${srcdir}/ncursesw-build
+  ../${pkgname}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \
  --with-shared --with-normal --without-debug --without-ada \
  --with-install-prefix=${pkgdir} --enable-widec 
   make || return 1
+
+  # libncurses.so.5 for external binary support 
+  cd ${srcdir}/ncurses-build
+  [ $CARCH = x86_64 ]  CONFIGFLAG=--with-chtype=long
+  ../${pkgname}-${pkgver}/configure --prefix=/usr \
+--with-shared --with-normal --without-debug --without-ada \
+--with-install-prefix=${pkgdir} $CONFIGFLAG
+  make || return 1
+}
+
+package() {
+  cd ${srcdir}/ncursesw-build
   make install
 
   # move libraries needed for boot to /lib (we call tput in initscripts)
@@ -46,13 +60,8 @@
   ln -sf libncursesw.a ${pkgdir}/usr/lib/libcursesw.a
   ln -sf libncurses.a ${pkgdir}/usr/lib/libcurses.a
 
-  # Install libncurses.so.5 for external binary support 
-  [ $CARCH = x86_64 ]  CONFIGFLAG=--with-chtype=long
-  ./configure --prefix=/usr \
---with-shared --with-normal --without-debug --without-ada \
---with-install-prefix=${pkgdir} $CONFIGFLAG
-  make || return 1
-  
+  # non-widec compatibility library
+  cd ${srcdir}/ncurses-build
   install -Dm755 lib/libncurses.so.${pkgver} 
${pkgdir}/usr/lib/libncurses.so.${pkgver}
   ln -sf libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.5
 



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:04:36
  Author: allan
Revision: 77824

upgpkg: gettext 0.17-4
make sure sh is available for install script

Modified:
  gettext/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 09:31:04 UTC (rev 77823)
+++ PKGBUILD2010-04-18 10:04:36 UTC (rev 77824)
@@ -1,14 +1,15 @@
 # $Id$
-# Maintainer: judd jvi...@zeroflux.org
+# Maintainer: 
+
 pkgname=gettext
 pkgver=0.17
-pkgrel=3
+pkgrel=4
 pkgdesc=GNU internationalization library
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/gettext;
 license=('GPL')
 groups=('base')
-depends=('gcc-libs' 'acl')
+depends=('gcc-libs' 'acl' 'sh')
 optdepends=('cvs: for autopoint tool')
 options=(!libtool)
 install=gettext.install
@@ -20,8 +21,9 @@
   sed -i -e 's/libexpat.so.0/libexpat.so.1/' gettext-tools/src/x-glade.c
   ./configure --prefix=/usr --enable-csharp
   make || return 1
+}
+
+package() {
+  cd $srcdir/${pkgname}-${pkgver}
   make DESTDIR=$pkgdir install
-  
-  rm -f $pkgdir/usr/share/info/dir
-  gzip -9 $pkgdir/usr/share/info/*
 }



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:05:31
  Author: allan
Revision: 77825

archrelease: copy trunk to testing-i686

Added:
  gettext/repos/testing-i686/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:06:27
  Author: allan
Revision: 77826

archrelease: copy trunk to testing-x86_64

Added:
  gettext/repos/testing-x86_64/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:20:55
  Author: allan
Revision: 77827

upgpkg: cracklib 2.8.13-3
rebuild to remove from base group

Modified:
  cracklib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 10:06:27 UTC (rev 77826)
+++ PKGBUILD2010-04-18 10:20:55 UTC (rev 77827)
@@ -4,9 +4,9 @@
 
 pkgname=cracklib
 pkgver=2.8.13
-pkgrel=2
+pkgrel=3
 pkgdesc=Password Checking Library
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 license=('GPL')
 url=http://sourceforge.net/projects/cracklib;
 depends=('glibc' 'zlib')
@@ -18,9 +18,12 @@
   cd $startdir/src/$pkgname-$pkgver
   ./configure --prefix=/usr --without-python
   make || return 1
-  mkdir -p $startdir/pkg/usr/share/dict
-  make DESTDIR=$startdir/pkg install
-  cp dicts/cracklib-small $startdir/pkg/usr/share/dict
+}
+
+package() {
+  cd $startdir/src/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+  install -Dm644 dicts/cracklib-small $pkgdir/usr/share/dict/cracklib-small
   sh ./util/cracklib-format dicts/cracklib-small \
-| sh ./util/cracklib-packer $startdir/pkg/usr/share/cracklib/pw_dict
+| sh ./util/cracklib-packer $pkgdir/usr/share/cracklib/pw_dict
 }



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:21:32
  Author: allan
Revision: 77828

archrelease: copy trunk to testing-i686

Added:
  cracklib/repos/testing-i686/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:22:08
  Author: allan
Revision: 77829

archrelease: copy trunk to testing-x86_64

Added:
  cracklib/repos/testing-x86_64/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:31:51
  Author: allan
Revision: 77830

upgpkg: dialog 1.1_20100119-2
rebuild to remove from base group

Modified:
  dialog/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 10:22:08 UTC (rev 77829)
+++ PKGBUILD2010-04-18 10:31:51 UTC (rev 77830)
@@ -5,7 +5,7 @@
 pkgname=dialog
 pkgver=1.1_20100119
 _pkgver=1.1-20100119
-pkgrel=1
+pkgrel=2
 pkgdesc=A tool to display dialog boxes from shell scripts
 arch=('i686' 'x86_64')
 url=http://invisible-island.net/dialog/;
@@ -19,5 +19,9 @@
   ./configure --prefix=/usr --mandir=/usr/share/man \
   --with-ncursesw --enable-nls
   make || return 1
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$_pkgver
   make DESTDIR=${pkgdir} install
 }



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:32:23
  Author: allan
Revision: 77831

archrelease: copy trunk to testing-i686

Added:
  dialog/repos/testing-i686/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:32:57
  Author: allan
Revision: 77832

archrelease: copy trunk to testing-x86_64

Added:
  dialog/repos/testing-x86_64/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:43:25
  Author: allan
Revision: 77833

upgpkg: pkgconfig 0.23-2
rebuild old package

Modified:
  pkgconfig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 10:32:57 UTC (rev 77832)
+++ PKGBUILD2010-04-18 10:43:25 UTC (rev 77833)
@@ -1,22 +1,26 @@
 # $Id$
-# Maintainer: dorphell dorph...@archlinux.org
+# Maintainer: Allan McRae al...@archlinux.org
 # Committer: Judd Vinet jvi...@zeroflux.org
 
 pkgname=pkgconfig
 pkgver=0.23
-pkgrel=1
+pkgrel=2
 pkgdesc=A system for managing library compile/link flags
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
 url=http://pkgconfig.freedesktop.org/wiki/;
 license=('GPL')
 groups=('base-devel')
-depends=(glibc)
+depends=('glibc')
 source=(http://pkgconfig.freedesktop.org/releases/pkg-config-${pkgver}.tar.gz)
 md5sums=('d922a88782b64441d06547632fd85744')
 
 build() {
-  cd ${startdir}/src/pkg-config-${pkgver}
+  cd ${srcdir}/pkg-config-${pkgver}
   ./configure --prefix=/usr
   make || return 1
+}
+
+package() {
+  cd ${srcdir}/pkg-config-${pkgver}
   make DESTDIR=${startdir}/pkg install
 }



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:43:41
  Author: allan
Revision: 77834

upgpkg: pkgconfig 0.23-2
rebuild old package

Modified:
  pkgconfig/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 10:43:25 UTC (rev 77833)
+++ PKGBUILD2010-04-18 10:43:41 UTC (rev 77834)
@@ -22,5 +22,5 @@
 
 package() {
   cd ${srcdir}/pkg-config-${pkgver}
-  make DESTDIR=${startdir}/pkg install
+  make DESTDIR=${pkgdir} install
 }



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:44:12
  Author: allan
Revision: 77835

archrelease: copy trunk to testing-i686

Added:
  pkgconfig/repos/testing-i686/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 06:44:49
  Author: allan
Revision: 77836

archrelease: copy trunk to testing-x86_64

Added:
  pkgconfig/repos/testing-x86_64/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 07:06:39
  Author: andrea
Revision: 77837

better description

Modified:
  x11vnc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 10:44:49 UTC (rev 77836)
+++ PKGBUILD2010-04-18 11:06:39 UTC (rev 77837)
@@ -10,7 +10,7 @@
 url=http://www.karlrunge.com/x11vnc/;
 license=('GPL2')
 depends=('openssl' 'libjpeg' 'zlib' 'libx11' 'libxtst' 'libxinerama' 
'libxdamage' 'libxrandr' 'avahi')
-optdepends=('tk: x11vnc GUI')
+optdepends=('tk: for GUI support')
 backup=('etc/conf.d/x11vnc')
 source=(http://downloads.sourceforge.net/libvncserver/$pkgname-$pkgver.tar.gz;
'x11vnc.rc'



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 07:20:36
  Author: allan
Revision: 77838

upgpkg: which 2.20-3
make sure sh is available for install script

Modified:
  which/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 11:06:39 UTC (rev 77837)
+++ PKGBUILD2010-04-18 11:20:36 UTC (rev 77838)
@@ -4,13 +4,13 @@
 
 pkgname=which
 pkgver=2.20
-pkgrel=2
+pkgrel=3
 pkgdesc=A utility to show the full path of commands
 arch=('i686' 'x86_64')
 url=http://www.xs4all.nl/~carlo17/which;
 license=('GPL3')
 groups=('base')
-depends=('glibc')
+depends=('glibc' 'sh')
 install=which.install
 source=(http://www.xs4all.nl/~carlo17/$pkgname/$pkgname-$pkgver.tar.gz)
 md5sums=('95be0501a466e515422cde4af46b2744')



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 07:21:09
  Author: allan
Revision: 77839

archrelease: copy trunk to testing-i686

Added:
  which/repos/testing-i686/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 07:21:43
  Author: allan
Revision: 77840

archrelease: copy trunk to testing-x86_64

Added:
  which/repos/testing-x86_64/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 09:08:09
  Author: allan
Revision: 77843

archrelease: copy trunk to testing-x86_64

Added:
  inetutils/repos/testing-x86_64/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 09:32:16
  Author: allan
Revision: 77844

upgpkg: grub 0.97-17
add install-info presence test to install script

Modified:
  grub/trunk/PKGBUILD
  grub/trunk/grub.install

--+
 PKGBUILD |5 +
 grub.install |   20 +---
 2 files changed, 10 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 13:08:09 UTC (rev 77843)
+++ PKGBUILD2010-04-18 13:32:16 UTC (rev 77844)
@@ -3,7 +3,7 @@
 
 pkgname=grub
 pkgver=0.97
-pkgrel=16
+pkgrel=17
 pkgdesc=A GNU multiboot boot loader
 arch=('i686' 'x86_64')
 license=('GPL')
@@ -75,9 +75,6 @@
   make DESTDIR=$pkgdir install || return 1
   install -D -m644 ../menu.lst $startdir/pkg/boot/grub/menu.lst
   install -D -m755 ../install-grub $startdir/pkg/sbin/install-grub
- 
-  rm -f $pkgdir/usr/share/info/dir || return 1
-  gzip /$pkgdir/usr/share/info/*
 
   if [ $DESTARCH = x86_64 ]; then
 # fool makepkg into building a x86_64 package

Modified: grub.install
===
--- grub.install2010-04-18 13:08:09 UTC (rev 77843)
+++ grub.install2010-04-18 13:32:16 UTC (rev 77844)
@@ -1,22 +1,20 @@
-info_dir=/usr/share/info
-info_files=(grub.info multiboot.info)
+infodir=/usr/share/info
+filelist=(grub.info multiboot.info)
 
 post_install() {
-  for f in ${info_fil...@]}; do
-install-info ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${fileli...@]}; do
+install-info $infodir/$file.gz $infodir/dir 2 /dev/null
   done
 }
 
 post_upgrade() {
-post_install
+  post_install $1
 }
 
 pre_remove() {
-  for f in ${info_fil...@]}; do
-install-info --delete ${info_dir}/$f.gz ${info_dir}/dir 2 /dev/null
+  [ -x usr/bin/install-info ] || return 0
+  for file in ${fileli...@]}; do
+install-info --delete $infodir/$file.gz $infodir/dir 2 /dev/null
   done
 }
-
-
-
-



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 09:32:53
  Author: allan
Revision: 77845

archrelease: copy trunk to testing-i686

Added:
  grub/repos/testing-i686/



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

2010-04-18 Thread Allan McRae
Date: Sunday, April 18, 2010 @ 09:33:30
  Author: allan
Revision: 77846

archrelease: copy trunk to testing-x86_64

Added:
  grub/repos/testing-x86_64/



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

2010-04-18 Thread andyrtr
Date: Sunday, April 18, 2010 @ 13:20:16
  Author: andyrtr
Revision: 77847

upgpkg: nano 2.2.4-1
new version 2.2.4

Modified:
  nano/trunk/PKGBUILD
  nano/trunk/nano.install

--+
 PKGBUILD |4 ++--
 nano.install |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 13:33:30 UTC (rev 77846)
+++ PKGBUILD2010-04-18 17:20:16 UTC (rev 77847)
@@ -3,7 +3,7 @@
 # Contributor: Judd j...@archlinux.org
 
 pkgname=nano
-pkgver=2.2.3
+pkgver=2.2.4
 pkgrel=1
 pkgdesc=Pico editor clone with enhancements
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 source=(http://www.nano-editor.org/dist/v2.2/nano-${pkgver}.tar.gz)
 backup=(etc/nanorc)
 install=nano.install
-md5sums=('91918a484f54f94fedaebe00dc393a50')
+md5sums=('6304308afb1f7ef4a5e93eb99206632a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}

Modified: nano.install
===
--- nano.install2010-04-18 13:33:30 UTC (rev 77846)
+++ nano.install2010-04-18 17:20:16 UTC (rev 77847)
@@ -1,5 +1,5 @@
 infodir=/usr/share/info
-filelist=(nano.info)
+filelist=(nano.info.gz)
 
 post_install() {
   [ -x usr/bin/install-info ] || return 0



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

2010-04-18 Thread andyrtr
Date: Sunday, April 18, 2010 @ 13:20:43
  Author: andyrtr
Revision: 77848

archrelease: copy trunk to testing-i686

Added:
  nano/repos/testing-i686/



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

2010-04-18 Thread andyrtr
Date: Sunday, April 18, 2010 @ 13:21:11
  Author: andyrtr
Revision: 77849

archrelease: copy trunk to testing-x86_64

Added:
  nano/repos/testing-x86_64/



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

2010-04-18 Thread Daniel Griffiths
Date: Sunday, April 18, 2010 @ 14:55:03
  Author: dgriffiths
Revision: 77850

Modified:
  proftpd/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 17:21:11 UTC (rev 77849)
+++ PKGBUILD2010-04-18 18:55:03 UTC (rev 77850)
@@ -4,7 +4,7 @@
 
 pkgname=proftpd
 pkgver=1.3.3
-pkgrel=4
+pkgrel=5
 pkgdesc=A high-performance, scalable FTP server
 arch=('i686' 'x86_64')
 url=http://www.proftpd.org;
@@ -28,7 +28,7 @@

--with-modules=mod_quotatab:mod_quotatab_file:mod_tls:mod_ldap:mod_sql:mod_sql_mysql:mod_sql_postgres
 \
--sysconfdir=/etc --localstatedir=/var/run --enable-ctrls 
--enable-ipv6 \
--with-includes=/usr/include/mysql:/usr/include/postgresql \
-   --with-libraries=/usr/lib/mysql:/usr/lib/postgresql
+   --with-libraries=/usr/lib/mysql:/usr/lib/postgresql --enable-nls
make || return 1
 }
 
@@ -43,5 +43,5 @@
   ${pkgdir}/usr/bin/ftpstats
cd ${pkgdir}/etc
sed -i 's|nogroup|nobody|g' proftpd.conf
-   rmdir ${pkgdir}/usr/{libexec,share/locale}
+   rmdir ${pkgdir}/usr/libexec
 }



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

2010-04-18 Thread Daniel Griffiths
Date: Sunday, April 18, 2010 @ 14:55:14
  Author: dgriffiths
Revision: 77852

archrelease: copy trunk to extra-i686

Added:
  proftpd/repos/extra-i686/



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

2010-04-18 Thread Daniel Griffiths
Date: Sunday, April 18, 2010 @ 14:55:18
  Author: dgriffiths
Revision: 77853

archrelease: remove extra-x86_64

Deleted:
  proftpd/repos/extra-x86_64/



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

2010-04-18 Thread Daniel Griffiths
Date: Sunday, April 18, 2010 @ 14:55:25
  Author: dgriffiths
Revision: 77854

archrelease: copy trunk to extra-x86_64

Added:
  proftpd/repos/extra-x86_64/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:08:11
  Author: ibiru
Revision: 77855

upgpkg: pygtksourceview2 2.10.1-1
update to 2.10.1

Modified:
  pygtksourceview2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 18:55:25 UTC (rev 77854)
+++ PKGBUILD2010-04-18 19:08:11 UTC (rev 77855)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=pygtksourceview2
-pkgver=2.10.0
+pkgver=2.10.1
 pkgrel=1
 pkgdesc=Python bindings for gtksourceview2
 arch=(i686 x86_64)
@@ -12,7 +12,7 @@
 options=('!libtool')
 url=http://www.gnome.org;
 
source=(http://ftp.gnome.org/pub/gnome/sources/pygtksourceview/2.10/pygtksourceview-${pkgver}.tar.bz2)
-sha256sums=('bfdde2ce4f61d461fb34dece9433cf81a73a9c9de6b62d4eb06177b8c9cec9c7')
+sha256sums=('b4b47c5aeb67a26141cb03663091dfdf5c15c8a8aae4d69c46a6a943ca4c5974')
 
 build() {
   cd ${srcdir}/pygtksourceview-${pkgver}



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:08:18
  Author: ibiru
Revision: 77856

archrelease: remove extra-i686

Deleted:
  pygtksourceview2/repos/extra-i686/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:08:36
  Author: ibiru
Revision: 77857

archrelease: copy trunk to extra-i686

Added:
  pygtksourceview2/repos/extra-i686/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:08:43
  Author: ibiru
Revision: 77858

archrelease: remove extra-x86_64

Deleted:
  pygtksourceview2/repos/extra-x86_64/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:09:00
  Author: ibiru
Revision: 77859

archrelease: copy trunk to extra-x86_64

Added:
  pygtksourceview2/repos/extra-x86_64/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:12:11
  Author: ibiru
Revision: 77860

upgpkg: gedit 2.30.1-1
update to 2.30.1

Modified:
  gedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 19:09:00 UTC (rev 77859)
+++ PKGBUILD2010-04-18 19:12:11 UTC (rev 77860)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gedit
-pkgver=2.30.0
+pkgver=2.30.1
 pkgrel=1
 pkgdesc=A text editor for GNOME
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://www.gnome.org;
 install=gedit.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('37598473372aab217e46f19726cff616ff0ea4121bbdbb170b4e264a4ca76690')
+sha256sums=('98dc862d5530033bb8c507f9ce4ba9aa315506b309b53d00f5af74eee425743b')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:12:58
  Author: ibiru
Revision: 77861

archrelease: remove extra-i686

Deleted:
  gedit/repos/extra-i686/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:13:17
  Author: ibiru
Revision: 77862

archrelease: copy trunk to extra-i686

Added:
  gedit/repos/extra-i686/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:14:04
  Author: ibiru
Revision: 77863

archrelease: remove extra-x86_64

Deleted:
  gedit/repos/extra-x86_64/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:14:24
  Author: ibiru
Revision: 77864

archrelease: copy trunk to extra-x86_64

Added:
  gedit/repos/extra-x86_64/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:50:51
  Author: ibiru
Revision: 77865

upgpkg: gobject-introspection 0.6.10-1
update to 0.6.10

Modified:
  gobject-introspection/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 19:14:24 UTC (rev 77864)
+++ PKGBUILD2010-04-18 19:50:51 UTC (rev 77865)
@@ -1,16 +1,16 @@
 # $Id$
 # Maintainer: Jan de Groot j...@archlinux.org
 pkgname=gobject-introspection
-pkgver=0.6.9
+pkgver=0.6.10
 pkgrel=1
 pkgdesc=Introspection system for GObject-based libraries
 url=http://live.gnome.org/GObjectInstrospection;
 arch=('x86_64' 'i686')
 license=('LGPL' 'GPL')
-depends=('libffi=3.0.8' 'glib2=2.23.5' 'python')
+depends=('libffi=3.0.8' 'glib2=2.24.0' 'python' 'cairo=1.8.10')
 options=('!libtool')
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.6/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('12ea075fdb90780b047382bc7acf4896c34dad49276f6c8513045a3f584d5ac6')
+sha256sums=('36bd511a4d45967f95526f94708b3f4367e9d344aa11f3206fe6edb7fc3a8d4b')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:51:01
  Author: ibiru
Revision: 77866

archrelease: remove extra-x86_64

Deleted:
  gobject-introspection/repos/extra-x86_64/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:51:17
  Author: ibiru
Revision: 77867

archrelease: copy trunk to extra-x86_64

Added:
  gobject-introspection/repos/extra-x86_64/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:51:26
  Author: ibiru
Revision: 77868

archrelease: remove extra-i686

Deleted:
  gobject-introspection/repos/extra-i686/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:51:43
  Author: ibiru
Revision: 77869

archrelease: copy trunk to extra-i686

Added:
  gobject-introspection/repos/extra-i686/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 15:59:47
  Author: ibiru
Revision: 77870

upgpkg: gedit 2.30.2-1
update to 2.30.2

Modified:
  gedit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 19:51:43 UTC (rev 77869)
+++ PKGBUILD2010-04-18 19:59:47 UTC (rev 77870)
@@ -2,7 +2,7 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gedit
-pkgver=2.30.1
+pkgver=2.30.2
 pkgrel=1
 pkgdesc=A text editor for GNOME
 arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@
 url=http://www.gnome.org;
 install=gedit.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.30/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('98dc862d5530033bb8c507f9ce4ba9aa315506b309b53d00f5af74eee425743b')
+sha256sums=('bcaa3ececd38293524b12f793bc939268531ce7a2b7f49212362098cf36b1bd5')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 16:00:20
  Author: ibiru
Revision: 77871

archrelease: remove extra-i686

Deleted:
  gedit/repos/extra-i686/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 16:00:39
  Author: ibiru
Revision: 77872

archrelease: copy trunk to extra-i686

Added:
  gedit/repos/extra-i686/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 16:01:05
  Author: ibiru
Revision: 77873

archrelease: remove extra-x86_64

Deleted:
  gedit/repos/extra-x86_64/



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

2010-04-18 Thread Ionut Biru
Date: Sunday, April 18, 2010 @ 16:01:24
  Author: ibiru
Revision: 77874

archrelease: copy trunk to extra-x86_64

Added:
  gedit/repos/extra-x86_64/



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

2010-04-18 Thread Juergen Hoetzel
Date: Sunday, April 18, 2010 @ 16:06:19
  Author: juergen
Revision: 77875

update to 0.4.4

Modified:
  lxsession-lite/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 20:01:24 UTC (rev 77874)
+++ PKGBUILD2010-04-18 20:06:19 UTC (rev 77875)
@@ -1,6 +1,6 @@
 # Maintainer: Juergen Hoetzel juer...@archlinux.org
 pkgname=lxsession-lite
-pkgver=0.4.3
+pkgver=0.4.4
 pkgrel=1
 pkgdesc=Session manager of the LXDE Desktop (light version)
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 conflicts=('lxsession' 'lxde-settings-daemon')
 
 
source=(http://downloads.sourceforge.net/sourceforge/lxde/lxsession-${pkgver}.tar.gz)
-md5sums=('4eb7b27bc31f3f63a649c004e1100605')
+md5sums=('9d433e1219eac07862c0d725ab58444f')
 
 build() {
cd $srcdir/lxsession-$pkgver



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

2010-04-18 Thread Juergen Hoetzel
Date: Sunday, April 18, 2010 @ 16:18:41
  Author: juergen
Revision: 77876

update to 1.1.0

Modified:
  scummvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 20:06:19 UTC (rev 77875)
+++ PKGBUILD2010-04-18 20:18:41 UTC (rev 77876)
@@ -3,7 +3,7 @@
 # Contributor: Manolis Tzanidakis, Petter Gundersen
 
 pkgname=scummvm
-pkgver=1.0.0
+pkgver=1.1.0
 pkgrel=1
 pkgdesc=A 'virtual machine' for several classic graphical point-and-click 
adventure games.
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 url=http://www.scummvm.org/;
 depends=('gcc-libs' 'alsa-lib' 'libmad' 'libvorbis' 'zlib' 'libmpeg2' 
'flac=1.1.4' 'sdl')
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('11b911937e0fc73c94a7bdc374ab617c')
+md5sums=('6793c3fe801d4fcd3d5b4fc2c27d0e9e')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2010-04-18 Thread Juergen Hoetzel
Date: Sunday, April 18, 2010 @ 16:25:08
  Author: juergen
Revision: 77877

remove unnecessary dependency

Modified:
  scummvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 20:18:41 UTC (rev 77876)
+++ PKGBUILD2010-04-18 20:25:08 UTC (rev 77877)
@@ -9,7 +9,7 @@
 arch=('i686' 'x86_64')
 license=('GPL')
 url=http://www.scummvm.org/;
-depends=('gcc-libs' 'alsa-lib' 'libmad' 'libvorbis' 'zlib' 'libmpeg2' 
'flac=1.1.4' 'sdl')
+depends=('gcc-libs' 'alsa-lib' 'libmad' 'libvorbis' 'zlib' 'flac=1.1.4' 'sdl')
 
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
 md5sums=('6793c3fe801d4fcd3d5b4fc2c27d0e9e')
 



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

2010-04-18 Thread Juergen Hoetzel
Date: Sunday, April 18, 2010 @ 16:25:39
  Author: juergen
Revision: 77878

archrelease: remove extra-i686

Deleted:
  scummvm/repos/extra-i686/



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

2010-04-18 Thread Juergen Hoetzel
Date: Sunday, April 18, 2010 @ 16:25:51
  Author: juergen
Revision: 77879

archrelease: copy trunk to extra-i686

Added:
  scummvm/repos/extra-i686/



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

2010-04-18 Thread Juergen Hoetzel
Date: Sunday, April 18, 2010 @ 16:26:28
  Author: juergen
Revision: 77880

archrelease: remove extra-i686

Deleted:
  lxsession-lite/repos/extra-i686/



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

2010-04-18 Thread Juergen Hoetzel
Date: Sunday, April 18, 2010 @ 16:26:41
  Author: juergen
Revision: 77881

archrelease: copy trunk to extra-i686

Added:
  lxsession-lite/repos/extra-i686/



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

2010-04-18 Thread Juergen Hoetzel
Date: Sunday, April 18, 2010 @ 16:52:41
  Author: juergen
Revision: 77882

archrelease: remove extra-x86_64

Deleted:
  scummvm/repos/extra-x86_64/



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

2010-04-18 Thread Juergen Hoetzel
Date: Sunday, April 18, 2010 @ 16:52:52
  Author: juergen
Revision: 77883

archrelease: copy trunk to extra-x86_64

Added:
  scummvm/repos/extra-x86_64/



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

2010-04-18 Thread Juergen Hoetzel
Date: Sunday, April 18, 2010 @ 16:56:10
  Author: juergen
Revision: 77884

archrelease: remove extra-x86_64

Deleted:
  lxsession-lite/repos/extra-x86_64/



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

2010-04-18 Thread Juergen Hoetzel
Date: Sunday, April 18, 2010 @ 16:56:20
  Author: juergen
Revision: 77885

archrelease: copy trunk to extra-x86_64

Added:
  lxsession-lite/repos/extra-x86_64/



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

2010-04-18 Thread Dieter Plaetinck
Date: Sunday, April 18, 2010 @ 17:31:36
  Author: dieter
Revision: 77887

upgpkg: libui-sh 2010.04.18-1
bump version to 2010.04.18

Modified:
  libui-sh/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 21:31:27 UTC (rev 77886)
+++ PKGBUILD2010-04-18 21:31:36 UTC (rev 77887)
@@ -2,7 +2,7 @@
 # Maintainer: Dieter Plaetinck die...@plaetinck.be
 
 pkgname=libui-sh
-pkgver=2010.03.25
+pkgver=2010.04.18
 pkgrel=1
 pkgdesc=a shell library providing useful UI functions
 arch=('any')
@@ -11,7 +11,7 @@
 depends=('bash')
 optdepends=('dialog: for ncurses support')
 source=(ftp://ftp.archlinux.org/other/libui-sh/libui-sh-$pkgver.tar.gz)
-md5sums=('3572a6eb851d006da5f21d57507fa579')
+md5sums=('33b0ead79563255311df449f81220c22')
 
 build() {
 



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

2010-04-18 Thread Dieter Plaetinck
Date: Sunday, April 18, 2010 @ 17:31:37
  Author: dieter
Revision: 77888

archrelease: remove extra-any

Deleted:
  aif/repos/extra-any/



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

2010-04-18 Thread Dieter Plaetinck
Date: Sunday, April 18, 2010 @ 17:31:44
  Author: dieter
Revision: 77889

archrelease: remove extra-any

Deleted:
  libui-sh/repos/extra-any/



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

2010-04-18 Thread Dieter Plaetinck
Date: Sunday, April 18, 2010 @ 17:31:59
  Author: dieter
Revision: 77890

archrelease: copy trunk to extra-any

Added:
  aif/repos/extra-any/



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

2010-04-18 Thread Dieter Plaetinck
Date: Sunday, April 18, 2010 @ 17:32:03
  Author: dieter
Revision: 77891

archrelease: copy trunk to extra-any

Added:
  libui-sh/repos/extra-any/



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

2010-04-18 Thread Daniel Griffiths
Date: Sunday, April 18, 2010 @ 17:49:18
  Author: dgriffiths
Revision: 77892

added missing pkgdesc

Modified:
  vim/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 21:32:03 UTC (rev 77891)
+++ PKGBUILD2010-04-18 21:49:18 UTC (rev 77892)
@@ -112,6 +112,7 @@
 # Packaging #
 
 package_vim() {
+   pkgdesc='Vi Improved, a highly configurable, improved version of the vi 
text editor'
depends=(vim-runtime=${pkgver} 'gpm' 'coreutils' 'perl')
conflicts=('gvim')
 



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

2010-04-18 Thread Daniel Griffiths
Date: Sunday, April 18, 2010 @ 17:49:34
  Author: dgriffiths
Revision: 77894

archrelease: copy trunk to extra-i686

Added:
  vim/repos/extra-i686/



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

2010-04-18 Thread Daniel Griffiths
Date: Sunday, April 18, 2010 @ 17:49:46
  Author: dgriffiths
Revision: 77896

archrelease: copy trunk to extra-x86_64

Added:
  vim/repos/extra-x86_64/



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

2010-04-18 Thread Daniel Griffiths
Date: Sunday, April 18, 2010 @ 17:49:40
  Author: dgriffiths
Revision: 77895

archrelease: remove extra-x86_64

Deleted:
  vim/repos/extra-x86_64/



[arch-commits] Commit in commoncpp2/trunk (PKGBUILD commoncpp2-1.7.3-gcc44.patch)

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:46:54
  Author: andrea
Revision: 77897

upgpkg: commoncpp2 1.8.0-1
upstream release

Modified:
  commoncpp2/trunk/PKGBUILD
Deleted:
  commoncpp2/trunk/commoncpp2-1.7.3-gcc44.patch

--+
 PKGBUILD |   20 +++-
 commoncpp2-1.7.3-gcc44.patch |   21 -
 2 files changed, 11 insertions(+), 30 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-04-18 21:49:46 UTC (rev 77896)
+++ PKGBUILD2010-04-19 01:46:54 UTC (rev 77897)
@@ -1,27 +1,29 @@
 # $Id$
-# Maintainer: Jeff Mickey j...@archlinux.org
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Jeff Mickey j...@archlinux.org
 # Contributor: John Proctor jproc...@prium.net
 
 pkgname=commoncpp2
-pkgver=1.7.3
+pkgver=1.8.0
 pkgrel=1
 pkgdesc=GNU Common C++ 2
 arch=('i686' 'x86_64')
 url='http://www.gnu.org/software/commoncpp/'
 license=('GPL' 'custom')
-depends=('gcc-libs' 'zlib' 'bash')
+depends=('gcc-libs' 'zlib' 'sh')
 options=('!libtool' '!makeflags')
-source=(http://ftp.gnu.org/pub/gnu/commoncpp/${pkgname}-${pkgver}.tar.gz
-commoncpp2-1.7.3-gcc44.patch)
-md5sums=('ca741179a728d264eb276ae471ebaf70'
- '120dc19fa21b78a18caf2e1db8a66a97')
+source=(http://ftp.gnu.org/pub/gnu/commoncpp/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('502c34af4661ea77849ee1edc4a23042')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  patch -Np1 -i ${srcdir}/commoncpp2-1.7.3-gcc44.patch || return 1
   ./configure --prefix=/usr
   make || return 1
-  make DESTDIR=${pkgdir} install
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install || return 1
   
   gzip -9 ${pkgdir}/usr/share/info/commoncpp2.info
   rm ${pkgdir}/usr/share/info/dir

Deleted: commoncpp2-1.7.3-gcc44.patch
===
--- commoncpp2-1.7.3-gcc44.patch2010-04-18 21:49:46 UTC (rev 77896)
+++ commoncpp2-1.7.3-gcc44.patch2010-04-19 01:46:54 UTC (rev 77897)
@@ -1,21 +0,0 @@
-diff -up commoncpp2-1.7.3/src/cidr.cpp.orig commoncpp2-1.7.3/src/cidr.cpp
 commoncpp2-1.7.3/src/cidr.cpp.orig 2009-04-06 21:24:07.857718325 +0200
-+++ commoncpp2-1.7.3/src/cidr.cpp  2009-04-06 21:50:26.874088776 +0200
-@@ -202,7 +202,7 @@ void IPV4Cidr::set(const char *cp)
- #if defined(_MSC_VER)  _MSC_VER = 1500
-   ep = (char *)strchr(cp, '/');
- #else
--  ep = strchr(cp, '/');
-+  ep = (char *)strchr(cp, '/');
- #endif
- 
-   if(ep)
-@@ -332,7 +332,7 @@ void IPV6Cidr::set(const char *cp)
-   memset(netmask, 0, sizeof(netmask));
-   bitset((bit_t *)netmask, getMask(cp));
-   setString(cbuf, sizeof(cbuf), cp);
--  ep = strchr(cp, '/');
-+  ep = (char *)strchr(cp, '/');
-   if(ep)
-   *ep = 0;
- 



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:49:18
  Author: andrea
Revision: 77900

archrelease: remove extra-x86_64

Deleted:
  commoncpp2/repos/extra-x86_64/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:49:35
  Author: andrea
Revision: 77901

archrelease: copy trunk to extra-x86_64

Added:
  commoncpp2/repos/extra-x86_64/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:50:27
  Author: andrea
Revision: 77902

upgpkg: ccrtp 1.7.0-4
commoncpp2 soname bump

Modified:
  ccrtp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-19 01:49:35 UTC (rev 77901)
+++ PKGBUILD2010-04-19 01:50:27 UTC (rev 77902)
@@ -1,10 +1,11 @@
 # $Id$
-# Maintainer: Jeff Mickey j...@archlinux.org
+# Maintainer:
+# Contributor: Jeff Mickey j...@archlinux.org
 # Contributor: John Proctor jproc...@prium.net
 
 pkgname=ccrtp
 pkgver=1.7.0
-pkgrel=3
+pkgrel=4
 pkgdesc=GNU ccRTP
 arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/ccrtp;
@@ -15,14 +16,18 @@
 md5sums=('eb86cd2ac06af27ea60b1a349122605c')
 
 build() {
-  cd ${srcdir}/$pkgname-$pkgver
+  cd ${srcdir}/${pkgname}-${pkgver}
 
   # arch64 fix from Mandriva
   [ $CARCH == x86_64 ]  export CXXFLAGS=$CXXFLAGS -fpermissive
 
   ./configure --prefix=/usr
   make || return 1
-  make DESTDIR=${pkgdir} install
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install || return 1
   install -D -m644 COPYING.addendum 
${pkgdir}/usr/share/licenses/$pkgname/LICENSE
 
   rm -rf ${pkgdir}/usr/share/info/dir



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:50:36
  Author: andrea
Revision: 77903

archrelease: remove extra-i686

Deleted:
  ccrtp/repos/extra-i686/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:50:52
  Author: andrea
Revision: 77904

archrelease: copy trunk to extra-i686

Added:
  ccrtp/repos/extra-i686/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:51:00
  Author: andrea
Revision: 77905

archrelease: remove extra-x86_64

Deleted:
  ccrtp/repos/extra-x86_64/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:51:16
  Author: andrea
Revision: 77906

archrelease: copy trunk to extra-x86_64

Added:
  ccrtp/repos/extra-x86_64/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:51:20
  Author: andrea
Revision: 77907

upgpkg: ccscript3 1.1.7-2
commoncpp2 soname bump

Modified:
  ccscript3/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-19 01:51:16 UTC (rev 77906)
+++ PKGBUILD2010-04-19 01:51:20 UTC (rev 77907)
@@ -1,10 +1,11 @@
 # $Id$
-# Maintainer: arjan ar...@archlinux.org
+# Maintainer:
+# Contributor: arjan ar...@archlinux.org
 # Contributor: John Proctor jproc...@prium.net
 
 pkgname=ccscript3
 pkgver=1.1.7
-pkgrel=1
+pkgrel=2
 pkgdesc=GNU ccScript
 arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/ccscript;
@@ -23,5 +24,9 @@
   patch -Np1 -i ${srcdir}/ccscript3-1.1.7-gcc44.patch || return 1
   ./configure --prefix=/usr
   make || return 1
-  make DESTDIR=${pkgdir} install
 }
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install || return 1
+}



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:51:29
  Author: andrea
Revision: 77908

archrelease: remove extra-i686

Deleted:
  ccscript3/repos/extra-i686/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:51:45
  Author: andrea
Revision: 77909

archrelease: copy trunk to extra-i686

Added:
  ccscript3/repos/extra-i686/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:51:53
  Author: andrea
Revision: 77910

archrelease: remove extra-x86_64

Deleted:
  ccscript3/repos/extra-x86_64/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:52:09
  Author: andrea
Revision: 77911

archrelease: copy trunk to extra-x86_64

Added:
  ccscript3/repos/extra-x86_64/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:54:18
  Author: andrea
Revision: 77912

upgpkg: libzrtpcpp 1.4.2-4
commoncpp2 soname bump

Modified:
  libzrtpcpp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2010-04-19 01:52:09 UTC (rev 77911)
+++ PKGBUILD2010-04-19 01:54:18 UTC (rev 77912)
@@ -1,23 +1,28 @@
 # $Id$
-# Maintainer: Jeff Mickey j...@archlinux.org
+# Maintainer:
+# Contributor: Jeff Mickey j...@archlinux.org
 # Contributor: Michel Brabants michel.braba...@euphonynet.be
 
 pkgname=libzrtpcpp
 pkgver=1.4.2
-pkgrel=3
-pkgdesc=ZRTP is an extension to Real-time Transport Protocol (RTP) which 
describes a method of Diffie-Hellman key agreement for Secure Real-time 
Transport Protocol (SRTP).
+pkgrel=4
+pkgdesc=An extension to Real-time Transport Protocol (RTP) which describes a 
method of Diffie-Hellman key agreement for Secure Real-time Transport Protocol 
(SRTP)
 arch=('i686' 'x86_64')
 url=http://zfoneproject.com;
 license=('GPL')
-depends=('ccrtp=1.7.0')
+depends=('ccrtp')
 makedepends=('pkgconfig')
-options=(!libtool)
+options=('!libtool')
 source=(ftp://ftp.gnu.org/gnu/ccrtp/$pkgname-$pkgver.tar.gz)
+md5sums=('2360f0f8dc0ddab3e1691ee146c4b92e')
 
 build() {
-  cd ${srcdir}/$pkgname-$pkgver
+  cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --prefix=/usr
   make || return 1
-  make DESTDIR=${pkgdir} install
 }
-md5sums=('2360f0f8dc0ddab3e1691ee146c4b92e')
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install || return 1
+}



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:54:31
  Author: andrea
Revision: 77913

archrelease: remove extra-i686

Deleted:
  libzrtpcpp/repos/extra-i686/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:54:47
  Author: andrea
Revision: 77914

archrelease: copy trunk to extra-i686

Added:
  libzrtpcpp/repos/extra-i686/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:54:55
  Author: andrea
Revision: 77915

archrelease: remove extra-x86_64

Deleted:
  libzrtpcpp/repos/extra-x86_64/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:55:11
  Author: andrea
Revision: 77916

archrelease: copy trunk to extra-x86_64

Added:
  libzrtpcpp/repos/extra-x86_64/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:55:53
  Author: andrea
Revision: 77919

archrelease: copy trunk to extra-i686

Added:
  twinkle/repos/extra-i686/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:56:14
  Author: andrea
Revision: 77920

archrelease: remove extra-x86_64

Deleted:
  twinkle/repos/extra-x86_64/



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

2010-04-18 Thread Andrea Scarpino
Date: Sunday, April 18, 2010 @ 21:56:33
  Author: andrea
Revision: 77921

archrelease: copy trunk to extra-x86_64

Added:
  twinkle/repos/extra-x86_64/



  1   2   >