2017-09-10 17:07:28 -03:00
|
|
|
---
|
2018-06-25 10:06:08 -03:00
|
|
|
title: NFPM
|
2017-09-10 17:07:28 -03:00
|
|
|
---
|
|
|
|
|
2018-02-18 20:37:59 -03:00
|
|
|
GoReleaser can be wired to [nfpm](https://github.com/goreleaser/nfpm) to
|
2020-10-27 13:29:54 +01:00
|
|
|
generate and publish `.deb`, `.rpm` and `.apk` packages.
|
2018-02-18 20:37:59 -03:00
|
|
|
|
|
|
|
Available options:
|
|
|
|
|
2020-05-10 18:59:21 -03:00
|
|
|
```yaml
|
2018-02-18 20:37:59 -03:00
|
|
|
# .goreleaser.yml
|
2019-05-07 06:59:53 -03:00
|
|
|
nfpms:
|
|
|
|
# note that this is an array of nfpm configs
|
|
|
|
-
|
2020-05-10 18:59:21 -03:00
|
|
|
# ID of the nfpm config, must be unique.
|
2019-05-07 07:18:35 -03:00
|
|
|
# Defaults to "default".
|
|
|
|
id: foo
|
2019-11-15 16:00:48 -03:00
|
|
|
|
|
|
|
# Name of the package.
|
|
|
|
# Defaults to `ProjectName`.
|
|
|
|
package_name: foo
|
|
|
|
|
|
|
|
# You can change the file name of the package.
|
2020-02-05 22:08:18 -03:00
|
|
|
# Default: `{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}`
|
2019-11-15 16:00:48 -03:00
|
|
|
file_name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
|
2019-05-07 06:59:53 -03:00
|
|
|
|
|
|
|
# Build IDs for the builds you want to create NFPM packages for.
|
|
|
|
# Defaults to all builds.
|
|
|
|
builds:
|
2020-02-26 19:59:52 +08:00
|
|
|
- foo
|
|
|
|
- bar
|
2019-05-07 06:59:53 -03:00
|
|
|
|
|
|
|
# Replacements for GOOS and GOARCH in the package name.
|
|
|
|
# Keys should be valid GOOSs or GOARCHs.
|
|
|
|
# Values are the respective replacements.
|
|
|
|
# Default is empty.
|
|
|
|
replacements:
|
|
|
|
amd64: 64-bit
|
|
|
|
386: 32-bit
|
|
|
|
darwin: macOS
|
|
|
|
linux: Tux
|
|
|
|
|
|
|
|
# Your app's vendor.
|
|
|
|
# Default is empty.
|
|
|
|
vendor: Drum Roll Inc.
|
|
|
|
# Your app's homepage.
|
|
|
|
# Default is empty.
|
|
|
|
homepage: https://example.com/
|
|
|
|
|
|
|
|
# Your app's maintainer (probably you).
|
|
|
|
# Default is empty.
|
|
|
|
maintainer: Drummer <drum-roll@example.com>
|
|
|
|
|
|
|
|
# Your app's description.
|
|
|
|
# Default is empty.
|
|
|
|
description: Software to create fast and easy drum rolls.
|
|
|
|
|
|
|
|
# Your app's license.
|
|
|
|
# Default is empty.
|
|
|
|
license: Apache 2.0
|
|
|
|
|
|
|
|
# Formats to be generated.
|
|
|
|
formats:
|
2020-08-22 19:00:14 -03:00
|
|
|
- apk
|
2019-05-07 06:59:53 -03:00
|
|
|
- deb
|
|
|
|
- rpm
|
|
|
|
|
|
|
|
# Packages your package depends on.
|
|
|
|
dependencies:
|
|
|
|
- git
|
|
|
|
- zsh
|
|
|
|
|
|
|
|
# Packages your package recommends installing.
|
|
|
|
recommends:
|
|
|
|
- bzr
|
|
|
|
- gtk
|
|
|
|
|
|
|
|
# Packages your package suggests installing.
|
|
|
|
suggests:
|
|
|
|
- cvs
|
|
|
|
- ksh
|
|
|
|
|
|
|
|
# Packages that conflict with your package.
|
|
|
|
conflicts:
|
|
|
|
- svn
|
|
|
|
- bash
|
|
|
|
|
|
|
|
# Override default /usr/local/bin destination for binaries
|
|
|
|
bindir: /usr/bin
|
|
|
|
|
2019-06-29 12:26:01 -03:00
|
|
|
# Package epoch.
|
|
|
|
# Defaults to empty.
|
|
|
|
epoch: 1
|
|
|
|
|
2020-02-26 19:59:52 +08:00
|
|
|
# Package release.
|
|
|
|
# Defaults to empty.
|
|
|
|
release: 1
|
|
|
|
|
2020-06-19 22:04:10 +08:00
|
|
|
# Makes a meta package - an empty package that contains only supporting files and dependencies.
|
|
|
|
# When set to `true`, the `builds` option is ignored.
|
|
|
|
# Defaults to false.
|
|
|
|
meta: true
|
|
|
|
|
2019-05-07 06:59:53 -03:00
|
|
|
# Empty folders that should be created and managed by the packager
|
|
|
|
# implementation.
|
|
|
|
# Default is empty.
|
|
|
|
empty_folders:
|
2020-02-26 19:59:52 +08:00
|
|
|
- /var/log/foobar
|
2019-05-07 06:59:53 -03:00
|
|
|
|
2019-12-22 15:06:34 -03:00
|
|
|
# Files to add to your package (beyond the binary).
|
2019-05-07 06:59:53 -03:00
|
|
|
# Keys are source paths/globs to get the files from.
|
|
|
|
# Values are the destination locations of the files in the package.
|
2019-12-22 15:06:34 -03:00
|
|
|
# Use globs to add all contents of a folder.
|
2019-05-07 06:59:53 -03:00
|
|
|
files:
|
2019-12-22 15:06:34 -03:00
|
|
|
"scripts/etc/init.d/**": "/etc/init.d"
|
2019-05-07 06:59:53 -03:00
|
|
|
"path/**/glob": "/var/foo/glob"
|
|
|
|
|
|
|
|
# Config files to add to your package. They are about the same as
|
|
|
|
# the files keyword, except package managers treat them differently (while
|
|
|
|
# uninstalling, mostly).
|
|
|
|
# Keys are source paths/globs to get the files from.
|
|
|
|
# Values are the destination locations of the files in the package.
|
|
|
|
config_files:
|
|
|
|
"tmp/app_generated.conf": "/etc/app.conf"
|
|
|
|
"conf/*.conf": "/etc/foo/"
|
|
|
|
|
|
|
|
# Scripts to execute during the installation of the package.
|
|
|
|
# Keys are the possible targets during the installation process
|
|
|
|
# Values are the paths to the scripts which will be executed
|
|
|
|
scripts:
|
|
|
|
preinstall: "scripts/preinstall.sh"
|
|
|
|
postinstall: "scripts/postinstall.sh"
|
|
|
|
preremove: "scripts/preremove.sh"
|
|
|
|
postremove: "scripts/postremove.sh"
|
|
|
|
|
|
|
|
# Some attributes can be overrided per package format.
|
|
|
|
overrides:
|
|
|
|
deb:
|
|
|
|
conflicts:
|
|
|
|
- subversion
|
|
|
|
dependencies:
|
|
|
|
- git
|
|
|
|
suggests:
|
|
|
|
- gitk
|
|
|
|
recommends:
|
|
|
|
- tig
|
|
|
|
empty_folders:
|
2020-02-26 19:59:52 +08:00
|
|
|
- /var/log/bar
|
2019-05-07 06:59:53 -03:00
|
|
|
rpm:
|
|
|
|
replacements:
|
|
|
|
amd64: x86_64
|
|
|
|
name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Arch }}"
|
|
|
|
files:
|
|
|
|
"tmp/man.gz": "/usr/share/man/man8/app.8.gz"
|
|
|
|
config_files:
|
|
|
|
"tmp/app_generated.conf": "/etc/app-rpm.conf"
|
|
|
|
scripts:
|
|
|
|
preinstall: "scripts/preinstall-rpm.sh"
|
2020-11-05 21:47:55 +00:00
|
|
|
|
|
|
|
# Custon configuration applied only to the RPM packager.
|
|
|
|
rpm:
|
|
|
|
# The package group. This option is deprecated by most distros
|
|
|
|
# but required by old distros like CentOS 5 / EL 5 and earlier.
|
|
|
|
group: Unspecified
|
|
|
|
|
|
|
|
# Compression algorithm.
|
|
|
|
compression: lzma
|
|
|
|
|
|
|
|
# These config files will not be replaced by new versions if they were
|
|
|
|
# changed by the user. Corresponds to %config(noreplace).
|
|
|
|
config_noreplace_files:
|
|
|
|
path/to/local/bar.con: /etc/bar.conf
|
|
|
|
|
|
|
|
# The package is signed if a key_file is set
|
|
|
|
signature:
|
|
|
|
# PGP secret key (can also be ASCII-armored). The passphrase is taken
|
|
|
|
# from the environment variable $NFPM_ID_RPM_PASSPHRASE with a fallback
|
|
|
|
# to $NFPM_ID_PASSPHRASE, where ID is the id of the current nfpm config.
|
|
|
|
# The id will be transformed to uppercase.
|
|
|
|
# E.g. If your nfpm id is 'default' then the rpm-specific passphrase
|
|
|
|
# should be set as $NFPM_DEFAULT_RPM_PASSPHRASE
|
|
|
|
key_file: key.gpg
|
|
|
|
|
|
|
|
# Custom configuration applied only to the Deb packager.
|
|
|
|
deb:
|
|
|
|
# Custom deb rules script.
|
|
|
|
scripts:
|
|
|
|
rules: foo.sh
|
|
|
|
# Deb templates file, when using debconf.
|
|
|
|
templates: templates
|
|
|
|
|
|
|
|
# Custom deb triggers
|
|
|
|
triggers:
|
|
|
|
# register interrest on a trigger activated by another package
|
|
|
|
# (also available: interest_await, interest_noawait)
|
|
|
|
interest:
|
|
|
|
- some-trigger-name
|
|
|
|
# activate a trigger for another package
|
|
|
|
# (also available: activate_await, activate_noawait)
|
|
|
|
activate:
|
|
|
|
- another-trigger-name
|
|
|
|
|
|
|
|
# Packages which would break if this package would be installed.
|
|
|
|
# The installation of this package is blocked if `some-package`
|
|
|
|
# is already installed.
|
|
|
|
breaks:
|
|
|
|
- some-package
|
|
|
|
|
|
|
|
# The package is signed if a key_file is set
|
|
|
|
signature:
|
|
|
|
# PGP secret key (can also be ASCII-armored). The passphrase is taken
|
|
|
|
# from the environment variable $NFPM_ID_DEB_PASSPHRASE with a fallback
|
|
|
|
# to $NFPM_ID_PASSPHRASE, where ID is the id of the current nfpm config.
|
|
|
|
# The id will be transformed to uppercase.
|
|
|
|
# E.g. If your nfpm id is 'default' then the deb-specific passphrase
|
|
|
|
# should be set as $NFPM_DEFAULT_DEB_PASSPHRASE
|
|
|
|
key_file: key.gpg
|
|
|
|
# The type describes the signers role, possible values are "origin",
|
|
|
|
# "maint" and "archive". If unset, the type defaults to "origin".
|
|
|
|
type: origin
|
|
|
|
|
|
|
|
apk:
|
|
|
|
# The package is signed if a key_file is set
|
|
|
|
signature:
|
|
|
|
# RSA private key in the PEM format. The passphrase is taken
|
|
|
|
# from the environment variable $NFPM_ID_APK_PASSPHRASE with a fallback
|
|
|
|
# to $NFPM_ID_PASSPHRASE, where ID is the id of the current nfpm config.
|
|
|
|
# The id will be transformed to uppercase.
|
|
|
|
# E.g. If your nfpm id is 'default' then the deb-specific passphrase
|
|
|
|
# should be set as $NFPM_DEFAULT_APK_PASSPHRASE
|
|
|
|
key_file: key.gpg
|
|
|
|
# The name of the signing key. When verifying a package, the signature
|
|
|
|
# is matched to the public key store in /etc/apk/keys/<key_name>.rsa.pub.
|
|
|
|
# If unset, it defaults to the maintainer email address.
|
|
|
|
key_name: origin
|
2018-02-18 20:37:59 -03:00
|
|
|
```
|
|
|
|
|
2020-05-10 18:59:21 -03:00
|
|
|
!!! tip
|
|
|
|
Learn more about the [name template engine](/customization/templates).
|