mesa buildep is fini, ( not LLVM )

checkelf problem, deps was fixed
This commit is contained in:
Ertuğrul Erata
2015-06-28 12:10:19 +03:00
parent 0465ef21ba
commit 6240da8808
33 changed files with 1482 additions and 2 deletions
+40
View File
@@ -0,0 +1,40 @@
#!/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
libdir = "lib32" if get.buildTYPE() == "emul32" else "lib"
jobs = get.makeJOBS().replace("-j", "")
def setup():
autotools.configure("\
--sysconfdir=/etc/samba \
--builtin-libraries=replace \
--bundled-libraries=NONE \
--disable-rpath \
--disable-rpath-install \
--disable-silent-rules \
--enable-talloc-compat1 \
")
def build():
autotools.make("JOBS=%s" % jobs)
def install():
autotools.rawInstall("DESTDIR=%s JOBS=%s" % (get.installDIR(), jobs))
#pisitools.removeDir("/usr/share/swig")
#pisitools.remove("/usr/lib*/*.a")
#pisitools.remove("/usr/lib*/libtalloc-compat1-%s.so" % get.srcVERSION())
# Create symlinks for so file
#pisitools.dosym("libtalloc.so.%s" % get.srcVERSION(), "/usr/%s/libtalloc.so.%s" % (libdir, get.srcVERSION().split(".")[0]))
#pisitools.dosym("libtalloc.so.%s" % get.srcVERSION(), "/usr/%s/libtalloc.so" % libdir)
pisitools.dodoc("NEWS")
+110
View File
@@ -0,0 +1,110 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libtalloc</Name>
<Homepage>http://talloc.samba.org</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv3+</License>
<IsA>library</IsA>
<Summary>Hierarchical pool based memory allocator</Summary>
<Description>libtalloc is a library which implements a hierarchical allocator with destructors which is the core memory allocator in samba.</Description>
<Archive sha1sum="a02ffe90c3dd31fbe14ecaa79912437bdf7295c1" type="targz">http://www.samba.org/ftp/talloc/talloc-2.1.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>docbook-xsl</Dependency>
<Dependency>libxslt-devel</Dependency>
<Dependency>python-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libtalloc</Name>
<RuntimeDependencies>
<Dependency>python</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>libtalloc-devel</Name>
<Summary>Development files for libtalloc</Summary>
<RuntimeDependencies>
<Dependency release="current">libtalloc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/lib32/pkgconfig</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="man">/usr/share/man/man3</Path>
</Files>
</Package>
<Package>
<Name>libtalloc-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for libtalloc</Summary>
<BuildType>emul32</BuildType>
<BuildDependencies>
<Dependency>glibc-32bit</Dependency>
</BuildDependencies>
<RuntimeDependencies>
<Dependency>glibc-32bit</Dependency>
<Dependency release="current">libtalloc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32</Path>
</Files>
</Package>
<History>
<Update release="6">
<Date>2015-06-28</Date>
<Version>2.1.2</Version>
<Comment>Version bump.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="5">
<Date>2014-05-22</Date>
<Version>2.1.1</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="4">
<Date>2014-04-23</Date>
<Version>2.1.0</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2014-03-09</Date>
<Version>2.0.8</Version>
<Comment>Rebuild for buildhost</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-07-07</Date>
<Version>2.0.8</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-09-25</Date>
<Version>2.0.7</Version>
<Comment>First release</Comment>
<Name>Erdem Artan</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,18 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libtalloc</Name>
<Summary xml:lang="tr">Bellek yönetim kitaplığı</Summary>
<Description xml:lang="tr">libtalloc, samba hizmetinin temel bellek ayırıcısını oluşturan hiyerarşik havuz tabanlı ayırıcıyı gerçekleyen kitaplıktır.</Description>
</Source>
<Package>
<Name>libtalloc-devel</Name>
<Summary xml:lang="tr">libtalloc için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>libtalloc-32bit</Name>
<Summary xml:lang="tr">libtalloc için 32-bit paylaşımlı kitaplıklar</Summary>
</Package>
</PISI>