Hi Balachandran, and team, On Sun, Sep 6, 2026 at 4:06 PM Balachandran Sivakumar <[email protected]> wrote: > Thanks for offering to help. The latest logs are here: > https://salsa.debian.org/benignbala/dh-make-golang/-/jobs/10263137
The go.mod file uses a versioned import path: ``` github.com/google/go-github/v60 ``` We previously only had legacy `golang-github-google-go-github` package without the /v60 path. To fix this, I forked a new package `golang-github-google-go-github-v60` from the old one. And then updated the source name, binary name, VCS tags, and Go-Import-Path to match the new versioned import path. And also found we have newer build-deps available in unstable, so that I have to cherry-pick one commit from upstream without additional modifications. Package builds well and all tests passed. The package already uploaded to the NEW queue, and repo available: https://salsa.debian.org/go-team/packages/golang-github-google-go-github-v60 Balachandran now can build `golang-github-google-go-github-v60-dev` locally. Then, use sbuild --extra-package=/path/to/debs to test building `dh-make-golang` against it. I will also update the Debian Wiki's "Real World Example" section with these commits to document how to rename an API versioned -dev packages. Best regards, -- -Andrew
