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

2012-09-23 Thread Andrea Scarpino
Date: Sunday, September 23, 2012 @ 03:59:19
  Author: andrea
Revision: 166948

db-remove: skanlite removed by andrea

Deleted:
  skanlite/repos/extra-i686/



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

2012-09-23 Thread Andrea Scarpino
Date: Sunday, September 23, 2012 @ 04:00:57
  Author: andrea
Revision: 166949

db-remove: skanlite removed by andrea

Deleted:
  skanlite/repos/extra-x86_64/



[arch-commits] Commit in (skanlite)

2012-09-23 Thread Andrea Scarpino
Date: Sunday, September 23, 2012 @ 04:02:47
  Author: andrea
Revision: 166950

Moved to AUR

Deleted:
  skanlite/



[arch-commits] Commit in qt/trunk (PKGBUILD undo-fix-jit-crash-on-x86_64.patch)

2012-09-23 Thread Andrea Scarpino
Date: Sunday, September 23, 2012 @ 05:07:35
  Author: andrea
Revision: 166951

upgpkg: qt 4.8.3-3

Fix regression

Added:
  qt/trunk/undo-fix-jit-crash-on-x86_64.patch
Modified:
  qt/trunk/PKGBUILD

+
 PKGBUILD   |   13 +
 undo-fix-jit-crash-on-x86_64.patch |  280 +++
 2 files changed, 289 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-09-23 08:02:47 UTC (rev 166950)
+++ PKGBUILD2012-09-23 09:07:35 UTC (rev 166951)
@@ -5,7 +5,7 @@
 pkgbase=qt
 pkgname=('qt' 'qt-private-headers')
 pkgver=4.8.3
-pkgrel=2
+pkgrel=3
 arch=('i686' 'x86_64')
 url='http://qt-project.org/'
 license=('GPL3' 'LGPL')
@@ -19,14 +19,16 @@
 'assistant.desktop' 'designer.desktop' 'linguist.desktop'
 'qtconfig.desktop'
 'improve-cups-support.patch'
-'fix-crash-in-assistant.patch')
+'fix-crash-in-assistant.patch'
+'undo-fix-jit-crash-on-x86_64.patch')
 md5sums=('a663b6c875f8d7caa8ac9c30e4a4ec3b'
  'fc211414130ab2764132e7370f8e5caa'
  '85179f5e0437514f8639957e1d8baf62'
  'f11852b97583610f3dbb669ebc3e21bc'
  '6b771c8a81dd90b45e8a79afa0e5bbfd'
  'c439c7731c25387352d8453ca7574971'
- '57590084078b6379f0501f7728b02ae2')
+ '57590084078b6379f0501f7728b02ae2'
+ '094e5a4e30e52423c77daa4a9c782df5')
 
 build() {
   cd ${srcdir}/${_pkgfqn}
@@ -34,8 +36,11 @@
   # (FS#28381) (KDEBUG#180051)
   patch -p1 -i ${srcdir}/improve-cups-support.patch
 
-  # (FS#)
+  # (FS#29469)
   patch -p1 -i ${srcdir}/fix-crash-in-assistant.patch
+
+  # (FS#31654)
+  patch -Rp1 -i ${srcdir}/undo-fix-jit-crash-on-x86_64.patch
   
   export QT4DIR=${srcdir}/${_pkgfqn}
   export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}

Added: undo-fix-jit-crash-on-x86_64.patch
===
--- undo-fix-jit-crash-on-x86_64.patch  (rev 0)
+++ undo-fix-jit-crash-on-x86_64.patch  2012-09-23 09:07:35 UTC (rev 166951)
@@ -0,0 +1,280 @@
+Description: Fix JIT crash on x86-64 (avoid 32-bit branch offset overflow)
+ .
+ Cherry-picked from webkit commit
+ a5b3261a8c4386b4e14ce40a34c7fc933a5f7001
+Origin: commit ada98493bbfbd9af0d0b593017e29d39bcd3495e
+Author: Kent Hansen kent.han...@nokia.com
+Forwarded: not-needed
+Applied-Upstream: yes
+Reviewed-by: Simon Hausmann simon.hausm...@nokia.com
+Reviewed-by: Kent Hansen kent.han...@nokia.com
+---
+ .../javascriptcore/JavaScriptCore/ChangeLog|   27 +
+ .../JavaScriptCore/JavaScriptCore.pri  |1 +
+ .../JavaScriptCore/jit/ExecutableAllocator.cpp |   21 +
+ .../jit/ExecutableAllocatorFixedVMPool.cpp |   31 +---
+ .../jit/ExecutableAllocatorPosix.cpp   |   29 ++
+ .../jit/ExecutableAllocatorSymbian.cpp |2 +-
+ .../JavaScriptCore/jit/ExecutableAllocatorWin.cpp  |2 +-
+ .../javascriptcore/JavaScriptCore/wtf/Platform.h   |   10 +++
+ 8 files changed, 84 insertions(+), 39 deletions(-)
+
+diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/ChangeLog 
b/src/3rdparty/javascriptcore/JavaScriptCore/ChangeLog
+index 9cbf0c1..5ab23e6 100644
+--- a/src/3rdparty/javascriptcore/JavaScriptCore/ChangeLog
 b/src/3rdparty/javascriptcore/JavaScriptCore/ChangeLog
+@@ -1,3 +1,30 @@
++2010-07-08  Gavin Barraclough  barraclo...@apple.com
++
++Reviewed by Sam Weinig.
++
++https://bugs.webkit.org/show_bug.cgi?id=41641
++
++Update compile flags to allow use of ExecutableAllocatorFixedVMPool 
on platforms
++other than x86-64 (this may be useful on 32-bit platforms, too).
++
++Simplify ifdefs by dividing into thwo broad allocation strategies
++(ENABLE_EXECUTABLE_ALLOCATOR_FIXED  
ENABLE_EXECUTABLE_ALLOCATOR_DEMAND).
++
++Rename constant used in the code to have names descriptive of their 
purpose,
++rather than their specific value on a given platform.
++
++* jit/ExecutableAllocator.cpp:
++(JSC::ExecutableAllocator::reprotectRegion):
++(JSC::ExecutableAllocator::cacheFlush):
++* jit/ExecutableAllocatorFixedVMPool.cpp:
++(JSC::FixedVMPoolAllocator::FixedVMPoolAllocator):
++(JSC::FixedVMPoolAllocator::free):
++(JSC::ExecutablePool::systemAlloc):
++* jit/ExecutableAllocatorPosix.cpp:
++* jit/ExecutableAllocatorSymbian.cpp:
++* jit/ExecutableAllocatorWin.cpp:
++* wtf/Platform.h:
++
+ 2010-08-24  Oliver Hunt  oli...@apple.com
+ 
+ Reviewed by Geoff Garen.
+diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/JavaScriptCore.pri 
b/src/3rdparty/javascriptcore/JavaScriptCore/JavaScriptCore.pri
+index b061321..847f69c 100644
+--- a/src/3rdparty/javascriptcore/JavaScriptCore/JavaScriptCore.pri
 

[arch-commits] Commit in qt/repos/extra-i686 (17 files)

2012-09-23 Thread Andrea Scarpino
Date: Sunday, September 23, 2012 @ 05:13:32
  Author: andrea
Revision: 166952

archrelease: copy trunk to extra-i686

Added:
  qt/repos/extra-i686/PKGBUILD
(from rev 166951, qt/trunk/PKGBUILD)
  qt/repos/extra-i686/assistant.desktop
(from rev 166951, qt/trunk/assistant.desktop)
  qt/repos/extra-i686/designer.desktop
(from rev 166951, qt/trunk/designer.desktop)
  qt/repos/extra-i686/fix-crash-in-assistant.patch
(from rev 166951, qt/trunk/fix-crash-in-assistant.patch)
  qt/repos/extra-i686/improve-cups-support.patch
(from rev 166951, qt/trunk/improve-cups-support.patch)
  qt/repos/extra-i686/linguist.desktop
(from rev 166951, qt/trunk/linguist.desktop)
  qt/repos/extra-i686/qt.install
(from rev 166951, qt/trunk/qt.install)
  qt/repos/extra-i686/qtconfig.desktop
(from rev 166951, qt/trunk/qtconfig.desktop)
  qt/repos/extra-i686/undo-fix-jit-crash-on-x86_64.patch
(from rev 166951, qt/trunk/undo-fix-jit-crash-on-x86_64.patch)
Deleted:
  qt/repos/extra-i686/PKGBUILD
  qt/repos/extra-i686/assistant.desktop
  qt/repos/extra-i686/designer.desktop
  qt/repos/extra-i686/fix-crash-in-assistant.patch
  qt/repos/extra-i686/improve-cups-support.patch
  qt/repos/extra-i686/linguist.desktop
  qt/repos/extra-i686/qt.install
  qt/repos/extra-i686/qtconfig.desktop

+
 PKGBUILD   |  279 +-
 assistant.desktop  |   18 +-
 designer.desktop   |   22 +-
 fix-crash-in-assistant.patch   |   22 +-
 improve-cups-support.patch |  168 ++---
 linguist.desktop   |   20 +-
 qt.install |   24 +--
 qtconfig.desktop   |   20 +-
 undo-fix-jit-crash-on-x86_64.patch |  280 +++
 9 files changed, 569 insertions(+), 284 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-09-23 09:07:35 UTC (rev 166951)
+++ PKGBUILD2012-09-23 09:13:32 UTC (rev 166952)
@@ -1,137 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=qt
-pkgname=('qt' 'qt-private-headers')
-pkgver=4.8.3
-pkgrel=2
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL')
-makedepends=('libtiff' 'libpng' 'libmng' 'sqlite' 'ca-certificates' 'glib2' 
'dbus'
-'fontconfig' 'libgl' 'libsm' 'libxrandr' 'libxv' 'libxi' 'alsa-lib'
-'xdg-utils' 'hicolor-icon-theme' 'desktop-file-utils' 'mesa' 
'postgresql-libs'
-'mysql' 'unixodbc' 'cups' 'gtk2' 'libfbclient')
-options=('!libtool')
-_pkgfqn=${pkgbase}-everywhere-opensource-src-${pkgver}
-source=(http://releases.qt-project.org/qt4/source/${_pkgfqn}.tar.gz;
-'assistant.desktop' 'designer.desktop' 'linguist.desktop'
-'qtconfig.desktop'
-'improve-cups-support.patch'
-'fix-crash-in-assistant.patch')
-md5sums=('a663b6c875f8d7caa8ac9c30e4a4ec3b'
- 'fc211414130ab2764132e7370f8e5caa'
- '85179f5e0437514f8639957e1d8baf62'
- 'f11852b97583610f3dbb669ebc3e21bc'
- '6b771c8a81dd90b45e8a79afa0e5bbfd'
- 'c439c7731c25387352d8453ca7574971'
- '57590084078b6379f0501f7728b02ae2')
-
-build() {
-  cd ${srcdir}/${_pkgfqn}
-
-  # (FS#28381) (KDEBUG#180051)
-  patch -p1 -i ${srcdir}/improve-cups-support.patch
-
-  # (FS#)
-  patch -p1 -i ${srcdir}/fix-crash-in-assistant.patch
-  
-  export QT4DIR=${srcdir}/${_pkgfqn}
-  export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
-
-  sed -i s|-O2|${CXXFLAGS}| mkspecs/common/{g++,gcc}-base.conf
-  sed -i /^QMAKE_LFLAGS_RPATH/s| -Wl,-rpath,||g 
mkspecs/common/gcc-base-unix.conf
-  sed -i /^QMAKE_LFLAGS\s/s|+=|+= ${LDFLAGS}|g mkspecs/common/gcc-base.conf
-
-  ./configure -confirm-license -opensource \
--prefix /usr \
--docdir /usr/share/doc/qt \
--plugindir /usr/lib/qt/plugins \
--importdir /usr/lib/qt/imports \
--datadir /usr/share/qt \
--translationdir /usr/share/qt/translations \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--demosdir /usr/share/doc/qt/demos \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--no-phonon \
--no-phonon-backend \
--no-webkit \
--graphicssystem raster \
--openssl-linked \
--nomake demos \
--nomake examples \
--nomake docs \
--silent \
--no-rpath \
--optimized-qmake \
--reduce-relocations \
--dbus-linked \
--no-openvg
-  make
-}
-
-package_qt() {
-pkgdesc='A cross-platform application and UI framework'
-depends=('libtiff' 'libpng' 'libmng' 'sqlite' 'ca-certificates' 'glib2' 
'dbus'
-  'fontconfig' 'libgl' 'libsm' 'libxrandr' 'libxv' 'libxi' 'alsa-lib'
-  'xdg-utils' 'hicolor-icon-theme' 'desktop-file-utils')
-optdepends=('postgresql-libs: PostgreSQL driver'
-'libmysqlclient: MySQL driver'
-  

[arch-commits] Commit in qt/repos/extra-i686 (18 files)

2012-09-23 Thread Andrea Scarpino
Date: Sunday, September 23, 2012 @ 05:22:12
  Author: andrea
Revision: 166953

archrelease: copy trunk to extra-i686

Added:
  qt/repos/extra-i686/PKGBUILD
(from rev 166952, qt/trunk/PKGBUILD)
  qt/repos/extra-i686/assistant.desktop
(from rev 166952, qt/trunk/assistant.desktop)
  qt/repos/extra-i686/designer.desktop
(from rev 166952, qt/trunk/designer.desktop)
  qt/repos/extra-i686/fix-crash-in-assistant.patch
(from rev 166952, qt/trunk/fix-crash-in-assistant.patch)
  qt/repos/extra-i686/improve-cups-support.patch
(from rev 166952, qt/trunk/improve-cups-support.patch)
  qt/repos/extra-i686/linguist.desktop
(from rev 166952, qt/trunk/linguist.desktop)
  qt/repos/extra-i686/qt.install
(from rev 166952, qt/trunk/qt.install)
  qt/repos/extra-i686/qtconfig.desktop
(from rev 166952, qt/trunk/qtconfig.desktop)
  qt/repos/extra-i686/undo-fix-jit-crash-on-x86_64.patch
(from rev 166952, qt/trunk/undo-fix-jit-crash-on-x86_64.patch)
Deleted:
  qt/repos/extra-i686/PKGBUILD
  qt/repos/extra-i686/assistant.desktop
  qt/repos/extra-i686/designer.desktop
  qt/repos/extra-i686/fix-crash-in-assistant.patch
  qt/repos/extra-i686/improve-cups-support.patch
  qt/repos/extra-i686/linguist.desktop
  qt/repos/extra-i686/qt.install
  qt/repos/extra-i686/qtconfig.desktop
  qt/repos/extra-i686/undo-fix-jit-crash-on-x86_64.patch

+
 PKGBUILD   |  284 -
 assistant.desktop  |   18 -
 designer.desktop   |   22 -
 fix-crash-in-assistant.patch   |   22 -
 improve-cups-support.patch |  168 +-
 linguist.desktop   |   20 -
 qt.install |   24 -
 qtconfig.desktop   |   20 -
 undo-fix-jit-crash-on-x86_64.patch |  560 +--
 9 files changed, 569 insertions(+), 569 deletions(-)

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


[arch-commits] Commit in qt/repos/extra-x86_64 (17 files)

2012-09-23 Thread Andrea Scarpino
Date: Sunday, September 23, 2012 @ 05:22:55
  Author: andrea
Revision: 166954

archrelease: copy trunk to extra-x86_64

Added:
  qt/repos/extra-x86_64/PKGBUILD
(from rev 166953, qt/trunk/PKGBUILD)
  qt/repos/extra-x86_64/assistant.desktop
(from rev 166953, qt/trunk/assistant.desktop)
  qt/repos/extra-x86_64/designer.desktop
(from rev 166953, qt/trunk/designer.desktop)
  qt/repos/extra-x86_64/fix-crash-in-assistant.patch
(from rev 166953, qt/trunk/fix-crash-in-assistant.patch)
  qt/repos/extra-x86_64/improve-cups-support.patch
(from rev 166953, qt/trunk/improve-cups-support.patch)
  qt/repos/extra-x86_64/linguist.desktop
(from rev 166953, qt/trunk/linguist.desktop)
  qt/repos/extra-x86_64/qt.install
(from rev 166953, qt/trunk/qt.install)
  qt/repos/extra-x86_64/qtconfig.desktop
(from rev 166953, qt/trunk/qtconfig.desktop)
  qt/repos/extra-x86_64/undo-fix-jit-crash-on-x86_64.patch
(from rev 166953, qt/trunk/undo-fix-jit-crash-on-x86_64.patch)
Deleted:
  qt/repos/extra-x86_64/PKGBUILD
  qt/repos/extra-x86_64/assistant.desktop
  qt/repos/extra-x86_64/designer.desktop
  qt/repos/extra-x86_64/fix-crash-in-assistant.patch
  qt/repos/extra-x86_64/improve-cups-support.patch
  qt/repos/extra-x86_64/linguist.desktop
  qt/repos/extra-x86_64/qt.install
  qt/repos/extra-x86_64/qtconfig.desktop

+
 PKGBUILD   |  279 +-
 assistant.desktop  |   18 +-
 designer.desktop   |   22 +-
 fix-crash-in-assistant.patch   |   22 +-
 improve-cups-support.patch |  168 ++---
 linguist.desktop   |   20 +-
 qt.install |   24 +--
 qtconfig.desktop   |   20 +-
 undo-fix-jit-crash-on-x86_64.patch |  280 +++
 9 files changed, 569 insertions(+), 284 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2012-09-23 09:22:12 UTC (rev 166953)
+++ PKGBUILD2012-09-23 09:22:55 UTC (rev 166954)
@@ -1,137 +0,0 @@
-# $Id$
-# Maintainer: Andrea Scarpino and...@archlinux.org
-# Contributor: Pierre Schmitz pie...@archlinux.de
-
-pkgbase=qt
-pkgname=('qt' 'qt-private-headers')
-pkgver=4.8.3
-pkgrel=2
-arch=('i686' 'x86_64')
-url='http://qt-project.org/'
-license=('GPL3' 'LGPL')
-makedepends=('libtiff' 'libpng' 'libmng' 'sqlite' 'ca-certificates' 'glib2' 
'dbus'
-'fontconfig' 'libgl' 'libsm' 'libxrandr' 'libxv' 'libxi' 'alsa-lib'
-'xdg-utils' 'hicolor-icon-theme' 'desktop-file-utils' 'mesa' 
'postgresql-libs'
-'mysql' 'unixodbc' 'cups' 'gtk2' 'libfbclient')
-options=('!libtool')
-_pkgfqn=${pkgbase}-everywhere-opensource-src-${pkgver}
-source=(http://releases.qt-project.org/qt4/source/${_pkgfqn}.tar.gz;
-'assistant.desktop' 'designer.desktop' 'linguist.desktop'
-'qtconfig.desktop'
-'improve-cups-support.patch'
-'fix-crash-in-assistant.patch')
-md5sums=('a663b6c875f8d7caa8ac9c30e4a4ec3b'
- 'fc211414130ab2764132e7370f8e5caa'
- '85179f5e0437514f8639957e1d8baf62'
- 'f11852b97583610f3dbb669ebc3e21bc'
- '6b771c8a81dd90b45e8a79afa0e5bbfd'
- 'c439c7731c25387352d8453ca7574971'
- '57590084078b6379f0501f7728b02ae2')
-
-build() {
-  cd ${srcdir}/${_pkgfqn}
-
-  # (FS#28381) (KDEBUG#180051)
-  patch -p1 -i ${srcdir}/improve-cups-support.patch
-
-  # (FS#)
-  patch -p1 -i ${srcdir}/fix-crash-in-assistant.patch
-  
-  export QT4DIR=${srcdir}/${_pkgfqn}
-  export LD_LIBRARY_PATH=${QT4DIR}/lib:${LD_LIBRARY_PATH}
-
-  sed -i s|-O2|${CXXFLAGS}| mkspecs/common/{g++,gcc}-base.conf
-  sed -i /^QMAKE_LFLAGS_RPATH/s| -Wl,-rpath,||g 
mkspecs/common/gcc-base-unix.conf
-  sed -i /^QMAKE_LFLAGS\s/s|+=|+= ${LDFLAGS}|g mkspecs/common/gcc-base.conf
-
-  ./configure -confirm-license -opensource \
--prefix /usr \
--docdir /usr/share/doc/qt \
--plugindir /usr/lib/qt/plugins \
--importdir /usr/lib/qt/imports \
--datadir /usr/share/qt \
--translationdir /usr/share/qt/translations \
--sysconfdir /etc/xdg \
--examplesdir /usr/share/doc/qt/examples \
--demosdir /usr/share/doc/qt/demos \
--plugin-sql-{psql,mysql,sqlite,odbc,ibase} \
--system-sqlite \
--no-phonon \
--no-phonon-backend \
--no-webkit \
--graphicssystem raster \
--openssl-linked \
--nomake demos \
--nomake examples \
--nomake docs \
--silent \
--no-rpath \
--optimized-qmake \
--reduce-relocations \
--dbus-linked \
--no-openvg
-  make
-}
-
-package_qt() {
-pkgdesc='A cross-platform application and UI framework'
-depends=('libtiff' 'libpng' 'libmng' 'sqlite' 'ca-certificates' 'glib2' 
'dbus'
-  'fontconfig' 'libgl' 'libsm' 'libxrandr' 'libxv' 'libxi' 'alsa-lib'
-  'xdg-utils' 'hicolor-icon-theme' 'desktop-file-utils')
-optdepends=('postgresql-libs: PostgreSQL driver'
-

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

2012-09-23 Thread Ray Rashif
Date: Sunday, September 23, 2012 @ 05:44:31
  Author: schiv
Revision: 166955

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

Added:
  libffado/repos/extra-i686/PKGBUILD
(from rev 166954, libffado/repos/testing-i686/PKGBUILD)
  libffado/repos/extra-i686/python2-qt.patch
(from rev 166954, libffado/repos/testing-i686/python2-qt.patch)
  libffado/repos/extra-x86_64/PKGBUILD
(from rev 166954, libffado/repos/testing-x86_64/PKGBUILD)
  libffado/repos/extra-x86_64/python2-qt.patch
(from rev 166954, libffado/repos/testing-x86_64/python2-qt.patch)
Deleted:
  libffado/repos/extra-i686/PKGBUILD
  libffado/repos/extra-i686/python2-qt.patch
  libffado/repos/extra-x86_64/PKGBUILD
  libffado/repos/extra-x86_64/python2-qt.patch
  libffado/repos/testing-i686/
  libffado/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |  119 -
 extra-i686/python2-qt.patch   |  492 
 extra-x86_64/PKGBUILD |  119 -
 extra-x86_64/python2-qt.patch |  492 
 4 files changed, 612 insertions(+), 610 deletions(-)

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


[arch-commits] Commit in transmission/repos (34 files)

2012-09-23 Thread Tom Gundersen
Date: Sunday, September 23, 2012 @ 05:55:03
  Author: tomegun
Revision: 166956

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

Added:
  transmission/repos/extra-i686/PKGBUILD
(from rev 166955, transmission/repos/testing-i686/PKGBUILD)
  transmission/repos/extra-i686/transmission-cli.install
(from rev 166955, transmission/repos/testing-i686/transmission-cli.install)
  transmission/repos/extra-i686/transmission-gtk.install
(from rev 166955, transmission/repos/testing-i686/transmission-gtk.install)
  transmission/repos/extra-i686/transmission-qt.install
(from rev 166955, transmission/repos/testing-i686/transmission-qt.install)
  transmission/repos/extra-i686/transmission.systemd
(from rev 166955, transmission/repos/testing-i686/transmission.systemd)
  transmission/repos/extra-i686/transmission.tmpfiles
(from rev 166955, transmission/repos/testing-i686/transmission.tmpfiles)
  transmission/repos/extra-i686/transmissiond
(from rev 166955, transmission/repos/testing-i686/transmissiond)
  transmission/repos/extra-i686/transmissiond.conf
(from rev 166955, transmission/repos/testing-i686/transmissiond.conf)
  transmission/repos/extra-x86_64/PKGBUILD
(from rev 166955, transmission/repos/testing-x86_64/PKGBUILD)
  transmission/repos/extra-x86_64/transmission-cli.install
(from rev 166955, 
transmission/repos/testing-x86_64/transmission-cli.install)
  transmission/repos/extra-x86_64/transmission-gtk.install
(from rev 166955, 
transmission/repos/testing-x86_64/transmission-gtk.install)
  transmission/repos/extra-x86_64/transmission-qt.install
(from rev 166955, transmission/repos/testing-x86_64/transmission-qt.install)
  transmission/repos/extra-x86_64/transmission.systemd
(from rev 166955, transmission/repos/testing-x86_64/transmission.systemd)
  transmission/repos/extra-x86_64/transmission.tmpfiles
(from rev 166955, transmission/repos/testing-x86_64/transmission.tmpfiles)
  transmission/repos/extra-x86_64/transmissiond
(from rev 166955, transmission/repos/testing-x86_64/transmissiond)
  transmission/repos/extra-x86_64/transmissiond.conf
(from rev 166955, transmission/repos/testing-x86_64/transmissiond.conf)
Deleted:
  transmission/repos/extra-i686/PKGBUILD
  transmission/repos/extra-i686/transmission-cli.install
  transmission/repos/extra-i686/transmission-gtk.install
  transmission/repos/extra-i686/transmission-qt.install
  transmission/repos/extra-i686/transmission.systemd
  transmission/repos/extra-i686/transmission.tmpfiles
  transmission/repos/extra-i686/transmissiond
  transmission/repos/extra-i686/transmissiond.conf
  transmission/repos/extra-x86_64/PKGBUILD
  transmission/repos/extra-x86_64/transmission-cli.install
  transmission/repos/extra-x86_64/transmission-gtk.install
  transmission/repos/extra-x86_64/transmission-qt.install
  transmission/repos/extra-x86_64/transmission.systemd
  transmission/repos/extra-x86_64/transmission.tmpfiles
  transmission/repos/extra-x86_64/transmissiond
  transmission/repos/extra-x86_64/transmissiond.conf
  transmission/repos/testing-i686/
  transmission/repos/testing-x86_64/

---+
 extra-i686/PKGBUILD   |  156 
 extra-i686/transmission-cli.install   |   33 +++---
 extra-i686/transmission-gtk.install   |   24 ++--
 extra-i686/transmission-qt.install|   22 ++--
 extra-i686/transmission.systemd   |   28 ++---
 extra-i686/transmission.tmpfiles  |2 
 extra-i686/transmissiond  |   92 +-
 extra-i686/transmissiond.conf |8 -
 extra-x86_64/PKGBUILD |  156 
 extra-x86_64/transmission-cli.install |   33 +++---
 extra-x86_64/transmission-gtk.install |   24 ++--
 extra-x86_64/transmission-qt.install  |   22 ++--
 extra-x86_64/transmission.systemd |   28 ++---
 extra-x86_64/transmission.tmpfiles|2 
 extra-x86_64/transmissiond|   92 +-
 extra-x86_64/transmissiond.conf   |8 -
 16 files changed, 366 insertions(+), 364 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-09-23 09:44:31 UTC (rev 166955)
+++ extra-i686/PKGBUILD 2012-09-23 09:55:03 UTC (rev 166956)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer : Ionut Biru ib...@archlinux.org
-
-pkgbase=transmission
-pkgname=('transmission-cli' 'transmission-gtk' 'transmission-qt')
-pkgver=2.61
-pkgrel=3
-arch=('i686' 'x86_64')
-url=http://www.transmissionbt.com/;
-license=('MIT')
-makedepends=('gtk3' 'intltool' 'curl' 'qt' 'libevent')
-source=(http://mirrors.m0k.org/transmission/files/$pkgbase-$pkgver.tar.xz
-transmissiond transmissiond.conf transmission.systemd
-transmission.tmpfiles)
-
-build() {
-  cd $pkgbase-$pkgver
-
-  ./configure --prefix=/usr
-  make
-  pushd qt
-  qmake qtr.pro
-  make
-}
-package_transmission-cli() {
-  

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

2012-09-23 Thread Tom Gundersen
Date: Sunday, September 23, 2012 @ 05:58:12
  Author: tomegun
Revision: 166957

upgpkg: btrfs-progs 0.19.20120904-5

remove udev rule as the new systemd is out

Modified:
  btrfs-progs/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-09-23 09:55:03 UTC (rev 166956)
+++ PKGBUILD2012-09-23 09:58:12 UTC (rev 166957)
@@ -4,7 +4,7 @@
 
 pkgname=btrfs-progs
 pkgver=0.19.20120904
-pkgrel=4
+pkgrel=5
 pkgdesc=btrfs filesystem utilities
 arch=(i686 x86_64)
 depends=('glibc' 'e2fsprogs')



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

2012-09-23 Thread Tom Gundersen
Date: Sunday, September 23, 2012 @ 05:58:46
  Author: tomegun
Revision: 166958

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

Added:
  btrfs-progs/repos/testing-i686/PKGBUILD
(from rev 166957, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
(from rev 166957, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
(from rev 166957, btrfs-progs/trunk/initcpio-install-btrfs)
  btrfs-progs/repos/testing-x86_64/PKGBUILD
(from rev 166957, btrfs-progs/trunk/PKGBUILD)
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
(from rev 166957, btrfs-progs/trunk/initcpio-hook-btrfs)
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs
(from rev 166957, btrfs-progs/trunk/initcpio-install-btrfs)
Deleted:
  btrfs-progs/repos/testing-i686/70-btrfs.rules
  btrfs-progs/repos/testing-i686/PKGBUILD
  btrfs-progs/repos/testing-i686/initcpio-hook-btrfs
  btrfs-progs/repos/testing-i686/initcpio-install-btrfs
  btrfs-progs/repos/testing-x86_64/70-btrfs.rules
  btrfs-progs/repos/testing-x86_64/PKGBUILD
  btrfs-progs/repos/testing-x86_64/initcpio-hook-btrfs
  btrfs-progs/repos/testing-x86_64/initcpio-install-btrfs

---+
 testing-i686/70-btrfs.rules   |1 
 testing-i686/PKGBUILD |   89 +++-
 testing-i686/initcpio-hook-btrfs  |   20 +++
 testing-i686/initcpio-install-btrfs   |   34 ++--
 testing-x86_64/70-btrfs.rules |1 
 testing-x86_64/PKGBUILD   |   89 +++-
 testing-x86_64/initcpio-hook-btrfs|   20 +++
 testing-x86_64/initcpio-install-btrfs |   34 ++--
 8 files changed, 138 insertions(+), 150 deletions(-)

Deleted: testing-i686/70-btrfs.rules
===
--- testing-i686/70-btrfs.rules 2012-09-23 09:58:12 UTC (rev 166957)
+++ testing-i686/70-btrfs.rules 2012-09-23 09:58:46 UTC (rev 166958)
@@ -1 +0,0 @@
-ACTION!=remove, SUBSYSTEM==block, ENV{ID_FS_TYPE}==btrfs, 
RUN+=/usr/bin/btrfs device scan /dev/%k

Deleted: testing-i686/PKGBUILD
===
--- testing-i686/PKGBUILD   2012-09-23 09:58:12 UTC (rev 166957)
+++ testing-i686/PKGBUILD   2012-09-23 09:58:46 UTC (rev 166958)
@@ -1,47 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor: Tobias Powalowski tp...@archlinux.org
-
-pkgname=btrfs-progs
-pkgver=0.19.20120904
-pkgrel=4
-pkgdesc=btrfs filesystem utilities
-arch=(i686 x86_64)
-depends=('glibc' 'e2fsprogs')
-url=http://btrfs.wiki.kernel.org/;
-replaces=('btrfs-progs-unstable')
-conflicts=('btrfs-progs-unstable')
-provides=('btrfs-progs-unstable')
-license=('GPL2')
-source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.xz
-70-btrfs.rules
-initcpio-install-btrfs
-initcpio-hook-btrfs)
-
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   make CFLAGS=$CFLAGS
-}
-
-package() {
-   cd $srcdir/$pkgname-$pkgver
-   make prefix=$pkgdir/usr install
-   # fix manpage
-   mkdir -p $pkgdir/usr/share/
-   mv $pkgdir/usr/man $pkgdir/usr/share/man
-   mkdir -p ${pkgdir}/sbin
-   ln -sf /usr/bin/btrfs ${pkgdir}/sbin/btrfs
-
-   # add udev rule
-   install -Dm644 $srcdir/70-btrfs.rules 
$pkgdir/usr/lib/udev/rules.d/70-btrfs.rules
-
-   # install mkinitcpio hooks
-   install -Dm644 $srcdir/initcpio-install-btrfs \
- $pkgdir/usr/lib/initcpio/install/btrfs
-   install -Dm644 $srcdir/initcpio-hook-btrfs \
- $pkgdir/usr/lib/initcpio/hooks/btrfs
-}
-md5sums=('d9c96e670fac7c2098a9e7ef98d4b2e2'
- '345c62c8b267082361729ca5b647518f'
- 'e5186ec3fe8a809b7473470128d1c4ab'
- '9fb35142755b477a96cb7292f3d64839')

Copied: btrfs-progs/repos/testing-i686/PKGBUILD (from rev 166957, 
btrfs-progs/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2012-09-23 09:58:46 UTC (rev 166958)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: Tobias Powalowski tp...@archlinux.org
+
+pkgname=btrfs-progs
+pkgver=0.19.20120904
+pkgrel=5
+pkgdesc=btrfs filesystem utilities
+arch=(i686 x86_64)
+depends=('glibc' 'e2fsprogs')
+url=http://btrfs.wiki.kernel.org/;
+replaces=('btrfs-progs-unstable')
+conflicts=('btrfs-progs-unstable')
+provides=('btrfs-progs-unstable')
+license=('GPL2')
+source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.xz
+initcpio-install-btrfs
+initcpio-hook-btrfs)
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   make CFLAGS=$CFLAGS
+}
+
+package() {
+   cd $srcdir/$pkgname-$pkgver
+   make prefix=$pkgdir/usr install
+   # fix manpage
+   mkdir -p $pkgdir/usr/share/
+   mv $pkgdir/usr/man $pkgdir/usr/share/man
+   mkdir -p ${pkgdir}/sbin
+   ln -sf /usr/bin/btrfs ${pkgdir}/sbin/btrfs
+
+   # 

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

2012-09-23 Thread Tom Gundersen
Date: Sunday, September 23, 2012 @ 07:43:31
  Author: tomegun
Revision: 166959

upgpkg: libmtp 1.1.5-1

upstream update

Modified:
  libmtp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-09-23 09:58:46 UTC (rev 166958)
+++ PKGBUILD2012-09-23 11:43:31 UTC (rev 166959)
@@ -4,7 +4,7 @@
 # Contributor: Kevin Edmonds edmondske...@hotmail.com
 
 pkgname=libmtp
-pkgver=1.1.4
+pkgver=1.1.5
 pkgrel=1
 pkgdesc=Library implementation of the Media Transfer Protocol
 arch=(i686 x86_64)
@@ -24,4 +24,4 @@
   cd ${srcdir}/${pkgname}-${pkgver}
   make DESTDIR=${pkgdir} install
 }
-md5sums=('27d9bcbc925c1ef84869eb27fdda54e8')
+md5sums=('f80e45c0e6e5798c434bb1c26a7b602d')



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

2012-09-23 Thread Tom Gundersen
Date: Sunday, September 23, 2012 @ 07:44:00
  Author: tomegun
Revision: 166960

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

Added:
  libmtp/repos/extra-i686/PKGBUILD
(from rev 166959, libmtp/trunk/PKGBUILD)
  libmtp/repos/extra-x86_64/PKGBUILD
(from rev 166959, libmtp/trunk/PKGBUILD)
Deleted:
  libmtp/repos/extra-i686/PKGBUILD
  libmtp/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-09-23 11:43:31 UTC (rev 166959)
+++ extra-i686/PKGBUILD 2012-09-23 11:44:00 UTC (rev 166960)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor: damir da...@archlinux.org
-# Contributor: Kevin Edmonds edmondske...@hotmail.com
-
-pkgname=libmtp
-pkgver=1.1.4
-pkgrel=1
-pkgdesc=Library implementation of the Media Transfer Protocol
-arch=(i686 x86_64)
-url=http://libmtp.sourceforge.net;
-license=('LGPL')
-depends=('libusb' 'libgcrypt')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-udev=/usr/lib/udev
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-md5sums=('27d9bcbc925c1ef84869eb27fdda54e8')

Copied: libmtp/repos/extra-i686/PKGBUILD (from rev 166959, 
libmtp/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-09-23 11:44:00 UTC (rev 166960)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: damir da...@archlinux.org
+# Contributor: Kevin Edmonds edmondske...@hotmail.com
+
+pkgname=libmtp
+pkgver=1.1.5
+pkgrel=1
+pkgdesc=Library implementation of the Media Transfer Protocol
+arch=(i686 x86_64)
+url=http://libmtp.sourceforge.net;
+license=('LGPL')
+depends=('libusb' 'libgcrypt')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-udev=/usr/lib/udev
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+md5sums=('f80e45c0e6e5798c434bb1c26a7b602d')

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-09-23 11:43:31 UTC (rev 166959)
+++ extra-x86_64/PKGBUILD   2012-09-23 11:44:00 UTC (rev 166960)
@@ -1,27 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor: damir da...@archlinux.org
-# Contributor: Kevin Edmonds edmondske...@hotmail.com
-
-pkgname=libmtp
-pkgver=1.1.4
-pkgrel=1
-pkgdesc=Library implementation of the Media Transfer Protocol
-arch=(i686 x86_64)
-url=http://libmtp.sourceforge.net;
-license=('LGPL')
-depends=('libusb' 'libgcrypt')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  ./configure --prefix=/usr --with-udev=/usr/lib/udev
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-  make DESTDIR=${pkgdir} install
-}
-md5sums=('27d9bcbc925c1ef84869eb27fdda54e8')

Copied: libmtp/repos/extra-x86_64/PKGBUILD (from rev 166959, 
libmtp/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2012-09-23 11:44:00 UTC (rev 166960)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+# Contributor: damir da...@archlinux.org
+# Contributor: Kevin Edmonds edmondske...@hotmail.com
+
+pkgname=libmtp
+pkgver=1.1.5
+pkgrel=1
+pkgdesc=Library implementation of the Media Transfer Protocol
+arch=(i686 x86_64)
+url=http://libmtp.sourceforge.net;
+license=('LGPL')
+depends=('libusb' 'libgcrypt')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  ./configure --prefix=/usr --with-udev=/usr/lib/udev
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+  make DESTDIR=${pkgdir} install
+}
+md5sums=('f80e45c0e6e5798c434bb1c26a7b602d')



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

2012-09-23 Thread Tom Gundersen
Date: Sunday, September 23, 2012 @ 08:22:10
  Author: tomegun
Revision: 166961

db-move: moved procps-ng from [testing] to [core] (i686, x86_64)

Added:
  procps-ng/repos/core-i686/PKGBUILD
(from rev 166960, procps-ng/repos/testing-i686/PKGBUILD)
  procps-ng/repos/core-i686/sysctl.conf
(from rev 166960, procps-ng/repos/testing-i686/sysctl.conf)
  procps-ng/repos/core-x86_64/PKGBUILD
(from rev 166960, procps-ng/repos/testing-x86_64/PKGBUILD)
  procps-ng/repos/core-x86_64/sysctl.conf
(from rev 166960, procps-ng/repos/testing-x86_64/sysctl.conf)
Deleted:
  procps-ng/repos/core-i686/PKGBUILD
  procps-ng/repos/core-i686/sysctl.conf
  procps-ng/repos/core-x86_64/PKGBUILD
  procps-ng/repos/core-x86_64/sysctl.conf
  procps-ng/repos/testing-i686/
  procps-ng/repos/testing-x86_64/

-+
 core-i686/PKGBUILD  |   75 +--
 core-i686/sysctl.conf   |   87 +-
 core-x86_64/PKGBUILD|   75 +--
 core-x86_64/sysctl.conf |   87 +-
 4 files changed, 162 insertions(+), 162 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-09-23 11:44:00 UTC (rev 166960)
+++ core-i686/PKGBUILD  2012-09-23 12:22:10 UTC (rev 166961)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Eric Bélanger e...@archlinux.org
-
-pkgname=procps-ng
-pkgver=3.3.3
-pkgrel=3
-pkgdesc=Utilities for monitoring your system and processes on your system
-arch=('i686' 'x86_64')
-url=http://gitorious.org/procps;
-license=('GPL' 'LGPL')
-groups=('base')
-depends=('ncurses')
-conflicts=('procps')
-provides=('procps')
-replaces=('procps')
-backup=('etc/sysctl.conf')
-options=('!libtool')
-source=(procps-ng-${pkgver}.tar.gz::http://gitorious.org/procps/procps/archive-tarball/v${pkgver}
-sysctl.conf)
-sha1sums=('e78a098f1a3c06722155800cc5cfa0c865af03c0'
-  'efb6cdc17ee39be8433ae9c8e9bb02d1f47eeefc')
-
-build() {
-  cd ${srcdir}/procps-procps
-  echo ${pkgver}  .tarball-version
-  ./autogen.sh
-  ./configure --exec-prefix=/ --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib
-  make
-}
-
-package() {
-  cd ${srcdir}/procps-procps
-  make DESTDIR=${pkgdir} install
-  install -D -m644 ${srcdir}/sysctl.conf ${pkgdir}/etc/sysctl.conf
-}

Copied: procps-ng/repos/core-i686/PKGBUILD (from rev 166960, 
procps-ng/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-09-23 12:22:10 UTC (rev 166961)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Eric Bélanger e...@archlinux.org
+
+pkgname=procps-ng
+pkgver=3.3.3
+pkgrel=6
+pkgdesc='Utilities for monitoring your system and its processes'
+arch=('i686' 'x86_64')
+url=http://gitorious.org/procps;
+license=('GPL' 'LGPL')
+groups=('base')
+depends=('ncurses')
+conflicts=('procps')
+provides=('procps')
+replaces=('procps')
+backup=('etc/sysctl.conf')
+options=('!libtool')
+source=(procps-ng-${pkgver}.tar.gz::http://gitorious.org/procps/procps/archive-tarball/v${pkgver}
+sysctl.conf)
+sha1sums=('e78a098f1a3c06722155800cc5cfa0c865af03c0'
+  '97ff07bab9aa5daa8d54a1346f73ba74f8e12a53')
+
+build() {
+  cd ${srcdir}/procps-procps
+  echo ${pkgver}  .tarball-version
+  ./autogen.sh
+  ./configure --exec-prefix=/ --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib
+  make
+}
+
+package() {
+  cd ${srcdir}/procps-procps
+  make DESTDIR=${pkgdir} install
+  install -D -m644 ../sysctl.conf ${pkgdir}/etc/sysctl.conf
+
+  # provided by util-linux
+  rm ${pkgdir}/bin/kill
+  rm ${pkgdir}/usr/share/man/man1/kill.1
+}

Deleted: core-i686/sysctl.conf
===
--- core-i686/sysctl.conf   2012-09-23 11:44:00 UTC (rev 166960)
+++ core-i686/sysctl.conf   2012-09-23 12:22:10 UTC (rev 166961)
@@ -1,46 +0,0 @@
-# /etc/sysctl.conf - Configuration file for setting system variables
-# See sysctl.conf (5) for information.
-
-# you can have the CD-ROM close when you use it, and open
-# when you are done.
-#dev.cdrom.autoeject = 1
-#dev.cdrom.autoclose = 1
-
-# protection from the SYN flood attack
-net.ipv4.tcp_syncookies = 1
-
-# see the evil packets in your log files
-#net.ipv4.conf.all.log_martians = 1
-
-# if not functioning as a router, there is no need to accept redirects or 
source routes
-#net.ipv4.conf.all.accept_redirects = 0
-#net.ipv4.conf.all.accept_source_route = 0
-#net.ipv6.conf.all.accept_redirects = 0
-#net.ipv6.conf.all.accept_source_route = 0
-
-# Disable packet forwarding
-net.ipv4.ip_forward = 0
-net.ipv6.conf.all.forwarding = 0
-
-# Enable IPv6 Privacy Extensions
-net.ipv6.conf.default.use_tempaddr = 2
-net.ipv6.conf.all.use_tempaddr = 2
-
-# sets the port range used for outgoing connections

[arch-commits] Commit in coreutils/repos (16 files)

2012-09-23 Thread Tom Gundersen
Date: Sunday, September 23, 2012 @ 08:22:15
  Author: tomegun
Revision: 166962

db-move: moved coreutils from [testing] to [core] (i686, x86_64)

Added:
  coreutils/repos/core-i686/PKGBUILD
(from rev 166960, coreutils/repos/testing-i686/PKGBUILD)
  coreutils/repos/core-i686/coreutils.install
(from rev 166960, coreutils/repos/testing-i686/coreutils.install)
  coreutils/repos/core-x86_64/PKGBUILD
(from rev 166960, coreutils/repos/testing-x86_64/PKGBUILD)
  coreutils/repos/core-x86_64/coreutils.install
(from rev 166960, coreutils/repos/testing-x86_64/coreutils.install)
Deleted:
  
coreutils/repos/core-i686/0001-ls-color-each-symlink-to-relative-name-in-properly.patch
  coreutils/repos/core-i686/PKGBUILD
  coreutils/repos/core-i686/coreutils-pam.patch
  coreutils/repos/core-i686/coreutils.install
  coreutils/repos/core-i686/su.pam
  
coreutils/repos/core-x86_64/0001-ls-color-each-symlink-to-relative-name-in-properly.patch
  coreutils/repos/core-x86_64/PKGBUILD
  coreutils/repos/core-x86_64/coreutils-pam.patch
  coreutils/repos/core-x86_64/coreutils.install
  coreutils/repos/core-x86_64/su.pam
  coreutils/repos/testing-i686/
  coreutils/repos/testing-x86_64/

---+
 core-i686/0001-ls-color-each-symlink-to-relative-name-in-properly.patch   |  
135 ---
 core-i686/PKGBUILD|  
113 +-
 core-i686/coreutils-pam.patch |  
428 --
 core-i686/coreutils.install   |   
38 
 core-i686/su.pam  |
9 
 core-x86_64/0001-ls-color-each-symlink-to-relative-name-in-properly.patch |  
135 ---
 core-x86_64/PKGBUILD  |  
113 +-
 core-x86_64/coreutils-pam.patch   |  
428 --
 core-x86_64/coreutils.install |   
38 
 core-x86_64/su.pam|
9 
 10 files changed, 128 insertions(+), 1318 deletions(-)

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


[arch-commits] Commit in util-linux/repos (26 files)

2012-09-23 Thread Tom Gundersen
Date: Sunday, September 23, 2012 @ 08:22:32
  Author: tomegun
Revision: 166963

db-move: moved util-linux from [testing] to [core] (i686, x86_64)

Added:
  util-linux/repos/core-i686/PKGBUILD
(from rev 166960, util-linux/repos/testing-i686/PKGBUILD)
  util-linux/repos/core-i686/hwclock-systz.patch
(from rev 166960, util-linux/repos/testing-i686/hwclock-systz.patch)
  util-linux/repos/core-i686/pam-common
(from rev 166960, util-linux/repos/testing-i686/pam-common)
  util-linux/repos/core-i686/pam-login
(from rev 166960, util-linux/repos/testing-i686/pam-login)
  util-linux/repos/core-i686/pam-su
(from rev 166960, util-linux/repos/testing-i686/pam-su)
  util-linux/repos/core-i686/su.1
(from rev 166960, util-linux/repos/testing-i686/su.1)
  util-linux/repos/core-i686/util-linux.install
(from rev 166960, util-linux/repos/testing-i686/util-linux.install)
  util-linux/repos/core-i686/uuidd.tmpfiles
(from rev 166960, util-linux/repos/testing-i686/uuidd.tmpfiles)
  util-linux/repos/core-x86_64/PKGBUILD
(from rev 166960, util-linux/repos/testing-x86_64/PKGBUILD)
  util-linux/repos/core-x86_64/hwclock-systz.patch
(from rev 166960, util-linux/repos/testing-x86_64/hwclock-systz.patch)
  util-linux/repos/core-x86_64/pam-common
(from rev 166960, util-linux/repos/testing-x86_64/pam-common)
  util-linux/repos/core-x86_64/pam-login
(from rev 166960, util-linux/repos/testing-x86_64/pam-login)
  util-linux/repos/core-x86_64/pam-su
(from rev 166960, util-linux/repos/testing-x86_64/pam-su)
  util-linux/repos/core-x86_64/su.1
(from rev 166960, util-linux/repos/testing-x86_64/su.1)
  util-linux/repos/core-x86_64/util-linux.install
(from rev 166960, util-linux/repos/testing-x86_64/util-linux.install)
  util-linux/repos/core-x86_64/uuidd.tmpfiles
(from rev 166960, util-linux/repos/testing-x86_64/uuidd.tmpfiles)
Deleted:
  util-linux/repos/core-i686/PKGBUILD
  util-linux/repos/core-i686/pam-common
  util-linux/repos/core-i686/pam-login
  util-linux/repos/core-i686/util-linux.install
  util-linux/repos/core-x86_64/PKGBUILD
  util-linux/repos/core-x86_64/pam-common
  util-linux/repos/core-x86_64/pam-login
  util-linux/repos/core-x86_64/util-linux.install
  util-linux/repos/testing-i686/
  util-linux/repos/testing-x86_64/

-+
 core-i686/PKGBUILD  |  162 --
 core-i686/hwclock-systz.patch   |   96 +++
 core-i686/pam-common|   12 -
 core-i686/pam-login |   14 +-
 core-i686/pam-su|9 +
 core-i686/su.1  |  230 ++
 core-i686/util-linux.install|   49 ++--
 core-i686/uuidd.tmpfiles|1 
 core-x86_64/PKGBUILD|  162 --
 core-x86_64/hwclock-systz.patch |   96 +++
 core-x86_64/pam-common  |   12 -
 core-x86_64/pam-login   |   14 +-
 core-x86_64/pam-su  |9 +
 core-x86_64/su.1|  230 ++
 core-x86_64/util-linux.install  |   49 ++--
 core-x86_64/uuidd.tmpfiles  |1 
 16 files changed, 970 insertions(+), 176 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-09-23 12:22:15 UTC (rev 166962)
+++ core-i686/PKGBUILD  2012-09-23 12:22:32 UTC (rev 166963)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Tom Gundersen t...@jklm.no
-# Contributor: judd jvi...@zeroflux.org
-
-pkgname=util-linux
-pkgver=2.21.2
-pkgrel=5
-pkgdesc=Miscellaneous system utilities for Linux
-url=http://www.kernel.org/pub/linux/utils/util-linux/;
-arch=('i686' 'x86_64')
-groups=('base')
-depends=('pam')
-conflicts=('util-linux-ng')
-provides=(util-linux-ng=${pkgver})
-license=('GPL2')
-options=('!libtool')
-source=(ftp://ftp.kernel.org/pub/linux/utils/${pkgname}/v2.21/${pkgname}-${pkgver}.tar.xz
-pam-login
-pam-common)
-backup=(etc/pam.d/chfn etc/pam.d/chsh etc/pam.d/login)
-install=util-linux.install
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr \
-  --libdir=/usr/lib \
-  --enable-fs-paths-extra=/usr/bin:/usr/sbin \
-  --enable-write \
-  --enable-raw \
-  --disable-wall \
-  --enable-new-mount \
-  --enable-login-utils
-
-  make
-}
-
-check() {
-  make -C $pkgname-$pkgver check
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-
-  cd ${pkgdir}
-
-  # broken tool, going away in next major release, so just remove it now
-  rm ${pkgdir}/usr/{bin/chkdupexe,share/man/man1/chkdupexe.1}
-
-  # delete stray empty dir, fixed upstream
-  rm -r usr/share/man/ru
-
-  # setuid chfn and chsh
-  chmod 4755 $pkgdir/usr/bin/ch{sh,fn}
-
-  # install PAM files for login-utils
-  install -Dm644 $srcdir/pam-common $pkgdir/etc/pam.d/chfn
-  install -m644 

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

2012-09-23 Thread Tom Gundersen
Date: Sunday, September 23, 2012 @ 08:22:41
  Author: tomegun
Revision: 166964

db-move: moved sysvinit from [testing] to [core] (i686, x86_64)

Added:
  sysvinit/repos/core-i686/0001-simplify-writelog.patch
(from rev 166960, sysvinit/repos/testing-i686/0001-simplify-writelog.patch)
  sysvinit/repos/core-i686/0002-remove-ansi-escape-codes-from-log-file.patch
(from rev 166960, 
sysvinit/repos/testing-i686/0002-remove-ansi-escape-codes-from-log-file.patch)
  sysvinit/repos/core-i686/PKGBUILD
(from rev 166960, sysvinit/repos/testing-i686/PKGBUILD)
  sysvinit/repos/core-i686/sysvinit.install
(from rev 166960, sysvinit/repos/testing-i686/sysvinit.install)
  sysvinit/repos/core-x86_64/0001-simplify-writelog.patch
(from rev 166960, 
sysvinit/repos/testing-x86_64/0001-simplify-writelog.patch)
  sysvinit/repos/core-x86_64/0002-remove-ansi-escape-codes-from-log-file.patch
(from rev 166960, 
sysvinit/repos/testing-x86_64/0002-remove-ansi-escape-codes-from-log-file.patch)
  sysvinit/repos/core-x86_64/PKGBUILD
(from rev 166960, sysvinit/repos/testing-x86_64/PKGBUILD)
  sysvinit/repos/core-x86_64/sysvinit.install
(from rev 166960, sysvinit/repos/testing-x86_64/sysvinit.install)
Deleted:
  sysvinit/repos/core-i686/0001-simplify-writelog.patch
  sysvinit/repos/core-i686/0002-remove-ansi-escape-codes-from-log-file.patch
  sysvinit/repos/core-i686/PKGBUILD
  sysvinit/repos/core-i686/sysvinit.install
  sysvinit/repos/core-x86_64/0001-simplify-writelog.patch
  sysvinit/repos/core-x86_64/0002-remove-ansi-escape-codes-from-log-file.patch
  sysvinit/repos/core-x86_64/PKGBUILD
  sysvinit/repos/core-x86_64/sysvinit.install
  sysvinit/repos/testing-i686/
  sysvinit/repos/testing-x86_64/

---+
 core-i686/0001-simplify-writelog.patch|  252 +-
 core-i686/0002-remove-ansi-escape-codes-from-log-file.patch   |  160 +++---
 core-i686/PKGBUILD|  125 ++--
 core-i686/sysvinit.install|6 
 core-x86_64/0001-simplify-writelog.patch  |  252 +-
 core-x86_64/0002-remove-ansi-escape-codes-from-log-file.patch |  160 +++---
 core-x86_64/PKGBUILD  |  125 ++--
 core-x86_64/sysvinit.install  |6 
 8 files changed, 542 insertions(+), 544 deletions(-)

Deleted: core-i686/0001-simplify-writelog.patch
===
--- core-i686/0001-simplify-writelog.patch  2012-09-23 12:22:32 UTC (rev 
166963)
+++ core-i686/0001-simplify-writelog.patch  2012-09-23 12:22:41 UTC (rev 
166964)
@@ -1,126 +0,0 @@
-From 5577552eb1344ddd661893564b1e628f8edcf13d Mon Sep 17 00:00:00 2001
-From: Florian Pritz bluew...@xinu.at
-Date: Fri, 15 Jun 2012 16:41:52 +0200
-Subject: [PATCH 1/2] simplify writelog()
-
-All we do is prepend the date and remove \r. We don't handle color
-codes, but the user can just cat the log file in a terminal and it will
-interpret the codes correctly.
-
-Signed-off-by: Florian Pritz bluew...@xinu.at

- bootlogd.c |   76 +---
- 1 file changed, 21 insertions(+), 55 deletions(-)
-
-diff --git a/bootlogd.c b/bootlogd.c
-index 570d382..e36e261 100644
 a/bootlogd.c
-+++ b/bootlogd.c
-@@ -68,11 +68,6 @@ int didnl = 1;
- int createlogfile = 0;
- int syncalot = 0;
- 
--struct line {
--  char buf[256];
--  int pos;
--} line;
--
- /*
-  *Console devices as listed on the kernel command line and
-  *the mapping to actual devices in /dev
-@@ -351,63 +346,34 @@ int consolename(char *res, int rlen)
-  */
- void writelog(FILE *fp, unsigned char *ptr, int len)
- {
--  time_t  t;
--  char*s;
--  chartmp[8];
--  int olen = len;
--  int dosync = 0;
--  int tlen;
--
--  while (len  0) {
--  tmp[0] = 0;
--  if (didnl) {
-+  int dosync = 0;
-+  int i;
-+  static int first_run = 1;
-+
-+  for (i = 0; i  len; i++) {
-+  int ignore = 0;
-+
-+  /* prepend date to every line */
-+  if (*(ptr-1) == '\n' || first_run) {
-+  time_t t;
-+  char *s;
-   time(t);
-   s = ctime(t);
-   fprintf(fp, %.24s: , s);
--  didnl = 0;
-+  dosync = 1;
-+  first_run = 0;
-   }
--  switch (*ptr) {
--  case 27: /* ESC */
--  strcpy(tmp, ^[);
--  break;
--  case '\r':
--  line.pos = 0;
--  break;
--  case 8: /* ^H */
--  

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

2012-09-23 Thread Dave Reisner
Date: Sunday, September 23, 2012 @ 10:04:18
  Author: dreisner
Revision: 166965

db-remove: eject removed by dreisner

Deleted:
  eject/repos/extra-i686/



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

2012-09-23 Thread Dave Reisner
Date: Sunday, September 23, 2012 @ 10:04:34
  Author: dreisner
Revision: 166966

db-remove: eject removed by dreisner

Deleted:
  eject/repos/extra-x86_64/



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

2012-09-23 Thread Dave Reisner
Date: Sunday, September 23, 2012 @ 12:41:44
  Author: dreisner
Revision: 166967

db-remove: btrfs-progs removed by dreisner

Deleted:
  btrfs-progs/repos/testing-i686/



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

2012-09-23 Thread Dave Reisner
Date: Sunday, September 23, 2012 @ 12:41:49
  Author: dreisner
Revision: 166968

db-remove: btrfs-progs removed by dreisner

Deleted:
  btrfs-progs/repos/testing-x86_64/



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

2012-09-23 Thread Tom Gundersen
Date: Sunday, September 23, 2012 @ 16:09:25
  Author: tomegun
Revision: 166969

upgpkg: hwids 20120922-1

upstream release

Modified:
  hwids/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-09-23 16:41:49 UTC (rev 166968)
+++ PKGBUILD2012-09-23 20:09:25 UTC (rev 166969)
@@ -1,7 +1,7 @@
 # $Id$
 # Maintainer: Tom Gundersen t...@jklm.no
 pkgname=hwids
-pkgver=20120906
+pkgver=20120922
 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=('4e0bb29f1de41962cb9dfdcf0bb05fb8')
+md5sums=('b37eba5bf9192e08fdda164a512d529e')



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

2012-09-23 Thread Tom Gundersen
Date: Sunday, September 23, 2012 @ 16:09:41
  Author: tomegun
Revision: 166970

archrelease: copy trunk to testing-any

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

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

Copied: hwids/repos/testing-any/PKGBUILD (from rev 166969, hwids/trunk/PKGBUILD)
===
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2012-09-23 20:09:41 UTC (rev 166970)
@@ -0,0 +1,17 @@
+# $Id$
+# Maintainer: Tom Gundersen t...@jklm.no
+pkgname=hwids
+pkgver=20120922
+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=('b37eba5bf9192e08fdda164a512d529e')



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

2012-09-23 Thread Gaetan Bisson
Date: Sunday, September 23, 2012 @ 18:22:21
  Author: bisson
Revision: 166971

db-move: moved mlocate from [testing] to [core] (i686, x86_64)

Added:
  mlocate/repos/core-i686/PKGBUILD
(from rev 166970, mlocate/repos/testing-i686/PKGBUILD)
  mlocate/repos/core-i686/updatedb.conf
(from rev 166970, mlocate/repos/testing-i686/updatedb.conf)
  mlocate/repos/core-i686/updatedb.cron
(from rev 166970, mlocate/repos/testing-i686/updatedb.cron)
  mlocate/repos/core-x86_64/PKGBUILD
(from rev 166970, mlocate/repos/testing-x86_64/PKGBUILD)
  mlocate/repos/core-x86_64/updatedb.conf
(from rev 166970, mlocate/repos/testing-x86_64/updatedb.conf)
  mlocate/repos/core-x86_64/updatedb.cron
(from rev 166970, mlocate/repos/testing-x86_64/updatedb.cron)
Deleted:
  mlocate/repos/core-i686/PKGBUILD
  mlocate/repos/core-i686/updatedb.conf
  mlocate/repos/core-i686/updatedb.cron.daily
  mlocate/repos/core-x86_64/PKGBUILD
  mlocate/repos/core-x86_64/updatedb.conf
  mlocate/repos/core-x86_64/updatedb.cron.daily
  mlocate/repos/testing-i686/
  mlocate/repos/testing-x86_64/

-+
 core-i686/PKGBUILD  |  100 ++
 core-i686/updatedb.conf |8 +--
 core-i686/updatedb.cron |6 ++
 core-i686/updatedb.cron.daily   |   29 ---
 core-x86_64/PKGBUILD|  100 ++
 core-x86_64/updatedb.conf   |8 +--
 core-x86_64/updatedb.cron   |6 ++
 core-x86_64/updatedb.cron.daily |   29 ---
 8 files changed, 118 insertions(+), 168 deletions(-)

Deleted: core-i686/PKGBUILD
===
--- core-i686/PKGBUILD  2012-09-23 20:09:41 UTC (rev 166970)
+++ core-i686/PKGBUILD  2012-09-23 22:22:21 UTC (rev 166971)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Allan McRae al...@archlinux.org
-# Contributor: lydgate
-
-pkgname=mlocate
-pkgver=0.25
-pkgrel=2
-pkgdesc=Faster merging drop-in for slocate
-arch=('i686' 'x86_64')
-url=http://carolina.mff.cuni.cz/~trmac/blog/mlocate;
-license=('GPL')
-depends=('glibc' 'coreutils' 'sh')
-backup=('etc/updatedb.conf'
-'etc/cron.daily/updatedb')
-source=(https://fedorahosted.org/releases/m/l/mlocate/mlocate-$pkgver.tar.xz
-   updatedb.conf
-   updatedb.cron.daily)
-md5sums=('c6d043b170613b0e327a815b497f680a'
- 'b56d81de17fe29b01b4b28861acb8fd4'
- 'cde5da81bebad2de556ef2e43d895e13')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-  sed -i '/^groupname /s/mlocate/locate/' Makefile.in
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib
-  make
-
-}
-
-check() {
-  cd $srcdir/$pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  ln -s locate $pkgdir/usr/bin/slocate
-  chgrp 21 $pkgdir/usr/bin/locate
-  chmod 2755 $pkgdir/usr/bin/locate
-
-  install -dm755 $pkgdir/var/lib
-  install -dm750 -g21 $pkgdir/var/lib/locate
-  
-  # Set up a default updatedb.conf and a daily cronjob
-  install -Dm644 ${srcdir}/updatedb.conf $pkgdir/etc/updatedb.conf
-  install -Dm744 ${srcdir}/updatedb.cron.daily $pkgdir/etc/cron.daily/updatedb
-}

Copied: mlocate/repos/core-i686/PKGBUILD (from rev 166970, 
mlocate/repos/testing-i686/PKGBUILD)
===
--- core-i686/PKGBUILD  (rev 0)
+++ core-i686/PKGBUILD  2012-09-23 22:22:21 UTC (rev 166971)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+# Contributor: Allan McRae al...@archlinux.org
+# Contributor: lydgate
+
+pkgname=mlocate
+pkgver=0.26
+pkgrel=1
+pkgdesc='Merging locate/updatedb implementation'
+url='https://fedorahosted.org/mlocate/'
+arch=('i686' 'x86_64')
+license=('GPL')
+backup=('etc/updatedb.conf'
+'etc/cron.daily/updatedb')
+source=(https://fedorahosted.org/releases/m/l/mlocate/mlocate-${pkgver}.tar.xz;
+   'updatedb.conf'
+   'updatedb.cron')
+sha1sums=('c6e6d81b25359c51c545f4b8ba0f3b469227fcbc'
+  '0150379149bf9d714bc81332d775fc273e7e3535'
+  '8301e6277d27db539af6cf4bc243e8e247bffc2e')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   sed -i '/^groupname /s/mlocate/locate/' Makefile.in
+   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib
+   make
+}
+
+check() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make check
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+
+   make DESTDIR=${pkgdir} install
+
+   chgrp 21 ${pkgdir}/usr/bin/locate
+   chmod 2755 ${pkgdir}/usr/bin/locate
+   ln -s locate ${pkgdir}/usr/bin/slocate
+
+   install -dm755 ${pkgdir}/var/lib
+   install -dm750 -g21 ${pkgdir}/var/lib/locate
+   
+   install -Dm644 ../updatedb.conf ${pkgdir}/etc/updatedb.conf
+   install -Dm744 ../updatedb.cron ${pkgdir}/etc/cron.daily/updatedb
+}

Deleted: core-i686/updatedb.conf

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

2012-09-23 Thread Gaetan Bisson
Date: Sunday, September 23, 2012 @ 18:56:31
  Author: bisson
Revision: 166972

upstream update

Modified:
  audacious/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-09-23 22:22:21 UTC (rev 166971)
+++ PKGBUILD2012-09-23 22:56:31 UTC (rev 166972)
@@ -4,17 +4,17 @@
 # Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=audacious
-pkgver=3.3.1
+pkgver=3.3.2
 pkgrel=1
 pkgdesc='Lightweight, advanced audio player focused on audio quality'
 url='http://audacious-media-player.org/'
-license=('GPL3')
+license=('custom:BSD')
 arch=('i686' 'x86_64')
 depends=('gtk3' 'dbus-glib' 'libguess' 'libsm' 'audacious-plugins'
  'hicolor-icon-theme' 'desktop-file-utils')
 optdepends=('unzip: zipped skins support')
 
source=(http://distfiles.audacious-media-player.org/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('6ccd6856df853d939ea41402be4bfc76a5423a8f')
+sha1sums=('bab3bcb267b8b333570c85cae9590470fe509eb9')
 
 provides=('audacious-player')
 replaces=('audacious-player')
@@ -29,4 +29,5 @@
 package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
+   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }



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

2012-09-23 Thread Gaetan Bisson
Date: Sunday, September 23, 2012 @ 18:56:56
  Author: bisson
Revision: 166973

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

Added:
  audacious/repos/extra-i686/PKGBUILD
(from rev 166972, audacious/trunk/PKGBUILD)
  audacious/repos/extra-i686/install
(from rev 166972, audacious/trunk/install)
  audacious/repos/extra-x86_64/PKGBUILD
(from rev 166972, audacious/trunk/PKGBUILD)
  audacious/repos/extra-x86_64/install
(from rev 166972, audacious/trunk/install)
Deleted:
  audacious/repos/extra-i686/PKGBUILD
  audacious/repos/extra-i686/install
  audacious/repos/extra-x86_64/PKGBUILD
  audacious/repos/extra-x86_64/install

---+
 extra-i686/PKGBUILD   |   65 
 extra-i686/install|   26 +--
 extra-x86_64/PKGBUILD |   65 
 extra-x86_64/install  |   26 +--
 4 files changed, 92 insertions(+), 90 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-09-23 22:56:31 UTC (rev 166972)
+++ extra-i686/PKGBUILD 2012-09-23 22:56:56 UTC (rev 166973)
@@ -1,32 +0,0 @@
-# $Id$
-# Contributor: Alexander Fehr pizzapunk gmail com
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=audacious
-pkgver=3.3.1
-pkgrel=1
-pkgdesc='Lightweight, advanced audio player focused on audio quality'
-url='http://audacious-media-player.org/'
-license=('GPL3')
-arch=('i686' 'x86_64')
-depends=('gtk3' 'dbus-glib' 'libguess' 'libsm' 'audacious-plugins'
- 'hicolor-icon-theme' 'desktop-file-utils')
-optdepends=('unzip: zipped skins support')
-source=(http://distfiles.audacious-media-player.org/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('6ccd6856df853d939ea41402be4bfc76a5423a8f')
-
-provides=('audacious-player')
-replaces=('audacious-player')
-install=install
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   ./configure --prefix=/usr --with-buildstamp='Arch Linux'
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-}

Copied: audacious/repos/extra-i686/PKGBUILD (from rev 166972, 
audacious/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-09-23 22:56:56 UTC (rev 166973)
@@ -0,0 +1,33 @@
+# $Id$
+# Contributor: Alexander Fehr pizzapunk gmail com
+# Contributor: Giovanni Scafora giova...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=audacious
+pkgver=3.3.2
+pkgrel=1
+pkgdesc='Lightweight, advanced audio player focused on audio quality'
+url='http://audacious-media-player.org/'
+license=('custom:BSD')
+arch=('i686' 'x86_64')
+depends=('gtk3' 'dbus-glib' 'libguess' 'libsm' 'audacious-plugins'
+ 'hicolor-icon-theme' 'desktop-file-utils')
+optdepends=('unzip: zipped skins support')
+source=(http://distfiles.audacious-media-player.org/${pkgname}-${pkgver}.tar.bz2;)
+sha1sums=('bab3bcb267b8b333570c85cae9590470fe509eb9')
+
+provides=('audacious-player')
+replaces=('audacious-player')
+install=install
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   ./configure --prefix=/usr --with-buildstamp='Arch Linux'
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+}

Deleted: extra-i686/install
===
--- extra-i686/install  2012-09-23 22:56:31 UTC (rev 166972)
+++ extra-i686/install  2012-09-23 22:56:56 UTC (rev 166973)
@@ -1,13 +0,0 @@
-post_install() {
-   update-desktop-database -q
-   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-   true
-}
-
-post_upgrade() {
-   post_install
-}
-
-post_remove() {
-   post_install
-}

Copied: audacious/repos/extra-i686/install (from rev 166972, 
audacious/trunk/install)
===
--- extra-i686/install  (rev 0)
+++ extra-i686/install  2012-09-23 22:56:56 UTC (rev 166973)
@@ -0,0 +1,13 @@
+post_install() {
+   update-desktop-database -q
+   gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+   true
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Deleted: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2012-09-23 22:56:31 UTC (rev 166972)
+++ extra-x86_64/PKGBUILD   2012-09-23 22:56:56 UTC (rev 166973)
@@ -1,32 +0,0 @@
-# $Id$
-# Contributor: Alexander Fehr pizzapunk gmail com
-# Contributor: Giovanni Scafora giova...@archlinux.org
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=audacious
-pkgver=3.3.1
-pkgrel=1

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

2012-09-23 Thread Gaetan Bisson
Date: Sunday, September 23, 2012 @ 18:57:12
  Author: bisson
Revision: 166974

upstream update

Modified:
  audacious-plugins/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2012-09-23 22:56:56 UTC (rev 166973)
+++ PKGBUILD2012-09-23 22:57:12 UTC (rev 166974)
@@ -4,11 +4,11 @@
 # Maintainer: Gaetan Bisson bis...@archlinux.org
 
 pkgname=audacious-plugins
-pkgver=3.3.1
+pkgver=3.3.2
 pkgrel=1
 pkgdesc='Plugins for Audacious'
 url='http://audacious-media-player.org/'
-license=('GPL')
+license=('custom:BSD' 'GPL')
 arch=('i686' 'x86_64')
 
 makedepends=(audacious=${pkgver}
@@ -44,7 +44,7 @@
 'libcue: CUE playlist format')
 
 
source=(http://distfiles.audacious-media-player.org/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('7775ff82a7fe2a1de7eb8a76322718c845a1f225')
+sha1sums=('869d3820263ff35609bfc6f2e69885a00d660513')
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
@@ -60,4 +60,5 @@
 package() {
cd ${srcdir}/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
+   install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
 }



[arch-commits] Commit in audacious-plugins/repos (4 files)

2012-09-23 Thread Gaetan Bisson
Date: Sunday, September 23, 2012 @ 18:57:35
  Author: bisson
Revision: 166975

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

Added:
  audacious-plugins/repos/extra-i686/PKGBUILD
(from rev 166974, audacious-plugins/trunk/PKGBUILD)
  audacious-plugins/repos/extra-x86_64/PKGBUILD
(from rev 166974, audacious-plugins/trunk/PKGBUILD)
Deleted:
  audacious-plugins/repos/extra-i686/PKGBUILD
  audacious-plugins/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-09-23 22:57:12 UTC (rev 166974)
+++ extra-i686/PKGBUILD 2012-09-23 22:57:35 UTC (rev 166975)
@@ -1,63 +0,0 @@
-# $Id$
-# Contributor: Alexander Fehr pizzapunk gmail com
-# Contributor: William Rea sillywi...@gmail.com
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=audacious-plugins
-pkgver=3.3.1
-pkgrel=1
-pkgdesc='Plugins for Audacious'
-url='http://audacious-media-player.org/'
-license=('GPL')
-arch=('i686' 'x86_64')
-
-makedepends=(audacious=${pkgver}
- 'oss' 'alsa-lib' 'pulseaudio' 'jack2' 'lame' 'libvorbis' 'flac'
- 'mpg123' 'faad2' 'ffmpeg' 'libmodplug' 'fluidsynth' 'libcdio' 
'libsidplay' 'wavpack'
- 'libnotify' 'lirc-utils' 'curl' 'libmtp'
- 'neon' 'libmms' 'libcue')
-
-optdepends=('oss: Open Sound System v4 output'
-'alsa-lib: Advanced Linux Sound Arch. output'
-'pulseaudio: PulseAudio output'
-'jack2: Jack Audio Connection Kit output'
-'lame: FileWriter MP3 output'
-'libvorbis: Vorbis input, FileWriter Vorbis output'
-'flac: FLAC input, FileWriter FLAC output'
-
-'mpg123: MP3 input'
-'faad2: AAC input'
-'ffmpeg: ffaudio input'
-'libmodplug: modplug input'
-'fluidsynth: MIDI FluidSynth backend input'
-'libcdio: CD Digital Audio input'
-'libsidplay: Commodore 64 audio input'
-'wavpack: WavPack input'
-
-'libnotify: libnotify OSD'
-'lirc-utils: LIRC'
-'curl: AudioScrobbler Client'
-'libmtp: Upload to MTP device'
-
-'neon: neon-based http transport'
-'libmms: libmms-based mms transport'
-'libcue: CUE playlist format')
-
-source=(http://distfiles.audacious-media-player.org/${pkgname}-${pkgver}.tar.bz2;)
-sha1sums=('7775ff82a7fe2a1de7eb8a76322718c845a1f225')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-
-   ./configure \
-   --prefix=/usr \
-   --enable-amidiplug \
-   --disable-adplug \
-
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-}

Copied: audacious-plugins/repos/extra-i686/PKGBUILD (from rev 166974, 
audacious-plugins/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-09-23 22:57:35 UTC (rev 166975)
@@ -0,0 +1,64 @@
+# $Id$
+# Contributor: Alexander Fehr pizzapunk gmail com
+# Contributor: William Rea sillywi...@gmail.com
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=audacious-plugins
+pkgver=3.3.2
+pkgrel=1
+pkgdesc='Plugins for Audacious'
+url='http://audacious-media-player.org/'
+license=('custom:BSD' 'GPL')
+arch=('i686' 'x86_64')
+
+makedepends=(audacious=${pkgver}
+ 'oss' 'alsa-lib' 'pulseaudio' 'jack2' 'lame' 'libvorbis' 'flac'
+ 'mpg123' 'faad2' 'ffmpeg' 'libmodplug' 'fluidsynth' 'libcdio' 
'libsidplay' 'wavpack'
+ 'libnotify' 'lirc-utils' 'curl' 'libmtp'
+ 'neon' 'libmms' 'libcue')
+
+optdepends=('oss: Open Sound System v4 output'
+'alsa-lib: Advanced Linux Sound Arch. output'
+'pulseaudio: PulseAudio output'
+'jack2: Jack Audio Connection Kit output'
+'lame: FileWriter MP3 output'
+'libvorbis: Vorbis input, FileWriter Vorbis output'
+'flac: FLAC input, FileWriter FLAC output'
+
+'mpg123: MP3 input'
+'faad2: AAC input'
+'ffmpeg: ffaudio input'
+'libmodplug: modplug input'
+'fluidsynth: MIDI FluidSynth backend input'
+'libcdio: CD Digital Audio input'
+'libsidplay: Commodore 64 audio input'
+'wavpack: WavPack input'
+
+'libnotify: libnotify OSD'
+'lirc-utils: LIRC'
+'curl: AudioScrobbler Client'
+'libmtp: Upload to MTP device'
+
+'neon: neon-based http transport'
+'libmms: libmms-based mms transport'
+'libcue: CUE playlist format')
+

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

2012-09-23 Thread Gaetan Bisson
Date: Monday, September 24, 2012 @ 00:56:35
  Author: bisson
Revision: 166976

rebuild against libuim.so.8

Added:
  scim-uim/trunk/fix-gcc43-build.patch
(from rev 166975, scim-uim/trunk/scim-uim-0.2.0-fix-gcc43-build.patch)
Modified:
  scim-uim/trunk/PKGBUILD
Deleted:
  scim-uim/trunk/scim-uim-0.2.0-fix-gcc43-build.patch

--+
 PKGBUILD |6 +++---
 fix-gcc43-build.patch|   10 ++
 scim-uim-0.2.0-fix-gcc43-build.patch |   10 --
 3 files changed, 13 insertions(+), 13 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-09-23 22:57:35 UTC (rev 166975)
+++ PKGBUILD2012-09-24 04:56:35 UTC (rev 166976)
@@ -4,7 +4,7 @@
 
 pkgname=scim-uim
 pkgver=0.2.0
-pkgrel=5
+pkgrel=6
 pkgdesc='UIM bridging input engine for SCIM'
 url='http://www.scim-im.org/'
 license=('GPL')
@@ -12,7 +12,7 @@
 depends=('scim' 'uim')
 arch=('i686' 'x86_64')
 
source=(http://downloads.sourceforge.net/sourceforge/scim/${pkgname}-${pkgver}.tar.gz;
-'scim-uim-0.2.0-fix-gcc43-build.patch'
+'fix-gcc43-build.patch'
 'uim-1.5.5-header.patch')
 sha1sums=('456621d5969b6552c3c33c83cf295aa4134fff0a'
   'a9d67946f956d0572c73065e2b4b268bfdf149e3'
@@ -20,7 +20,7 @@
 
 build() {
cd ${srcdir}/${pkgname}-${pkgver}
-   patch -p1 -i ../scim-uim-0.2.0-fix-gcc43-build.patch
+   patch -p1 -i ../fix-gcc43-build.patch
patch -p1 -i ../uim-1.5.5-header.patch
./configure --prefix=/usr --sysconfdir=/etc --disable-static
make

Copied: scim-uim/trunk/fix-gcc43-build.patch (from rev 166975, 
scim-uim/trunk/scim-uim-0.2.0-fix-gcc43-build.patch)
===
--- fix-gcc43-build.patch   (rev 0)
+++ fix-gcc43-build.patch   2012-09-24 04:56:35 UTC (rev 166976)
@@ -0,0 +1,10 @@
+--- scim-uim-0.2.0/src/scim_uim_imengine.cpp   2007-04-10 07:43:59.0 
+0200
 scim-uim-0.2.0/src/scim_uim_imengine.cpp.gcc43buildfixed   2008-03-23 
10:53:23.0 +0100
+@@ -32,6 +32,7 @@
+   #include config.h
+ #endif
+ 
++#include string.h
+ #include scim.h
+ #include scim_uim_imengine.h
+ #include uim/uim-compat-scm.h

Deleted: scim-uim-0.2.0-fix-gcc43-build.patch
===
--- scim-uim-0.2.0-fix-gcc43-build.patch2012-09-23 22:57:35 UTC (rev 
166975)
+++ scim-uim-0.2.0-fix-gcc43-build.patch2012-09-24 04:56:35 UTC (rev 
166976)
@@ -1,10 +0,0 @@
 scim-uim-0.2.0/src/scim_uim_imengine.cpp   2007-04-10 07:43:59.0 
+0200
-+++ scim-uim-0.2.0/src/scim_uim_imengine.cpp.gcc43buildfixed   2008-03-23 
10:53:23.0 +0100
-@@ -32,6 +32,7 @@
-   #include config.h
- #endif
- 
-+#include string.h
- #include scim.h
- #include scim_uim_imengine.h
- #include uim/uim-compat-scm.h



[arch-commits] Commit in scim-uim/repos (12 files)

2012-09-23 Thread Gaetan Bisson
Date: Monday, September 24, 2012 @ 00:57:10
  Author: bisson
Revision: 166977

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

Added:
  scim-uim/repos/extra-i686/PKGBUILD
(from rev 166976, scim-uim/trunk/PKGBUILD)
  scim-uim/repos/extra-i686/fix-gcc43-build.patch
(from rev 166976, scim-uim/trunk/fix-gcc43-build.patch)
  scim-uim/repos/extra-i686/uim-1.5.5-header.patch
(from rev 166976, scim-uim/trunk/uim-1.5.5-header.patch)
  scim-uim/repos/extra-x86_64/PKGBUILD
(from rev 166976, scim-uim/trunk/PKGBUILD)
  scim-uim/repos/extra-x86_64/fix-gcc43-build.patch
(from rev 166976, scim-uim/trunk/fix-gcc43-build.patch)
  scim-uim/repos/extra-x86_64/uim-1.5.5-header.patch
(from rev 166976, scim-uim/trunk/uim-1.5.5-header.patch)
Deleted:
  scim-uim/repos/extra-i686/PKGBUILD
  scim-uim/repos/extra-i686/scim-uim-0.2.0-fix-gcc43-build.patch
  scim-uim/repos/extra-i686/uim-1.5.5-header.patch
  scim-uim/repos/extra-x86_64/PKGBUILD
  scim-uim/repos/extra-x86_64/scim-uim-0.2.0-fix-gcc43-build.patch
  scim-uim/repos/extra-x86_64/uim-1.5.5-header.patch

---+
 extra-i686/PKGBUILD   |   64 ++--
 extra-i686/fix-gcc43-build.patch  |   10 +++
 extra-i686/scim-uim-0.2.0-fix-gcc43-build.patch   |   10 ---
 extra-i686/uim-1.5.5-header.patch |   26 
 extra-x86_64/PKGBUILD |   64 ++--
 extra-x86_64/fix-gcc43-build.patch|   10 +++
 extra-x86_64/scim-uim-0.2.0-fix-gcc43-build.patch |   10 ---
 extra-x86_64/uim-1.5.5-header.patch   |   26 
 8 files changed, 110 insertions(+), 110 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-09-24 04:56:35 UTC (rev 166976)
+++ extra-i686/PKGBUILD 2012-09-24 04:57:10 UTC (rev 166977)
@@ -1,32 +0,0 @@
-# $Id$
-# Contributor: damir da...@archlinux.org
-# Maintainer: Gaetan Bisson bis...@archlinux.org
-
-pkgname=scim-uim
-pkgver=0.2.0
-pkgrel=5
-pkgdesc='UIM bridging input engine for SCIM'
-url='http://www.scim-im.org/'
-license=('GPL')
-options=('!libtool')
-depends=('scim' 'uim')
-arch=('i686' 'x86_64')
-source=(http://downloads.sourceforge.net/sourceforge/scim/${pkgname}-${pkgver}.tar.gz;
-'scim-uim-0.2.0-fix-gcc43-build.patch'
-'uim-1.5.5-header.patch')
-sha1sums=('456621d5969b6552c3c33c83cf295aa4134fff0a'
-  'a9d67946f956d0572c73065e2b4b268bfdf149e3'
-  '3b083260910f7855b5446960ab1203c052f4b56c')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   patch -p1 -i ../scim-uim-0.2.0-fix-gcc43-build.patch
-   patch -p1 -i ../uim-1.5.5-header.patch
-   ./configure --prefix=/usr --sysconfdir=/etc --disable-static
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   make DESTDIR=${pkgdir} install
-}

Copied: scim-uim/repos/extra-i686/PKGBUILD (from rev 166976, 
scim-uim/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-09-24 04:57:10 UTC (rev 166977)
@@ -0,0 +1,32 @@
+# $Id$
+# Contributor: damir da...@archlinux.org
+# Maintainer: Gaetan Bisson bis...@archlinux.org
+
+pkgname=scim-uim
+pkgver=0.2.0
+pkgrel=6
+pkgdesc='UIM bridging input engine for SCIM'
+url='http://www.scim-im.org/'
+license=('GPL')
+options=('!libtool')
+depends=('scim' 'uim')
+arch=('i686' 'x86_64')
+source=(http://downloads.sourceforge.net/sourceforge/scim/${pkgname}-${pkgver}.tar.gz;
+'fix-gcc43-build.patch'
+'uim-1.5.5-header.patch')
+sha1sums=('456621d5969b6552c3c33c83cf295aa4134fff0a'
+  'a9d67946f956d0572c73065e2b4b268bfdf149e3'
+  '3b083260910f7855b5446960ab1203c052f4b56c')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   patch -p1 -i ../fix-gcc43-build.patch
+   patch -p1 -i ../uim-1.5.5-header.patch
+   ./configure --prefix=/usr --sysconfdir=/etc --disable-static
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   make DESTDIR=${pkgdir} install
+}

Copied: scim-uim/repos/extra-i686/fix-gcc43-build.patch (from rev 166976, 
scim-uim/trunk/fix-gcc43-build.patch)
===
--- extra-i686/fix-gcc43-build.patch(rev 0)
+++ extra-i686/fix-gcc43-build.patch2012-09-24 04:57:10 UTC (rev 166977)
@@ -0,0 +1,10 @@
+--- scim-uim-0.2.0/src/scim_uim_imengine.cpp   2007-04-10 07:43:59.0 
+0200
 scim-uim-0.2.0/src/scim_uim_imengine.cpp.gcc43buildfixed   2008-03-23 
10:53:23.0 +0100
+@@ -32,6 +32,7 @@
+   #include config.h
+ #endif
+ 
++#include string.h
+ #include scim.h
+ #include scim_uim_imengine.h
+ #include uim/uim-compat-scm.h

Deleted: extra-i686/scim-uim-0.2.0-fix-gcc43-build.patch