1
1
mirror of https://github.com/goreleaser/nfpm synced 2024-09-27 02:25:45 +02:00
NFPM is Not FPM - a simple deb, rpm and apk packager written in Go
Go to file
Dj Gilcrease 2eb4016806
fix(#103): ensure the package is not included in itself (#104)
* fix(#103): ensure the package is not included in itself when using globs to match files

* chore: switch strings.Contains to strings.HasSuffix
2019-11-11 13:57:10 -08:00
.githooks fix: add stricter linting (#87) 2019-10-11 13:11:28 -07:00
.github docs: funding.yml 2019-05-25 18:14:44 -03:00
acceptance fix(#103): ensure the package is not included in itself (#104) 2019-11-11 13:57:10 -08:00
cmd/nfpm fix(#103): ensure the package is not included in itself (#104) 2019-11-11 13:57:10 -08:00
deb fix(#103): ensure the package is not included in itself (#104) 2019-11-11 13:57:10 -08:00
glob fix: add stricter linting (#87) 2019-10-11 13:11:28 -07:00
rpm fix(#103): ensure the package is not included in itself (#104) 2019-11-11 13:57:10 -08:00
testdata fix: rpm groups (#92) 2019-10-23 14:03:35 -03:00
.DEREK.yml chore: create redirect for derek (#98) 2019-11-04 09:26:45 -03:00
.gitignore fix: add stricter linting (#87) 2019-10-11 13:11:28 -07:00
.golangci.yml fix: add stricter linting (#87) 2019-10-11 13:11:28 -07:00
.goreleaser.yml fix: remove rpm recommends 2019-10-09 16:36:59 -03:00
.travis.yml clean: remove last mentions to rpmbuild (#84) 2019-10-09 16:30:17 -03:00
CODE_OF_CONDUCT.md docs: readme, coc, contributing 2018-02-18 19:32:16 -03:00
CONTRIBUTING.md fix(#103): ensure the package is not included in itself (#104) 2019-11-11 13:57:10 -08:00
Dockerfile feat: added docker image 2018-06-15 16:33:52 -03:00
go.mod fix(rpm): build time and build host 2019-11-06 11:54:35 -03:00
go.sum fix(rpm): build time and build host 2019-11-06 11:54:35 -03:00
LICENSE.md Create LICENSE.md 2018-02-03 17:11:21 -02:00
Makefile fix: add stricter linting (#87) 2019-10-11 13:11:28 -07:00
nfpm_test.go fix(rpm): with defaults: fix version and pre-release (#101) 2019-11-05 09:38:13 -03:00
nfpm.go fix(#103): ensure the package is not included in itself (#104) 2019-11-11 13:57:10 -08:00
README.md clean: remove last mentions to rpmbuild (#84) 2019-10-09 16:30:17 -03:00

GoReleaser Logo

NFPM

NFPM is Not FPM - a simple deb and rpm packager written in Go.

Release Software License Travis Codecov branch Go Report Card Go Doc SayThanks.io Powered By: GoReleaser

Why

While fpm is great, for me it is a bummer that it depends on Ruby, tar and probably other software.

I wanted something that could be used as a binary and/or as a lib on go-software, so I hacked this together and it works!

Goals

  • be simple to use
  • provide packaging for the most common linux packaging systems (at very least deb and rpm)
  • be distributed as a single binary
  • reproducible results
    • depend on the fewer external things as possible
    • generate packages based on yaml files (maybe also json and toml?)
  • be possible to use it as a lib in other go projects (namely goreleaser itself)
  • support complex packages and power users

Usage

The first steps are to run nfpm init to initialize a config file and edit the generated file according to your needs:

nfpm init

The next step is to run nfpm pkg --target mypkg.deb. NFPM will guess which packager to use based on the target file extension.

nfpm pkg

And that's it!

Usage as a docker image

You can run it with docker as well:

docker run --rm \
  -v $PWD:/tmp/pkg \
  goreleaser/nfpm pkg --config /tmp/pkg/foo.yml --target /tmp/pkg/foo.rpm

That's it!

Usage as lib

You can look at the code of nfpm itself to see how to use it as a library, or, take a look at the nfpm pipe on GoReleaser.

Attention: GoReleaser deb packager only compiles with go1.10+.

Status

  • both deb and rpm packaging are working but there are some missing features.

Special thanks

Thanks to the fpm authors for fpm, which inspires nfpm a lot.

Donate

Donations are very much appreciated! You can donate/sponsor on the main goreleaser opencollective! It's easy and will surely help the developers at least buy some or 🍺!

Stargazers over time

goreleaser/nfpm stargazers over time


Would you like to fix something in the documentation? Feel free to open an issue.