Created attachment 260321 [details] add port v0.19.2 Codebase bootstrap/backup utility for Git repositories.
Preview: https://failsafe.monster/posts/dorst
Created attachment 260329 [details] add port v0.19.3
Created attachment 261147 [details] add port v0.19.4 Update to 0.19.4
Thanks for a new port submission. Here are a few comments on the Makefile: - Default flavor need to be defined like, FLAVOR?= ${FLAVORS:[1]}. - Both specifying LIB_DEPENDS and USE_GNOME is redundant. In this case, using USE_GNOME= glib20 gtk40 libadwaita should be sufficient. - gtk_PLIST_FILES does not seem to work. Put PLIST_FILES+= ... in the .if ... == gtk clause instead. - post-install target can be merged into the same .if clause as well. The rest of the Makefile looks good to me.
Created attachment 261337 [details] add port v0.19.4 Fix PLIST_FILES/FLAVORS
(In reply to Hiroki Tagato from comment #4) Thank you! Fixed
A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/ports/commit/?id=b5a017cbeb3421ceb5733fadd81bf72036fdbb84 commit b5a017cbeb3421ceb5733fadd81bf72036fdbb84 Author: charlesrocket <slowdive@me.com> AuthorDate: 2025-06-17 12:41:30 +0000 Commit: Hiroki Tagato <tagattie@FreeBSD.org> CommitDate: 2025-06-18 08:21:28 +0000 devel/dorst: add port: Codebase bootstrap/backup utility Codebase bootstrap/backup utility. Deploy and mirror Git repositories locally with Dorst. WWW: https://github.com/charlesrocket/dorst PR: 286716 Reported by: charlesrocket <slowdive@me.com> (new maintainer) devel/Makefile | 1 + devel/dorst/Makefile (new) | 44 +++ devel/dorst/Makefile.crates (new) | 267 +++++++++++++++ devel/dorst/distinfo (new) | 537 +++++++++++++++++++++++++++++++ devel/dorst/files/patch-Cargo.lock (new) | 26 ++ devel/dorst/files/patch-Cargo.toml (new) | 11 + devel/dorst/pkg-descr (new) | 2 + 7 files changed, 888 insertions(+)
Committed, thanks!