[arch-commits] Commit in (6 files)

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 02:52:39
  Author: ronald
Revision: 120895

qhull adds some functionality to octave

Added:
  qhull/
  qhull/repos/
  qhull/trunk/
  qhull/trunk/PKGBUILD
  qhull/trunk/qhull-2010.1-cmake-install.patch
  qhull/trunk/qhull-2010.1-overflows.patch

--+
 PKGBUILD |   49 ++
 qhull-2010.1-cmake-install.patch |   98 +
 qhull-2010.1-overflows.patch |   50 ++
 3 files changed, 197 insertions(+)

Added: qhull/trunk/PKGBUILD
===
--- qhull/trunk/PKGBUILD(rev 0)
+++ qhull/trunk/PKGBUILD2011-04-27 06:52:39 UTC (rev 120895)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Ronald van Haren ron...@archlinux.org
+# Contributor: Stefan Husmann stefan-husm...@t-online.de
+# Contributor: Jason Taylor jftaylo...@gmail.com
+# Contributor: Darwin Bautista djclue...@gmail.com
+
+pkgname=qhull
+pkgver=2010.1
+pkgrel=1
+pkgdesc=A general dimension code for computing convex hulls and related 
structures
+arch=('i686' 'x86_64')
+url=http://www.qhull.org/;
+license=('custom')
+depends=('glibc')
+makedepends=('cmake')
+source=(http://www.qhull.org/download/$pkgname-$pkgver-src.tgz
+   qhull-2010.1-cmake-install.patch
+   qhull-2010.1-overflows.patch)
+options=('!libtool')
+sha1sums=('ed480912e03efdd767195c06c7e8c252c78112b1'
+  '0a7747eb13c2e07c25882c1f0f5c0dfb4ef1c8c0'
+  '21295d57af2f8cdfc775512fa44fe90f49d89c41')
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # gentoo patches
+  patch -Np1 -i ${srcdir}/qhull-2010.1-cmake-install.patch
+  patch -Np1 -i ${srcdir}/qhull-2010.1-overflows.patch
+
+  [ -d build ] || mkdir build
+  cd build
+  cmake -DCMAKE_INSTALL_PREFIX=/usr -DDOC_INSTALL_DIR=/usr/share/doc \
+   -DLIB_INSTALL_DIR=/usr/lib ..
+  make
+}
+
+package() { 
+  cd $srcdir/$pkgname-$pkgver/build
+
+  make DESTDIR=$pkgdir install
+
+  # install manpages
+  install -Dm644 $srcdir/$pkgname-$pkgver/html/rbox.man 
$pkgdir/usr/share/man/man1/rbox.1
+  install -Dm644 $srcdir/$pkgname-$pkgver/html/qhull.man 
$pkgdir/usr/share/man/man1/qhull.1
+
+  # Install license
+  install -Dm644 $srcdir/$pkgname-$pkgver/COPYING.txt 
$pkgdir/usr/share/licenses/$pkgname/license.txt
+}


Property changes on: qhull/trunk/PKGBUILD
___
Added: svn:keywords
   + Id

Added: qhull/trunk/qhull-2010.1-cmake-install.patch
===
--- qhull/trunk/qhull-2010.1-cmake-install.patch
(rev 0)
+++ qhull/trunk/qhull-2010.1-cmake-install.patch2011-04-27 06:52:39 UTC 
(rev 120895)
@@ -0,0 +1,98 @@
+diff -Nur qhull-2010.1.orig/CMakeLists.txt qhull-2010.1/CMakeLists.txt
+--- qhull-2010.1.orig/CMakeLists.txt   2010-10-03 23:04:04.0 +0100
 qhull-2010.1/CMakeLists.txt2010-10-03 23:26:54.0 +0100
+@@ -1,8 +1,44 @@
+ project(qhull)
+-cmake_minimum_required(VERSION 2.4)
+-if(COMMAND cmake_policy)
+-  cmake_policy(SET CMP0003 NEW)
+-endif(COMMAND cmake_policy)
++cmake_minimum_required(VERSION 2.6)
++
++
++set(QHULL_VERSION 2010.1)
++
++if(INCLUDE_INSTALL_DIR)
++else()
++set(INCLUDE_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/include)
++endif()
++if(LIB_INSTALL_DIR)
++else()
++set(LIB_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/lib)
++endif()
++if(BIN_INSTALL_DIR)
++else()
++set(BIN_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/bin)
++endif()
++if(DOC_INSTALL_DIR)
++else()
++set(DOC_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/share/doc/qhull)
++endif()
++
++message(STATUS)
++message(STATUS == qhull Build Information ==)
++message(STATUS Build Version: ${QHULL_VERSION})
++message(STATUS Install Prefix (CMAKE_INSTALL_PREFIX): 
${CMAKE_INSTALL_PREFIX})
++message(STATUS Binary Directory (BIN_INSTALL_DIR): ${BIN_INSTALL_DIR})
++message(STATUS Library Directory (LIB_INSTALL_DIR): ${LIB_INSTALL_DIR})
++message(STATUS Include Directory (INCLUDE_INSTALL_DIR): 
${INCLUDE_INSTALL_DIR})
++message(STATUS Documentation Directory (DOC_INSTALL_DIR): 
${DOC_INSTALL_DIR})
++message(STATUS)
++message(STATUS To change any of these options, override them using 
-D{OPTION_NAME} on the commandline.)
++message(STATUS To build and install qhull, run \make\ and \make 
install\)
++message(STATUS)
++
+ 
+ add_subdirectory(src)
++option(WITH_STATIC_LIBS Build with a static library OFF)
++option(WITH_DOCS Install HTML documentation OFF)
+ 
++if (WITH_DOCS)
++install(DIRECTORY html/ DESTINATION ${DOC_INSTALL_DIR})
++endif (WITH_DOCS)
+diff -Nur qhull-2010.1.orig/src/CMakeLists.txt qhull-2010.1/src/CMakeLists.txt
+--- qhull-2010.1.orig/src/CMakeLists.txt   2010-10-03 23:04:04.0 
+0100
 qhull-2010.1/src/CMakeLists.txt2010-10-04 00:23:47.0 +0100
+@@ -23,8 +23,25 @@
+ 
+ file(GLOB qhull_hdr *.h)
+ 
+-add_library(qhull ${qhull_src})

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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 03:01:00
  Author: ronald
Revision: 120896

archrelease: copy trunk to extra-i686

Added:
  qhull/repos/extra-i686/



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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 03:01:36
  Author: ronald
Revision: 120897

archrelease: copy trunk to extra-x86_64

Added:
  qhull/repos/extra-x86_64/



[arch-commits] Commit in (5 files)

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 04:00:36
  Author: ronald
Revision: 120898

ntfs-3g and ntfsprogs are now merged into one source upstream

Added:
  ntfs-3g_ntfsprogs/
  ntfs-3g_ntfsprogs/repos/
  ntfs-3g_ntfsprogs/trunk/
  ntfs-3g_ntfsprogs/trunk/25-ntfs-config-write-policy.fdi
  ntfs-3g_ntfsprogs/trunk/PKGBUILD

-+
 25-ntfs-config-write-policy.fdi |   42 +
 PKGBUILD|   47 ++
 2 files changed, 89 insertions(+)

Added: ntfs-3g_ntfsprogs/trunk/25-ntfs-config-write-policy.fdi
===
--- ntfs-3g_ntfsprogs/trunk/25-ntfs-config-write-policy.fdi 
(rev 0)
+++ ntfs-3g_ntfsprogs/trunk/25-ntfs-config-write-policy.fdi 2011-04-27 
08:00:36 UTC (rev 120898)
@@ -0,0 +1,42 @@
+?xml version=1.0 encoding=UTF-8?
+deviceinfo version=0.2
+  device
+   match key=volume.fstype string=ntfs
+append key=volume.fstype.alternative 
type=copy_propertyvolume.fstype/append
+merge key=volume.mount.ntfs.valid_options 
type=copy_propertyvolume.mount.valid_options/merge
+merge key=volume.unmount.ntfs.valid_options 
type=copy_propertyvolume.unmount.valid_options/merge
+merge key=volume.fstype type=stringntfs-3g/merge
+   merge key=volume.mount.valid_options 
type=strlistro/merge
+append key=volume.mount.valid_options type=strlistatime/append
+append key=volume.mount.valid_options 
type=strlistnoatime/append
+   append key=volume.mount.valid_options 
type=strlistrelatime/append
+   append key=volume.mount.valid_options 
type=strlistfake_rw/append
+   append key=volume.mount.valid_options 
type=strlistno_def_opts/append
+   append key=volume.mount.valid_options 
type=strlistdefault_permissions/append
+   append key=volume.mount.valid_options 
type=strlistumask=/append
+   append key=volume.mount.valid_options 
type=strlistfmask=/append
+   append key=volume.mount.valid_options 
type=strlistdmask=/append
+   append key=volume.mount.valid_options 
type=strlistuid=/append
+   append key=volume.mount.valid_options 
type=strlistgid=/append
+   append key=volume.mount.valid_options 
type=strlistshow_sys_files/append
+   append key=volume.mount.valid_options 
type=strlistsilent/append
+   append key=volume.mount.valid_options 
type=strlistforce/append
+   append key=volume.mount.valid_options 
type=strlistremove_hiberfile/append
+   append key=volume.mount.valid_options 
type=strlistlocale=/append
+   append key=volume.mount.valid_options 
type=strliststreams_interface=/append
+   append key=volume.mount.valid_options 
type=strlistdebug/append
+   append key=volume.mount.valid_options 
type=strlistno_detatch/append
+   append key=volume.mount.valid_options 
type=strlistsync/append
+   append key=volume.mount.valid_options 
type=strlistdirsync/append
+   append key=volume.mount.valid_options 
type=strlistnodiratime/append
+   append key=volume.mount.valid_options 
type=strlistnoexec/append
+append key=volume.mount.valid_options type=strlistquiet/append
+   append key=volume.mount.valid_options 
type=strlistremount/append
+   append key=volume.mount.valid_options 
type=strlistexec/append
+   append key=volume.mount.valid_options 
type=strlistrecover/append
+   append key=volume.mount.valid_options 
type=strlistnorecover/append
+   merge key=volume.unmount.valid_options 
type=strlistlazy/merge
+   merge key=volume.policy.mount_filesystem 
type=stringntfs-3g/merge
+   /match
+  /device
+/deviceinfo

Added: ntfs-3g_ntfsprogs/trunk/PKGBUILD
===
--- ntfs-3g_ntfsprogs/trunk/PKGBUILD(rev 0)
+++ ntfs-3g_ntfsprogs/trunk/PKGBUILD2011-04-27 08:00:36 UTC (rev 120898)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: Thomas B�chler thomas.archlinux.org
+
+pkgbase=ntfs-3g_ntfsprogs
+pkgname=('ntfs-3g' 'ntfsprogs')
+pkgver=2011.4.12
+pkgrel=1
+url=http://www.tuxera.com;
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('glibc' 'fuse')
+makedepends=('pkgconfig')
+options=('!libtool')
+source=(http://tuxera.com/opensource/${pkgbase}-${pkgver}.tgz
+25-ntfs-config-write-policy.fdi)
+sha1sums=('a4340ae611a3f26089f7d5601a86a5847517bff7'
+  '200029f2999a2c284fd30ae25734abf6459c3501')
+
+build() {
+  cd ${srcdir}/${pkgbase}-${pkgver}
+  ac_cv_path_LDCONFIG=/bin/true ./configure --prefix=/usr \
+--with-fuse=external --disable-static --disable-gnome-vfs \
+  --mandir=/usr/share/man
+  make
+}
+

[arch-commits] Commit in ntfs-3g/repos (extra-i686)

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 04:04:37
  Author: ronald
Revision: 120899

db-remove: ntfs-3g removed by ronald

Deleted:
  ntfs-3g/repos/extra-i686/



[arch-commits] Commit in ntfs-3g/repos (extra-x86_64)

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 04:04:51
  Author: ronald
Revision: 120900

db-remove: ntfs-3g removed by ronald

Deleted:
  ntfs-3g/repos/extra-x86_64/



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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 04:05:07
  Author: ronald
Revision: 120901

db-remove: ntfsprogs removed by ronald

Deleted:
  ntfsprogs/repos/extra-x86_64/



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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 04:05:21
  Author: ronald
Revision: 120902

db-remove: ntfsprogs removed by ronald

Deleted:
  ntfsprogs/repos/extra-i686/



[arch-commits] Commit in ntfs-3g_ntfsprogs/repos (extra-i686)

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 04:06:35
  Author: ronald
Revision: 120903

archrelease: copy trunk to extra-i686

Added:
  ntfs-3g_ntfsprogs/repos/extra-i686/



[arch-commits] Commit in ntfs-3g_ntfsprogs/repos (extra-x86_64)

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 04:07:11
  Author: ronald
Revision: 120904

archrelease: copy trunk to extra-x86_64

Added:
  ntfs-3g_ntfsprogs/repos/extra-x86_64/



[arch-commits] Commit in gnome-control-center/trunk (2 files)

2011-04-27 Thread Ionut Biru
Date: Wednesday, April 27, 2011 @ 04:37:19
  Author: ibiru
Revision: 120905

update to 3.0.1.1, drop gconf, add sound theme

Modified:
  gnome-control-center/trunk/PKGBUILD
  gnome-control-center/trunk/gnome-control-center.install

--+
 PKGBUILD |   12 
 gnome-control-center.install |   13 +++--
 2 files changed, 11 insertions(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 08:07:11 UTC (rev 120904)
+++ PKGBUILD2011-04-27 08:37:19 UTC (rev 120905)
@@ -2,11 +2,11 @@
 # Maintainer: Jan de Groot j...@archlinux.org
 
 pkgname=gnome-control-center
-pkgver=3.0.1
+pkgver=3.0.1.1
 pkgrel=1
 pkgdesc=The Control Center for GNOME
 arch=('i686' 'x86_64')
-depends=('gtk3' 'gsettings-desktop-schemas' 'gconf' 'gnome-menus' 
'gnome-desktop' 'gnome-settings-daemon' 'upower' 'libgtop' 'cups-pk-helper' 
'accountsservice')
+depends=('gtk3' 'gsettings-desktop-schemas' 'gnome-menus' 'gnome-desktop' 
'gnome-settings-daemon' 'upower' 'libgtop' 'cups-pk-helper' 'accountsservice' 
'sound-theme-freedesktop')
 optdepends=('mesa-demos: provides glxinfo for graphics information'
 'apg: adds password generation for user accounts')
 makedepends=('gnome-doc-utils' 'intltool' 'networkmanager')
@@ -16,7 +16,7 @@
 license=('GPL')
 options=('!libtool' '!emptydirs')
 
source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/3.0/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('90dde4b3db8b7a9c973f71e15601fd176ad6746cfef63c818fbdfd2254a8e99f')
+sha256sums=('b191991d3932b363154e6cf2b5055bc711272065397daee2163b6fb04402ad79')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
@@ -29,10 +29,6 @@
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
-  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=${pkgdir} install
-
-  install -m755 -d ${pkgdir}/usr/share/gconf/schemas
-  gconf-merge-schema ${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas 
--domain gnome-control-center-2.0 ${pkgdir}/etc/gconf/schemas/*.schemas
-  rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
+  make DESTDIR=${pkgdir} install
 }
 

Modified: gnome-control-center.install
===
--- gnome-control-center.install2011-04-27 08:07:11 UTC (rev 120904)
+++ gnome-control-center.install2011-04-27 08:37:19 UTC (rev 120905)
@@ -1,18 +1,19 @@
 pkgname=gnome-control-center
 
 post_install() {
-  usr/sbin/gconfpkg --install ${pkgname}
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
 }
 
 pre_upgrade() {
-  pre_remove $1
+if [ -f usr/share/gconf/schemas/${pkgname}.schemas ]; then
+usr/sbin/gconfpkg --uninstall ${pkgname}
+fi
 }
 
-pre_remove() {
-  usr/sbin/gconfpkg --uninstall ${pkgname}
+post_upgrade() {
+post_install $1
 }
 
 post_remove() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+post_install $1
 }



[arch-commits] Commit in gnome-control-center/repos (testing-i686)

2011-04-27 Thread Ionut Biru
Date: Wednesday, April 27, 2011 @ 05:12:21
  Author: ibiru
Revision: 120906

archrelease: remove testing-i686

Deleted:
  gnome-control-center/repos/testing-i686/



[arch-commits] Commit in gnome-control-center/repos (testing-i686)

2011-04-27 Thread Ionut Biru
Date: Wednesday, April 27, 2011 @ 05:12:39
  Author: ibiru
Revision: 120907

archrelease: copy trunk to testing-i686

Added:
  gnome-control-center/repos/testing-i686/



[arch-commits] Commit in gnome-control-center/repos (testing-x86_64)

2011-04-27 Thread Ionut Biru
Date: Wednesday, April 27, 2011 @ 05:12:42
  Author: ibiru
Revision: 120908

archrelease: remove testing-x86_64

Deleted:
  gnome-control-center/repos/testing-x86_64/



[arch-commits] Commit in gnome-control-center/repos (testing-x86_64)

2011-04-27 Thread Ionut Biru
Date: Wednesday, April 27, 2011 @ 05:13:02
  Author: ibiru
Revision: 120909

archrelease: copy trunk to testing-x86_64

Added:
  gnome-control-center/repos/testing-x86_64/



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

2011-04-27 Thread Daniel Isenmann
Date: Wednesday, April 27, 2011 @ 05:25:47
  Author: daniel
Revision: 120910

upgpkg: mono 2.10.2-1
New mono bugfix release 2.10.2

Modified:
  mono/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 09:13:02 UTC (rev 120909)
+++ PKGBUILD2011-04-27 09:25:47 UTC (rev 120910)
@@ -3,8 +3,8 @@
 # Contributor: Brice Carpentier br...@dlfp.org
 
 pkgname=mono
-pkgver=2.10.1
-pkgrel=2
+pkgver=2.10.2
+pkgrel=1
 pkgdesc=Free implementation of the .NET platform including runtime and 
compiler
 arch=(i686 x86_64)
 license=('GPL' 'LGPL2' 'MPL' 'custom:MITX11')
@@ -16,7 +16,7 @@
 conflicts=('monodoc')
 
source=(http://ftp.novell.com/pub/mono/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 mono.rc.d)
-md5sums=('ae8d1875447527599e68dd6c1d82bc11'
+md5sums=('bff057dc3e56b8841bbb1abe053858bb'
  '8315e46c6a6e9625502521fc0ad1a322')
 
 build() {



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

2011-04-27 Thread Daniel Isenmann
Date: Wednesday, April 27, 2011 @ 05:25:51
  Author: daniel
Revision: 120911

archrelease: remove extra-i686

Deleted:
  mono/repos/extra-i686/



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

2011-04-27 Thread Daniel Isenmann
Date: Wednesday, April 27, 2011 @ 05:26:04
  Author: daniel
Revision: 120912

archrelease: copy trunk to extra-i686

Added:
  mono/repos/extra-i686/



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

2011-04-27 Thread Daniel Isenmann
Date: Wednesday, April 27, 2011 @ 05:26:07
  Author: daniel
Revision: 120913

archrelease: remove extra-x86_64

Deleted:
  mono/repos/extra-x86_64/



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

2011-04-27 Thread Daniel Isenmann
Date: Wednesday, April 27, 2011 @ 05:26:21
  Author: daniel
Revision: 120914

archrelease: copy trunk to extra-x86_64

Added:
  mono/repos/extra-x86_64/



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

2011-04-27 Thread Daniel Isenmann
Date: Wednesday, April 27, 2011 @ 05:28:00
  Author: daniel
Revision: 120915

upgpkg: xsp 2.10.2-1
New mono bugfix release 2.10.2

Modified:
  xsp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 09:26:21 UTC (rev 120914)
+++ PKGBUILD2011-04-27 09:28:00 UTC (rev 120915)
@@ -3,18 +3,18 @@
 # Contributor: Tobias Kieslich tob...@justdreams.de
 
 pkgname=xsp
-pkgver=2.10
+pkgver=2.10.2
 pkgrel=1
 pkgdesc=A simple webserver based on mono - provides ASP.NET support
 arch=(i686 x86_64)
 license=('custom')
 url=http://www.go-mono.com;
-depends=('mono=2.10.1' 'sqlite3')
+depends=('mono=2.10.2' 'sqlite3')
 options=(!makeflags)
 install=${pkgname}.install
 
source=(http://ftp.novell.com/pub/mono/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2
 \
 ${pkgname}.rc.d ${pkgname}.conf.d ${pkgname}.webapp)
-md5sums=('aec9369a00a9728801ea2587a1a8fd9c'
+md5sums=('4fe62fc95ad5dc136d8a7f3299d523b6'
  '9575bd7d6f64d51ba05bdd6370665858'
  '35d921df0fefc30f47a438c95d420efc'
  'c917c07f68b945691506c29750db482f')



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

2011-04-27 Thread Daniel Isenmann
Date: Wednesday, April 27, 2011 @ 05:28:02
  Author: daniel
Revision: 120916

archrelease: remove extra-i686

Deleted:
  xsp/repos/extra-i686/



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

2011-04-27 Thread Daniel Isenmann
Date: Wednesday, April 27, 2011 @ 05:28:14
  Author: daniel
Revision: 120917

archrelease: copy trunk to extra-i686

Added:
  xsp/repos/extra-i686/



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

2011-04-27 Thread Daniel Isenmann
Date: Wednesday, April 27, 2011 @ 05:28:28
  Author: daniel
Revision: 120919

archrelease: copy trunk to extra-x86_64

Added:
  xsp/repos/extra-x86_64/



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

2011-04-27 Thread Allan McRae
Date: Wednesday, April 27, 2011 @ 07:05:23
  Author: allan
Revision: 120920

upgpkg: coreutils 8.12-1
upstream update

Modified:
  coreutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 09:28:28 UTC (rev 120919)
+++ PKGBUILD2011-04-27 11:05:23 UTC (rev 120920)
@@ -3,7 +3,7 @@
 # Contributor: judd jvi...@zeroflux.org
 
 pkgname=coreutils
-pkgver=8.11
+pkgver=8.12
 pkgrel=1
 pkgdesc=The basic file, shell and text manipulation utilities of the GNU 
operating system
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
coreutils-uname.patch
coreutils-pam.patch
su.pam)
-md5sums=('b623ee9b1b768a14e40dfd35ff446f4c'
+md5sums=('0f7d43c2d2e24314b43a6c6267e25b90'
  'c4fcca138b6abf6d443d48a6f0cd8833'
  'aad79a2aa6d566c375d7bdd1b0767278'
  'fa85e5cce5d723275b14365ba71a8aad')



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

2011-04-27 Thread Allan McRae
Date: Wednesday, April 27, 2011 @ 07:05:50
  Author: allan
Revision: 120921

archrelease: copy trunk to testing-i686

Added:
  coreutils/repos/testing-i686/



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

2011-04-27 Thread Allan McRae
Date: Wednesday, April 27, 2011 @ 07:06:15
  Author: allan
Revision: 120922

archrelease: copy trunk to testing-x86_64

Added:
  coreutils/repos/testing-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 07:39:45
  Author: andrea
Revision: 120923

db-remove: vim-matchit removed by andrea

Deleted:
  vim-matchit/repos/extra-any/



[arch-commits] Commit in (vim-matchit)

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 07:41:03
  Author: andrea
Revision: 120924

Already included in vim (FS#23959)

Deleted:
  vim-matchit/



[arch-commits] Commit in lighttpd/trunk (PKGBUILD lighttpd.rc.d)

2011-04-27 Thread Pierre Schmitz
Date: Wednesday, April 27, 2011 @ 09:05:01
  Author: pierre
Revision: 120925

Fix typo in rc script
See FS#23945

Modified:
  lighttpd/trunk/PKGBUILD
  lighttpd/trunk/lighttpd.rc.d

---+
 PKGBUILD  |4 ++--
 lighttpd.rc.d |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 11:41:03 UTC (rev 120924)
+++ PKGBUILD2011-04-27 13:05:01 UTC (rev 120925)
@@ -3,7 +3,7 @@
 
 pkgname=lighttpd
 pkgver=1.4.28
-pkgrel=5
+pkgrel=6
 pkgdesc='a secure, fast, compliant and very flexible web-server'
 license=('custom')
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 
source=(http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${pkgver}.tar.bz2;
 'lighttpd.rc.d' 'lighttpd.logrotate.d' 'lighttpd.conf')
 md5sums=('586eb535d31ac299652495b058dd87c4'
- 'eadffcda24d0d996032f8555ce9623c2'
+ '369f2eea6231342b514ca4777bf395c8'
  '913e2157fa78d990c32146f387d44c2b'
  '2803a9ee7f20409c69f1566d2d90720e')
 

Modified: lighttpd.rc.d
===
--- lighttpd.rc.d   2011-04-27 11:41:03 UTC (rev 120924)
+++ lighttpd.rc.d   2011-04-27 13:05:01 UTC (rev 120925)
@@ -44,7 +44,7 @@
fi
 
local piddir=$(dirname $(get_pid_file))
-   if [ ! -d {$piddir} ]; then
+   if [ ! -d ${piddir} ]; then
install -d -m755 -o http -g http ${piddir}
fi
 



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

2011-04-27 Thread Pierre Schmitz
Date: Wednesday, April 27, 2011 @ 09:05:17
  Author: pierre
Revision: 120926

archrelease: remove extra-i686

Deleted:
  lighttpd/repos/extra-i686/



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

2011-04-27 Thread Pierre Schmitz
Date: Wednesday, April 27, 2011 @ 09:05:40
  Author: pierre
Revision: 120927

archrelease: copy trunk to extra-i686

Added:
  lighttpd/repos/extra-i686/



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

2011-04-27 Thread Pierre Schmitz
Date: Wednesday, April 27, 2011 @ 09:05:58
  Author: pierre
Revision: 120929

archrelease: copy trunk to extra-x86_64

Added:
  lighttpd/repos/extra-x86_64/



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

2011-04-27 Thread Pierre Schmitz
Date: Wednesday, April 27, 2011 @ 09:05:45
  Author: pierre
Revision: 120928

archrelease: remove extra-x86_64

Deleted:
  lighttpd/repos/extra-x86_64/



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

2011-04-27 Thread Giovanni Scafora
Date: Wednesday, April 27, 2011 @ 09:07:03
  Author: giovanni
Revision: 120930

upgpkg: k9copy 2.3.7-1
upstream release

Modified:
  k9copy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 13:05:58 UTC (rev 120929)
+++ PKGBUILD2011-04-27 13:07:03 UTC (rev 120930)
@@ -3,7 +3,7 @@
 # Contributor: Stefano Zamprogno stefano.zampro...@gmail.com
 
 pkgname=k9copy
-pkgver=2.3.6
+pkgver=2.3.7
 pkgrel=1
 pkgdesc=A small utility which allows the copy of DVD under Linux
 arch=('i686' 'x86_64')
@@ -12,14 +12,19 @@
 depends=('kdebase-runtime' 'libmpeg2' 'xine-lib' 'dvd+rw-tools' 'dvdauthor')
 makedepends=('automoc4' 'cmake')
 install=k9copy.install
-source=(http://downloads.sourceforge.net/project/${pkgname}/k9copy-kde4/${pkgver}/${pkgname}-${pkgver}-Source.tar.gz)
-md5sums=('c062dcb141a0320afe9dae0d36f87965')
+source=(http://downloads.sourceforge.net/project/${pkgname}/k9copy-kde4/${pkgver}/${pkgname}-${pkgver}-Source.tar.gz;)
+md5sums=('bbfda2937f5027d31495df67dc29efa4')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}-Source
 
   sed -i -e s:Name=k9copy:Name=K9copy:g k9copy.desktop 
k9copy_assistant.desktop
-  cmake -DCMAKE_INSTALL_PREFIX=/usr || return 1
-  make || return 1
-  make DESTDIR=${pkgdir} install || return 1
+  cmake -DCMAKE_INSTALL_PREFIX=/usr
+  make
 }
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}-Source
+
+  make DESTDIR=${pkgdir} install
+}



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

2011-04-27 Thread Giovanni Scafora
Date: Wednesday, April 27, 2011 @ 09:07:08
  Author: giovanni
Revision: 120931

archrelease: remove extra-i686

Deleted:
  k9copy/repos/extra-i686/



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

2011-04-27 Thread Giovanni Scafora
Date: Wednesday, April 27, 2011 @ 09:07:20
  Author: giovanni
Revision: 120932

archrelease: copy trunk to extra-i686

Added:
  k9copy/repos/extra-i686/



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

2011-04-27 Thread Giovanni Scafora
Date: Wednesday, April 27, 2011 @ 09:07:23
  Author: giovanni
Revision: 120933

archrelease: remove extra-x86_64

Deleted:
  k9copy/repos/extra-x86_64/



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

2011-04-27 Thread Giovanni Scafora
Date: Wednesday, April 27, 2011 @ 09:07:36
  Author: giovanni
Revision: 120934

archrelease: copy trunk to extra-x86_64

Added:
  k9copy/repos/extra-x86_64/



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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 09:47:11
  Author: ronald
Revision: 120935

upgpkg: octave 3.4.0-1
bump to latest version; remove patches that are not needed anymore; add patch 
to build with gcc46; disable docs (fails)

Added:
  octave/trunk/octave-3.4.0-gcc46.patch
Modified:
  octave/trunk/PKGBUILD
Deleted:
  octave/trunk/octave-3.2.0_as_needed.patch
  octave/trunk/octave-3.2.0_parallel_make.patch

--+
 PKGBUILD |   27 +++
 octave-3.2.0_as_needed.patch |   11 ---
 octave-3.2.0_parallel_make.patch |   12 
 octave-3.4.0-gcc46.patch |   24 
 4 files changed, 35 insertions(+), 39 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 13:07:36 UTC (rev 120934)
+++ PKGBUILD2011-04-27 13:47:11 UTC (rev 120935)
@@ -4,39 +4,35 @@
 # Contributor : cyberdune cyberd...@gmail.com
 
 pkgname=octave
-pkgver=3.2.4
-pkgrel=2
+pkgver=3.4.0
+pkgrel=1
 pkgdesc=A high-level language, primarily intended for numerical computations.
 arch=('i686' 'x86_64')
 url=http://www.octave.org;
 license=('GPL')
-depends=('fftw' 'pcre' 'curl' 'lapack' 'libx11' 'graphicsmagick' 'glpk' 'hdf5' 
'gcc-libs')
+depends=('fftw' 'pcre' 'curl' 'lapack' 'libx11' 'graphicsmagick' 'glpk' 'hdf5' 
'gcc-libs' 'qhull')
 makedepends=('texinfo' 'graphicsmagick' 'gcc-fortran' 'umfpack')
 optdepends=('texinfo: for help-support in octave'
 'gnuplot: alternative plotting'
'umfpack: LU decomposition of some large sparse matrices')
-source=(ftp://ftp.octave.org/pub/octave/octave-$pkgver.tar.bz2;
-   'octave-3.2.0_as_needed.patch'  'octave-3.2.0_parallel_make.patch' 
'imread.patch')
+source=(ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2;
+   octave-3.4.0-gcc46.patch)
 options=('!emptydirs')
 install=octave.install
-md5sums=('608196657f4fa010420227b77333bb71'
- '33c8886cd908ace40f8b60334df1c34f'
- 'd59d783a8d7e8d8306caed4b2b8671a4'
- '72d33ba1a862244f970cf259923815d9')
+sha1sums=('936a8fc962abd96e7568fb5909ec2a4d7997a1a8'
+  '791c905a80510783e5f9c556c12f02400887fbec')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
 
-  # gentoo patches
-  patch -Np1 -i ${srcdir}/octave-3.2.0_as_needed.patch
-  patch -Np1 -i ${srcdir}/octave-3.2.0_parallel_make.patch 
-  patch -Np0 -i ${srcdir}/imread.patch
-  
+  # fedora gcc46 patch
+  patch -Np1 -i ${srcdir}/octave-3.4.0-gcc46.patch
+
   # http://www.nabble.com/Random-rounding-errors-td16010966.html
   FFLAGS=-O -ffloat-store \
 
   ./configure --prefix=/usr --libexecdir=/usr/lib \
-  --enable-shared --disable-static
+  --enable-shared --disable-static --disable-docs
 
   make
 }
@@ -45,5 +41,4 @@
   cd ${srcdir}/${pkgname}-${pkgver}
 
   make DESTDIR=${pkgdir} install
-
 }

Deleted: octave-3.2.0_as_needed.patch
===
--- octave-3.2.0_as_needed.patch2011-04-27 13:07:36 UTC (rev 120934)
+++ octave-3.2.0_as_needed.patch2011-04-27 13:47:11 UTC (rev 120935)
@@ -1,11 +0,0 @@
-diff -Naur octave-3.2.0/liboctave/Makefile.in 
octave-3.2.0.new/liboctave/Makefile.in
 octave-3.2.0/liboctave/Makefile.in 2009-05-25 02:04:59.0 -0400
-+++ octave-3.2.0.new/liboctave/Makefile.in 2009-07-10 10:32:09.0 
-0400
-@@ -35,6 +35,7 @@
- DLL_CXXDEFS = @OCTAVE_DLL_DEFS@
- 
- LINK_DEPS = \
-+  -lpthread \
-   -L../libcruft -L. $(RLD_FLAG) \
-   $(LIBCRUFT) $(CHOLMOD_LIBS) $(UMFPACK_LIBS)  $(AMD_LIBS) \
-   $(CAMD_LIBS) $(COLAMD_LIBS) $(CCOLAMD_LIBS) $(CXSPARSE_LIBS) \

Deleted: octave-3.2.0_parallel_make.patch
===
--- octave-3.2.0_parallel_make.patch2011-04-27 13:07:36 UTC (rev 120934)
+++ octave-3.2.0_parallel_make.patch2011-04-27 13:47:11 UTC (rev 120935)
@@ -1,12 +0,0 @@
-diff -Naur octave-3.2.0/doc/Makefile.in octave-3.2.0.new/doc/Makefile.in
 octave-3.2.0/doc/Makefile.in   2009-06-03 07:55:40.0 -0400
-+++ octave-3.2.0.new/doc/Makefile.in   2009-07-07 18:20:14.0 -0400
-@@ -30,6 +30,8 @@
- all: conf.texi $(SUBDIRS)
- .PHONY: all
- 
-+$(SUBDIRS): conf.texi
-+
- conf.texi: conf.texi.in $(TOPDIR)/Makeconf
-   @$(do-subst-texinfo-vals)
- 

Added: octave-3.4.0-gcc46.patch
===
--- octave-3.4.0-gcc46.patch(rev 0)
+++ octave-3.4.0-gcc46.patch2011-04-27 13:47:11 UTC (rev 120935)
@@ -0,0 +1,24 @@
+diff -up octave-3.4.0/liboctave/oct-alloc.h.gcc46 
octave-3.4.0/liboctave/oct-alloc.h
+--- octave-3.4.0/liboctave/oct-alloc.h.gcc46   2011-02-08 03:00:51.0 
-0700
 octave-3.4.0/liboctave/oct-alloc.h 2011-02-08 09:41:23.984081687 -0700
+@@ -23,6 +23,8 @@ along with Octave; see the file COPYING.
+ #if !defined (octave_oct_alloc_h)
+ #define octave_oct_alloc_h 1
+ 
++#include cstddef

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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 09:47:18
  Author: ronald
Revision: 120936

archrelease: remove extra-i686

Deleted:
  octave/repos/extra-i686/



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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 09:47:55
  Author: ronald
Revision: 120937

archrelease: copy trunk to extra-i686

Added:
  octave/repos/extra-i686/



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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 09:48:02
  Author: ronald
Revision: 120938

archrelease: remove extra-x86_64

Deleted:
  octave/repos/extra-x86_64/



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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 09:48:39
  Author: ronald
Revision: 120939

archrelease: copy trunk to extra-x86_64

Added:
  octave/repos/extra-x86_64/



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

2011-04-27 Thread Dan McGee
Date: Wednesday, April 27, 2011 @ 11:41:06
  Author: dan
Revision: 120940

upgpkg: git 1.7.5-1
verbump 1.7.5, fix FS#20923

Modified:
  git/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 13:48:39 UTC (rev 120939)
+++ PKGBUILD2011-04-27 15:41:06 UTC (rev 120940)
@@ -2,7 +2,7 @@
 # Maintainer: Dan McGee d...@archlinux.org
 
 pkgname=git
-pkgver=1.7.4.4
+pkgver=1.7.5
 pkgrel=1
 pkgdesc=the fast distributed version control system
 arch=(i686 x86_64)
@@ -13,7 +13,9 @@
 optdepends=('tk: gitk and git gui'
 'perl-libwww: git svn'
 'perl-term-readkey: git svn'
+'perl-mime-tools: git send-email'
 'perl-net-smtp-ssl: git send-email TLS support'
+'perl-authen-sasl: git send-email TLS support'
 'python2: various helper scripts'
 'subversion: git svn'
 'cvsps: git cvsimport')
@@ -69,11 +71,11 @@
   install -D -m644 $srcdir/git-daemon.conf $pkgdir/etc/conf.d/git-daemon.conf
 }
 
-md5sums=('1313f71d62fa100b32fa313769a85f2a'
- '5812f4fca4afc6c81e06f485111ec8ab'
+md5sums=('7f0bc26a6e87d251c9b09fa05a186ed3'
+ '94cf18c292f0db30046092ef306bf57c'
  '8e2648910fd5dd4f1c41d3c7fa9e9156'
  '2e42bf97779a1c6411d89043334c9e78')
-sha256sums=('5c3e738b01a4021ade56abebfdcce8825d2a50868e5c7befb65102f497387aa0'
-'fa2ce1fd34a81dac1d8fca466dcd823ce1ed800ec5cb98d8bb2b0967deed19d0'
+sha256sums=('7d293c5c0e544188d9b9ea94036cc56b39fbe045ead6f8ced00ad02a8854142d'
+'ced2319cbb48a4aa10bc5b1e1167a5de3b694eb9d256e68d978dbe86d997bee9'
 '2e0a50bdaf8f387a499895e1c204bff78244eaa72b78187c8a84ef40c0b82598'
 'e8bfe29d8393d2b87517c4dd56ea834b213aa00bf3d7fcde4ead3457cadbbc68')



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

2011-04-27 Thread Dan McGee
Date: Wednesday, April 27, 2011 @ 11:41:10
  Author: dan
Revision: 120941

archrelease: remove extra-x86_64

Deleted:
  git/repos/extra-x86_64/



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

2011-04-27 Thread Dan McGee
Date: Wednesday, April 27, 2011 @ 11:41:19
  Author: dan
Revision: 120942

archrelease: copy trunk to extra-x86_64

Added:
  git/repos/extra-x86_64/



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

2011-04-27 Thread Dan McGee
Date: Wednesday, April 27, 2011 @ 11:50:40
  Author: dan
Revision: 120943

archrelease: remove extra-i686

Deleted:
  git/repos/extra-i686/



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

2011-04-27 Thread Dan McGee
Date: Wednesday, April 27, 2011 @ 11:50:47
  Author: dan
Revision: 120944

archrelease: copy trunk to extra-i686

Added:
  git/repos/extra-i686/



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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 14:09:04
  Author: ronald
Revision: 120945

upgpkg: octave 3.4.0-2
disable install file (no info files as documentation fails to build)

Modified:
  octave/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 15:50:47 UTC (rev 120944)
+++ PKGBUILD2011-04-27 18:09:04 UTC (rev 120945)
@@ -5,7 +5,7 @@
 
 pkgname=octave
 pkgver=3.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc=A high-level language, primarily intended for numerical computations.
 arch=('i686' 'x86_64')
 url=http://www.octave.org;
@@ -18,7 +18,7 @@
 source=(ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2;
octave-3.4.0-gcc46.patch)
 options=('!emptydirs')
-install=octave.install
+#install=octave.install
 sha1sums=('936a8fc962abd96e7568fb5909ec2a4d7997a1a8'
   '791c905a80510783e5f9c556c12f02400887fbec')
 



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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 14:09:08
  Author: ronald
Revision: 120946

archrelease: remove extra-i686

Deleted:
  octave/repos/extra-i686/



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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 14:09:25
  Author: ronald
Revision: 120947

archrelease: copy trunk to extra-i686

Added:
  octave/repos/extra-i686/



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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 14:09:28
  Author: ronald
Revision: 120948

archrelease: remove extra-x86_64

Deleted:
  octave/repos/extra-x86_64/



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

2011-04-27 Thread Ronald van Haren
Date: Wednesday, April 27, 2011 @ 14:09:43
  Author: ronald
Revision: 120949

archrelease: copy trunk to extra-x86_64

Added:
  octave/repos/extra-x86_64/



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

2011-04-27 Thread Giovanni Scafora
Date: Wednesday, April 27, 2011 @ 15:00:34
  Author: giovanni
Revision: 120950

upgpkg: xchm 1.19-1
upstream release

Modified:
  xchm/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 18:09:43 UTC (rev 120949)
+++ PKGBUILD2011-04-27 19:00:34 UTC (rev 120950)
@@ -2,7 +2,7 @@
 # Maintainer: Giovanni Scafora giova...@archlinux.org
 
 pkgname=xchm
-pkgver=1.18
+pkgver=1.19
 pkgrel=1
 pkgdesc=A cross-platform GUI front-end to chmlib
 arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@
 
source=(http://downloads.sourceforge.net/sourceforge/xchm/${pkgname}-${pkgver}.tar.gz
 xchm.desktop
 xchm.xml)
-md5sums=('07d7a910b3216301a002be5630c71866'
+md5sums=('c9d65971801e044d51476f57e91909fc'
  '31fb9692b9ee9f2a205f58b9ff4bc4fe'
  '4102b0a393f5c60236143cc034664dd0')
 
@@ -21,12 +21,12 @@
   cd ${srcdir}/${pkgname}-${pkgver}
   export CXXFLAGS=${CXXFLAGS} -fno-strict-aliasing
   ./configure --prefix=/usr
-  make || return 1
+  make
 }
 
 package() {
   cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install || return 1
-  install -D -m644 ${srcdir}/xchm.desktop 
${pkgdir}/usr/share/applications/xchm.desktop || return 1
-  install -D -m644 ${srcdir}/xchm.xml 
${pkgdir}/usr/share/mime/packages/xchm.xml || return 1
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ${srcdir}/xchm.desktop 
${pkgdir}/usr/share/applications/xchm.desktop
+  install -D -m644 ${srcdir}/xchm.xml 
${pkgdir}/usr/share/mime/packages/xchm.xml
 }



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

2011-04-27 Thread Giovanni Scafora
Date: Wednesday, April 27, 2011 @ 15:00:42
  Author: giovanni
Revision: 120951

archrelease: remove extra-i686

Deleted:
  xchm/repos/extra-i686/



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

2011-04-27 Thread Giovanni Scafora
Date: Wednesday, April 27, 2011 @ 15:00:55
  Author: giovanni
Revision: 120952

archrelease: copy trunk to extra-i686

Added:
  xchm/repos/extra-i686/



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

2011-04-27 Thread Giovanni Scafora
Date: Wednesday, April 27, 2011 @ 15:00:57
  Author: giovanni
Revision: 120953

archrelease: remove extra-x86_64

Deleted:
  xchm/repos/extra-x86_64/



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

2011-04-27 Thread Giovanni Scafora
Date: Wednesday, April 27, 2011 @ 15:01:09
  Author: giovanni
Revision: 120954

archrelease: copy trunk to extra-x86_64

Added:
  xchm/repos/extra-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:24:20
  Author: andrea
Revision: 120955

upgpkg: libvncserver 0.9.8-1
upstream release

Modified:
  libvncserver/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 19:01:09 UTC (rev 120954)
+++ PKGBUILD2011-04-27 19:24:20 UTC (rev 120955)
@@ -3,20 +3,24 @@
 # Contributor: Tobias Powalowski tp...@archlinux.org
 
 pkgname=libvncserver
-pkgver=0.9.7
-pkgrel=3
-pkgdesc=The vnc library
+pkgver=0.9.8
+pkgrel=1
+pkgdesc=A cross-platform C libraries that allow you to easily implement VNC 
server
 arch=('i686' 'x86_64')
 url=http://libvncserver.sourceforge.net/;
 license=('GPL')
-depends=('libjpeg=8' 'zlib')
+depends=('libjpeg' 'zlib')
 options=('!libtool')
-source=(http://downloads.sourceforge.net/${pkgname}/LibVNCServer-${pkgver}.tar.gz)
-md5sums=('14af5bdae461df4666c18e5f83c150c4')
+source=(http://downloads.sourceforge.net/${pkgname}/LibVNCServer-${pkgver}.tar.gz;)
+md5sums=('dda9e75a1d5d7c37bb57d90ead7b32b3')
 
 build() {
-  cd $srcdir/LibVNCServer-$pkgver
-  ./configure --prefix=/usr || return 1
-  make || return 1
-  make DESTDIR=$pkgdir install || return 1
+  cd ${srcdir}/LibVNCServer-${pkgver}
+  ./configure --prefix=/usr
+  make
 }
+
+package() {
+  cd ${srcdir}/LibVNCServer-${pkgver}
+  make DESTDIR=${pkgdir} install
+}



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:24:23
  Author: andrea
Revision: 120956

archrelease: remove extra-i686

Deleted:
  libvncserver/repos/extra-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:25:00
  Author: andrea
Revision: 120957

archrelease: copy trunk to extra-i686

Added:
  libvncserver/repos/extra-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:25:04
  Author: andrea
Revision: 120958

archrelease: remove extra-x86_64

Deleted:
  libvncserver/repos/extra-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:25:20
  Author: andrea
Revision: 120959

archrelease: copy trunk to extra-x86_64

Added:
  libvncserver/repos/extra-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:27:24
  Author: andrea
Revision: 120960

upgpkg: rasqal 0.9.21-1
downgrading rasqal

Modified:
  rasqal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 19:25:20 UTC (rev 120959)
+++ PKGBUILD2011-04-27 19:27:24 UTC (rev 120960)
@@ -3,23 +3,25 @@
 # Contributor: Lawrence Lee valh...@facticius.net
 
 pkgname=rasqal
-pkgver=0.9.25
+epoch=1
+pkgver=0.9.21
 pkgrel=1
-pkgdesc=a free C library that handles Resource Description Framework (RDF) 
query syntaxes, query construction and query execution returning result 
bindings
+pkgdesc=A free C library that handles Resource Description Framework (RDF) 
query syntaxes, query construction and query execution returning result 
bindings
 url=http://librdf.org/rasqal;
 license=('GPL' 'LGPL')
 arch=('i686' 'x86_64')
-depends=('raptor=2.0.0' 'mpfr')
+depends=('raptor1' 'mpfr')
 options=('!libtool')
+replaces=('rasqal-compat')
+conflicts=('rasqal-compat')
 source=(http://download.librdf.org/source/${pkgname}-${pkgver}.tar.gz)
-md5sums=('ee12d7ad59c581eb65db89c851672c0a')
+md5sums=('55b67ec92a059ef8979d46486b00a032')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
   ./configure --prefix=/usr \
--disable-static \
-   --enable-release \
-   --with-raptor=system
+   --enable-release
   make
 }
 



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:27:27
  Author: andrea
Revision: 120961

archrelease: remove testing-i686

Deleted:
  rasqal/repos/testing-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:27:40
  Author: andrea
Revision: 120962

archrelease: copy trunk to testing-i686

Added:
  rasqal/repos/testing-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:27:44
  Author: andrea
Revision: 120963

archrelease: remove testing-x86_64

Deleted:
  rasqal/repos/testing-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:27:59
  Author: andrea
Revision: 120964

archrelease: copy trunk to testing-x86_64

Added:
  rasqal/repos/testing-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:29:40
  Author: andrea
Revision: 120965

upgpkg: redland 1.0.12-1
downgrading redland

Modified:
  redland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 19:27:59 UTC (rev 120964)
+++ PKGBUILD2011-04-27 19:29:40 UTC (rev 120965)
@@ -3,17 +3,18 @@
 # Contributor: Francois Charette francois.archlinux.org 
 
 pkgbase=redland
+epoch=1
 pkgname=('redland' 'redland-storage-mysql' 'redland-storage-postgresql' 
'redland-storage-virtuoso' 'redland-storage-sqlite')
-pkgver=1.0.13
+pkgver=1.0.12
 pkgrel=1
 url=http://librdf.org/;
 license=(GPL)
 arch=('i686' 'x86_64')
-makedepends=('rasqal=0.9.24' 'raptor=2.0.0' 'db=5.1' 'postgresql-libs' 
'libmysqlclient' 'unixodbc' 'sqlite3')
+makedepends=('rasqal=0.9.21' 'raptor1' 'db=5.1' 'postgresql-libs' 
'libmysqlclient' 'unixodbc' 'sqlite3')
 options=('!libtool')
 source=(http://download.librdf.org/source/$pkgname-$pkgver.tar.gz
-   rpath.diff)
-md5sums=('96c15f36f842ad7e1c9d225e4ca97b68'
+rpath.diff)
+md5sums=('40f37a5ad97fdfbf984f78dcea0c6115'
  'acc85e784f01a656bd56777f95880787')
 
 build() {
@@ -33,9 +34,11 @@
 
 package_redland() {
  pkgdesc=Library that provides a high-level interface to RDF data
- depends=('rasqal=0.9.24' 'raptor=2.0.0' 'libtool')
+ depends=('rasqal=0.9.21' 'raptor1' 'libtool')
+ replaces=('redland-compat' 'redland-compat-devel')
+ conflicts=('redland-compat' 'redland-compat-devel')
  
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgbase}-${pkgver}
   make DESTDIR=${pkgdir} install
   rm -rf ${pkgdir}/usr/lib/redland
 }
@@ -44,7 +47,7 @@
  pkgdesc=MySQL storage support for Redland
  depends=('redland' 'libmysqlclient')
 
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgbase}-${pkgver}
   install -dm755 ${pkgdir}/usr/lib/redland
   install -m755 src/.libs/librdf_storage_mysql.so 
${pkgdir}/usr/lib/redland/librdf_storage_mysql.so 
 }
@@ -53,7 +56,7 @@
  pkgdesc=PostgreSQL storage support for Redland
  depends=('redland' 'postgresql-libs')
 
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgbase}-${pkgver}
   install -dm755 ${pkgdir}/usr/lib/redland
   install -m755 src/.libs/librdf_storage_postgresql.so 
${pkgdir}/usr/lib/redland/
 }
@@ -62,7 +65,7 @@
  pkgdesc=Virtuoso storage support for Redland
  depends=('redland' 'unixodbc' 'db')
 
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgbase}-${pkgver}
   install -dm755 ${pkgdir}/usr/lib/redland
   install -m755 src/.libs/librdf_storage_virtuoso.so ${pkgdir}/usr/lib/redland/
 }
@@ -71,7 +74,7 @@
  pkgdesc=SQLite storage support for Redland
  depends=('redland' 'sqlite3' 'db')
  
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${srcdir}/${pkgbase}-${pkgver}
   install -dm755 ${pkgdir}/usr/lib/redland
   install -m755 src/.libs/librdf_storage_sqlite.so ${pkgdir}/usr/lib/redland/
 }



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:29:43
  Author: andrea
Revision: 120966

archrelease: remove testing-i686

Deleted:
  redland/repos/testing-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:29:58
  Author: andrea
Revision: 120967

archrelease: copy trunk to testing-i686

Added:
  redland/repos/testing-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:30:01
  Author: andrea
Revision: 120968

archrelease: remove testing-x86_64

Deleted:
  redland/repos/testing-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:30:16
  Author: andrea
Revision: 120969

archrelease: copy trunk to testing-x86_64

Added:
  redland/repos/testing-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:34:01
  Author: andrea
Revision: 120970

upgpkg: soprano 2.6.0-4
rebuilt with redland 1:1.0.12-1

Modified:
  soprano/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 19:30:16 UTC (rev 120969)
+++ PKGBUILD2011-04-27 19:34:01 UTC (rev 120970)
@@ -4,13 +4,13 @@
 
 pkgname=soprano
 pkgver=2.6.0
-pkgrel=3
+pkgrel=4
 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-compat' 'libiodbc' 'raptor1')
-makedepends=('cmake' 'openjdk6' 'doxygen' 'redland-compat-devel==1.0.12-3' 
'rasqal-compat-devel==0.9.21-2')
+depends=('qt' 'clucene' 'redland-storage-virtuoso' 'libiodbc')
+makedepends=('cmake' 'openjdk6' 'doxygen')
 
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;)
 md5sums=('03ae49e87c6ec99e57d0433c2650846f')
 



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:34:04
  Author: andrea
Revision: 120971

archrelease: remove testing-i686

Deleted:
  soprano/repos/testing-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:34:19
  Author: andrea
Revision: 120972

archrelease: copy trunk to testing-i686

Added:
  soprano/repos/testing-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:34:22
  Author: andrea
Revision: 120973

archrelease: remove testing-x86_64

Deleted:
  soprano/repos/testing-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:34:35
  Author: andrea
Revision: 120974

archrelease: copy trunk to testing-x86_64

Added:
  soprano/repos/testing-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:38:49
  Author: andrea
Revision: 120975

db-remove: rasqal-compat removed by andrea

Deleted:
  rasqal-compat/repos/testing-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:38:56
  Author: andrea
Revision: 120976

db-remove: rasqal-compat removed by andrea

Deleted:
  rasqal-compat/repos/testing-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:39:06
  Author: andrea
Revision: 120977

db-remove: redland-compat removed by andrea

Deleted:
  redland-compat/repos/testing-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:39:26
  Author: andrea
Revision: 120978

db-remove: redland-compat removed by andrea

Deleted:
  redland-compat/repos/testing-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:40:32
  Author: andrea
Revision: 120979

upgpkg: slv2 0.6.6-4
rebuilt with redland 1:1.0.12-1

Modified:
  slv2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 19:39:26 UTC (rev 120978)
+++ PKGBUILD2011-04-27 19:40:32 UTC (rev 120979)
@@ -4,12 +4,12 @@
 
 pkgname=slv2
 pkgver=0.6.6
-pkgrel=3
+pkgrel=4
 pkgdesc=Library for LV2 hosts
 arch=('i686' 'x86_64')
 url=http://drobilla.net/software/slv2;
 license=('GPL')
-depends=('redland=1.0.13' 'lv2core' 'jack')
+depends=('redland=1.0.12' 'lv2core' 'jack')
 makedepends=('python2')
 install=$pkgname.install
 changelog=$pkgname.changelog



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:40:35
  Author: andrea
Revision: 120980

archrelease: remove testing-i686

Deleted:
  slv2/repos/testing-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:40:49
  Author: andrea
Revision: 120981

archrelease: copy trunk to testing-i686

Added:
  slv2/repos/testing-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:40:52
  Author: andrea
Revision: 120982

archrelease: remove testing-x86_64

Deleted:
  slv2/repos/testing-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:41:07
  Author: andrea
Revision: 120983

archrelease: copy trunk to testing-x86_64

Added:
  slv2/repos/testing-x86_64/



[arch-commits] Commit in (rasqal-compat)

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:41:36
  Author: andrea
Revision: 120984

cleanup

Deleted:
  rasqal-compat/



[arch-commits] Commit in (redland-compat)

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:41:44
  Author: andrea
Revision: 120985

cleanup

Deleted:
  redland-compat/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:46:20
  Author: andrea
Revision: 120986

upgpkg: rasqal 0.9.25-1
keep latest release in staging

Modified:
  rasqal/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 19:41:44 UTC (rev 120985)
+++ PKGBUILD2011-04-27 19:46:20 UTC (rev 120986)
@@ -3,19 +3,16 @@
 # Contributor: Lawrence Lee valh...@facticius.net
 
 pkgname=rasqal
-epoch=1
-pkgver=0.9.21
+pkgver=0.9.25
 pkgrel=1
 pkgdesc=A free C library that handles Resource Description Framework (RDF) 
query syntaxes, query construction and query execution returning result 
bindings
 url=http://librdf.org/rasqal;
 license=('GPL' 'LGPL')
 arch=('i686' 'x86_64')
-depends=('raptor1' 'mpfr')
+depends=('raptor=2.0.2' 'mpfr')
 options=('!libtool')
-replaces=('rasqal-compat')
-conflicts=('rasqal-compat')
 source=(http://download.librdf.org/source/${pkgname}-${pkgver}.tar.gz)
-md5sums=('55b67ec92a059ef8979d46486b00a032')
+md5sums=('ee12d7ad59c581eb65db89c851672c0a')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:46:33
  Author: andrea
Revision: 120987

archrelease: copy trunk to staging-i686

Added:
  rasqal/repos/staging-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:46:46
  Author: andrea
Revision: 120988

archrelease: copy trunk to staging-x86_64

Added:
  rasqal/repos/staging-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:51:38
  Author: andrea
Revision: 120989

upgpkg: redland 1.0.13-1
keep latest release in staging

Modified:
  redland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 19:46:46 UTC (rev 120988)
+++ PKGBUILD2011-04-27 19:51:38 UTC (rev 120989)
@@ -3,18 +3,17 @@
 # Contributor: Francois Charette francois.archlinux.org 
 
 pkgbase=redland
-epoch=1
 pkgname=('redland' 'redland-storage-mysql' 'redland-storage-postgresql' 
'redland-storage-virtuoso' 'redland-storage-sqlite')
-pkgver=1.0.12
+pkgver=1.0.13
 pkgrel=1
 url=http://librdf.org/;
 license=(GPL)
 arch=('i686' 'x86_64')
-makedepends=('rasqal=0.9.21' 'raptor1' 'db=5.1' 'postgresql-libs' 
'libmysqlclient' 'unixodbc' 'sqlite3')
+makedepends=('rasqal=0.9.25' 'raptor=2.0.2' 'db=5.1' 'postgresql-libs' 
'libmysqlclient' 'unixodbc' 'sqlite3')
 options=('!libtool')
 source=(http://download.librdf.org/source/$pkgname-$pkgver.tar.gz
 rpath.diff)
-md5sums=('40f37a5ad97fdfbf984f78dcea0c6115'
+md5sums=('96c15f36f842ad7e1c9d225e4ca97b68'
  'acc85e784f01a656bd56777f95880787')
 
 build() {



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:51:53
  Author: andrea
Revision: 120990

archrelease: copy trunk to staging-i686

Added:
  redland/repos/staging-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 15:52:05
  Author: andrea
Revision: 120991

archrelease: copy trunk to staging-x86_64

Added:
  redland/repos/staging-x86_64/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 16:01:13
  Author: andrea
Revision: 120992

fix depends

Modified:
  redland/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2011-04-27 19:52:05 UTC (rev 120991)
+++ PKGBUILD2011-04-27 20:01:13 UTC (rev 120992)
@@ -33,7 +33,7 @@
 
 package_redland() {
  pkgdesc=Library that provides a high-level interface to RDF data
- depends=('rasqal=0.9.21' 'raptor1' 'libtool')
+ depends=('rasqal=0.9.25' 'raptor=2.0.2' 'libtool')
  replaces=('redland-compat' 'redland-compat-devel')
  conflicts=('redland-compat' 'redland-compat-devel')
  



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 16:01:49
  Author: andrea
Revision: 120993

archrelease: remove staging-i686

Deleted:
  redland/repos/staging-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 16:02:04
  Author: andrea
Revision: 120994

archrelease: copy trunk to staging-i686

Added:
  redland/repos/staging-i686/



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

2011-04-27 Thread Andrea Scarpino
Date: Wednesday, April 27, 2011 @ 16:02:08
  Author: andrea
Revision: 120995

archrelease: remove staging-x86_64

Deleted:
  redland/repos/staging-x86_64/



  1   2   >