Date: Wednesday, February 6, 2013 @ 09:36:45
  Author: andrea
Revision: 177128

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

Added:
  kdeadmin/repos/testing-i686/
  kdeadmin/repos/testing-i686/PKGBUILD
    (from rev 177127, kdeadmin/trunk/PKGBUILD)
  kdeadmin/repos/testing-i686/kdeadmin.install
    (from rev 177127, kdeadmin/trunk/kdeadmin.install)
  kdeadmin/repos/testing-i686/syslog-path.patch
    (from rev 177127, kdeadmin/trunk/syslog-path.patch)
  kdeadmin/repos/testing-x86_64/
  kdeadmin/repos/testing-x86_64/PKGBUILD
    (from rev 177127, kdeadmin/trunk/PKGBUILD)
  kdeadmin/repos/testing-x86_64/kdeadmin.install
    (from rev 177127, kdeadmin/trunk/kdeadmin.install)
  kdeadmin/repos/testing-x86_64/syslog-path.patch
    (from rev 177127, kdeadmin/trunk/syslog-path.patch)

----------------------------------+
 testing-i686/PKGBUILD            |   64 +++++++++++++++++++++++++++++++++++++
 testing-i686/kdeadmin.install    |   11 ++++++
 testing-i686/syslog-path.patch   |   11 ++++++
 testing-x86_64/PKGBUILD          |   64 +++++++++++++++++++++++++++++++++++++
 testing-x86_64/kdeadmin.install  |   11 ++++++
 testing-x86_64/syslog-path.patch |   11 ++++++
 6 files changed, 172 insertions(+)

Copied: kdeadmin/repos/testing-i686/PKGBUILD (from rev 177127, 
kdeadmin/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD                               (rev 0)
+++ testing-i686/PKGBUILD       2013-02-06 08:36:45 UTC (rev 177128)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Andrea Scarpino <[email protected]>
+# Contributor: Pierre Schmitz <[email protected]>
+
+pkgbase=kdeadmin
+pkgname=('kdeadmin-kcron'
+         'kdeadmin-ksystemlog'
+         'kdeadmin-kuser')
+pkgver=4.10.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeadmin')
+makedepends=('cmake' 'automoc4' 'kdebindings-python2' 
'system-config-printer-common')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";
+        'syslog-path.patch')
+sha1sums=('d6f66f9a5d6a42b80e130654a62dfe61ce82dd94'
+          '20095ce6e0f3e5b6800a7c6e52de6fddba62c031')
+
+build() {
+       cd ${srcdir}/${pkgbase}-${pkgver}
+       patch -p1 -i ${srcdir}/syslog-path.patch
+
+       cd ${srcdir}
+       mkdir build
+       cd build
+       cmake ../${pkgbase}-${pkgver} \
+               -DCMAKE_BUILD_TYPE=Release \
+               -DKDE4_BUILD_TESTS=OFF \
+               -DCMAKE_INSTALL_PREFIX=/usr \
+               -DBUILD_strigi-analyzer=OFF
+       make
+}
+
+package_kdeadmin-kcron() {
+       pkgdesc='Configure and schedule tasks'
+    url='http://userbase.kde.org/KCron'
+       depends=('kdelibs')
+       cd $srcdir/build/kcron
+       make DESTDIR=$pkgdir install
+       cd $srcdir/build/doc/kcron
+       make DESTDIR=$pkgdir install
+}
+
+package_kdeadmin-ksystemlog() {
+       pkgdesc='System log viewer tool'
+       depends=('kdebase-runtime')
+       url="http://kde.org/applications/system/ksystemlog/";
+       cd $srcdir/build/ksystemlog
+       make DESTDIR=$pkgdir install
+       cd $srcdir/build/doc/ksystemlog
+       make DESTDIR=$pkgdir install
+}
+
+package_kdeadmin-kuser() {
+       pkgdesc='User Manager'
+       depends=('kdebase-runtime' 'kdepimlibs')
+       url="http://kde.org/applications/system/kuser/";
+       install='kdeadmin.install'
+       cd $srcdir/build/kuser
+       make DESTDIR=$pkgdir install
+       cd $srcdir/build/doc/kuser
+       make DESTDIR=$pkgdir install
+}

Copied: kdeadmin/repos/testing-i686/kdeadmin.install (from rev 177127, 
kdeadmin/trunk/kdeadmin.install)
===================================================================
--- testing-i686/kdeadmin.install                               (rev 0)
+++ testing-i686/kdeadmin.install       2013-02-06 08:36:45 UTC (rev 177128)
@@ -0,0 +1,11 @@
+post_install() {
+       xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+       post_install
+}
+
+post_remove() {
+       post_install
+}

Copied: kdeadmin/repos/testing-i686/syslog-path.patch (from rev 177127, 
kdeadmin/trunk/syslog-path.patch)
===================================================================
--- testing-i686/syslog-path.patch                              (rev 0)
+++ testing-i686/syslog-path.patch      2013-02-06 08:36:45 UTC (rev 177128)
@@ -0,0 +1,11 @@
+--- kdeadmin-4.6.0/ksystemlog/src/modes/system/systemConfiguration.h~  
2011-01-27 14:24:29.840000005 +0100
++++ kdeadmin-4.6.0/ksystemlog/src/modes/system/systemConfiguration.h   
2011-01-27 14:24:53.803333335 +0100
+@@ -39,7 +39,7 @@
+               SystemConfiguration() :
+                       GenericLogModeConfiguration(
+                                       QLatin1String( SYSTEM_LOG_MODE_ID ),
+-                                      QStringList() << QLatin1String( 
"/var/log/syslog" ),
++                                      QStringList() << QLatin1String( 
"/var/log/messages.log" ),
+                                       QList<int>() << INFORMATION_LOG_LEVEL_ID
+                       ) {
+ 

Copied: kdeadmin/repos/testing-x86_64/PKGBUILD (from rev 177127, 
kdeadmin/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD                             (rev 0)
+++ testing-x86_64/PKGBUILD     2013-02-06 08:36:45 UTC (rev 177128)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Andrea Scarpino <[email protected]>
+# Contributor: Pierre Schmitz <[email protected]>
+
+pkgbase=kdeadmin
+pkgname=('kdeadmin-kcron'
+         'kdeadmin-ksystemlog'
+         'kdeadmin-kuser')
+pkgver=4.10.0
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+groups=('kde' 'kdeadmin')
+makedepends=('cmake' 'automoc4' 'kdebindings-python2' 
'system-config-printer-common')
+source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz";
+        'syslog-path.patch')
+sha1sums=('d6f66f9a5d6a42b80e130654a62dfe61ce82dd94'
+          '20095ce6e0f3e5b6800a7c6e52de6fddba62c031')
+
+build() {
+       cd ${srcdir}/${pkgbase}-${pkgver}
+       patch -p1 -i ${srcdir}/syslog-path.patch
+
+       cd ${srcdir}
+       mkdir build
+       cd build
+       cmake ../${pkgbase}-${pkgver} \
+               -DCMAKE_BUILD_TYPE=Release \
+               -DKDE4_BUILD_TESTS=OFF \
+               -DCMAKE_INSTALL_PREFIX=/usr \
+               -DBUILD_strigi-analyzer=OFF
+       make
+}
+
+package_kdeadmin-kcron() {
+       pkgdesc='Configure and schedule tasks'
+    url='http://userbase.kde.org/KCron'
+       depends=('kdelibs')
+       cd $srcdir/build/kcron
+       make DESTDIR=$pkgdir install
+       cd $srcdir/build/doc/kcron
+       make DESTDIR=$pkgdir install
+}
+
+package_kdeadmin-ksystemlog() {
+       pkgdesc='System log viewer tool'
+       depends=('kdebase-runtime')
+       url="http://kde.org/applications/system/ksystemlog/";
+       cd $srcdir/build/ksystemlog
+       make DESTDIR=$pkgdir install
+       cd $srcdir/build/doc/ksystemlog
+       make DESTDIR=$pkgdir install
+}
+
+package_kdeadmin-kuser() {
+       pkgdesc='User Manager'
+       depends=('kdebase-runtime' 'kdepimlibs')
+       url="http://kde.org/applications/system/kuser/";
+       install='kdeadmin.install'
+       cd $srcdir/build/kuser
+       make DESTDIR=$pkgdir install
+       cd $srcdir/build/doc/kuser
+       make DESTDIR=$pkgdir install
+}

Copied: kdeadmin/repos/testing-x86_64/kdeadmin.install (from rev 177127, 
kdeadmin/trunk/kdeadmin.install)
===================================================================
--- testing-x86_64/kdeadmin.install                             (rev 0)
+++ testing-x86_64/kdeadmin.install     2013-02-06 08:36:45 UTC (rev 177128)
@@ -0,0 +1,11 @@
+post_install() {
+       xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+       post_install
+}
+
+post_remove() {
+       post_install
+}

Copied: kdeadmin/repos/testing-x86_64/syslog-path.patch (from rev 177127, 
kdeadmin/trunk/syslog-path.patch)
===================================================================
--- testing-x86_64/syslog-path.patch                            (rev 0)
+++ testing-x86_64/syslog-path.patch    2013-02-06 08:36:45 UTC (rev 177128)
@@ -0,0 +1,11 @@
+--- kdeadmin-4.6.0/ksystemlog/src/modes/system/systemConfiguration.h~  
2011-01-27 14:24:29.840000005 +0100
++++ kdeadmin-4.6.0/ksystemlog/src/modes/system/systemConfiguration.h   
2011-01-27 14:24:53.803333335 +0100
+@@ -39,7 +39,7 @@
+               SystemConfiguration() :
+                       GenericLogModeConfiguration(
+                                       QLatin1String( SYSTEM_LOG_MODE_ID ),
+-                                      QStringList() << QLatin1String( 
"/var/log/syslog" ),
++                                      QStringList() << QLatin1String( 
"/var/log/messages.log" ),
+                                       QList<int>() << INFORMATION_LOG_LEVEL_ID
+                       ) {
+ 

Reply via email to