t1lib ffcall fcgi

This commit is contained in:
Rmys
2020-03-22 11:49:11 +03:00
parent 3e414900a6
commit ec541d46e0
18 changed files with 212102 additions and 211355 deletions
+30
View File
@@ -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")
+56
View File
@@ -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>
+13
View File
@@ -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>