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

2011-02-22 Thread Jan Steffens
Date: Tuesday, February 22, 2011 @ 03:10:56
  Author: heftig
Revision: 110785

upgpkg: alsa-plugins 1.0.24-1
Update to 1.0.24

Modified:
  alsa-plugins/trunk/PKGBUILD
Deleted:
  alsa-plugins/trunk/Add_handle_underrun_option.patch
  alsa-plugins/trunk/Fix_invalid_buffer_pointer_return_value.patch

---+
 Add_handle_underrun_option.patch  |   86 
 Fix_invalid_buffer_pointer_return_value.patch |   75 
 PKGBUILD  |   17 +---
 3 files changed, 4 insertions(+), 174 deletions(-)

Deleted: Add_handle_underrun_option.patch
===
--- Add_handle_underrun_option.patch2011-02-22 07:49:26 UTC (rev 110784)
+++ Add_handle_underrun_option.patch2011-02-22 08:10:56 UTC (rev 110785)
@@ -1,86 +0,0 @@
-From: Takashi Iwai ti...@suse.de
-Date: Fri, 9 Jul 2010 12:05:03 + (+0200)
-Subject: pulse: Add handle_underrun option
-X-Git-Url: 
http://git.alsa-project.org/?p=alsa-plugins.git;a=commitdiff_plain;h=c20d516e229620129ee20175d8fee8511cc3a4bd
-
-pulse: Add handle_underrun option
-
-Added a config option handle_underrun to specify whether pulse plugin
-handles the underrun reported from PA.  The default value is now set to
-false, i.e. it will ignore underruns in PA (for good reasons below).
-You can take back to the old behavior by setting handle_underrun true.
-
-The original idea was brought by David Henningsson di...@ubuntu.com,
-while this patch is simplified and makes the behavior configurable.
-
-The reasons for avoiding underruns (cited from David's original patch):
-
- Reporting underruns to ALSA seems to do more bad than good, for these reasons:
- * If pulseaudio gets an underrun, the normal way to end that underrun is to
-   feed it with more buffers. This is different from the ALSA way of dealing
-   with underruns, which requires hardware buffer pointers to be reset.
- * In addition, underrun signals are delivered asynchronously from pulseaudio.
-   This means that there might be more buffers on the way to pulseaudio when
-   the underrun is reported, making the underrun obsolete. Unfortunately,
-   there is currently no known way to determine whether this is the case or
-   not.
-
-Signed-off-by: Takashi Iwai ti...@suse.de

-
-diff --git a/pulse/pcm_pulse.c b/pulse/pcm_pulse.c
-index b322898..2df0a80 100644
 a/pulse/pcm_pulse.c
-+++ b/pulse/pcm_pulse.c
-@@ -39,6 +39,7 @@ typedef struct snd_pcm_pulse {
-   size_t last_size;
-   size_t ptr;
-   int underrun;
-+  int handle_underrun;
- 
-   size_t offset;
- 
-@@ -696,8 +697,9 @@ static int pulse_prepare(snd_pcm_ioplug_t * io)
-   if (io-stream == SND_PCM_STREAM_PLAYBACK) {
-   pa_stream_set_write_callback(pcm-stream,
-stream_request_cb, pcm);
--  pa_stream_set_underflow_callback(pcm-stream,
--   stream_underrun_cb, pcm);
-+  if (pcm-handle_underrun)
-+  pa_stream_set_underflow_callback(pcm-stream,
-+   stream_underrun_cb, 
pcm);
-   r = pa_stream_connect_playback(pcm-stream, pcm-device,
-  pcm-buffer_attr,
-  PA_STREAM_AUTO_TIMING_UPDATE |
-@@ -980,6 +982,7 @@ SND_PCM_PLUGIN_DEFINE_FUNC(pulse)
-   snd_config_iterator_t i, next;
-   const char *server = NULL;
-   const char *device = NULL;
-+  int handle_underrun = 0;
-   int err;
-   snd_pcm_pulse_t *pcm;
- 
-@@ -1005,6 +1008,14 @@ SND_PCM_PLUGIN_DEFINE_FUNC(pulse)
-   }
-   continue;
-   }
-+  if (strcmp(id, handle_underrun) == 0) {
-+  if ((err = snd_config_get_bool(n))  0) {
-+  SNDERR(Invalid value for %s, id);
-+  return -EINVAL;
-+  }
-+  handle_underrun = err;
-+  continue;
-+  }
-   SNDERR(Unknown field %s, id);
-   return -EINVAL;
-   }
-@@ -1028,6 +1039,8 @@ SND_PCM_PLUGIN_DEFINE_FUNC(pulse)
-   goto error;
-   }
- 
-+  pcm-handle_underrun = handle_underrun;
-+
-   err = pulse_connect(pcm-p, server);
-   if (err  0)
-   goto error;

Deleted: Fix_invalid_buffer_pointer_return_value.patch
===
--- Fix_invalid_buffer_pointer_return_value.patch   2011-02-22 07:49:26 UTC 
(rev 110784)
+++ Fix_invalid_buffer_pointer_return_value.patch   2011-02-22 08:10:56 UTC 
(rev 110785)
@@ -1,75 +0,0 @@
-From: David Henningsson di...@ubuntu.com
-Date: Sat, 9 Jan 2010 08:09:14 + (+0100)
-Subject: pulse: Fix invalid buffer 

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

2011-02-22 Thread Jan Steffens
Date: Tuesday, February 22, 2011 @ 03:11:03
  Author: heftig
Revision: 110786

archrelease: remove extra-i686

Deleted:
  alsa-plugins/repos/extra-i686/



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

2011-02-22 Thread Jan Steffens
Date: Tuesday, February 22, 2011 @ 03:11:20
  Author: heftig
Revision: 110787

archrelease: copy trunk to extra-i686

Added:
  alsa-plugins/repos/extra-i686/



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

2011-02-22 Thread Jan Steffens
Date: Tuesday, February 22, 2011 @ 03:11:27
  Author: heftig
Revision: 110788

archrelease: remove extra-x86_64

Deleted:
  alsa-plugins/repos/extra-x86_64/



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

2011-02-22 Thread Jan Steffens
Date: Tuesday, February 22, 2011 @ 03:11:43
  Author: heftig
Revision: 110789

archrelease: copy trunk to extra-x86_64

Added:
  alsa-plugins/repos/extra-x86_64/



[arch-commits] Commit in (4 files)

2011-02-22 Thread Tobias Powalowski
Date: Tuesday, February 22, 2011 @ 03:32:39
  Author: tpowa
Revision: 110790

newpkg: replece util-linux-ng

Added:
  util-linux/
  util-linux/repos/
  util-linux/trunk/
  util-linux/trunk/PKGBUILD

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

Added: util-linux/trunk/PKGBUILD
===
--- util-linux/trunk/PKGBUILD   (rev 0)
+++ util-linux/trunk/PKGBUILD   2011-02-22 08:32:39 UTC (rev 110790)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: judd jvi...@zeroflux.org
+pkgname=util-linux
+pkgver=2.19
+pkgrel=1
+pkgdesc=Miscellaneous system utilities for Linux
+url=http://userweb.kernel.org/~kzak/util-linux-ng/;
+arch=('i686' 'x86_64')
+groups=('base')
+depends=('bash' 'ncurses=5.7' 'zlib' 'filesystem')
+replaces=('linux32' 'util-linux-ng')
+conflicts=('linux32' 'util-linux-ng' 'e2fsprogs1.41.8-2')
+provides=('linux32' 'util-linux-ng')
+license=('GPL2')
+options=('!libtool')
+source=(ftp://ftp.kernel.org/pub/linux/utils/${pkgname}/v2.19/${pkgname}-${pkgver}.tar.bz2)
+optdepends=('perl: for chkdupexe support')
+install=util-linux-ng.install
+md5sums=('590ca71aad0b254e2631d84401f28255')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  # hardware clock
+  sed -e 's%etc/adjtime%var/lib/hwclock/adjtime%' -i hwclock/hwclock.c
+  autoreconf
+  automake
+  ./configure --enable-arch --enable-write --enable-raw --disable-wall 
--enable-rdev --enable-partx --enable-libmount-mount
+  make HAVE_SLN=yes ADD_RAW=yes
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  mkdir -p ${pkgdir}/var/lib/hwclock
+  make HAVE_SLN=yes ADD_RAW=yes DESTDIR=${pkgdir} install
+  # remove files
+  rm -f ${pkgdir}/bin/kill
+  rm -f ${pkgdir}/usr/share/man/man1/kill.1
+  rm -f ${pkgdir}/usr/share/man/man5/nfs.5
+  rm -f ${pkgdir}/usr/share/info/dir
+}


Property changes on: util-linux/trunk/PKGBUILD
___
Added: svn:keywords
   + Id



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

2011-02-22 Thread Tobias Powalowski
Date: Tuesday, February 22, 2011 @ 03:33:42
  Author: tpowa
Revision: 110791

archrelease: copy trunk to testing-x86_64

Added:
  util-linux/repos/testing-x86_64/



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

2011-02-22 Thread Tobias Powalowski
Date: Tuesday, February 22, 2011 @ 03:35:16
  Author: tpowa
Revision: 110792

archrelease: copy trunk to testing-i686

Added:
  util-linux/repos/testing-i686/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 04:43:04
  Author: ibiru
Revision: 110793

upgpkg: util-linux 2.19-2
fix provider and add missing .install

Added:
  util-linux/trunk/util-linux.install
Modified:
  util-linux/trunk/PKGBUILD

+
 PKGBUILD   |6 +++---
 util-linux.install |   21 +
 2 files changed, 24 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 08:35:16 UTC (rev 110792)
+++ PKGBUILD2011-02-22 09:43:04 UTC (rev 110793)
@@ -2,7 +2,7 @@
 # Maintainer: judd jvi...@zeroflux.org
 pkgname=util-linux
 pkgver=2.19
-pkgrel=1
+pkgrel=2
 pkgdesc=Miscellaneous system utilities for Linux
 url=http://userweb.kernel.org/~kzak/util-linux-ng/;
 arch=('i686' 'x86_64')
@@ -10,12 +10,12 @@
 depends=('bash' 'ncurses=5.7' 'zlib' 'filesystem')
 replaces=('linux32' 'util-linux-ng')
 conflicts=('linux32' 'util-linux-ng' 'e2fsprogs1.41.8-2')
-provides=('linux32' 'util-linux-ng')
+provides=('linux32' util-linux-ng=${pkgver})
 license=('GPL2')
 options=('!libtool')
 
source=(ftp://ftp.kernel.org/pub/linux/utils/${pkgname}/v2.19/${pkgname}-${pkgver}.tar.bz2)
 optdepends=('perl: for chkdupexe support')
-install=util-linux-ng.install
+install=util-linux.install
 md5sums=('590ca71aad0b254e2631d84401f28255')
 
 build() {

Added: util-linux.install
===
--- util-linux.install  (rev 0)
+++ util-linux.install  2011-02-22 09:43:04 UTC (rev 110793)
@@ -0,0 +1,21 @@
+infodir=/usr/share/info
+filelist=(ipc.info.gz)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+usr/bin/install-info $infodir/$file $infodir/dir 2 /dev/null
+ done
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+pre_remove() {
+ [ -x usr/bin/install-info ] || return 0
+  for file in ${filelist[@]}; do
+usr/bin/install-info --delete $infodir/$file $infodir/dir 2 /dev/null
+  done
+}
+



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 04:43:13
  Author: ibiru
Revision: 110794

archrelease: remove testing-i686

Deleted:
  util-linux/repos/testing-i686/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 04:43:28
  Author: ibiru
Revision: 110795

archrelease: copy trunk to testing-i686

Added:
  util-linux/repos/testing-i686/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 04:43:35
  Author: ibiru
Revision: 110796

archrelease: remove testing-x86_64

Deleted:
  util-linux/repos/testing-x86_64/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 04:43:49
  Author: ibiru
Revision: 110797

archrelease: copy trunk to testing-x86_64

Added:
  util-linux/repos/testing-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 05:22:32
  Author: bisson
Revision: 110799

archrelease: remove extra-i686

Deleted:
  fontforge/repos/extra-i686/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 05:22:38
  Author: bisson
Revision: 110800

archrelease: copy trunk to extra-i686

Added:
  fontforge/repos/extra-i686/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 05:22:45
  Author: bisson
Revision: 110801

archrelease: remove extra-x86_64

Deleted:
  fontforge/repos/extra-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 05:22:51
  Author: bisson
Revision: 110802

archrelease: copy trunk to extra-x86_64

Added:
  fontforge/repos/extra-x86_64/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 06:09:53
  Author: ibiru
Revision: 110803

upgpkg: util-linux 2.19-3
clean up PKGBUILD, remove unknow option --enable-rdev, remove .install since 
ipc.texi(used to generate ipc.info) was removed

Modified:
  util-linux/trunk/PKGBUILD
Deleted:
  util-linux/trunk/util-linux.install

+
 PKGBUILD   |8 ++--
 util-linux.install |   21 -
 2 files changed, 2 insertions(+), 27 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 10:22:51 UTC (rev 110802)
+++ PKGBUILD2011-02-22 11:09:53 UTC (rev 110803)
@@ -2,7 +2,7 @@
 # Maintainer: judd jvi...@zeroflux.org
 pkgname=util-linux
 pkgver=2.19
-pkgrel=2
+pkgrel=3
 pkgdesc=Miscellaneous system utilities for Linux
 url=http://userweb.kernel.org/~kzak/util-linux-ng/;
 arch=('i686' 'x86_64')
@@ -15,16 +15,13 @@
 options=('!libtool')
 
source=(ftp://ftp.kernel.org/pub/linux/utils/${pkgname}/v2.19/${pkgname}-${pkgver}.tar.bz2)
 optdepends=('perl: for chkdupexe support')
-install=util-linux.install
 md5sums=('590ca71aad0b254e2631d84401f28255')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
   # hardware clock
   sed -e 's%etc/adjtime%var/lib/hwclock/adjtime%' -i hwclock/hwclock.c
-  autoreconf
-  automake
-  ./configure --enable-arch --enable-write --enable-raw --disable-wall 
--enable-rdev --enable-partx --enable-libmount-mount
+  ./configure --enable-arch --enable-write --enable-raw --disable-wall 
--enable-partx --enable-libmount-mount
   make HAVE_SLN=yes ADD_RAW=yes
 }
 
@@ -36,5 +33,4 @@
   rm -f ${pkgdir}/bin/kill
   rm -f ${pkgdir}/usr/share/man/man1/kill.1
   rm -f ${pkgdir}/usr/share/man/man5/nfs.5
-  rm -f ${pkgdir}/usr/share/info/dir
 }

Deleted: util-linux.install
===
--- util-linux.install  2011-02-22 10:22:51 UTC (rev 110802)
+++ util-linux.install  2011-02-22 11:09:53 UTC (rev 110803)
@@ -1,21 +0,0 @@
-infodir=/usr/share/info
-filelist=(ipc.info.gz)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
-usr/bin/install-info $infodir/$file $infodir/dir 2 /dev/null
- done
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
-  for file in ${filelist[@]}; do
-usr/bin/install-info --delete $infodir/$file $infodir/dir 2 /dev/null
-  done
-}
-



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 06:10:01
  Author: ibiru
Revision: 110804

archrelease: remove testing-i686

Deleted:
  util-linux/repos/testing-i686/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 06:19:08
  Author: ibiru
Revision: 110805

archrelease: copy trunk to testing-i686

Added:
  util-linux/repos/testing-i686/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 06:19:18
  Author: ibiru
Revision: 110806

archrelease: remove testing-x86_64

Deleted:
  util-linux/repos/testing-x86_64/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 06:19:33
  Author: ibiru
Revision: 110807

archrelease: copy trunk to testing-x86_64

Added:
  util-linux/repos/testing-x86_64/



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

2011-02-22 Thread Allan McRae
Date: Tuesday, February 22, 2011 @ 07:39:48
  Author: allan
Revision: 110808

db-move: wget removed by allan for move to [core] (i686)

Deleted:
  wget/repos/core-i686/



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

2011-02-22 Thread Allan McRae
Date: Tuesday, February 22, 2011 @ 07:39:49
  Author: allan
Revision: 110809

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

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



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

2011-02-22 Thread Allan McRae
Date: Tuesday, February 22, 2011 @ 07:39:50
  Author: allan
Revision: 110810

db-move: wget removed by allan for move to [core] (x86_64)

Deleted:
  wget/repos/core-x86_64/



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

2011-02-22 Thread Allan McRae
Date: Tuesday, February 22, 2011 @ 07:39:51
  Author: allan
Revision: 110811

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

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



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

2011-02-22 Thread andyrtr
Date: Tuesday, February 22, 2011 @ 11:15:44
  Author: andyrtr
Revision: 110812

db-move: redland removed by andyrtr for move to [extra] (i686)

Deleted:
  redland/repos/extra-i686/



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

2011-02-22 Thread andyrtr
Date: Tuesday, February 22, 2011 @ 11:15:45
  Author: andyrtr
Revision: 110813

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

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



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

2011-02-22 Thread andyrtr
Date: Tuesday, February 22, 2011 @ 11:15:46
  Author: andyrtr
Revision: 110814

db-move: redland removed by andyrtr for move to [extra] (x86_64)

Deleted:
  redland/repos/extra-x86_64/



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

2011-02-22 Thread andyrtr
Date: Tuesday, February 22, 2011 @ 11:15:47
  Author: andyrtr
Revision: 110815

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

Added:
  redland/repos/extra-x86_64/
Deleted:
  redland/repos/testing-x86_64/



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

2011-02-22 Thread andyrtr
Date: Tuesday, February 22, 2011 @ 11:52:20
  Author: andyrtr
Revision: 110816

make it build against new raptor/rasqal/redland packages

Modified:
  soprano/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 16:15:47 UTC (rev 110815)
+++ PKGBUILD2011-02-22 16:52:20 UTC (rev 110816)
@@ -4,13 +4,13 @@
 
 pkgname=soprano
 pkgver=2.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A library which provides a highly usable object-oriented C++/Qt4 
framework for RDF data'
 arch=('i686' 'x86_64')
 url='http://soprano.sourceforge.net/'
 license=('GPL' 'LGPL')
-depends=('qt' 'clucene' 'redland' 'libiodbc' 'virtuoso')
-makedepends=('cmake' 'openjdk6' 'postgresql-libs' 'libmysqlclient' 'unixodbc')
+depends=('qt' 'clucene' 'redland-storage-virtuoso=1.0.13' 'raptor1' 
'libiodbc' 'virtuoso')
+makedepends=('cmake' 'openjdk6' 'postgresql-libs' 'libmysqlclient' 'unixodbc' 
'doxygen')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
 md5sums=('03ae49e87c6ec99e57d0433c2650846f')
 



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

2011-02-22 Thread Andrea Scarpino
Date: Tuesday, February 22, 2011 @ 13:04:04
  Author: andrea
Revision: 110817

Fix to install the library into /usr/lib/python3.2

Modified:
  qscintilla/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 16:52:20 UTC (rev 110816)
+++ PKGBUILD2011-02-22 18:04:04 UTC (rev 110817)
@@ -5,7 +5,7 @@
 pkgbase=qscintilla
 pkgname=('qscintilla' 'python-qscintilla')
 pkgver=2.4.6
-pkgrel=7
+pkgrel=8
 license=('GPL')
 arch=('i686' 'x86_64')
 url=http://www.riverbankcomputing.co.uk/software/qscintilla/intro;
@@ -50,5 +50,5 @@
 
 cd ${srcdir}/QScintilla-gpl-${pkgver}/Python
 install -Dm755 Qsci.so \
-  ${pkgdir}/usr/lib/python3.1/site-packages/PyQt4/Qsci.so
+  ${pkgdir}/usr/lib/python3.2/site-packages/PyQt4/Qsci.so
 }



[arch-commits] Commit in qscintilla/repos (staging-i686)

2011-02-22 Thread Andrea Scarpino
Date: Tuesday, February 22, 2011 @ 13:07:12
  Author: andrea
Revision: 110818

archrelease: remove staging-i686

Deleted:
  qscintilla/repos/staging-i686/



[arch-commits] Commit in qscintilla/repos (staging-i686)

2011-02-22 Thread Andrea Scarpino
Date: Tuesday, February 22, 2011 @ 13:07:28
  Author: andrea
Revision: 110819

archrelease: copy trunk to staging-i686

Added:
  qscintilla/repos/staging-i686/



[arch-commits] Commit in qscintilla/repos (staging-x86_64)

2011-02-22 Thread Andrea Scarpino
Date: Tuesday, February 22, 2011 @ 13:07:41
  Author: andrea
Revision: 110820

archrelease: remove staging-x86_64

Deleted:
  qscintilla/repos/staging-x86_64/



[arch-commits] Commit in qscintilla/repos (staging-x86_64)

2011-02-22 Thread Andrea Scarpino
Date: Tuesday, February 22, 2011 @ 13:07:55
  Author: andrea
Revision: 110821

archrelease: copy trunk to staging-x86_64

Added:
  qscintilla/repos/staging-x86_64/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:21:20
  Author: ibiru
Revision: 110822

upgpkg: gtk2 2.24.1-1
update to 2.24.1

Modified:
  gtk2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 18:07:55 UTC (rev 110821)
+++ PKGBUILD2011-02-22 18:21:20 UTC (rev 110822)
@@ -3,7 +3,7 @@
 
 pkgbase=gtk2
 pkgname=('gtk2' 'gtk-update-icon-cache')
-pkgver=2.24.0
+pkgver=2.24.1
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.gtk.org/;
@@ -13,7 +13,7 @@
 license=('LGPL')
 source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/2.24/gtk+-${pkgver}.tar.bz2
 xid-collision-debug.patch old-icon-symlinks.patch)
-sha256sums=('cbed1a7b8cd1e471388a00f22557dd061334698a0c1aece11b7ed6541d115606'
+sha256sums=('0e2f94dfeb82ffb73640e17a411b9d62851dc4b2e147d90a24f94c1bfc0491ed'
 'd758bb93e59df15a4ea7732cf984d1c3c19dff67c94b957575efea132b8fe558'
 '1298e4103f71d0304378f1e7503011150f6f68398ae8ebae5522a48feaea7c0d')
 



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:21:35
  Author: ibiru
Revision: 110823

archrelease: remove gnome-unstable-i686

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



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:21:49
  Author: ibiru
Revision: 110824

archrelease: copy trunk to gnome-unstable-i686

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



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:22:04
  Author: ibiru
Revision: 110825

archrelease: remove gnome-unstable-x86_64

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



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:22:18
  Author: ibiru
Revision: 110826

archrelease: copy trunk to gnome-unstable-x86_64

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



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:32:26
  Author: ibiru
Revision: 110828

archrelease: remove gnome-unstable-i686

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



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:33:06
  Author: ibiru
Revision: 110829

archrelease: copy trunk to gnome-unstable-i686

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



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:33:16
  Author: ibiru
Revision: 110830

archrelease: remove gnome-unstable-x86_64

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



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:33:31
  Author: ibiru
Revision: 110831

archrelease: copy trunk to gnome-unstable-x86_64

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



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:34:58
  Author: ibiru
Revision: 110832

upgpkg: glib-networking 2.28.0-1
update to 2.28.0

Modified:
  glib-networking/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 18:33:31 UTC (rev 110831)
+++ PKGBUILD2011-02-22 18:34:58 UTC (rev 110832)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Jan heftig Steffens jan.steff...@gmail.com
 pkgname=glib-networking
-pkgver=2.27.90
+pkgver=2.28.0
 pkgrel=1
 pkgdesc=Network-related giomodules for glib
 arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@
 options=('!libtool')
 install=glib-networking.install
 
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-${pkgver}.tar.bz2)
-sha256sums=('828b7d13d14f401b849bde5c31e92e7ecd7c7db9c4ce4ec47b7025fb63600469')
+sha256sums=('078c7749ff915804979a100343d2de191942ba6914c5cf68862200141fefbfe3')
 
 build() {
   cd $srcdir/$pkgname-$pkgver



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:35:04
  Author: ibiru
Revision: 110833

archrelease: remove gnome-unstable-i686

Deleted:
  glib-networking/repos/gnome-unstable-i686/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:35:18
  Author: ibiru
Revision: 110834

archrelease: copy trunk to gnome-unstable-i686

Added:
  glib-networking/repos/gnome-unstable-i686/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:35:24
  Author: ibiru
Revision: 110835

archrelease: remove gnome-unstable-x86_64

Deleted:
  glib-networking/repos/gnome-unstable-x86_64/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:35:37
  Author: ibiru
Revision: 110836

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  glib-networking/repos/gnome-unstable-x86_64/



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

2011-02-22 Thread Vesa Kaihlavirta
Date: Tuesday, February 22, 2011 @ 13:42:08
  Author: vesa
Revision: 110837

FS#22314 

Modified:
  erlang/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 18:35:37 UTC (rev 110836)
+++ PKGBUILD2011-02-22 18:42:08 UTC (rev 110837)
@@ -4,7 +4,7 @@
 
 pkgname=erlang
 pkgver=R14B
-pkgrel=1
+pkgrel=2
 pkgdesc=A small concurrent functional programming language developed by 
Ericsson.
 arch=(i686 x86_64)
 url=http://www.erlang.org/index.html;
@@ -27,7 +27,7 @@
 
   sed -i '/SSL_DYNAMIC_ONLY=/s:no:yes:' erts/configure || return 1
 
-  CFLAGS=${CFLAGS} -fno-strict-aliasing ./configure --prefix=/usr 
--enable-smp-support --enable-threads || return 1
+  CFLAGS=${CFLAGS} -fno-strict-aliasing ./configure 
--enable-ethread-pre-pentium4-compatibility 
enable_ethread_pre_pentium4_compatibilit=yes --prefix=/usr --enable-smp-support 
--enable-threads || return 1
   make || return 1
   make INSTALL_PREFIX=$pkgdir install || return 1
 



[arch-commits] Commit in erlang/repos (community-i686)

2011-02-22 Thread Vesa Kaihlavirta
Date: Tuesday, February 22, 2011 @ 13:43:50
  Author: vesa
Revision: 110838

archrelease: copy trunk to community-i686

Added:
  erlang/repos/community-i686/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:44:58
  Author: ibiru
Revision: 110839

upgpkg: gsettings-desktop-schemas 0.1.7-1
update to 0.1.7

Modified:
  gsettings-desktop-schemas/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 18:43:50 UTC (rev 110838)
+++ PKGBUILD2011-02-22 18:44:58 UTC (rev 110839)
@@ -4,8 +4,8 @@
 # Contributor: Adam Hani Schakaki (krzd) k...@krzd.net
 
 pkgname=gsettings-desktop-schemas
-pkgver=0.1.5
-pkgrel=2
+pkgver=0.1.7
+pkgrel=1
 pkgdesc=Shared GSettings schemas for the desktop
 arch=('any')
 url=http://live.gnome.org/;
@@ -14,7 +14,7 @@
 makedepends=('intltool')
 install=$pkgname.install
 
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.1/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('8eeb092bae065da866cc7160f97c9d2357b2d7b23e2fdff1e1205524f8cdbb78')
+sha256sums=('89f4e54d0b651a216d021cec55fb3f9115b94aab9dc1c023de89c0fff69f1923')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:45:04
  Author: ibiru
Revision: 110840

archrelease: remove gnome-unstable-any

Deleted:
  gsettings-desktop-schemas/repos/gnome-unstable-any/



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

2011-02-22 Thread Ionut Biru
Date: Tuesday, February 22, 2011 @ 13:45:17
  Author: ibiru
Revision: 110841

archrelease: copy trunk to gnome-unstable-any

Added:
  gsettings-desktop-schemas/repos/gnome-unstable-any/



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

2011-02-22 Thread Andrea Scarpino
Date: Tuesday, February 22, 2011 @ 13:49:12
  Author: andrea
Revision: 110842

disable the RedLand backend

Modified:
  soprano/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 18:45:17 UTC (rev 110841)
+++ PKGBUILD2011-02-22 18:49:12 UTC (rev 110842)
@@ -23,7 +23,8 @@
   cmake ../${pkgname}-${pkgver} \
 -DCMAKE_BUILD_TYPE=Release \
 -DCMAKE_SKIP_RPATH=OFF \
--DCMAKE_INSTALL_PREFIX=/usr
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DSOPRANO_DISABLE_REDLAND_BACKEND=ON
   make
 }
 



[arch-commits] Commit in erlang/repos (community-x86_64)

2011-02-22 Thread Vesa Kaihlavirta
Date: Tuesday, February 22, 2011 @ 13:52:53
  Author: vesa
Revision: 110843

archrelease: copy trunk to community-x86_64

Added:
  erlang/repos/community-x86_64/



[arch-commits] Commit in erlang/repos (community-i686)

2011-02-22 Thread Vesa Kaihlavirta
Date: Tuesday, February 22, 2011 @ 13:54:32
  Author: vesa
Revision: 110844

archrelease: remove community-i686

Deleted:
  erlang/repos/community-i686/



[arch-commits] Commit in erlang/repos (community-i686)

2011-02-22 Thread Vesa Kaihlavirta
Date: Tuesday, February 22, 2011 @ 13:54:46
  Author: vesa
Revision: 110845

archrelease: copy trunk to community-i686

Added:
  erlang/repos/community-i686/



[arch-commits] Commit in erlang/repos (community-x86_64)

2011-02-22 Thread Vesa Kaihlavirta
Date: Tuesday, February 22, 2011 @ 13:54:51
  Author: vesa
Revision: 110846

archrelease: remove community-x86_64

Deleted:
  erlang/repos/community-x86_64/



[arch-commits] Commit in erlang/repos (community-x86_64)

2011-02-22 Thread Vesa Kaihlavirta
Date: Tuesday, February 22, 2011 @ 13:55:09
  Author: vesa
Revision: 110847

archrelease: copy trunk to community-x86_64

Added:
  erlang/repos/community-x86_64/



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

2011-02-22 Thread Vesa Kaihlavirta
Date: Tuesday, February 22, 2011 @ 13:57:41
  Author: vesa
Revision: 110848

archrelease: remove extra-i686

Deleted:
  erlang/repos/extra-i686/



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

2011-02-22 Thread Vesa Kaihlavirta
Date: Tuesday, February 22, 2011 @ 13:57:57
  Author: vesa
Revision: 110849

archrelease: copy trunk to extra-i686

Added:
  erlang/repos/extra-i686/



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

2011-02-22 Thread Vesa Kaihlavirta
Date: Tuesday, February 22, 2011 @ 13:58:31
  Author: vesa
Revision: 110850

archrelease: remove extra-x86_64

Deleted:
  erlang/repos/extra-x86_64/



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

2011-02-22 Thread Vesa Kaihlavirta
Date: Tuesday, February 22, 2011 @ 13:58:44
  Author: vesa
Revision: 110851

archrelease: copy trunk to extra-x86_64

Added:
  erlang/repos/extra-x86_64/



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

2011-02-22 Thread Stéphane Gaudreault
Date: Tuesday, February 22, 2011 @ 14:08:48
  Author: stephane
Revision: 110852

upgpkg: wget 1.12-6
Add support for IRIs (fix FS#22833)

Modified:
  wget/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 18:58:44 UTC (rev 110851)
+++ PKGBUILD2011-02-22 19:08:48 UTC (rev 110852)
@@ -4,13 +4,13 @@
 
 pkgname=wget
 pkgver=1.12
-pkgrel=5
+pkgrel=6
 pkgdesc=A network utility to retrieve files from the Web
 arch=('i686' 'x86_64')
 url=http://www.gnu.org/software/wget/wget.html;
 license=('GPL3')
 groups=('base')
-depends=('glibc' 'openssl')
+depends=('glibc' 'openssl' 'gettext' 'libidn')
 optdepends=('ca-certificates: HTTPS downloads')
 backup=('etc/wgetrc')
 install=wget.install
@@ -25,7 +25,7 @@
   # Fix arbitrary file overwrite via 3xx redirect (CVE-2010-2252)
   patch -Np1 -i ../wget-1.12-CVE-2010-2252.patch
 
-  ./configure -with-ssl --prefix=/usr --sysconfdir=/etc
+  ./configure -with-ssl --prefix=/usr --sysconfdir=/etc --enable-nls
   make
 }
 



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

2011-02-22 Thread Stéphane Gaudreault
Date: Tuesday, February 22, 2011 @ 14:08:58
  Author: stephane
Revision: 110853

archrelease: copy trunk to testing-i686

Added:
  wget/repos/testing-i686/



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

2011-02-22 Thread Stéphane Gaudreault
Date: Tuesday, February 22, 2011 @ 14:09:06
  Author: stephane
Revision: 110854

archrelease: copy trunk to testing-x86_64

Added:
  wget/repos/testing-x86_64/



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

2011-02-22 Thread Tobias Powalowski
Date: Tuesday, February 22, 2011 @ 14:17:39
  Author: tpowa
Revision: 110855

upgpkg: qemu-kvm 0.14.0-1
bump to latest version

Modified:
  qemu-kvm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 19:09:06 UTC (rev 110854)
+++ PKGBUILD2011-02-22 19:17:39 UTC (rev 110855)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tobias Powalowski tp...@archlinux.org
 pkgname=qemu-kvm
-pkgver=0.13.0
+pkgver=0.14.0
 pkgrel=1
 pkgdesc=Latest KVM QEMU is a generic and open source processor emulator which 
achieves a good emulation speed by using dynamic translation.
 arch=(i686 x86_64)
@@ -27,6 +27,10 @@
 --audio-card-list=ac97,sb16,es1370,adlib \
 --enable-docs
 make
+}
+package()
+{
+cd ${srcdir}/${pkgname}-${pkgver}
 make DESTDIR=${pkgdir} install
 # symbolic link for backwards compatibility
 ln -s qemu-system-x86_64 ${pkgdir}/usr/bin/qemu-kvm
@@ -41,5 +45,5 @@
 install -D -m644 ${srcdir}/65-kvm.rules \
  ${pkgdir}/lib/udev/rules.d/65-kvm.rules
 }
-md5sums=('68d100da381284a3dee486d3b9690e6d'
+md5sums=('4ea6f412d85a826e0b0690f5c4c59f13'
  'b316a066d2f1bb57d8f5b7ea1d0d1caf')



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

2011-02-22 Thread Tobias Powalowski
Date: Tuesday, February 22, 2011 @ 14:18:00
  Author: tpowa
Revision: 110856

archrelease: remove extra-i686

Deleted:
  qemu-kvm/repos/extra-i686/



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

2011-02-22 Thread Tobias Powalowski
Date: Tuesday, February 22, 2011 @ 14:18:16
  Author: tpowa
Revision: 110857

archrelease: copy trunk to extra-i686

Added:
  qemu-kvm/repos/extra-i686/



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

2011-02-22 Thread Tobias Powalowski
Date: Tuesday, February 22, 2011 @ 14:18:36
  Author: tpowa
Revision: 110858

archrelease: remove extra-x86_64

Deleted:
  qemu-kvm/repos/extra-x86_64/



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

2011-02-22 Thread Tobias Powalowski
Date: Tuesday, February 22, 2011 @ 14:18:55
  Author: tpowa
Revision: 110859

archrelease: copy trunk to extra-x86_64

Added:
  qemu-kvm/repos/extra-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:11:47
  Author: bisson
Revision: 110860

various cleanup

Modified:
  anthy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 19:18:55 UTC (rev 110859)
+++ PKGBUILD2011-02-22 20:11:47 UTC (rev 110860)
@@ -1,27 +1,27 @@
 # $Id$
 # Contributor: damir da...@archlinux.org
-# Maintainer: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=anthy
 pkgver=9100h
 _filecode=37536
-pkgrel=1
+pkgrel=2
 pkgdesc='Hiragana text to Kana Kanji mixed text Japanese input method'
 arch=('i686' 'x86_64')
 url='http://sourceforge.jp/projects/anthy/'
 license=('LGPL' 'GPL')
-depends=('glibc')
-options=('!libtool' 'force')
+options=('!libtool')
 
source=(http://downloads.sourceforge.jp/anthy/${_filecode}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('1f558ff7ed296787b55bb1c6cf131108')
+sha1sums=('bfea9e74e208c4b976b6bd7ac6784cd290c636fd')
 
 build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr --sysconfdir=/etc || return 1
-   make EMACS=emacs sysconfdir=/etc || return 1
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+   make
 }
 
 package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make EMACS=emacs DESTDIR=${pkgdir} install || return 1
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make EMACS=emacs DESTDIR=${pkgdir} install
 }



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:12:07
  Author: bisson
Revision: 110861

archrelease: remove extra-i686

Deleted:
  anthy/repos/extra-i686/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:12:13
  Author: bisson
Revision: 110862

archrelease: copy trunk to extra-i686

Added:
  anthy/repos/extra-i686/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:12:29
  Author: bisson
Revision: 110863

archrelease: remove extra-x86_64

Deleted:
  anthy/repos/extra-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:12:35
  Author: bisson
Revision: 110864

archrelease: copy trunk to extra-x86_64

Added:
  anthy/repos/extra-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:12:38
  Author: bisson
Revision: 110865

various cleanup

Modified:
  libchewing/trunk/PKGBUILD

--+
 PKGBUILD |   33 ++---
 1 file changed, 18 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 20:12:35 UTC (rev 110864)
+++ PKGBUILD2011-02-22 20:12:38 UTC (rev 110865)
@@ -1,23 +1,26 @@
 # $Id$
-# Maintainer: damir da...@archlinux.org
-# Contributor : whisky archlinux.cle(at)gmail.com
+# Contributor: damir da...@archlinux.org
+# Contributor: whisky archlinux.cle(at)gmail.com
+# Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=libchewing
 pkgver=0.3.2
-pkgrel=1
-pkgdesc=Improved Smart Chewing Library - Intelligent Chinese Phonetic Input 
Method
-arch=(i686 x86_64)
-url=http://chewing.csie.net/;
-license=(GPL)
-depends=('glibc')
-makedepends=('libtool')
+pkgrel=2
+pkgdesc='Intelligent Zhuyin input method library for traditional Chinese'
+arch=('i686' 'x86_64')
+url='http://chewing.csie.net/'
+license=('GPL')
 options=('!libtool')
-source=(http://chewing.csie.net/download/libchewing/$pkgname-$pkgver.tar.bz2)
-md5sums=('ef70745ffdf199aa17e533427c63499f')
+source=(http://chewing.csie.net/download/libchewing/${pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('23eb09ab17c432cefb8cf42c758106b71b50d55f')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr || return 1
-  make || return 1
-  make DESTDIR=$pkgdir install || return 1
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --enable-static=no
+   make
 }
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:12:44
  Author: bisson
Revision: 110866

archrelease: remove extra-i686

Deleted:
  libchewing/repos/extra-i686/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:12:52
  Author: bisson
Revision: 110867

archrelease: copy trunk to extra-i686

Added:
  libchewing/repos/extra-i686/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:13:06
  Author: bisson
Revision: 110868

archrelease: remove extra-x86_64

Deleted:
  libchewing/repos/extra-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:13:11
  Author: bisson
Revision: 110869

archrelease: copy trunk to extra-x86_64

Added:
  libchewing/repos/extra-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:13:14
  Author: bisson
Revision: 110870

various cleanup

Modified:
  libhangul/trunk/PKGBUILD

--+
 PKGBUILD |   23 +++
 1 file changed, 11 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 20:13:11 UTC (rev 110869)
+++ PKGBUILD2011-02-22 20:13:14 UTC (rev 110870)
@@ -1,27 +1,26 @@
 # $Id$
-# Maintainer: damir da...@archlinux.org
+# Contributor: damir da...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=libhangul
 pkgver=0.0.12
-pkgrel=1
+pkgrel=2
 _filecode=5855
-pkgdesc=Common Input Library for Korean IMEngine
+pkgdesc='Input method library for Korean'
 arch=('i686' 'x86_64')
-url=http://kldp.net/projects/hangul/;
+url='http://kldp.net/projects/hangul/'
 license=('LGPL')
-depends=('glibc')
 options=('!libtool')
-source=(http://kldp.net/frs/download.php/${_filecode}/${pkgname}-${pkgver}.tgz)
-md5sums=('ef3941f5f0f3e83b1de699f2d46a1c92')
+source=(http://kldp.net/frs/download.php/${_filecode}/${pkgname}-${pkgver}.tgz;)
 sha1sums=('5e02fe61c8f51ace03bebb1ec75875a2262e3cd5')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --enable-static=no
+   make
 }
 
 package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
 }



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:13:28
  Author: bisson
Revision: 110871

archrelease: remove extra-i686

Deleted:
  libhangul/repos/extra-i686/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:13:33
  Author: bisson
Revision: 110872

archrelease: copy trunk to extra-i686

Added:
  libhangul/repos/extra-i686/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:13:38
  Author: bisson
Revision: 110873

archrelease: remove extra-x86_64

Deleted:
  libhangul/repos/extra-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:13:44
  Author: bisson
Revision: 110874

archrelease: copy trunk to extra-x86_64

Added:
  libhangul/repos/extra-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:13:47
  Author: bisson
Revision: 110875

various cleanup

Modified:
  scim-anthy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 20:13:44 UTC (rev 110874)
+++ PKGBUILD2011-02-22 20:13:47 UTC (rev 110875)
@@ -1,22 +1,27 @@
 # $Id$
-# Maintainer: damir da...@archlinux.org
+# Contributor: damir da...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=scim-anthy
 pkgver=1.2.7
-pkgrel=1
+pkgrel=2
 _filecode=37309
-pkgdesc=Japanese Anthy input method module for SCIM
-arch=(i686 x86_64)
-url=http://sourceforge.jp/projects/scim-imengine/;
+pkgdesc='Japanese input method module for SCIM'
+arch=('i686' 'x86_64')
+url='http://sourceforge.jp/projects/scim-imengine/'
 license=('GPL')
-depends=('scim=1.4.8' 'anthy=9100h')
+depends=('scim' 'anthy')
 options=('!libtool')
-source=(http://osdn.dl.sourceforge.jp/scim-imengine/$_filecode/$pkgname-$pkgver.tar.gz)
-md5sums=('8d06bfd46839c771401b9f176be8818f')
+source=(http://osdn.dl.sourceforge.jp/scim-imengine/${_filecode}/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('1429cf202f5cdcfc4733220acbe27dd9edb75db8')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure   --prefix=/usr --disable-static || return 1
-  make || return 1
-  make DESTDIR=$pkgdir install || return 1
+   cd $srcdir/$pkgname-$pkgver
+   ./configure --prefix=/usr --disable-static
+   make
 }
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir install
+}



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:13:50
  Author: bisson
Revision: 110876

archrelease: remove extra-i686

Deleted:
  scim-anthy/repos/extra-i686/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:13:57
  Author: bisson
Revision: 110877

archrelease: copy trunk to extra-i686

Added:
  scim-anthy/repos/extra-i686/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:14:03
  Author: bisson
Revision: 110878

archrelease: remove extra-x86_64

Deleted:
  scim-anthy/repos/extra-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:14:09
  Author: bisson
Revision: 110879

archrelease: copy trunk to extra-x86_64

Added:
  scim-anthy/repos/extra-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:14:12
  Author: bisson
Revision: 110880

various cleanup

Modified:
  scim-chewing/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 20:14:09 UTC (rev 110879)
+++ PKGBUILD2011-02-22 20:14:12 UTC (rev 110880)
@@ -1,25 +1,28 @@
 # $Id$
-# Maintainer: damir da...@archlinux.org
+# Contributor: damir da...@archlinux.org
 # Contributor: whisky archlinux.cle(at)gmail.com
+# Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=scim-chewing
 pkgver=0.3.3
-pkgrel=1
-pkgdesc=SCIM Smart Chewing input method engine
-arch=(i686 x86_64)
-url=http://chewing.csie.net/;
-license=(GPL)
-depends=('scim=1.4.8' 'libchewing=0.3.2')
+pkgrel=2
+pkgdesc='Traditional Chinese input method module for SCIM'
+arch=('i686' 'x86_64')
+url='http://chewing.csie.net/'
+license=('GPL')
+depends=('scim' 'libchewing')
 makedepends=('intltool')
 options=('!libtool')
-source=(http://chewing.csie.net/download/scim/$pkgname-$pkgver.tar.bz2)
-md5sums=('3f17ccae3f20f42a33e464aeb06eb1cb')
+source=(http://chewing.csie.net/download/scim/${pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('346d9a1511cfbb1025c0290d5a97a799329cb24e')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --disable-static || return 1
-  make || return 1
-  make DESTDIR=$pkgdir install || return 1
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --disable-static
+   make
 }
 
-
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:14:15
  Author: bisson
Revision: 110881

archrelease: remove extra-i686

Deleted:
  scim-chewing/repos/extra-i686/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:14:21
  Author: bisson
Revision: 110882

archrelease: copy trunk to extra-i686

Added:
  scim-chewing/repos/extra-i686/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:14:29
  Author: bisson
Revision: 110884

archrelease: copy trunk to extra-x86_64

Added:
  scim-chewing/repos/extra-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:14:24
  Author: bisson
Revision: 110883

archrelease: remove extra-x86_64

Deleted:
  scim-chewing/repos/extra-x86_64/



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:14:33
  Author: bisson
Revision: 110885

various cleanup

Added:
  scim-hangul/trunk/gcc43.patch
(from rev 110597, scim-hangul/trunk/scim-hangul-0.3.2-fix-gcc43-build.patch)
Modified:
  scim-hangul/trunk/PKGBUILD
Deleted:
  scim-hangul/trunk/scim-hangul-0.3.2-fix-gcc43-build.patch

-+
 PKGBUILD|   40 --
 gcc43.patch |   22 
 scim-hangul-0.3.2-fix-gcc43-build.patch |   22 
 3 files changed, 44 insertions(+), 40 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-02-22 20:14:29 UTC (rev 110884)
+++ PKGBUILD2011-02-22 20:14:33 UTC (rev 110885)
@@ -1,26 +1,30 @@
 # $Id$
-# Maintainer: damir da...@archlinux.org
+# Contributor: damir da...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=scim-hangul
 pkgver=0.3.2
-pkgrel=2
-pkgdesc=SCIM 한글 (hangul) input method engine for Korean language
-arch=(i686 x86_64)
-url=http://www.scim-im.org/;
-license=(GPL)
-depends=('libhangul=0.0.7' 'scim=1.4.7')
-source=(http://downloads.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz;
 $pkgname-$pkgver-fix-gcc43-build.patch)
-options=(!libtool)
+pkgrel=3
+pkgdesc='Korean input method module for SCIM'
+arch=('i686' 'x86_64')
+url='http://www.scim-im.org/'
+license=('GPL')
+depends=('libhangul' 'scim')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz;
+'gcc43.patch')
+sha1sums=('a88b5d70890060367e259c56c6a2029a6e020683'
+  '956bb2b6bd75b3d2756895f8ade429f95bacc0ff')
 
 build() {
-  cd $startdir/src
-  patch -Np0 -i $pkgname-$pkgver-fix-gcc43-build.patch  || return 1
-  cd $startdir/src/$pkgname-$pkgver
-  ./configure --prefix=/usr --enable-skim-support  
-  make || return 1
-  make DESTDIR=$startdir/pkg install
+   cd ${srcdir}/${pkgname}-${pkgver}
+   patch -p1 -i ../gcc43.patch
+   ./bootstrap # skim complains; it's alright
+   ./configure --prefix=/usr --enable-skim-support
+   make
 }
 
-
-md5sums=('882460f47dd3211f94c80ed894ad05cb'
- '0a9784bba2bca5f74a9897ef2a286543')
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}

Copied: scim-hangul/trunk/gcc43.patch (from rev 110597, 
scim-hangul/trunk/scim-hangul-0.3.2-fix-gcc43-build.patch)
===
--- gcc43.patch (rev 0)
+++ gcc43.patch 2011-02-22 20:14:33 UTC (rev 110885)
@@ -0,0 +1,22 @@
+diff -Naur scim-hangul-0.3.2-orig/src/scim_hangul_imengine.cpp 
scim-hangul-0.3.2/src/scim_hangul_imengine.cpp
+--- scim-hangul-0.3.2-orig/src/scim_hangul_imengine.cpp2008-03-26 
09:33:43.0 +0100
 scim-hangul-0.3.2/src/scim_hangul_imengine.cpp 2008-03-26 
09:34:41.0 +0100
+@@ -33,6 +33,7 @@
+   #include config.h
+ #endif
+ 
++#include cstring
+ #include scim.h
+ #include scim_hangul_imengine.h
+ 
+diff -Naur scim-hangul-0.3.2-orig/src/scim_hangul_imengine_setup.cpp 
scim-hangul-0.3.2/src/scim_hangul_imengine_setup.cpp
+--- scim-hangul-0.3.2-orig/src/scim_hangul_imengine_setup.cpp  2008-03-26 
09:33:43.0 +0100
 scim-hangul-0.3.2/src/scim_hangul_imengine_setup.cpp   2008-03-26 
09:34:53.0 +0100
+@@ -34,6 +34,7 @@
+   #include config.h
+ #endif
+ 
++#include cstring
+ #include scim.h
+ #include gtk/scimkeyselection.h
+ 

Deleted: scim-hangul-0.3.2-fix-gcc43-build.patch
===
--- scim-hangul-0.3.2-fix-gcc43-build.patch 2011-02-22 20:14:29 UTC (rev 
110884)
+++ scim-hangul-0.3.2-fix-gcc43-build.patch 2011-02-22 20:14:33 UTC (rev 
110885)
@@ -1,22 +0,0 @@
-diff -Naur scim-hangul-0.3.2-orig/src/scim_hangul_imengine.cpp 
scim-hangul-0.3.2/src/scim_hangul_imengine.cpp
 scim-hangul-0.3.2-orig/src/scim_hangul_imengine.cpp2008-03-26 
09:33:43.0 +0100
-+++ scim-hangul-0.3.2/src/scim_hangul_imengine.cpp 2008-03-26 
09:34:41.0 +0100
-@@ -33,6 +33,7 @@
-   #include config.h
- #endif
- 
-+#include cstring
- #include scim.h
- #include scim_hangul_imengine.h
- 
-diff -Naur scim-hangul-0.3.2-orig/src/scim_hangul_imengine_setup.cpp 
scim-hangul-0.3.2/src/scim_hangul_imengine_setup.cpp
 scim-hangul-0.3.2-orig/src/scim_hangul_imengine_setup.cpp  2008-03-26 
09:33:43.0 +0100
-+++ scim-hangul-0.3.2/src/scim_hangul_imengine_setup.cpp   2008-03-26 
09:34:53.0 +0100
-@@ -34,6 +34,7 @@
-   #include config.h
- #endif
- 
-+#include cstring
- #include scim.h
- #include gtk/scimkeyselection.h
- 



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

2011-02-22 Thread Gaetan Bisson
Date: Tuesday, February 22, 2011 @ 15:14:35
  Author: bisson
Revision: 110886

archrelease: remove extra-i686

Deleted:
  scim-hangul/repos/extra-i686/



  1   2   >