libxkbcommon:ver.bump
This commit is contained in:
@@ -1,32 +1,36 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
# Copyright 2010 TUBITAK/BILGEM
|
# Licensed under the GNU General Public License, version 3.
|
||||||
# Licensed under the GNU General Public License, version 2.
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||||
# See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
|
||||||
|
|
||||||
|
from pisi.actionsapi import get
|
||||||
from pisi.actionsapi import autotools
|
from pisi.actionsapi import autotools
|
||||||
from pisi.actionsapi import pisitools
|
from pisi.actionsapi import pisitools
|
||||||
from pisi.actionsapi import get
|
from pisi.actionsapi import shelltools
|
||||||
|
|
||||||
def setup():
|
def setup():
|
||||||
autotools.autoreconf("-vif")
|
shelltools.makedirs("build")
|
||||||
|
shelltools.cd("build")
|
||||||
options = " --disable-static \
|
options = "meson --prefix=/usr -Denable-docs=false \
|
||||||
"
|
"
|
||||||
|
|
||||||
if get.buildTYPE() == "emul32":
|
if get.buildTYPE() == "emul32":
|
||||||
options += " --libdir=/usr/lib32 \
|
options += "--libdir=lib32 .."
|
||||||
"
|
|
||||||
|
shelltools.system(options)
|
||||||
|
|
||||||
autotools.configure(options)
|
|
||||||
|
|
||||||
def build():
|
def build():
|
||||||
autotools.make()
|
shelltools.cd("build")
|
||||||
|
shelltools.system("ninja")
|
||||||
|
|
||||||
def install():
|
def install():
|
||||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
shelltools.cd("build")
|
||||||
if not get.buildTYPE() == "emul32":
|
shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
|
||||||
|
|
||||||
|
if get.buildTYPE() == "emul32":
|
||||||
return
|
return
|
||||||
|
|
||||||
pisitools.dodoc("NEWS", "README.md", "LICENSE")
|
shelltools.cd("..")
|
||||||
|
pisitools.dodoc("README*", "NEWS", "LICENSE")
|
||||||
|
|||||||
@@ -12,11 +12,17 @@
|
|||||||
<IsA>library</IsA>
|
<IsA>library</IsA>
|
||||||
<Summary>Library to convert evdev keycodes to keysyms</Summary>
|
<Summary>Library to convert evdev keycodes to keysyms</Summary>
|
||||||
<Description>Library to convert evdev keycodes to keysyms</Description>
|
<Description>Library to convert evdev keycodes to keysyms</Description>
|
||||||
<Archive sha1sum="0f533ffdc7fe888eedf10648895b64b01e94d06e" type="targz">https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-0.8.4.tar.gz</Archive>
|
<Archive sha1sum="42971c287a4fd0fd432040ccae6c6f789854947e" type="targz">https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-0.9.1.tar.gz</Archive>
|
||||||
<BuildDependencies>
|
<BuildDependencies>
|
||||||
|
<Dependency>meson</Dependency>
|
||||||
<Dependency>xorg-proto</Dependency>
|
<Dependency>xorg-proto</Dependency>
|
||||||
<Dependency>util-macros</Dependency>
|
<Dependency>util-macros</Dependency>
|
||||||
<Dependency>libxcb-devel</Dependency>
|
<Dependency>libxcb-devel</Dependency>
|
||||||
|
<Dependency>wayland-cursor</Dependency>
|
||||||
|
<Dependency>wayland-server</Dependency>
|
||||||
|
<Dependency>wayland-client</Dependency>
|
||||||
|
<Dependency>wayland-devel</Dependency>
|
||||||
|
<Dependency>wayland-protocols-devel</Dependency>
|
||||||
<Dependency>xkeyboard-config</Dependency>
|
<Dependency>xkeyboard-config</Dependency>
|
||||||
</BuildDependencies>
|
</BuildDependencies>
|
||||||
</Source>
|
</Source>
|
||||||
@@ -53,6 +59,7 @@
|
|||||||
<BuildType>emul32</BuildType>
|
<BuildType>emul32</BuildType>
|
||||||
<BuildDependencies>
|
<BuildDependencies>
|
||||||
<Dependency>libxcb-32bit</Dependency>
|
<Dependency>libxcb-32bit</Dependency>
|
||||||
|
<Dependency>wayland-32bit</Dependency>
|
||||||
</BuildDependencies>
|
</BuildDependencies>
|
||||||
<RuntimeDependencies>
|
<RuntimeDependencies>
|
||||||
<Dependency release="current">libxkbcommon</Dependency>
|
<Dependency release="current">libxkbcommon</Dependency>
|
||||||
@@ -64,6 +71,13 @@
|
|||||||
</Package>
|
</Package>
|
||||||
|
|
||||||
<History>
|
<History>
|
||||||
|
<Update release="8">
|
||||||
|
<Date>2019-10-25</Date>
|
||||||
|
<Version>0.9.1</Version>
|
||||||
|
<Comment>Version bump.</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
<Update release="7">
|
<Update release="7">
|
||||||
<Date>2019-10-20</Date>
|
<Date>2019-10-20</Date>
|
||||||
<Version>0.8.4</Version>
|
<Version>0.8.4</Version>
|
||||||
|
|||||||
Reference in New Issue
Block a user