mirror of
https://github.com/mudler/luet.git
synced 2025-04-28 03:30:09 +00:00
It holds necessary state plus additional information relative to the context which we are being run to (e.g. if we are in a terminal or not). Besides in the future we can use it also as a contextual logger to provide more smart logging capabilities. This also replace the general global configuration instance that previously was share between the core components.
100 lines
3.5 KiB
Go
100 lines
3.5 KiB
Go
// Copyright © 2019 Ettore Di Giacinto <mudler@gentoo.org>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License along
|
|
// with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
package cmd
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"time"
|
|
|
|
helpers "github.com/mudler/luet/cmd/helpers"
|
|
"github.com/mudler/luet/cmd/util"
|
|
"github.com/mudler/luet/pkg/api/core/types/artifact"
|
|
"github.com/mudler/luet/pkg/compiler/types/compression"
|
|
compilerspec "github.com/mudler/luet/pkg/compiler/types/spec"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
var packCmd = &cobra.Command{
|
|
Use: "pack <package name>",
|
|
Short: "pack a custom package",
|
|
Long: `Pack creates a package from a directory, generating the metadata required from a tree to generate a repository.
|
|
|
|
Pack can be used to manually replace what "luet build" does automatically by reading the packages build.yaml files.
|
|
|
|
$ mkdir -p output/etc/foo
|
|
$ echo "my config" > output/etc/foo
|
|
$ luet pack foo/bar@1.1 --source output
|
|
|
|
Afterwards, you can use the content generated and associate it with a tree and a corresponding definition.yaml file with "luet create-repo".
|
|
`,
|
|
PreRun: func(cmd *cobra.Command, args []string) {
|
|
viper.BindPFlag("destination", cmd.Flags().Lookup("destination"))
|
|
viper.BindPFlag("compression", cmd.Flags().Lookup("compression"))
|
|
viper.BindPFlag("source", cmd.Flags().Lookup("source"))
|
|
},
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
sourcePath := viper.GetString("source")
|
|
|
|
dst := viper.GetString("destination")
|
|
compressionType := viper.GetString("compression")
|
|
concurrency := util.DefaultContext.Config.GetGeneral().Concurrency
|
|
|
|
if len(args) != 1 {
|
|
util.DefaultContext.Fatal("You must specify a package name")
|
|
}
|
|
|
|
packageName := args[0]
|
|
|
|
p, err := helpers.ParsePackageStr(packageName)
|
|
if err != nil {
|
|
util.DefaultContext.Fatal("Invalid package string ", packageName, ": ", err.Error())
|
|
}
|
|
|
|
spec := &compilerspec.LuetCompilationSpec{Package: p}
|
|
a := artifact.NewPackageArtifact(filepath.Join(dst, p.GetFingerPrint()+".package.tar"))
|
|
a.CompressionType = compression.Implementation(compressionType)
|
|
err = a.Compress(sourcePath, concurrency)
|
|
if err != nil {
|
|
util.DefaultContext.Fatal("failed compressing ", packageName, ": ", err.Error())
|
|
}
|
|
a.CompileSpec = spec
|
|
filelist, err := a.FileList()
|
|
if err != nil {
|
|
util.DefaultContext.Fatal("failed generating file list for ", packageName, ": ", err.Error())
|
|
}
|
|
a.Files = filelist
|
|
a.CompileSpec.GetPackage().SetBuildTimestamp(time.Now().String())
|
|
err = a.WriteYAML(dst)
|
|
if err != nil {
|
|
util.DefaultContext.Fatal("failed writing metadata yaml file for ", packageName, ": ", err.Error())
|
|
}
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
path, err := os.Getwd()
|
|
if err != nil {
|
|
util.DefaultContext.Fatal(err)
|
|
}
|
|
packCmd.Flags().String("source", path, "Source folder")
|
|
packCmd.Flags().String("destination", path, "Destination folder")
|
|
packCmd.Flags().String("compression", "gzip", "Compression alg: none, gzip")
|
|
|
|
RootCmd.AddCommand(packCmd)
|
|
}
|