Switch away from pip3 for module installation and add license

This commit is contained in:
2025-05-12 14:55:53 +03:00
parent 80fbf9b668
commit 174ea2eef5
2 changed files with 8 additions and 5 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
name: python-markupsafe name: python-markupsafe
description: Implements a XML/HTML/XHTML Markup safe string for Python description: Implements a XML/HTML/XHTML Markup safe string for Python
version: 2.1.5 version: 2.1.5
revision: 2 revision: 3
url: https://palletsprojects.com/p/markupsafe/ url: https://palletsprojects.com/p/markupsafe/
license: BSD-3-Clause license: BSD-3-Clause
architecture: any architecture: any
depends: ["python3"] depends: ["glibc","python3"]
make_depends: ["python3","python-setuptools","python-wheel"] make_depends: ["python-build","python-installer","python-setuptools","python-wheel"]
type: source type: source
+5 -2
View File
@@ -15,11 +15,14 @@ prepare() {
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
pip3 wheel -w dist --no-cache-dir --no-build-isolation --no-deps $PWD python3 -m build --wheel --no-isolation .
} }
# The package function is executed in the source directory # The package function is executed in the source directory
# This function is used to move the compiled files into the output directory # This function is used to move the compiled files into the output directory
package() { package() {
pip3 install --root="$BPM_OUTPUT" --ignore-installed --no-index --no-user --find-links dist Markupsafe python3 -m installer --destdir "$BPM_OUTPUT" dist/*.whl
# Install package license
install -Dm644 "$BPM_SOURCE"/LICENSE.rst "$BPM_OUTPUT"/usr/share/licenses/python-markupsafe/LICENSE.rst
} }