diff --git a/desktop/kde/addon/kshutdown/actions.py b/desktop/kde/addon/kshutdown/actions.py
new file mode 100644
index 0000000000..528f4eec56
--- /dev/null
+++ b/desktop/kde/addon/kshutdown/actions.py
@@ -0,0 +1,22 @@
+#!/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 kde5
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+
+
+def setup():
+ shelltools.system("./Setup-kf5.sh")
+ kde5.configure("-DKS_KF5=ON")
+
+def build():
+ kde5.make()
+
+def install():
+ kde5.install()
+
+ pisitools.dodoc("ChangeLog", "LICENSE")
+
diff --git a/desktop/kde/addon/kshutdown/pspec.xml b/desktop/kde/addon/kshutdown/pspec.xml
new file mode 100644
index 0000000000..f83bb47217
--- /dev/null
+++ b/desktop/kde/addon/kshutdown/pspec.xml
@@ -0,0 +1,57 @@
+
+
+
+
+ kshutdown
+ http://kshutdown.sourceforge.net/
+
+ Stefan Gronewold
+ groni@pisilinux.org
+
+ GPL
+ KShutdown is a graphical shutdown utility for Linux
+ KShutdown is a graphical shutdown utility for Linux and Windows. It allows you to turn off or suspend a computer at a specified time. It features various time and delay options, command-line support, and notifications.
+
+ extra-cmake-modules
+ ninja
+ qt5-base-devel
+ kxmlgui-devel
+ knotifyconfig-devel
+ kidletime-devel
+
+ https://sourceforge.net/projects/kshutdown/files/KShutdown/4.0/kshutdown-source-4.0.zip
+
+
+ kshutdown
+ Shutdown Utility for KDE
+
+ ki18n
+ libgcc
+ kconfig
+ kxmlgui
+ qt5-base
+ kidletime
+ kcoreaddons
+ kdbusaddons
+ kglobalaccel
+ knotifyconfig
+ kconfigwidgets
+ knotifications
+ kwidgetsaddons
+
+
+ /usr/bin
+ /usr/share
+ /usr/share/doc
+
+
+
+
+ 2017-01-09
+ 4.0
+ First Release
+ Stefan Gronewold
+ groni@pisilinux.org
+
+
+
diff --git a/desktop/kde/applications/kwave/actions.py b/desktop/kde/applications/kwave/actions.py
new file mode 100644
index 0000000000..a56809f0e2
--- /dev/null
+++ b/desktop/kde/applications/kwave/actions.py
@@ -0,0 +1,20 @@
+#!/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 kde5
+from pisi.actionsapi import pisitools
+
+
+def setup():
+ kde5.configure()
+
+def build():
+ kde5.make()
+
+def install():
+ kde5.install()
+
+ pisitools.dodoc("AUTHORS", "CHANGES", "LICENSES", "GNU-LICENSE", "README")
+
diff --git a/desktop/kde/applications/kwave/pspec.xml b/desktop/kde/applications/kwave/pspec.xml
new file mode 100644
index 0000000000..fea249b8ba
--- /dev/null
+++ b/desktop/kde/applications/kwave/pspec.xml
@@ -0,0 +1,82 @@
+
+
+
+
+ kwave
+ http://kwave.sourceforge.net/
+
+ Stefan Gronewold
+ groni@pisilinux.org
+
+ GPL
+ A sound editor for KDE
+ With Kwave you can record, play back, import and edit many sorts of audio files including multi channel files.Kwave includes some plugins to transform audio files in several ways and presents a graphical view with a complete zoom- and scroll capability.
+
+ doxygen
+ extra-cmake-modules
+ kdoctools-devel
+ librsvg-devel
+ qt5-base-devel
+ qt5-multimedia-devel
+ kwidgetsaddons-devel
+ kxmlgui-devel
+ kio-devel
+ audiofile-devel
+ libsamplerate-devel
+ alsa-lib-devel
+ flac-devel
+ libopus-devel
+ libogg-devel
+ libvorbis-devel
+ fftw3-devel
+
+ http://download.kde.org/stable/applications/16.12.0/src/kwave-16.12.0.tar.xz
+
+
+ kwave
+ A sound editor for KDE
+
+ kio
+ flac
+ fftw3
+ ki18n
+ kcrash
+ libgcc
+ libogg
+ kconfig
+ kxmlgui
+ libopus
+ alsa-lib
+ kservice
+ qt5-base
+ audiofile
+ libvorbis
+ kcompletion
+ kcoreaddons
+ kdbusaddons
+ kiconthemes
+ ktextwidgets
+ libsamplerate
+ kconfigwidgets
+ kwidgetsaddons
+ qt5-multimedia
+ pulseaudio-libs
+
+
+ /usr/bin
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share
+ /usr/share/doc
+
+
+
+
+ 2017-01-09
+ 16.12.0
+ First Release
+ Stefan Gronewold
+ groni@pisilinux.org
+
+
+
diff --git a/desktop/kde/graphics/kphotoalbum/actions.py b/desktop/kde/graphics/kphotoalbum/actions.py
new file mode 100644
index 0000000000..6cf46a9818
--- /dev/null
+++ b/desktop/kde/graphics/kphotoalbum/actions.py
@@ -0,0 +1,22 @@
+#!/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 kde5
+from pisi.actionsapi import pisitools
+
+# if pisi can't find source directory, see /var/pisi/kphotoalbum/work/ and:
+# WorkDir="kphotoalbum-"+ get.srcVERSION() +"/sub_project_dir/"
+
+def setup():
+ kde5.configure()
+
+def build():
+ kde5.make()
+
+def install():
+ kde5.install()
+
+ pisitools.dodoc("ChangeLog", "COPYING", "README")
+
diff --git a/desktop/kde/graphics/kphotoalbum/pspec.xml b/desktop/kde/graphics/kphotoalbum/pspec.xml
new file mode 100644
index 0000000000..c8f8a8edd4
--- /dev/null
+++ b/desktop/kde/graphics/kphotoalbum/pspec.xml
@@ -0,0 +1,70 @@
+
+
+
+
+ kphotoalbum
+ https://www.kphotoalbum.org/
+
+ Stefan Gronewold
+ groni@pisilinux.org
+
+ GPL
+ KDE Photo Album, picture collection manager
+ With KPhotoAlbum it is today possible for me to find any image I have in less than 5 seconds, let that be an image with a special person, an image from a special place, or even both.
+
+ extra-cmake-modules
+ kdoctools-devel
+ kparts-devel
+ libkexiv2-devel
+ qt5-phonon-devel
+ plasma-framework-devel
+ qt5-base-devel
+ qt5-sql-mysql
+ qt5-sql-postgresql
+ qt5-sql-sqlite
+ qt5-sql-odbc
+ libjpeg-turbo-devel
+ exiv2-devel
+
+ http://download.kde.org/stable/kphotoalbum/5.1/kphotoalbum-5.1.tar.xz
+
+
+ kphotoalbum
+ KDE Photo Album, picture collection manager
+
+ kio
+ ki18n
+ libgcc
+ kconfig
+ kxmlgui
+ karchive
+ kservice
+ qt5-base
+ exiv2-libs
+ qt5-phonon
+ kcompletion
+ kcoreaddons
+ kiconthemes
+ kjobwidgets
+ ktextwidgets
+ libjpeg-turbo
+ kconfigwidgets
+ kwidgetsaddons
+
+
+ /etc/xdg
+ /usr/bin
+ /usr/share
+ /usr/share/doc
+
+
+
+
+ 2017-01-09
+ 5.1
+ First Release
+ Stefan Gronewold
+ groni@pisilinux.org
+
+
+
diff --git a/pisi-index.xml b/pisi-index.xml
index 9ce48443fb..d50ab25089 100644
--- a/pisi-index.xml
+++ b/pisi-index.xml
@@ -60980,6 +60980,76 @@ thunar-volman is installed and configured properly, and you plug in your digical
+
+
+ kphotoalbum
+ https://www.kphotoalbum.org/
+
+ Stefan Gronewold
+ groni@pisilinux.org
+
+ GPL
+ desktop.kde.graphics
+ KDE Photo Album, picture collection manager
+ With KPhotoAlbum it is today possible for me to find any image I have in less than 5 seconds, let that be an image with a special person, an image from a special place, or even both.
+ http://download.kde.org/stable/kphotoalbum/5.1/kphotoalbum-5.1.tar.xz
+
+ extra-cmake-modules
+ kdoctools-devel
+ kparts-devel
+ libkexiv2-devel
+ qt5-phonon-devel
+ plasma-framework-devel
+ qt5-base-devel
+ qt5-sql-mysql
+ qt5-sql-postgresql
+ qt5-sql-sqlite
+ qt5-sql-odbc
+ libjpeg-turbo-devel
+ exiv2-devel
+
+ desktop/kde/graphics/kphotoalbum/pspec.xml
+
+
+ kphotoalbum
+ KDE Photo Album, picture collection manager
+
+ kio
+ ki18n
+ libgcc
+ kconfig
+ kxmlgui
+ karchive
+ kservice
+ qt5-base
+ exiv2-libs
+ qt5-phonon
+ kcompletion
+ kcoreaddons
+ kiconthemes
+ kjobwidgets
+ ktextwidgets
+ libjpeg-turbo
+ kconfigwidgets
+ kwidgetsaddons
+
+
+ /etc/xdg
+ /usr/bin
+ /usr/share
+ /usr/share/doc
+
+
+
+
+ 2017-01-09
+ 5.1
+ First Release
+ Stefan Gronewold
+ groni@pisilinux.org
+
+
+
digikam
@@ -78931,7 +79001,7 @@ thunar-volman is installed and configured properly, and you plug in your digical
ktextwidgets-devel
kwidgetsaddons-devel
kxmlgui-devel
- libkdepim-devel
+ libkdepim-devel
libkleo-devel
messagelib-devel
qt5-base-devel
@@ -78966,7 +79036,7 @@ thunar-volman is installed and configured properly, and you plug in your digical
kconfig
kxmlgui
kcontacts
- libkdepim
+ libkdepim
kitemviews
messagelib
kcompletion
@@ -80307,6 +80377,88 @@ thunar-volman is installed and configured properly, and you plug in your digical
+
+
+ kwave
+ http://kwave.sourceforge.net/
+
+ Stefan Gronewold
+ groni@pisilinux.org
+
+ GPL
+ desktop.kde.applications
+ A sound editor for KDE
+ With Kwave you can record, play back, import and edit many sorts of audio files including multi channel files.Kwave includes some plugins to transform audio files in several ways and presents a graphical view with a complete zoom- and scroll capability.
+ http://download.kde.org/stable/applications/16.12.0/src/kwave-16.12.0.tar.xz
+
+ doxygen
+ extra-cmake-modules
+ kdoctools-devel
+ librsvg-devel
+ qt5-base-devel
+ qt5-multimedia-devel
+ kwidgetsaddons-devel
+ kxmlgui-devel
+ kio-devel
+ audiofile-devel
+ libsamplerate-devel
+ alsa-lib-devel
+ flac-devel
+ libopus-devel
+ libogg-devel
+ libvorbis-devel
+ fftw3-devel
+
+ desktop/kde/applications/kwave/pspec.xml
+
+
+ kwave
+ A sound editor for KDE
+
+ kio
+ flac
+ fftw3
+ ki18n
+ kcrash
+ libgcc
+ libogg
+ kconfig
+ kxmlgui
+ libopus
+ alsa-lib
+ kservice
+ qt5-base
+ audiofile
+ libvorbis
+ kcompletion
+ kcoreaddons
+ kdbusaddons
+ kiconthemes
+ ktextwidgets
+ libsamplerate
+ kconfigwidgets
+ kwidgetsaddons
+ qt5-multimedia
+ pulseaudio-libs
+
+
+ /usr/bin
+ /usr/lib
+ /usr/lib/qt5
+ /usr/share
+ /usr/share/doc
+
+
+
+
+ 2017-01-09
+ 16.12.0
+ First Release
+ Stefan Gronewold
+ groni@pisilinux.org
+
+
+
kbruch
@@ -97295,6 +97447,63 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+
+ kshutdown
+ http://kshutdown.sourceforge.net/
+
+ Stefan Gronewold
+ groni@pisilinux.org
+
+ GPL
+ desktop.kde.addon
+ KShutdown is a graphical shutdown utility for Linux
+ KShutdown is a graphical shutdown utility for Linux and Windows. It allows you to turn off or suspend a computer at a specified time. It features various time and delay options, command-line support, and notifications.
+ https://sourceforge.net/projects/kshutdown/files/KShutdown/4.0/kshutdown-source-4.0.zip
+
+ extra-cmake-modules
+ ninja
+ qt5-base-devel
+ kxmlgui-devel
+ knotifyconfig-devel
+ kidletime-devel
+
+ desktop/kde/addon/kshutdown/pspec.xml
+
+
+ kshutdown
+ Shutdown Utility for KDE
+
+ ki18n
+ libgcc
+ kconfig
+ kxmlgui
+ qt5-base
+ kidletime
+ kcoreaddons
+ kdbusaddons
+ kglobalaccel
+ knotifyconfig
+ kconfigwidgets
+ knotifications
+ kwidgetsaddons
+
+
+ /usr/bin
+ /usr/share
+ /usr/share/doc
+
+
+
+
+ 2017-01-09
+ 4.0
+ First Release
+ Stefan Gronewold
+ groni@pisilinux.org
+
+
+
plasma-applet-system-panel
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index fb3cad2e88..f2f5e49c6a 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-bc14f9be52222335296a0b04792dbf3ee5792d62
\ No newline at end of file
+bb6a50ca85243958ecad2fb5dc6ef81412305e7a
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index 8dfa4c0cc6..04f60c945e 100644
Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ
diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum
index 316f98f941..cb630bda07 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-0c08ea29dbb421a063c5bb94e4f59eb930687283
\ No newline at end of file
+c18c5d499614f4eb66c0aca35893b2279da45647
\ No newline at end of file