1
1
Fork 0
mirror of https://github.com/goreleaser/nfpm synced 2024-06-03 11:46:28 +02:00
nfpm/internal/cmd/package.go
Weston Schmidt bc5c3bd876
feat: support for ipk packages (#818)
Implements #507.

* Adds ipk support for keywords used by OpenWRT and Yocto.
* MD5sum is explicitly excluded due to insecurity.
* SHA256Sum excluded due packages not being individually signed,
  instead, the feed of packages is checksummed and signed externally.
* Adds code to nfpm package to automatically enumerate the supported
  packaging types where possible.
2024-05-08 16:02:39 -03:00

118 lines
2.8 KiB
Go

package cmd
import (
"errors"
"fmt"
"os"
"path"
"path/filepath"
"strings"
"github.com/goreleaser/nfpm/v2"
"github.com/spf13/cobra"
)
type packageCmd struct {
cmd *cobra.Command
config string
target string
packager string
}
func newPackageCmd() *packageCmd {
root := &packageCmd{}
cmd := &cobra.Command{
Use: "package",
Aliases: []string{"pkg", "p"},
Short: "Creates a package based on the given config file and flags",
SilenceUsage: true,
SilenceErrors: true,
Args: cobra.NoArgs,
ValidArgsFunction: cobra.NoFileCompletions,
RunE: func(*cobra.Command, []string) error {
return doPackage(root.config, root.target, root.packager)
},
}
cmd.Flags().StringVarP(&root.config, "config", "f", "nfpm.yaml", "config file to be used")
_ = cmd.MarkFlagFilename("config", "yaml", "yml")
cmd.Flags().StringVarP(&root.target, "target", "t", "", "where to save the generated package (filename, folder or empty for current folder)")
_ = cmd.MarkFlagFilename("target")
pkgs := nfpm.Enumerate()
cmd.Flags().StringVarP(&root.packager, "packager", "p", "",
fmt.Sprintf("which packager implementation to use [%s]", strings.Join(pkgs, "|")))
_ = cmd.RegisterFlagCompletionFunc("packager", cobra.FixedCompletions(pkgs,
cobra.ShellCompDirectiveNoFileComp,
))
root.cmd = cmd
return root
}
var errInsufficientParams = errors.New("a packager must be specified if target is a directory or blank")
// nolint:funlen
func doPackage(configPath, target, packager string) error {
targetIsADirectory := false
stat, err := os.Stat(target)
if err == nil && stat.IsDir() {
targetIsADirectory = true
}
if packager == "" {
ext := filepath.Ext(target)
if targetIsADirectory || ext == "" {
return errInsufficientParams
}
packager = ext[1:]
fmt.Println("guessing packager from target file extension...")
}
config, err := nfpm.ParseFile(configPath)
if err != nil {
return err
}
info, err := config.Get(packager)
if err != nil {
return err
}
info = nfpm.WithDefaults(info)
fmt.Printf("using %s packager...\n", packager)
pkg, err := nfpm.Get(packager)
if err != nil {
return err
}
if target == "" {
// if no target was specified create a package in
// current directory with a conventional file name
target = pkg.ConventionalFileName(info)
} else if targetIsADirectory {
// if a directory was specified as target, create
// a package with conventional file name there
target = path.Join(target, pkg.ConventionalFileName(info))
}
f, err := os.Create(target)
if err != nil {
return err
}
defer f.Close()
info.Target = target
if err := pkg.Package(info, f); err != nil {
os.Remove(target)
return err
}
fmt.Printf("created package: %s\n", target)
return f.Close()
}