-
-
Notifications
You must be signed in to change notification settings - Fork 212
/
Copy pathPython.c
111 lines (87 loc) · 2.45 KB
/
Python.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/** ------------------------------------------------------------
* SPDX-License-Identifier: GPL-3.0-or-later
* -------------------------------------------------------------
* File Authors : Aoran Zeng <[email protected]>
* Contributors : happy game <[email protected]>
* |
* Created On : <2023-09-03>
* Last Modified : <2024-12-11>
*
* ------------------------------------------------------------*/
void
pl_python_getsrc (char *option)
{
bool pdm_exist = false,
poetry_exist = false,
uv_exist = false;
pl_python_check_unofficial_pkger (&poetry_exist, &pdm_exist, &uv_exist);
// 交给后面检查命令的存在性
pl_python_pip_getsrc (option);
br();
if (poetry_exist)
{
pl_python_poetry_getsrc (option);
br();
}
if (pdm_exist)
{
pl_python_pdm_getsrc (option);
}
if (uv_exist)
{
pl_python_uv_getsrc (option);
}
}
void
pl_python_setsrc (char *option)
{
{
char *msg = CliOpt_InEnglish ? "Three package managers will be replaced for you at the same time: " \
"pip, Poetry, PDM. If you need to change the source independently, " \
"please run independently `chsrc set <pkg-manager>`"
: "将同时为您更换4个包管理器 pip, Poetry, PDM, uv 的源,若需要独立换源,请独立运行 chsrc set <pkg-manager>";
chsrc_note2 (msg);
}
bool pdm_exist = false,
poetry_exist = false,
uv_exist = false;
pl_python_check_unofficial_pkger (&poetry_exist, &pdm_exist, &uv_exist);
ProgMode_Target_Group = true;
chsrc_yield_source_and_confirm (pl_python);
// 交给后面检查命令的存在性
pl_python_pip_setsrc (option);
br();
if (poetry_exist)
{
pl_python_poetry_setsrc (option);
br();
}
if (pdm_exist)
{
pl_python_pdm_setsrc (option);
}
if (uv_exist)
{
pl_python_uv_setsrc (option);
}
chsrc_determine_chgtype (ChgType_Auto);
chsrc_conclude (&source);
}
void
pl_python_resetsrc (char *option)
{
pl_python_setsrc (option);
}
Feature_t
pl_python_feat (char *option)
{
Feature_t f = {0};
f.can_get = true;
f.can_reset = true;
f.cap_locally = PartiallyCan;
f.cap_locally_explain = "Support `Poetry` & `PDM`, `uv`. No support for `pip`";
f.can_english = false;
f.can_user_define = true;
return f;
}
def_target_gsrf(pl_python);