Compare commits

..
9 Commits
Author SHA1 Message Date
EnumDev 708d6902b9 Update package version to 3.14.7 2026-09-04 15:58:02 +03:00
EnumDev 534ccdbe68 Rebuild package 2026-07-10 19:15:57 +03:00
EnumDev 673eccd436 Update package version to 3.14.6 2026-06-21 11:34:13 +03:00
EnumDev a90eef25a9 Switch to new package format 2026-06-13 20:00:55 +03:00
EnumDev 3a5a6a5353 Update package version to 3.14.5 2026-05-17 16:18:42 +03:00
EnumDev 509dbc4346 Update package version to 3.14.4 2026-05-06 10:43:21 +03:00
EnumDev 8a62039343 Rebuild with tcl 9.0.2 2026-02-26 13:28:53 +02:00
EnumDev 5d39a484a0 Rebuild with tk and update optional dependencies 2026-02-25 09:19:34 +02:00
EnumDev 1c3f22bcfa Add check-version.sh script 2026-02-25 09:09:58 +02:00
3 changed files with 22 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Github repository
REPO="python/cpython"
# Get tag name using Github Rest API
TAG_NAME=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/tags | jq -r '.[].name' | grep -v -E 'a|b|rc' | head -n1)
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
echo "$VERSION"
+9 -6
View File
@@ -1,9 +1,11 @@
name: python3 name: python3
description: The Python3 interpreter description: The Python3 interpreter
version: 3.12.12 version: 3.14.7
revision: 1 revision: 1
url: https://www.python.org/ url: https://www.python.org/
license: PSF-2.0 license: PSF-2.0
maintainers:
- [email protected]
architecture: any architecture: any
type: source type: source
depends: depends:
@@ -19,20 +21,21 @@ depends:
- tzdata - tzdata
- zlib - zlib
optional_depends: optional_depends:
- python-pip - python-pip:Python module manager
- python-setuptools - sqlite:Default database integration
- sqlite - tk:Required for the tkinter module
- xz-utils - xz-utils:Required for the lzma module
make_depends: make_depends:
- bluez - bluez
- gdb - gdb
- llvm - llvm
- sqlite - sqlite
- tk
downloads: downloads:
- url: https://www.python.org/ftp/python/${BPM_PKG_VERSION}/Python-${BPM_PKG_VERSION}.tar.xz - url: https://www.python.org/ftp/python/${BPM_PKG_VERSION}/Python-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: fb85a13414b028c49ba18bbd523c2d055a30b56b18b92ce454ea2c51edc656c4 checksum: 3b48dac8fb59f62eaa67ac83c1eb12bda1b7a08406dd286e252c11a66be27f81
split_packages: split_packages:
- name: python3 - name: python3
- name: python3-tests - name: python3-tests
+1 -1
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 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 # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT