Merge pull request #17 from groni/master
kde5-solid, kpackage, kwindowsystem version bump
This commit is contained in:
@@ -4,24 +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 cmaketools
|
||||
from pisi.actionsapi import kde5
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
#shelltools.cd("kpackage")
|
||||
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DLIB_INSTALL_DIR=lib \
|
||||
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
|
||||
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
|
||||
-DBUILD_TESTING=OFF")
|
||||
kde5.configure()
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
kde5.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
kde5.install()
|
||||
|
||||
pisitools.dodoc("COPYING", "COPYING.LIB", "README.md")
|
||||
|
||||
@@ -12,10 +12,11 @@
|
||||
<IsA>app:library</IsA>
|
||||
<Summary>Framework that lets applications manage user installable packages of non-binary assets</Summary>
|
||||
<Description>KPackage is dependent on the Smart package manager.</Description>
|
||||
<Archive sha1sum="2989b40c32d4b713bf088a71b0bc7d2c8e4955b8" type="tarxz">http://download.kde.org/stable/frameworks/5.10/kpackage-5.10.0.tar.xz</Archive>
|
||||
<Archive sha1sum="151aa58865b12d016ad78c7bd0567e2cd02403dd" type="tarxz">http://download.kde.org/stable/frameworks/5.11/kpackage-5.11.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>qt5-tools-devel</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>kde5-kdoctools-devel</Dependency>
|
||||
@@ -26,6 +27,7 @@
|
||||
<Name>kde5-kpackage</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>kde5-kconfig</Dependency>
|
||||
<Dependency>kde5-ki18n</Dependency>
|
||||
<Dependency>kde5-kcoreaddons</Dependency>
|
||||
@@ -35,14 +37,33 @@
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/qt5</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="header">/usr/include/</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man/man1</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>kpackage-devel</Name>
|
||||
<Summary>Development files for kpackage</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency release="current">kde5-kpackage</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
<Path fileType="config">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2015-06-23</Date>
|
||||
<Version>5.11.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2015-05-31</Date>
|
||||
<Version>5.10.0</Version>
|
||||
|
||||
Executable → Regular
+5
-9
@@ -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 kde5
|
||||
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")
|
||||
kde5.configure()
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
kde5.make()
|
||||
|
||||
def install():
|
||||
cmaketools.install()
|
||||
|
||||
kde5.install()
|
||||
|
||||
pisitools.dodoc("README.md","COPYING.LIB")
|
||||
|
||||
@@ -13,10 +13,18 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>KDE5 window manager access framework</Summary>
|
||||
<Description>KWindowSystem provides information about the state of the window manager and allows asking the window manager to change the using a more high-level interface than the NETWinInfo/NETRootInfo low-level classes.</Description>
|
||||
<Archive sha1sum="4b2a8b28317989f6f24ddec9b3abe38351932ab5" type="tarxz">http://download.kde.org/stable/frameworks/5.10/kwindowsystem-5.10.0.tar.xz</Archive>
|
||||
<Archive sha1sum="4b4077d0cb1ad1f58e92093155e004e4e77801fd" type="tarxz">http://download.kde.org/stable/frameworks/5.11/kwindowsystem-5.11.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-tools-devel</Dependency>
|
||||
<Dependency>qt5-tools-devel</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
<Dependency>libXrender-devel</Dependency>
|
||||
<Dependency>libXfixes-devel</Dependency>
|
||||
<Dependency>xcb-util-devel</Dependency>
|
||||
<Dependency>xcb-util-keysyms-devel</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
@@ -25,6 +33,9 @@
|
||||
<Name>kde5-kwindowsystem</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>libXfixes</Dependency>
|
||||
<Dependency>xcb-util-keysyms</Dependency>
|
||||
@@ -58,6 +69,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2015-06-23</Date>
|
||||
<Version>5.11.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2015-05-30</Date>
|
||||
<Version>5.10.0</Version>
|
||||
|
||||
+24
@@ -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 \
|
||||
-DQML_INSTALL_DIR=lib/qt5/qml \
|
||||
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
|
||||
-DLIB_INSTALL_DIR=lib \
|
||||
-DBUILD_TESTING=OFF")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.install()
|
||||
|
||||
pisitools.dodoc("README.md","COPYING.LIB", "TODO")
|
||||
Executable → Regular
+5
-10
@@ -4,21 +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 kde5
|
||||
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 \
|
||||
-DQML_INSTALL_DIR=lib/qt5/qml \
|
||||
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
|
||||
-DLIB_INSTALL_DIR=lib \
|
||||
-DBUILD_TESTING=OFF")
|
||||
kde5.configure()
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
kde5.make()
|
||||
|
||||
def install():
|
||||
cmaketools.install()
|
||||
|
||||
kde5.install()
|
||||
|
||||
pisitools.dodoc("README.md","COPYING.LIB", "TODO")
|
||||
|
||||
@@ -13,10 +13,12 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>KDE5 hardware integration framework</Summary>
|
||||
<Description>Solid is a device integration framework.It provides a way of querying and interacting with hardware independently of the underlying operating system.</Description>
|
||||
<Archive sha1sum="42136192e1c34aca23baa9c6c2b50edb2259205b" type="tarxz">http://download.kde.org/stable/frameworks/5.10/solid-5.10.0.tar.xz</Archive>
|
||||
<Archive sha1sum="9236a4e999f5e64b2bb3a2b3ec81be057ce278e3" type="tarxz">http://download.kde.org/stable/frameworks/5.11/solid-5.11.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-tools-devel</Dependency>
|
||||
<Dependency>libudev-devel</Dependency>
|
||||
<Dependency>qt5-tools-devel</Dependency>
|
||||
<Dependency>qt5-declarative</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
@@ -24,8 +26,7 @@
|
||||
<Package>
|
||||
<Name>kde5-solid</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-declarative</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
@@ -52,6 +53,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2015-06-23</Date>
|
||||
<Version>5.11.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2015-05-31</Date>
|
||||
<Version>5.10.0</Version>
|
||||
|
||||
Reference in New Issue
Block a user