mirror of
https://github.com/RubyMetric/chsrc
synced 2025-08-13 15:59:32 +08:00
84 lines
2.2 KiB
C
84 lines
2.2 KiB
C
/** ------------------------------------------------------------
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
* ------------------------------------------------------------*/
|
|
|
|
def_target(os_voidlinux);
|
|
|
|
void
|
|
os_voidlinux_prelude ()
|
|
{
|
|
use_this(os_voidlinux);
|
|
chef_allow_gsr(os_voidlinux);
|
|
|
|
chef_set_created_on (this, "2023-09-24");
|
|
chef_set_last_updated (this, "2025-08-10");
|
|
chef_set_sources_last_updated (this, "2024-12-18");
|
|
|
|
chef_set_authors (this, 1, "Aoran Zeng", "ccmywish@qq.com");
|
|
chef_set_chef (this, NULL, NULL);
|
|
chef_set_sous_chefs (this, 0);
|
|
chef_set_contributors (this, 1,
|
|
"Yangmoooo", "yangmoooo@outlook.com");
|
|
|
|
chef_allow_local_mode (this, CanNot, NULL, NULL);
|
|
chef_forbid_english(this);
|
|
|
|
|
|
chef_set_note(this, NULL, NULL);
|
|
|
|
def_sources_begin()
|
|
{&upstream, "https://repo-default.voidlinux.org", FeedByPrelude},
|
|
{&Tuna, "https://mirrors.tuna.tsinghua.edu.cn/voidlinux", FeedByPrelude},
|
|
{&Sjtug_Zhiyuan, "https://mirror.sjtu.edu.cn/voidlinux", FeedByPrelude},
|
|
{&Bfsu, "https://mirrors.bfsu.edu.cn/voidlinux", FeedByPrelude}
|
|
def_sources_end()
|
|
|
|
chsrc_set_sources_speed_measure_url_with_postfix (this, "/live/20240314/void-live-x86_64-musl-20240314-xfce.iso");
|
|
}
|
|
|
|
|
|
void
|
|
os_voidlinux_getsrc (char *option)
|
|
{
|
|
char* cmd = "xbps-query -L";
|
|
chsrc_run (cmd, RunOpt_No_Last_New_Line);
|
|
}
|
|
|
|
/**
|
|
* @consult https://help.mirrors.cernet.edu.cn/voidlinux/
|
|
*/
|
|
void
|
|
os_voidlinux_setsrc (char *option)
|
|
{
|
|
chsrc_ensure_root ();
|
|
|
|
use_this(os_voidlinux);
|
|
Source_t source = chsrc_yield_source_and_confirm (this, option);
|
|
|
|
chsrc_ensure_dir ("/etc/xbps.d");
|
|
char *cmd = "cp /usr/share/xbps.d/*-repository-*.conf /etc/xbps.d/";
|
|
chsrc_run (cmd, RunOpt_Default);
|
|
|
|
cmd = xy_strjoin (3,
|
|
"sed -i 's|https://repo-default.voidlinux.org|", source.url, "|g' /etc/xbps.d/*-repository-*.conf"
|
|
);
|
|
chsrc_run (cmd, RunOpt_Default);
|
|
|
|
cmd = xy_strjoin (3,
|
|
"sed -i 's|https://alpha.de.repo.voidlinux.org|", source.url, "|g' /etc/xbps.d/*-repository-*.conf"
|
|
);
|
|
|
|
chsrc_note2 ("若报错可尝试使用以下命令:");
|
|
p (cmd);
|
|
|
|
chsrc_determine_chgtype (ChgType_Untested);
|
|
chsrc_conclude (&source);
|
|
}
|
|
|
|
|
|
void
|
|
os_voidlinux_resetsrc (char *option)
|
|
{
|
|
os_voidlinux_setsrc (option);
|
|
}
|