[arch-commits] Commit in kate/repos (8 files)
Antonio Rojas
arojas at archlinux.org
Tue Feb 16 08:12:56 UTC 2016
Date: Tuesday, February 16, 2016 @ 09:12:55
Author: arojas
Revision: 259425
archrelease: copy trunk to testing-i686, testing-x86_64
Added:
kate/repos/testing-i686/
kate/repos/testing-i686/PKGBUILD
(from rev 259424, kate/trunk/PKGBUILD)
kate/repos/testing-i686/kate.install
(from rev 259424, kate/trunk/kate.install)
kate/repos/testing-i686/kwrite.install
(from rev 259424, kate/trunk/kwrite.install)
kate/repos/testing-x86_64/
kate/repos/testing-x86_64/PKGBUILD
(from rev 259424, kate/trunk/PKGBUILD)
kate/repos/testing-x86_64/kate.install
(from rev 259424, kate/trunk/kate.install)
kate/repos/testing-x86_64/kwrite.install
(from rev 259424, kate/trunk/kwrite.install)
-------------------------------+
testing-i686/PKGBUILD | 70 ++++++++++++++++++++++++++++++++++++++++
testing-i686/kate.install | 13 +++++++
testing-i686/kwrite.install | 12 ++++++
testing-x86_64/PKGBUILD | 70 ++++++++++++++++++++++++++++++++++++++++
testing-x86_64/kate.install | 13 +++++++
testing-x86_64/kwrite.install | 12 ++++++
6 files changed, 190 insertions(+)
Copied: kate/repos/testing-i686/PKGBUILD (from rev 259424, kate/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD (rev 0)
+++ testing-i686/PKGBUILD 2016-02-16 08:12:55 UTC (rev 259425)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgbase=kate
+pkgname=('kwrite'
+ 'kate')
+pkgver=15.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework' 'knewstuff' 'ktexteditor'
+ 'threadweaver' 'kitemmodels' 'kactivities')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz")
+sha1sums=('35a9f131b2f333f2758a13d7ee972454f40cd7b9')
+
+prepare() {
+ mkdir -p build
+}
+
+build() {
+ cd build
+ cmake ../${pkgbase}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DSYSCONF_INSTALL_DIR=/etc \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DBUILD_TESTING=OFF
+ make
+}
+
+package_kwrite() {
+ pkgdesc="Text Editor"
+ groups=('kde-applications' 'kdebase')
+ url="http://www.kde.org/applications/utilities/kwrite/"
+ depends=('ktexteditor' 'kded' 'kactivities' 'hicolor-icon-theme')
+ install='kwrite.install'
+ replaces=('kdebase-kwrite')
+ conflicts=('kdebase-kwrite')
+ provides=('kdebase-kwrite')
+
+ cd build/kwrite
+ make DESTDIR="${pkgdir}" install
+
+ cd ../../build/doc/kwrite
+ make DESTDIR="${pkgdir}" install
+}
+
+package_kate() {
+ pkgdesc="Advanced Text Editor"
+ groups=('kde-applications' 'kdebase')
+ url="http://www.kde.org/applications/utilities/kate/"
+ depends=('knewstuff' 'ktexteditor' 'threadweaver' 'kded' 'kitemmodels' 'kactivities' 'hicolor-icon-theme')
+ install='kate.install'
+ replaces=('kdesdk-kate')
+ conflicts=('kdesdk-kate')
+ provides=('kdesdk-kate')
+ optdepends=('konsole: open a terminal in Kate')
+
+ cd build/kate
+ make DESTDIR="${pkgdir}" install
+
+ cd ../../build/doc/kate
+ make DESTDIR="${pkgdir}" install
+
+ cd ../../../build/addons
+ make DESTDIR="${pkgdir}" install
+}
Copied: kate/repos/testing-i686/kate.install (from rev 259424, kate/trunk/kate.install)
===================================================================
--- testing-i686/kate.install (rev 0)
+++ testing-i686/kate.install 2016-02-16 08:12:55 UTC (rev 259425)
@@ -0,0 +1,13 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+ update-desktop-database -q
+ update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
Copied: kate/repos/testing-i686/kwrite.install (from rev 259424, kate/trunk/kwrite.install)
===================================================================
--- testing-i686/kwrite.install (rev 0)
+++ testing-i686/kwrite.install 2016-02-16 08:12:55 UTC (rev 259425)
@@ -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: kate/repos/testing-x86_64/PKGBUILD (from rev 259424, kate/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-02-16 08:12:55 UTC (rev 259425)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgbase=kate
+pkgname=('kwrite'
+ 'kate')
+pkgver=15.12.2
+pkgrel=1
+arch=('i686' 'x86_64')
+license=('GPL' 'LGPL' 'FDL')
+makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'plasma-framework' 'knewstuff' 'ktexteditor'
+ 'threadweaver' 'kitemmodels' 'kactivities')
+source=("http://download.kde.org/stable/applications/${pkgver}/src/${pkgbase}-${pkgver}.tar.xz")
+sha1sums=('35a9f131b2f333f2758a13d7ee972454f40cd7b9')
+
+prepare() {
+ mkdir -p build
+}
+
+build() {
+ cd build
+ cmake ../${pkgbase}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DSYSCONF_INSTALL_DIR=/etc \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DBUILD_TESTING=OFF
+ make
+}
+
+package_kwrite() {
+ pkgdesc="Text Editor"
+ groups=('kde-applications' 'kdebase')
+ url="http://www.kde.org/applications/utilities/kwrite/"
+ depends=('ktexteditor' 'kded' 'kactivities' 'hicolor-icon-theme')
+ install='kwrite.install'
+ replaces=('kdebase-kwrite')
+ conflicts=('kdebase-kwrite')
+ provides=('kdebase-kwrite')
+
+ cd build/kwrite
+ make DESTDIR="${pkgdir}" install
+
+ cd ../../build/doc/kwrite
+ make DESTDIR="${pkgdir}" install
+}
+
+package_kate() {
+ pkgdesc="Advanced Text Editor"
+ groups=('kde-applications' 'kdebase')
+ url="http://www.kde.org/applications/utilities/kate/"
+ depends=('knewstuff' 'ktexteditor' 'threadweaver' 'kded' 'kitemmodels' 'kactivities' 'hicolor-icon-theme')
+ install='kate.install'
+ replaces=('kdesdk-kate')
+ conflicts=('kdesdk-kate')
+ provides=('kdesdk-kate')
+ optdepends=('konsole: open a terminal in Kate')
+
+ cd build/kate
+ make DESTDIR="${pkgdir}" install
+
+ cd ../../build/doc/kate
+ make DESTDIR="${pkgdir}" install
+
+ cd ../../../build/addons
+ make DESTDIR="${pkgdir}" install
+}
Copied: kate/repos/testing-x86_64/kate.install (from rev 259424, kate/trunk/kate.install)
===================================================================
--- testing-x86_64/kate.install (rev 0)
+++ testing-x86_64/kate.install 2016-02-16 08:12:55 UTC (rev 259425)
@@ -0,0 +1,13 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+ update-desktop-database -q
+ update-mime-database usr/share/mime &> /dev/null
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
Copied: kate/repos/testing-x86_64/kwrite.install (from rev 259424, kate/trunk/kwrite.install)
===================================================================
--- testing-x86_64/kwrite.install (rev 0)
+++ testing-x86_64/kwrite.install 2016-02-16 08:12:55 UTC (rev 259425)
@@ -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