Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP [cpython] Conan v2 and version bump 3.10.4 #12470

Closed
Closed
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
fb3eda2
Add cpython version 3.10.4
jellespijker Aug 23, 2022
70ddc1e
Don't use 2to3 if setuptools is higher than 58.0
Aug 23, 2022
0bc3516
Fixed indention level
Aug 23, 2022
8e6e4ba
Add version 3.10.4 to config.yml
Aug 23, 2022
adaecb2
Don't import tools
jellespijker Sep 2, 2022
f88f2fd
show config.log when autotools configure fails
jellespijker Sep 5, 2022
dade5a0
Merge branch 'master' into cpython_add_version_3_10_4
jellespijker Sep 9, 2022
74d56bd
Fix linter errors
uilianries Sep 13, 2022
3117d96
Merge pull request #10 from uilianries/cpython_add_version_3_10_4
jellespijker Sep 13, 2022
2c2cb79
Update test_package
uilianries Sep 13, 2022
4a5feae
Use can_run
uilianries Sep 13, 2022
d6c7337
missing linter errors
uilianries Sep 13, 2022
90f087e
Merge pull request #11 from uilianries/cpython_add_version_3_10_4
jellespijker Sep 13, 2022
eb74d79
Apply suggestions from code review
jellespijker Sep 13, 2022
e37bbdf
Determine the MACOSX_DEPLOYMENT_TARGET version
jellespijker Sep 14, 2022
b0b458f
Set SYSTEM_VERSION_COMPAT=1 for Apple
jellespijker Sep 14, 2022
da2d54f
empty includedirs and libdirs it is a tool
jellespijker Sep 14, 2022
bab30dc
Set empty include for individual components
jellespijker Sep 15, 2022
6e3f828
Porting CPython to Conan v2
jellespijker Sep 17, 2022
d5173ea
Use vs_layout and set `IncludeExternals`
jellespijker Sep 19, 2022
59c79d6
Set toolset in `Directory.Build.props`
jellespijker Sep 19, 2022
f04a50c
Add limited Python ABI lib/dll
jellespijker Sep 19, 2022
67615a9
Add license
jellespijker Sep 19, 2022
f5f66e7
port to modern mvsc check
jellespijker Sep 19, 2022
8e81c94
Managbe MS toolset version for Visual Studio and MSVC
jellespijker Sep 20, 2022
82511a8
Refactoring
jellespijker Sep 20, 2022
e16067a
Modernized cpython
jellespijker Sep 21, 2022
b8fc269
Add test_package
jellespijker Sep 22, 2022
06a9798
Fix linux package
jellespijker Sep 22, 2022
686b426
Added python3_add_library function to build_module
jellespijker Sep 22, 2022
85bc706
Fix module name for python3_add_library
jellespijker Sep 22, 2022
8a42c74
Ported other module tests
jellespijker Sep 22, 2022
c74fcfd
Merge branch 'conan-io:master' into cpython_add_version_3_10_4
jellespijker Oct 8, 2022
0e554d4
Add support for cpython 3.11.0
jellespijker Oct 29, 2022
117f6fa
Add support for cpython 3.11.0
jellespijker Oct 29, 2022
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
14 changes: 14 additions & 0 deletions recipes/cpython/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
sources:
"3.10.4":
url: "https://www.python.org/ftp/python/3.10.4/Python-3.10.4.tgz"
sha256: "f3bcc65b1d5f1dc78675c746c98fcee823c038168fc629c5935b044d0911ad28"
"3.10.0":
url: "https://www.python.org/ftp/python/3.10.0/Python-3.10.0.tgz"
sha256: "c4e0cbad57c90690cb813fb4663ef670b4d0f587d8171e2c42bd4c9245bd2758"
Expand All @@ -15,6 +18,17 @@ sources:
url: "https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tgz"
sha256: "da3080e3b488f648a3d7a4560ddee895284c3380b11d6de75edb986526b9a814"
patches:
"3.10.4":
- patch_file: "patches/3.10.0-0001-msvc.patch"
base_path: "source_subfolder"
- patch_file: "patches/3.9.7-0002-_msi-vcxproj.patch"
base_path: "source_subfolder"
- patch_file: "patches/3.10.0-0003-_ctypes-ffi.patch"
base_path: "source_subfolder"
- patch_file: "patches/3.10.4-0005-disable-macos-tcltk.patch"
base_path: "source_subfolder"
- patch_file: "patches/3.x-0001-relocatable-python-config.patch"
base_path: "source_subfolder"
"3.10.0":
- patch_file: "patches/3.10.0-0001-msvc.patch"
base_path: "source_subfolder"
Expand Down
Loading