create core package

This commit is contained in:
aydemir
2015-02-24 11:18:35 +02:00
parent 0e4b743b82
commit 70b25d0f95
1098 changed files with 169545 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
#!/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 shelltools
from pisi.actionsapi import get
def setup():
# fix for glibc 2.16
#pisitools.dosed("src/base/linuxthreads.cc", "siginfo_t", "siginfo")
shelltools.chmod("autogen.sh", 0755)
shelltools.system("./autogen.sh")
autotools.configure("--disable-static \
--disable-dependency-tracking \
--enable-fast-install \
--enable-debugalloc \
%s" % ("--enable-frame-pointers" if get.ARCH() == "x86_64" else ""))
# Disable rpath
pisitools.dosed("libtool", "^hardcode_libdir_flag_spec=.*", "hardcode_libdir_flag_spec=\"\"")
pisitools.dosed("libtool", "^runpath_var=LD_RUN_PATH", "runpath_var=DIE_RPATH_DIE")
def build():
autotools.make("noinst_PROGRAMS=' '")
def install():
autotools.rawInstall("DESTDIR=%s docdir=/usr/share/doc/gperftools" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO")
+90
View File
@@ -0,0 +1,90 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gperftools</Name>
<Homepage>http://code.google.com/p/gperftools/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<IsA>app:console</IsA>
<Summary>Google Performance Tools</Summary>
<Description>Perf Tools is a collection of a high-performance multi-threaded malloc() implementation, plus some pretty nifty performance analysis tools.</Description>
<Archive sha1sum="a5b3db3e640e7ea4a0c5a49a8e666658234396aa" type="targz">http://source.pisilinux.org/1.0/gperftools-846b775dfadb.tar.gz</Archive>
</Source>
<Package>
<Name>gperftools</Name>
<RuntimeDependencies>
<Dependency>libunwind</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc/gperftools/COPYING</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>gperftools-devel</Name>
<IsA>library</IsA>
<Summary>Development headers for gperftools</Summary>
<Description>gperftools-devel provides development headers for gperftools.</Description>
<RuntimeDependencies>
<Dependency release="current">gperftools</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>gperftools-docs</Name>
<IsA>data:doc</IsA>
<PartOf>system.doc</PartOf>
<Summary>Documentation files for gperftools</Summary>
<Description>gperftools-docs provides documentation files for gperftools.</Description>
<RuntimeDependencies>
<Dependency release="current">gperftools</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc/gperftools</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2014-06-02</Date>
<Version>2.2</Version>
<Comment>Version bump.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2014-02-24</Date>
<Version>2.1</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
<Update release="2">
<Date>2013-01-27</Date>
<Version>2.0</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2011-02-20</Date>
<Version>1.7</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+20
View File
@@ -0,0 +1,20 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gperftools</Name>
<Summary xml:lang="tr">Google Performans Araçları</Summary>
<Description xml:lang="tr">gperftools yüksek performanslı ve yararlı performans analizi araçları içerir.</Description>
</Source>
<Package>
<Name>gperftools-devel</Name>
<Summary xml:lang="tr">gperftools için geliştirme başlıkları</Summary>
<Description xml:lang="tr">gperftools için geliştirme başlıklarını içerir.</Description>
</Package>
<Package>
<Name>gperftools-docs</Name>
<Summary xml:lang="tr">gperftools için belgelendirme dosyaları</Summary>
<Description xml:lang="tr">gperftools için belgelendirme dosyalarını içerir.</Description>
</Package>
</PISI>