moved into main repo for pisi 2.0
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>system</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def check():
|
||||
autotools.make("check -j1")
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
|
||||
pisitools.dohtml("doc/*.html")
|
||||
|
||||
pisitools.remove("/usr/share/doc/gperf.html")
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README")
|
||||
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gperf</Name>
|
||||
<Homepage>http://www.gnu.org/software/gperf/gperf.html</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>A perfect hash function generator</Summary>
|
||||
<Description>gperf is a perfect hash function generator. For a given list of strings, it produces a hash function and hash table, in form of C or C++ code, for looking up a value depending on the input string. The hash function is perfect, which means that the hash table has no collisions, and the hash table lookup needs a single string comparison only.</Description>
|
||||
<Archive sha1sum="e32d4aff8f0c730c9a56554377b2c6d82d0951b8" type="targz">mirrors://gnu/gperf/gperf-3.0.4.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gperf</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="info">/usr/share/info</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2014-05-11</Date>
|
||||
<Version>3.0.4</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-10-24</Date>
|
||||
<Version>3.0.4</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-26</Date>
|
||||
<Version>3.0.4</Version>
|
||||
<Comment>Fix dep,release bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-08-23</Date>
|
||||
<Version>3.0.4</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gperf</Name>
|
||||
<Summary xml:lang="tr">Mükemmel hash üreticisi</Summary>
|
||||
<Description xml:lang="tr">gperf mükemmel hash fonksiyonu üretecidir. Verilen bir katar listesi için C ve C++ kodu biçiminde bir hash fonksiyonu ve hash tablosu üretir.</Description>
|
||||
<Description xml:lang="es">GNU gperf es un generador de perfect hash. Produce una función hash y una tabla hash a base de una lista de cadenas, en forma de código C o C++ , para revisar valores dependiendo de una cadena de entrada. La función de hash es perfecta, lo que quiere decir que no hay colisiones en la tabla de hash, y para la búsqueda en la tabla hash se necesita solamente una comparación.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,26 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-vif")
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""')
|
||||
pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE")
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
if get.buildTYPE() == "emul32": return
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README")
|
||||
@@ -0,0 +1,12 @@
|
||||
diff -Naur libX11-1.3.5//src/xlibi18n/ICWrap.c libX11-1.3.5.tpg//src/xlibi18n/ICWrap.c
|
||||
--- libX11-1.3.5//src/xlibi18n/ICWrap.c 2010-08-10 04:59:44.000000000 +0000
|
||||
+++ libX11-1.3.5.tpg//src/xlibi18n/ICWrap.c 2010-09-17 17:11:21.000000000 +0000
|
||||
@@ -283,7 +283,7 @@
|
||||
XIMArg *args;
|
||||
char *ret;
|
||||
|
||||
- if (!ic->core.im)
|
||||
+ if (!ic || !ic->core.im)
|
||||
return (char *) NULL;
|
||||
|
||||
/*
|
||||
@@ -0,0 +1,50 @@
|
||||
Index: libX11-1.4.99.1/src/Xrm.c
|
||||
===================================================================
|
||||
--- libX11-1.4.99.1.orig/src/Xrm.c
|
||||
+++ libX11-1.4.99.1/src/Xrm.c
|
||||
@@ -2540,30 +2540,40 @@ Bool XrmQGetResource(
|
||||
VClosureRec closure;
|
||||
|
||||
if (db && *names) {
|
||||
- _XLockMutex(&db->linfo);
|
||||
+ if ((_XLockMutex_fn) && db->linfo.lock ) {
|
||||
+ _XLockMutex(&db->linfo);
|
||||
+ }
|
||||
closure.type = pType;
|
||||
closure.value = pValue;
|
||||
table = db->table;
|
||||
if (names[1]) {
|
||||
if (table && !table->leaf) {
|
||||
if (GetNEntry(table, names, classes, &closure)) {
|
||||
- _XUnlockMutex(&db->linfo);
|
||||
+ if ((_XUnlockMutex_fn) && db->linfo.lock ) {
|
||||
+ _XUnlockMutex(&db->linfo);
|
||||
+ }
|
||||
return True;
|
||||
}
|
||||
} else if (table && table->hasloose &&
|
||||
GetLooseVEntry((LTable)table, names, classes, &closure)) {
|
||||
- _XUnlockMutex (&db->linfo);
|
||||
+ if ((_XUnlockMutex_fn) && db->linfo.lock ) {
|
||||
+ _XUnlockMutex (&db->linfo);
|
||||
+ }
|
||||
return True;
|
||||
}
|
||||
} else {
|
||||
if (table && !table->leaf)
|
||||
table = table->next;
|
||||
if (table && GetVEntry((LTable)table, names, classes, &closure)) {
|
||||
- _XUnlockMutex(&db->linfo);
|
||||
+ if ((_XUnlockMutex_fn) && db->linfo.lock ) {
|
||||
+ _XUnlockMutex(&db->linfo);
|
||||
+ }
|
||||
return True;
|
||||
}
|
||||
}
|
||||
- _XUnlockMutex(&db->linfo);
|
||||
+ if ((_XUnlockMutex_fn) && db->linfo.lock ) {
|
||||
+ _XUnlockMutex(&db->linfo);
|
||||
+ }
|
||||
}
|
||||
*pType = NULLQUARK;
|
||||
pValue->addr = (XPointer)NULL;
|
||||
@@ -0,0 +1,27 @@
|
||||
From 5dcb40f28d59587597d2ff6e6ac64c71cfe6ff7b Mon Sep 17 00:00:00 2001
|
||||
From: James Cloos <cloos@jhcloos.com>
|
||||
Date: Tue, 17 Sep 2013 16:50:42 +0000
|
||||
Subject: nls/en_US.UTF-8/Compose.pre: Fix typo.
|
||||
|
||||
Fix typo added in 215ce6a67863, s/actute/acute/.
|
||||
|
||||
Fixes bug #69476. Reported by Jean Krohn.
|
||||
|
||||
Signed-off-by: James Cloos <cloos@jhcloos.com>
|
||||
---
|
||||
diff --git a/nls/en_US.UTF-8/Compose.pre b/nls/en_US.UTF-8/Compose.pre
|
||||
index a741332..7314d7f 100644
|
||||
--- a/nls/en_US.UTF-8/Compose.pre
|
||||
+++ b/nls/en_US.UTF-8/Compose.pre
|
||||
@@ -743,7 +743,7 @@ XCOMM Part 3
|
||||
<Multi_key> <i> <quotedbl> : "ï" idiaeresis # LATIN SMALL LETTER I WITH DIAERESIS
|
||||
<Multi_key> <diaeresis> <i> : "ï" idiaeresis # LATIN SMALL LETTER I WITH DIAERESIS
|
||||
<Multi_key> <i> <diaeresis> : "ï" idiaeresis # LATIN SMALL LETTER I WITH DIAERESIS
|
||||
-<dead_actute> <j> : "j́" # LATIN SMALL LETTER J U006A with COMBINING ACUTE ACCENT U0301
|
||||
+<dead_acute> <j> : "j́" # LATIN SMALL LETTER J U006A with COMBINING ACUTE ACCENT U0301
|
||||
<Multi_key> <apostrophe> <j> : "j́" # LATIN SMALL LETTER J U006A with COMBINING ACUTE ACCENT U0301
|
||||
<Multi_key> <j> <apostrophe> : "j́" # LATIN SMALL LETTER J U006A with COMBINING ACUTE ACCENT U0301
|
||||
<Multi_key> <acute> <j> : "j́" # LATIN SMALL LETTER J U006A with COMBINING ACUTE ACCENT U0301
|
||||
--
|
||||
cgit v0.9.0.2-2-gbebe
|
||||
|
||||
@@ -0,0 +1,128 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libX11</Name>
|
||||
<Homepage>http://www.x.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>X.Org X11 library</Summary>
|
||||
<Description>Core X11 protocol client library.</Description>
|
||||
<Archive sha1sum="6f2aadf8346ee00b7419bd338461c6986e274733" type="tarbz2">mirrors://xorg/individual/lib/libX11-1.6.3.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
<Dependency>xorg-proto</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
<Dependency>xtrans</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--<Patch level="1">fix_typo.diff</Patch>
|
||||
<Patch level="1">fix-segfault.diff</Patch>
|
||||
<Patch level="1">fix-null-pointer.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libX11</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libxcb</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libX11*</Path>
|
||||
<Path fileType="data">/usr/lib/X11</Path>
|
||||
<Path fileType="data">/usr/share/X11</Path>
|
||||
<Path fileType="doc">/usr/share/doc/libX11</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libX11-devel</Name>
|
||||
<Summary>Development files for X11 library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libX11</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
<Dependency>xorg-proto</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/X11</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/lib32/pkgconfig</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libX11-32bit</Name>
|
||||
<PartOf>emul32</PartOf>
|
||||
<Summary>32-bit shared libraries for libX11</Summary>
|
||||
<BuildType>emul32</BuildType>
|
||||
<BuildDependencies>
|
||||
<Dependency>libxcb-32bit</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libX11</Dependency>
|
||||
<Dependency>libxcb-32bit</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2015-05-22</Date>
|
||||
<Version>1.6.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2014-05-11</Date>
|
||||
<Version>1.6.2</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2013-10-07</Date>
|
||||
<Version>1.6.2</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-09-12</Date>
|
||||
<Version>1.6.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-07-30</Date>
|
||||
<Version>1.6.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-06-21</Date>
|
||||
<Version>1.6.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-24</Date>
|
||||
<Version>1.5.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libX11</Name>
|
||||
<Summary xml:lang="tr">X.Org X11 kitaplığı</Summary>
|
||||
<Summary xml:lang="fr">Librairie X11 de X.Org.</Summary>
|
||||
<Summary xml:lang="de">X.Org X11 Bibliothek</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libX11-devel</Name>
|
||||
<Summary xml:lang="tr">libX11 için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libX11-32bit</Name>
|
||||
<Summary xml:lang="tr">libX11 için 32-bit paylaşımlı kitaplıklar</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,30 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
pisitools.flags.add("-DNDEBUG")
|
||||
|
||||
autotools.autoreconf("-vif")
|
||||
autotools.configure("--disable-static \
|
||||
--enable-xevie \
|
||||
--enable-xprint \
|
||||
--enable-xinput \
|
||||
--enable-xkb \
|
||||
--without-launchd \
|
||||
--without-doxygen")
|
||||
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("-j1 DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("COPYING", "NEWS", "README")
|
||||
@@ -0,0 +1,11 @@
|
||||
--- libxcb-1.8.1/configure.ac 2012-03-09 15:38:38.000000000 +0100
|
||||
+++ libxcb-1.8.1/configure.ac.new 2012-03-09 16:50:40.107109896 +0100
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
# Checks for pkg-config packages
|
||||
PKG_CHECK_MODULES(XCBPROTO, xcb-proto >= 1.11)
|
||||
-NEEDED="pthread-stubs xau >= 0.99.2"
|
||||
+NEEDED="xau >= 0.99.2"
|
||||
PKG_CHECK_MODULES(NEEDED, $NEEDED)
|
||||
|
||||
have_xdmcp="no"
|
||||
@@ -0,0 +1,8 @@
|
||||
prefix=/usr
|
||||
exec_prefix=${prefix}
|
||||
libdir=${exec_prefix}/lib
|
||||
|
||||
Name: pthread stubs
|
||||
Description: Stubs missing from libc for standard pthread functions
|
||||
Version: 0.3
|
||||
Libs:
|
||||
@@ -0,0 +1,125 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libxcb</Name>
|
||||
<Homepage>http://xcb.freedesktop.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>The X protocol C-language Binding (XCB)</Summary>
|
||||
<Description>The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility.</Description>
|
||||
<Archive sha1sum="8343b417d7eeb2a2c6b6c4a87a03a4fd0fc65c46" type="tarbz2">http://xcb.freedesktop.org/dist/libxcb-1.11.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libXau-devel</Dependency>
|
||||
<Dependency>libXdmcp-devel</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
<Dependency versionFrom="1.11">xcb-proto</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">libxcb-1.1-no-pthread-stubs.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libxcb</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libXau</Dependency>
|
||||
<Dependency>libXdmcp</Dependency>
|
||||
<Dependency>glibc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libxcb-devel</Name>
|
||||
<Summary>Development files for libxcb</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libxcb</Dependency>
|
||||
<Dependency>libXau-devel</Dependency>
|
||||
<Dependency>libXdmcp-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/xcb</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/lib32/pkgconfig</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/lib/pkgconfig/pthread-stubs.pc" permission="0644" owner="root">pthread-stubs.pc</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libxcb-32bit</Name>
|
||||
<PartOf>emul32</PartOf>
|
||||
<Summary>32-bit shared libraries for libxcb</Summary>
|
||||
<BuildType>emul32</BuildType>
|
||||
<BuildDependencies>
|
||||
<Dependency>libXau-32bit</Dependency>
|
||||
<Dependency>libXdmcp-32bit</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libxcb</Dependency>
|
||||
<Dependency>libXau-32bit</Dependency>
|
||||
<Dependency>libXdmcp-32bit</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2015-05-22</Date>
|
||||
<Version>1.11</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-05-11</Date>
|
||||
<Version>1.10</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-03-07</Date>
|
||||
<Version>1.10</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-10-08</Date>
|
||||
<Version>1.9.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-28</Date>
|
||||
<Version>1.9.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-18</Date>
|
||||
<Version>1.9</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libxcb</Name>
|
||||
<Summary xml:lang="tr">X protokolü için C dili bağlayıcısı (XCB)</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libxcb-devel</Name>
|
||||
<Summary xml:lang="tr">libxcb için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libxcb-32bit</Name>
|
||||
<Summary xml:lang="tr">libxcb için 32-bit paylaşımlı kitaplıklar</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>system</Name>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user