Add pl aliases

This commit is contained in:
Aoran Zeng
2025-08-10 22:49:32 +08:00
parent 4da60f0c7d
commit 3c42e8be2d
29 changed files with 56 additions and 56 deletions

View File

@@ -2,7 +2,7 @@
* SPDX-License-Identifier: GPL-3.0-or-later
* ------------------------------------------------------------*/
def_target(pl_python_pdm);
def_target(pl_python_pdm, "pdm");
void
pl_python_pdm_prelude (void)

View File

@@ -2,7 +2,7 @@
* SPDX-License-Identifier: GPL-3.0-or-later
* ------------------------------------------------------------*/
def_target(pl_python_poetry);
def_target(pl_python_poetry, "poetry");
void
pl_python_poetry_prelude (void)

View File

@@ -4,7 +4,7 @@
* 由于Rye已经有后继uv了所以我们不把该管理器纳入Python group中
* ------------------------------------------------------------*/
def_target(pl_python_rye);
def_target(pl_python_rye, "rye");
void
pl_python_rye_prelude (void)

View File

@@ -4,7 +4,7 @@
#include "rawstr4c.h"
def_target(pl_python_group);
def_target(pl_python_group, "python/pypi/py");
/**
* @note 测速链接的这个前缀是 ${host}/pipi/web/pacakges/56/e4....

View File

@@ -2,7 +2,7 @@
* SPDX-License-Identifier: GPL-3.0-or-later
* ------------------------------------------------------------*/
def_target(pl_python_pip);
def_target(pl_python_pip, "pip");
void
pl_python_pip_prelude (void)

View File

@@ -2,7 +2,7 @@
* SPDX-License-Identifier: GPL-3.0-or-later
* ------------------------------------------------------------*/
def_target(pl_python_uv);
def_target(pl_python_uv, "uv");
void
pl_python_uv_prelude (void)