From 8157f2cc48729dc41bfa2772bbda657a77285fb7 Mon Sep 17 00:00:00 2001 From: groni Date: Thu, 20 Aug 2015 22:38:33 +0200 Subject: [PATCH 1/3] filelight rebuild and check --- desktop/kde/utils/filelight/pspec.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/desktop/kde/utils/filelight/pspec.xml b/desktop/kde/utils/filelight/pspec.xml index 7d8d450ac0..94a257ad7a 100644 --- a/desktop/kde/utils/filelight/pspec.xml +++ b/desktop/kde/utils/filelight/pspec.xml @@ -26,6 +26,17 @@ qt5-base kparts + kio + ki18n + solid + libgcc + kconfig + kxmlgui + kservice + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons /usr/lib From 44ebd0739a9e51cd9cab241419e13c45c6df758f Mon Sep 17 00:00:00 2001 From: groni Date: Thu, 20 Aug 2015 22:52:42 +0200 Subject: [PATCH 2/3] kcalc for pisi 2.0 build and check --- desktop/kde/utils/kcalc/actions.py | 19 ++++++++ desktop/kde/utils/kcalc/pspec.xml | 58 ++++++++++++++++++++++++ desktop/kde/utils/kcalc/translations.xml | 8 ++++ 3 files changed, 85 insertions(+) create mode 100644 desktop/kde/utils/kcalc/actions.py create mode 100644 desktop/kde/utils/kcalc/pspec.xml create mode 100644 desktop/kde/utils/kcalc/translations.xml diff --git a/desktop/kde/utils/kcalc/actions.py b/desktop/kde/utils/kcalc/actions.py new file mode 100644 index 0000000000..5c3ac43d05 --- /dev/null +++ b/desktop/kde/utils/kcalc/actions.py @@ -0,0 +1,19 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import pisitools +from pisi.actionsapi import kde5 + +def setup(): + kde5.configure() + +def build(): + kde5.make() + +def install(): + kde5.install() + + pisitools.dodoc("ChangeLog", "COPYING*", "README", "TODO") diff --git a/desktop/kde/utils/kcalc/pspec.xml b/desktop/kde/utils/kcalc/pspec.xml new file mode 100644 index 0000000000..a010e6ec71 --- /dev/null +++ b/desktop/kde/utils/kcalc/pspec.xml @@ -0,0 +1,58 @@ + + + + + kcalc + http://kde.org/applications/utilities/kcalc + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + kcalc + app:gui + A scientific calculator + KCalc is a calculator which offers many more mathematical functions than meet the eye on a first glance. + mirrors://kde/stable/applications/15.08.0/src/kcalc-15.08.0.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + gmp-devel + cmake + + + + + kcalc + + qt5-base + gmp + ki18n + libgcc + kconfig + kxmlgui + kguiaddons + kcoreaddons + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + + 2014-08-20 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + diff --git a/desktop/kde/utils/kcalc/translations.xml b/desktop/kde/utils/kcalc/translations.xml new file mode 100644 index 0000000000..dd5a55d7a3 --- /dev/null +++ b/desktop/kde/utils/kcalc/translations.xml @@ -0,0 +1,8 @@ + + + + kcalc + Bir bilimsel hesap makinesi + KCalc, pek çok matematik fonksiyonu barındıran bir hesap makinesi uygulamasıdır. + + From 4999b6d21132a617abdc80f851460b8ebbc99e85 Mon Sep 17 00:00:00 2001 From: groni Date: Thu, 20 Aug 2015 23:19:08 +0200 Subject: [PATCH 3/3] kcharselect for pisi 2.0 --- desktop/kde/utils/kcharselect/actions.py | 19 +++++++ desktop/kde/utils/kcharselect/pspec.xml | 53 +++++++++++++++++++ .../kde/utils/kcharselect/translations.xml | 8 +++ 3 files changed, 80 insertions(+) create mode 100644 desktop/kde/utils/kcharselect/actions.py create mode 100644 desktop/kde/utils/kcharselect/pspec.xml create mode 100644 desktop/kde/utils/kcharselect/translations.xml diff --git a/desktop/kde/utils/kcharselect/actions.py b/desktop/kde/utils/kcharselect/actions.py new file mode 100644 index 0000000000..718ab27b29 --- /dev/null +++ b/desktop/kde/utils/kcharselect/actions.py @@ -0,0 +1,19 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import pisitools +from pisi.actionsapi import kde5 + +def setup(): + kde5.configure() + +def build(): + kde5.make() + +def install(): + kde5.install() + + pisitools.dodoc("COPYING*") diff --git a/desktop/kde/utils/kcharselect/pspec.xml b/desktop/kde/utils/kcharselect/pspec.xml new file mode 100644 index 0000000000..799ea0d8fd --- /dev/null +++ b/desktop/kde/utils/kcharselect/pspec.xml @@ -0,0 +1,53 @@ + + + + + kcharselect + http://utils.kde.org/projects/kcharselect + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + kcharselect + app:gui + A character selector + KCharSelect is a tool to select special characters from all installed fonts and copy them into the clipboard. + mirrors://kde/stable/applications/15.08.0/src/kcharselect-15.08.0.tar.xz + + qt5-base + kdoctools-devel + cmake + extra-cmake-modules + + + + + kcharselect + + qt5-base + kxmlgui + ki18n + libgcc + kconfig + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/share/doc + /usr/bin + /usr/share + + + + + + 2014-08-20 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + diff --git a/desktop/kde/utils/kcharselect/translations.xml b/desktop/kde/utils/kcharselect/translations.xml new file mode 100644 index 0000000000..1a67582ead --- /dev/null +++ b/desktop/kde/utils/kcharselect/translations.xml @@ -0,0 +1,8 @@ + + + + kcharselect + Bir karakter seçici + KCharSelect, tüm yüklü yazı tiplerinden özel karakterleri seçmek ve bunları panoya yapıştırmak için bir araçtır. + +