x11/driver ver. bump
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#!/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
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-vif")
|
||||
options = "--disable-static \
|
||||
--with-pic"
|
||||
|
||||
if get.buildTYPE() == "emul32":
|
||||
options += " --libdir=/usr/lib32"
|
||||
|
||||
autotools.configure(options)
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
if get.buildTYPE() == "emul32":
|
||||
return
|
||||
|
||||
pisitools.dodoc("README*")
|
||||
@@ -0,0 +1,132 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xcb-util-image</Name>
|
||||
<Homepage>https://xcb.freedesktop.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A number of libraries which sit on top of libxcb</Summary>
|
||||
<Description>The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries.</Description>
|
||||
<Archive sha1sum="dde9892e5ddd900a2f784304614e1f6344b70279" type="tarxz">http://xcb.freedesktop.org/dist/xcb-util-image-0.4.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>util-macros</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
<Dependency>xcb-util-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-image</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>xcb-util</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-image-devel</Name>
|
||||
<Summary>Development files for xcb-util</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">xcb-util-image</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/lib32/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-image-32bit</Name>
|
||||
<PartOf>emul32</PartOf>
|
||||
<Summary>32-bit shared libraries for xcb-util</Summary>
|
||||
<BuildType>emul32</BuildType>
|
||||
<BuildDependencies>
|
||||
<Dependency>libxcb-32bit</Dependency>
|
||||
<Dependency>xcb-util-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>xcb-util-32bit</Dependency>
|
||||
<Dependency>libxcb-32bit</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2022-10-19</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2021-05-22</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2021-03-19</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2019-02-20</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-11-05</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-07-24</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-05</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-04-30</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Release bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2015-12-13</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xcb-util-image</Name>
|
||||
<Summary xml:lang="tr">libxcb temelli birtakım kitaplıklar</Summary>
|
||||
<Description xml:lang="tr">xcb-util-image modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-image-devel</Name>
|
||||
<Summary xml:lang="tr">xcb-util-image için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-image-32bit</Name>
|
||||
<Summary xml:lang="tr">xcb-util-image için 32-bit paylaşımlı kitaplıklar</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,29 @@
|
||||
#!/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
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-vif")
|
||||
options = "--disable-static \
|
||||
--with-pic"
|
||||
|
||||
if get.buildTYPE() == "emul32":
|
||||
options += " --libdir=/usr/lib32"
|
||||
|
||||
autotools.configure(options)
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
if get.buildTYPE() == "emul32":
|
||||
return
|
||||
|
||||
pisitools.dodoc("README*")
|
||||
@@ -0,0 +1,132 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xcb-util-keysyms</Name>
|
||||
<Homepage>https://xcb.freedesktop.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A number of libraries which sit on top of libxcb</Summary>
|
||||
<Description>The xcb-util-keysyms module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries.</Description>
|
||||
<Archive sha1sum="f5408e9ca09ef225dfc602ab2ba47fa7982fb52e" type="tarxz">http://xcb.freedesktop.org/dist/xcb-util-keysyms-0.4.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>xorg-proto</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-keysyms</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libxcb</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-keysyms-devel</Name>
|
||||
<Summary>Development files for xcb-util-keysyms</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">xcb-util-keysyms</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/lib32/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-keysyms-32bit</Name>
|
||||
<PartOf>emul32</PartOf>
|
||||
<Summary>32-bit shared libraries for xcb-util-keysyms</Summary>
|
||||
<BuildType>emul32</BuildType>
|
||||
<BuildDependencies>
|
||||
<Dependency>libxcb-32bit</Dependency>
|
||||
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">xcb-util-keysyms</Dependency>
|
||||
<Dependency>libxcb-32bit</Dependency>
|
||||
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2022-12-09</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2021-05-22</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2021-03-19</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2019-02-20</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-11-05</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-07-24</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-05</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-04-30</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>Release bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2015-12-13</Date>
|
||||
<Version>0.4.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xcb-util-keysyms</Name>
|
||||
<Summary xml:lang="tr">libxcb temelli birtakım kitaplıklar</Summary>
|
||||
<Description xml:lang="tr">xcb-util-keysyms modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-keysyms-devel</Name>
|
||||
<Summary xml:lang="tr">xcb-util-keysyms için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-uti-keysymsl-32bit</Name>
|
||||
<Summary xml:lang="tr">xcb-util-keysyms için 32-bit paylaşımlı kitaplıklar</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,29 @@
|
||||
#!/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 get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-vif")
|
||||
options = "--disable-static \
|
||||
--with-pic"
|
||||
|
||||
if get.buildTYPE() == "emul32":
|
||||
options += " --libdir=/usr/lib32"
|
||||
|
||||
autotools.configure(options)
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
if get.buildTYPE() == "emul32":
|
||||
return
|
||||
|
||||
pisitools.dodoc("README*")
|
||||
@@ -0,0 +1,128 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xcb-util-renderutil</Name>
|
||||
<Homepage>https://xcb.freedesktop.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A number of libraries which sit on top of libxcb</Summary>
|
||||
<Description>The xcb-util-renderutil module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries.</Description>
|
||||
<Archive sha1sum="574653197fae818a0d70464aecff6294047ed6c5" type="tarxz">http://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.10.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>xorg-proto</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-renderutil</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libxcb</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-renderutil-devel</Name>
|
||||
<Summary>Development files for xcb-util-renderutil</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">xcb-util-renderutil</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/lib32/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-renderutil-32bit</Name>
|
||||
<PartOf>emul32</PartOf>
|
||||
<Summary>32-bit shared libraries for xcb-util-renderutil</Summary>
|
||||
<BuildType>emul32</BuildType>
|
||||
<BuildDependencies>
|
||||
<Dependency>libxcb-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libxcb-32bit</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2022-12-09</Date>
|
||||
<Version>0.3.10</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2021-03-19</Date>
|
||||
<Version>0.3.9</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2021-03-19</Date>
|
||||
<Version>0.3.9</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2019-02-20</Date>
|
||||
<Version>0.3.9</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-11-05</Date>
|
||||
<Version>0.3.9</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-07-24</Date>
|
||||
<Version>0.3.9</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-05</Date>
|
||||
<Version>0.3.9</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-04-30</Date>
|
||||
<Version>0.3.9</Version>
|
||||
<Comment>Release bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2014-09-01</Date>
|
||||
<Version>0.3.9</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xcb-util-renderutil</Name>
|
||||
<Summary xml:lang="tr">libxcb temelli birtakım kitaplıklar</Summary>
|
||||
<Description xml:lang="tr">xcb-util-renderutil modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-renderutil-devel</Name>
|
||||
<Summary xml:lang="tr">xcb-util-renderutil için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-renderutil-32bit</Name>
|
||||
<Summary xml:lang="tr">xcb-util-renderutil için 32-bit paylaşımlı kitaplıklar</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,29 @@
|
||||
#!/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
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-vif")
|
||||
options = "--disable-static \
|
||||
--with-pic"
|
||||
|
||||
if get.buildTYPE() == "emul32":
|
||||
options += " --libdir=/usr/lib32"
|
||||
|
||||
autotools.configure(options)
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
if get.buildTYPE() == "emul32":
|
||||
return
|
||||
|
||||
pisitools.dodoc("README*")
|
||||
@@ -0,0 +1,130 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xcb-util-wm</Name>
|
||||
<Homepage>https://xcb.freedesktop.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A number of libraries which sit on top of libxcb</Summary>
|
||||
<Description>The xcb-util-wm module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries.</Description>
|
||||
<Archive sha1sum="ac46ab2e00980524175dae9f14542f35fdade782" type="tarxz">http://xcb.freedesktop.org/dist/xcb-util-wm-0.4.2.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>util-macros</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-wm</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libxcb</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-wm-devel</Name>
|
||||
<Summary>Development files for xcb-util-wm</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">xcb-util-wm</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/lib32/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-wm-32bit</Name>
|
||||
<PartOf>emul32</PartOf>
|
||||
<Summary>32-bit shared libraries for xcb-util-wm</Summary>
|
||||
<BuildType>emul32</BuildType>
|
||||
<BuildDependencies>
|
||||
<Dependency>libxcb-32bit</Dependency>
|
||||
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">xcb-util-wm</Dependency>
|
||||
<Dependency>libxcb-32bit</Dependency>
|
||||
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2022-12-09</Date>
|
||||
<Version>0.4.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2021-05-22</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2021-03-19</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2019-02-20</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-11-05</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-07-24</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2017-02-05</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-04-30</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>Release bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2014-05-16</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>xcb-util-wm</Name>
|
||||
<Summary xml:lang="tr">libxcb temelli birtakım kitaplıklar</Summary>
|
||||
<Description xml:lang="tr">xcb-util-wm modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-wm-devel</Name>
|
||||
<Summary xml:lang="tr">xcb-util-wm için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>xcb-util-wm-32bit</Name>
|
||||
<Summary xml:lang="tr">xcb-util-wm için 32-bit paylaşımlı kitaplıklar</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>driver</IsA>
|
||||
<Summary>X.Org Elographics TouchScreen input driver</Summary>
|
||||
<Description>xorg-input-elographics contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about.</Description>
|
||||
<Archive sha1sum="f325cb35f196c640cdf551f04966cbd8c037d3d2" type="tarbz2">mirrors://xorg/individual/driver/xf86-input-elographics-1.4.2.tar.bz2</Archive>
|
||||
<Archive sha1sum="4581beb4329803d0c8d3def8373e76fcce26b4b5" type="tarxz">mirrors://xorg/individual/driver/xf86-input-elographics-1.4.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="21.1.1">xorg-server-devel</Dependency>
|
||||
<Dependency>libmtdev-devel</Dependency>
|
||||
@@ -34,6 +34,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="11">
|
||||
<Date>2022-12-09</Date>
|
||||
<Version>1.4.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2021-11-12</Date>
|
||||
<Version>1.4.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<Summary>X.Org joystick input driver</Summary>
|
||||
<Description>xorg-input-joystick contains the X.Org driver for joysticks.</Description>
|
||||
<!--1.6.0 version is only for xorg-server >= 1.10-->
|
||||
<Archive sha1sum="b8664249d50ed266556877e15e3782c40614459c" type="tarbz2">mirrors://xorg/individual/driver/xf86-input-joystick-1.6.3.tar.bz2</Archive>
|
||||
<Archive sha1sum="05fe12298f6d45a91c455ccda045d156cd3e29bf" type="tarxz">mirrors://xorg/individual/driver/xf86-input-joystick-1.6.4.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="21.1.1">xorg-server-devel</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
@@ -44,6 +44,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="11">
|
||||
<Date>2022-12-09</Date>
|
||||
<Version>1.6.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2021-11-12</Date>
|
||||
<Version>1.6.3</Version>
|
||||
|
||||
@@ -20,4 +20,4 @@ def build():
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.dodoc("COPYING", "ChangeLog", "README")
|
||||
pisitools.dodoc("COPYING", "ChangeLog", "README*")
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>driver</IsA>
|
||||
<Summary>X.Org mouse input driver</Summary>
|
||||
<Description>xorg-input-mouse contains the X.Org driver for mice.</Description>
|
||||
<Archive sha1sum="b3982998808ba43117fc066c4ecc94ce67c5818e" type="tarbz2">mirrors://xorg/individual/driver/xf86-input-mouse-1.9.3.tar.bz2</Archive>
|
||||
<Archive sha1sum="d9fef342ddaae5de2f607f18c77ad237da57fc19" type="tarxz">mirrors://xorg/individual/driver/xf86-input-mouse-1.9.4.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="21.1.1">xorg-server-devel</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
@@ -47,6 +47,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="11">
|
||||
<Date>2022-12-09</Date>
|
||||
<Version>1.9.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2021-11-12</Date>
|
||||
<Version>1.9.3</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>driver</IsA>
|
||||
<Summary>X.Org vmmouse input driver</Summary>
|
||||
<Description>xorg-input-vmmouse contains the X.Org driver for mice in VMware virtual machines.</Description>
|
||||
<Archive sha1sum="c00fbf985b22a86901fa905a8037005bca96d805" type="tarbz2">mirrors://xorg/individual/driver/xf86-input-vmmouse-13.1.0.tar.bz2</Archive>
|
||||
<Archive sha1sum="9a39199fef753334e86ac194e7114a7540fb5139" type="tarxz">mirrors://xorg/individual/driver/xf86-input-vmmouse-13.2.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="21.1.1">xorg-server-devel</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
@@ -32,6 +32,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="12">
|
||||
<Date>2022-12-09</Date>
|
||||
<Version>13.2.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2021-11-12</Date>
|
||||
<Version>13.1.0</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>driver</IsA>
|
||||
<Summary>X.Org void input driver</Summary>
|
||||
<Description>xorg-input-void is a null input driver which allows the X server to operate without a core pointer and/or core keyboard.</Description>
|
||||
<Archive sha1sum="40c4e9aa7997ee24626aa0b8ecd9e7ac82a5fd63" type="tarbz2">mirrors://xorg/individual/driver/xf86-input-void-1.4.1.tar.bz2</Archive>
|
||||
<Archive sha1sum="1515396d3d926b9a49ce25298f8febc8edd09b0a" type="tarxz">mirrors://xorg/individual/driver/xf86-input-void-1.4.2.tar.xz</Archive>
|
||||
<!--1.4.0 no longer supports Xorg server releases older than 1.10-->
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="21.1.1">xorg-server-devel</Dependency>
|
||||
@@ -32,6 +32,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="12">
|
||||
<Date>2022-12-09</Date>
|
||||
<Version>1.4.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2021-11-12</Date>
|
||||
<Version>1.4.1</Version>
|
||||
|
||||
@@ -15,4 +15,4 @@ def build():
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
pisitools.dodoc("COPYING", "ChangeLog", "README")
|
||||
pisitools.dodoc("COPYING", "ChangeLog", "README*")
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>driver</IsA>
|
||||
<Summary>X.Org r128 video driver</Summary>
|
||||
<Description>xorg-video-r128 contains the X.Org driver for ATI Rage128 video cards.</Description>
|
||||
<Archive sha1sum="7cfa41d386fa43b5d30299203e4845d8afba4899" type="tarbz2">mirrors://xorg/individual/driver/xf86-video-r128-6.12.0.tar.bz2</Archive>
|
||||
<Archive sha1sum="7c1a26c6fd6b17b94484e7195b1774c02e594aad" type="tarxz">mirrors://xorg/individual/driver/xf86-video-r128-6.12.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libdrm-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
@@ -34,6 +34,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="11">
|
||||
<Date>2022-12-09</Date>
|
||||
<Version>6.12.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2021-11-12</Date>
|
||||
<Version>6.12.0</Version>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>X.Org font utilities</Summary>
|
||||
<Description>font-util package contains core font utilities for the Xorg XWindow system.</Description>
|
||||
<Archive sha1sum="1b36275c174b64a9c16da5c902c91546789a67ef" type="tarbz2">mirrors://xorg/individual/font/font-util-1.3.2.tar.bz2</Archive>
|
||||
<Archive sha1sum="8dd5a52e321191945e54b19ade81b2c3c72372f3" type="tarxz">mirrors://xorg/individual/font/font-util-1.3.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>util-macros</Dependency>
|
||||
@@ -32,6 +32,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2022-12-09</Date>
|
||||
<Version>1.3.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2020-01-10</Date>
|
||||
<Version>1.3.2</Version>
|
||||
|
||||
Reference in New Issue
Block a user