godeb
godeb copied to clipboard
godeb transforms upstream tarballs for the Go language in deb packages and installs them.
- Fix on install without arguments. Until now it was selecting the oldest version, after the fix will select the newest one. I thing the bug appeared when the list...
The latest version seems to still have issue #35 because #36 was re-sorting the reverse sorted list `sort.Sort(sort.Reverse(tarballSlice(tbs)))` where I would expect a single reverse sort `sort.Reverse(tarballSlice(tbs))`. A related issue...
https://github.com/niemeyer/godeb/blob/9fc299d0adbac1188920ba809a04560bec1a400b/cmd/godeb/main.go#L203 Can you add support of 32bit ARM? For the case when `GOARCH=arm` variable `arch` from JSON must be `armv6l`. ``` { "filename": "go1.16.4.linux-armv6l.tar.gz", "os": "linux", "arch": "armv6l", "version": "go1.16.4",...
Using latest pre-built binary on amd64: % godeb install 1.11.5 processing https://dl.google.com/go/go1.11.5.linux-amd64.tar.gz error: upstream tarball has file in unexpected path: gocache/ Running on: % lsb_release -a No LSB modules are...
Using a Scaleway C1 server, this would be useful.
Currently a default "godeb install" installs the lowest available version as it is at the beginning of the slice. This change selects the latest version, from the end of the...
Hallo, on Debian 8.11, amd64 I get this error, when I try to Install golang 1.11.1: ``` root@box ~ # ~/go/bin/godeb install 1.11.1 processing https://dl.google.com/go/go1.11.1.linux-amd64.tar.gz package go_1.11.1-godeb1_amd64.deb ready (Reading database...
The build of Go 1.11.5 has some harmless build artifacts in the tarball; emit a warning while iterating over those, rather than failing completely. See https://groups.google.com/d/msg/golang-announce/mVeX35iXuSw/HxYXaBnYEAAJ
Make it possible to build debian packages from go1.11.5 release tarballs. To not create warnings which could be overseen in automated CI pipelines, i created a patch to explicitely ignore...
It would be nice to know the version of godeb that is installed