Merge pull request #5349 from ertugerata/master

i3wm in main
This commit is contained in:
Ertuğrul Erata
2018-08-11 20:58:13 +03:00
committed by GitHub
20 changed files with 172974 additions and 170150 deletions
+172290 -170148
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
8e1abbd6cb69e0c6bb865238df58eee4a28c9525
941ed3372827af00e1133894b08661dcb8f9b1a0
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
ff388757acd52945cd850540d3a5b181399e23f6
8d7f6e9dd6f03f41579ce904d6d03270c30657e9
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
shelltools.system("./autogen.sh")
autotools.configure("--enable-static=no \
--enable-shared=yes \
--enable-nls")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS", "README*")
+57
View File
@@ -0,0 +1,57 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libconfuse</Name>
<Homepage>https://github.com/martinh/libconfuse</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2</License>
<IsA>library</IsA>
<Summary>Configuration file parser library</Summary>
<Description>libconfuse is a configuration file parser library.</Description>
<Archive sha1sum="5433f78fe465f303f8663595e5efdf7010a26960" type="targz">https://github.com/martinh/libconfuse/archive/v3.2.1.tar.gz</Archive>
</Source>
<Package>
<Name>libconfuse</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<Package>
<Name>libconfuse-devel</Name>
<Summary>Development headers for libconfuse</Summary>
<Description>libconfuse-devel provides development headers for libconfuse.</Description>
<RuntimeDependencies>
<Dependency>libconfuse</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="man">/usr/share/man/man3</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2018-08-10</Date>
<Version>3.2.1</Version>
<Comment>Rebuild for new toolchain.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="1">
<Date>2018-05-17</Date>
<Version>3.2.1</Version>
<Comment>First release</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,14 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libconfuse</Name>
<Summary xml:lang="tr">Yapılandırma dosyası ayrıştırıcısı</Summary>
<Description xml:lang="tr">libconfuse bir yapılandırma dosyası ayrıştırıcısıdır.</Description>
</Source>
<Package>
<Name>libconfuse-devel</Name>
<Summary xml:lang="tr">libconfuse için geliştirme başlıkları</Summary>
<Description xml:lang="tr">libconfuse için geliştirme başlıklarını içerir.</Description>
</Package>
</PISI>
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2018 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
autotools.autoreconf("-fi")
autotools.configure()
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
@@ -0,0 +1,42 @@
--- /dev/null
+++ b/libev.pc.in
@@ -0,0 +1,11 @@
+prefix=@prefix@
+exec_prefix=@prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: libev
+Description: A high-performance event loop/event model with lots of features
+Version: @VERSION@
+Libs: -L${libdir} -lev
+Libs.private:
+Cflags: -I${includedir}
--- a/Makefile.am
+++ b/Makefile.am
@@ -16,5 +16,8 @@ lib_LTLIBRARIES = libev.la
libev_la_SOURCES = ev.c event.c
libev_la_LDFLAGS = -version-info $(VERSION_INFO)
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = libev.pc
+
ev.3: ev.pod
pod2man -n LIBEV -r "libev-$(VERSION)" -c "libev - high performance full featured event loop" -s3 <$< >$@
--- a/configure.ac
+++ b/configure.ac
@@ -2,6 +2,7 @@ orig_CFLAGS="$CFLAGS"
AC_INIT
AC_CONFIG_SRCDIR([ev_epoll.c])
+AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE(libev,4.11) dnl also update ev.h!
AC_CONFIG_HEADERS([config.h])
@@ -21,5 +22,5 @@ AC_PROG_LIBTOOL
m4_include([libev.m4])
-AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([Makefile libev.pc])
AC_OUTPUT
+58
View File
@@ -0,0 +1,58 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pardus.org.tr/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libev</Name>
<Homepage>http://software.schmorp.de/pkg/libev.html</Homepage>
<Packager>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Packager>
<License>BSD</License>
<License>GPLv2</License>
<Summary>Full-featured and high performance event loop library</Summary>
<Description>FA high-performance event loop/event model with lots of feature</Description>
<Archive sha1sum="436dd8eff00a45f8805b8cacfe4dd3bd993caedb" type="targz">http://dist.schmorp.de/libev/libev-4.24.tar.gz</Archive>
<Patches>
<Patch level="1">libev-pc.patch</Patch>
</Patches>
</Source>
<Package>
<Name>libev</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
</Files>
</Package>
<Package>
<Name>libev-devel</Name>
<PartOf>system.devel</PartOf>
<Summary>Development files for libev</Summary>
<RuntimeDependencies>
<Dependency release="current">libev</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="man">/usr/share/man/man3</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2018-08-10</Date>
<Version>4.24</Version>
<Comment>Rebuild for new toolchain.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="1">
<Date>2018-05-16</Date>
<Version>4.24</Version>
<Comment>First release</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
</History>
</PISI>
+27
View File
@@ -0,0 +1,27 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2018 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
# WorkDir = ""
# NoStrip = "/"
def setup():
autotools.configure("--disable-static")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
#pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
+72
View File
@@ -0,0 +1,72 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pardus.org.tr/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xcb-util-xrm</Name>
<Homepage>https://github.com/Airblader/xcb-util-xrm</Homepage>
<Packager>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<Summary>XCB utility functions for the X resource manager</Summary>
<Description>XCB utility functions for the X resource manager</Description>
<Archive sha1sum="5a59236b92f5f1c99dcd5ad4747970809af52336" type="tarbz2">http://distfiles.exherbo.org/distfiles/xcb-util-xrm-1.3.tar.bz2</Archive>
<BuildDependencies>
<!--Dependency versionFrom=""></Dependency-->
<Dependency>libxcb-devel</Dependency>
<Dependency>xcb-util-devel</Dependency>
<Dependency>xcb-proto</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>util-macros</Dependency>
</BuildDependencies>
<Patches>
<!--
<Patch level="1"></Patch>
-->
</Patches>
</Source>
<Package>
<Name>xcb-util-xrm</Name>
<RuntimeDependencies>
<Dependency>libxcb</Dependency>
<Dependency>xcb-util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
</Files>
</Package>
<Package>
<Name>xcb-util-xrm-devel</Name>
<PartOf>system.devel</PartOf>
<Summary>Development files for xcb-util-xrm</Summary>
<RuntimeDependencies>
<Dependency release="current">xcb-util-xrm</Dependency>
<Dependency>libxcb-devel</Dependency>
<Dependency>xcb-util-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2018-08-10</Date>
<Version>1.3</Version>
<Comment>Version bump.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="1">
<Date>2018-05-16</Date>
<Version>1.2</Version>
<Comment>First release</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
</History>
</PISI>
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2018 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s PREFIX=/usr" % get.installDIR())
@@ -0,0 +1,38 @@
--- a/config.mk
+++ b/config.mk
@@ -5,8 +5,8 @@
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
-X11INC = /usr/X11R6/include
-X11LIB = /usr/X11R6/lib
+X11INC = -I/usr/X11R6/include
+X11LIB = -L/usr/X11R6/lib
# Xinerama, comment if you don't want it
XINERAMALIBS = -lXinerama
@@ -14,18 +14,18 @@
# freetype
FREETYPELIBS = -lfontconfig -lXft
-FREETYPEINC = /usr/include/freetype2
+FREETYPEINC = -I/usr/include/freetype2
# OpenBSD (uncomment)
#FREETYPEINC = ${X11INC}/freetype2
# includes and libs
-INCS = -I${X11INC} -I${FREETYPEINC}
-LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
+INCS = ${X11INC} ${FREETYPEINC}
+LIBS = ${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
# flags
-CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
-CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
-LDFLAGS = -s ${LIBS}
+CPPFLAGS += -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
+CFLAGS += -ansi -pedantic -Wall $(INCS) $(CPPFLAGS)
+LDFLAGS += ${LIBS}
# compiler and linker
CC = cc
+56
View File
@@ -0,0 +1,56 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pardus.org.tr/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>dmenu</Name>
<Homepage>http://tools.suckless.org/dmenu/</Homepage>
<Packager>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Packager>
<License>MIT</License>
<Summary>A dynamic menu for X</Summary>
<Description>Dynamic menu is a generic menu for X, originally designed for dwm. It manages huge amounts (up to 10.000 and more) of user defined menu items efficiently</Description>
<Archive sha1sum="29d63aeb4fcb7a0b2891d122fdde324cda02feda" type="targz">https://dl.suckless.org/tools/dmenu-4.8.tar.gz</Archive>
<BuildDependencies>
<Dependency>fontconfig-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libXft-devel</Dependency>
<Dependency>libXinerama-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">dmenu-4.7-gentoo.patch</Patch>
</Patches>
</Source>
<Package>
<Name>dmenu</Name>
<RuntimeDependencies>
<Dependency>fontconfig</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libXft</Dependency>
<Dependency>libXinerama</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2018-08-10</Date>
<Version>4.8</Version>
<Comment>Rebuild for new toolchain.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="1">
<Date>2018-05-16</Date>
<Version>4.8</Version>
<Comment>First release</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
</History>
</PISI>
+19
View File
@@ -0,0 +1,19 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2018 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
#pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
+63
View File
@@ -0,0 +1,63 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pardus.org.tr/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>i3status</Name>
<Homepage>http://i3wm.org/i3status</Homepage>
<Packager>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<License>BSD</License>
<Summary>A small generator for status bars</Summary>
<Description>a small program (about 1500 SLOC) for generating a status bar for dzen2, xmobar or similar programs</Description>
<Archive sha1sum="cb397987a1d931b600731e5ad033fe2f371d02b1" type="tarbz2">http://i3wm.org/i3status/i3status-2.12.tar.bz2</Archive>
<BuildDependencies>
<!--Dependency versionFrom=""></Dependency-->
<Dependency>alsa-lib-devel</Dependency>
<Dependency>pulseaudio-libs-devel</Dependency>
<Dependency>libnl-devel</Dependency>
<Dependency>yajl-devel</Dependency>
<Dependency>libconfuse-devel</Dependency>
</BuildDependencies>
<Patches>
<!--
<Patch level="1"></Patch>
-->
</Patches>
</Source>
<Package>
<Name>i3status</Name>
<RuntimeDependencies>
<Dependency>alsa-lib</Dependency>
<Dependency>pulseaudio-libs</Dependency>
<Dependency>libnl</Dependency>
<Dependency>yajl</Dependency>
<Dependency>libconfuse</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2018-08-10</Date>
<Version>2.12</Version>
<Comment>Rebuild for new toolchain.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="1">
<Date>2018-05-16</Date>
<Version>2.12</Version>
<Comment>First release</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
</History>
</PISI>
+29
View File
@@ -0,0 +1,29 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2018 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
# WorkDir = ""
# NoStrip = "/"
def setup():
autotools.configure()
def build():
shelltools.cd("x86_64-pc-linux-gnu")
autotools.make()
def install():
shelltools.cd("x86_64-pc-linux-gnu")
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
#pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
@@ -0,0 +1,19 @@
diff -Naur a/configure.ac b/configure.ac
--- a/configure.ac 2017-01-13 13:31:25.250216293 +0100
+++ b/configure.ac 2017-01-13 13:31:55.930217956 +0100
@@ -146,15 +146,6 @@
print_BUILD_MANS=no
fi
-git_dir=`git rev-parse --git-dir 2>/dev/null`
-if test -n "$git_dir"; then
- srcdir=`dirname "$git_dir"`
- exclude_dir=`pwd | sed "s,^$srcdir,,g"`
- if ! grep -q "^$exclude_dir" "$git_dir/info/exclude"; then
- echo "$exclude_dir" >> "$git_dir/info/exclude"
- fi
-fi
-
echo \
"--------------------------------------------------------------------------------
build configured:
+121
View File
@@ -0,0 +1,121 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pardus.org.tr/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>i3wm</Name>
<Homepage>http://i3wm.org</Homepage>
<Packager>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<Summary>A tiling window manager, completely written from scratch</Summary>
<Description>An improved dynamic tiling window manager</Description>
<Archive sha1sum="906126f61e62c53903a5ad53cb9288c6fc517a4b" type="tarbz2">https://i3wm.org/downloads/i3-4.15.tar.bz2</Archive>
<BuildDependencies>
<!--Dependency versionFrom=""></Dependency>-->
<Dependency>libev-devel</Dependency>
<Dependency>startup-notification-devel</Dependency>
<Dependency>libxcb-devel</Dependency>
<Dependency>xcb-util-devel</Dependency>
<Dependency>xcb-util-cursor-devel</Dependency>
<Dependency>xcb-util-renderutil-devel</Dependency>
<Dependency>xcb-util-image-devel</Dependency>
<Dependency>xcb-util-keysyms-devel</Dependency>
<Dependency>xcb-util-wm-devel</Dependency>
<Dependency>xcb-util-xrm-devel</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
<Dependency>yajl-devel</Dependency>
<Dependency>libpcre-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>xcb-proto</Dependency>
<Dependency>util-linux</Dependency>
<Dependency>libxslt</Dependency>
<Dependency>util-macros</Dependency>
<Dependency>asciidoc</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>xmlto</Dependency>
</BuildDependencies>
<Patches>
<!--Patch level="1">i3-4.13-remove-git-polling.patch</Patch-->
</Patches>
</Source>
<Package>
<Name>i3wm</Name>
<RuntimeDependencies>
<Dependency>yajl</Dependency>
<Dependency>libev</Dependency>
<Dependency>libpcre</Dependency>
<Dependency>xcb-util</Dependency>
<Dependency>xcb-util-wm</Dependency>
<Dependency>xcb-util-xrm</Dependency>
<Dependency>libxkbcommon</Dependency>
<Dependency>xcb-util-cursor</Dependency>
<Dependency>xcb-util-keysyms</Dependency>
<Dependency>startup-notification</Dependency>
<Dependency>pango</Dependency>
<Dependency>cairo</Dependency>
<Dependency>libxcb</Dependency>
<Dependency>glib2</Dependency>
<Dependency>dmenu</Dependency>
<Dependency>i3status</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/xsessions</Path>
</Files>
</Package>
<Package>
<Name>i3wm-devel</Name>
<PartOf>system.devel</PartOf>
<Summary>Development files for i3wm</Summary>
<RuntimeDependencies>
<Dependency release="current">i3wm</Dependency>
<Dependency>libev-devel</Dependency>
<Dependency>startup-notification-devel</Dependency>
<Dependency>libxcb-devel</Dependency>
<Dependency>xcb-util-devel</Dependency>
<Dependency>xcb-util-cursor-devel</Dependency>
<Dependency>xcb-util-renderutil-devel</Dependency>
<Dependency>xcb-util-image-devel</Dependency>
<Dependency>xcb-util-keysyms-devel</Dependency>
<Dependency>xcb-util-wm-devel</Dependency>
<Dependency>xcb-util-xrm-devel</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
<Dependency>yajl-devel</Dependency>
<Dependency>libpcre-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>glib2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2018-08-10</Date>
<Version>4.15</Version>
<Comment>Rebuild for new toolchain..</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="1">
<Date>2018-05-16</Date>
<Version>4.15</Version>
<Comment>First release</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
</History>
</PISI>