From 16d3dd154a65635203919e4aa19ff6395ff088d3 Mon Sep 17 00:00:00 2001 From: groni Date: Sun, 19 Jul 2015 15:11:54 +0200 Subject: [PATCH 1/8] kde-baseapps version bump and check --- desktop/kde/base/kde-baseapps/pspec.xml | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/desktop/kde/base/kde-baseapps/pspec.xml b/desktop/kde/base/kde-baseapps/pspec.xml index a1806161c0..2e81fcb639 100755 --- a/desktop/kde/base/kde-baseapps/pspec.xml +++ b/desktop/kde/base/kde-baseapps/pspec.xml @@ -12,7 +12,7 @@ library KDE-Baseapps: base applications from the official KDE release Base application for KDE5 such as Dolphin, kfind, plasma-widget-folderview, konqueror etc. - http://download.kde.org/stable/applications/15.04.2/src/kde-baseapps-15.04.2.tar.xz + http://download.kde.org/stable/applications/15.04.3/src/kde-baseapps-15.04.3.tar.xz qt5-base-devel zlib-devel @@ -20,13 +20,13 @@ libX11-devel libgcc kdelibs-devel - kf5-kfilemetadata-devel + kfilemetadata-devel automoc4 tidy-devel - kf5-baloo-widgets-devel - kf5-baloo-devel + baloo-widgets-devel + baloo-devel phonon-devel - kf5-kactivities-devel + kactivities-devel libXrender-devel libXt-devel libraw1394-devel @@ -51,10 +51,10 @@ qt5-base libXt tidy - kf5-baloo-widgets - kf5-baloo + baloo-widgets + baloo kdelibs - kf5-kactivities + kactivities /usr/bin @@ -78,6 +78,13 @@ + + 2015-07-19 + 15.04.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + 2015-06-03 15.04.2 From f15fd368fba73c36e6cdf67120db19a3ca4eaf60 Mon Sep 17 00:00:00 2001 From: groni Date: Sun, 19 Jul 2015 15:27:42 +0200 Subject: [PATCH 2/8] create folder sdk and dolphin-plugins version bump and check --- desktop/kde/sdk/dolphin-plugins/actions.py | 23 ++++++++ desktop/kde/sdk/dolphin-plugins/pspec.xml | 53 +++++++++++++++++++ .../kde/sdk/dolphin-plugins/translations.xml | 8 +++ 3 files changed, 84 insertions(+) create mode 100755 desktop/kde/sdk/dolphin-plugins/actions.py create mode 100755 desktop/kde/sdk/dolphin-plugins/pspec.xml create mode 100755 desktop/kde/sdk/dolphin-plugins/translations.xml diff --git a/desktop/kde/sdk/dolphin-plugins/actions.py b/desktop/kde/sdk/dolphin-plugins/actions.py new file mode 100755 index 0000000000..b7bfbb126f --- /dev/null +++ b/desktop/kde/sdk/dolphin-plugins/actions.py @@ -0,0 +1,23 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import shelltools +from pisi.actionsapi import pisitools +from pisi.actionsapi import kde4 +from pisi.actionsapi import get + +NoStrip=["/usr/share"] + +def setup(): + kde4.configure() + +def build(): + kde4.make() + +def install(): + kde4.install() + + pisitools.dodoc("COPYING") diff --git a/desktop/kde/sdk/dolphin-plugins/pspec.xml b/desktop/kde/sdk/dolphin-plugins/pspec.xml new file mode 100755 index 0000000000..df6c0ca039 --- /dev/null +++ b/desktop/kde/sdk/dolphin-plugins/pspec.xml @@ -0,0 +1,53 @@ + + + + + dolphin-plugins + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + Extra dolphin plugins + This package contains plugins that offer integration in Dolphin with the following version control systems: + http://download.kde.org/stable/applications/15.04.3/src/dolphin-plugins-15.04.3.tar.xz + + kdelibs-devel + kde-runtime-devel + kde-workspace-devel + + + + + dolphin-plugins + + qt + libgcc + kdelibs + kdebaseapps + + + kdesdk + + + kdesdk + + + /usr/share + /usr/lib + /usr/share/doc + + + + + + 2015-07-19 + 15.04.3 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + diff --git a/desktop/kde/sdk/dolphin-plugins/translations.xml b/desktop/kde/sdk/dolphin-plugins/translations.xml new file mode 100755 index 0000000000..a707c1fc99 --- /dev/null +++ b/desktop/kde/sdk/dolphin-plugins/translations.xml @@ -0,0 +1,8 @@ + + + + dolphin-plugins + Dolphin eklentileri. + Dolphin için VCS (Version Control System) eklentileri. + + From 42cd9b0f9df6a8a2ebcfb6684825077502d843c9 Mon Sep 17 00:00:00 2001 From: groni Date: Sun, 19 Jul 2015 16:12:35 +0200 Subject: [PATCH 3/8] add lokalize version bump and check --- desktop/kde/sdk/lokalize/actions.py | 19 +++++++ desktop/kde/sdk/lokalize/pspec.xml | 68 +++++++++++++++++++++++ desktop/kde/sdk/lokalize/translations.xml | 8 +++ 3 files changed, 95 insertions(+) create mode 100644 desktop/kde/sdk/lokalize/actions.py create mode 100755 desktop/kde/sdk/lokalize/pspec.xml create mode 100755 desktop/kde/sdk/lokalize/translations.xml diff --git a/desktop/kde/sdk/lokalize/actions.py b/desktop/kde/sdk/lokalize/actions.py new file mode 100644 index 0000000000..56638b7e32 --- /dev/null +++ b/desktop/kde/sdk/lokalize/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/licenses/gpl.txt + +from pisi.actionsapi import kde5 +from pisi.actionsapi import pisitools + +def setup(): + kde5.configure() + +def build(): + kde5.make() + +def install(): + kde5.install() + + pisitools.dodoc("COPYING") diff --git a/desktop/kde/sdk/lokalize/pspec.xml b/desktop/kde/sdk/lokalize/pspec.xml new file mode 100755 index 0000000000..81c05a749b --- /dev/null +++ b/desktop/kde/sdk/lokalize/pspec.xml @@ -0,0 +1,68 @@ + + + + + lokalize + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:gui + Computer-Aided Translation System + Lokalize is a computer-aided translation system that focuses on productivity and quality assurance. + mirrors://kde/stable/applications/15.04.3/src/lokalize-15.04.3.tar.xz + + qt5-base-devel + hunspell-devel + kdelibs-devel + kde-runtime-devel + + + + + lokalize + + qt5-base + kio + kitemviews + ki18n + kross + kparts + libgcc + sonnet + kconfig + kxmlgui + kcompletion + kcoreaddons + kdbusaddons + ktextwidgets + kconfigwidgets + knotifications + kwidgetsaddons + hunspell + + + kdesdk + + + kdesdk + + + /usr/share + /usr/share/doc + /usr/bin + + + + + + 2014-07-19 + 15.04.3 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + diff --git a/desktop/kde/sdk/lokalize/translations.xml b/desktop/kde/sdk/lokalize/translations.xml new file mode 100755 index 0000000000..18fba2f5e9 --- /dev/null +++ b/desktop/kde/sdk/lokalize/translations.xml @@ -0,0 +1,8 @@ + + + + lokalize + Uygulama yerelleştirme yardımcısı. + Lokalize, uygulamalar için kolaylıkla yerelleştirme yapabileceğiniz bir programdır. + + From ab71548f51868727dd1a73d0192d63ecf65d6704 Mon Sep 17 00:00:00 2001 From: groni Date: Sun, 19 Jul 2015 16:26:22 +0200 Subject: [PATCH 4/8] kdesdk-thumbnailers version bump and check --- .../kde/sdk/kdesdk-thumbnailers/actions.py | 19 +++++++ desktop/kde/sdk/kdesdk-thumbnailers/pspec.xml | 54 +++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 desktop/kde/sdk/kdesdk-thumbnailers/actions.py create mode 100755 desktop/kde/sdk/kdesdk-thumbnailers/pspec.xml diff --git a/desktop/kde/sdk/kdesdk-thumbnailers/actions.py b/desktop/kde/sdk/kdesdk-thumbnailers/actions.py new file mode 100644 index 0000000000..56638b7e32 --- /dev/null +++ b/desktop/kde/sdk/kdesdk-thumbnailers/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/licenses/gpl.txt + +from pisi.actionsapi import kde5 +from pisi.actionsapi import pisitools + +def setup(): + kde5.configure() + +def build(): + kde5.make() + +def install(): + kde5.install() + + pisitools.dodoc("COPYING") diff --git a/desktop/kde/sdk/kdesdk-thumbnailers/pspec.xml b/desktop/kde/sdk/kdesdk-thumbnailers/pspec.xml new file mode 100755 index 0000000000..49869d7bdb --- /dev/null +++ b/desktop/kde/sdk/kdesdk-thumbnailers/pspec.xml @@ -0,0 +1,54 @@ + + + + + kdesdk-thumbnailers + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + Translation file thumbnail generators + Translation file thumbnail generators + mirrors://kde/stable/applications/15.04.3/src/kdesdk-thumbnailers-15.04.3.tar.xz + + qt-devel + gettext-devel + kdelibs-devel + kde-runtime-devel + + + + + kdesdk-thumbnailers + + qt + gettext + libgcc + kdelibs + + + kdesdk + + + kdesdk + + + /usr/share + /usr/lib + /usr/share/doc + + + + + + 2014-07-19 + 15.04.3 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + From e30db712a39711094dff414a23d88164077dda31 Mon Sep 17 00:00:00 2001 From: groni Date: Sun, 19 Jul 2015 16:40:23 +0200 Subject: [PATCH 5/8] remove old actions.py --- desktop/kde/sdk/dolphin-plugins/actions.py | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) mode change 100755 => 100644 desktop/kde/sdk/dolphin-plugins/actions.py diff --git a/desktop/kde/sdk/dolphin-plugins/actions.py b/desktop/kde/sdk/dolphin-plugins/actions.py old mode 100755 new mode 100644 index b7bfbb126f..56638b7e32 --- a/desktop/kde/sdk/dolphin-plugins/actions.py +++ b/desktop/kde/sdk/dolphin-plugins/actions.py @@ -4,20 +4,16 @@ # Licensed under the GNU General Public License, version 3. # See the file http://www.gnu.org/licenses/gpl.txt -from pisi.actionsapi import shelltools +from pisi.actionsapi import kde5 from pisi.actionsapi import pisitools -from pisi.actionsapi import kde4 -from pisi.actionsapi import get - -NoStrip=["/usr/share"] def setup(): - kde4.configure() + kde5.configure() def build(): - kde4.make() + kde5.make() def install(): - kde4.install() - + kde5.install() + pisitools.dodoc("COPYING") From efd49b1ec09d2e7d66eda7ef1469e1cab5993dcc Mon Sep 17 00:00:00 2001 From: groni Date: Sun, 19 Jul 2015 17:12:05 +0200 Subject: [PATCH 6/8] kdesdk-kioslaves version bump and check and add new path --- desktop/kde/sdk/kdesdk-kioslaves/actions.py | 19 +++++++ desktop/kde/sdk/kdesdk-kioslaves/pspec.xml | 55 +++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 desktop/kde/sdk/kdesdk-kioslaves/actions.py create mode 100755 desktop/kde/sdk/kdesdk-kioslaves/pspec.xml diff --git a/desktop/kde/sdk/kdesdk-kioslaves/actions.py b/desktop/kde/sdk/kdesdk-kioslaves/actions.py new file mode 100644 index 0000000000..56638b7e32 --- /dev/null +++ b/desktop/kde/sdk/kdesdk-kioslaves/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/licenses/gpl.txt + +from pisi.actionsapi import kde5 +from pisi.actionsapi import pisitools + +def setup(): + kde5.configure() + +def build(): + kde5.make() + +def install(): + kde5.install() + + pisitools.dodoc("COPYING") diff --git a/desktop/kde/sdk/kdesdk-kioslaves/pspec.xml b/desktop/kde/sdk/kdesdk-kioslaves/pspec.xml new file mode 100755 index 0000000000..ef531c7edf --- /dev/null +++ b/desktop/kde/sdk/kdesdk-kioslaves/pspec.xml @@ -0,0 +1,55 @@ + + + + + kdesdk-kioslaves + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:gui + Kio slaves + Kio slaves + mirrors://kde/stable/applications/15.04.3/src/kdesdk-kioslaves-15.04.3.tar.xz + + kdelibs-devel + kde-runtime-devel + + + + + kdesdk-kioslaves + + kdesvn + qt + libgcc + apr + subversion + kdelibs + + + kdesdk + + + kdesdk + + + /usr/share + /usr/lib/qt5 + /usr/share/doc + /usr/bin + + + + + + 2014-07-19 + 15.04.3 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + From 4125d6242a8973acea36937b8886e03bf92eee9a Mon Sep 17 00:00:00 2001 From: groni Date: Sun, 19 Jul 2015 17:21:36 +0200 Subject: [PATCH 7/8] kdesdk-strigi-analyzers version bump and check --- .../sdk/kdesdk-strigi-analyzers/actions.py | 19 +++++++ .../kde/sdk/kdesdk-strigi-analyzers/pspec.xml | 52 +++++++++++++++++++ .../kdesdk-strigi-analyzers/translations.xml | 8 +++ 3 files changed, 79 insertions(+) create mode 100644 desktop/kde/sdk/kdesdk-strigi-analyzers/actions.py create mode 100755 desktop/kde/sdk/kdesdk-strigi-analyzers/pspec.xml create mode 100755 desktop/kde/sdk/kdesdk-strigi-analyzers/translations.xml diff --git a/desktop/kde/sdk/kdesdk-strigi-analyzers/actions.py b/desktop/kde/sdk/kdesdk-strigi-analyzers/actions.py new file mode 100644 index 0000000000..56638b7e32 --- /dev/null +++ b/desktop/kde/sdk/kdesdk-strigi-analyzers/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/licenses/gpl.txt + +from pisi.actionsapi import kde5 +from pisi.actionsapi import pisitools + +def setup(): + kde5.configure() + +def build(): + kde5.make() + +def install(): + kde5.install() + + pisitools.dodoc("COPYING") diff --git a/desktop/kde/sdk/kdesdk-strigi-analyzers/pspec.xml b/desktop/kde/sdk/kdesdk-strigi-analyzers/pspec.xml new file mode 100755 index 0000000000..6333fdb649 --- /dev/null +++ b/desktop/kde/sdk/kdesdk-strigi-analyzers/pspec.xml @@ -0,0 +1,52 @@ + + + + + kdesdk-strigi-analyzers + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + Analyzer plugins for strigi + Analyzer plugins for strigi + mirrors://kde/stable/applications/15.04.3/src/kdesdk-strigi-analyzers-15.04.3.tar.xz + + qt-devel + kdelibs-devel + + + + + kdesdk-strigi-analyzers + + qt + libgcc + strigi + kdelibs + + + kdesdk + + + kdesdk + + + /usr/share + /usr/lib + /usr/share/doc + + + + + + 2014-07-19 + 15.04.3 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + diff --git a/desktop/kde/sdk/kdesdk-strigi-analyzers/translations.xml b/desktop/kde/sdk/kdesdk-strigi-analyzers/translations.xml new file mode 100755 index 0000000000..5e95a0854a --- /dev/null +++ b/desktop/kde/sdk/kdesdk-strigi-analyzers/translations.xml @@ -0,0 +1,8 @@ + + + + kdesdk-strigi-analyzers + Strigi için analiz pluginleri. + Strigi için analiz pluginleri. + + From aee75fca6ae24182f843c5a8215722b421de62bc Mon Sep 17 00:00:00 2001 From: groni Date: Sun, 19 Jul 2015 17:40:21 +0200 Subject: [PATCH 8/8] kapptemplate version bump and check --- desktop/kde/sdk/kapptemplate/actions.py | 19 ++++++ desktop/kde/sdk/kapptemplate/pspec.xml | 62 +++++++++++++++++++ desktop/kde/sdk/kapptemplate/translations.xml | 8 +++ 3 files changed, 89 insertions(+) create mode 100644 desktop/kde/sdk/kapptemplate/actions.py create mode 100755 desktop/kde/sdk/kapptemplate/pspec.xml create mode 100755 desktop/kde/sdk/kapptemplate/translations.xml diff --git a/desktop/kde/sdk/kapptemplate/actions.py b/desktop/kde/sdk/kapptemplate/actions.py new file mode 100644 index 0000000000..56638b7e32 --- /dev/null +++ b/desktop/kde/sdk/kapptemplate/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/licenses/gpl.txt + +from pisi.actionsapi import kde5 +from pisi.actionsapi import pisitools + +def setup(): + kde5.configure() + +def build(): + kde5.make() + +def install(): + kde5.install() + + pisitools.dodoc("COPYING") diff --git a/desktop/kde/sdk/kapptemplate/pspec.xml b/desktop/kde/sdk/kapptemplate/pspec.xml new file mode 100755 index 0000000000..916e888416 --- /dev/null +++ b/desktop/kde/sdk/kapptemplate/pspec.xml @@ -0,0 +1,62 @@ + + + + + kapptemplate + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:gui + Application template generator + KAppTemplate is a shell script that will create the necessary framework to develop several types of applications, including applications based on the KDE development platform. + mirrors://kde/stable/applications/15.04.3/src/kapptemplate-15.04.3.tar.xz + + qt5-base-devel + extra-cmake-modules + gettext + python3 + kdelibs-devel + kde-runtime-devel + + + + + kapptemplate + + qt5-base + kio + ki18n + libgcc + kconfig + karchive + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + kdesdk + + + kdesdk + + + /usr/share + /usr/share/doc + /usr/bin + + + + + + 2014-07-19 + 15.04.3 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + diff --git a/desktop/kde/sdk/kapptemplate/translations.xml b/desktop/kde/sdk/kapptemplate/translations.xml new file mode 100755 index 0000000000..b7cf03c7cb --- /dev/null +++ b/desktop/kde/sdk/kapptemplate/translations.xml @@ -0,0 +1,8 @@ + + + + kapptemplate + Uygulama şablon oluşturucu. + Kapptemplate, çeşitli uygulamaları geliştirmek için gerekli olabilecek şablonlar oluşturmayı sağlar. + +