This commit is contained in:
Rmys
2019-01-29 00:43:19 +03:00
parent 1f084f0915
commit d2cd52ce99
13 changed files with 425 additions and 40 deletions
@@ -0,0 +1,23 @@
#!/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 pythonmodules
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
from pisi.actionsapi import shelltools
shelltools.export("PYTHONDONTWRITEBYTECODE", "1")
WorkDir = "Mako-%s" % get.srcVERSION()
def install():
shelltools.system('sed -i "s:mako-render:&3:g" setup.py')
pythonmodules.install(pyVer="3")
#pisitools.dodoc("doc/*.txt")
pisitools.dohtml("doc/*.html")
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), "doc/build")
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), "examples")
@@ -0,0 +1,58 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python3-mako</Name>
<Homepage>https://www.makotemplates.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>app:console</IsA>
<IsA>library</IsA>
<Summary>A python3 templating language</Summary>
<Description>python3-mako is a super-fast templating language that borrows the best ideas from the existing templating languages.</Description>
<Archive sha1sum="bf0c1f4cdfca4dd37bc0c9f83e984a0558268b42" type="targz">https://pypi.python.org/packages/eb/f3/67579bb486517c0d49547f9697e36582cd19dafb5df9e687ed8e22de57fa/Mako-1.0.7.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-beaker</Dependency>
<Dependency>python3-MarkupSafe</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python3-mako</Name>
<RuntimeDependencies>
<Dependency>python3-beaker</Dependency>
<Dependency>python3-MarkupSafe</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>python3-mako-docs</Name>
<RuntimeDependencies>
<Dependency release="current">python3-mako</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc/*/html</Path>
<Path fileType="doc">/usr/share/doc/*/build</Path>
<Path fileType="doc">/usr/share/doc/*/examples</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-01-28</Date>
<Version>1.0.7</Version>
<Comment>First release</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>python3-mako</Name>
<Summary xml:lang="tr">Python şablonlama dili</Summary>
<Description xml:lang="tr">python3-mako, varolan şablonlama dillerindeki en iyi fikirleri bir araya getiren süper hızlı bir şablonlama dilidir.</Description>
</Source>
<Package>
<Name>python3-mako-docs</Name>
<Summary xml:lang="tr">python3-mako için belgelendirme dosyaları</Summary>
</Package>
</PISI>