diff --git a/desktop/kde/framework/attica/pspec.xml b/desktop/kde/framework/attica/pspec.xml
index 77fd8d1200..fb0360460c 100755
--- a/desktop/kde/framework/attica/pspec.xml
+++ b/desktop/kde/framework/attica/pspec.xml
@@ -23,6 +23,7 @@
attica
qt5-base
+ libgcc
/usr/share
diff --git a/desktop/kde/framework/karchive/pspec.xml b/desktop/kde/framework/karchive/pspec.xml
index dad764ead4..5a5f6968b5 100755
--- a/desktop/kde/framework/karchive/pspec.xml
+++ b/desktop/kde/framework/karchive/pspec.xml
@@ -25,7 +25,10 @@
karchive
- qt5-base
+ qt5-base
+ xz
+ zlib
+ bzip2
/usr/share
diff --git a/desktop/kde/framework/kbookmarks/actions.py b/desktop/kde/framework/kbookmarks/actions.py
new file mode 100755
index 0000000000..e2f17d2484
--- /dev/null
+++ b/desktop/kde/framework/kbookmarks/actions.py
@@ -0,0 +1,24 @@
+#!/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 pisitools
+from pisi.actionsapi import cmaketools
+
+def setup():
+ cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
+ -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt5/mkspecs/modules \
+ -DLIB_INSTALL_DIR=lib \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DPYTHON_EXECUTABLE=/usr/bin/python3 \
+ -DBUILD_TESTING=OFF")
+
+def build():
+ cmaketools.make()
+
+def install():
+ cmaketools.install()
+
+ pisitools.dodoc("README.md", "COPYING.LIB")
diff --git a/desktop/kde/framework/kbookmarks/pspec.xml b/desktop/kde/framework/kbookmarks/pspec.xml
new file mode 100755
index 0000000000..05a8941eea
--- /dev/null
+++ b/desktop/kde/framework/kbookmarks/pspec.xml
@@ -0,0 +1,76 @@
+
+
+
+
+ kbookmarks
+ http://www.kde.org
+
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+ LGPLv2
+ library
+ Access and manipulate bookmarks stored using XBEL format
+ Framework which lets you access and manipulate bookmarks stored using XBEL format
+ http://download.kde.org/stable/frameworks/5.11/kbookmarks-5.11.0.tar.xz
+
+ qt5-base-devel
+ python3
+ qt5-tools-devel
+ extra-cmake-modules
+
+
+
+
+ kbookmarks
+
+ qt5-base
+ libgcc
+ kcoreaddons
+ kcodecs
+ kconfig
+ kiconthemes
+ kwidgetsaddons
+ kxmlgui
+
+
+ /etc
+ /usr/share
+ /usr/share/locale
+ /usr/lib/qt5
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ kbookmarks-devel
+ Development files for kbookmarks
+
+ qt5-base-devel
+ kbookmarks
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-06-25
+ 5.11.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2015-05-31
+ 5.10.0
+ First Release.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+
diff --git a/desktop/kde/framework/kcompletion/actions.py b/desktop/kde/framework/kcompletion/actions.py
index 11b2858877..58699d30b0 100644
--- a/desktop/kde/framework/kcompletion/actions.py
+++ b/desktop/kde/framework/kcompletion/actions.py
@@ -4,16 +4,21 @@
# 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
+from pisi.actionsapi import cmaketools
def setup():
- kde5.configure()
+ cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
+ -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt5/mkspecs/modules \
+ -DSYSCONF_INSTALL_DIR=/etc \
+ -DLIB_INSTALL_DIR=lib \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DBUILD_TESTING=OFF")
def build():
- kde5.make()
+ cmaketools.make()
def install():
- kde5.install()
-
+ cmaketools.install()
+
pisitools.dodoc("README.md", "COPYING.LIB")
diff --git a/desktop/kde/framework/kcompletion/pspec.xml b/desktop/kde/framework/kcompletion/pspec.xml
index dfd515e182..1632605e30 100644
--- a/desktop/kde/framework/kcompletion/pspec.xml
+++ b/desktop/kde/framework/kcompletion/pspec.xml
@@ -24,7 +24,8 @@
kcompletion
- qt5-base
+ qt5-base
+ libgcc
kconfig
kwidgetsaddons
diff --git a/desktop/kde/framework/kdesu/actions.py b/desktop/kde/framework/kdesu/actions.py
new file mode 100755
index 0000000000..54fd6cb280
--- /dev/null
+++ b/desktop/kde/framework/kdesu/actions.py
@@ -0,0 +1,26 @@
+#!/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 pisitools
+from pisi.actionsapi import cmaketools
+
+def setup():
+ cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
+ -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt5/mkspecs/modules \
+ -DSYSCONF_INSTALL_DIR=/etc \
+ -DLIBEXEC_INSTALL_DIR=lib \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DPYTHON_EXECUTABLE=/usr/bin/python3 \
+ -DLIB_INSTALL_DIR=lib \
+ -DBUILD_TESTING=OFF")
+
+def build():
+ cmaketools.make()
+
+def install():
+ cmaketools.install()
+
+ pisitools.dodoc("README.md", "COPYING.LIB")
diff --git a/desktop/kde/framework/kdesu/pspec.xml b/desktop/kde/framework/kdesu/pspec.xml
new file mode 100755
index 0000000000..06df060c95
--- /dev/null
+++ b/desktop/kde/framework/kdesu/pspec.xml
@@ -0,0 +1,74 @@
+
+
+
+
+ kdesu
+ http://www.kde.org
+
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+ LGPLv2
+ library
+ app:console
+ User interface for running shell commands with root privileges
+ kdesu provides functionality for building GUI front ends for (password asking) console mode programs.
+ http://download.kde.org/stable/frameworks/5.11/kdesu-5.11.0.tar.xz
+
+ qt5-base-devel
+ python3
+ extra-cmake-modules
+
+
+
+
+ kdesu
+
+ qt5-base
+ kcoreaddons
+ kpty
+ kservice
+ ki18n
+ kconfig
+ libgcc
+ libX11
+
+
+ /usr/share/locale
+ /usr/lib/qt5
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ kdesu-devel
+ Development files for kdesu
+
+ qt5-base-devel
+ kdesu
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-06-25
+ 5.11.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2015-06-01
+ 5.10.0
+ First Release.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+
diff --git a/desktop/kde/framework/kglobalaccel/actions.py b/desktop/kde/framework/kglobalaccel/actions.py
new file mode 100755
index 0000000000..e2f17d2484
--- /dev/null
+++ b/desktop/kde/framework/kglobalaccel/actions.py
@@ -0,0 +1,24 @@
+#!/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 pisitools
+from pisi.actionsapi import cmaketools
+
+def setup():
+ cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
+ -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt5/mkspecs/modules \
+ -DLIB_INSTALL_DIR=lib \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DPYTHON_EXECUTABLE=/usr/bin/python3 \
+ -DBUILD_TESTING=OFF")
+
+def build():
+ cmaketools.make()
+
+def install():
+ cmaketools.install()
+
+ pisitools.dodoc("README.md", "COPYING.LIB")
diff --git a/desktop/kde/framework/kglobalaccel/pspec.xml b/desktop/kde/framework/kglobalaccel/pspec.xml
new file mode 100755
index 0000000000..977f997ed6
--- /dev/null
+++ b/desktop/kde/framework/kglobalaccel/pspec.xml
@@ -0,0 +1,78 @@
+
+
+
+
+ kglobalaccel
+ http://www.kde.org
+
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+ LGPLv2
+ library
+ Global desktop keyboard shortcuts
+ KGlobalAccel allows you to have global accelerators that are independent of the focused window.
+ http://download.kde.org/stable/frameworks/5.11/kglobalaccel-5.11.0.tar.xz
+
+ qt5-base-devel
+ qt5-tools-devel
+ python3
+ extra-cmake-modules
+
+
+
+
+ kglobalaccel
+
+ qt5-base
+ libgcc
+ libxcb
+ ki18n
+ kcrash
+ kconfig
+ qt5-x11extras
+ kcoreaddons
+ kdbusaddons
+ xcb-util-keysyms
+ kwindowsystem
+
+
+ /usr/bin
+ /usr/share
+ /usr/share/locale
+ /usr/lib/qt5
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ kglobalaccel-devel
+ Development files for kglobalaccel
+
+ kglobalaccel
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-06-25
+ 5.11.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2015-05-30
+ 5.10.0
+ First Release.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+
diff --git a/desktop/kde/framework/kjobwidgets/actions.py b/desktop/kde/framework/kjobwidgets/actions.py
new file mode 100755
index 0000000000..3c58786542
--- /dev/null
+++ b/desktop/kde/framework/kjobwidgets/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 pisitools
+from pisi.actionsapi import cmaketools
+
+def setup():
+ cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
+ -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt5/mkspecs/modules \
+ -DLIB_INSTALL_DIR=lib \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DBUILD_TESTING=OFF")
+
+def build():
+ cmaketools.make()
+
+def install():
+ cmaketools.install()
+
+ pisitools.dodoc("README.md", "COPYING.LIB")
diff --git a/desktop/kde/framework/kjobwidgets/pspec.xml b/desktop/kde/framework/kjobwidgets/pspec.xml
new file mode 100755
index 0000000000..997747777c
--- /dev/null
+++ b/desktop/kde/framework/kjobwidgets/pspec.xml
@@ -0,0 +1,72 @@
+
+
+
+
+ kjobwidgets
+ http://www.kde.org
+
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+ LGPLv2
+ library
+ app:console
+ Widgets for showing progress of asynchronous jobs
+ KJobWIdgets provides widgets for showing progress of asynchronous jobs.
+ http://download.kde.org/stable/frameworks/5.11/kjobwidgets-5.11.0.tar.xz
+
+ qt5-base-devel
+ qt5-tools-devel
+ extra-cmake-modules
+
+
+
+
+ kjobwidgets
+
+ qt5-base
+ libgcc
+ kcoreaddons
+ kwidgetsaddons
+ qt5-x11extras
+
+
+ /usr/share
+ /usr/share/locale
+ /usr/lib/qt5
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ kjobwidgets-devel
+ Development files for kjobwidgets
+
+ qt5-base-devel
+ kjobwidgets
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-06-25
+ 5.11.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2015-05-30
+ 5.10.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+
diff --git a/desktop/kde/framework/knotifications/actions.py b/desktop/kde/framework/knotifications/actions.py
new file mode 100755
index 0000000000..309e61a6e8
--- /dev/null
+++ b/desktop/kde/framework/knotifications/actions.py
@@ -0,0 +1,24 @@
+#!/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 pisitools
+from pisi.actionsapi import cmaketools
+
+def setup():
+ cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
+ -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt5/mkspecs/modules \
+ -DLIB_INSTALL_DIR=lib \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DPYTHON_EXECUTABLE=/usr/bin/python3 \
+ -DBUILD_TESTING=OFF")
+
+def build():
+ cmaketools.make()
+
+def install():
+ cmaketools.install()
+
+ pisitools.dodoc("README.md", "COPYING.LIB", "COPYING-CMAKE-SCRIPTS")
diff --git a/desktop/kde/framework/knotifications/pspec.xml b/desktop/kde/framework/knotifications/pspec.xml
new file mode 100755
index 0000000000..f420a9bc2a
--- /dev/null
+++ b/desktop/kde/framework/knotifications/pspec.xml
@@ -0,0 +1,80 @@
+
+
+
+
+ knotifications
+ http://www.kde.org
+
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+ LGPLv2
+ library
+ KDE5 Desktop notifications
+ KNotification is used to notify the user of an event. It covers feedback and persistent events.
+ http://download.kde.org/stable/frameworks/5.11/knotifications-5.11.0.tar.xz
+
+ qt5-base-devel
+ qt5-tools-devel
+ python3
+ extra-cmake-modules
+
+
+
+
+ knotifications
+
+ qt5-base
+ qt5-phonon
+ qt5-libdbusmenu
+ libgcc
+ libX11
+ libXtst
+ qt5-x11extras
+ kconfig
+ kcodecs
+ kcoreaddons
+ kiconthemes
+ kservice
+ kwindowsystem
+
+
+ /usr/share
+ /usr/share/locale
+ /usr/lib/qt5
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ knotifications-devel
+ Development files for knotifications
+
+ qt5-base-devel
+ knotifications
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-06-25
+ 5.11.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2015-05-31
+ 5.10.0
+ First Release.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+
diff --git a/desktop/kde/framework/ktextwidgets/actions.py b/desktop/kde/framework/ktextwidgets/actions.py
new file mode 100755
index 0000000000..c14cef5133
--- /dev/null
+++ b/desktop/kde/framework/ktextwidgets/actions.py
@@ -0,0 +1,25 @@
+#!/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 pisitools
+from pisi.actionsapi import cmaketools
+
+def setup():
+ cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
+ -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt5/mkspecs/modules \
+ -DSYSCONF_INSTALL_DIR=/etc \
+ -DLIB_INSTALL_DIR=lib \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DPYTHON_EXECUTABLE=/usr/bin/python3 \
+ -DBUILD_TESTING=OFF")
+
+def build():
+ cmaketools.make()
+
+def install():
+ cmaketools.install()
+
+ pisitools.dodoc("README.md", "COPYING.LIB")
diff --git a/desktop/kde/framework/ktextwidgets/pspec.xml b/desktop/kde/framework/ktextwidgets/pspec.xml
new file mode 100755
index 0000000000..3a08cba09b
--- /dev/null
+++ b/desktop/kde/framework/ktextwidgets/pspec.xml
@@ -0,0 +1,79 @@
+
+
+
+
+ ktextwidgets
+ http://www.kde.org
+
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+ LGPLv2
+ library
+ app:console
+ KDE5 text editing widgets
+ KTextWidgets provides widgets for displaying and editing text. It supports rich text as well as plain text.
+ http://download.kde.org/stable/frameworks/5.11/ktextwidgets-5.11.0.tar.xz
+
+ qt5-base-devel
+ python3
+ extra-cmake-modules
+
+
+
+
+ ktextwidgets
+
+ qt5-base
+ libgcc
+ kconfig
+ kcompletion
+ kconfigwidgets
+ kiconthemes
+ kwidgetsaddons
+ ki18n
+ sonnet
+ kservice
+ kcoreaddons
+ kwindowsystem
+
+
+ /usr/share
+ /usr/share/locale
+ /usr/lib/qt5
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ ktextwidgets-devel
+ Development files for ktextwidgets
+
+ qt5-base-devel
+ ktextwidgets
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-06-25
+ 5.11.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2015-05-30
+ 5.10.0
+ First Release
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+
diff --git a/desktop/kde/framework/kxmlgui/actions.py b/desktop/kde/framework/kxmlgui/actions.py
new file mode 100755
index 0000000000..e8aac792cd
--- /dev/null
+++ b/desktop/kde/framework/kxmlgui/actions.py
@@ -0,0 +1,25 @@
+#!/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 pisitools
+from pisi.actionsapi import cmaketools
+
+def setup():
+ cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
+ -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt5/mkspecs/modules \
+ -DLIB_INSTALL_DIR=lib \
+ -DSYSCONF_INSTALL_DIR=/etc \
+ -DLIBEXEC_INSTALL_DIR=lib \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DBUILD_TESTING=OFF")
+
+def build():
+ cmaketools.make()
+
+def install():
+ cmaketools.install()
+
+ pisitools.dodoc("README.md", "COPYING", "COPYING.LIB", "TODO.xmlgui")
diff --git a/desktop/kde/framework/kxmlgui/pspec.xml b/desktop/kde/framework/kxmlgui/pspec.xml
new file mode 100755
index 0000000000..94653fc3f8
--- /dev/null
+++ b/desktop/kde/framework/kxmlgui/pspec.xml
@@ -0,0 +1,80 @@
+
+
+
+
+ kxmlgui
+ http://www.kde.org
+
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+ LGPLv2
+ library
+ Framework for managing menu and toolbar actions
+ Kxmlgui provides a framework for managing menu and toolbar actions in an abstract way.
+ http://download.kde.org/stable/frameworks/5.11/kxmlgui-5.11.0.tar.xz
+
+ qt5-base-devel
+ python3
+ extra-cmake-modules
+
+
+
+
+ kxmlgui
+
+ qt5-base
+ libgcc
+ attica
+ kcoreaddons
+ kconfig
+ kconfigwidgets
+ kglobalaccel
+ ki18n
+ kiconthemes
+ kitemviews
+ ktextwidgets
+ kwidgetsaddons
+ kwindowsystem
+
+
+ /etc
+ /usr/share
+ /usr/share/locale
+ /usr/lib/qt5
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ kxmlgui-devel
+ Development files for kxmlgui
+
+ qt5-base-devel
+ kxmlgui
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-06-25
+ 5.11.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2015-05-31
+ 5.10.0
+ First Release.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+
diff --git a/desktop/kde/framework/networkmanager-qt/actions.py b/desktop/kde/framework/networkmanager-qt/actions.py
new file mode 100755
index 0000000000..e1303eae11
--- /dev/null
+++ b/desktop/kde/framework/networkmanager-qt/actions.py
@@ -0,0 +1,25 @@
+#!/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 pisitools
+from pisi.actionsapi import cmaketools
+
+def setup():
+ cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
+ -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt5/mkspecs/modules \
+ -DLIB_INSTALL_DIR=lib \
+ -DSYSCONF_INSTALL_DIR=/etc \
+ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
+ -DBUILD_TESTING=OFF")
+
+def build():
+ cmaketools.make()
+
+def install():
+ cmaketools.install()
+
+ pisitools.dodoc("README.md", "COPYING.LIB")
+
diff --git a/desktop/kde/framework/networkmanager-qt/pspec.xml b/desktop/kde/framework/networkmanager-qt/pspec.xml
new file mode 100755
index 0000000000..d2ba1e8878
--- /dev/null
+++ b/desktop/kde/framework/networkmanager-qt/pspec.xml
@@ -0,0 +1,71 @@
+
+
+
+
+ networkmanager-qt
+ http://www.kde.org
+
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+ LGPLv2
+ library
+ app:console
+ A QT wrapper around the NetworkManager libraries
+ A QT wrapper around the NetworkManager libraries
+ http://download.kde.org/stable/frameworks/5.11/networkmanager-qt-5.11.0.tar.xz
+
+ qt5-base-devel
+ extra-cmake-modules
+ NetworkManager-devel
+
+
+
+
+ networkmanager-qt
+
+ qt5-base
+ NetworkManager
+ libgcc
+
+
+ /usr/share
+ /usr/share/locale
+ /usr/bin
+ /usr/lib/qt5
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ networkmanager-qt-devel
+ Development files for networkmanager-qt
+
+ qt5-base-devel
+ networkmanager-qt
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-06-25
+ 5.11.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2015-06-01
+ 5.10.0
+ First Release.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+