How can I put my Go binary into a Debian package? Since Go is statically linked, I just have a single executable--I don't need a lot of complicated project metadata information. Is there a simple way to package the executable and resource files without going through the trauma of debuild
?
I've looked all over for existing questions; however, all of my research turns up questions/answers about a .deb file containing the golang development environment (i.e., what you would get if you do sudo apt-get install golang-go
).
Well. I think the only "trauma" of
debuild
is that it runslintian
after building the package, and it'slintian
who tries to spot problems with your package.So there are two ways to combat the situation:
debuild
: this tool merely callsdpkg-buildpackage
which really does the necessary powerlifting. The usual call to build a binary package isdpkg-buildpackage -us -uc -b
. You still might calldebuild
for other purposes, likedebuild clean
for instance.lintian
turn a blind eye to selected problems with your package which, you insist, are not problems.Both approaches imply that you do not attempt to build your application by the packaging tools but rather treat it as a blob which is just wrapped to a package. This would require slightly abstraining from the normal way
debian/rules
work (to not attempt to build anything).Another solution which might be possible (and is really way more Debian-ish) is to try to use
gcc-go
(plusgold
for linking): since it's a GCC front-end, this tool produces a dynamically-linked application (which links againstlibgo
or something like this). I, personally, have no experience with it yet, and would only consider using it if you intend to try to push your package into the Debian proper.Regarding the general question of packaging Go programs for Debian, you might find the following resources useful:
Update on 2015-10-15.
(Since this post appears to still be searched and found and studied by people I've decided to update it to better reflec the current state of affairs.)
Since then the situation with packaging Go apps and packages got improved dramatically, and it's possible to build a Debian package using "classic" Go (the so-called
gc
suite originating from Google) rather thangcc-go
. And there exist a good infrastructure for packages as well.The key tool to use when debianizing a Go program now is
dh-golang
described here.I've just been looking into this myself, and I'm basically there.
Synopsis
By 'borrowing' from the 'package' branch from one of Canonical's existing Go projects, you can build your package with dpkg-buildpackage.
install dependencies and grab a 'package' branch from another repo.
Edit the metadata.
Build-Depends: debhelper (>= 7.0.50~), golang-stable
) and the 3 architectures. Using Ubuntu (without the gophers ppa), I had to change golang-stable to golang-go.cd $(GOPATH)/src && find * -name '*.go' -exec dirname {} \; | xargs -n1 go install
Put your source inside the src folder. e.g.
or e.g.2
build the package
This should produce a binary .deb file for your architecture, plus the 'source deb' (.tgz) and the source deb description file (.dsc).
More details
So, I realised that Canonical (the Ubuntu people) are using Go, and building .deb packages for some of their Go projects. Ubuntu is based on Debian, so for the most part the same approach should apply to both distributions (dependency names may vary slightly).
You'll find a few Go-based packages in Ubuntu's Launchpad repositories. So far I've found cobzr (git-style branching for bzr) and juju-core (a devops project, being ported from Python).
Both of these projects have both a 'trunk' and a 'package' branch, and you can see the
debian/
folder inside the package branch. The 2 most important files here are debian/control and debian/rules - I have linked to 'browse source'.Finally
Something I haven't covered is cross-compiling your package (to the other 2 architectures of the 3, 386/arm/amd64). Cross-compiling isn't too tricky in go (you need to build the toolchain for each target platform, and then set some ENV vars during 'go build'), and I've been working on a cross-compiler utility myself. Eventually I'll hopefully add .deb support into my utility, but first I need to crystallize this task.
Good luck. If you make any progress then please update my answer or add a comment. Thanks
Building deb or rpm packages from Go Applications is also very easy with fpm.
Grab it from rubygems:
After building you binary, e.g. foobar, you can package it like this:
fpm supports all sorts of advanced packaging options.
There is an official Debian policy document describing the packaging procedure for Go: https://go-team.pages.debian.net/packaging.html
For libraries: Use dh-make-golang to create a package skeleton. Name your package with a name derived from import path, with a
-dev
suffix, e.g. golang-github-lib-pq-dev. Specify the dependencies ontDepends:
line. (These are source dependencies for building, not binary dependencies for running, since Go statically links all source.)Installing the library package will install its source code to
/usr/share/golang/src
(possibly, the compiled libraries could go into.../pkg
). Building depending Go packages will use the artifacts from those system-wide locations.For executables: Use dh-golang to create the package. Specify dependencies in
Build-Depends:
line (see above regarding packaging the dependencies).I recently discovered https://packager.io/ - I'm quite happy with what they're doing. Maybe open up one of the packages to see what they're doing?