| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
From `go help environment`:
GOFLAGS
A space-separated list of -flag=value settings to apply
to go commands by default, when the given flag is known by
the current command. Flags listed on the command-line
are applied after this list and therefore override it.
And from `go help build`:
-buildmode mode
build mode to use. See 'go help buildmode' for more.
Setting this environment variable in /etc/abuild.conf allows us to build
all go binaries on the builders as PIE without needing to patch the go
compiler itself.
|
|
|
|
|
|
|
|
|
|
|
| |
This introduces basic support for ccache, during packaging builds.
If you are building many packages, it is recommended to manually
increase the maximum size of the ccache cache. This is typically
achieved by modifying `~/.ccache/ccache.conf` and adjusting the
`max_size` setting.
Signed-off-by: Joseph Benden <joe@benden.us>
|
|
|
|
| |
This patch is based on earlier work by Timo Teräs.
|
| |
|
|
|
|
|
| |
For the sake of completeness, include MAINTAINER as well as
PACKAGER to provide newapkbuild with comment metadata.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
allow user specify if they want uninstall deps, remove srcdir and/or
pkgdir on failure or success.
We introduce CLEANUP and ERROR_CLEANUP config options in
/etc/abuild.conf. Valid values are: pkgdir srcdir deps.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
makes it easier to support parallel builds on non gnu make system
|
| |
|
|
|
|
|
| |
This will let user specify a directory where the repositories are.
Setting REPODEST will override PKGDEST.
|
| |
|
| |
|
| |
|
| |
|
|
|