firebird: rebuild for icu, github-cli: fix version number, new packages: python3-evdev and solaar

This commit is contained in:
suvari
2025-03-07 17:46:23 +03:00
parent 5836575bc7
commit d4db194230
12 changed files with 347505 additions and 346758 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/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, autotools, get
def build():
shelltools.export("PYTHON", "/usr/bin/python3")
pythonmodules.run("-m build --wheel --skip-dependency-check --no-isolation", pyVer="3")
def install():
pythonmodules.run("-m installer --destdir='%s' dist/*.whl" % get.installDIR(), pyVer="3")