internal/rosa: prefix python constants
All checks were successful
Test / Create distribution (push) Successful in 59s
Test / Sandbox (push) Successful in 2m35s
Test / Hakurei (push) Successful in 3m53s
Test / ShareFS (push) Successful in 3m51s
Test / Sandbox (race detector) (push) Successful in 4m58s
Test / Hakurei (race detector) (push) Successful in 5m56s
Test / Flake checks (push) Successful in 1m30s

These have confusing names.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-03-05 21:37:06 +09:00
parent f14ab80253
commit c93725ac58
4 changed files with 20 additions and 20 deletions

View File

@@ -61,7 +61,6 @@ const (
Gzip Gzip
Hakurei Hakurei
HakureiDist HakureiDist
IniConfig
Kmod Kmod
LibXau LibXau
Libcap Libcap
@@ -89,7 +88,6 @@ const (
Ninja Ninja
OpenSSL OpenSSL
PCRE2 PCRE2
Packaging
Patch Patch
Perl Perl
PerlLocaleGettext PerlLocaleGettext
@@ -103,11 +101,13 @@ const (
PerlUnicodeGCString PerlUnicodeGCString
PerlYAMLTiny PerlYAMLTiny
PkgConfig PkgConfig
Pluggy
Procps Procps
PyTest
Pygments
Python Python
PythonIniConfig
PythonPackaging
PythonPluggy
PythonPyTest
PythonPygments
QEMU QEMU
Rsync Rsync
Sed Sed

View File

@@ -24,11 +24,11 @@ func (t Toolchain) newFuse() (pkg.Artifact, string) {
// this project uses pytest // this project uses pytest
SkipTest: true, SkipTest: true,
}, },
IniConfig, PythonIniConfig,
Packaging, PythonPackaging,
Pluggy, PythonPluggy,
Pygments, PythonPygments,
PyTest, PythonPyTest,
KernelHeaders, KernelHeaders,
), version ), version

View File

@@ -40,7 +40,7 @@ func (t Toolchain) newGLib() (pkg.Artifact, string) {
}, },
}, },
XZ, XZ,
Packaging, PythonPackaging,
Bash, Bash,
PCRE2, PCRE2,

View File

@@ -139,7 +139,7 @@ func init() {
} }
func init() { func init() {
artifactsM[Pygments] = newViaPip( artifactsM[PythonPygments] = newViaPip(
"pygments", "pygments",
" a syntax highlighting package written in Python", " a syntax highlighting package written in Python",
"2.19.2", "none", "any", "2.19.2", "none", "any",
@@ -148,7 +148,7 @@ func init() {
"c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/", "c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/",
) )
artifactsM[Pluggy] = newViaPip( artifactsM[PythonPluggy] = newViaPip(
"pluggy", "pluggy",
"the core framework used by the pytest, tox, and devpi projects", "the core framework used by the pytest, tox, and devpi projects",
"1.6.0", "none", "any", "1.6.0", "none", "any",
@@ -157,7 +157,7 @@ func init() {
"54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/", "54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/",
) )
artifactsM[Packaging] = newViaPip( artifactsM[PythonPackaging] = newViaPip(
"packaging", "packaging",
"reusable core utilities for various Python Packaging interoperability specifications", "reusable core utilities for various Python Packaging interoperability specifications",
"26.0", "none", "any", "26.0", "none", "any",
@@ -166,7 +166,7 @@ func init() {
"b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/", "b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/",
) )
artifactsM[IniConfig] = newViaPip( artifactsM[PythonIniConfig] = newViaPip(
"iniconfig", "iniconfig",
"a small and simple INI-file parser module", "a small and simple INI-file parser module",
"2.3.0", "none", "any", "2.3.0", "none", "any",
@@ -174,16 +174,16 @@ func init() {
"https://files.pythonhosted.org/packages/"+ "https://files.pythonhosted.org/packages/"+
"cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/", "cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/",
) )
artifactsM[PyTest] = newViaPip( artifactsM[PythonPyTest] = newViaPip(
"pytest", "pytest",
"the pytest framework", "the pytest framework",
"9.0.2", "none", "any", "9.0.2", "none", "any",
"IM2wDbLke1EtZhF92zvAjUl_Hms1uKDtM7U8Dt4acOaChMnDg1pW7ib8U0wYGDLH", "IM2wDbLke1EtZhF92zvAjUl_Hms1uKDtM7U8Dt4acOaChMnDg1pW7ib8U0wYGDLH",
"https://files.pythonhosted.org/packages/"+ "https://files.pythonhosted.org/packages/"+
"3b/ab/b3226f0bd7cdcf710fbede2b3548584366da3b19b5021e74f5bde2a8fa3f/", "3b/ab/b3226f0bd7cdcf710fbede2b3548584366da3b19b5021e74f5bde2a8fa3f/",
IniConfig, PythonIniConfig,
Packaging, PythonPackaging,
Pluggy, PythonPluggy,
Pygments, PythonPygments,
) )
} }