eudev and pisi v.bump
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
<IsA>console</IsA>
|
||||
<Summary>eudev is a fork of system-udev</Summary>
|
||||
<Description>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.</Description>
|
||||
<Archive sha1sum="2a1ab1f301b8d0fe1754f13d4b5fe63d84173bf3" type="targz">https://github.com/gentoo/eudev/archive/v3.1.1.tar.gz</Archive>
|
||||
<Archive sha1sum="af5d5703c3aa9253897b034c561796ef796aab83" type="targz">https://github.com/gentoo/eudev/archive/v3.1.2.tar.gz</Archive>
|
||||
<AdditionalFiles>
|
||||
<!-- http://www.linuxfromscratch.org/lfs/view/development/chapter06/eudev.html -->
|
||||
<AdditionalFile target="config.cache">config.cache</AdditionalFile>
|
||||
@@ -119,6 +119,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2015-06-20</Date>
|
||||
<Version>3.1.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2015-06-05</Date>
|
||||
<Version>3.1.1</Version>
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<Dependency>plyvel</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>gettext</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>leveldb-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
@@ -75,6 +75,7 @@
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/lib/pisilinux/pisi/actionsapi/pkgconfig.py">pkgconfig.py</AdditionalFile>
|
||||
<AdditionalFile target="/usr/lib/tmpfiles.d/pisi.conf" permission="0644" owner="root">tmpfiles.conf</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/lib/pisilinux/pisi/actionsapi/qt5.py">qt5.py</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/lib/pisilinux/pisi/actionsapi/kde5.py">kde5.py</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Provides>
|
||||
<COMAR script="package.py">System.Package</COMAR>
|
||||
@@ -83,6 +84,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="33">
|
||||
<Date>2015-06-03</Date>
|
||||
<Version>2.6</Version>
|
||||
<Comment>Add kde5 api</Comment>
|
||||
<Name>Vedat Demir</Name>
|
||||
<Email>vedat@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="32">
|
||||
<Date>2015-05-04</Date>
|
||||
<Version>2.6</Version>
|
||||
|
||||
Reference in New Issue
Block a user