Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions build_library/catalyst.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ export ac_cv_posix_semaphores_enabled=yes
EOF
}

# Common values for all stage spec files
# Common values for all stage spec files. Takes a stage number and,
# optionally, a profile name as parameters.
catalyst_stage_default() {
cat <<EOF
target: stage$1
Expand All @@ -89,7 +90,7 @@ rel_type: $TYPE
portage_confdir: $TEMPDIR/portage
repos: $FLAGS_coreos_overlay
keep_repos: portage-stable coreos-overlay
profile: $FLAGS_profile
profile: ${2:-$FLAGS_profile}
snapshot_treeish: $FLAGS_version
version_stamp: $FLAGS_version
cflags: -O2 -pipe
Expand All @@ -107,7 +108,7 @@ pkgcache_path: ${TEMPDIR}/stage1-${ARCH}-packages
update_seed: yes
update_seed_command: --exclude cross-*-cros-linux-gnu/* --exclude dev-lang/rust --exclude dev-lang/rust-bin --ignore-world y --ignore-built-slot-operator-deps y @changed-subslot
EOF
catalyst_stage_default 1
catalyst_stage_default 1 "${FLAGS_profile}/transition"
}

catalyst_stage3() {
Expand Down
1 change: 1 addition & 0 deletions changelog/updates/2026-01-07-python-bump.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- python ([3.12.12](https://www.python.org/downloads/release/python-31212/) (includes [3.12.0](https://www.python.org/downloads/release/python-3120/)))
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

EAPI=8

PYTHON_COMPAT=( python3_11 )
PYTHON_COMPAT=( python3_{11..14} )
DISTUTILS_USE_PEP517=setuptools

inherit distutils-r1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

EAPI=7

PYTHON_COMPAT=( python3_{6..11} )
PYTHON_COMPAT=( python3_{11..14} )

inherit multilib python-any-r1 systemd toolchain-funcs

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2

EAPI=7
PYTHON_COMPAT=( python3_{6..11} )
PYTHON_COMPAT=( python3_{11..14} )
TMPFILES_OPTIONAL=1
inherit python-any-r1 systemd tmpfiles

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

EAPI=8

PYTHON_COMPAT=( python3_{9..11} )
PYTHON_COMPAT=( python3_{11..14} )
inherit systemd python-any-r1

DESCRIPTION="Init scripts for Flatcar"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

EAPI=8

PYTHON_COMPAT=( python3_{6..11} )
PYTHON_COMPAT=( python3_{11..14} )
inherit python-single-r1

DESCRIPTION="emerge utilities for Flatcar developer images"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

EAPI=8

PYTHON_COMPAT=( python3_{10..11} )
PYTHON_COMPAT=( python3_{11..14} )
DISTUTILS_USE_PEP517=setuptools

inherit distutils-r1 pypi
Expand All @@ -25,6 +25,7 @@ PATCHES=(
"${FILESDIR}"/${P}-unbundle-six.patch
"${FILESDIR}"/${P}-py310.patch
"${FILESDIR}"/${P}-mock-spec.patch
"${FILESDIR}"/${P}-py312.patch
)

RDEPEND="
Expand Down
Loading