road to kio-extras, libmtp,samba,libss added.

This commit is contained in:
Ertuğrul Erata
2015-07-30 15:34:30 +03:00
parent df83e20f6b
commit 19a6ade70d
34 changed files with 1468 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>programming.debug</Name>
</PISI>
+44
View File
@@ -0,0 +1,44 @@
#!/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():
pisitools.dosed("config/override.m4", "2.64", "2.69")
shelltools.system('sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure')
autotools.autoreconf("-vfi")
autotools.configure("--with-system-readline \
--with-separate-debug-dir=/usr/lib/debug \
--with-gdb-datadir=/usr/share/gdb \
--with-pythondir=/usr/lib/%s/site-packages \
--disable-nls \
--disable-rpath \
--with-python \
--with-expat" % get.curPYTHON())
def build():
autotools.make()
def install():
autotools.rawInstall('DESTDIR="%s"' % get.installDIR())
for libdel in ["libbfd.a","libopcodes.a"]:
pisitools.remove("/usr/lib/%s" % libdel)
# these are not necessary
#for info in ["bfd","configure","standards"]:
#pisitools.remove("/usr/share/info/%s.info" % info)
pisitools.remove("/usr/share/info/bfd.info")
for hea in ["ansidecl","symcat","dis-asm", "bfd", "bfdlink", "plugin-api"]:
pisitools.remove("/usr/include/%s.h" % hea)
pisitools.dodoc("README*", "MAINTAINERS", "COPYING*", "ChangeLog*")
+48
View File
@@ -0,0 +1,48 @@
.\"
.\" gstack manual page.
.\" Copyright (c) 1999 Ross Thompson
.\" Copyright (c) 2001, 2002, 2004, 2008 Red Hat, Inc.
.\"
.\" Original author: Ross Thompson <ross@whatsis.com>
.\"
.\" This program is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published by
.\" the Free Software Foundation; either version 2, or (at your option)
.\" any later version.
.\"
.\" This program is distributed in the hope that it will be useful,
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
.\" GNU General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public License
.\" along with this program; see the file COPYING. If not, write to
.\" the Free Software Foundation, 59 Temple Place - Suite 330,
.\" Boston, MA 02111-1307, USA.
.\"
.TH GSTACK 1 "Feb 15 2008" "Red Hat Linux" "Linux Programmer's Manual"
.SH NAME
gstack \- print a stack trace of a running process
.SH SYNOPSIS
.B gstack
pid
.SH DESCRIPTION
\f3gstack\f1 attaches to the active process named by the \f3pid\f1 on
the command line, and prints out an execution stack trace. If ELF
symbols exist in the binary (usually the case unless you have run
strip(1)), then symbolic addresses are printed as well.
If the process is part of a thread group, then \f3gstack\f1 will print
out a stack trace for each of the threads in the group.
.SH SEE ALSO
nm(1), ptrace(2), gdb(1)
.SH AUTHORS
Ross Thompson <ross@whatsis.com>
Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>
+102
View File
@@ -0,0 +1,102 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gdb</Name>
<Homepage>http://www.gnu.org/software/gdb/gdb.html</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3</License>
<IsA>app:console</IsA>
<Summary>GNU debugger</Summary>
<Description>GDB, the GNU Project debugger, allows you to see what is going on 'inside' another program while it executes -- or what another program was doing at the moment it crashed.</Description>
<Archive sha1sum="04ba2906279b16b5f99c4f6b25942843a3717cdb" type="tarxz">mirrors://gnu/gdb/gdb-7.9.1.tar.xz</Archive>
<BuildDependencies>
<Dependency>texinfo</Dependency>
<Dependency>expat-devel</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>readline-devel</Dependency>
<Dependency>ncurses-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>gdb</Name>
<RuntimeDependencies>
<Dependency>guile</Dependency>
<Dependency>expat</Dependency>
<Dependency>python</Dependency>
<Dependency>readline</Dependency>
<Dependency>ncurses</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc/gdb</Path>
<Path fileType="data">/usr/share/gdb</Path>
<Path fileType="info">/usr/share/info</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
<AdditionalFiles>
<AdditionalFile owner="root" permission="0644" target="/usr/share/man/man1/gstack.1">gstack.1</AdditionalFile>
</AdditionalFiles>
</Package>
<Package>
<Name>gdb-devel</Name>
<Summary>Development files for gdb</Summary>
<RuntimeDependencies>
<Dependency release="current">gdb</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="6">
<Date>2015-07-30</Date>
<Version>7.9.1</Version>
<Comment>Version bump.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="5">
<Date>2015-02-22</Date>
<Version>7.9</Version>
<Comment>Version bump.</Comment>
<Name>Hakan Yıldız</Name>
<Email>hknyldz93@gmail.com</Email>
</Update>
<Update release="4">
<Date>2014-05-20</Date>
<Version>7.7.1</Version>
<Comment>Version bump.</Comment>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2014-02-19</Date>
<Version>7.7</Version>
<Comment>Version bump.</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-25</Date>
<Version>7.6</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-09-23</Date>
<Version>7.5</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+16
View File
@@ -0,0 +1,16 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gdb</Name>
<Description xml:lang="tr">GDB, GNU Proje hata ayıklama aracı, çalışır durumdaki başka bir programın `içinde' olan biteni görmenizi, veya başka bir programın çöktüğü anda ne yapıyor olduğunu bilmenizi sağlar.</Description>
<Summary xml:lang="tr">GNU hata ayıklayıcısı</Summary>
<Summary xml:lang="es">Depurador GNU</Summary>
<Description xml:lang="es">GDB, el depurador del proyecto GNU permite ver lo que está pasando 'en el interior de' otro programa mientras ejecuta -- o lo que estaba haciendo cuando quedó colgado.</Description>
</Source>
<Package>
<Name>gdb-devel</Name>
<Summary xml:lang="tr">gdb için geliştirme dosyaları</Summary>
<Summary xml:lang="en">Development files for gdb</Summary>
</Package>
</PISI>