+224623
-224128
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
a4c96df8cd34f33fd2379970ba350e7f77cfece3
|
||||
c1d5407e7c10392702de8433e8fd66b7c3a0d634
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
ce19fd5303acae49b4d8c04170b80ffc28a33b03
|
||||
228d79dd316b8729e5d5387736ba096254c78754
|
||||
@@ -0,0 +1,16 @@
|
||||
#!/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 shelltools
|
||||
|
||||
shelltools.export("SETUPTOOLS_SCM_PRETEND_VERSION","1.3.1")
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
@@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-importlib_resources</Name>
|
||||
<Homepage>https://gitlab.com/python-devs/importlib_resources</Homepage>
|
||||
<Packager>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>Apache</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Design and implementation for a planned importlib.resources</Summary>
|
||||
<Description>The key goal of this module is to replace parts of pkg_resources with a solution in Python's stdlib that relies on well-defined APIs. This makes reading resources included in packages easier, with more stable and consistent semantics.</Description>
|
||||
<Archive sha1sum="601bdaa2989b7e08c857e48fea2cb5560ff39653" type="targz">https://gitlab.com/python-devs/importlib_resources/-/archive/v1.3.1/importlib_resources-v1.3.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-setuptools-scm</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-importlib_resources</Name>
|
||||
<Summary>Design and implementation for a planned importlib.resources</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python-importlib_metadata</Dependency>
|
||||
<Dependency>python-singledispatch</Dependency>
|
||||
<Dependency>python-contextlib2</Dependency>
|
||||
<Dependency>python-pathlib2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python-importlib_resources</Path>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-03-18</Date>
|
||||
<Version>1.3.1</Version>
|
||||
<Comment>First pisi release.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-importlib_resources</Name>
|
||||
<Summary xml:lang="tr">Python paketlerinin içerisindeki kaynakları daha iyi yönetebilen python kitaplığı.</Summary>
|
||||
<Description xml:lang="tr">python-importlib_resources, Python paketlerinin içerisindeki kaynakları daha iyi yönetebilen python kitaplığı sunar. Ana amacı pkg_resources madülünün yerini almaktır.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
#!/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
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-singledispatch</Name>
|
||||
<Homepage>https://bitbucket.org/ambv/singledispatchs</Homepage>
|
||||
<Packager>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>MIT</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>This library is a backport of functools.singledispatch to Python 2.6 - 3.3.</Summary>
|
||||
<Description>This library is a backport of this functionality to Python 2.6 - 3.3. PEP 443 proposed to expose a mechanism in the functools standard library module in Python 3.4 that provides a simple form of generic programming known as single-dispatch generic functions.</Description>
|
||||
<Archive sha1sum="852fe978c0f5abdf248eda80b56ef14905cf7f9f" type="targz">https://bitbucket.org/ambv/singledispatch/get/3.4.0.3.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-singledispatch</Name>
|
||||
<Summary>This library is a backport of functools.singledispatch to Python 2.6 - 3.3.</Summary>
|
||||
<RuntimeDependencies>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python-singledispatch</Path>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-03-18</Date>
|
||||
<Version>3.4.0.3</Version>
|
||||
<Comment>First pisi release.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-singledispatch</Name>
|
||||
<Summary xml:lang="tr">functools.singledispatch yordamının python 3.4'ten geriye dönüklüğünü sağlayan kitaplık.</Summary>
|
||||
<Description xml:lang="tr">python-singledispatch, functools.singledispatch yordamının python 3.4'ten geriye dönüklüğünü sağlayan kitaplığı sağlar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>SQLAlchemy database migrations for Flask applications using Alembic.</Summary>
|
||||
<Description>Flask-Migrate is an extension that handles SQLAlchemy database migrations for Flask applications using Alembic. The database operations are provided as command-line arguments under the flask db command.</Description>
|
||||
<Archive sha1sum="2a5c93360e2422344c1333fd52dd66fbc613185b" type="targz">https://github.com/miguelgrinberg/Flask-Migrate/archive/v2.5.2.tar.gz</Archive>
|
||||
<Archive sha1sum="1b420bfb5bca0a3473f99c7f47a606f311310843" type="targz">https://github.com/miguelgrinberg/Flask-Migrate/archive/v2.5.3.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
@@ -29,12 +29,19 @@
|
||||
<Dependency>python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python3-flask-migrate</Path>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2020-03-18</Date>
|
||||
<Version>2.5.3</Version>
|
||||
<Comment>Patch version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2020-02-19</Date>
|
||||
<Version>2.5.2</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Chromium HSTS Preload list as a Python package and updated daily.</Summary>
|
||||
<Description>Chromium HSTS Preload list as a Python package and updated daily. The package provides a single function: in_hsts_preload() which takes an IDNA-encoded host and returns either True or False regarding whether that host should be only accessed via HTTPS.</Description>
|
||||
<Archive sha1sum="1876df2bc6de6c9ff122606e352acd3a457eac53" type="targz">https://github.com/sethmlarson/hstspreload/archive/2020.3.4.tar.gz</Archive>
|
||||
<Archive sha1sum="fd40d034b5132b3ad8145d9c61f878cc2e4025a3" type="targz">https://github.com/sethmlarson/hstspreload/archive/2020.3.17.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
@@ -34,6 +34,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2020-03-18</Date>
|
||||
<Version>2020.3.17</Version>
|
||||
<Comment>Patch version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2020-03-04</Date>
|
||||
<Version>2020.3.4</Version>
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
#!/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 shelltools
|
||||
|
||||
shelltools.export("SETUPTOOLS_SCM_PRETEND_VERSION","1.3.1")
|
||||
|
||||
def build():
|
||||
pythonmodules.compile(pyVer="3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-importlib_resources</Name>
|
||||
<Homepage>https://gitlab.com/python-devs/importlib_resources</Homepage>
|
||||
<Packager>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python3</PartOf>
|
||||
<License>Apache</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Design and implementation for a planned importlib.resources</Summary>
|
||||
<Description>The key goal of this module is to replace parts of pkg_resources with a solution in Python's stdlib that relies on well-defined APIs. This makes reading resources included in packages easier, with more stable and consistent semantics.</Description>
|
||||
<Archive sha1sum="601bdaa2989b7e08c857e48fea2cb5560ff39653" type="targz">https://gitlab.com/python-devs/importlib_resources/-/archive/v1.3.1/importlib_resources-v1.3.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-setuptools-scm</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python3-importlib_resources</Name>
|
||||
<Summary>Design and implementation for a planned importlib.resources</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python3-importlib_resources</Path>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>8020-03-18</Date>
|
||||
<Version>1.3.1</Version>
|
||||
<Comment>First pisi release.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-importlib_resources</Name>
|
||||
<Summary xml:lang="tr">Python paketlerinin içerisindeki kaynakları daha iyi yönetebilen python kitaplığı.</Summary>
|
||||
<Description xml:lang="tr">python3-importlib_resources, Python paketlerinin içerisindeki kaynakları daha iyi yönetebilen python kitaplığı sunar. Ana amacı pkg_resources madülünün yerini almaktır.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -8,7 +8,7 @@ from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
shelltools.export("SETUPTOOLS_SCM_PRETEND_VERSION","5.3.5")
|
||||
shelltools.export("SETUPTOOLS_SCM_PRETEND_VERSION","5.4.1")
|
||||
|
||||
def build():
|
||||
pythonmodules.compile(pyVer="3")
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Simple powerful testing with Python</Summary>
|
||||
<Description>The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries.</Description>
|
||||
<Archive sha1sum="ffb59c3432bb2a6c0a43642c3aa8b7aa1f30c4af" type="targz">https://github.com/pytest-dev/pytest/archive/5.3.5.tar.gz</Archive>
|
||||
<Archive sha1sum="1a489a43d68169e356e99730d8254bd9f69e1446" type="targz">https://github.com/pytest-dev/pytest/archive/5.4.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-setuptools-scm</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
@@ -36,14 +36,21 @@
|
||||
<Dependency>python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
<Path fileType="executable">/usr/bin/pytest</Path>
|
||||
<Path fileType="executable">/usr/bin/py.test</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python3-pytest</Path>
|
||||
<Path fileType="executable">/usr/bin/py.test</Path>
|
||||
<Path fileType="executable">/usr/bin/pytest</Path>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2020-03-17</Date>
|
||||
<Version>5.4.1</Version>
|
||||
<Comment>Minor version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2020-02-13</Date>
|
||||
<Version>5.3.5</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>The Python SQL Toolkit and Object Relational Mapper</Summary>
|
||||
<Description>SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL. SQLAlchemy provides a full suite of well known enterprise-level persistence patterns, designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language.</Description>
|
||||
<Archive sha1sum="a60948ae81df947cee7445dcccdb34b651dbbe1d" type="targz">https://github.com/sqlalchemy/sqlalchemy/archive/rel_1_3_14.tar.gz</Archive>
|
||||
<Archive sha1sum="c9628f7c677b50a91059a563253535f794b3cbf5" type="targz">https://github.com/sqlalchemy/sqlalchemy/archive/rel_1_3_15.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
@@ -33,6 +33,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2020-03-18</Date>
|
||||
<Version>1.3.15</Version>
|
||||
<Comment>Patch version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2020-03-11</Date>
|
||||
<Version>1.3.14</Version>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Testtools - tasteful testing for python.</Summary>
|
||||
<Description>testtools is a set of extensions to the Python standard library's unit testing framework.</Description>
|
||||
<Archive sha1sum="5c5bbe2c1bc52077e6debafbc3a8a695d986dbad" type="targz">https://files.pythonhosted.org/packages/e5/d4/9b22df94d0d5c83affe2517295c85fa2d9917f3cafa7dc7f6b1ce4135b00/testtools-2.3.0.tar.gz</Archive>
|
||||
<Archive sha1sum="8bda1ce51500bb55593eb094bf5bc2d6a4bc36e8" type="targz">https://pypi.io/packages/source/t/testtools/testtools-2.4.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
@@ -26,16 +26,25 @@
|
||||
<Summary>Testtools - tasteful testing for python.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-extras</Dependency>
|
||||
<Dependency>python3-six</Dependency>
|
||||
<Dependency>python3-pbr</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python3-testtools</Path>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2020-03-17</Date>
|
||||
<Version>2.4.0</Version>
|
||||
<Comment>Minor version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2020-02-20</Date>
|
||||
<Version>2.3.0</Version>
|
||||
|
||||
@@ -8,10 +8,15 @@ from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
NoStrip = "/"
|
||||
#NoStrip = "/"
|
||||
|
||||
def setup():
|
||||
autotools.configure()
|
||||
autotools.autoreconf("-vif")
|
||||
# suppress compiler warnings
|
||||
pisitools.cxxflags.add("-Wno-format-truncation")
|
||||
autotools.configure("--disable-static")
|
||||
# fix unused direct dependency analysis
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
@@ -19,4 +24,4 @@ def build():
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README", "COPYING")
|
||||
pisitools.dodoc("README", "README.md", "COPYING")
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libctemplate</Name>
|
||||
@@ -8,25 +8,30 @@
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.misc</PartOf>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>CTemplate is a simple but powerful template language for C++.</Summary>
|
||||
<Description>It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language.</Description>
|
||||
<Archive sha1sum="be6ba46bf64287887f9b806719a851af50f79acd" type="targz">https://github.com/OlafvdSpek/ctemplate/archive/ctemplate-2.3.tar.gz</Archive>
|
||||
<Archive sha1sum="3674bbc17876e8143dafdfb7a9f0edd407300826" type="targz">https://github.com/OlafvdSpek/ctemplate/archive/ctemplate-2.4.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libctemplate</Name>
|
||||
<Summary>CTemplate is a simple but powerful template language for C++.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="binary">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="binary">/usr/bin/diff_tpl_auto_escape</Path>
|
||||
<Path fileType="binary">/usr/bin/make_tpl_varnames_h</Path>
|
||||
<Path fileType="binary">/usr/bin/template-converter</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
@@ -42,6 +47,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-03-18</Date>
|
||||
<Version>2.4</Version>
|
||||
<Comment>Minor version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-09-09</Date>
|
||||
<Version>2.3</Version>
|
||||
@@ -71,4 +83,4 @@
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ctemplate</Name>
|
||||
<Summary xml:lang="en">CTemplate is a simple but powerful template language for C++.</Summary>
|
||||
<Description xml:lang="en">It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language.</Description>
|
||||
<Name>libctemplate</Name>
|
||||
<Summary xml:lang="tr">CTemplate C++ için basit ama çok güçlü bır taslak/şablon kitaplığıdır.</Summary>
|
||||
<Description xml:lang="tr">libctemplate, C++ için basit ama çok güçlü bır taslak/şablon kitaplığı sunar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user