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

2012-10-27 Thread Allan McRae
Date: Saturday, October 27, 2012 @ 02:49:32
  Author: allan
Revision: 169720

bz2 removed from upstream server...

Modified:
  binutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-27 03:13:09 UTC (rev 169719)
+++ PKGBUILD2012-10-27 06:49:32 UTC (rev 169720)
@@ -15,9 +15,9 @@
 checkdepends=('dejagnu' 'bc')
 options=('!libtool' '!distcc' '!ccache')
 install=binutils.install
-source=(ftp://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.bz2{,.sig})
-md5sums=('6e6c85eb4468501051ae209c9e2a7ecc'
- '46ca898c6c7ab8f35c676a965c7ce804')
+source=(ftp://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.gz{,.sig})
+md5sums=('ed58f50d8920c3f1d9cb110d5c972c27'
+ '5293d43d444852f71f7c96c6295ba66d')
 
 build() {
   cd ${srcdir}



[arch-commits] Commit in binutils/repos/testing-i686 (4 files)

2012-10-27 Thread Allan McRae
Date: Saturday, October 27, 2012 @ 02:52:29
  Author: allan
Revision: 169721

resolve

Added:
  binutils/repos/testing-i686/PKGBUILD
(from rev 169720, binutils/trunk/PKGBUILD)
  binutils/repos/testing-i686/binutils.install
(from rev 169720, binutils/trunk/binutils.install)
Deleted:
  binutils/repos/testing-i686/PKGBUILD
  binutils/repos/testing-i686/binutils.install

--+
 PKGBUILD |  168 ++---
 binutils.install |   34 +-
 2 files changed, 101 insertions(+), 101 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-27 06:49:32 UTC (rev 169720)
+++ PKGBUILD2012-10-27 06:52:29 UTC (rev 169721)
@@ -1,84 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-
-# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
-
-pkgname=binutils
-pkgver=2.23
-pkgrel=1
-pkgdesc=A set of programs to assemble and manipulate binary and object files
-arch=('i686' 'x86_64')
-url=http://www.gnu.org/software/binutils/;
-license=('GPL')
-groups=('base-devel')
-depends=('glibc=2.16' 'zlib')
-checkdepends=('dejagnu' 'bc')
-options=('!libtool' '!distcc' '!ccache')
-install=binutils.install
-source=(ftp://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.bz2{,.sig})
-md5sums=('6e6c85eb4468501051ae209c9e2a7ecc'
- '46ca898c6c7ab8f35c676a965c7ce804')
-
-build() {
-  cd ${srcdir}
-  mkdir binutils-build  cd binutils-build
-
-  ${srcdir}/binutils-${pkgver}/configure --prefix=/usr \
---with-lib-path=/usr/lib:/usr/local/lib \
---with-bugurl=https://bugs.archlinux.org/ \
---enable-ld=default --enable-gold \
---enable-plugins --enable-threads --enable-shared \
---disable-werror --disable-multilib
-
-  # check the host environment and makes sure all the necessary tools are 
available
-  make configure-host
-
-  make tooldir=${pkgdir}/usr
-
-  # Rebuild libiberty.a with -fPIC
-  cp -a libiberty libiberty-pic
-  make -C libiberty-pic clean
-  make CFLAGS=$CFLAGS -fPIC -C libiberty-pic
-
-  # Rebuild libbfd.a with -fPIC
-  # hidden visability prevent 3rd party shared libraries exporting bfd 
non-stable API
-  cp -a bfd bfd-pic
-  make -C bfd-pic clean
-  make CFLAGS=$CFLAGS -fPIC -fvisibility=hidden -C bfd-pic
-
-  # Rebuild libopcodes.a with -fPIC
-  cp -a opcodes opcodes-pic
-  make -C opcodes-pic clean 
-  make CFLAGS=$CFLAGS -fPIC -C opcodes-pic
-}
-
-check() {
-  cd ${srcdir}/binutils-build
-  
-  # unset LDFLAGS as testsuite makes assumptions about which ones are active
-  # do not abort on errors - manually check log files
-  make LDFLAGS= -k check || true
-}
-
-package() {
-  cd ${srcdir}/binutils-build
-  make prefix=${pkgdir}/usr tooldir=${pkgdir}/usr install
-  
-  # Add some useful headers
-  install -m644 ${srcdir}/binutils-${pkgver}/include/libiberty.h 
${pkgdir}/usr/include
-  install -m644 ${srcdir}/binutils-${pkgver}/include/demangle.h 
${pkgdir}/usr/include
-
-  # install libraries rebuilt with -fPIC
-  install -m644 libiberty-pic/libiberty.a ${pkgdir}/usr/lib
-  install -m644 bfd-pic/libbfd.a ${pkgdir}/usr/lib
-  install -m644 opcodes/libopcodes.a ${pkgdir}/usr/lib
-
-  # Remove Windows/Novell specific man pages
-  rm ${pkgdir}/usr/share/man/man1/{dlltool,nlmconv,windres,windmc}*
-
-  # Remove these symlinks, they are not ABI stable.
-  # Programs should compile static to the .a file.
-  rm ${pkgdir}/usr/lib/lib{bfd,opcodes}.so
-  echo INPUT ( /usr/lib/libbfd.a -liberty -lz ) ${pkgdir}/usr/lib/libbfd.so
-  echo INPUT ( /usr/lib/libopcodes.a -lbfd ) ${pkgdir}/usr/lib/libopcodes.so
-}

Copied: binutils/repos/testing-i686/PKGBUILD (from rev 169720, 
binutils/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-10-27 06:52:29 UTC (rev 169721)
@@ -0,0 +1,84 @@
+# $Id$
+# Maintainer: Allan McRae al...@archlinux.org
+
+# toolchain build order: 
linux-api-headers-glibc-binutils-gcc-binutils-glibc
+
+pkgname=binutils
+pkgver=2.23
+pkgrel=1
+pkgdesc=A set of programs to assemble and manipulate binary and object files
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/binutils/;
+license=('GPL')
+groups=('base-devel')
+depends=('glibc=2.16' 'zlib')
+checkdepends=('dejagnu' 'bc')
+options=('!libtool' '!distcc' '!ccache')
+install=binutils.install
+source=(ftp://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.gz{,.sig})
+md5sums=('ed58f50d8920c3f1d9cb110d5c972c27'
+ '5293d43d444852f71f7c96c6295ba66d')
+
+build() {
+  cd ${srcdir}
+  mkdir binutils-build  cd binutils-build
+
+  ${srcdir}/binutils-${pkgver}/configure --prefix=/usr \
+--with-lib-path=/usr/lib:/usr/local/lib \
+--with-bugurl=https://bugs.archlinux.org/ \
+--enable-ld=default --enable-gold \
+--enable-plugins --enable-threads --enable-shared \
+--disable-werror --disable-multilib
+
+  # check the host environment and makes sure 

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

2012-10-27 Thread Allan McRae
Date: Saturday, October 27, 2012 @ 02:52:55
  Author: allan
Revision: 169722

bz2 removed from upstream server...

Modified:
  binutils/repos/testing-x86_64/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-27 06:52:29 UTC (rev 169721)
+++ PKGBUILD2012-10-27 06:52:55 UTC (rev 169722)
@@ -15,9 +15,9 @@
 checkdepends=('dejagnu' 'bc')
 options=('!libtool' '!distcc' '!ccache')
 install=binutils.install
-source=(ftp://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.bz2{,.sig})
-md5sums=('6e6c85eb4468501051ae209c9e2a7ecc'
- '46ca898c6c7ab8f35c676a965c7ce804')
+source=(ftp://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.gz{,.sig})
+md5sums=('ed58f50d8920c3f1d9cb110d5c972c27'
+ '5293d43d444852f71f7c96c6295ba66d')
 
 build() {
   cd ${srcdir}



[arch-commits] Commit in phonon/trunk (PKGBUILD fix-qmake.patch)

2012-10-27 Thread Andrea Scarpino
Date: Saturday, October 27, 2012 @ 06:29:38
  Author: andrea
Revision: 169723

Fix qmake syntax (FS#32141)

Added:
  phonon/trunk/fix-qmake.patch
Modified:
  phonon/trunk/PKGBUILD

-+
 PKGBUILD|   12 +++-
 fix-qmake.patch |   27 +++
 2 files changed, 34 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-10-27 06:52:55 UTC (rev 169722)
+++ PKGBUILD2012-10-27 10:29:38 UTC (rev 169723)
@@ -3,7 +3,7 @@
 
 pkgname=phonon
 pkgver=4.6.0
-pkgrel=2
+pkgrel=3
 epoch=1
 arch=('i686' 'x86_64')
 url='http://phonon.kde.org/'
@@ -15,13 +15,15 @@
 
source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
 'fix-plugindir-for-qt-app.patch')
 md5sums=('bbe0c1c62ed14c31479c4c1a6cf1e173'
- 'e37d67038c2501f25ac7ee7c2de54a9a')
+ 'e37d67038c2501f25ac7ee7c2de54a9a'
+ 'c17d8617e9482f02b3e098842946b679')
 
 build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
+  cd ${pkgname}-${pkgver}
   patch -p1 -i ${srcdir}/fix-plugindir-for-qt-app.patch
+  patch -p1 -i ${srcdir}/fix-qmake.patch
+  cd ../
 
-  cd ${srcdir}
   mkdir build
   cd build
   cmake ../${pkgname}-${pkgver} \
@@ -34,6 +36,6 @@
 }
 
 package(){
-  cd ${srcdir}/build
+  cd build
   make DESTDIR=${pkgdir} install
 }

Added: fix-qmake.patch
===
--- fix-qmake.patch (rev 0)
+++ fix-qmake.patch 2012-10-27 10:29:38 UTC (rev 169723)
@@ -0,0 +1,27 @@
+From: Oswald Buddenhagen o...@kde.org
+Date: Sat, 27 Oct 2012 07:58:16 +
+Subject: remove unnecessary if() statement
+X-Git-Url: 
http://quickgit.kde.org/?p=phonon.gitamp;a=commitdiffamp;h=a8c431494d2a6f3785c132f14d00d38ea0e5b328
+---
+remove unnecessary if() statement
+
+as it happens, this works around a qmake breakage relating to parsing if()
+
+BUG: 295037
+FIXED-IN: 4.6.1
+---
+
+
+--- a/qt_phonon.pri
 b/qt_phonon.pri
+@@ -3,7 +3,7 @@
+ # the next build of Qt. So pretend we're not there in this case.
+ # This file is loaded by qt_config.prf, before .qmake.cache has been loaded.
+ # Consequently, we have to do some stunts to get values out of the cache.
+-if(!exists($$_QMAKE_CACHE_)| \
+-   !contains($$list($$fromfile($$_QMAKE_CACHE_, CONFIG)), QTDIR_build)): \
++!exists($$_QMAKE_CACHE_)| \
++   !contains($$list($$fromfile($$_QMAKE_CACHE_, CONFIG)), QTDIR_build): \
+ QT_CONFIG += phonon
+ 
+



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

2012-10-27 Thread Andrea Scarpino
Date: Saturday, October 27, 2012 @ 06:49:43
  Author: andrea
Revision: 169724

upgpkg: phonon 1:4.6.0-3

add the patch to the source array

Modified:
  phonon/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-27 10:29:38 UTC (rev 169723)
+++ PKGBUILD2012-10-27 10:49:43 UTC (rev 169724)
@@ -13,7 +13,8 @@
 optdepends=('pulseaudio: PulseAudio support')
 makedepends=('cmake' 'automoc4' 'pulseaudio' 'qtwebkit')
 
source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
-'fix-plugindir-for-qt-app.patch')
+'fix-plugindir-for-qt-app.patch'
+'fix-qmake.patch')
 md5sums=('bbe0c1c62ed14c31479c4c1a6cf1e173'
  'e37d67038c2501f25ac7ee7c2de54a9a'
  'c17d8617e9482f02b3e098842946b679')



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

2012-10-27 Thread Andrea Scarpino
Date: Saturday, October 27, 2012 @ 06:50:17
  Author: andrea
Revision: 169725

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

Added:
  phonon/repos/extra-i686/PKGBUILD
(from rev 169724, phonon/trunk/PKGBUILD)
  phonon/repos/extra-i686/fix-plugindir-for-qt-app.patch
(from rev 169724, phonon/trunk/fix-plugindir-for-qt-app.patch)
  phonon/repos/extra-i686/fix-qmake.patch
(from rev 169724, phonon/trunk/fix-qmake.patch)
  phonon/repos/extra-x86_64/PKGBUILD
(from rev 169724, phonon/trunk/PKGBUILD)
  phonon/repos/extra-x86_64/fix-plugindir-for-qt-app.patch
(from rev 169724, phonon/trunk/fix-plugindir-for-qt-app.patch)
  phonon/repos/extra-x86_64/fix-qmake.patch
(from rev 169724, phonon/trunk/fix-qmake.patch)
Deleted:
  phonon/repos/extra-i686/PKGBUILD
  phonon/repos/extra-i686/fix-plugindir-for-qt-app.patch
  phonon/repos/extra-x86_64/PKGBUILD
  phonon/repos/extra-x86_64/fix-plugindir-for-qt-app.patch

-+
 extra-i686/PKGBUILD |   81 +-
 extra-i686/fix-plugindir-for-qt-app.patch   |   22 +++
 extra-i686/fix-qmake.patch  |   27 
 extra-x86_64/PKGBUILD   |   81 +-
 extra-x86_64/fix-plugindir-for-qt-app.patch |   22 +++
 extra-x86_64/fix-qmake.patch|   27 
 6 files changed, 160 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 10:49:43 UTC (rev 169724)
+++ extra-i686/PKGBUILD 2012-10-27 10:50:17 UTC (rev 169725)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-
-pkgname=phonon
-pkgver=4.6.0
-pkgrel=2
-epoch=1
-arch=('i686' 'x86_64')
-url='http://phonon.kde.org/'
-license=('LGPL')
-pkgdesc=The multimedia framework for KDE
-depends=('qt' 'phonon-backend' 'libpulse' 'libqzeitgeist')
-optdepends=('pulseaudio: PulseAudio support')
-makedepends=('cmake' 'automoc4' 'pulseaudio' 'qtwebkit')
-source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
-'fix-plugindir-for-qt-app.patch')
-md5sums=('bbe0c1c62ed14c31479c4c1a6cf1e173'
- 'e37d67038c2501f25ac7ee7c2de54a9a')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1 -i ${srcdir}/fix-plugindir-for-qt-app.patch
-
-  cd ${srcdir}
-  mkdir build
-  cd build
-  cmake ../${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_SKIP_RPATH=ON \
--DCMAKE_INSTALL_PREFIX=/usr \
--DPHONON_QT_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
--DPHONON_QT_PLUGIN_INSTALL_DIR=/usr/lib/qt/plugins/designer
-  make
-}
-
-package(){
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: phonon/repos/extra-i686/PKGBUILD (from rev 169724, 
phonon/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 10:50:17 UTC (rev 169725)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+
+pkgname=phonon
+pkgver=4.6.0
+pkgrel=3
+epoch=1
+arch=('i686' 'x86_64')
+url='http://phonon.kde.org/'
+license=('LGPL')
+pkgdesc=The multimedia framework for KDE
+depends=('qt' 'phonon-backend' 'libpulse' 'libqzeitgeist')
+optdepends=('pulseaudio: PulseAudio support')
+makedepends=('cmake' 'automoc4' 'pulseaudio' 'qtwebkit')
+source=(http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
+'fix-plugindir-for-qt-app.patch'
+'fix-qmake.patch')
+md5sums=('bbe0c1c62ed14c31479c4c1a6cf1e173'
+ 'e37d67038c2501f25ac7ee7c2de54a9a'
+ 'c17d8617e9482f02b3e098842946b679')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/fix-plugindir-for-qt-app.patch
+  patch -p1 -i ${srcdir}/fix-qmake.patch
+  cd ../
+
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_SKIP_RPATH=ON \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DPHONON_QT_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \
+-DPHONON_QT_PLUGIN_INSTALL_DIR=/usr/lib/qt/plugins/designer
+  make
+}
+
+package(){
+  cd build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/fix-plugindir-for-qt-app.patch
===
--- extra-i686/fix-plugindir-for-qt-app.patch   2012-10-27 10:49:43 UTC (rev 
169724)
+++ extra-i686/fix-plugindir-for-qt-app.patch   2012-10-27 10:50:17 UTC (rev 
169725)
@@ -1,11 +0,0 @@
 a/phonon/CMakeLists.txt
-+++ b/phonon/CMakeLists.txt
-@@ -78,7 +78,7 @@ if (PHONON_NO_PLATFORMPLUGIN)
- add_definitions(-DQT_NO_PHONON_PLATFORMPLUGIN)
- endif (PHONON_NO_PLATFORMPLUGIN)
- 
--add_definitions(-DPHONON_LIBRARY_PATH=${PLUGIN_INSTALL_DIR}/plugins)
-+add_definitions(-DPHONON_LIBRARY_PATH=${CMAKE_INSTALL_PREFIX}/${PLUGIN_INSTALL_DIR}/plugins)
- 
- 

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

2012-10-27 Thread Ionut Biru
Date: Saturday, October 27, 2012 @ 09:00:36
  Author: ibiru
Revision: 169726

reflect package name changes

Modified:
  vlc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-27 10:50:17 UTC (rev 169725)
+++ PKGBUILD2012-10-27 13:00:36 UTC (rev 169726)
@@ -28,8 +28,8 @@
 'libavc1394: for devices using the 1394ta AV/C'
 'libdc1394: for IEEE 1394 plugin'
 'kdelibs: KDE Solid hardware integration'
-'vdpau-video: vdpau back-end for nvidia'
-'libva-driver-intel: back-end for intel cards'
+'libva-vdpau-driver: vdpau back-end for nvidia'
+'libva-intel-driver: back-end for intel cards'
 'libbluray: for Blu-Ray support'
 'flac: for Free Lossless Audio Codec plugin'
 'oss: for OSS audio support'



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

2012-10-27 Thread Pierre Schmitz
Date: Saturday, October 27, 2012 @ 14:33:39
  Author: pierre
Revision: 169727

upgpkg: devtools 20121027-1

Modified:
  devtools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-27 13:00:36 UTC (rev 169726)
+++ PKGBUILD2012-10-27 18:33:39 UTC (rev 169727)
@@ -2,7 +2,7 @@
 # Maintainer: Pierre Schmitz pie...@archlinux.de
 
 pkgname=devtools
-pkgver=20121013
+pkgver=20121027
 pkgrel=1
 pkgdesc='Tools for Arch Linux package maintainers'
 arch=('any')
@@ -11,8 +11,8 @@
 depends=('namcap' 'openssh' 'subversion' 'rsync' 'arch-install-scripts')
 source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 
ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
-md5sums=('62165ccec1ffb6df9a9b960cc6626e97'
- '3d1a8e9594165942109de7a260e5eb5a')
+md5sums=('84553b154b32ed53b45f2907a80e22ba'
+ '7c1c67fe557c7761acbaad4d1f2d6944')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}



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

2012-10-27 Thread Pierre Schmitz
Date: Saturday, October 27, 2012 @ 14:33:59
  Author: pierre
Revision: 169728

archrelease: copy trunk to extra-any

Added:
  devtools/repos/extra-any/PKGBUILD
(from rev 169727, devtools/trunk/PKGBUILD)
Deleted:
  devtools/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   50 +-
 1 file changed, 25 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-27 18:33:39 UTC (rev 169727)
+++ PKGBUILD2012-10-27 18:33:59 UTC (rev 169728)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz pie...@archlinux.de
-
-pkgname=devtools
-pkgver=20121013
-pkgrel=1
-pkgdesc='Tools for Arch Linux package maintainers'
-arch=('any')
-license=('GPL')
-url='http://projects.archlinux.org/devtools.git/'
-depends=('namcap' 'openssh' 'subversion' 'rsync' 'arch-install-scripts')
-source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-
ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
-md5sums=('62165ccec1ffb6df9a9b960cc6626e97'
- '3d1a8e9594165942109de7a260e5eb5a')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make PREFIX=/usr
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make PREFIX=/usr DESTDIR=${pkgdir} install
-}

Copied: devtools/repos/extra-any/PKGBUILD (from rev 169727, 
devtools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-10-27 18:33:59 UTC (rev 169728)
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Pierre Schmitz pie...@archlinux.de
+
+pkgname=devtools
+pkgver=20121027
+pkgrel=1
+pkgdesc='Tools for Arch Linux package maintainers'
+arch=('any')
+license=('GPL')
+url='http://projects.archlinux.org/devtools.git/'
+depends=('namcap' 'openssh' 'subversion' 'rsync' 'arch-install-scripts')
+source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+
ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz.sig;)
+md5sums=('84553b154b32ed53b45f2907a80e22ba'
+ '7c1c67fe557c7761acbaad4d1f2d6944')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make PREFIX=/usr DESTDIR=${pkgdir} install
+}



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

2012-10-27 Thread Ionut Biru
Date: Saturday, October 27, 2012 @ 14:53:57
  Author: ibiru
Revision: 169729

update to 16.0.2

Modified:
  firefox/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-27 18:33:59 UTC (rev 169728)
+++ PKGBUILD2012-10-27 18:53:57 UTC (rev 169729)
@@ -3,7 +3,7 @@
 # Contributor: Jakub Schmidtke sja...@gmail.com
 
 pkgname=firefox
-pkgver=16.0.1
+pkgver=16.0.2
 pkgrel=1
 pkgdesc=Standalone web browser from mozilla.org
 arch=('i686' 'x86_64')
@@ -19,7 +19,7 @@
 options=(!emptydirs)
 
source=(https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2
 mozconfig firefox.desktop firefox-install-dir.patch vendor.js 
shared-libs.patch)
-md5sums=('78e641c67dc4a40cb3f48fce3e782d41'
+md5sums=('1b360968ab05b2a59757d33514897915'
  '5644c7b42f51013e2023787938fa955e'
  'eb56667bc1919f2ed93e34bdfc21f7d6'
  '150ac0fb3ac7b2114c8e8851a9e0516c'



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

2012-10-27 Thread Giovanni Scafora
Date: Saturday, October 27, 2012 @ 14:56:53
  Author: giovanni
Revision: 169730

upgpkg: live-media 2012.10.24-1

upstream release

Modified:
  live-media/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-27 18:53:57 UTC (rev 169729)
+++ PKGBUILD2012-10-27 18:56:53 UTC (rev 169730)
@@ -3,7 +3,7 @@
 # Contributor: Gilles CHAUVIN gcn...@gmail.com
 
 pkgname=live-media
-pkgver=2012.10.17
+pkgver=2012.10.24
 pkgrel=1
 pkgdesc=A set of C++ libraries for multimedia streaming
 arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@
 url=http://live555.com/liveMedia;
 depends=('gcc-libs')
 source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('c9319c87a768c01f8007965db5453ca1')
+md5sums=('4cda836ab242a31eb1b117b1b05cc572')
 
 build() {
   cd ${srcdir}/live



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

2012-10-27 Thread Giovanni Scafora
Date: Saturday, October 27, 2012 @ 14:57:25
  Author: giovanni
Revision: 169731

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

Added:
  live-media/repos/extra-i686/PKGBUILD
(from rev 169730, live-media/trunk/PKGBUILD)
  live-media/repos/extra-x86_64/PKGBUILD
(from rev 169730, live-media/trunk/PKGBUILD)
Deleted:
  live-media/repos/extra-i686/PKGBUILD
  live-media/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 18:56:53 UTC (rev 169730)
+++ extra-i686/PKGBUILD 2012-10-27 18:57:25 UTC (rev 169731)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Gilles CHAUVIN gcn...@gmail.com
-
-pkgname=live-media
-pkgver=2012.10.17
-pkgrel=1
-pkgdesc=A set of C++ libraries for multimedia streaming
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://live555.com/liveMedia;
-depends=('gcc-libs')
-source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('c9319c87a768c01f8007965db5453ca1')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
-  -e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a ${pkgdir}/usr/lib
-install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install ${testprog} ${pkgdir}/usr/bin
-  done
-}

Copied: live-media/repos/extra-i686/PKGBUILD (from rev 169730, 
live-media/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 18:57:25 UTC (rev 169731)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Gilles CHAUVIN gcn...@gmail.com
+
+pkgname=live-media
+pkgver=2012.10.24
+pkgrel=1
+pkgdesc=A set of C++ libraries for multimedia streaming
+arch=('i686' 'x86_64')
+license=('LGPL')
+url=http://live555.com/liveMedia;
+depends=('gcc-libs')
+source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
+md5sums=('4cda836ab242a31eb1b117b1b05cc572')
+
+build() {
+  cd ${srcdir}/live
+
+  sed \
+  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
+  -e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
+  -e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
+  -i config.linux
+  ./genMakefiles linux
+  make
+}
+
+package() {
+  cd ${srcdir}/live
+
+  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
+install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
+install -m644 ${dir}/*.a ${pkgdir}/usr/lib
+install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
+  done
+
+  for testprog in `find testProgs -type f -perm 755`; do
+install ${testprog} ${pkgdir}/usr/bin
+  done
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-27 18:56:53 UTC (rev 169730)
+++ extra-x86_64/PKGBUILD   2012-10-27 18:57:25 UTC (rev 169731)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Gilles CHAUVIN gcn...@gmail.com
-
-pkgname=live-media
-pkgver=2012.10.17
-pkgrel=1
-pkgdesc=A set of C++ libraries for multimedia streaming
-arch=('i686' 'x86_64')
-license=('LGPL')
-url=http://live555.com/liveMedia;
-depends=('gcc-libs')
-source=(http://live555.com/liveMedia/public/live.${pkgver}.tar.gz;)
-md5sums=('c9319c87a768c01f8007965db5453ca1')
-
-build() {
-  cd ${srcdir}/live
-
-  sed \
-  -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC 
-DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
-  -e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
-  -e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
-  -i config.linux
-  ./genMakefiles linux
-  make
-}
-
-package() {
-  cd ${srcdir}/live
-
-  for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
-install -dm755 ${pkgdir}/usr/{bin,lib,include/${dir}}
-install -m644 ${dir}/*.a ${pkgdir}/usr/lib
-install -m644 ${dir}/include/*.h* ${pkgdir}/usr/include/${dir}
-  done
-
-  for testprog in `find testProgs -type f -perm 755`; do
-install 

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

2012-10-27 Thread Ionut Biru
Date: Saturday, October 27, 2012 @ 15:26:43
  Author: ibiru
Revision: 169732

update to 16.0.2

Modified:
  firefox-i18n/trunk/PKGBUILD

--+
 PKGBUILD |  178 ++---
 1 file changed, 89 insertions(+), 89 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-10-27 18:57:25 UTC (rev 169731)
+++ PKGBUILD2012-10-27 19:26:43 UTC (rev 169732)
@@ -5,7 +5,7 @@
 # Contributor: Andrea Scarpino and...@archlinux.org
 
 pkgbase=firefox-i18n
-pkgver=16.0.1
+pkgver=16.0.2
 pkgname=('firefox-i18n'
 'firefox-i18n-af'
 'firefox-i18n-ak'
@@ -817,91 +817,91 @@
   cd ${srcdir}
   install -Dm644 firefox-i18n-$pkgver-zu.xpi 
${pkgdir}/$_path/langpack...@firefox.mozilla.org.xpi
 }
-md5sums=('a6f09d069a4c74114eb104f0054352af'
- '713f2c1c84d4ddc6c433db115e7b45a0'
- '11d0c0403224534fc8db0fc7b44e843a'
- '0af3651dcad7f1cb7ec68d90cdc9f624'
- '65a176f3f5736b8420fb16b90a8cb115'
- '37ca891ed4fbcf090dc8aa7d4c0748a5'
- '1a4c814990a58c9875b51b59f5ca4308'
- '9631687ce12bd94a373cb75ca2e79a51'
- '2aa1f9db3d935301d74325423f4f8313'
- '4d47ca9c5a527a5679c206cf93b07f08'
- '2bb4acce7856d2d614dffeb715f0b50a'
- '1e6f1681b174d1c18ee0200faa74994f'
- '5d8f25ab4d4ae25c5ee2dd325f6f0019'
- '6e21117c021f4261ea6c8aeacc056134'
- '1269862a7ee39579e38fb4ea3c976880'
- '5c614da8a6d56e319a9af95837280044'
- '438bbcf674a8de349321a1b9a7c03a76'
- '7eaadd52053df6f1cd38aa1582b5366b'
- '51bf8a3dd3d4bd6a12c315f7da8da73d'
- 'e444ec940af5ac3af94aa734bc109ce9'
- '3eba46d76314b96a20f71ea80a766e1c'
- '15c930903a933cbd376b12b0a129c2f3'
- '99acee30058d2c4c0d88fabea7eab3fe'
- '9a00580d24f82fc146fb4125814e2d60'
- '1796c58198f43f3bb8a554f4bb71f285'
- 'dbfbb66a7ab562a29a1c53e3c22ebc0b'
- 'b62739e068565bc90288774da4a9ee90'
- 'a2c6368af0afba78dd03161009829404'
- '38ff9f380170c45a955b0f3db224777b'
- '56f5064bdaef2f6758b9c497ce47b751'
- 'd58d361aa44f610bd47da8bcb74f0109'
- '36fe444acd1caf0d9ae5b4d4a671f6ad'
- 'b7e5507a2d501dbe70f232f75d532b5c'
- '13681ae2d423083731042e7c407f3c84'
- '6ac0af7147711e47c36c70404430764b'
- '56628d82676565392990e7d18b3d1321'
- 'a79ad840433ecd286b1137d7e91fb7a8'
- 'f9165bfb9b80de1578b1ff2e096739b1'
- '2aba8d84ad2dddec371c28c25d8e36b7'
- '1d4f6e4ea0f4fc4f8ada33886f32b0cc'
- '4efceb2ba2dc67b2df36b84af1a5cc7d'
- 'c1be97b2b4cd8ed0d98e7c9a0b5e429b'
- '0a77f4a5c7256809271e65cfa82aaa5a'
- '414068d68dfd16f77048dd63db125720'
- '486d3a703acc4bd0fbd4d63c7a8b1c83'
- '74d7e3aa12bf67d9cbe54b1810fc7c72'
- '883e87978e198811ea0ac966fd7b7905'
- '42c8e53480e6631b0a4d9c6a039734ff'
- 'd0d680a0ba6906dc4227a992591feb7d'
- '25788c71d7c4bdf4563b80fafac9164f'
- 'd872c0a63dbed2767dc98f87f9c71bb2'
- 'e6d396c265f5bd0f8ca21b0026745f44'
- '000c7debc8b060b6888694c789b7aa89'
- 'e9ece7bb5fdbd12b9e04699573ea3936'
- '954b93eb91fe7b98c88581e46f887ef3'
- '6009f1614e67076da8e3a3e1503845fd'
- 'daa17f88ab3ef72f6e4212094f08a426'
- '846600f74ef20eeb3980db3cebf0fcb1'
- '669e64055c4ed6c5dbf4dd34ed90355e'
- '0c67da82b66735a34f63b3c3f2da646f'
- '439a4074b6d74aea83c38660fb0f83a4'
- '57260a9cd526d178b59f20ded0ea7365'
- 'ae5094bed68ac8f4938570d3b0c11852'
- '6dee443f0e334581c602526dfef08787'
- 'c4c08b4780e4ac2a9c5eba9cfe3c2f47'
- 'b166a99db89e9b4a048a91cb92e5028c'
- '30ea93fa30c0b3901d6df99bb8d6c33b'
- 'ccab285f73b790d22f1b5d38496b4f43'
- 'fce6f7390003598a3dab4db664fd928e'
- 'ea2bf76a7a95c8488e4a5166331f425f'
- 'eabf8d5fe0770e02dde745faee67a5cc'
- '8c28485d69d3ca6cf56d7961ccb9f58f'
- 'b7da2f685b8390ea2c6c68b87be20bc3'
- '75bbda8da70186545ccafb8a649baf45'
- 'c7a9a6dcb4bf575ada7812e138129274'
- 'bdf8c1e3d9488b786541b3469d37661e'
- '1cbbb53c396ba96ffeb0913aa24b0bdf'
- '9f96bdd139b945c1c2452cff6ce13f11'
- 'bf6ca7ffcd50cdb80f7be7ebb7e361e4'
- 'c1083b07ae1ded1c2e48313d96a39810'
- 'f69c35013e69572c3fa87abcd407f26f'
- 'cdd368f94b1fc82df87a1c330f4fb484'
- '33a63cd439a5bdfad8263e06844902ff'
- '53bf511267e94164d4f92f79e7d74343'
- '9838761f770bf80075d900b997c4d4ab'
- 'b841d5c0689335ab6f5e55db88cbb615'
- 'f14324f8284f1c1a63acbc6114d2c1dd'
- 'bf4c9c841d458de4db51c9622abbfce1')
+md5sums=('58e549297d90f0eff46e888ebc0dc533'
+ 'a0a71997028f80209dcdf54140701a81'
+ 'f3a3818483714e7818822f85034990a1'
+ '08c4686e4cde294d0e90c7eed5e85a82'
+ '6ddda48717afba0d28c88e8e02af7cf9'

[arch-commits] Commit in firefox/repos (28 files)

2012-10-27 Thread Ionut Biru
Date: Saturday, October 27, 2012 @ 15:29:03
  Author: ibiru
Revision: 169733

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

Added:
  firefox/repos/extra-i686/PKGBUILD
(from rev 169732, firefox/trunk/PKGBUILD)
  firefox/repos/extra-i686/firefox-install-dir.patch
(from rev 169732, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-i686/firefox.desktop
(from rev 169732, firefox/trunk/firefox.desktop)
  firefox/repos/extra-i686/firefox.install
(from rev 169732, firefox/trunk/firefox.install)
  firefox/repos/extra-i686/mozconfig
(from rev 169732, firefox/trunk/mozconfig)
  firefox/repos/extra-i686/shared-libs.patch
(from rev 169732, firefox/trunk/shared-libs.patch)
  firefox/repos/extra-i686/vendor.js
(from rev 169732, firefox/trunk/vendor.js)
  firefox/repos/extra-x86_64/PKGBUILD
(from rev 169732, firefox/trunk/PKGBUILD)
  firefox/repos/extra-x86_64/firefox-install-dir.patch
(from rev 169732, firefox/trunk/firefox-install-dir.patch)
  firefox/repos/extra-x86_64/firefox.desktop
(from rev 169732, firefox/trunk/firefox.desktop)
  firefox/repos/extra-x86_64/firefox.install
(from rev 169732, firefox/trunk/firefox.install)
  firefox/repos/extra-x86_64/mozconfig
(from rev 169732, firefox/trunk/mozconfig)
  firefox/repos/extra-x86_64/shared-libs.patch
(from rev 169732, firefox/trunk/shared-libs.patch)
  firefox/repos/extra-x86_64/vendor.js
(from rev 169732, firefox/trunk/vendor.js)
Deleted:
  firefox/repos/extra-i686/PKGBUILD
  firefox/repos/extra-i686/firefox-install-dir.patch
  firefox/repos/extra-i686/firefox.desktop
  firefox/repos/extra-i686/firefox.install
  firefox/repos/extra-i686/mozconfig
  firefox/repos/extra-i686/shared-libs.patch
  firefox/repos/extra-i686/vendor.js
  firefox/repos/extra-x86_64/PKGBUILD
  firefox/repos/extra-x86_64/firefox-install-dir.patch
  firefox/repos/extra-x86_64/firefox.desktop
  firefox/repos/extra-x86_64/firefox.install
  firefox/repos/extra-x86_64/mozconfig
  firefox/repos/extra-x86_64/shared-libs.patch
  firefox/repos/extra-x86_64/vendor.js

+
 extra-i686/PKGBUILD|  164 ++---
 extra-i686/firefox-install-dir.patch   |   60 +++
 extra-i686/firefox.desktop |  242 +++
 extra-i686/firefox.install |   26 +--
 extra-i686/mozconfig   |   76 -
 extra-i686/shared-libs.patch   |   24 +--
 extra-i686/vendor.js   |   18 +-
 extra-x86_64/PKGBUILD  |  164 ++---
 extra-x86_64/firefox-install-dir.patch |   60 +++
 extra-x86_64/firefox.desktop   |  242 +++
 extra-x86_64/firefox.install   |   26 +--
 extra-x86_64/mozconfig |   76 -
 extra-x86_64/shared-libs.patch |   24 +--
 extra-x86_64/vendor.js |   18 +-
 14 files changed, 610 insertions(+), 610 deletions(-)

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


[arch-commits] Commit in firefox-i18n/repos/extra-any (4 files)

2012-10-27 Thread Ionut Biru
Date: Saturday, October 27, 2012 @ 15:33:06
  Author: ibiru
Revision: 169734

archrelease: copy trunk to extra-any

Added:
  firefox-i18n/repos/extra-any/PKGBUILD
(from rev 169733, firefox-i18n/trunk/PKGBUILD)
  firefox-i18n/repos/extra-any/firefox-i18n.install
(from rev 169733, firefox-i18n/trunk/firefox-i18n.install)
Deleted:
  firefox-i18n/repos/extra-any/PKGBUILD
  firefox-i18n/repos/extra-any/firefox-i18n.install

--+
 PKGBUILD | 1814 -
 firefox-i18n.install |   16 
 2 files changed, 915 insertions(+), 915 deletions(-)

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


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

2012-10-27 Thread Tom Gundersen
Date: Saturday, October 27, 2012 @ 18:14:15
  Author: tomegun
Revision: 169735

upgpkg: hwids 20121022-1

update ids

Modified:
  hwids/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-27 19:33:06 UTC (rev 169734)
+++ PKGBUILD2012-10-27 22:14:15 UTC (rev 169735)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tom Gundersen t...@jklm.no
 pkgname=hwids
-pkgver=20121012
+pkgver=20121022
 pkgrel=1
 pkgdesc=hardware identification databases
 url=https://github.com/gentoo/hwids
@@ -14,4 +14,4 @@
   mkdir -p ${pkgdir}/usr/share/hwdata
   cp pci.ids usb.ids ${pkgdir}/usr/share/hwdata/
 }
-md5sums=('c2eb487c4d61d874255d12b2e1aa95b3')
+md5sums=('b809cfb935daa4f690c3ccaa56940c81')



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

2012-10-27 Thread Tom Gundersen
Date: Saturday, October 27, 2012 @ 18:14:32
  Author: tomegun
Revision: 169736

archrelease: copy trunk to testing-any

Added:
  hwids/repos/testing-any/
  hwids/repos/testing-any/PKGBUILD
(from rev 169735, hwids/trunk/PKGBUILD)

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

Copied: hwids/repos/testing-any/PKGBUILD (from rev 169735, hwids/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-10-27 22:14:32 UTC (rev 169736)
@@ -0,0 +1,17 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+pkgname=hwids
+pkgver=20121022
+pkgrel=1
+pkgdesc=hardware identification databases
+url=https://github.com/gentoo/hwids
+license=('GPL2')
+arch=('any')
+source=(https://github.com/gentoo/${pkgname}/tarball/${pkgname}-${pkgver};)
+
+package() {
+  cd ${srcdir}/*
+  mkdir -p ${pkgdir}/usr/share/hwdata
+  cp pci.ids usb.ids ${pkgdir}/usr/share/hwdata/
+}
+md5sums=('b809cfb935daa4f690c3ccaa56940c81')



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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:16:17
  Author: eric
Revision: 169737

upgpkg: imagemagick 6.8.0.3-1

Upstream update

Modified:
  imagemagick/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-27 22:14:32 UTC (rev 169736)
+++ PKGBUILD2012-10-27 23:16:17 UTC (rev 169737)
@@ -3,7 +3,7 @@
 
 pkgbase=imagemagick
 pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.0.1
+pkgver=6.8.0.3
 pkgrel=1
 arch=('i686' 'x86_64')
 url=http://www.imagemagick.org/;
@@ -12,7 +12,7 @@
  'openexr' 'libwmf' 'librsvg' 'libxml2' 'jasper' 'liblqr')
 
source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz
 \
 perlmagick.rpath.patch)
-sha1sums=('47926535dd68b38f5ae8a01e470cebf671018831'
+sha1sums=('3f3dfa63445081ece9a47825a2d692ca11d97cab'
   '23405f80904b1de94ebd7bd6fe2a332471b8c283')
 
 build() {
@@ -33,7 +33,7 @@
 
 check() {
   cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-#  make check
+  make check
 }
 
 package_imagemagick() {



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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:16:41
  Author: eric
Revision: 169738

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

Added:
  imagemagick/repos/testing-i686/PKGBUILD
(from rev 169737, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/testing-i686/perlmagick.rpath.patch
(from rev 169737, imagemagick/trunk/perlmagick.rpath.patch)
  imagemagick/repos/testing-x86_64/PKGBUILD
(from rev 169737, imagemagick/trunk/PKGBUILD)
  imagemagick/repos/testing-x86_64/perlmagick.rpath.patch
(from rev 169737, imagemagick/trunk/perlmagick.rpath.patch)
Deleted:
  imagemagick/repos/testing-i686/PKGBUILD
  imagemagick/repos/testing-i686/perlmagick.rpath.patch
  imagemagick/repos/testing-x86_64/PKGBUILD
  imagemagick/repos/testing-x86_64/perlmagick.rpath.patch

---+
 testing-i686/PKGBUILD |  164 
 testing-i686/perlmagick.rpath.patch   |   20 +--
 testing-x86_64/PKGBUILD   |  164 
 testing-x86_64/perlmagick.rpath.patch |   20 +--
 4 files changed, 184 insertions(+), 184 deletions(-)

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2012-10-27 23:16:17 UTC (rev 169737)
+++ testing-i686/PKGBUILD   2012-10-27 23:16:41 UTC (rev 169738)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgbase=imagemagick
-pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.0.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url=http://www.imagemagick.org/;
-license=('custom')
-makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript' \
- 'openexr' 'libwmf' 'librsvg' 'libxml2' 'jasper' 'liblqr')
-source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz
 \
-perlmagick.rpath.patch)
-sha1sums=('47926535dd68b38f5ae8a01e470cebf671018831'
-  '23405f80904b1de94ebd7bd6fe2a332471b8c283')
-
-build() {
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-
-  sed '/AC_PATH_XTRA/d' -i configure.ac
-  autoreconf --force --install
-  patch -p0 -i ../perlmagick.rpath.patch
-
-  ./configure --prefix=/usr --sysconfdir=/etc --with-modules --disable-static \
---disable-openmp --with-wmf --with-openexr --with-xml --with-lcms2 
--with-jp2 \
---with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
---with-perl --with-perl-options=INSTALLDIRS=vendor --with-lqr 
--with-rsvg \
---without-gvc --without-djvu --without-autotrace --without-webp \
---without-jbig --without-fpx --without-dps --without-fftw
-  make
-}
-
-check() {
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-#  make check
-}
-
-package_imagemagick() {
-  pkgdesc=An image viewing/manipulation program
-  depends=('perl' 'libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr')
-  optdepends=('ghostscript: for Ghostscript support' 
-  'openexr: for OpenEXR support' 
-  'libwmf: for WMF support' 
-  'librsvg: for SVG support' 
-  'libxml2: for XML support' 
-  'jasper: for JPEG-2000 support' 
-  'libpng: for PNG support')
-  backup=('etc/ImageMagick/coder.xml'
-  'etc/ImageMagick/colors.xml'
-  'etc/ImageMagick/delegates.xml'
-  'etc/ImageMagick/log.xml'
-  'etc/ImageMagick/magic.xml'
-  'etc/ImageMagick/mime.xml'
-  'etc/ImageMagick/policy.xml'
-  'etc/ImageMagick/quantization-table.xml'
-  'etc/ImageMagick/thresholds.xml'
-  'etc/ImageMagick/type.xml'
-  'etc/ImageMagick/type-dejavu.xml'
-  'etc/ImageMagick/type-ghostscript.xml'
-  'etc/ImageMagick/type-windows.xml')
-  options=('!docs' 'libtool' '!emptydirs')
-
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR=${pkgdir} install
-  chmod 755 ${pkgdir}/usr/lib/perl5/vendor_perl/auto/Image/Magick/Magick.so 
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/imagemagick/LICENSE
-  install -Dm644 NOTICE ${pkgdir}/usr/share/licenses/imagemagick/NOTICE
-
-#Cleaning
-  find ${pkgdir} -name '*.bs' -delete
-  rm -f ${pkgdir}/usr/lib/*.la
-}
-
-package_imagemagick-doc() {
-  pkgdesc=The ImageMagick documentation (utilities manuals and libraries API)
-
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR=${pkgdir} install-data-html
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/imagemagick-doc/LICENSE
-  install -Dm644 NOTICE ${pkgdir}/usr/share/licenses/imagemagick-doc/NOTICE
-}

Copied: imagemagick/repos/testing-i686/PKGBUILD (from rev 169737, 
imagemagick/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-10-27 23:16:41 UTC (rev 169738)
@@ -0,0 +1,82 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgbase=imagemagick

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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:24
  Author: eric
Revision: 169739

db-move: moved bzflag from [testing] to [extra] (i686, x86_64)

Added:
  bzflag/repos/extra-i686/PKGBUILD
(from rev 169738, bzflag/repos/testing-i686/PKGBUILD)
  bzflag/repos/extra-x86_64/PKGBUILD
(from rev 169738, bzflag/repos/testing-x86_64/PKGBUILD)
Deleted:
  bzflag/repos/extra-i686/PKGBUILD
  bzflag/repos/extra-x86_64/PKGBUILD
  bzflag/repos/testing-i686/
  bzflag/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   71 
 extra-x86_64/PKGBUILD |   71 
 2 files changed, 72 insertions(+), 70 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:16:41 UTC (rev 169738)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:24 UTC (rev 169739)
@@ -1,35 +0,0 @@
-# $Id$
-# Contributor: Damir Perisa damir.per...@bluewin.ch
-# Contributor: Kevin Piche ke...@archlinux.org
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=bzflag
-pkgver=2.4.2
-pkgrel=1
-pkgdesc='Multiplayer 3D tank battle game'
-url='http://bzflag.org/'
-license=('LGPL')
-options=('!libtool')
-arch=('i686' 'x86_64')
-depends=('curl' 'glew' 'glu' 'sdl')
-source=(http://downloads.sourceforge.net/project/bzflag/bzflag%20source/${pkgver}/bzflag-${pkgver}.tar.bz2;)
-sha1sums=('36c67c0734a1318b34b39ed0da49606e05ebd291')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure --prefix=/usr
-   make
-
-   cd misc
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -Dm644 misc/bzflag.desktop 
${pkgdir}/usr/share/applications/bzflag.desktop
-   install -Dm644 data/bzflag-48x48.png 
${pkgdir}/usr/share/pixmaps/bzflag-48x48.png
-}

Copied: bzflag/repos/extra-i686/PKGBUILD (from rev 169738, 
bzflag/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:24 UTC (rev 169739)
@@ -0,0 +1,36 @@
+# $Id$
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+# Contributor: Kevin Piche ke...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=bzflag
+pkgver=2.4.2
+pkgrel=2
+pkgdesc='Multiplayer 3D tank battle game'
+url='http://bzflag.org/'
+license=('LGPL')
+options=('!libtool')
+arch=('i686' 'x86_64')
+depends=('curl' 'glew' 'glu' 'sdl')
+makedepends=('mesa') # glu requires GL/gl.h
+source=(http://downloads.sourceforge.net/project/bzflag/bzflag%20source/${pkgver}/bzflag-${pkgver}.tar.bz2;)
+sha1sums=('36c67c0734a1318b34b39ed0da49606e05ebd291')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   ./configure --prefix=/usr
+   make
+
+   cd misc
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   install -Dm644 misc/bzflag.desktop 
${pkgdir}/usr/share/applications/bzflag.desktop
+   install -Dm644 data/bzflag-48x48.png 
${pkgdir}/usr/share/pixmaps/bzflag-48x48.png
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-27 23:16:41 UTC (rev 169738)
+++ extra-x86_64/PKGBUILD   2012-10-27 23:41:24 UTC (rev 169739)
@@ -1,35 +0,0 @@
-# $Id$
-# Contributor: Damir Perisa damir.per...@bluewin.ch
-# Contributor: Kevin Piche ke...@archlinux.org
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=bzflag
-pkgver=2.4.2
-pkgrel=1
-pkgdesc='Multiplayer 3D tank battle game'
-url='http://bzflag.org/'
-license=('LGPL')
-options=('!libtool')
-arch=('i686' 'x86_64')
-depends=('curl' 'glew' 'glu' 'sdl')
-source=(http://downloads.sourceforge.net/project/bzflag/bzflag%20source/${pkgver}/bzflag-${pkgver}.tar.bz2;)
-sha1sums=('36c67c0734a1318b34b39ed0da49606e05ebd291')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure --prefix=/usr
-   make
-
-   cd misc
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   make DESTDIR=${pkgdir} install
-
-   install -Dm644 misc/bzflag.desktop 
${pkgdir}/usr/share/applications/bzflag.desktop
-   install -Dm644 data/bzflag-48x48.png 
${pkgdir}/usr/share/pixmaps/bzflag-48x48.png
-}

Copied: bzflag/repos/extra-x86_64/PKGBUILD (from rev 169738, 
bzflag/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-10-27 23:41:24 UTC (rev 169739)
@@ -0,0 +1,36 @@
+# $Id$
+# Contributor: Damir Perisa damir.per...@bluewin.ch
+# Contributor: Kevin Piche ke...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=bzflag
+pkgver=2.4.2
+pkgrel=2
+pkgdesc='Multiplayer 3D tank battle game'

[arch-commits] Commit in calligra/repos (54 files)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:30
  Author: eric
Revision: 169740

db-move: moved calligra from [testing] to [extra] (i686, x86_64)

Added:
  calligra/repos/extra-i686/PKGBUILD
(from rev 169738, calligra/repos/testing-i686/PKGBUILD)
  calligra/repos/extra-i686/calligra-braindump.install
(from rev 169738, calligra/repos/testing-i686/calligra-braindump.install)
  calligra/repos/extra-i686/calligra-filters.install
(from rev 169738, calligra/repos/testing-i686/calligra-filters.install)
  calligra/repos/extra-i686/calligra-flow.install
(from rev 169738, calligra/repos/testing-i686/calligra-flow.install)
  calligra/repos/extra-i686/calligra-karbon.install
(from rev 169738, calligra/repos/testing-i686/calligra-karbon.install)
  calligra/repos/extra-i686/calligra-kexi.install
(from rev 169738, calligra/repos/testing-i686/calligra-kexi.install)
  calligra/repos/extra-i686/calligra-krita.install
(from rev 169738, calligra/repos/testing-i686/calligra-krita.install)
  calligra/repos/extra-i686/calligra-plan.install
(from rev 169738, calligra/repos/testing-i686/calligra-plan.install)
  calligra/repos/extra-i686/calligra-sheets.install
(from rev 169738, calligra/repos/testing-i686/calligra-sheets.install)
  calligra/repos/extra-i686/calligra-stage.install
(from rev 169738, calligra/repos/testing-i686/calligra-stage.install)
  calligra/repos/extra-i686/calligra-tools.install
(from rev 169738, calligra/repos/testing-i686/calligra-tools.install)
  calligra/repos/extra-i686/calligra-words.install
(from rev 169738, calligra/repos/testing-i686/calligra-words.install)
  calligra/repos/extra-i686/calligra.install
(from rev 169738, calligra/repos/testing-i686/calligra.install)
  calligra/repos/extra-x86_64/PKGBUILD
(from rev 169738, calligra/repos/testing-x86_64/PKGBUILD)
  calligra/repos/extra-x86_64/calligra-braindump.install
(from rev 169738, calligra/repos/testing-x86_64/calligra-braindump.install)
  calligra/repos/extra-x86_64/calligra-filters.install
(from rev 169738, calligra/repos/testing-x86_64/calligra-filters.install)
  calligra/repos/extra-x86_64/calligra-flow.install
(from rev 169738, calligra/repos/testing-x86_64/calligra-flow.install)
  calligra/repos/extra-x86_64/calligra-karbon.install
(from rev 169738, calligra/repos/testing-x86_64/calligra-karbon.install)
  calligra/repos/extra-x86_64/calligra-kexi.install
(from rev 169738, calligra/repos/testing-x86_64/calligra-kexi.install)
  calligra/repos/extra-x86_64/calligra-krita.install
(from rev 169738, calligra/repos/testing-x86_64/calligra-krita.install)
  calligra/repos/extra-x86_64/calligra-plan.install
(from rev 169738, calligra/repos/testing-x86_64/calligra-plan.install)
  calligra/repos/extra-x86_64/calligra-sheets.install
(from rev 169738, calligra/repos/testing-x86_64/calligra-sheets.install)
  calligra/repos/extra-x86_64/calligra-stage.install
(from rev 169738, calligra/repos/testing-x86_64/calligra-stage.install)
  calligra/repos/extra-x86_64/calligra-tools.install
(from rev 169738, calligra/repos/testing-x86_64/calligra-tools.install)
  calligra/repos/extra-x86_64/calligra-words.install
(from rev 169738, calligra/repos/testing-x86_64/calligra-words.install)
  calligra/repos/extra-x86_64/calligra.install
(from rev 169738, calligra/repos/testing-x86_64/calligra.install)
Deleted:
  calligra/repos/extra-i686/PKGBUILD
  calligra/repos/extra-i686/calligra-braindump.install
  calligra/repos/extra-i686/calligra-filters.install
  calligra/repos/extra-i686/calligra-flow.install
  calligra/repos/extra-i686/calligra-karbon.install
  calligra/repos/extra-i686/calligra-kexi.install
  calligra/repos/extra-i686/calligra-krita.install
  calligra/repos/extra-i686/calligra-plan.install
  calligra/repos/extra-i686/calligra-sheets.install
  calligra/repos/extra-i686/calligra-stage.install
  calligra/repos/extra-i686/calligra-tools.install
  calligra/repos/extra-i686/calligra-words.install
  calligra/repos/extra-i686/calligra.install
  calligra/repos/extra-x86_64/PKGBUILD
  calligra/repos/extra-x86_64/calligra-braindump.install
  calligra/repos/extra-x86_64/calligra-filters.install
  calligra/repos/extra-x86_64/calligra-flow.install
  calligra/repos/extra-x86_64/calligra-karbon.install
  calligra/repos/extra-x86_64/calligra-kexi.install
  calligra/repos/extra-x86_64/calligra-krita.install
  calligra/repos/extra-x86_64/calligra-plan.install
  calligra/repos/extra-x86_64/calligra-sheets.install
  calligra/repos/extra-x86_64/calligra-stage.install
  calligra/repos/extra-x86_64/calligra-tools.install
  calligra/repos/extra-x86_64/calligra-words.install
  calligra/repos/extra-x86_64/calligra.install
  calligra/repos/testing-i686/
  calligra/repos/testing-x86_64/

-+
 extra-i686/PKGBUILD |  442 +++---
 extra-i686/calligra-braindump.install   |   24 -
 

[arch-commits] Commit in cinepaint/repos (22 files)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:34
  Author: eric
Revision: 169741

db-move: moved cinepaint from [testing] to [extra] (i686, x86_64)

Added:
  cinepaint/repos/extra-i686/LICENSE
(from rev 169738, cinepaint/repos/testing-i686/LICENSE)
  cinepaint/repos/extra-i686/PKGBUILD
(from rev 169738, cinepaint/repos/testing-i686/PKGBUILD)
  cinepaint/repos/extra-i686/cinepaint-libpng15.patch
(from rev 169738, cinepaint/repos/testing-i686/cinepaint-libpng15.patch)
  cinepaint/repos/extra-i686/cinepaint-missing-include.patch
(from rev 169738, 
cinepaint/repos/testing-i686/cinepaint-missing-include.patch)
  cinepaint/repos/extra-i686/cinepaint.install
(from rev 169738, cinepaint/repos/testing-i686/cinepaint.install)
  cinepaint/repos/extra-x86_64/LICENSE
(from rev 169738, cinepaint/repos/testing-x86_64/LICENSE)
  cinepaint/repos/extra-x86_64/PKGBUILD
(from rev 169738, cinepaint/repos/testing-x86_64/PKGBUILD)
  cinepaint/repos/extra-x86_64/cinepaint-libpng15.patch
(from rev 169738, cinepaint/repos/testing-x86_64/cinepaint-libpng15.patch)
  cinepaint/repos/extra-x86_64/cinepaint-missing-include.patch
(from rev 169738, 
cinepaint/repos/testing-x86_64/cinepaint-missing-include.patch)
  cinepaint/repos/extra-x86_64/cinepaint.install
(from rev 169738, cinepaint/repos/testing-x86_64/cinepaint.install)
Deleted:
  cinepaint/repos/extra-i686/LICENSE
  cinepaint/repos/extra-i686/PKGBUILD
  cinepaint/repos/extra-i686/cinepaint-libpng15.patch
  cinepaint/repos/extra-i686/cinepaint-missing-include.patch
  cinepaint/repos/extra-i686/cinepaint.install
  cinepaint/repos/extra-x86_64/LICENSE
  cinepaint/repos/extra-x86_64/PKGBUILD
  cinepaint/repos/extra-x86_64/cinepaint-libpng15.patch
  cinepaint/repos/extra-x86_64/cinepaint-missing-include.patch
  cinepaint/repos/extra-x86_64/cinepaint.install
  cinepaint/repos/testing-i686/
  cinepaint/repos/testing-x86_64/

--+
 extra-i686/LICENSE   |   50 -
 extra-i686/PKGBUILD  |  102 +-
 extra-i686/cinepaint-libpng15.patch  |  904 -
 extra-i686/cinepaint-missing-include.patch   |   22 
 extra-i686/cinepaint.install |   22 
 extra-x86_64/LICENSE |   50 -
 extra-x86_64/PKGBUILD|  102 +-
 extra-x86_64/cinepaint-libpng15.patch|  904 -
 extra-x86_64/cinepaint-missing-include.patch |   22 
 extra-x86_64/cinepaint.install   |   22 
 10 files changed, 1100 insertions(+), 1100 deletions(-)

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


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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:37
  Author: eric
Revision: 169742

db-move: moved dvdauthor from [testing] to [extra] (i686, x86_64)

Added:
  dvdauthor/repos/extra-i686/PKGBUILD
(from rev 169738, dvdauthor/repos/testing-i686/PKGBUILD)
  dvdauthor/repos/extra-i686/dvdauthor-0.7.0-libpng15.patch
(from rev 169738, 
dvdauthor/repos/testing-i686/dvdauthor-0.7.0-libpng15.patch)
  dvdauthor/repos/extra-x86_64/PKGBUILD
(from rev 169738, dvdauthor/repos/testing-x86_64/PKGBUILD)
  dvdauthor/repos/extra-x86_64/dvdauthor-0.7.0-libpng15.patch
(from rev 169738, 
dvdauthor/repos/testing-x86_64/dvdauthor-0.7.0-libpng15.patch)
Deleted:
  dvdauthor/repos/extra-i686/PKGBUILD
  dvdauthor/repos/extra-i686/dvdauthor-0.7.0-libpng15.patch
  dvdauthor/repos/extra-x86_64/PKGBUILD
  dvdauthor/repos/extra-x86_64/dvdauthor-0.7.0-libpng15.patch
  dvdauthor/repos/testing-i686/
  dvdauthor/repos/testing-x86_64/

-+
 extra-i686/PKGBUILD |   62 +-
 extra-i686/dvdauthor-0.7.0-libpng15.patch   |   38 +++
 extra-x86_64/PKGBUILD   |   62 +-
 extra-x86_64/dvdauthor-0.7.0-libpng15.patch |   38 +++
 4 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:41:34 UTC (rev 169741)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:37 UTC (rev 169742)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Travis Willard trav...@wmpub.ca 
-# Contributor: Jaroslaw Swierczynski swier...@juvepoland.com
-# Contributor: Nicolai Lissner nlis...@linux01.gwdg.de
-
-pkgname=dvdauthor
-pkgver=0.7.1
-pkgrel=1
-pkgdesc=DVD authoring tools
-arch=('i686' 'x86_64')
-url=http://dvdauthor.sourceforge.net/;
-license=('GPL')
-depends=('libdvdread' 'imagemagick' 'libxml2' 'libpng' 'fribidi')
-options=('!makeflags')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('2694a5a3ef460106ea3caf0f7f60ff80')
-
-build() {
-  cd ${srcdir}/${pkgname}
-
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}
-
-  make DESTDIR=${pkgdir} install
-}

Copied: dvdauthor/repos/extra-i686/PKGBUILD (from rev 169738, 
dvdauthor/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:37 UTC (rev 169742)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Travis Willard trav...@wmpub.ca 
+# Contributor: Jaroslaw Swierczynski swier...@juvepoland.com
+# Contributor: Nicolai Lissner nlis...@linux01.gwdg.de
+
+pkgname=dvdauthor
+pkgver=0.7.1
+pkgrel=2
+pkgdesc=DVD authoring tools
+arch=('i686' 'x86_64')
+url=http://dvdauthor.sourceforge.net/;
+license=('GPL')
+depends=('libdvdread' 'imagemagick' 'libxml2' 'libpng' 'fribidi')
+options=('!makeflags')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('2694a5a3ef460106ea3caf0f7f60ff80')
+
+build() {
+  cd ${srcdir}/${pkgname}
+
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}
+
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/dvdauthor-0.7.0-libpng15.patch
===
--- extra-i686/dvdauthor-0.7.0-libpng15.patch   2012-10-27 23:41:34 UTC (rev 
169741)
+++ extra-i686/dvdauthor-0.7.0-libpng15.patch   2012-10-27 23:41:37 UTC (rev 
169742)
@@ -1,19 +0,0 @@
 src/spuunmux.c
-+++ src/spuunmux.c
-@@ -39,6 +39,7 @@
- #include netinet/in.h
- 
- #include png.h
-+#include zlib.h
- 
- #include rgb.h
- #include common.h
-@@ -610,7 +611,7 @@
- png_destroy_write_struct(png_ptr, (png_infopp)NULL);
- return -1;
-   } /*if*/
--if (setjmp(png_ptr-jmpbuf))
-+if (setjmp(png_jmpbuf(png_ptr)))
-   {
- png_destroy_write_struct(png_ptr, info_ptr);
- fclose(fp);

Copied: dvdauthor/repos/extra-i686/dvdauthor-0.7.0-libpng15.patch (from rev 
169738, dvdauthor/repos/testing-i686/dvdauthor-0.7.0-libpng15.patch)
===
--- extra-i686/dvdauthor-0.7.0-libpng15.patch   (rev 0)
+++ extra-i686/dvdauthor-0.7.0-libpng15.patch   2012-10-27 23:41:37 UTC (rev 
169742)
@@ -0,0 +1,19 @@
+--- src/spuunmux.c
 src/spuunmux.c
+@@ -39,6 +39,7 @@
+ #include netinet/in.h
+ 
+ #include png.h
++#include zlib.h
+ 
+ #include rgb.h
+ #include common.h
+@@ -610,7 +611,7 @@
+ png_destroy_write_struct(png_ptr, (png_infopp)NULL);
+ return -1;
+   } /*if*/
+-if (setjmp(png_ptr-jmpbuf))
++if (setjmp(png_jmpbuf(png_ptr)))
+   {
+ 

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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:39
  Author: eric
Revision: 169743

db-move: moved emacs from [testing] to [extra] (i686, x86_64)

Added:
  emacs/repos/extra-i686/PKGBUILD
(from rev 169738, emacs/repos/testing-i686/PKGBUILD)
  emacs/repos/extra-i686/emacs.install
(from rev 169738, emacs/repos/testing-i686/emacs.install)
  emacs/repos/extra-x86_64/PKGBUILD
(from rev 169738, emacs/repos/testing-x86_64/PKGBUILD)
  emacs/repos/extra-x86_64/emacs.install
(from rev 169738, emacs/repos/testing-x86_64/emacs.install)
Deleted:
  emacs/repos/extra-i686/PKGBUILD
  emacs/repos/extra-i686/emacs.install
  emacs/repos/extra-x86_64/PKGBUILD
  emacs/repos/extra-x86_64/emacs.install
  emacs/repos/testing-i686/
  emacs/repos/testing-x86_64/

+
 extra-i686/PKGBUILD|   82 +--
 extra-i686/emacs.install   |   64 -
 extra-x86_64/PKGBUILD  |   82 +--
 extra-x86_64/emacs.install |   64 -
 4 files changed, 146 insertions(+), 146 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:41:37 UTC (rev 169742)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:39 UTC (rev 169743)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Juergen Hoetzel juer...@archlinux.org
-# Contributor: Renchi Raju ren...@green.tam.uiuc.edu
-
-pkgname=emacs
-pkgver=24.2
-pkgrel=1
-pkgdesc=The extensible, customizable, self-documenting real-time display 
editor
-arch=('i686' 'x86_64')
-url=http://www.gnu.org/software/emacs/emacs.html;
-license=('GPL3')
-depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'libotf' 'm17n-lib' 'gtk3' 
'hicolor-icon-theme' 'gconf' 'desktop-file-utils' 'alsa-lib' 'imagemagick')
-install=emacs.install
-source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.bz2{,.sig})
-md5sums=('1676803a50e8adc817fdaaebb9234f14' 'ca1766337f419ef827dd96d1ff78f158')
-
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
---localstatedir=/var --with-x-toolkit=gtk3 --with-xft
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  # remove conflict with ctags package
-  mv $pkgdir/usr/bin/{ctags,ctags.emacs}
-  mv $pkgdir/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1}
-  # fix all the 777 perms on directories
-  find $pkgdir/usr/share/emacs/$_majorver -type d -exec chmod 755 {} \;
-  # fix user/root permissions on usr/share files
-  find $pkgdir/usr/share/emacs/$_majorver -exec chown root:root {} \;
-  # fix perms on /var/games
-  chmod 775 $pkgdir/var/games
-  chmod 775 $pkgdir/var/games/emacs
-  chmod 664 $pkgdir/var/games/emacs/*
-  chown -R root:games $pkgdir/var/games
-}

Copied: emacs/repos/extra-i686/PKGBUILD (from rev 169738, 
emacs/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:39 UTC (rev 169743)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Juergen Hoetzel juer...@archlinux.org
+# Contributor: Renchi Raju ren...@green.tam.uiuc.edu
+
+pkgname=emacs
+pkgver=24.2
+pkgrel=2
+pkgdesc=The extensible, customizable, self-documenting real-time display 
editor
+arch=('i686' 'x86_64')
+url=http://www.gnu.org/software/emacs/emacs.html;
+license=('GPL3')
+depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'libotf' 'm17n-lib' 'gtk3' 
'hicolor-icon-theme' 'gconf' 'desktop-file-utils' 'alsa-lib' 'imagemagick')
+install=emacs.install
+source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.bz2{,.sig})
+md5sums=('1676803a50e8adc817fdaaebb9234f14' 'ca1766337f419ef827dd96d1ff78f158')
+
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
+--localstatedir=/var --with-x-toolkit=gtk3 --with-xft
+  make
+}
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  # remove conflict with ctags package
+  mv $pkgdir/usr/bin/{ctags,ctags.emacs}
+  mv $pkgdir/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1}
+  # fix all the 777 perms on directories
+  find $pkgdir/usr/share/emacs/$_majorver -type d -exec chmod 755 {} \;
+  # fix user/root permissions on usr/share files
+  find $pkgdir/usr/share/emacs/$_majorver -exec chown root:root {} \;
+  # fix perms on /var/games
+  chmod 775 $pkgdir/var/games
+  chmod 775 $pkgdir/var/games/emacs
+  chmod 664 $pkgdir/var/games/emacs/*
+  chown -R root:games $pkgdir/var/games
+}

Deleted: extra-i686/emacs.install
===
--- extra-i686/emacs.install2012-10-27 23:41:37 UTC (rev 169742)
+++ extra-i686/emacs.install2012-10-27 23:41:39 UTC (rev 169743)
@@ -1,32 +0,0 @@
-ICON_PATH=usr/share/icons/hicolor
-INFO_DIR=usr/share/info
-
-INFO_FILES=(ada-mode auth autotype calc ccmode 

[arch-commits] Commit in enblend-enfuse/repos (18 files)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:41
  Author: eric
Revision: 169744

db-move: moved enblend-enfuse from [testing] to [extra] (i686, x86_64)

Added:
  enblend-enfuse/repos/extra-i686/PKGBUILD
(from rev 169738, enblend-enfuse/repos/testing-i686/PKGBUILD)
  enblend-enfuse/repos/extra-i686/enblend-4.0-libpng15.patch
(from rev 169738, 
enblend-enfuse/repos/testing-i686/enblend-4.0-libpng15.patch)
  enblend-enfuse/repos/extra-i686/enblend-enfuse.install
(from rev 169738, enblend-enfuse/repos/testing-i686/enblend-enfuse.install)
  enblend-enfuse/repos/extra-i686/libpng-1.4.patch
(from rev 169738, enblend-enfuse/repos/testing-i686/libpng-1.4.patch)
  enblend-enfuse/repos/extra-x86_64/PKGBUILD
(from rev 169738, enblend-enfuse/repos/testing-x86_64/PKGBUILD)
  enblend-enfuse/repos/extra-x86_64/enblend-4.0-libpng15.patch
(from rev 169738, 
enblend-enfuse/repos/testing-x86_64/enblend-4.0-libpng15.patch)
  enblend-enfuse/repos/extra-x86_64/enblend-enfuse.install
(from rev 169738, 
enblend-enfuse/repos/testing-x86_64/enblend-enfuse.install)
  enblend-enfuse/repos/extra-x86_64/libpng-1.4.patch
(from rev 169738, enblend-enfuse/repos/testing-x86_64/libpng-1.4.patch)
Deleted:
  enblend-enfuse/repos/extra-i686/PKGBUILD
  enblend-enfuse/repos/extra-i686/enblend-4.0-libpng15.patch
  enblend-enfuse/repos/extra-i686/enblend-enfuse.install
  enblend-enfuse/repos/extra-i686/libpng-1.4.patch
  enblend-enfuse/repos/extra-x86_64/PKGBUILD
  enblend-enfuse/repos/extra-x86_64/enblend-4.0-libpng15.patch
  enblend-enfuse/repos/extra-x86_64/enblend-enfuse.install
  enblend-enfuse/repos/extra-x86_64/libpng-1.4.patch
  enblend-enfuse/repos/testing-i686/
  enblend-enfuse/repos/testing-x86_64/

-+
 extra-i686/PKGBUILD |   78 ++---
 extra-i686/enblend-4.0-libpng15.patch   |  440 +++---
 extra-i686/enblend-enfuse.install   |   44 +--
 extra-i686/libpng-1.4.patch |   28 -
 extra-x86_64/PKGBUILD   |   78 ++---
 extra-x86_64/enblend-4.0-libpng15.patch |  440 +++---
 extra-x86_64/enblend-enfuse.install |   44 +--
 extra-x86_64/libpng-1.4.patch   |   28 -
 8 files changed, 590 insertions(+), 590 deletions(-)

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


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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:44
  Author: eric
Revision: 169745

db-move: moved fyre from [testing] to [extra] (i686, x86_64)

Added:
  fyre/repos/extra-i686/PKGBUILD
(from rev 169738, fyre/repos/testing-i686/PKGBUILD)
  fyre/repos/extra-i686/fyre.install
(from rev 169738, fyre/repos/testing-i686/fyre.install)
  fyre/repos/extra-x86_64/PKGBUILD
(from rev 169738, fyre/repos/testing-x86_64/PKGBUILD)
  fyre/repos/extra-x86_64/fyre.install
(from rev 169738, fyre/repos/testing-x86_64/fyre.install)
Deleted:
  fyre/repos/extra-i686/PKGBUILD
  fyre/repos/extra-i686/fyre.install
  fyre/repos/extra-x86_64/PKGBUILD
  fyre/repos/extra-x86_64/fyre.install
  fyre/repos/testing-i686/
  fyre/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   52 ++--
 extra-i686/fyre.install   |   26 +++---
 extra-x86_64/PKGBUILD |   52 ++--
 extra-x86_64/fyre.install |   26 +++---
 4 files changed, 78 insertions(+), 78 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:41:41 UTC (rev 169744)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:44 UTC (rev 169745)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=fyre
-pkgver=1.0.1
-pkgrel=5
-pkgdesc=Rendering of the Peter de Jong map
-arch=('i686' 'x86_64')
-url=http://fyre.navi.cx/;
-license=('GPL')
-depends=('openexr' 'libglade' 'gnet' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
-install=fyre.install
-source=(http://releases.navi.cx/fyre/fyre-${pkgver}.tar.bz2)
-sha1sums=('41c0ec45eff16cc1bba081c5c855a3980e404835')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make update_xdgmime=/bin/false update_fdodesktop=/bin/false 
gtk_update_icon_cache=/bin/false \
-prefix=${pkgdir}/usr install
-}

Copied: fyre/repos/extra-i686/PKGBUILD (from rev 169738, 
fyre/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:44 UTC (rev 169745)
@@ -0,0 +1,26 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=fyre
+pkgver=1.0.1
+pkgrel=6
+pkgdesc=Rendering of the Peter de Jong map
+arch=('i686' 'x86_64')
+url=http://fyre.navi.cx/;
+license=('GPL')
+depends=('openexr' 'libglade' 'gnet' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
+install=fyre.install
+source=(http://releases.navi.cx/fyre/fyre-${pkgver}.tar.bz2)
+sha1sums=('41c0ec45eff16cc1bba081c5c855a3980e404835')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make update_xdgmime=/bin/false update_fdodesktop=/bin/false 
gtk_update_icon_cache=/bin/false \
+prefix=${pkgdir}/usr install
+}

Deleted: extra-i686/fyre.install
===
--- extra-i686/fyre.install 2012-10-27 23:41:41 UTC (rev 169744)
+++ extra-i686/fyre.install 2012-10-27 23:41:44 UTC (rev 169745)
@@ -1,13 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-mime-database usr/share/mime  /dev/null
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: fyre/repos/extra-i686/fyre.install (from rev 169738, 
fyre/repos/testing-i686/fyre.install)
===
--- extra-i686/fyre.install (rev 0)
+++ extra-i686/fyre.install 2012-10-27 23:41:44 UTC (rev 169745)
@@ -0,0 +1,13 @@
+post_install() {
+  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+  update-mime-database usr/share/mime  /dev/null
+  update-desktop-database -q
+}
+
+post_upgrade() {
+  post_install
+}
+
+post_remove() {
+  post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-27 23:41:41 UTC (rev 169744)
+++ extra-x86_64/PKGBUILD   2012-10-27 23:41:44 UTC (rev 169745)
@@ -1,26 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=fyre
-pkgver=1.0.1
-pkgrel=5
-pkgdesc=Rendering of the Peter de Jong map
-arch=('i686' 'x86_64')
-url=http://fyre.navi.cx/;
-license=('GPL')
-depends=('openexr' 'libglade' 'gnet' 'shared-mime-info' 'hicolor-icon-theme' 
'desktop-file-utils')
-install=fyre.install
-source=(http://releases.navi.cx/fyre/fyre-${pkgver}.tar.bz2)
-sha1sums=('41c0ec45eff16cc1bba081c5c855a3980e404835')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make 

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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:47
  Author: eric
Revision: 169746

db-move: moved gegl from [testing] to [extra] (i686, x86_64)

Added:
  gegl/repos/extra-i686/PKGBUILD
(from rev 169738, gegl/repos/testing-i686/PKGBUILD)
  gegl/repos/extra-i686/gegl-0.2.0-ffmpeg-0.11.diff
(from rev 169738, gegl/repos/testing-i686/gegl-0.2.0-ffmpeg-0.11.diff)
  gegl/repos/extra-x86_64/PKGBUILD
(from rev 169738, gegl/repos/testing-x86_64/PKGBUILD)
  gegl/repos/extra-x86_64/gegl-0.2.0-ffmpeg-0.11.diff
(from rev 169738, gegl/repos/testing-x86_64/gegl-0.2.0-ffmpeg-0.11.diff)
Deleted:
  gegl/repos/extra-i686/PKGBUILD
  gegl/repos/extra-i686/gegl-0.2.0-ffmpeg-0.11.diff
  gegl/repos/extra-x86_64/PKGBUILD
  gegl/repos/extra-x86_64/gegl-0.2.0-ffmpeg-0.11.diff
  gegl/repos/testing-i686/
  gegl/repos/testing-x86_64/

--+
 extra-i686/PKGBUILD  |   76 ++---
 extra-i686/gegl-0.2.0-ffmpeg-0.11.diff   |   24 -
 extra-x86_64/PKGBUILD|   76 ++---
 extra-x86_64/gegl-0.2.0-ffmpeg-0.11.diff |   24 -
 4 files changed, 100 insertions(+), 100 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:41:44 UTC (rev 169745)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:47 UTC (rev 169746)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Daniel Isenmann dan...@archlinux.org
-
-pkgname=gegl
-pkgver=0.2.0
-pkgrel=4
-pkgdesc=Graph based image processing framework
-arch=('i686' 'x86_64')
-url=http://www.gegl.org/;
-license=('GPL3' 'LGPL3')
-depends=('babl' 'gtk2')
-makedepends=('intltool' 'ruby' 'lua' 'openexr' 'ffmpeg' 'librsvg' 'jasper' 
'exiv2')
-optdepends=('openexr: for using the openexr plugin' \
-'ffmpeg: for using the ffmpeg plugin' \
-'librsvg: for using the svg plugin' \
-'jasper: for using the jasper plugin')
-options=('!libtool')
-source=(ftp://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
 gegl-0.2.0-ffmpeg-0.11.diff)
-sha1sums=('764cc66cb3c7b261b8fc18a6268a0e264a91d573'
-  'c10fd988c634fcf0948cc91a51d6528f6f1704ba')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p1  ${srcdir}/gegl-0.2.0-ffmpeg-0.11.diff
-  ./configure  --prefix=/usr  --with-sdl --with-openexr --with-librsvg \
---with-libavformat --with-jasper --disable-docs
-  make
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: gegl/repos/extra-i686/PKGBUILD (from rev 169738, 
gegl/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:47 UTC (rev 169746)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Daniel Isenmann dan...@archlinux.org
+
+pkgname=gegl
+pkgver=0.2.0
+pkgrel=5
+pkgdesc=Graph based image processing framework
+arch=('i686' 'x86_64')
+url=http://www.gegl.org/;
+license=('GPL3' 'LGPL3')
+depends=('babl' 'gtk2')
+makedepends=('intltool' 'ruby' 'lua' 'openexr' 'ffmpeg' 'librsvg' 'jasper' 
'exiv2')
+optdepends=('openexr: for using the openexr plugin' \
+'ffmpeg: for using the ffmpeg plugin' \
+'librsvg: for using the svg plugin' \
+'jasper: for using the jasper plugin')
+options=('!libtool')
+source=(ftp://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2
 gegl-0.2.0-ffmpeg-0.11.diff)
+sha1sums=('764cc66cb3c7b261b8fc18a6268a0e264a91d573'
+  'c10fd988c634fcf0948cc91a51d6528f6f1704ba')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p1  ${srcdir}/gegl-0.2.0-ffmpeg-0.11.diff
+  ./configure  --prefix=/usr  --with-sdl --with-openexr --with-librsvg \
+--with-libavformat --with-jasper --disable-docs
+  make
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/gegl-0.2.0-ffmpeg-0.11.diff
===
--- extra-i686/gegl-0.2.0-ffmpeg-0.11.diff  2012-10-27 23:41:44 UTC (rev 
169745)
+++ extra-i686/gegl-0.2.0-ffmpeg-0.11.diff  2012-10-27 23:41:47 UTC (rev 
169746)
@@ -1,12 +0,0 @@
-diff -Naur gegl-0.2.0/operations/external/ff-load.c 
gegl-0.2.0-1/operations/external/ff-load.c
 gegl-0.2.0/operations/external/ff-load.c   2012-04-01 13:17:57.0 
+0200
-+++ gegl-0.2.0-1/operations/external/ff-load.c 2012-07-11 12:42:05.174756560 
+0200
-@@ -271,7 +271,7 @@
-   gint err;
- 
-   ff_cleanup (o);
--  err = av_open_input_file (p-ic, o-path, NULL, 0, NULL);
-+err = avformat_open_input (p-ic, o-path, NULL, NULL);
-   if (err  0)
- {
-   print_error (o-path, err);

Copied: 

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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:54
  Author: eric
Revision: 169749

db-move: moved ilmbase from [testing] to [extra] (i686, x86_64)

Added:
  ilmbase/repos/extra-i686/PKGBUILD
(from rev 169738, ilmbase/repos/testing-i686/PKGBUILD)
  ilmbase/repos/extra-i686/ilmbase-IexMath.patch
(from rev 169738, ilmbase/repos/testing-i686/ilmbase-IexMath.patch)
  ilmbase/repos/extra-x86_64/PKGBUILD
(from rev 169738, ilmbase/repos/testing-x86_64/PKGBUILD)
  ilmbase/repos/extra-x86_64/ilmbase-IexMath.patch
(from rev 169738, ilmbase/repos/testing-x86_64/ilmbase-IexMath.patch)
Deleted:
  ilmbase/repos/extra-i686/PKGBUILD
  ilmbase/repos/extra-i686/tests-compile-fixes.patch
  ilmbase/repos/extra-x86_64/PKGBUILD
  ilmbase/repos/extra-x86_64/tests-compile-fixes.patch
  ilmbase/repos/testing-i686/
  ilmbase/repos/testing-x86_64/

+
 extra-i686/PKGBUILD|   70 +++
 extra-i686/ilmbase-IexMath.patch   |   12 +
 extra-i686/tests-compile-fixes.patch   |   12 -
 extra-x86_64/PKGBUILD  |   70 +++
 extra-x86_64/ilmbase-IexMath.patch |   12 +
 extra-x86_64/tests-compile-fixes.patch |   12 -
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:41:52 UTC (rev 169748)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:54 UTC (rev 169749)
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-
-pkgname=ilmbase
-pkgver=1.0.2
-pkgrel=1
-depends=('gcc-libs')
-pkgdesc=Base libraries from ILM for OpenEXR
-arch=(i686 x86_64)
-license=('custom')
-options=('!libtool')
-source=(http://savannah.nongnu.org/download/openexr/$pkgname-$pkgver.tar.gz
-tests-compile-fixes.patch)
-url=http://www.openexr.com;
-md5sums=('26c133ee8ca48e1196fbfb3ffe292ab4'
- '2687ab9ac01b417ee5cf8c0174b72e43')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  patch -Np1 -i ${srcdir}/tests-compile-fixes.patch
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${srcdir}/$pkgname-$pkgver
-  # one of the tests fails randomly for an unknown reason
-  make check || true
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: ilmbase/repos/extra-i686/PKGBUILD (from rev 169738, 
ilmbase/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:54 UTC (rev 169749)
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=ilmbase
+pkgver=1.0.3
+pkgrel=1
+depends=('gcc-libs')
+pkgdesc=Base libraries from ILM for OpenEXR
+arch=(i686 x86_64)
+url=http://www.openexr.com;
+license=('custom')
+options=('!libtool')
+source=(https://github.com/downloads/openexr/openexr/$pkgname-$pkgver.tar.gz 
+ilmbase-IexMath.patch)
+md5sums=('d99962ec7e2bfac0647aaabf6b91d5de'
+ '9c8efaf15f60bccf79749ec879657962')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -p0 -i ${srcdir}/ilmbase-IexMath.patch
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/$pkgname-$pkgver
+  # one of the tests fails randomly for an unknown reason
+  make check || true
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: ilmbase/repos/extra-i686/ilmbase-IexMath.patch (from rev 169738, 
ilmbase/repos/testing-i686/ilmbase-IexMath.patch)
===
--- extra-i686/ilmbase-IexMath.patch(rev 0)
+++ extra-i686/ilmbase-IexMath.patch2012-10-27 23:41:54 UTC (rev 169749)
@@ -0,0 +1,12 @@
+--- IexMath/IexMathFpu.cpp.orig2012-07-26 20:51:55.0 +0200
 IexMath/IexMathFpu.cpp 2012-10-04 15:30:47.0 +0200
+@@ -27,8 +27,7 @@
+ #endif
+ 
+ 
+-#ifdef HAVE_UCONTEXT_H
+-
++#if defined(HAVE_UCONTEXT_H)  (defined(x86_64) || defined(i386_))
+ 
+ #include ucontext.h
+ #include signal.h

Deleted: extra-i686/tests-compile-fixes.patch
===
--- extra-i686/tests-compile-fixes.patch2012-10-27 23:41:52 UTC (rev 
169748)
+++ extra-i686/tests-compile-fixes.patch2012-10-27 23:41:54 UTC (rev 
169749)
@@ -1,12 +0,0 @@
-diff -ur ilmbase-1.0.2/Imath/ImathMatrix.h 
ilmbase-1.0.2.new/Imath/ImathMatrix.h
 ilmbase-1.0.2/Imath/ImathMatrix.h  2010-07-17 00:48:40.0 +0200
-+++ ilmbase-1.0.2.new/Imath/ImathMatrix.h  2011-04-25 10:15:21.121608420 
+0200
-@@ -49,6 +49,8 @@
- #include ImathVec.h
- #include 

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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:49
  Author: eric
Revision: 169747

db-move: moved glew from [testing] to [extra] (i686, x86_64)

Added:
  glew/repos/extra-i686/PKGBUILD
(from rev 169738, glew/repos/testing-i686/PKGBUILD)
  glew/repos/extra-x86_64/PKGBUILD
(from rev 169738, glew/repos/testing-x86_64/PKGBUILD)
Deleted:
  glew/repos/extra-i686/PKGBUILD
  glew/repos/extra-x86_64/PKGBUILD
  glew/repos/testing-i686/
  glew/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   58 
 extra-x86_64/PKGBUILD |   58 
 2 files changed, 58 insertions(+), 58 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:41:47 UTC (rev 169746)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:49 UTC (rev 169747)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: SleepyDog
-
-pkgname=glew
-pkgver=1.8.0
-pkgrel=2
-pkgdesc=The OpenGL Extension Wrangler Library
-arch=('i686' 'x86_64')
-url=http://glew.sourceforge.net;
-license=('BSD' 'MIT' 'GPL')
-depends=('libxmu' 'libxi' 'glu')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tgz)
-sha1sums=('641c6bb3f924ec786e1e6cf2b1b230f594e0f0e4')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i 's|lib64|lib|' config/Makefile.linux
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make GLEW_DEST=${pkgdir}/usr install.all
-  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  rm ${pkgdir}/usr/lib/{libGLEW,libGLEWmx}.a
-  chmod 0755 ${pkgdir}/usr/lib/libGLEW*.so.${pkgver}
-}

Copied: glew/repos/extra-i686/PKGBUILD (from rev 169738, 
glew/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:49 UTC (rev 169747)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: SleepyDog
+
+pkgname=glew
+pkgver=1.9.0
+pkgrel=1
+pkgdesc=The OpenGL Extension Wrangler Library
+arch=('i686' 'x86_64')
+url=http://glew.sourceforge.net;
+license=('BSD' 'MIT' 'GPL')
+depends=('libxmu' 'libxi' 'glu')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tgz)
+sha1sums=('9291f5c5afefd482c7f3e91ffb3cd4716c6c9ffe')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i 's|lib64|lib|' config/Makefile.linux
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make GLEW_DEST=${pkgdir}/usr install.all
+  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  rm ${pkgdir}/usr/lib/{libGLEW,libGLEWmx}.a
+  chmod 0755 ${pkgdir}/usr/lib/libGLEW*.so.${pkgver}
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-27 23:41:47 UTC (rev 169746)
+++ extra-x86_64/PKGBUILD   2012-10-27 23:41:49 UTC (rev 169747)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: SleepyDog
-
-pkgname=glew
-pkgver=1.8.0
-pkgrel=2
-pkgdesc=The OpenGL Extension Wrangler Library
-arch=('i686' 'x86_64')
-url=http://glew.sourceforge.net;
-license=('BSD' 'MIT' 'GPL')
-depends=('libxmu' 'libxi' 'glu')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tgz)
-sha1sums=('641c6bb3f924ec786e1e6cf2b1b230f594e0f0e4')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  sed -i 's|lib64|lib|' config/Makefile.linux
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make GLEW_DEST=${pkgdir}/usr install.all
-  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-
-  rm ${pkgdir}/usr/lib/{libGLEW,libGLEWmx}.a
-  chmod 0755 ${pkgdir}/usr/lib/libGLEW*.so.${pkgver}
-}

Copied: glew/repos/extra-x86_64/PKGBUILD (from rev 169738, 
glew/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-10-27 23:41:49 UTC (rev 169747)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: SleepyDog
+
+pkgname=glew
+pkgver=1.9.0
+pkgrel=1
+pkgdesc=The OpenGL Extension Wrangler Library
+arch=('i686' 'x86_64')
+url=http://glew.sourceforge.net;
+license=('BSD' 'MIT' 'GPL')
+depends=('libxmu' 'libxi' 'glu')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tgz)
+sha1sums=('9291f5c5afefd482c7f3e91ffb3cd4716c6c9ffe')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  sed -i 's|lib64|lib|' config/Makefile.linux
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make GLEW_DEST=${pkgdir}/usr install.all
+  install -D -m644 LICENSE.txt 
${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+
+  

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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:52
  Author: eric
Revision: 169748

db-move: moved hugin from [testing] to [extra] (i686, x86_64)

Added:
  hugin/repos/extra-i686/PKGBUILD
(from rev 169738, hugin/repos/testing-i686/PKGBUILD)
  hugin/repos/extra-i686/gcc47.patch
(from rev 169738, hugin/repos/testing-i686/gcc47.patch)
  hugin/repos/extra-i686/hugin.install
(from rev 169738, hugin/repos/testing-i686/hugin.install)
  hugin/repos/extra-x86_64/PKGBUILD
(from rev 169738, hugin/repos/testing-x86_64/PKGBUILD)
  hugin/repos/extra-x86_64/gcc47.patch
(from rev 169738, hugin/repos/testing-x86_64/gcc47.patch)
  hugin/repos/extra-x86_64/hugin.install
(from rev 169738, hugin/repos/testing-x86_64/hugin.install)
Deleted:
  hugin/repos/extra-i686/PKGBUILD
  hugin/repos/extra-i686/gcc47.patch
  hugin/repos/extra-i686/hugin.install
  hugin/repos/extra-x86_64/PKGBUILD
  hugin/repos/extra-x86_64/gcc47.patch
  hugin/repos/extra-x86_64/hugin.install
  hugin/repos/testing-i686/
  hugin/repos/testing-x86_64/

+
 extra-i686/PKGBUILD|   78 +--
 extra-i686/gcc47.patch |   22 ++--
 extra-i686/hugin.install   |   30 
 extra-x86_64/PKGBUILD  |   78 +--
 extra-x86_64/gcc47.patch   |   22 ++--
 extra-x86_64/hugin.install |   30 
 6 files changed, 130 insertions(+), 130 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:41:49 UTC (rev 169747)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:52 UTC (rev 169748)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Tobias Kieslich tob...@archlinux.org
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Contributor: Dominik Ryba domr...@post.pl
-
-pkgname=hugin
-pkgver=2011.4.0
-pkgrel=6
-pkgdesc=A frontend to the panorama-tools
-arch=('i686' 'x86_64')
-url=http://hugin.sourceforge.net/;
-license=('GPL')
-depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'autopano-sift-c'
- 'lapack' 'desktop-file-utils' 'make' 'perl-image-exiftool')
-makedepends=('zip' 'cmake' 'boost' 'tclap')
-install=hugin.install
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
-gcc47.patch)
-sha1sums=('21ec7331d5e196aca2a8771d3c9101dd181ad93b'
-  'aa0fc9425bd7a4b5e270412f4ca72258fac77298')
-
-build() {
-  cd ${srcdir}
-  patch -Np0 -i gcc47.patch
-  mkdir build
-  cd build
-  export CXXFLAGS+= -fpermissive 
-  cmake ${srcdir}/${pkgname}-${pkgver} \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_EXE_LINKER_FLAGS=-lpthread \
--DENABLE_LAPACK=yes
-  make
-}
-
-package(){
-  cd ${srcdir}/build
-  make DESTDIR=${pkgdir} install
-}

Copied: hugin/repos/extra-i686/PKGBUILD (from rev 169738, 
hugin/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:52 UTC (rev 169748)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Tobias Kieslich tob...@archlinux.org
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Contributor: Dominik Ryba domr...@post.pl
+
+pkgname=hugin
+pkgver=2011.4.0
+pkgrel=7
+pkgdesc=A frontend to the panorama-tools
+arch=('i686' 'x86_64')
+url=http://hugin.sourceforge.net/;
+license=('GPL')
+depends=('wxgtk' 'boost-libs' 'enblend-enfuse' 'exiv2' 'autopano-sift-c'
+ 'lapack' 'desktop-file-utils' 'make' 'perl-image-exiftool')
+makedepends=('zip' 'cmake' 'boost' 'tclap' 'mesa')
+install=hugin.install
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2;
+gcc47.patch)
+sha1sums=('21ec7331d5e196aca2a8771d3c9101dd181ad93b'
+  'aa0fc9425bd7a4b5e270412f4ca72258fac77298')
+
+build() {
+  cd ${srcdir}
+  patch -Np0 -i gcc47.patch
+  mkdir build
+  cd build
+  export CXXFLAGS+= -fpermissive 
+  cmake ${srcdir}/${pkgname}-${pkgver} \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_EXE_LINKER_FLAGS=-lpthread \
+-DENABLE_LAPACK=yes
+  make
+}
+
+package(){
+  cd ${srcdir}/build
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/gcc47.patch
===
--- extra-i686/gcc47.patch  2012-10-27 23:41:49 UTC (rev 169747)
+++ extra-i686/gcc47.patch  2012-10-27 23:41:52 UTC (rev 169748)
@@ -1,11 +0,0 @@
-diff -Nur hugin-2011.4.0.orig/src/celeste/Utilities.cpp 
hugin-2011.4.0/src/celeste/Utilities.cpp
 hugin-2011.4.0.orig/src/celeste/Utilities.cpp  2012-07-08 
15:18:16.864454043 +
-+++ hugin-2011.4.0/src/celeste/Utilities.cpp   2012-07-08 15:18:20.341089422 
+
-@@ -27,6 +27,7 @@
- 
- #include math.h
- #include stdlib.h
-+#include unistd.h
- #include Utilities.h
- 
- using namespace std; 

Copied: hugin/repos/extra-i686/gcc47.patch (from rev 

[arch-commits] Commit in kdelibs3/repos (38 files)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:42:09
  Author: eric
Revision: 169753

db-move: moved kdelibs3 from [testing] to [extra] (i686, x86_64)

Added:
  kdelibs3/repos/extra-i686/PKGBUILD
(from rev 169738, kdelibs3/repos/testing-i686/PKGBUILD)
  kdelibs3/repos/extra-i686/acinclude.patch
(from rev 169738, kdelibs3/repos/testing-i686/acinclude.patch)
  kdelibs3/repos/extra-i686/kconf_updaterc
(from rev 169738, kdelibs3/repos/testing-i686/kconf_updaterc)
  kdelibs3/repos/extra-i686/kde3.profile
(from rev 169738, kdelibs3/repos/testing-i686/kde3.profile)
  kdelibs3/repos/extra-i686/kde4-compatibility.patch
(from rev 169738, kdelibs3/repos/testing-i686/kde4-compatibility.patch)
  kdelibs3/repos/extra-i686/kdelibs3-cups16.patch
(from rev 169738, kdelibs3/repos/testing-i686/kdelibs3-cups16.patch)
  kdelibs3/repos/extra-i686/kdelibs3-missing-include.patch
(from rev 169738, 
kdelibs3/repos/testing-i686/kdelibs3-missing-include.patch)
  kdelibs3/repos/extra-i686/kdelibs3.install
(from rev 169738, kdelibs3/repos/testing-i686/kdelibs3.install)
  kdelibs3/repos/extra-i686/openssl.patch
(from rev 169738, kdelibs3/repos/testing-i686/openssl.patch)
  kdelibs3/repos/extra-x86_64/PKGBUILD
(from rev 169738, kdelibs3/repos/testing-x86_64/PKGBUILD)
  kdelibs3/repos/extra-x86_64/acinclude.patch
(from rev 169738, kdelibs3/repos/testing-x86_64/acinclude.patch)
  kdelibs3/repos/extra-x86_64/kconf_updaterc
(from rev 169738, kdelibs3/repos/testing-x86_64/kconf_updaterc)
  kdelibs3/repos/extra-x86_64/kde3.profile
(from rev 169738, kdelibs3/repos/testing-x86_64/kde3.profile)
  kdelibs3/repos/extra-x86_64/kde4-compatibility.patch
(from rev 169738, kdelibs3/repos/testing-x86_64/kde4-compatibility.patch)
  kdelibs3/repos/extra-x86_64/kdelibs3-cups16.patch
(from rev 169738, kdelibs3/repos/testing-x86_64/kdelibs3-cups16.patch)
  kdelibs3/repos/extra-x86_64/kdelibs3-missing-include.patch
(from rev 169738, 
kdelibs3/repos/testing-x86_64/kdelibs3-missing-include.patch)
  kdelibs3/repos/extra-x86_64/kdelibs3.install
(from rev 169738, kdelibs3/repos/testing-x86_64/kdelibs3.install)
  kdelibs3/repos/extra-x86_64/openssl.patch
(from rev 169738, kdelibs3/repos/testing-x86_64/openssl.patch)
Deleted:
  kdelibs3/repos/extra-i686/PKGBUILD
  kdelibs3/repos/extra-i686/acinclude.patch
  kdelibs3/repos/extra-i686/kconf_updaterc
  kdelibs3/repos/extra-i686/kde3.profile
  kdelibs3/repos/extra-i686/kde4-compatibility.patch
  kdelibs3/repos/extra-i686/kdelibs3-cups16.patch
  kdelibs3/repos/extra-i686/kdelibs3-missing-include.patch
  kdelibs3/repos/extra-i686/kdelibs3.install
  kdelibs3/repos/extra-i686/openssl.patch
  kdelibs3/repos/extra-x86_64/PKGBUILD
  kdelibs3/repos/extra-x86_64/acinclude.patch
  kdelibs3/repos/extra-x86_64/kconf_updaterc
  kdelibs3/repos/extra-x86_64/kde3.profile
  kdelibs3/repos/extra-x86_64/kde4-compatibility.patch
  kdelibs3/repos/extra-x86_64/kdelibs3-cups16.patch
  kdelibs3/repos/extra-x86_64/kdelibs3-missing-include.patch
  kdelibs3/repos/extra-x86_64/kdelibs3.install
  kdelibs3/repos/extra-x86_64/openssl.patch
  kdelibs3/repos/testing-i686/
  kdelibs3/repos/testing-x86_64/

-+
 extra-i686/PKGBUILD |  194 +-
 extra-i686/acinclude.patch  |  132 -
 extra-i686/kconf_updaterc   |4 
 extra-i686/kde3.profile |   12 
 extra-i686/kde4-compatibility.patch | 2024 +-
 extra-i686/kdelibs3-cups16.patch| 1448 +-
 extra-i686/kdelibs3-missing-include.patch   |   20 
 extra-i686/kdelibs3.install |   24 
 extra-i686/openssl.patch|  360 ++--
 extra-x86_64/PKGBUILD   |  194 +-
 extra-x86_64/acinclude.patch|  132 -
 extra-x86_64/kconf_updaterc |4 
 extra-x86_64/kde3.profile   |   12 
 extra-x86_64/kde4-compatibility.patch   | 2024 +-
 extra-x86_64/kdelibs3-cups16.patch  | 1448 +-
 extra-x86_64/kdelibs3-missing-include.patch |   20 
 extra-x86_64/kdelibs3.install   |   24 
 extra-x86_64/openssl.patch  |  360 ++--
 18 files changed, 4218 insertions(+), 4218 deletions(-)

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


[arch-commits] Commit in obex-data-server/repos (6 files)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:42:12
  Author: eric
Revision: 169754

db-move: moved obex-data-server from [testing] to [extra] (i686, x86_64)

Added:
  obex-data-server/repos/extra-i686/PKGBUILD
(from rev 169738, obex-data-server/repos/testing-i686/PKGBUILD)
  obex-data-server/repos/extra-x86_64/PKGBUILD
(from rev 169738, obex-data-server/repos/testing-x86_64/PKGBUILD)
Deleted:
  obex-data-server/repos/extra-i686/PKGBUILD
  obex-data-server/repos/extra-x86_64/PKGBUILD
  obex-data-server/repos/testing-i686/
  obex-data-server/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   56 
 extra-x86_64/PKGBUILD |   56 
 2 files changed, 56 insertions(+), 56 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:42:09 UTC (rev 169753)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:12 UTC (rev 169754)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Geoffroy Carrier geoff...@archlinux.org
-# Contributor: Roman Kyrylych ro...@archlinux.org
-# Contributor: Keerthi keerthi.li...@gmail.com
-
-pkgname=obex-data-server
-pkgver=0.4.6
-pkgrel=2
-pkgdesc=A D-Bus service providing high-level OBEX client and server side 
functionality
-arch=('i686' 'x86_64')
-url=http://wiki.muiline.com/obex-data-server;
-license=('GPL')
-depends=('dbus-glib' 'openobex' 'imagemagick')
-source=(http://tadas.dailyda.com/software/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('961ca5db6fe9c97024e133cc6203cc4d')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: obex-data-server/repos/extra-i686/PKGBUILD (from rev 169738, 
obex-data-server/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:12 UTC (rev 169754)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Geoffroy Carrier geoff...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Keerthi keerthi.li...@gmail.com
+
+pkgname=obex-data-server
+pkgver=0.4.6
+pkgrel=3
+pkgdesc=A D-Bus service providing high-level OBEX client and server side 
functionality
+arch=('i686' 'x86_64')
+url=http://wiki.muiline.com/obex-data-server;
+license=('GPL')
+depends=('dbus-glib' 'openobex' 'imagemagick')
+source=(http://tadas.dailyda.com/software/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('961ca5db6fe9c97024e133cc6203cc4d')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+--sysconfdir=/etc
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-27 23:42:09 UTC (rev 169753)
+++ extra-x86_64/PKGBUILD   2012-10-27 23:42:12 UTC (rev 169754)
@@ -1,28 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Geoffroy Carrier geoff...@archlinux.org
-# Contributor: Roman Kyrylych ro...@archlinux.org
-# Contributor: Keerthi keerthi.li...@gmail.com
-
-pkgname=obex-data-server
-pkgver=0.4.6
-pkgrel=2
-pkgdesc=A D-Bus service providing high-level OBEX client and server side 
functionality
-arch=('i686' 'x86_64')
-url=http://wiki.muiline.com/obex-data-server;
-license=('GPL')
-depends=('dbus-glib' 'openobex' 'imagemagick')
-source=(http://tadas.dailyda.com/software/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('961ca5db6fe9c97024e133cc6203cc4d')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
---sysconfdir=/etc
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: obex-data-server/repos/extra-x86_64/PKGBUILD (from rev 169738, 
obex-data-server/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-10-27 23:42:12 UTC (rev 169754)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Andrea Scarpino and...@archlinux.org
+# Contributor: Geoffroy Carrier geoff...@archlinux.org
+# Contributor: Roman Kyrylych ro...@archlinux.org
+# Contributor: Keerthi keerthi.li...@gmail.com
+
+pkgname=obex-data-server
+pkgver=0.4.6
+pkgrel=3
+pkgdesc=A D-Bus service providing high-level OBEX client and server side 
functionality
+arch=('i686' 'x86_64')
+url=http://wiki.muiline.com/obex-data-server;
+license=('GPL')
+depends=('dbus-glib' 'openobex' 'imagemagick')
+source=(http://tadas.dailyda.com/software/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('961ca5db6fe9c97024e133cc6203cc4d')
+

[arch-commits] Commit in kdelibs/repos (22 files)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:42:05
  Author: eric
Revision: 169752

db-move: moved kdelibs from [testing] to [extra] (i686, x86_64)

Added:
  kdelibs/repos/extra-i686/PKGBUILD
(from rev 169738, kdelibs/repos/testing-i686/PKGBUILD)
  kdelibs/repos/extra-i686/archlinux-menu.patch
(from rev 169738, kdelibs/repos/testing-i686/archlinux-menu.patch)
  kdelibs/repos/extra-i686/kde-applications-menu.patch
(from rev 169738, kdelibs/repos/testing-i686/kde-applications-menu.patch)
  kdelibs/repos/extra-i686/kdelibs.install
(from rev 169738, kdelibs/repos/testing-i686/kdelibs.install)
  kdelibs/repos/extra-i686/use-pythondontwritebytecode.patch
(from rev 169738, 
kdelibs/repos/testing-i686/use-pythondontwritebytecode.patch)
  kdelibs/repos/extra-x86_64/PKGBUILD
(from rev 169738, kdelibs/repos/testing-x86_64/PKGBUILD)
  kdelibs/repos/extra-x86_64/archlinux-menu.patch
(from rev 169738, kdelibs/repos/testing-x86_64/archlinux-menu.patch)
  kdelibs/repos/extra-x86_64/kde-applications-menu.patch
(from rev 169738, kdelibs/repos/testing-x86_64/kde-applications-menu.patch)
  kdelibs/repos/extra-x86_64/kdelibs.install
(from rev 169738, kdelibs/repos/testing-x86_64/kdelibs.install)
  kdelibs/repos/extra-x86_64/use-pythondontwritebytecode.patch
(from rev 169738, 
kdelibs/repos/testing-x86_64/use-pythondontwritebytecode.patch)
Deleted:
  kdelibs/repos/extra-i686/PKGBUILD
  kdelibs/repos/extra-i686/archlinux-menu.patch
  kdelibs/repos/extra-i686/kde-applications-menu.patch
  kdelibs/repos/extra-i686/kdelibs.install
  kdelibs/repos/extra-i686/use-pythondontwritebytecode.patch
  kdelibs/repos/extra-x86_64/PKGBUILD
  kdelibs/repos/extra-x86_64/archlinux-menu.patch
  kdelibs/repos/extra-x86_64/kde-applications-menu.patch
  kdelibs/repos/extra-x86_64/kdelibs.install
  kdelibs/repos/extra-x86_64/use-pythondontwritebytecode.patch
  kdelibs/repos/testing-i686/
  kdelibs/repos/testing-x86_64/

+
 extra-i686/PKGBUILD|  124 -
 extra-i686/archlinux-menu.patch|   44 +++---
 extra-i686/kde-applications-menu.patch |   44 +++---
 extra-i686/kdelibs.install |   26 +--
 extra-i686/use-pythondontwritebytecode.patch   |  160 +++
 extra-x86_64/PKGBUILD  |  124 -
 extra-x86_64/archlinux-menu.patch  |   44 +++---
 extra-x86_64/kde-applications-menu.patch   |   44 +++---
 extra-x86_64/kdelibs.install   |   26 +--
 extra-x86_64/use-pythondontwritebytecode.patch |  160 +++
 10 files changed, 398 insertions(+), 398 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:42:02 UTC (rev 169751)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:05 UTC (rev 169752)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgname=kdelibs
-pkgver=4.9.2
-pkgrel=2
-pkgdesc=KDE Core Libraries
-arch=('i686' 'x86_64')
-url='https://projects.kde.org/projects/kde/kdelibs'
-license=('GPL' 'LGPL' 'FDL')
-depends=('strigi' 'attica' 'libxss' 'soprano' 'krb5' 'grantlee'
-'shared-desktop-ontologies' 'qca' 'libdbusmenu-qt' 'polkit-qt'
-'shared-mime-info' 'enchant' 'giflib' 'jasper' 'openexr'
-'docbook-xsl' 'upower' 'udisks' 'libxcursor' 'phonon' 'qtwebkit'
-'media-player-info' 'libxtst')
-makedepends=('cmake' 'automoc4' 'avahi' 'libgl' 'hspell')
-install=${pkgname}.install
-source=(http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.xz;
-'kde-applications-menu.patch' 'archlinux-menu.patch'
-'use-pythondontwritebytecode.patch')
-sha1sums=('e86ee16ac7c412b0f6abe3754cb372a45d41c71b'
-  '86ee8c8660f19de8141ac99cd6943964d97a1ed7'
-  '63a850ab4196b9d06934f2b4a13acd9f7739bc67'
-  'bbacbbe2194f3961cd7557d98a9ddef158ca11aa')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   # avoid file conflict with gnome-menus
-   patch -p1 -i ${srcdir}/kde-applications-menu.patch
-   # add Archlinux menu entry
-   patch -p1 -i ${srcdir}/archlinux-menu.patch
-
-   # Set PYTHONDONTWRITEBYTECODE (KDEBUG#276151)
-   patch -p0 -i ${srcdir}/use-pythondontwritebytecode.patch
-   
-   cd ${srcdir}
-   mkdir build
-   cd build
-   cmake ../${pkgname}-${pkgver} \
-   -DCMAKE_BUILD_TYPE=Release \
-   -DCMAKE_SKIP_RPATH=ON \
-   -DKDE_DISTRIBUTION_TEXT='Arch Linux' \
-   -DCMAKE_INSTALL_PREFIX=/usr \
-   -DSYSCONF_INSTALL_DIR=/etc \
-   -DHTML_INSTALL_DIR=/usr/share/doc/kde/html \
-   -DKDE_DEFAULT_HOME='.kde4' \
-   -DWITH_FAM=OFF \
-   -DWITH_HUpnp=OFF
-   make
-}
-
-package() {
-   cd ${srcdir}/build
- 

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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:58
  Author: eric
Revision: 169750

db-move: moved imagemagick from [testing] to [extra] (i686, x86_64)

Added:
  imagemagick/repos/extra-i686/PKGBUILD
(from rev 169738, imagemagick/repos/testing-i686/PKGBUILD)
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
(from rev 169738, imagemagick/repos/testing-i686/perlmagick.rpath.patch)
  imagemagick/repos/extra-x86_64/PKGBUILD
(from rev 169738, imagemagick/repos/testing-x86_64/PKGBUILD)
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch
(from rev 169738, imagemagick/repos/testing-x86_64/perlmagick.rpath.patch)
Deleted:
  imagemagick/repos/extra-i686/PKGBUILD
  imagemagick/repos/extra-i686/perlmagick.rpath.patch
  imagemagick/repos/extra-x86_64/PKGBUILD
  imagemagick/repos/extra-x86_64/perlmagick.rpath.patch
  imagemagick/repos/testing-i686/
  imagemagick/repos/testing-x86_64/

-+
 extra-i686/PKGBUILD |  164 +-
 extra-i686/perlmagick.rpath.patch   |   20 ++--
 extra-x86_64/PKGBUILD   |  164 +-
 extra-x86_64/perlmagick.rpath.patch |   20 ++--
 4 files changed, 184 insertions(+), 184 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:41:54 UTC (rev 169749)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:58 UTC (rev 169750)
@@ -1,82 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgbase=imagemagick
-pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.7.9.8
-pkgrel=2
-arch=('i686' 'x86_64')
-url=http://www.imagemagick.org/;
-license=('custom')
-makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript' \
- 'openexr' 'libwmf' 'librsvg' 'libxml2' 'jasper' 'liblqr')
-source=(ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz
 \
-perlmagick.rpath.patch)
-sha1sums=('dc61335f931ea637e7bd2e711b520d221bfe464c'
-  '23405f80904b1de94ebd7bd6fe2a332471b8c283')
-
-build() {
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-
-  sed '/AC_PATH_XTRA/d' -i configure.ac
-  autoreconf --force --install
-  patch -p0 -i ../perlmagick.rpath.patch
-
-  ./configure --prefix=/usr --sysconfdir=/etc --with-modules --disable-static \
---disable-openmp --with-wmf --with-openexr --with-xml --with-lcms2 
--with-jp2 \
---with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
---with-perl --with-perl-options=INSTALLDIRS=vendor --with-lqr 
--with-rsvg \
---without-gvc --without-djvu --without-autotrace --without-webp \
---without-jbig --without-fpx --without-dps --without-fftw
-  make
-}
-
-check() {
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-#  make check
-}
-
-package_imagemagick() {
-  pkgdesc=An image viewing/manipulation program
-  depends=('perl' 'libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr')
-  optdepends=('ghostscript: for Ghostscript support' 
-  'openexr: for OpenEXR support' 
-  'libwmf: for WMF support' 
-  'librsvg: for SVG support' 
-  'libxml2: for XML support' 
-  'jasper: for JPEG-2000 support' 
-  'libpng: for PNG support')
-  backup=('etc/ImageMagick/coder.xml'
-  'etc/ImageMagick/colors.xml'
-  'etc/ImageMagick/delegates.xml'
-  'etc/ImageMagick/log.xml'
-  'etc/ImageMagick/magic.xml'
-  'etc/ImageMagick/mime.xml'
-  'etc/ImageMagick/policy.xml'
-  'etc/ImageMagick/quantization-table.xml'
-  'etc/ImageMagick/thresholds.xml'
-  'etc/ImageMagick/type.xml'
-  'etc/ImageMagick/type-dejavu.xml'
-  'etc/ImageMagick/type-ghostscript.xml'
-  'etc/ImageMagick/type-windows.xml')
-  options=('!docs' 'libtool' '!emptydirs')
-
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR=${pkgdir} install
-  chmod 755 ${pkgdir}/usr/lib/perl5/vendor_perl/auto/Image/Magick/Magick.so 
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/imagemagick/LICENSE
-  install -Dm644 NOTICE ${pkgdir}/usr/share/licenses/imagemagick/NOTICE
-
-#Cleaning
-  find ${pkgdir} -name '*.bs' -delete
-  rm -f ${pkgdir}/usr/lib/*.la
-}
-
-package_imagemagick-doc() {
-  pkgdesc=The ImageMagick documentation (utilities manuals and libraries API)
-
-  cd ${srcdir}/ImageMagick-${pkgver%.*}-${pkgver##*.}
-  make DESTDIR=${pkgdir} install-data-html
-  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/imagemagick-doc/LICENSE
-  install -Dm644 NOTICE ${pkgdir}/usr/share/licenses/imagemagick-doc/NOTICE
-}

Copied: imagemagick/repos/extra-i686/PKGBUILD (from rev 169738, 
imagemagick/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:58 UTC (rev 169750)
@@ -0,0 +1,82 @@
+# 

[arch-commits] Commit in inkscape/repos (18 files)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:42:02
  Author: eric
Revision: 169751

db-move: moved inkscape from [testing] to [extra] (i686, x86_64)

Added:
  inkscape/repos/extra-i686/PKGBUILD
(from rev 169738, inkscape/repos/testing-i686/PKGBUILD)
  inkscape/repos/extra-i686/install
(from rev 169738, inkscape/repos/testing-i686/install)
  inkscape/repos/extra-i686/libpng15.patch
(from rev 169738, inkscape/repos/testing-i686/libpng15.patch)
  inkscape/repos/extra-i686/poppler20.patch
(from rev 169738, inkscape/repos/testing-i686/poppler20.patch)
  inkscape/repos/extra-x86_64/PKGBUILD
(from rev 169738, inkscape/repos/testing-x86_64/PKGBUILD)
  inkscape/repos/extra-x86_64/install
(from rev 169738, inkscape/repos/testing-x86_64/install)
  inkscape/repos/extra-x86_64/libpng15.patch
(from rev 169738, inkscape/repos/testing-x86_64/libpng15.patch)
  inkscape/repos/extra-x86_64/poppler20.patch
(from rev 169738, inkscape/repos/testing-x86_64/poppler20.patch)
Deleted:
  inkscape/repos/extra-i686/PKGBUILD
  inkscape/repos/extra-i686/install
  inkscape/repos/extra-i686/libpng15.patch
  inkscape/repos/extra-i686/poppler20.patch
  inkscape/repos/extra-x86_64/PKGBUILD
  inkscape/repos/extra-x86_64/install
  inkscape/repos/extra-x86_64/libpng15.patch
  inkscape/repos/extra-x86_64/poppler20.patch
  inkscape/repos/testing-i686/
  inkscape/repos/testing-x86_64/

--+
 extra-i686/PKGBUILD  |  118 +--
 extra-i686/install   |   26 
 extra-i686/libpng15.patch|   80 +-
 extra-i686/poppler20.patch   | 1284 -
 extra-x86_64/PKGBUILD|  118 +--
 extra-x86_64/install |   26 
 extra-x86_64/libpng15.patch  |   80 +-
 extra-x86_64/poppler20.patch | 1284 -
 8 files changed, 1508 insertions(+), 1508 deletions(-)

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


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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:42:17
  Author: eric
Revision: 169756

db-move: moved openexr from [testing] to [extra] (i686, x86_64)

Added:
  openexr/repos/extra-i686/PKGBUILD
(from rev 169738, openexr/repos/testing-i686/PKGBUILD)
  openexr/repos/extra-i686/gcc43.patch
(from rev 169738, openexr/repos/testing-i686/gcc43.patch)
  openexr/repos/extra-x86_64/PKGBUILD
(from rev 169738, openexr/repos/testing-x86_64/PKGBUILD)
  openexr/repos/extra-x86_64/gcc43.patch
(from rev 169738, openexr/repos/testing-x86_64/gcc43.patch)
Deleted:
  openexr/repos/extra-i686/PKGBUILD
  openexr/repos/extra-i686/gcc43.patch
  openexr/repos/extra-x86_64/PKGBUILD
  openexr/repos/extra-x86_64/gcc43.patch
  openexr/repos/testing-i686/
  openexr/repos/testing-x86_64/

--+
 extra-i686/PKGBUILD  |   60 ++---
 extra-i686/gcc43.patch   |   22 
 extra-x86_64/PKGBUILD|   60 ++---
 extra-x86_64/gcc43.patch |   22 
 4 files changed, 82 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:42:14 UTC (rev 169755)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:17 UTC (rev 169756)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-
-pkgname=openexr
-pkgver=1.7.1
-pkgrel=1
-pkgdesc=An high dynamic-range image file format library
-url=http://www.openexr.com/;
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('zlib' 'ilmbase')
-options=('!libtool')
-source=(https://github.com/downloads/${pkgname}/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'gcc43.patch')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p0 -i ${srcdir}/gcc43.patch
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
-}
-
-md5sums=('a9e0369dfd68941c50cdaa93e9d7a8d1'
- 'd91fae759053a70bcedcf02eb33ca4a2')

Copied: openexr/repos/extra-i686/PKGBUILD (from rev 169738, 
openexr/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:17 UTC (rev 169756)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=openexr
+pkgver=1.7.1
+pkgrel=2
+pkgdesc=An high dynamic-range image file format library
+url=http://www.openexr.com/;
+arch=('i686' 'x86_64')
+license=('BSD')
+depends=('zlib' 'ilmbase')
+options=('!libtool')
+source=(https://github.com/downloads/${pkgname}/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'gcc43.patch')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  patch -p0 -i ${srcdir}/gcc43.patch
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}
+
+md5sums=('a9e0369dfd68941c50cdaa93e9d7a8d1'
+ 'd91fae759053a70bcedcf02eb33ca4a2')

Deleted: extra-i686/gcc43.patch
===
--- extra-i686/gcc43.patch  2012-10-27 23:42:14 UTC (rev 169755)
+++ extra-i686/gcc43.patch  2012-10-27 23:42:17 UTC (rev 169756)
@@ -1,11 +0,0 @@
 exrenvmap/blurImage.cpp
-+++ exrenvmap/blurImage.cpp
-@@ -39,6 +39,8 @@
- //
- 
//-
- 
-+#include cstring
-+
- #include blurImage.h
- 
- #include resizeImage.h

Copied: openexr/repos/extra-i686/gcc43.patch (from rev 169738, 
openexr/repos/testing-i686/gcc43.patch)
===
--- extra-i686/gcc43.patch  (rev 0)
+++ extra-i686/gcc43.patch  2012-10-27 23:42:17 UTC (rev 169756)
@@ -0,0 +1,11 @@
+--- exrenvmap/blurImage.cpp
 exrenvmap/blurImage.cpp
+@@ -39,6 +39,8 @@
+ //
+ 
//-
+ 
++#include cstring
++
+ #include blurImage.h
+ 
+ #include resizeImage.h

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-27 23:42:14 UTC (rev 169755)
+++ extra-x86_64/PKGBUILD   2012-10-27 23:42:17 UTC (rev 169756)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-
-pkgname=openexr
-pkgver=1.7.1
-pkgrel=1
-pkgdesc=An high dynamic-range image file format library
-url=http://www.openexr.com/;
-arch=('i686' 'x86_64')
-license=('BSD')
-depends=('zlib' 'ilmbase')
-options=('!libtool')
-source=(https://github.com/downloads/${pkgname}/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'gcc43.patch')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  patch -p0 -i 

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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:42:22
  Author: eric
Revision: 169758

db-move: moved pstoedit from [testing] to [extra] (i686, x86_64)

Added:
  pstoedit/repos/extra-i686/PKGBUILD
(from rev 169738, pstoedit/repos/testing-i686/PKGBUILD)
  pstoedit/repos/extra-i686/pstoedit-3.50-parallel.patch
(from rev 169738, pstoedit/repos/testing-i686/pstoedit-3.50-parallel.patch)
  pstoedit/repos/extra-i686/pstoedit-3.50-plugin-close.patch
(from rev 169738, 
pstoedit/repos/testing-i686/pstoedit-3.50-plugin-close.patch)
  pstoedit/repos/extra-x86_64/PKGBUILD
(from rev 169738, pstoedit/repos/testing-x86_64/PKGBUILD)
  pstoedit/repos/extra-x86_64/pstoedit-3.50-parallel.patch
(from rev 169738, 
pstoedit/repos/testing-x86_64/pstoedit-3.50-parallel.patch)
  pstoedit/repos/extra-x86_64/pstoedit-3.50-plugin-close.patch
(from rev 169738, 
pstoedit/repos/testing-x86_64/pstoedit-3.50-plugin-close.patch)
Deleted:
  pstoedit/repos/extra-i686/PKGBUILD
  pstoedit/repos/extra-i686/pstoedit-3.50-parallel.patch
  pstoedit/repos/extra-i686/pstoedit-3.50-plugin-close.patch
  pstoedit/repos/extra-x86_64/PKGBUILD
  pstoedit/repos/extra-x86_64/pstoedit-3.50-parallel.patch
  pstoedit/repos/extra-x86_64/pstoedit-3.50-plugin-close.patch
  pstoedit/repos/testing-i686/
  pstoedit/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   68 -
 extra-i686/pstoedit-3.50-parallel.patch   |   94 
 extra-i686/pstoedit-3.50-plugin-close.patch   |   28 +++
 extra-x86_64/PKGBUILD |   68 -
 extra-x86_64/pstoedit-3.50-parallel.patch |   94 
 extra-x86_64/pstoedit-3.50-plugin-close.patch |   28 +++
 6 files changed, 190 insertions(+), 190 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:42:19 UTC (rev 169757)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:22 UTC (rev 169758)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren ronald.archlinux.org
-# Contributor: damir da...@archlinux.org
-# Contributor: Tobias Powalowski t.p...@gmx.de
-
-pkgname=pstoedit
-pkgver=3.60
-pkgrel=2
-pkgdesc=Translates PostScript and PDF graphics into other vector formats
-arch=('i686' 'x86_64')
-url=http://www.pstoedit.net/;
-license=('GPL')
-depends=('gcc-libs' 'plotutils' 'gd' 'imagemagick')
-makedepends=('ghostscript')
-options=('!libtool' '!makeflags')
-source=(http://downloads.sourceforge.net/sourceforge/pstoedit/pstoedit-${pkgver}.tar.gz;
-   'pstoedit-3.50-parallel.patch'  'pstoedit-3.50-plugin-close.patch')
-sha1sums=('649ade3d873429548eb6dd9f3e13cb79a8d6a1a2'
-  '6e278b164d3e59fbb11e7fd5ae8ffb038932d69a'
-  '54bbe019de66eb4cb8525371462595d21fbd074e')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  sed -i 's/-pedantic//' configure
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: pstoedit/repos/extra-i686/PKGBUILD (from rev 169738, 
pstoedit/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:22 UTC (rev 169758)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Ronald van Haren ronald.archlinux.org
+# Contributor: damir da...@archlinux.org
+# Contributor: Tobias Powalowski t.p...@gmx.de
+
+pkgname=pstoedit
+pkgver=3.60
+pkgrel=3
+pkgdesc=Translates PostScript and PDF graphics into other vector formats
+arch=('i686' 'x86_64')
+url=http://www.pstoedit.net/;
+license=('GPL')
+depends=('gcc-libs' 'plotutils' 'gd' 'imagemagick')
+makedepends=('ghostscript')
+options=('!libtool' '!makeflags')
+source=(http://downloads.sourceforge.net/sourceforge/pstoedit/pstoedit-${pkgver}.tar.gz;
+   'pstoedit-3.50-parallel.patch'  'pstoedit-3.50-plugin-close.patch')
+sha1sums=('649ade3d873429548eb6dd9f3e13cb79a8d6a1a2'
+  '6e278b164d3e59fbb11e7fd5ae8ffb038932d69a'
+  '54bbe019de66eb4cb8525371462595d21fbd074e')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  sed -i 's/-pedantic//' configure
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-i686/pstoedit-3.50-parallel.patch
===
--- extra-i686/pstoedit-3.50-parallel.patch 2012-10-27 23:42:19 UTC (rev 
169757)
+++ extra-i686/pstoedit-3.50-parallel.patch 2012-10-27 23:42:22 UTC (rev 
169758)
@@ -1,47 +0,0 @@
-diff --git a/src/Makefile.am b/src/Makefile.am
-index d6178df..66f377b 100755
 a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -86,6 +86,7 @@ libp2edrvstd_la_SOURCES= \
- $(sample_drivers_src)   
- libp2edrvstd_la_LIBADD=-L. libpstoedit.la
- 

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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:42:19
  Author: eric
Revision: 169757

db-move: moved psiconv from [testing] to [extra] (i686, x86_64)

Added:
  psiconv/repos/extra-i686/PKGBUILD
(from rev 169738, psiconv/repos/testing-i686/PKGBUILD)
  psiconv/repos/extra-x86_64/PKGBUILD
(from rev 169738, psiconv/repos/testing-x86_64/PKGBUILD)
Deleted:
  psiconv/repos/extra-i686/PKGBUILD
  psiconv/repos/extra-x86_64/PKGBUILD
  psiconv/repos/testing-i686/
  psiconv/repos/testing-x86_64/

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:42:17 UTC (rev 169756)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:19 UTC (rev 169757)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=psiconv
-pkgver=0.9.8
-pkgrel=9
-pkgdesc=Converts Psion 5(MX) files to more commonly used file formats
-arch=('i686' 'x86_64')
-url=http://software.frodo.looijaard.name/psiconv/;
-license=('GPL')
-depends=('imagemagick')
-makedepends=('bc')
-backup=('etc/psiconv/psiconv.conf')
-options=('!libtool')
-source=(http://software.frodo.looijaard.name/${pkgname}/files/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('8d7548e3c6b9cd408544736133728acd')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: psiconv/repos/extra-i686/PKGBUILD (from rev 169738, 
psiconv/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:19 UTC (rev 169757)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=psiconv
+pkgver=0.9.8
+pkgrel=10
+pkgdesc=Converts Psion 5(MX) files to more commonly used file formats
+arch=('i686' 'x86_64')
+url=http://software.frodo.looijaard.name/psiconv/;
+license=('GPL')
+depends=('imagemagick')
+makedepends=('bc')
+backup=('etc/psiconv/psiconv.conf')
+options=('!libtool')
+source=(http://software.frodo.looijaard.name/${pkgname}/files/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('8d7548e3c6b9cd408544736133728acd')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  --mandir=/usr/share/man
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-10-27 23:42:17 UTC (rev 169756)
+++ extra-x86_64/PKGBUILD   2012-10-27 23:42:19 UTC (rev 169757)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora giova...@archlinux.org
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-
-pkgname=psiconv
-pkgver=0.9.8
-pkgrel=9
-pkgdesc=Converts Psion 5(MX) files to more commonly used file formats
-arch=('i686' 'x86_64')
-url=http://software.frodo.looijaard.name/psiconv/;
-license=('GPL')
-depends=('imagemagick')
-makedepends=('bc')
-backup=('etc/psiconv/psiconv.conf')
-options=('!libtool')
-source=(http://software.frodo.looijaard.name/${pkgname}/files/${pkgname}-${pkgver}.tar.gz;)
-md5sums=('8d7548e3c6b9cd408544736133728acd')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr \
-  --sysconfdir=/etc \
-  --mandir=/usr/share/man
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: psiconv/repos/extra-x86_64/PKGBUILD (from rev 169738, 
psiconv/repos/testing-x86_64/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-10-27 23:42:19 UTC (rev 169757)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer: Giovanni Scafora giova...@archlinux.org
+# Contributor: Tom Newsom jeeps...@gmx.co.uk
+
+pkgname=psiconv
+pkgver=0.9.8
+pkgrel=10
+pkgdesc=Converts Psion 5(MX) files to more commonly used file formats
+arch=('i686' 'x86_64')
+url=http://software.frodo.looijaard.name/psiconv/;
+license=('GPL')
+depends=('imagemagick')
+makedepends=('bc')
+backup=('etc/psiconv/psiconv.conf')
+options=('!libtool')
+source=(http://software.frodo.looijaard.name/${pkgname}/files/${pkgname}-${pkgver}.tar.gz;)
+md5sums=('8d7548e3c6b9cd408544736133728acd')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr \
+  --sysconfdir=/etc \
+  

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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:42:14
  Author: eric
Revision: 169755

db-move: moved opencv from [testing] to [extra] (i686, x86_64)

Added:
  opencv/repos/extra-i686/PKGBUILD
(from rev 169738, opencv/repos/testing-i686/PKGBUILD)
  opencv/repos/extra-x86_64/PKGBUILD
(from rev 169738, opencv/repos/testing-x86_64/PKGBUILD)
Deleted:
  opencv/repos/extra-i686/PKGBUILD
  opencv/repos/extra-x86_64/PKGBUILD
  opencv/repos/testing-i686/
  opencv/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |  229 +++-
 extra-x86_64/PKGBUILD |  229 +++-
 2 files changed, 222 insertions(+), 236 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:42:12 UTC (rev 169754)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:14 UTC (rev 169755)
@@ -1,118 +0,0 @@
-# $Id$
-# Maintainer: Ray Rashif sc...@archlinux.org
-# Contributor: Tobias Powalowski tp...@archlinux.org
-
-pkgbase=opencv
-pkgname=('opencv' 'opencv-docs' 'opencv-samples')
-_realname=OpenCV
-pkgver=2.4.2
-pkgrel=4
-pkgdesc=Open Source Computer Vision Library
-arch=('i686' 'x86_64')
-license=('BSD')
-url=http://opencv.org/;
-depends=('jasper' 'gstreamer0.10-base' 'openexr=1.7.0'
- 'gtk2' 'xine-lib' 'libdc1394' 'v4l-utils')
-makedepends=('pkg-config' 'cmake' 'python2-numpy' 'eigen2')
-optdepends=('opencv-docs'
-'opencv-samples'
-'eigen2'
-'python2-numpy: Python 2.x interface')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/opencvlibrary/$_realname-${pkgver}.tar.bz2;)
-md5sums=('059ef86fc1724d69b75832a0d2929ff5')
-
-_cmakeopts=('-D CMAKE_BUILD_TYPE=Release'
-'-D CMAKE_INSTALL_PREFIX=/usr'
-'-D CMAKE_SKIP_RPATH=ON'
-'-D BUILD_TESTS=OFF'
-'-D ENABLE_SSE=ON'
-'-D ENABLE_SSE2=ON'
-'-D ENABLE_SSE3=OFF'
-'-D ENABLE_SSSE3=OFF'
-'-D ENABLE_SSE41=OFF'
-'-D ENABLE_SSE42=OFF'
-'-D BUILD_EXAMPLES=ON'
-'-D INSTALL_C_EXAMPLES=ON'
-'-D INSTALL_PYTHON_EXAMPLES=ON'
-'-D WITH_XINE=ON'
-'-D WITH_QT=OFF'
-'-D WITH_QT_OPENGL=OFF'
-'-D WITH_UNICAP=OFF'
-'-D WITH_PVAPI=OFF'
-'-D WITH_OPENNI=OFF'
-'-D WITH_TBB=OFF'
-'-D WITH_IPP=OFF'
-'-D WITH_CUDA=OFF'
-'-D USE_FAST_MATH=ON')
-
-build() {
-  cd $srcdir/$_realname-$pkgver
-
-  # x64, i.e Athlon64 and upwards, can use SSE3
-  [ $CARCH = x86_64 ]  \
-_cmakeopts=${_cmakeopts[@]/ENABLE_SSE3=OFF/ENABLE_SSE3=ON}
-
-  cmake ${_cmakeopts[@]} .
-
-  make
-}
-
-package_opencv() {
-  cd $srcdir/$_realname-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  # install license file
-  install -Dm644 $srcdir/$_realname-$pkgver/doc/license.txt \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-
-  cd $pkgdir/usr/share
-
-  # prepare FSH-friendly dirs
-  #if [ -d OpenCV ]; then
-  #  mv opencv/samples OpenCV/
-  #  rm -r opencv
-  #  mv OpenCV opencv
-  #fi
-
-  # separate docs package; also be -R friendly
-  [ -d $_realname/doc ]  mv $_realname/doc $srcdir/opencv-doc
-
-  # separate samples package
-  [ -d $_realname/samples ]  mv $_realname/samples $srcdir/opencv-samples
-}
-
-package_opencv-docs() {
-  pkgdesc+= (documentation)
-  unset depends
-  unset optdepends
-  options=('docs')
-
-  cd $srcdir
-
-  mkdir -p $pkgdir/usr/share/doc
-  cp -r opencv-doc $pkgdir/usr/share/doc/$_realname
-
-  # install license file
-  install -Dm644 $srcdir/$_realname-$pkgver/doc/license.txt \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_opencv-samples() {
-  pkgdesc+= (samples)
-  depends=('bash')
-  unset optdepends
-  unset options
-
-  cd $srcdir
-
-  mkdir -p $pkgdir/usr/share/$_realname
-  cp -r opencv-samples $pkgdir/usr/share/$_realname/samples
-
-  # install license file
-  install -Dm644 $srcdir/$_realname-$pkgver/doc/license.txt \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: opencv/repos/extra-i686/PKGBUILD (from rev 169738, 
opencv/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:14 UTC (rev 169755)
@@ -0,0 +1,111 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgbase=opencv
+pkgname=('opencv' 'opencv-docs' 'opencv-samples')
+_realname=OpenCV
+pkgver=2.4.2
+pkgrel=5
+pkgdesc=Open Source Computer Vision Library
+arch=('i686' 'x86_64')
+license=('BSD')
+url=http://opencv.org/;
+depends=('jasper' 'gstreamer0.10-base' 'openexr=1.7.0'
+ 'gtk2' 'xine-lib' 'libdc1394' 'v4l-utils' 'ilmbase=1.0.3')
+makedepends=('cmake' 'python2-numpy' 'eigen2')

[arch-commits] Commit in transcode/repos (18 files)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:42:25
  Author: eric
Revision: 169759

db-move: moved transcode from [testing] to [extra] (i686, x86_64)

Added:
  transcode/repos/extra-i686/PKGBUILD
(from rev 169738, transcode/repos/testing-i686/PKGBUILD)
  transcode/repos/extra-i686/ffmpeg-0.11.patch
(from rev 169738, transcode/repos/testing-i686/ffmpeg-0.11.patch)
  transcode/repos/extra-i686/subtitleripper-0.3.4-linkingorder.patch
(from rev 169738, 
transcode/repos/testing-i686/subtitleripper-0.3.4-linkingorder.patch)
  transcode/repos/extra-i686/subtitleripper-0.3.4-respect-ldflags.patch
(from rev 169738, 
transcode/repos/testing-i686/subtitleripper-0.3.4-respect-ldflags.patch)
  transcode/repos/extra-x86_64/PKGBUILD
(from rev 169738, transcode/repos/testing-x86_64/PKGBUILD)
  transcode/repos/extra-x86_64/ffmpeg-0.11.patch
(from rev 169738, transcode/repos/testing-x86_64/ffmpeg-0.11.patch)
  transcode/repos/extra-x86_64/subtitleripper-0.3.4-linkingorder.patch
(from rev 169738, 
transcode/repos/testing-x86_64/subtitleripper-0.3.4-linkingorder.patch)
  transcode/repos/extra-x86_64/subtitleripper-0.3.4-respect-ldflags.patch
(from rev 169738, 
transcode/repos/testing-x86_64/subtitleripper-0.3.4-respect-ldflags.patch)
Deleted:
  transcode/repos/extra-i686/PKGBUILD
  transcode/repos/extra-i686/ffmpeg-0.11.patch
  transcode/repos/extra-i686/subtitleripper-0.3.4-linkingorder.patch
  transcode/repos/extra-i686/subtitleripper-0.3.4-respect-ldflags.patch
  transcode/repos/extra-x86_64/PKGBUILD
  transcode/repos/extra-x86_64/ffmpeg-0.11.patch
  transcode/repos/extra-x86_64/subtitleripper-0.3.4-linkingorder.patch
  transcode/repos/extra-x86_64/subtitleripper-0.3.4-respect-ldflags.patch
  transcode/repos/testing-i686/
  transcode/repos/testing-x86_64/

-+
 extra-i686/PKGBUILD |  122 +++---
 extra-i686/ffmpeg-0.11.patch|  271 +++---
 extra-i686/subtitleripper-0.3.4-linkingorder.patch  |   56 +-
 extra-i686/subtitleripper-0.3.4-respect-ldflags.patch   |   56 +-
 extra-x86_64/PKGBUILD   |  122 +++---
 extra-x86_64/ffmpeg-0.11.patch  |  271 +++---
 extra-x86_64/subtitleripper-0.3.4-linkingorder.patch|   56 +-
 extra-x86_64/subtitleripper-0.3.4-respect-ldflags.patch |   56 +-
 8 files changed, 516 insertions(+), 494 deletions(-)

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


[arch-commits] Commit in xine-lib/repos (6 files)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:42:28
  Author: eric
Revision: 169760

db-move: moved xine-lib from [testing] to [extra] (i686, x86_64)

Added:
  xine-lib/repos/extra-i686/PKGBUILD
(from rev 169738, xine-lib/repos/testing-i686/PKGBUILD)
  xine-lib/repos/extra-x86_64/PKGBUILD
(from rev 169738, xine-lib/repos/testing-x86_64/PKGBUILD)
Deleted:
  xine-lib/repos/extra-i686/PKGBUILD
  xine-lib/repos/extra-x86_64/PKGBUILD
  xine-lib/repos/testing-i686/
  xine-lib/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |   90 
 extra-x86_64/PKGBUILD |   90 
 2 files changed, 90 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:42:25 UTC (rev 169759)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:28 UTC (rev 169760)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=xine-lib
-pkgver=1.2.2
-pkgrel=2
-pkgdesc=A multimedia playback engine
-arch=('i686' 'x86_64')
-url=http://www.xine-project.org;
-license=('LGPL' 'GPL')
-depends=('libxvmc' 'ffmpeg' 'libxinerama')
-makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
- 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
- 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
-optdepends=('imagemagick: for using the imagemagick plugin' \
-'jack: for using the jack plugin' \
-'vcdimager: for using the vcd plugin' \
-'glu: for using the opengl plugin' \
-'wavpack: for using the wavpack plugin' \
-'faad2: for using the faad plugin' \
-'libmng: for using the mng plugin' \
-'aalib: for using the aalib plugin' \
-'libmodplug: for using the modplug plugin' \
-'libdca: for using the dca plugin' \
-'a52dec: for using the a52 plugin' \
-'libmad: for using the mp3 plugin' \
-'libmpcdec: for using the musepack plugin' \
-'libcaca: for using the caca plugin' \
-'libbluray: for using the bluray plugin' \
-'gnome-vfs: for using the gnome-vfs plugin' \
-'libvdpau: for using the VDPAU plugin')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}

Copied: xine-lib/repos/extra-i686/PKGBUILD (from rev 169738, 
xine-lib/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:42:28 UTC (rev 169760)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Eric Bélanger e...@archlinux.org
+
+pkgname=xine-lib
+pkgver=1.2.2
+pkgrel=3
+pkgdesc=A multimedia playback engine
+arch=('i686' 'x86_64')
+url=http://www.xine-project.org;
+license=('LGPL' 'GPL')
+depends=('libxvmc' 'ffmpeg' 'libxinerama')
+makedepends=('wavpack' 'faad2' 'libmng' 'imagemagick' 'mesa' 'libmodplug'
+ 'vcdimager' 'jack' 'aalib' 'libdca' 'a52dec' 'libmad' 
+ 'libmpcdec' 'libcaca' 'libbluray' 'gnome-vfs' 'libvdpau' 'glu')
+optdepends=('imagemagick: for using the imagemagick plugin' \
+'jack: for using the jack plugin' \
+'vcdimager: for using the vcd plugin' \
+'glu: for using the opengl plugin' \
+'wavpack: for using the wavpack plugin' \
+'faad2: for using the faad plugin' \
+'libmng: for using the mng plugin' \
+'aalib: for using the aalib plugin' \
+'libmodplug: for using the modplug plugin' \
+'libdca: for using the dca plugin' \
+'a52dec: for using the a52 plugin' \
+'libmad: for using the mp3 plugin' \
+'libmpcdec: for using the musepack plugin' \
+'libcaca: for using the caca plugin' \
+'libbluray: for using the bluray plugin' \
+'gnome-vfs: for using the gnome-vfs plugin' \
+'libvdpau: for using the VDPAU plugin')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/xine/${pkgname}-${pkgver}.tar.xz)
+sha1sums=('a349cbb0b72256bb262377796a022dcf63829b4c')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-wavpack --enable-vdpau 
--disable-optimizations
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   

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

2012-10-27 Thread Stéphane Gaudreault
Date: Saturday, October 27, 2012 @ 20:53:09
  Author: stephane
Revision: 169761

upgpkg: pylint 0.26.0-2

Add dependency on python2-distribute (fix FS#32255)

Modified:
  pylint/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-10-27 23:42:28 UTC (rev 169760)
+++ PKGBUILD2012-10-28 00:53:09 UTC (rev 169761)
@@ -4,13 +4,12 @@
 
 pkgname=pylint
 pkgver=0.26.0
-pkgrel=1
+pkgrel=2
 pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
 arch=('any')
 url=http://www.logilab.org/project/pylint;
 license=('GPL')
-depends=('python2-logilab-astng' 'python2')
-makedepends=('python2-distribute')
+depends=('python2-logilab-astng' 'python2' 'python2-distribute')
 optdepends=('tk: Pylint GUI')
 
source=(http://download.logilab.org/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
 sha1sums=('5dcc07d622b4ff7d5751523fe0161989e463ffe6')



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

2012-10-27 Thread Stéphane Gaudreault
Date: Saturday, October 27, 2012 @ 20:53:22
  Author: stephane
Revision: 169762

archrelease: copy trunk to extra-any

Added:
  pylint/repos/extra-any/PKGBUILD
(from rev 169761, pylint/trunk/PKGBUILD)
Deleted:
  pylint/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   67 ++---
 1 file changed, 33 insertions(+), 34 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-28 00:53:09 UTC (rev 169761)
+++ PKGBUILD2012-10-28 00:53:22 UTC (rev 169762)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Stéphane Gaudreault steph...@archlinux.org
-# Contributor: Alexander Fehr pizzapunk gmail com
-
-pkgname=pylint
-pkgver=0.26.0
-pkgrel=1
-pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
-arch=('any')
-url=http://www.logilab.org/project/pylint;
-license=('GPL')
-depends=('python2-logilab-astng' 'python2')
-makedepends=('python2-distribute')
-optdepends=('tk: Pylint GUI')
-source=(http://download.logilab.org/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-sha1sums=('5dcc07d622b4ff7d5751523fe0161989e463ffe6')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  sed -i s|/usr/bin/env python|/usr/bin/env python2| epylint.py
-
-  python2 setup.py build
-}
-
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  python2 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
-
-  install -d ${pkgdir}/usr/share/man/man1
-  install -m644 man/* ${pkgdir}/usr/share/man/man1
-}

Copied: pylint/repos/extra-any/PKGBUILD (from rev 169761, pylint/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-10-28 00:53:22 UTC (rev 169762)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault steph...@archlinux.org
+# Contributor: Alexander Fehr pizzapunk gmail com
+
+pkgname=pylint
+pkgver=0.26.0
+pkgrel=2
+pkgdesc=Analyzes Python code looking for bugs and signs of poor quality
+arch=('any')
+url=http://www.logilab.org/project/pylint;
+license=('GPL')
+depends=('python2-logilab-astng' 'python2' 'python2-distribute')
+optdepends=('tk: Pylint GUI')
+source=(http://download.logilab.org/pub/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha1sums=('5dcc07d622b4ff7d5751523fe0161989e463ffe6')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  sed -i s|/usr/bin/env python|/usr/bin/env python2| epylint.py
+
+  python2 setup.py build
+}
+
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  python2 setup.py install --prefix=/usr --root=${pkgdir} --skip-build 
--optimize=1
+
+  install -d ${pkgdir}/usr/share/man/man1
+  install -m644 man/* ${pkgdir}/usr/share/man/man1
+}



[arch-commits] Commit in i8kmon/trunk (PKGBUILD i8kmon.service)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 21:10:52
  Author: eric
Revision: 169763

upgpkg: i8kmon 1.33-5

Fix systemd unit file (close FS#30964), Update url (close FS#27330)

Modified:
  i8kmon/trunk/PKGBUILD
  i8kmon/trunk/i8kmon.service

+
 PKGBUILD   |6 +++---
 i8kmon.service |2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-10-28 00:53:22 UTC (rev 169762)
+++ PKGBUILD2012-10-28 01:10:52 UTC (rev 169763)
@@ -4,10 +4,10 @@
 
 pkgname=i8kmon
 pkgver=1.33
-pkgrel=4
+pkgrel=5
 pkgdesc=Tk-based daemon for i8kutils and Dell Inspiron/Latitude notebooks
 arch=('any')
-url=http://people.debian.org/~dz/i8k/;
+url=http://packages.qa.debian.org/i/i8kutils.html;
 license=('GPL2')
 depends=('i8kutils' 'tk')
 backup=('etc/i8kutils/i8kmon.conf' 'etc/conf.d/i8kmon')
@@ -16,7 +16,7 @@
 sha1sums=('2701697dfe9c0e351cb412badd14fbf8191838c3'
   'a7ead36e31d27d85a257242847e316ea85a2426f'
   'a3a38c19f1af4bfc59ac8c88cadfa2e6ee185a4c'
-  '9bac507e1ea80a240b01f07dded8a9a9fa406789')
+  '5c20f5241de7e60b46117269f4e867b08734cdc8')
 
 build() {
   cd $srcdir/i8kutils-$pkgver

Modified: i8kmon.service
===
--- i8kmon.service  2012-10-28 00:53:22 UTC (rev 169762)
+++ i8kmon.service  2012-10-28 01:10:52 UTC (rev 169763)
@@ -3,7 +3,7 @@
 ConditionPathExists=/proc/i8k
 
 [Service]
-ExecStart=/usr/bin/i8kmon -nd
+ExecStart=/usr/bin/i8kmon -d
 
 [Install]
 WantedBy=multi-user.target



[arch-commits] Commit in i8kmon/repos/extra-any (8 files)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 21:11:11
  Author: eric
Revision: 169764

archrelease: copy trunk to extra-any

Added:
  i8kmon/repos/extra-any/PKGBUILD
(from rev 169763, i8kmon/trunk/PKGBUILD)
  i8kmon/repos/extra-any/i8kmon.conf.d
(from rev 169763, i8kmon/trunk/i8kmon.conf.d)
  i8kmon/repos/extra-any/i8kmon.daemon
(from rev 169763, i8kmon/trunk/i8kmon.daemon)
  i8kmon/repos/extra-any/i8kmon.service
(from rev 169763, i8kmon/trunk/i8kmon.service)
Deleted:
  i8kmon/repos/extra-any/PKGBUILD
  i8kmon/repos/extra-any/i8kmon.conf.d
  i8kmon/repos/extra-any/i8kmon.daemon
  i8kmon/repos/extra-any/i8kmon.service

+
 PKGBUILD   |   84 +++
 i8kmon.conf.d  |   10 +++---
 i8kmon.daemon  |   78 +--
 i8kmon.service |   18 +--
 4 files changed, 95 insertions(+), 95 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-28 01:10:52 UTC (rev 169763)
+++ PKGBUILD2012-10-28 01:11:11 UTC (rev 169764)
@@ -1,42 +0,0 @@
-# $Id$
-# Contributor: Eric Johnson e...@coding-zone.com
-# Maintainer: Thayer Williams tha...@archlinux.org
-
-pkgname=i8kmon
-pkgver=1.33
-pkgrel=4
-pkgdesc=Tk-based daemon for i8kutils and Dell Inspiron/Latitude notebooks
-arch=('any')
-url=http://people.debian.org/~dz/i8k/;
-license=('GPL2')
-depends=('i8kutils' 'tk')
-backup=('etc/i8kutils/i8kmon.conf' 'etc/conf.d/i8kmon')
-source=(ftp://ftp.archlinux.org/other/i8kutils/i8kutils_$pkgver.tar.gz \
-i8kmon.daemon i8kmon.conf.d i8kmon.service)
-sha1sums=('2701697dfe9c0e351cb412badd14fbf8191838c3'
-  'a7ead36e31d27d85a257242847e316ea85a2426f'
-  'a3a38c19f1af4bfc59ac8c88cadfa2e6ee185a4c'
-  '9bac507e1ea80a240b01f07dded8a9a9fa406789')
-
-build() {
-  cd $srcdir/i8kutils-$pkgver
-
-  # conform to Arch Linux guidelines
-  sed -i 's|/etc/i8kmon|/etc/i8kutils/i8kmon.conf|g' i8kmon.1
-  sed -i 's|/etc/i8kmon.conf|/etc/i8kutils/i8kmon.conf|g' i8kmon
-}
-
-package() {
-  cd $srcdir/i8kutils-$pkgver
-
-  # no configure script, and Makefile has /usr hardcoded
-  install -D -m755 i8kmon $pkgdir/usr/bin/i8kmon
-  install -D -m644 i8kmon.conf $pkgdir/etc/i8kutils/i8kmon.conf
-  install -D -m644 i8kmon.1 $pkgdir/usr/share/man/man1/i8kmon.1
-
-  # install daemon script.
-  install -D -m755 ../i8kmon.daemon $pkgdir/etc/rc.d/i8kmon
-  install -D -m644 ../i8kmon.conf.d $pkgdir/etc/conf.d/i8kmon
-
-  install -D -m644 ../i8kmon.service 
$pkgdir/usr/lib/systemd/system/i8kmon.service
-}

Copied: i8kmon/repos/extra-any/PKGBUILD (from rev 169763, i8kmon/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-10-28 01:11:11 UTC (rev 169764)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: Eric Johnson e...@coding-zone.com
+# Maintainer: Thayer Williams tha...@archlinux.org
+
+pkgname=i8kmon
+pkgver=1.33
+pkgrel=5
+pkgdesc=Tk-based daemon for i8kutils and Dell Inspiron/Latitude notebooks
+arch=('any')
+url=http://packages.qa.debian.org/i/i8kutils.html;
+license=('GPL2')
+depends=('i8kutils' 'tk')
+backup=('etc/i8kutils/i8kmon.conf' 'etc/conf.d/i8kmon')
+source=(ftp://ftp.archlinux.org/other/i8kutils/i8kutils_$pkgver.tar.gz \
+i8kmon.daemon i8kmon.conf.d i8kmon.service)
+sha1sums=('2701697dfe9c0e351cb412badd14fbf8191838c3'
+  'a7ead36e31d27d85a257242847e316ea85a2426f'
+  'a3a38c19f1af4bfc59ac8c88cadfa2e6ee185a4c'
+  '5c20f5241de7e60b46117269f4e867b08734cdc8')
+
+build() {
+  cd $srcdir/i8kutils-$pkgver
+
+  # conform to Arch Linux guidelines
+  sed -i 's|/etc/i8kmon|/etc/i8kutils/i8kmon.conf|g' i8kmon.1
+  sed -i 's|/etc/i8kmon.conf|/etc/i8kutils/i8kmon.conf|g' i8kmon
+}
+
+package() {
+  cd $srcdir/i8kutils-$pkgver
+
+  # no configure script, and Makefile has /usr hardcoded
+  install -D -m755 i8kmon $pkgdir/usr/bin/i8kmon
+  install -D -m644 i8kmon.conf $pkgdir/etc/i8kutils/i8kmon.conf
+  install -D -m644 i8kmon.1 $pkgdir/usr/share/man/man1/i8kmon.1
+
+  # install daemon script.
+  install -D -m755 ../i8kmon.daemon $pkgdir/etc/rc.d/i8kmon
+  install -D -m644 ../i8kmon.conf.d $pkgdir/etc/conf.d/i8kmon
+
+  install -D -m644 ../i8kmon.service 
$pkgdir/usr/lib/systemd/system/i8kmon.service
+}

Deleted: i8kmon.conf.d
===
--- i8kmon.conf.d   2012-10-28 01:10:52 UTC (rev 169763)
+++ i8kmon.conf.d   2012-10-28 01:11:11 UTC (rev 169764)
@@ -1,5 +0,0 @@
-#
-# Arguments to be passed to the i8kmon daemon
-#
-
-I8KMON_ARGS=

Copied: i8kmon/repos/extra-any/i8kmon.conf.d (from rev 169763, 
i8kmon/trunk/i8kmon.conf.d)
===
--- i8kmon.conf.d   (rev 0)
+++ i8kmon.conf.d   2012-10-28 01:11:11 UTC (rev 169764)
@@ -0,0 +1,5 @@
+#
+# Arguments to be passed to the i8kmon 

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

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 22:02:45
  Author: eric
Revision: 169765

upgpkg: slim-themes 1.2.3-6

Add Arch Linux theme (close FS#31652)

Modified:
  slim-themes/trunk/PKGBUILD

--+
 PKGBUILD |   44 +++-
 1 file changed, 27 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-10-28 01:11:11 UTC (rev 169764)
+++ PKGBUILD2012-10-28 02:02:45 UTC (rev 169765)
@@ -4,7 +4,7 @@
 
 pkgname=slim-themes
 pkgver=1.2.3
-pkgrel=5
+pkgrel=6
 pkgdesc=Themes Pack for Simple Login Manager
 arch=('any')
 url='http://slim.berlios.de'
@@ -22,31 +22,41 @@
 http://download.berlios.de/slim/slim-subway.tar.gz \
 http://download.berlios.de/slim/slim-wave.tar.gz \
 http://download.berlios.de/slim/slim-zenwalk.tar.gz \
+http://download.berlios.de/slim/slim-archlinux-simple.tar.gz \
 http://download.berlios.de/slim/slim-debian-moreblue.tar.bz2)
-
-md5sums=('fd1295d3a260849790dc17081da4a34f' 'c0cef9e7b95bdf2df3fb303d155f8476'
- '2981627a5822a535f3ebd0e21dba9f76' '34696aef39fad7092c80ccf7a38886a5'
- '6fe38013c6eed67dead507616667ae9a' '6e846e8adafa70a7bd0e22d5bd06dc5f'
- '631a00eb27c09b0daa50b88bd9606d07' '337876e05b2bdf4bd657d114464ad46a'
- 'fde18fb892bccc383c93fb7ed07fbe84' '8417022e369be012f1b7a4ee04edf0f9'
- 'c727aab888dde774acc04403c84b5b3b' '7a0bd7a0736794e638668769b9c4c745'
+md5sums=('fd1295d3a260849790dc17081da4a34f'
+ 'c0cef9e7b95bdf2df3fb303d155f8476'
+ '2981627a5822a535f3ebd0e21dba9f76'
+ '34696aef39fad7092c80ccf7a38886a5'
+ '6fe38013c6eed67dead507616667ae9a'
+ '6e846e8adafa70a7bd0e22d5bd06dc5f'
+ '631a00eb27c09b0daa50b88bd9606d07'
+ '337876e05b2bdf4bd657d114464ad46a'
+ 'fde18fb892bccc383c93fb7ed07fbe84'
+ '8417022e369be012f1b7a4ee04edf0f9'
+ 'c727aab888dde774acc04403c84b5b3b'
+ '7a0bd7a0736794e638668769b9c4c745'
+ '7c7aaa255561444a4ae3e9f1dfb4be5d'
  '5f3818e01b0593d0e576fcd7e2c6bafa')
 
 package() {
-  cd ${srcdir}
+  cd ${srcdir}
 
-  install -dm755 ${pkgdir}/usr/share/slim/themes
+  install -dm755 ${pkgdir}/usr/share/slim/themes
 
   for t in capernoited debian-moreblue fingerprint flat flower2 isolated lake \
lotus-midnight lotus-sage mindlock parallel-dimensions previous \
rainbow rear-window scotland-road subway wave; do
-install -dm755 ${pkgdir}/usr/share/slim/themes/$t
-install -m644 $t/* ${pkgdir}/usr/share/slim/themes/$t
+install -dm755 ${pkgdir}/usr/share/slim/themes/$t
+install -m644 $t/* ${pkgdir}/usr/share/slim/themes/$t
   done
-  
-  install -dm755 ${pkgdir}/usr/share/slim/themes/lunar
-  install -m644 slim-lunar-0.4/* ${pkgdir}/usr/share/slim/themes/lunar
 
-  install -dm755 ${pkgdir}/usr/share/slim/themes/zenwalk
-  install -m644 Zenwalk/* ${pkgdir}/usr/share/slim/themes/zenwalk
+  install -dm755 ${pkgdir}/usr/share/slim/themes/archlinux
+  install -m644 slim-archlinux-simple/* 
${pkgdir}/usr/share/slim/themes/archlinux
+
+  install -dm755 ${pkgdir}/usr/share/slim/themes/lunar
+  install -m644 slim-lunar-0.4/* ${pkgdir}/usr/share/slim/themes/lunar
+
+  install -dm755 ${pkgdir}/usr/share/slim/themes/zenwalk
+  install -m644 Zenwalk/* ${pkgdir}/usr/share/slim/themes/zenwalk
 }



[arch-commits] Commit in slim-themes/repos/extra-any (PKGBUILD PKGBUILD)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 22:03:08
  Author: eric
Revision: 169766

archrelease: copy trunk to extra-any

Added:
  slim-themes/repos/extra-any/PKGBUILD
(from rev 169765, slim-themes/trunk/PKGBUILD)
Deleted:
  slim-themes/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  114 +
 1 file changed, 62 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-10-28 02:02:45 UTC (rev 169765)
+++ PKGBUILD2012-10-28 02:03:08 UTC (rev 169766)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer:
-# Contributor : Aaron Griffin aa...@archlinux.org
-
-pkgname=slim-themes
-pkgver=1.2.3
-pkgrel=5
-pkgdesc=Themes Pack for Simple Login Manager
-arch=('any')
-url='http://slim.berlios.de'
-depends=('slim')
-license=('GPL')
-source=(http://download.berlios.de/slim/slim-$pkgver-themepack1a.tar.gz \
-http://download.berlios.de/slim/slim-lake.tar.gz \
-http://download.berlios.de/slim/slim-fingerprint.tar.gz \
-http://download.berlios.de/slim/slim-flat.tar.gz \
-http://download.berlios.de/slim/slim-lunar-0.4.tar.bz2 \
-http://download.berlios.de/slim/slim-previous.tar.gz \
-http://download.berlios.de/slim/slim-rainbow.tar.gz \
-http://download.berlios.de/slim/slim-rear-window.tar.gz \
-http://download.berlios.de/slim/slim-scotland-road.tar.gz \
-http://download.berlios.de/slim/slim-subway.tar.gz \
-http://download.berlios.de/slim/slim-wave.tar.gz \
-http://download.berlios.de/slim/slim-zenwalk.tar.gz \
-http://download.berlios.de/slim/slim-debian-moreblue.tar.bz2)
-
-md5sums=('fd1295d3a260849790dc17081da4a34f' 'c0cef9e7b95bdf2df3fb303d155f8476'
- '2981627a5822a535f3ebd0e21dba9f76' '34696aef39fad7092c80ccf7a38886a5'
- '6fe38013c6eed67dead507616667ae9a' '6e846e8adafa70a7bd0e22d5bd06dc5f'
- '631a00eb27c09b0daa50b88bd9606d07' '337876e05b2bdf4bd657d114464ad46a'
- 'fde18fb892bccc383c93fb7ed07fbe84' '8417022e369be012f1b7a4ee04edf0f9'
- 'c727aab888dde774acc04403c84b5b3b' '7a0bd7a0736794e638668769b9c4c745'
- '5f3818e01b0593d0e576fcd7e2c6bafa')
-
-package() {
-  cd ${srcdir}
-
-  install -dm755 ${pkgdir}/usr/share/slim/themes
-
-  for t in capernoited debian-moreblue fingerprint flat flower2 isolated lake \
-   lotus-midnight lotus-sage mindlock parallel-dimensions previous \
-   rainbow rear-window scotland-road subway wave; do
-install -dm755 ${pkgdir}/usr/share/slim/themes/$t
-install -m644 $t/* ${pkgdir}/usr/share/slim/themes/$t
-  done
-  
-  install -dm755 ${pkgdir}/usr/share/slim/themes/lunar
-  install -m644 slim-lunar-0.4/* ${pkgdir}/usr/share/slim/themes/lunar
-
-  install -dm755 ${pkgdir}/usr/share/slim/themes/zenwalk
-  install -m644 Zenwalk/* ${pkgdir}/usr/share/slim/themes/zenwalk
-}

Copied: slim-themes/repos/extra-any/PKGBUILD (from rev 169765, 
slim-themes/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2012-10-28 02:03:08 UTC (rev 169766)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer:
+# Contributor : Aaron Griffin aa...@archlinux.org
+
+pkgname=slim-themes
+pkgver=1.2.3
+pkgrel=6
+pkgdesc=Themes Pack for Simple Login Manager
+arch=('any')
+url='http://slim.berlios.de'
+depends=('slim')
+license=('GPL')
+source=(http://download.berlios.de/slim/slim-$pkgver-themepack1a.tar.gz \
+http://download.berlios.de/slim/slim-lake.tar.gz \
+http://download.berlios.de/slim/slim-fingerprint.tar.gz \
+http://download.berlios.de/slim/slim-flat.tar.gz \
+http://download.berlios.de/slim/slim-lunar-0.4.tar.bz2 \
+http://download.berlios.de/slim/slim-previous.tar.gz \
+http://download.berlios.de/slim/slim-rainbow.tar.gz \
+http://download.berlios.de/slim/slim-rear-window.tar.gz \
+http://download.berlios.de/slim/slim-scotland-road.tar.gz \
+http://download.berlios.de/slim/slim-subway.tar.gz \
+http://download.berlios.de/slim/slim-wave.tar.gz \
+http://download.berlios.de/slim/slim-zenwalk.tar.gz \
+http://download.berlios.de/slim/slim-archlinux-simple.tar.gz \
+http://download.berlios.de/slim/slim-debian-moreblue.tar.bz2)
+md5sums=('fd1295d3a260849790dc17081da4a34f'
+ 'c0cef9e7b95bdf2df3fb303d155f8476'
+ '2981627a5822a535f3ebd0e21dba9f76'
+ '34696aef39fad7092c80ccf7a38886a5'
+ '6fe38013c6eed67dead507616667ae9a'
+ '6e846e8adafa70a7bd0e22d5bd06dc5f'
+ '631a00eb27c09b0daa50b88bd9606d07'
+ '337876e05b2bdf4bd657d114464ad46a'
+ 'fde18fb892bccc383c93fb7ed07fbe84'
+ '8417022e369be012f1b7a4ee04edf0f9'
+ 'c727aab888dde774acc04403c84b5b3b'
+ '7a0bd7a0736794e638668769b9c4c745'
+ '7c7aaa255561444a4ae3e9f1dfb4be5d'
+