t1lib ffcall fcgi
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#!/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.configure("--disable-static \
|
||||
--enable-shared")
|
||||
|
||||
def build():
|
||||
autotools.make("-j1")
|
||||
|
||||
def install():
|
||||
pisitools.dodir("/usr/share")
|
||||
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.domove("/usr/share/html/", "/usr/share/doc/%s/" % get.srcNAME())
|
||||
|
||||
pisitools.remove("/usr/lib/*.a")
|
||||
|
||||
pisitools.dodoc("COPYING", "NEWS", "README")
|
||||
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ffcall</Name>
|
||||
<Homepage>http://www.haible.de/bruno/packages-ffcall.html</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Foreign function call libraries</Summary>
|
||||
<Description>Collection of four libraries which can be used to build foreign function call interfaces in embedded interpreters.</Description>
|
||||
<Archive sha1sum="464f1af197d417366face3007d7b63848b8fd6f4" type="targz">https://ftp.gnu.org/gnu/libffcall/libffcall-2.2.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ffcall</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>ffcall-devel</Name>
|
||||
<Summary>Development files for ffcall</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>ffcall</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="man">/usr/share/man/man3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-03-20</Date>
|
||||
<Version>2.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ffcall</Name>
|
||||
<Summary xml:lang="tr">Dış işlev fonksiyonları çağırma kitaplıkları</Summary>
|
||||
<Description xml:lang="tr">ffcall inşa sırasında yabancı fonksiyonları çağırmak için kullanılan, 4 kitaplıktan oluşan, bir kitaplığıdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ffcall-devel</Name>
|
||||
<Summary xml:lang="tr">ffcall için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,30 @@
|
||||
#!/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 libtools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
#WorkDir = "%s-%s-SNAP-0311112127" % (get.srcNAME(), get.srcVERSION())
|
||||
|
||||
def setup():
|
||||
#libtools.libtoolize("--copy --force")
|
||||
#autotools.aclocal()
|
||||
shelltools.system("sh ./autogen.sh")
|
||||
autotools.configure("--enable-static=no")
|
||||
|
||||
def build():
|
||||
autotools.make("-j1")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("LICENSE.TERMS", "README*")
|
||||
pisitools.dohtml("doc/*.html", "doc/*.gif", "doc/fastcgi-prog-guide/*.*", "doc/fastcgi-whitepaper/*.*")
|
||||
pisitools.doman("doc/cgi-fcgi.1", "doc/FCGI_Accept.3", "doc/FCGI_Finish.3", "doc/FCGI_SetExitStatus.3", "doc/FCGI_StartFilterData.3")
|
||||
|
||||
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fcgi</Name>
|
||||
<Homepage>http://www.fastcgi.com/drupal</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>FastCGI development kit</Summary>
|
||||
<Description>FastCGI is a language independent, scalable, open extension to CGI that provides high performance without the limitations of server specific APIs.</Description>
|
||||
<Archive sha1sum="a0c37cfb9b4d2bfa8f105b298759f1f00ff88050" type="targz">https://github.com/FastCGI-Archives/fcgi2/archive/2.4.2.tar.gz</Archive>
|
||||
<Patches>
|
||||
<!--Patch level="1">fcgi-no-libs.patch</Patch>
|
||||
<Patch level="1">fcgi-2.4.0-Makefile.patch</Patch>
|
||||
<Patch level="1">fcgi-2.4.0-clientdata-pointer.patch</Patch>
|
||||
<Patch level="1">fcgi-2.4.0-html-updates.patch</Patch>
|
||||
<Patch level="1">fcgi-2.4.1_pre0311112127-gcc44.patch</Patch-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>fcgi</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc/fcgi</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>fcgi-devel</Name>
|
||||
<Summary>Development files for fcgi</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">fcgi</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="man">/usr/share/man/man3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-03-21</Date>
|
||||
<Version>2.4.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>fcgi</Name>
|
||||
<Summary xml:lang="tr">FastCGI araç takımı</Summary>
|
||||
<Description xml:lang="tr">FastCGI; dil bağımsız, ölçeklenebilir, CGI sunucusunun sınırlamaları olmadan belirli API'leri yüksek performansda çalıştıran bir kitaplıktır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>fcgi-devel</Name>
|
||||
<Summary xml:lang="tr">fcgi için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user