aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/rsync.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-20 05:57:13 +0900
committerOphestra <cat@gensokyo.uk>2026-05-20 05:57:26 +0900
commit656059278d96c86987c261ae842592617ee17962 (patch)
tree469c3e195589e7f4005477bfe391707472ef4c29 /internal/rosa/rsync.go
parent1a9974ffdc63e9deb24e4c83f4b4ce566311360f (diff)
internal/rosa/package: migrate remaining trivial packages
The rest are migrated individually. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/rsync.go')
-rw-r--r--internal/rosa/rsync.go37
1 files changed, 0 insertions, 37 deletions
diff --git a/internal/rosa/rsync.go b/internal/rosa/rsync.go
deleted file mode 100644
index 0ea1096a..00000000
--- a/internal/rosa/rsync.go
+++ /dev/null
@@ -1,37 +0,0 @@
-package rosa
-
-import "hakurei.app/internal/pkg"
-
-func (t Toolchain) newRsync() (pkg.Artifact, string) {
- const (
- version = "3.4.2"
- checksum = "t7PxS4WHXzefLMKKc_3hJgxUmlGG6KgHMZ8i4DZvCQAUAizxbclNKwfLyOHyq5BX"
- )
- return t.NewPackage("rsync", version, newTar(
- "https://download.samba.org/pub/rsync/src/"+
- "rsync-"+version+".tar.gz",
- checksum,
- pkg.TarGzip,
- ), &PackageAttr{
- Flag: TEarly,
- }, &MakeHelper{
- Configure: []KV{
- {"disable-openssl"},
- {"disable-xxhash"},
- {"disable-zstd"},
- {"disable-lz4"},
- },
-
- // circular dependency
- SkipCheck: true,
- }), version
-}
-func init() {
- native.mustRegister(Toolchain.newRsync, &Metadata{
- Name: "rsync",
- Description: "an open source utility that provides fast incremental file transfer",
- Website: "https://rsync.samba.org/",
-
- ID: 4217,
- })
-}