Test / Hakurei (race detector) (push) Successful in 9m33s
Test / Sandbox (push) Successful in 5m27s
Test / Sandbox (race detector) (push) Successful in 8m21s
Test / ShareFS (push) Successful in 10m32s
Test / Create distribution (push) Successful in 1m51s
Test / Hakurei (push) Successful in 3m5s
Test / Flake checks (push) Successful in 1m28s
This change also adds a fourth stage to the bootstrap machinery, offering more correct toolchain validation that works around LLVM dynamic linking flaws. Signed-off-by: Ophestra <cat@gensokyo.uk>
30 lines
649 B
Go
30 lines
649 B
Go
package rsync {
|
|
description = "an open source utility that provides fast incremental file transfer";
|
|
website = "https://rsync.samba.org";
|
|
anitya = 4217;
|
|
block = "kernel-headers circular dependency";
|
|
|
|
version# = "3.4.1";
|
|
source = remoteTar {
|
|
url = "https://download.samba.org/pub/rsync/src/"+
|
|
"rsync-"+version+".tar.gz";
|
|
checksum = "VBlTsBWd9z3r2-ex7GkWeWxkUc5OrlgDzikAC0pK7ufTjAJ0MbmC_N04oSVTGPiv";
|
|
compress = gzip;
|
|
};
|
|
|
|
toyboxEarly = true;
|
|
|
|
exec = make {
|
|
omitDefaults = true;
|
|
configure = {
|
|
"disable-openssl";
|
|
"disable-xxhash";
|
|
"disable-zstd";
|
|
"disable-lz4";
|
|
};
|
|
|
|
// circular dependency
|
|
skipCheck = true;
|
|
};
|
|
}
|