mirror of
https://github.com/goreleaser/nfpm
synced 2024-11-19 07:34:48 +01:00
285a6bcaea
* feat: Add initial openpgp signing capability. * refactor: Rename signatures to sigs and expose verify method. * feat: Add debsigs support. * test: Add debsigs acceptance test. * feat: Add RSA signing capability. * feat: Add RPM signature support. * test: Add RPM signature acceptance test. * test: Move acceptance test keys in dedicated folder. * feat: Add APK signature support. * test: Add APK signature acceptance test. * feat: Expose deb signature type in config. * fix: Fix typo and superfluous explicit error check * fix: Fix password env extraction and add tests. * fix: Redirect rpmpack to temporary goreleaser vendoring. * fix: Catch missing maintainer email if no apk key name is set. * refactor: Put signature info in a dedicated struct. * doc: Add signing documentation. * fix: Add trailing newlines to some files and remove unnecessary comment. * fix: Change wrong references from SHA256 to SHA1 in the sign package. * fix: Improve error wording when no passphrase was provided. * fix: Remove another SHA256 reference. * fix: Fix signature errors. * test: Split up environment variable test. * fix: Don't parse passphrase from YAML. * deps: Update redirected rpmpack. * fix: Export and use signature related error type. * doc: Document ErrSigningFailure. * test: Fix apk signature error test. * test: Add rpm signature error test.
28 lines
1.1 KiB
Modula-2
28 lines
1.1 KiB
Modula-2
module github.com/goreleaser/nfpm
|
|
|
|
go 1.14
|
|
|
|
replace github.com/google/rpmpack => github.com/goreleaser/rpmpack v0.0.0-20200915084912-ac8a7d0c1fdc
|
|
|
|
require (
|
|
github.com/Masterminds/semver/v3 v3.1.0
|
|
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/golangci/golangci-lint v1.31.0
|
|
github.com/google/rpmpack v0.0.0-20200731134257-3685799e8fdf
|
|
github.com/goreleaser/chglog v0.1.1
|
|
github.com/imdario/mergo v0.3.11
|
|
github.com/mattn/go-zglob v0.0.3
|
|
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 // indirect
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/sassoftware/go-rpmutils v0.0.0-20190420191620-a8f1baeba37b
|
|
github.com/stretchr/objx v0.2.0 // indirect
|
|
github.com/stretchr/testify v1.6.1
|
|
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
|
|
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899
|
|
gopkg.in/yaml.v2 v2.3.0
|
|
gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c // indirect
|
|
)
|