Name: goop Version: 0.0 Release: 1%{?dist} Summary: Tool to dump git repositories from websites License: MIT URL: https://github.com/nyancrimew/goop # GitHub branch archive; unpacks to goop-main/ Source0: https://github.com/nyancrimew/goop/archive/refs/heads/main.tar.gz BuildRequires: golang BuildRequires: git BuildRequires: curl %description Yet another tool to dump a git repository from a website. %prep # GitHub branch archives unpack as goop-main/ %setup -q -n goop-main %build export GO111MODULE=on # we attempt to fetch modules (may fail in COPR due to network isolation) go version go env # verbose module download to give clearer logs if it fails go mod download -x go build -v -o goop %install install -Dm0755 goop %{buildroot}%{_bindir}/goop %files %license LICENSE %doc README.md %{_bindir}/goop %changelog * Tue Oct 07 2025 you - 0.0-1 - snapshot build from main