libxkbcommon:ver.bump

This commit is contained in:
Rmys
2019-10-26 00:11:39 +03:00
parent 72cb75bd1a
commit 83d3d41caa
2 changed files with 38 additions and 20 deletions
+19 -15
View File
@@ -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")
+15 -1
View File
@@ -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>