libxkbcommon ver. bump

This commit is contained in:
Rmys
2021-06-03 21:21:45 +03:00
committed by GitHub
parent 1f26f56c42
commit 7b83c559a5
2 changed files with 33 additions and 17 deletions
+16 -16
View File
@@ -8,29 +8,29 @@ from pisi.actionsapi import get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import mesontools
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
options = "meson --prefix=/usr -Denable-docs=false \
"
options = "-Denable-docs=false"
if get.buildTYPE() == "emul32":
options += "--libdir=lib32 .."
shelltools.system(options)
options += " --libdir=lib32 --bindir=bin32 --libexecdir=libexec32"
mesontools.configure(options)
def build():
shelltools.cd("build")
shelltools.system("ninja")
mesontools.build()
def install():
shelltools.cd("build")
shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
mesontools.install()
if get.buildTYPE() == "emul32":
pisitools.removeDir("/usr/libexec32")
pisitools.removeDir("/usr/bin32")
return
shelltools.cd("..")
pisitools.dodoc("README*", "NEWS", "LICENSE")
+17 -1
View File
@@ -12,12 +12,13 @@
<IsA>library</IsA>
<Summary>Library to convert evdev keycodes to keysyms</Summary>
<Description>Library to convert evdev keycodes to keysyms</Description>
<Archive sha1sum="42971c287a4fd0fd432040ccae6c6f789854947e" type="targz">https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-0.9.1.tar.gz</Archive>
<Archive sha1sum="eaa67cbbf8837c8ef14e685bdf5386f88e4d6ad6" type="targz">https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-1.3.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>xorg-proto</Dependency>
<Dependency>util-macros</Dependency>
<Dependency>libxcb-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>wayland-cursor</Dependency>
<Dependency>wayland-server</Dependency>
<Dependency>wayland-client</Dependency>
@@ -31,9 +32,14 @@
<Name>libxkbcommon</Name>
<RuntimeDependencies>
<Dependency>libxcb</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>wayland-client</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="doc">/usr/share/doc/libxkbcommon/</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="library">/usr/lib/lib*.so*</Path>
</Files>
</Package>
@@ -44,6 +50,7 @@
<RuntimeDependencies>
<Dependency release="current">libxkbcommon</Dependency>
<Dependency>libxcb-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
@@ -59,11 +66,13 @@
<BuildType>emul32</BuildType>
<BuildDependencies>
<Dependency>libxcb-32bit</Dependency>
<Dependency>libxml2-32bit</Dependency>
<Dependency>wayland-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency release="current">libxkbcommon</Dependency>
<Dependency>libxcb-32bit</Dependency>
<Dependency>libxml2-32bit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32</Path>
@@ -71,6 +80,13 @@
</Package>
<History>
<Update release="10">
<Date>2021-06-03</Date>
<Version>1.3.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="9">
<Date>2021-01-03</Date>
<Version>0.9.1</Version>