From 8157f2cc48729dc41bfa2772bbda657a77285fb7 Mon Sep 17 00:00:00 2001 From: groni Date: Thu, 20 Aug 2015 22:38:33 +0200 Subject: [PATCH 1/8] 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/8] 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/8] 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. + + From 79dec055995bcedd194275625224c74a96dcdd67 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Fri, 21 Aug 2015 10:09:04 +0300 Subject: [PATCH 4/8] kbookmarks:fixded dep --- desktop/kde/framework/kbookmarks/pspec.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/kde/framework/kbookmarks/pspec.xml b/desktop/kde/framework/kbookmarks/pspec.xml index b02c29eddd..b72885665a 100644 --- a/desktop/kde/framework/kbookmarks/pspec.xml +++ b/desktop/kde/framework/kbookmarks/pspec.xml @@ -15,7 +15,7 @@ http://download.kde.org/stable/frameworks/5.13/kbookmarks-5.13.0.tar.xz qt5-base-devel - qt5-tools-devel + qt5-linguist kcoreaddons-devel kauth-devel kcodecs-devel @@ -61,7 +61,7 @@ kconfig-devel kiconthemes-devel kwidgetsaddons-devel - kxmlgui-devel + kxmlgui-devel /usr/include From 2458717c1b091e99543b2f9a9eb5683ad390ef01 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Fri, 21 Aug 2015 10:09:28 +0300 Subject: [PATCH 5/8] kdesignerplugin:fixded dep --- desktop/kde/framework/kdesignerplugin/pspec.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/desktop/kde/framework/kdesignerplugin/pspec.xml b/desktop/kde/framework/kdesignerplugin/pspec.xml index 7f04a9fc65..2bb3c07760 100644 --- a/desktop/kde/framework/kdesignerplugin/pspec.xml +++ b/desktop/kde/framework/kdesignerplugin/pspec.xml @@ -16,7 +16,7 @@ http://download.kde.org/stable/frameworks/5.13/kdesignerplugin-5.13.0.tar.xz qt5-base-devel - qt5-tools-devel + qt5-linguist kdoctools-devel kio-devel kauth-devel @@ -44,7 +44,7 @@ sonnet kcompletion kconfigwidgets - kiconthemes + kiconthemes kio kplotting ktextwidgets @@ -84,6 +84,6 @@ First Release. Stefan Gronewold(groni) groni@pisilinux.org - + From d95948d37e321f7b14fc8a62cc35d8035421ae1a Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Fri, 21 Aug 2015 10:10:08 +0300 Subject: [PATCH 6/8] kglobalaccel:fixded dep --- desktop/kde/framework/kglobalaccel/pspec.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/desktop/kde/framework/kglobalaccel/pspec.xml b/desktop/kde/framework/kglobalaccel/pspec.xml index 4e7f8b3014..69236111da 100644 --- a/desktop/kde/framework/kglobalaccel/pspec.xml +++ b/desktop/kde/framework/kglobalaccel/pspec.xml @@ -15,7 +15,7 @@ http://download.kde.org/stable/frameworks/5.13/kglobalaccel-5.13.0.tar.xz qt5-base-devel - qt5-tools-devel + qt5-linguist qt5-base libgcc libxcb-devel @@ -53,7 +53,7 @@ /usr/share/doc - + kglobalaccel-devel Development files for kglobalaccel @@ -97,6 +97,6 @@ First Release. Stefan Gronewold(groni) groni@pisilinux.org - + From 75ae5a6054c70f3ffc55384ca81908c92c5f61b6 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Fri, 21 Aug 2015 10:10:35 +0300 Subject: [PATCH 7/8] kjobwidgets:fixded dep --- desktop/kde/framework/kjobwidgets/pspec.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/desktop/kde/framework/kjobwidgets/pspec.xml b/desktop/kde/framework/kjobwidgets/pspec.xml index de759b72b9..2313b949a2 100644 --- a/desktop/kde/framework/kjobwidgets/pspec.xml +++ b/desktop/kde/framework/kjobwidgets/pspec.xml @@ -15,9 +15,9 @@ KJobWIdgets provides widgets for showing progress of asynchronous jobs. http://download.kde.org/stable/frameworks/5.13/kjobwidgets-5.13.0.tar.xz - libX11-devel + libX11-devel qt5-base-devel - qt5-tools-devel + qt5-linguist kcoreaddons-devel kwidgetsaddons-devel qt5-x11extras-devel @@ -42,13 +42,13 @@ /usr/share/doc - + kjobwidgets-devel Development files for kjobwidgets qt5-base-devel - kjobwidgets + kjobwidgets /usr/include @@ -78,6 +78,6 @@ Version bump. Stefan Gronewold(groni) groni@pisilinux.org - + From 79e5aedbb8a23eebaf8d0aba8e48a5333cee6ce5 Mon Sep 17 00:00:00 2001 From: ayhanyalcinsoy Date: Fri, 21 Aug 2015 10:10:56 +0300 Subject: [PATCH 8/8] knotifications:fixded dep --- desktop/kde/framework/knotifications/pspec.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/desktop/kde/framework/knotifications/pspec.xml b/desktop/kde/framework/knotifications/pspec.xml index c9528ca636..ce6c064fae 100644 --- a/desktop/kde/framework/knotifications/pspec.xml +++ b/desktop/kde/framework/knotifications/pspec.xml @@ -15,7 +15,7 @@ http://download.kde.org/stable/frameworks/5.13/knotifications-5.13.0.tar.xz qt5-base-devel - qt5-tools-devel + qt5-linguist kwindowsystem-devel qt5-x11extras-devel kservice-devel @@ -52,7 +52,7 @@ /usr/share/doc - + knotifications-devel Development files for knotifications @@ -97,6 +97,6 @@ First Release. Stefan Gronewold(groni) groni@pisilinux.org - +