Skip to content

Commit 163fe24

Browse files
authored
Fix python include path for non-windows (#36707)
1 parent e018f75 commit 163fe24

File tree

4 files changed

+7
-14
lines changed

4 files changed

+7
-14
lines changed

ports/python3/0018-fix-sysconfig-include.patch

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,6 @@ diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py
22
index ebe371182..e351df7da 100644
33
--- a/Lib/sysconfig.py
44
+++ b/Lib/sysconfig.py
5-
@@ -30,9 +30,9 @@
6-
'purelib': '{base}/lib/python{py_version_short}/site-packages',
7-
'platlib': '{platbase}/{platlibdir}/python{py_version_short}/site-packages',
8-
'include':
9-
- '{installed_base}/include/python{py_version_short}{abiflags}',
10-
+ '{installed_base}/../../include/python{py_version_short}{abiflags}',
11-
'platinclude':
12-
- '{installed_platbase}/include/python{py_version_short}{abiflags}',
13-
+ '{installed_platbase}/../../include/python{py_version_short}{abiflags}',
14-
'scripts': '{base}/bin',
15-
'data': '{base}',
16-
},
175
@@ -51,8 +51,8 @@
186
'platstdlib': '{base}/Lib',
197
'purelib': '{base}/Lib/site-packages',

ports/python3/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "python3",
33
"version": "3.11.5",
4-
"port-version": 4,
4+
"port-version": 5,
55
"description": "The Python programming language",
66
"homepage": "https://github.com/python/cpython",
77
"license": "Python-2.0",

versions/baseline.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6958,7 +6958,7 @@
69586958
},
69596959
"python3": {
69606960
"baseline": "3.11.5",
6961-
"port-version": 4
6961+
"port-version": 5
69626962
},
69636963
"qca": {
69646964
"baseline": "2.3.7",

versions/p-/python3.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"versions": [
3+
{
4+
"git-tree": "262bbdcf3e67802bfdcb9efe22a34e81defc3fb1",
5+
"version": "3.11.5",
6+
"port-version": 5
7+
},
38
{
49
"git-tree": "196d8baf56879fd416fbcfb05a7033ea61febf24",
510
"version": "3.11.5",

0 commit comments

Comments
 (0)