444
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
# -*- 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
|
||||
|
||||
WorkDir = "."
|
||||
|
||||
def setup():
|
||||
pisitools.dosed("main.c", "len + 13", "len + 14")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
pisitools.dobin("btyacc")
|
||||
pisitools.newman("manpage", "btyacc.1")
|
||||
pisitools.dodoc("README*")
|
||||
@@ -1,10 +0,0 @@
|
||||
--- a/mstring.c
|
||||
+++ b/mstring.c
|
||||
@@ -1,6 +1,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
+#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include "mstring.h"
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
Respect CC, append to CFLAGS (but not -g), append to LDFLAGS, use system LD -jer
|
||||
|
||||
--- a/Makefile 1999-07-15 19:40:12.000000000 +0200
|
||||
+++ b/Makefile 2009-09-04 15:27:15.000000000 +0200
|
||||
@@ -8,14 +8,13 @@
|
||||
|
||||
HDRS = defs.h mstring.h
|
||||
|
||||
-CFLAGS = -g -Wall -Wstrict-prototypes -Wmissing-prototypes
|
||||
+CFLAGS += -Wall -Wstrict-prototypes -Wmissing-prototypes
|
||||
|
||||
-LDFLAGS = -static
|
||||
+LDFLAGS += -static
|
||||
|
||||
LIBS =
|
||||
|
||||
-CC = gcc
|
||||
-LINKER = gcc
|
||||
+LINKER = $(CC)
|
||||
# LINKER = cl
|
||||
# CC = cl
|
||||
|
||||
@@ -1,54 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>btyacc</Name>
|
||||
<Homepage>http://www.siber.com/btyacc</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>freedist</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Backtracking YACC - modified from Berkeley YACC</Summary>
|
||||
<Description>This is original Berkeley Yacc modified to better fit production environment (and to have less bugs, too).</Description>
|
||||
<Archive sha1sum="4a70f78d9695fa1101c49ab1cdbfda5ab740c027" type="targz">http://www.siber.com/btyacc/btyacc-3-0.tar.gz</Archive>
|
||||
<Patches>
|
||||
<Patch level="1">btyacc-3.0-includes.patch</Patch>
|
||||
<Patch level="1">btyacc-3.0-makefile.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>btyacc</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-05-11</Date>
|
||||
<Version>3.0</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-11-13</Date>
|
||||
<Version>3.0</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-15</Date>
|
||||
<Version>3.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,18 +0,0 @@
|
||||
# -*- 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 install():
|
||||
autotools.install()
|
||||
|
||||
pisitools.dodoc("README", "CHANGES")
|
||||
@@ -1,77 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>diffstat</Name>
|
||||
<Homepage>http://invisible-island.net/diffstat/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Diffstat reads the output of the diff command and displays a histogram of the insertions, deletions, and modifications in each file</Summary>
|
||||
<Description>Diffstat reads the output of the diff command and displays a histogram of the insertions, deletions, and modifications in each file.Diffstat is commonly used to provide a summary of the changes in large, complex patch files.</Description>
|
||||
<Archive sha1sum="85f81d9e6ec704cb8cf82eb404ca9dd69d6469ff" type="targz">ftp://invisible-island.net/diffstat/diffstat-1.59.tgz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>xz</Dependency>
|
||||
<Dependency>gzip</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>ncompress</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>diffstat</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2014-11-23</Date>
|
||||
<Version>1.59</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2014-05-11</Date>
|
||||
<Version>1.58</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-03-29</Date>
|
||||
<Version>1.58</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-10-22</Date>
|
||||
<Version>1.57</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-02-18</Date>
|
||||
<Version>1.56</Version>
|
||||
<Comment>version bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-08-15</Date>
|
||||
<Version>1.55</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ramazan Utku</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>diffstat</Name>
|
||||
<Description xml:lang="es">Diffstat lee la salida del comando diff y muestra un histograma de inserciones, borrados y modificaciones en cada archivo. Se usa comúnmente para mostrar un resumen de las modificaciones en archivos lagos y complejos.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt.
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def setup():
|
||||
autotools.configure('--enable-interfaces="c,cxx"')
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
# tests run hours and hours, running it is left to packager
|
||||
#def check():
|
||||
# autotools.make("check")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("BUGS", "COPYING", "CREDITS", "ChangeLog", "STANDARDS", "TODO", "README*", "NEWS")
|
||||
@@ -0,0 +1,120 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ppl</Name>
|
||||
<Homepage>http://www.cs.unipr.it/ppl/</Homepage>
|
||||
<Packager>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<IsA>app:console</IsA>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Pharma Polyhedra library</Summary>
|
||||
<Description>ppl is the Parma Polyhedra Library that provides numerical abstractions for analysis of complex systems.</Description>
|
||||
<Archive sha1sum="d24a9e95c22459b396820109c9bc195f35e60640" type="tarxz">http://bugseng.com/external/ppl/download/ftp/releases/1.1/ppl-1.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<!-- gmp with cxx support is needed -->
|
||||
<Dependency>gmp-devel</Dependency>
|
||||
<Dependency>glpk-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ppl</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gmp</Dependency>
|
||||
<Dependency>glpk</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc/COPYING</Path>
|
||||
<Path fileType="doc">/usr/share/doc/CREDITS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/README</Path>
|
||||
<Path fileType="doc">/usr/share/doc/NEWS</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>ppl-docs</Name>
|
||||
<PartOf>system.doc</PartOf>
|
||||
<Summary>Documentation for ppl</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>ppl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/ppl</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>ppl-devel</Name>
|
||||
<Summary>Development files for ppl</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">ppl</Dependency>
|
||||
<Dependency>gmp-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/ppl-config</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/share/aclocal</Path>
|
||||
<Path fileType="man">/usr/share/man/man3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2014-09-06</Date>
|
||||
<Version>1.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2014-05-11</Date>
|
||||
<Version>1.1</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-03-29</Date>
|
||||
<Version>1.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-08-27</Date>
|
||||
<Version>1.0</Version>
|
||||
<Comment>Clean ppl, version bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-08-01</Date>
|
||||
<Version>1.0</Version>
|
||||
<Comment>Fix deps.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-02-19</Date>
|
||||
<Version>1.0</Version>
|
||||
<Comment>Add patch for gmp 5.10.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-07-13</Date>
|
||||
<Version>1.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ppl</Name>
|
||||
<Summary xml:lang="tr">Pharma Polyhedra kitaplığı</Summary>
|
||||
<Description xml:lang="tr">ppl, kompleks sistemlerin analizi için sayısal ayrım sağlayan Pharma Polyhedra kitaplığıdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ppl-docs</Name>
|
||||
<Summary xml:lang="tr">ppl kitaplığı belgeleri</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>ppl-devel</Name>
|
||||
<Summary xml:lang="tr">ppl için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -1,27 +0,0 @@
|
||||
#!/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.autoconf()
|
||||
autotools.configure("--without-rpmbuild \
|
||||
--with-patch-wrapper \
|
||||
--with-sendmail=/usr/sbin/sendmail \
|
||||
--with-patch=/usr/bin/patch \
|
||||
--with-diffstat=/usr/bin/diffstat")
|
||||
|
||||
def build():
|
||||
autotools.make("BUILD_ROOT=%s RELEASE=%s" % (get.installDIR(), get.srcRELEASE()))
|
||||
|
||||
#def check():
|
||||
#autotools.make("check")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("BUILD_ROOT=%s" % get.installDIR())
|
||||
pisitools.removeDir("/usr/share/emacs")
|
||||
@@ -1,76 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>quilt</Name>
|
||||
<Homepage>http://savannah.nongnu.org/projects/quilt</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Scripts for working with series of patches</Summary>
|
||||
<Description>quilt allow one to manage a series of patches by keeping track of the changes each patch makes.</Description>
|
||||
<Archive sha1sum="06eb2eda331c37e28b6172e6d22cd9fcf0ad56ea" type="targz">http://mirror.rackdc.com/savannah/quilt/quilt-0.64.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gawk</Dependency>
|
||||
<Dependency>gettext</Dependency>
|
||||
<Dependency>util-linux</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>quilt</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>diffstat</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/quilt</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2015-03-01</Date>
|
||||
<Version>0.64</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-05-11</Date>
|
||||
<Version>0.61</Version>
|
||||
<Comment>Release bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-03-29</Date>
|
||||
<Version>0.61</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-08-31</Date>
|
||||
<Version>0.60</Version>
|
||||
<Comment>Clean quilt.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-05-30</Date>
|
||||
<Version>0.60</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>quilt</Name>
|
||||
<Summary xml:lang="tr">Yama serileriyle çalışmak için betik araçları</Summary>
|
||||
<Description xml:lang="tr">quilt, yamaları yığın yapısına göre düzenleyen, kolayca yama uygulamayı ve kaldırmayı sağlayan bir yama yönetim uygulamasıdır.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user