Use version in the .pkg filename
This commit is contained in:
parent
63c38d5e92
commit
848960f1c8
16
pkg/pkg.go
16
pkg/pkg.go
@ -14,8 +14,10 @@ import (
|
|||||||
|
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
"golang.org/x/crypto/openpgp"
|
"golang.org/x/crypto/openpgp"
|
||||||
|
yaml "gopkg.in/yaml.v2"
|
||||||
|
|
||||||
"mcquay.me/fs"
|
"mcquay.me/fs"
|
||||||
|
"mcquay.me/pm"
|
||||||
|
|
||||||
"mcquay.me/pm/keyring"
|
"mcquay.me/pm/keyring"
|
||||||
)
|
)
|
||||||
@ -88,6 +90,18 @@ func Create(key *openpgp.Entity, dir string) error {
|
|||||||
return fmt.Errorf("did not find meta.yaml")
|
return fmt.Errorf("did not find meta.yaml")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mf, err := os.Open(filepath.Join(dir, "meta.yaml"))
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrap(err, "opening metadata file")
|
||||||
|
}
|
||||||
|
md := pm.Meta{}
|
||||||
|
if err := yaml.NewDecoder(mf).Decode(&md); err != nil {
|
||||||
|
return errors.Wrap(err, "decoding metadata file")
|
||||||
|
}
|
||||||
|
if _, err := md.Valid(); err != nil {
|
||||||
|
return errors.Wrap(err, "invalid metadata")
|
||||||
|
}
|
||||||
|
|
||||||
f, err := os.Open(filepath.Join(dir, "root.tar.bz2"))
|
f, err := os.Open(filepath.Join(dir, "root.tar.bz2"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.Wrap(err, "opening overlay tarball")
|
return errors.Wrap(err, "opening overlay tarball")
|
||||||
@ -162,7 +176,7 @@ func Create(key *openpgp.Entity, dir string) error {
|
|||||||
sort.Strings(files)
|
sort.Strings(files)
|
||||||
|
|
||||||
tn, pn := filepath.Split(dir)
|
tn, pn := filepath.Split(dir)
|
||||||
tn = filepath.Join(tn, pn+".pkg")
|
tn = filepath.Join(tn, fmt.Sprintf("%v-%v.pkg", pn, md.Version))
|
||||||
tf, err := os.Create(tn)
|
tf, err := os.Create(tn)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.Wrap(err, "opening final .pkg")
|
return errors.Wrap(err, "opening final .pkg")
|
||||||
|
Loading…
Reference in New Issue
Block a user