python3-flit-core, python3-typing_extensions

This commit is contained in:
Rmys
2022-07-02 14:41:42 +03:00
committed by ayhanyalcinsoy
parent bda27c3ad5
commit 3e60043eec
10 changed files with 336786 additions and 335840 deletions
@@ -0,0 +1,25 @@
#!/usr/bin/env 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 shelltools
from pisi.actionsapi import get
def build():
shelltools.system("PYTHONPATH=flit_core python3 -m flit build --format wheel")
shelltools.cd("flit_core")
shelltools.system(" python3 build_dists.py")
def install():
shelltools.system("PIP_CONFIG_FILE=/dev/null pip3 install --isolated --root=%s --ignore-installed --no-deps dist/*.whl" % get.installDIR())
shelltools.cd("flit_core")
shelltools.system("PIP_CONFIG_FILE=/dev/null pip3 install --isolated --root=%s --ignore-installed --no-deps dist/*.whl" % get.installDIR())
shelltools.cd("..")
pisitools.dodoc("LICENSE", "README*")