Compare commits

..
4 Commits
Author SHA1 Message Date
EnumDev eaefeec858 Update package version to 1.5.1 2026-07-16 21:57:59 +03:00
EnumDev ac2046e7df Switch to new package format 2026-06-13 20:00:56 +03:00
EnumDev 5ea3bef8f9 Use wildcard dependency matching 2026-05-06 12:02:06 +03:00
EnumDev a2201b5e76 Rebuild with python 3.14 2026-05-06 11:41:56 +03:00
2 changed files with 6 additions and 5 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
name: python-build
description: A simple, correct Python build frontend
version: 1.5.0
version: 1.5.1
revision: 1
url: https://pypi.org/project/build/
license: MIT
@@ -10,7 +10,7 @@ architecture: any
output_architecture: any
type: source
depends:
- python3
- python3=3.14.*
- python-packaging
- python-pyproject-hooks
make_depends:
@@ -21,4 +21,4 @@ downloads:
- url: https://github.com/pypa/build/archive/refs/tags/${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 6ddf82d99317b6b61c56eb6ec0139ea91ee69dd03c6ed7dfdf160011b7d09f5d
checksum: 5a2a17d683cc597aa1930b28d824993f8077ce608e14a07c2cfb8c5565ee51b5
+3 -2
View File
@@ -1,4 +1,4 @@
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
# This is the recipe.sh script. It is executed by BPM in a temporary directory when compiling a source package
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
@@ -13,5 +13,6 @@ build() {
package() {
python3 -m installer --destdir "$BPM_OUTPUT" dist/build-"$BPM_PKG_VERSION"-py3-none-any.whl
install -Dm644 LICENSE "$BPM_OUTPUT"/usr/share/licenses/python-build/LICENSE
# Install package license
install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/python-build/LICENSE
}