mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-08 03:31:59 +02:00
179 lines
4.8 KiB
Go
179 lines
4.8 KiB
Go
// Package nfpm implements the Pipe interface providing NFPM bindings.
|
|
package nfpm
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/apex/log"
|
|
"github.com/goreleaser/nfpm"
|
|
"github.com/imdario/mergo"
|
|
"github.com/pkg/errors"
|
|
|
|
// blank imports here because the formats implementations need register
|
|
// themselves
|
|
_ "github.com/goreleaser/nfpm/deb"
|
|
_ "github.com/goreleaser/nfpm/rpm"
|
|
|
|
"github.com/goreleaser/goreleaser/internal/artifact"
|
|
"github.com/goreleaser/goreleaser/internal/linux"
|
|
"github.com/goreleaser/goreleaser/internal/pipe"
|
|
"github.com/goreleaser/goreleaser/internal/semerrgroup"
|
|
"github.com/goreleaser/goreleaser/internal/tmpl"
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
)
|
|
|
|
const defaultNameTemplate = "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
|
|
|
// Pipe for fpm packaging
|
|
type Pipe struct{}
|
|
|
|
func (Pipe) String() string {
|
|
return "creating Linux packages with nfpm"
|
|
}
|
|
|
|
// Default sets the pipe defaults
|
|
func (Pipe) Default(ctx *context.Context) error {
|
|
var fpm = &ctx.Config.NFPM
|
|
if fpm.Bindir == "" {
|
|
fpm.Bindir = "/usr/local/bin"
|
|
}
|
|
if fpm.NameTemplate == "" {
|
|
fpm.NameTemplate = defaultNameTemplate
|
|
}
|
|
if fpm.Files == nil {
|
|
fpm.Files = make(map[string]string)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Run the pipe
|
|
func (Pipe) Run(ctx *context.Context) error {
|
|
if len(ctx.Config.NFPM.Formats) == 0 {
|
|
return pipe.Skip("no output formats configured")
|
|
}
|
|
return doRun(ctx)
|
|
}
|
|
|
|
func doRun(ctx *context.Context) error {
|
|
var linuxBinaries = ctx.Artifacts.Filter(artifact.And(
|
|
artifact.ByType(artifact.Binary),
|
|
artifact.ByGoos("linux"),
|
|
)).GroupByPlatform()
|
|
var g = semerrgroup.New(ctx.Parallelism)
|
|
for _, format := range ctx.Config.NFPM.Formats {
|
|
for platform, artifacts := range linuxBinaries {
|
|
format := format
|
|
arch := linux.Arch(platform)
|
|
artifacts := artifacts
|
|
g.Go(func() error {
|
|
return create(ctx, format, arch, artifacts)
|
|
})
|
|
}
|
|
}
|
|
return g.Wait()
|
|
}
|
|
|
|
func mergeOverrides(ctx *context.Context, format string) (*config.NFPMOverridables, error) {
|
|
var overrided config.NFPMOverridables
|
|
if err := mergo.Merge(&overrided, ctx.Config.NFPM.NFPMOverridables); err != nil {
|
|
return nil, err
|
|
}
|
|
perFormat, ok := ctx.Config.NFPM.Overrides[format]
|
|
if ok {
|
|
err := mergo.Merge(&overrided, perFormat, mergo.WithOverride)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return &overrided, nil
|
|
}
|
|
|
|
func create(ctx *context.Context, format, arch string, binaries []artifact.Artifact) error {
|
|
overrided, err := mergeOverrides(ctx, format)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
name, err := tmpl.New(ctx).
|
|
WithArtifact(binaries[0], overrided.Replacements).
|
|
Apply(overrided.NameTemplate)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var files = map[string]string{}
|
|
for k, v := range overrided.Files {
|
|
files[k] = v
|
|
}
|
|
var log = log.WithField("package", name+"."+format)
|
|
for _, binary := range binaries {
|
|
src := binary.Path
|
|
dst := filepath.Join(ctx.Config.NFPM.Bindir, binary.Name)
|
|
log.WithField("src", src).WithField("dst", dst).Debug("adding binary to package")
|
|
files[src] = dst
|
|
}
|
|
log.WithField("files", files).Debug("all archive files")
|
|
|
|
var info = nfpm.Info{
|
|
Arch: arch,
|
|
Platform: "linux",
|
|
Name: ctx.Config.ProjectName,
|
|
Version: ctx.Git.CurrentTag,
|
|
Section: "",
|
|
Priority: "",
|
|
Maintainer: ctx.Config.NFPM.Maintainer,
|
|
Description: ctx.Config.NFPM.Description,
|
|
Vendor: ctx.Config.NFPM.Vendor,
|
|
Homepage: ctx.Config.NFPM.Homepage,
|
|
License: ctx.Config.NFPM.License,
|
|
Bindir: ctx.Config.NFPM.Bindir,
|
|
Overridables: nfpm.Overridables{
|
|
Conflicts: overrided.Conflicts,
|
|
Depends: overrided.Dependencies,
|
|
Recommends: overrided.Recommends,
|
|
Suggests: overrided.Suggests,
|
|
EmptyFolders: overrided.EmptyFolders,
|
|
Files: files,
|
|
ConfigFiles: overrided.ConfigFiles,
|
|
Scripts: nfpm.Scripts{
|
|
PreInstall: overrided.Scripts.PreInstall,
|
|
PostInstall: overrided.Scripts.PostInstall,
|
|
PreRemove: overrided.Scripts.PreRemove,
|
|
PostRemove: overrided.Scripts.PostRemove,
|
|
},
|
|
},
|
|
}
|
|
|
|
if err = nfpm.Validate(info); err != nil {
|
|
return errors.Wrap(err, "invalid nfpm config")
|
|
}
|
|
|
|
packager, err := nfpm.Get(format)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var path = filepath.Join(ctx.Config.Dist, name+"."+format)
|
|
log.WithField("file", path).Info("creating")
|
|
w, err := os.Create(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer w.Close() // nolint: errcheck
|
|
if err := packager.Package(nfpm.WithDefaults(info), w); err != nil {
|
|
return errors.Wrap(err, "nfpm failed")
|
|
}
|
|
if err := w.Close(); err != nil {
|
|
return errors.Wrap(err, "could not close package file")
|
|
}
|
|
ctx.Artifacts.Add(artifact.Artifact{
|
|
Type: artifact.LinuxPackage,
|
|
Name: name + "." + format,
|
|
Path: path,
|
|
Goos: binaries[0].Goos,
|
|
Goarch: binaries[0].Goarch,
|
|
Goarm: binaries[0].Goarm,
|
|
})
|
|
return nil
|
|
}
|