mirror of
https://github.com/goreleaser/nfpm
synced 2024-11-19 03:25:08 +01:00
8535159b05
* fix: ensure nfpm can run on windows and still build correct rpm, deb, and apk packages fix: add windows test job * fix: ensure file close happens in the correct order on windows * fix: ensure eol is set to lf * chore: update the go version to be consistent between windows and ubuntu Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * chore: update comments Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> * chore: rerun make deps * chore: fix .gitattributes to ensure images are not touched * chore: run make fmt Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
48 lines
2.4 KiB
Modula-2
48 lines
2.4 KiB
Modula-2
module github.com/goreleaser/nfpm
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/Djarvur/go-err113 v0.1.0 // indirect
|
|
github.com/Masterminds/semver/v3 v3.1.1
|
|
github.com/Microsoft/go-winio v0.4.16 // indirect
|
|
github.com/alecthomas/kingpin v2.2.6+incompatible
|
|
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
|
|
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
|
|
github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb
|
|
github.com/daixiang0/gci v0.2.7 // indirect
|
|
github.com/golangci/golangci-lint v1.33.0
|
|
github.com/golangci/misspell v0.3.5 // indirect
|
|
github.com/golangci/revgrep v0.0.0-20180812185044-276a5c0a1039 // indirect
|
|
github.com/google/go-cmp v0.5.4 // indirect
|
|
github.com/google/rpmpack v0.0.0-20201206194719-59e495f2b7e1
|
|
github.com/goreleaser/chglog v0.1.2
|
|
github.com/goreleaser/fileglob v0.3.1
|
|
github.com/gostaticanalysis/analysisutil v0.6.1 // indirect
|
|
github.com/imdario/mergo v0.3.11
|
|
github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect
|
|
github.com/matoous/godox v0.0.0-20200801072554-4fb83dc2941e // indirect
|
|
github.com/mitchellh/mapstructure v1.4.0 // indirect
|
|
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 // indirect
|
|
github.com/polyfloyd/go-errorlint v0.0.0-20201127212506-19bd8db6546f // indirect
|
|
github.com/quasilyte/go-ruleguard v0.2.1 // indirect
|
|
github.com/quasilyte/regex/syntax v0.0.0-20200805063351-8f842688393c // indirect
|
|
github.com/sassoftware/go-rpmutils v0.0.0-20190420191620-a8f1baeba37b
|
|
github.com/spf13/afero v1.5.1 // indirect
|
|
github.com/stretchr/objx v0.3.0 // indirect
|
|
github.com/stretchr/testify v1.6.1
|
|
github.com/tdakkota/asciicheck v0.0.0-20200416200610-e657995f937b // indirect
|
|
github.com/tetafro/godot v1.3.2 // indirect
|
|
github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94 // indirect
|
|
github.com/tomarrell/wrapcheck v0.0.0-20201130113247-1683564d9756 // indirect
|
|
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
|
|
golang.org/x/crypto v0.0.0-20201208171446-5f87f3452ae9
|
|
golang.org/x/mod v0.4.0 // indirect
|
|
golang.org/x/net v0.0.0-20201209123823-ac852fbbde11 // indirect
|
|
golang.org/x/sys v0.0.0-20201207223542-d4d67f95c62d // indirect
|
|
golang.org/x/tools v0.0.0-20201208233053-a543418bbed2 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
|
|
mvdan.cc/gofumpt v0.0.0-20201129102820-5c11c50e9475 // indirect
|
|
)
|