diff --git a/pisi-index.xml b/pisi-index.xml index 2a70738d..7587304c 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -12479,9 +12479,17 @@ pkgconfig.py tmpfiles.conf qt5.py + kde5.py + + 2015-06-03 + 2.6 + Add kde5 api + Vedat Demir + vedat@pisilinux.org + 2015-05-04 2.6 @@ -14488,7 +14496,7 @@ eudev sistemd-udev uygulamasının çatalı eudev is a fork of system-udev with the goal of obtaining better compatibility with existing software such as OpenRC and Upstart, older kernels, various toolchains and anything else required by users and various distributions. eudev sistem-udev uygulamasının OpenRC, Upstart gibi başlangıç sistemleri ile uyumu için hazırlanmış çatalı - https://github.com/gentoo/eudev/archive/v3.1.1.tar.gz + https://github.com/gentoo/eudev/archive/v3.1.2.tar.gz config.cache @@ -14546,7 +14554,7 @@ Development files for eudev system.devel - eudev + eudev glib2-devel @@ -14588,6 +14596,13 @@ + + 2015-06-20 + 3.1.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + 2015-06-05 3.1.1 diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index c4893b16..0b32182c 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -4e092a917871b38bacd8ddc15fa91fdf01f09f61 \ No newline at end of file +e5677470550b4aa950a602fdcf0c4c7696e70647 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index edc47ba4..8cd86eb4 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 32066b31..f3b513d1 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -fa12accd8784c4f0761ad21c93c42e6b4dd96be0 \ No newline at end of file +c10f657c464b0f3ff3cbc607920689be3f937af2 \ No newline at end of file diff --git a/system/base/eudev/pspec.xml b/system/base/eudev/pspec.xml index 7cacdbc7..ad92ee1e 100644 --- a/system/base/eudev/pspec.xml +++ b/system/base/eudev/pspec.xml @@ -12,7 +12,7 @@ console eudev is a fork of system-udev eudev is a fork of system-udev with the goal of obtaining better compatibility with existing software such as OpenRC and Upstart, older kernels, various toolchains and anything else required by users and various distributions. - https://github.com/gentoo/eudev/archive/v3.1.1.tar.gz + https://github.com/gentoo/eudev/archive/v3.1.2.tar.gz config.cache @@ -119,6 +119,13 @@ + + 2015-06-20 + 3.1.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + 2015-06-05 3.1.1 diff --git a/system/base/pisi/files/kde5.py b/system/base/pisi/files/kde5.py new file mode 100644 index 00000000..cae0f6f6 --- /dev/null +++ b/system/base/pisi/files/kde5.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +# +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free +# Software Foundation; either version 2 of the License, or (at your option) +# any later version. +# +# Please read the COPYING file. + +# ActionsAPI Modules +from pisi.actionsapi import get +from pisi.actionsapi import cmaketools +from pisi.actionsapi import shelltools + +basename = "kde5" + +prefix = "/%s" % get.defaultprefixDIR() +libdir = "%s/lib" % prefix +bindir = "%s/bin" % prefix +libexecdir = "%s/lib" % prefix +iconsdir = "%s/share/icons" % prefix +applicationsdir = "%s/share/applications/%s" % (prefix, basename) +mandir = "/%s" % get.manDIR() +sharedir = "%s/share" % prefix +localedir = "%s/share/locale" % prefix +qmldir = "%s/lib/qt5/qml" % prefix +plugindir = "%s/lib/qt5/plugins" % prefix +moduledir = "%s/lib/qt5/mkspecs/modules" % prefix +pythondir = "%s/bin/python3" % prefix +appsdir = "%s" % sharedir +configdir = "%s/config" % sharedir +sysconfdir= "/etc" +servicesdir = "%s/services" % sharedir +servicetypesdir = "%s/servicetypes" % sharedir +includedir = "%s/include" % prefix +docdir = "/%s/%s" % (get.docDIR(), basename) +htmldir = "%s/html" % docdir +wallpapersdir = "%s/share/wallpapers" % prefix + +def configure(parameters = '', installPrefix = prefix, sourceDir = '..'): + ''' parameters -DLIB_INSTALL_DIR="hede" -DSOMETHING_USEFUL=1''' + + shelltools.makedirs("build") + shelltools.cd("build") + + cmaketools.configure("-DDATA_INSTALL_DIR:PATH=%s \ + -DINCLUDE_INSTALL_DIR:PATH=%s \ + -DCONFIG_INSTALL_DIR:PATH=%s \ + -DLIBEXEC_INSTALL_DIR:PATH=%s \ + -DLOCALE_INSTALL_DIR:PATH=%s \ + -DQML_INSTALL_DIR:PATH=%s \ + -DPLUGIN_INSTALL_DIR:PATH=%s \ + -DECM_MKSPECS_INSTALL_DIR:PATH=%s \ + -DPYTHON_EXECUTABLE:PATH=%s \ + -DSYSCONF_INSTALL_DIR:PATH=%s \ + -DHTML_INSTALL_DIR:PATH=%s \ + -DMAN_INSTALL_DIR:PATH=%s \ + -DCMAKE_SKIP_RPATH:BOOL=ON \ + -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \ + -DBUILD_TESTING=OFF \ + -DCMAKE_BUILD_TYPE=Release \ + -DLIB_INSTALL_DIR:PATH=%s %s" % (appsdir, includedir, configdir, libexecdir, localedir, qmldir, plugindir, moduledir, pythondir, sysconfdir, htmldir, mandir, libdir, parameters), installPrefix, sourceDir) + + shelltools.cd("..") + +def make(parameters = ''): + cmaketools.make('-C build %s' % parameters) + +def install(parameters = '', argument = 'install'): + cmaketools.install('-C build %s' % parameters, argument) + diff --git a/system/base/pisi/pspec.xml b/system/base/pisi/pspec.xml index b8b1438b..d34037c0 100644 --- a/system/base/pisi/pspec.xml +++ b/system/base/pisi/pspec.xml @@ -22,7 +22,7 @@ plyvel python gettext - intltool + intltool leveldb-devel @@ -75,6 +75,7 @@ pkgconfig.py tmpfiles.conf qt5.py + kde5.py System.Package @@ -83,6 +84,13 @@ + + 2015-06-03 + 2.6 + Add kde5 api + Vedat Demir + vedat@pisilinux.org + 2015-05-04 2.6