2021-01-28 22:03:33 +08:00
|
|
|
# Packager's Manual
|
|
|
|
|
|
|
|
**Note**: The guidance here applies to the current development version and
|
2021-01-31 10:31:37 +08:00
|
|
|
release versions starting from 0.16.0. The details for earlier versions are
|
2021-01-28 22:03:33 +08:00
|
|
|
different.
|
|
|
|
|
|
|
|
Elvish is a normal Go application, and doesn't require any special attention.
|
|
|
|
Build the main package of `cmd/elvish`, and you should get a fully working
|
|
|
|
binary.
|
|
|
|
|
|
|
|
If you don't care about accurate version information or reproducible builds, you
|
|
|
|
can now stop reading. If you do, there is a small amount of extra work to get
|
|
|
|
them.
|
|
|
|
|
|
|
|
## Accurate version information
|
|
|
|
|
|
|
|
The `pkg/buildinfo` package contains a constant, `Version`, and a variable,
|
|
|
|
`VersionSuffix`, which are concatenated to form the full version used in the
|
|
|
|
output of `elvish -version` and `elvish -buildinfo`. Their values are set as
|
|
|
|
follows:
|
|
|
|
|
|
|
|
- At release tags, `Version` contains the version of the release, which is
|
|
|
|
identical to the tag name. `VersionSuffix` is empty.
|
|
|
|
|
|
|
|
- At development commits, `Version` contains the version of the next release.
|
|
|
|
`VersionSuffix` is set to `-dev.unknown`.
|
|
|
|
|
2021-06-17 12:39:16 +08:00
|
|
|
The `VersionSuffix` variable can be overridden at build time, by passing
|
2021-01-28 22:03:33 +08:00
|
|
|
`-ldflags "-X src.elv.sh/pkg/buildinfo.VersionSuffix=-foobar"` to `go build`,
|
|
|
|
`go install` or `go get`. This is necessary in several scenarios, which are
|
|
|
|
documented below.
|
|
|
|
|
|
|
|
### Packaging release versions
|
|
|
|
|
2021-08-21 23:34:33 +08:00
|
|
|
If you are using the standard Go toolchain and not applying any patches, there
|
|
|
|
is nothing more to do; the default empty `VersionSuffix` suffices.
|
|
|
|
|
|
|
|
If you are using a non-standard toolchain, or have applied any patches that can
|
|
|
|
affect the resulting binary, you **must** override `VersionSuffix` with a string
|
|
|
|
that starts with `+` and can uniquely identify your toolchain and patch. For
|
|
|
|
official Linux distribution builds, this should identify your distribution, plus
|
|
|
|
the version of the patch. Example:
|
2021-01-28 22:03:33 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
go build -ldflags "-X src.elv.sh/pkg/buildinfo.VersionSuffix=+deb1" ./cmd/elvish
|
|
|
|
```
|
|
|
|
|
|
|
|
### Packaging development builds
|
|
|
|
|
|
|
|
If you are packaging development builds, the default value of `VersionSuffix`,
|
|
|
|
which is `-dev.unknown`, is likely not good enough, as it does not identify the
|
|
|
|
commit Elvish is built from.
|
|
|
|
|
2021-01-31 02:11:49 +08:00
|
|
|
You should override `VersionSuffix` with `-dev.$commit_hash`, where
|
|
|
|
`$commit_hash` is the full commit hash, which can be obtained with
|
|
|
|
`git rev-parse HEAD`. Example:
|
2021-01-28 22:03:33 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
go build -ldflags \
|
2021-01-31 02:11:49 +08:00
|
|
|
"-X src.elv.sh/pkg/buildinfo.VersionSuffix=-dev.$(git rev-parse HEAD)" \
|
2021-01-28 22:03:33 +08:00
|
|
|
./cmd/elvish
|
|
|
|
```
|
|
|
|
|
|
|
|
If you have applied any patches that is not committed as a Git commit, you
|
2021-08-22 00:47:28 +08:00
|
|
|
should also append a string that starts with `+` and can uniquely identify your
|
2021-01-28 22:03:33 +08:00
|
|
|
patch.
|
|
|
|
|
|
|
|
## Reproducible builds
|
|
|
|
|
|
|
|
The idea of
|
|
|
|
[reproducible build](https://en.wikipedia.org/wiki/Reproducible_builds) is that
|
|
|
|
an Elvish binary from two different sources should be bit-to-bit identical, as
|
|
|
|
long as they are built from the same version of the source code using the same
|
|
|
|
version of the Go compiler.
|
|
|
|
|
|
|
|
To make reproducible builds, you must do the following:
|
|
|
|
|
2021-01-31 08:54:30 +08:00
|
|
|
- Pass `-trimpath` to the Go compiler.
|
|
|
|
|
2021-01-31 09:09:05 +08:00
|
|
|
- For the following platforms, also pass `-buildmode=pie` to the Go compiler:
|
|
|
|
|
|
|
|
- `GOOS=windows`, any `GOARCH`
|
|
|
|
|
|
|
|
- `GOOS=linux`, `GOARCH=amd64` or `GOARCH=arm64`
|
2021-01-28 22:03:33 +08:00
|
|
|
|
|
|
|
- Disable cgo by setting the `CGO_ENABLED` environment variable to 0.
|
|
|
|
|
2021-01-29 09:26:36 +08:00
|
|
|
- Follow the requirements above for putting
|
|
|
|
[accurate version information](#accurate-version-information) into the
|
|
|
|
binary, so that the user is able to uniquely identify the build by running
|
|
|
|
`elvish -version`.
|
2021-01-28 22:03:33 +08:00
|
|
|
|
|
|
|
The recommendation for how to set `VersionSuffix` when
|
|
|
|
[packaging development builds](#packaging-development-builds) becomes hard
|
|
|
|
requirements when packaging reproducible builds.
|
|
|
|
|
|
|
|
In addition, if your distribution uses a patched version of the Go compiler
|
2021-01-29 03:59:29 +08:00
|
|
|
that changes its output, or if the build command uses any additional flags
|
|
|
|
(either via the command line or via any environment variables), you must
|
|
|
|
treat this as a patch on Elvish itself, and supply a version suffix
|
|
|
|
accordingly.
|
2021-01-28 22:03:33 +08:00
|
|
|
|
|
|
|
If you follow these requirements when building Elvish, you can mark the build as
|
|
|
|
a reproducible one by overriding `src.elv.sh/pkg/buildinfo.Reproducible` to
|
|
|
|
`"true"`.
|
|
|
|
|
2021-01-31 09:09:05 +08:00
|
|
|
Example when building a release version without any patches, on a platform where
|
|
|
|
PIE is applicable:
|
2021-01-28 22:03:33 +08:00
|
|
|
|
|
|
|
```sh
|
2021-01-29 03:59:29 +08:00
|
|
|
go build -buildmode=pie -trimpath \
|
2021-01-28 22:03:33 +08:00
|
|
|
-ldflags "-X src.elv.sh/pkg/buildinfo.Reproducible=true" \
|
|
|
|
./cmd/elvish
|
|
|
|
```
|
|
|
|
|
2021-01-31 09:09:05 +08:00
|
|
|
Example when building a development version with a patch, on a platform where
|
|
|
|
PIE is application:
|
2021-01-28 22:03:33 +08:00
|
|
|
|
|
|
|
```sh
|
2021-01-29 03:59:29 +08:00
|
|
|
go build -buildmode=pie -trimpath \
|
2021-01-31 02:11:49 +08:00
|
|
|
-ldflags "-X src.elv.sh/pkg/buildinfo.VersionSuffix=-dev.$(git rev-parse HEAD)+deb0 \
|
2021-01-28 22:03:33 +08:00
|
|
|
-X src.elv.sh/pkg/buildinfo.Reproducible=true" \
|
|
|
|
./cmd/elvish
|
|
|
|
```
|