head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.20 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.18 pkgsrc-2025Q4-base:1.1 pkgsrc-2025Q3:1.1.0.16 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.14 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.12 pkgsrc-2025Q1-base:1.1 pkgsrc-2024Q4:1.1.0.10 pkgsrc-2024Q4-base:1.1 pkgsrc-2024Q3:1.1.0.8 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.6 pkgsrc-2024Q2-base:1.1 pkgsrc-2024Q1:1.1.0.4 pkgsrc-2024Q1-base:1.1 pkgsrc-2023Q4:1.1.0.2 pkgsrc-2023Q4-base:1.1; locks; strict; comment @# @; 1.1 date 2023.10.05.04.46.05; author gutteridge; state Exp; branches; next ; commitid A393n6Vj0upproHE; desc @@ 1.1 log @py-pandas: fix (sandboxed) non-default Python builds Another issue where Meson isn't versioned in pkgsrc, so we end up with it "helpfully" supplying the path to Python it believes is correct, which is wrong for any non-default Python version. (The 2.1.0 version of this package carried a similar fix, which was removed in the update to 2.1.1; a variation of it is restored here.) Separately, this package directly expresses a minimum Meson version, so reflect that as well. @ text @$NetBSD$ Allow for differences between meson's idea of the path to Python and the version that's actually the target. (meson is not py-versioned.) --- meson.build.orig 1970-01-01 00:00:00.000000000 +0000 +++ meson.build @@@@ -2,7 +2,7 @@@@ project( 'pandas', 'c', 'cpp', 'cython', - version: run_command(['generate_version.py', '--print'], check: true).stdout().strip(), + version: run_command(['@@TOOL_PYTHONBIN@@', 'generate_version.py', '--print'], check: true).stdout().strip(), license: 'BSD-3', meson_version: '>=1.2.1', default_options: [ @