mirror of
https://github.com/RubyMetric/chsrc
synced 2025-08-14 00:20:47 +08:00
Add registry
This commit is contained in:
parent
d97365ed4e
commit
a417afa4b5
@ -138,6 +138,15 @@ typedef struct Target_t
|
||||
Target_t;
|
||||
|
||||
|
||||
typedef struct TargetRegisterInfo_t
|
||||
{
|
||||
Target_t *target; /* target 本身 */
|
||||
void (*prelude) (void); /* 填充 target 信息等预置操作 */
|
||||
char *aliases; /* 以空格分隔的 alias 字符串 */
|
||||
}
|
||||
TargetRegisterInfo_t;
|
||||
|
||||
|
||||
#define def_target_inner_s(t) NULL, t##_setsrc, NULL, NULL
|
||||
#define def_target_inner_sr(t) NULL, t##_setsrc, t##_resetsrc, NULL
|
||||
#define def_target_inner_sf(t) NULL, t##_setsrc, NULL, t##_feat
|
||||
|
@ -5,8 +5,8 @@
|
||||
* Contributors : Mikachu2333 <mikachu.23333@zohomail.com>
|
||||
* |
|
||||
* Created On : <2023-09-01>
|
||||
* Major Revision : 1
|
||||
* Last Modified : <2025-07-21>
|
||||
* Major Revision : 2
|
||||
* Last Modified : <2025-08-09>
|
||||
* ------------------------------------------------------------*/
|
||||
|
||||
/* Begin Target Matrix */
|
||||
@ -66,6 +66,38 @@ static const char
|
||||
pl_haskell,
|
||||
};
|
||||
|
||||
TargetRegisterInfo_t
|
||||
chsrc_programming_languages_registry[] =
|
||||
{
|
||||
{&pl_ruby_target, NULL, "gem ruby rb rubygem rubygems bundler"},
|
||||
{&pl_python_group_target, NULL, "python pypi py"},
|
||||
{&pl_python_pip_target, NULL, "pip"},
|
||||
{&pl_python_poetry_target, NULL, "poetry"},
|
||||
{&pl_python_pdm_target, NULL, "pdm"},
|
||||
{&pl_python_rye_target, NULL, "rye"},
|
||||
{&pl_python_uv_target, NULL, "uv"},
|
||||
{&pl_nodejs_group_target, NULL, "node nodejs"},
|
||||
{&pl_nodejs_bun_target, NULL, "bun"},
|
||||
{&pl_nodejs_npm_target, NULL, "npm"},
|
||||
{&pl_nodejs_yarn_target, NULL, "yarn"},
|
||||
{&pl_nodejs_pnpm_target, NULL, "pnpm"},
|
||||
{&pl_nodejs_nvm_target, NULL, "nvm"},
|
||||
{&pl_perl_target, NULL, "perl cpan"},
|
||||
{&pl_php_target, NULL, "php composer"},
|
||||
{&pl_lua_target, NULL, "lua luarocks"},
|
||||
{&pl_go_target, NULL, "go golang goproxy"},
|
||||
{&pl_rust_cargo_target, NULL, "rust cargo crate crates"},
|
||||
{&pl_rust_rustup_target, NULL, "rustup"},
|
||||
{&pl_java_target, NULL, "java maven mvn gradle"},
|
||||
{&pl_clojure_target, NULL, "clojure clojars cloj lein"},
|
||||
{&pl_dart_target, NULL, "dart pub"},
|
||||
{&pl_dart_flutter_target, NULL, "flutter"},
|
||||
{&pl_nuget_target, NULL, "nuget net .net dotnet"},
|
||||
{&pl_haskell_target, NULL, "haskell cabal stack hackage"},
|
||||
{&pl_ocaml_target, NULL, "ocaml opam"},
|
||||
{&pl_r_target, NULL, "cran r"},
|
||||
{&pl_julia_target, NULL, "julia"},
|
||||
};
|
||||
|
||||
static const char
|
||||
/* Zorin OS 完全使用 Ubuntu 的换源方法,二者兼容 */
|
||||
@ -122,12 +154,47 @@ static const char
|
||||
};
|
||||
|
||||
|
||||
TargetRegisterInfo_t
|
||||
chsrc_operating_systems_registry[] =
|
||||
{
|
||||
{&os_ubuntu_target, NULL, "ubuntu zorinos"},
|
||||
{&os_linuxmint_target, NULL, "linuxmint"},
|
||||
{&os_debian_target, NULL, "debian"},
|
||||
{&os_fedora_target, NULL, "fedora"},
|
||||
{&os_opensuse_target, NULL, "opensuse opensuse-leap opensuse-tumbleweed"},
|
||||
{&os_kali_target, NULL, "kali"},
|
||||
{&os_msys2_target, NULL, "msys2 msys"},
|
||||
{&os_arch_target, NULL, "arch archlinux"},
|
||||
{&os_archlinuxcn_target, NULL, "archlinuxcn archcn"},
|
||||
{&os_manjaro_target, NULL, "manjaro"},
|
||||
{&os_gentoo_target, NULL, "gentoo"},
|
||||
{&os_rockylinux_target, NULL, "rocky rockylinux"},
|
||||
{&os_almalinux_target, NULL, "alma almalinux"},
|
||||
{&os_alpine_target, NULL, "alpine"},
|
||||
{&os_voidlinux_target, NULL, "voidlinux"},
|
||||
{&os_solus_target, NULL, "solus"},
|
||||
{&os_trisquel_target, NULL, "trisquel"},
|
||||
{&os_linuxlite_target, NULL, "linuxlite"},
|
||||
{&os_ros_target, NULL, "ros ros2"},
|
||||
{&os_raspberrypi_target, NULL, "raspi raspberrypi"},
|
||||
{&os_armbian_target, NULL, "armbian"},
|
||||
{&os_openwrt_target, NULL, "openwrt opkg LEDE"},
|
||||
{&os_termux_target, NULL, "termux"},
|
||||
{&os_openkylin_target, NULL, "openkylin"},
|
||||
{&os_openeuler_target, NULL, "openeuler"},
|
||||
{&os_anolis_target, NULL, "openanolis anolis"},
|
||||
{&os_deepin_target, NULL, "deepin"},
|
||||
{&os_freebsd_target, NULL, "freebsd"},
|
||||
{&os_netbsd_target, NULL, "netbsd"},
|
||||
{&os_openbsd_target, NULL, "openbsd"},
|
||||
};
|
||||
|
||||
static const char
|
||||
*wr_winget [] = {"winget", NULL, t(&wr_winget_target)},
|
||||
*wr_homebrew[] = {"brew", "homebrew", NULL, t(&wr_homebrew_target)},
|
||||
*wr_cocoapods[] = {"cocoa", "cocoapods","pod", "cocoapod", NULL, t(&wr_cocoapods_target)},
|
||||
*wr_dockerhub [] ={"dockerhub", "docker", NULL, t(&wr_dockerhub_target)},
|
||||
*wr_flathub [] = {"flathub", "flatpak", NULL, t(&wr_flathub_target)},
|
||||
*wr_flathub [] = {"flathub", "flatpak", NULL, t(&wr_flathub_target), t(wr_flathub_prelude)},
|
||||
*wr_nix [] = {"nix", NULL, t(&wr_nix_target)},
|
||||
*wr_guix [] = {"guix", NULL, t(&wr_guix_target)},
|
||||
*wr_emacs [] = {"emacs", "elpa", NULL, t(&wr_emacs_target)},
|
||||
@ -137,6 +204,24 @@ static const char
|
||||
{
|
||||
wr_winget, wr_homebrew, wr_cocoapods, wr_dockerhub, wr_flathub, wr_nix, wr_guix, wr_emacs, wr_tex, wr_anaconda
|
||||
};
|
||||
|
||||
|
||||
TargetRegisterInfo_t
|
||||
chsrc_softwares_registry[] =
|
||||
{
|
||||
{&wr_winget_target, NULL, "winget"},
|
||||
{&wr_homebrew_target, NULL, "brew homebrew"},
|
||||
{&wr_cocoapods_target, NULL, "cocoa cocoapods cocoapod"},
|
||||
{&wr_dockerhub_target, NULL, "dockerhub docker"},
|
||||
{&wr_flathub_target, wr_flathub_prelude, "flathub flatpak"},
|
||||
{&wr_nix_target, NULL, "nix"},
|
||||
{&wr_guix_target, NULL, "guix"},
|
||||
{&wr_emacs_target, NULL, "emacs elpa"},
|
||||
{&wr_tex_target, NULL, "latex ctan tex texlive miktex tlmgr mpm"},
|
||||
{&wr_anaconda_target, NULL, "conda anaconda"},
|
||||
};
|
||||
|
||||
|
||||
#undef t
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user