forked from quay/claircore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.go
28 lines (27 loc) · 1.15 KB
/
package.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package claircore
type Package struct {
// unique ID of this package. this will be created as discovered by the library
// and used for persistence and hash map indexes
ID string `json:"id"`
// the name of the package
Name string `json:"name"`
// the version of the package
Version string `json:"version"`
// type of package. currently expectations are binary or source
Kind string `json:"kind,omitempty"`
// if type is a binary package a source package maybe present which built this binary package.
// must be a pointer to support recursive type:
Source *Package `json:"source,omitempty"`
// the file system path or prefix where this package resides
PackageDB string `json:"-"`
// a hint on which repository this package was downloaded from
RepositoryHint string `json:"-"`
// NormalizedVersion is a representation of a version string that's
// correctly ordered when compared with other representations from the same
// producer.
NormalizedVersion Version `json:"normalized_version,omitempty"`
// Module and stream which this package is part of
Module string `json:"module,omitempty"`
// Package architecture
Arch string `json:"arch,omitempty"`
}