add missing dependency.

This commit is contained in:
4fury-c3440d8
2021-10-14 06:52:51 +03:00
parent 1eb4c63864
commit d967ec69ea
2 changed files with 63 additions and 0 deletions
@@ -0,0 +1,18 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import pythonmodules
def setup():
pass
def build():
pythonmodules.compile(pyVer = '3')
def install():
pythonmodules.install(pyVer = '3')
# pisitools.dodoc("")
@@ -0,0 +1,45 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python3-isodate</Name>
<Homepage>https://github.com/gweis/isodate/</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<PartOf>programming.language.python3</PartOf>
<Summary>ISO 8601 date/time parser.</Summary>
<Description>This module implements ISO 8601 date, time and duration parsing. The implementation follows ISO8601:2004 standard, and implements only date/time representations mentioned in the standard. If something is not mentioned there, then it is treated as non existent, and not as an allowed option.</Description>
<Archive sha1sum="6b6fd5db5abce3d3f15a7b53bc78b003528ac059" type="targz">
https://github.com/gweis/isodate/archive/refs/tags/0.6.0.tar.gz
</Archive>
<BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python3-isodate</Name>
<RuntimeDependencies>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-06-18</Date>
<Version>0.6.0</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>