Clear macro

[GitHub #122]
This commit is contained in:
Aoran Zeng
2024-11-21 11:54:13 +08:00
parent bba1df37f8
commit 7fb00280a8
18 changed files with 74 additions and 59 deletions

View File

@@ -12,12 +12,12 @@
static MirrorSite
GoProxyCN = {
"goproxy.cn", "Goproxy.cn", "Goproxy.cn (七牛云)", "https://goproxy.cn/",
{false, NULL, NULL, "https://goproxy.cn/github.com/aws/aws-sdk-go/@v/v1.45.2.zip"} // 30 MB
{NotSkip, NA, NA, "https://goproxy.cn/github.com/aws/aws-sdk-go/@v/v1.45.2.zip"} // 30 MB
},
GoProxyIO = {
"goproxy.io", "GOPROXY.IO", "GOPROXY.IO", "https://goproxy.io/",
{false, NULL, NULL, "https://goproxy.io/github.com/aws/aws-sdk-go/@v/v1.45.2.zip"} // 30 MB
{NotSkip, NA, NA, "https://goproxy.io/github.com/aws/aws-sdk-go/@v/v1.45.2.zip"} // 30 MB
};

View File

@@ -8,7 +8,10 @@
* ------------------------------------------------------------*/
static MirrorSite
Api7 = {"api7", "api7.ai", "深圳支流科技有限公司", "https://www.apiseven.com/", NULL};
Api7 = {
"api7", "api7.ai", "深圳支流科技有限公司", "https://www.apiseven.com/",
{SKIP, ToFill, ToFill, NULL}
};
/**

View File

@@ -12,7 +12,7 @@ static MirrorSite
NpmMirror = {
"npmmirror", "npmmirror", "npmmirror (阿里云赞助)", "https://npmmirror.com/",
// 注意,下面这个是跳转后的地址,不确定未来会不会改变
{false, NULL, NULL, "https://cdn.npmmirror.com/packages/%40tensorflow/tfjs/4.10.0/tfjs-4.10.0.tgz"} // 29MB
{NotSkip, NA, NA, "https://cdn.npmmirror.com/packages/%40tensorflow/tfjs/4.10.0/tfjs-4.10.0.tgz"} // 29MB
};

View File

@@ -8,10 +8,12 @@
* ------------------------------------------------------------*/
static MirrorSite
NugetOrg = {"nuget.org", "NuGet Org", "Nuget Organization", "https://www.nuget.org/", NULL};
NugetOrg = {"nuget.org", "NuGet Org", "Nuget Organization", "https://www.nuget.org/",
{SKIP, ToFill, ToFill, NULL}
};
/**
* @time 2024-04-18 更新
* @update 2024-04-18
* @note {
* 暂时未实现该换源功能,可参照
* https://mirrors.huaweicloud.com/mirrorDetail/5ebf85de07b41baf6d0882ab?mirrorName=nuget&catalog=language

View File

@@ -8,7 +8,7 @@
* ------------------------------------------------------------*/
/**
* @time 2023-09-15 更新
* @update 2023-09-15
*/
static SourceInfo
pl_ocaml_sources[] = {

View File

@@ -8,8 +8,7 @@
* ------------------------------------------------------------*/
/**
* @time 2024-05-24 更新
* @ref https://help.mirrors.cernet.edu.cn/CPAN/
* @update 2024-05-24
*/
static SourceInfo
pl_perl_sources[] = {
@@ -41,8 +40,9 @@ pl_perl_getsrc (char *option)
chsrc_run (cmd, RunOpt_Default);
}
/**
* Perl换源参考https://help.mirrors.cernet.edu.cn/CPAN/
* @consult https://help.mirrors.cernet.edu.cn/CPAN/
*/
void
pl_perl_setsrc (char *option)

View File

@@ -8,7 +8,7 @@
* ------------------------------------------------------------*/
/**
* @time 2023-09-04 更新
* @update 2023-09-04
* @note {
* 以下注释的是不含有bioconductor的镜像站
* 我们在换cran的同时也直接帮助用户换bioconductor

View File

@@ -10,7 +10,7 @@
static MirrorSite
RubyChina = {
"rubychina", "RubyChina", "Ruby China 社区", "https://gems.ruby-china.com/",
{false, NULL, NULL, "https://gems.ruby-china.com/rubygems/gems/nokogiri-1.15.0-java.gem"} // 9.9 MB
{NotSkip, NA, NA, "https://gems.ruby-china.com/rubygems/gems/nokogiri-1.15.0-java.gem"} // 9.9 MB
};
/**

View File

@@ -4,8 +4,11 @@
* File Authors : Aoran Zeng <ccmywish@qq.com>
* Contributors : Nil Null <nil@null.org>
* Created On : <2024-10-02>
* Last Modified : <2024-10-02>
* Last Modified : <2024-11-21>
* ------------------------------------------------------------*/
static MirrorSite
RsProxyCN = {"rsproxycn", "RsProxy.cn", "字节跳动基础架构Dev Infra", "https://rsproxy.cn/", NULL};
RsProxyCN = {
"rsproxycn", "RsProxy.cn", "字节跳动基础架构Dev Infra", "https://rsproxy.cn/",
{SKIP, ToFill, ToFill, NULL}
};