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

Allan McRae allan at archlinux.org
Tue Oct 16 11:53:51 UTC 2012


    Date: Tuesday, October 16, 2012 @ 07:53:50
  Author: allan
Revision: 168841

db-move: moved konversation from [staging] to [testing] (i686, x86_64)

Added:
  konversation/repos/testing-i686/
  konversation/repos/testing-i686/PKGBUILD
    (from rev 168833, konversation/repos/staging-i686/PKGBUILD)
  konversation/repos/testing-i686/konversation.install
    (from rev 168833, konversation/repos/staging-i686/konversation.install)
  konversation/repos/testing-x86_64/
  konversation/repos/testing-x86_64/PKGBUILD
    (from rev 168833, konversation/repos/staging-x86_64/PKGBUILD)
  konversation/repos/testing-x86_64/konversation.install
    (from rev 168833, konversation/repos/staging-x86_64/konversation.install)
Deleted:
  konversation/repos/staging-i686/
  konversation/repos/staging-x86_64/

-------------------------------------+
 testing-i686/PKGBUILD               |   41 ++++++++++++++++++++++++++++++++++
 testing-i686/konversation.install   |   12 +++++++++
 testing-x86_64/PKGBUILD             |   41 ++++++++++++++++++++++++++++++++++
 testing-x86_64/konversation.install |   12 +++++++++
 4 files changed, 106 insertions(+)

Copied: konversation/repos/testing-i686/PKGBUILD (from rev 168833, konversation/repos/staging-i686/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2012-10-16 11:53:50 UTC (rev 168841)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault <stephane at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: James Rayner <iphitus at gmail.com>
+# Contributor: Sergio Jovani Guzman <moret at paretux.org>
+
+pkgname=konversation
+pkgver=1.4
+pkgrel=3
+pkgdesc="A user friendly IRC client for KDE"
+arch=('i686' 'x86_64')
+url="http://konversation.kde.org"
+depends=('kdebase-runtime' 'kdepimlibs')
+makedepends=('automoc4' 'cmake' 'pkgconfig' 'docbook-xml')
+optdepends=('python: python scripting support')
+license=('GPL2' 'FDL')
+install=${pkgname}.install
+options=('!makeflags')
+source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
+sha1sums=('90741721f68a02d4345b9006a8ae53bc49ef3777')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_SKIP_RPATH=ON \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+  
+  # Remove a bunch of symlinks pointing to non-existant files
+  for _lang in pt_BR uk sv et de en nl; do
+     rm "${pkgdir}"/usr/share/doc/kde/html/${_lang}/konversation/common
+  done
+}

Copied: konversation/repos/testing-i686/konversation.install (from rev 168833, konversation/repos/staging-i686/konversation.install)
===================================================================
--- testing-i686/konversation.install	                        (rev 0)
+++ testing-i686/konversation.install	2012-10-16 11:53:50 UTC (rev 168841)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}

Copied: konversation/repos/testing-x86_64/PKGBUILD (from rev 168833, konversation/repos/staging-x86_64/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2012-10-16 11:53:50 UTC (rev 168841)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault <stephane at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+# Contributor: James Rayner <iphitus at gmail.com>
+# Contributor: Sergio Jovani Guzman <moret at paretux.org>
+
+pkgname=konversation
+pkgver=1.4
+pkgrel=3
+pkgdesc="A user friendly IRC client for KDE"
+arch=('i686' 'x86_64')
+url="http://konversation.kde.org"
+depends=('kdebase-runtime' 'kdepimlibs')
+makedepends=('automoc4' 'cmake' 'pkgconfig' 'docbook-xml')
+optdepends=('python: python scripting support')
+license=('GPL2' 'FDL')
+install=${pkgname}.install
+options=('!makeflags')
+source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz")
+sha1sums=('90741721f68a02d4345b9006a8ae53bc49ef3777')
+
+build() {
+  cd "${srcdir}"
+  mkdir build
+  cd build
+  cmake ../${pkgname}-${pkgver} \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DCMAKE_SKIP_RPATH=ON \
+    -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}"/build
+  make DESTDIR="${pkgdir}" install
+  
+  # Remove a bunch of symlinks pointing to non-existant files
+  for _lang in pt_BR uk sv et de en nl; do
+     rm "${pkgdir}"/usr/share/doc/kde/html/${_lang}/konversation/common
+  done
+}

Copied: konversation/repos/testing-x86_64/konversation.install (from rev 168833, konversation/repos/staging-x86_64/konversation.install)
===================================================================
--- testing-x86_64/konversation.install	                        (rev 0)
+++ testing-x86_64/konversation.install	2012-10-16 11:53:50 UTC (rev 168841)
@@ -0,0 +1,12 @@
+post_install() {
+   xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+   update-desktop-database -q
+}
+
+post_upgrade() {
+   post_install
+}
+
+post_remove() {
+   post_install
+}




More information about the arch-commits mailing list