containers.image: update to 3.0.0.

containers.image: ship policy.json
This commit is contained in:
Cameron Nemo 2019-08-02 21:47:27 -07:00 committed by Helmut Pozimski
parent 323c827e23
commit ae6b6878d1
2 changed files with 20 additions and 3 deletions

View file

@ -0,0 +1,16 @@
{
"default": [
{
"type": "insecureAcceptAnything"
}
],
"transports": {
"docker-daemon": {
"": [
{
"type": "insecureAcceptAnything"
}
]
}
}
}

View file

@ -1,16 +1,16 @@
# Template file for 'containers.image' # Template file for 'containers.image'
pkgname=containers.image pkgname=containers.image
version=1.5.1 version=3.0.0
revision=1 revision=1
wrksrc="image-${version}" wrksrc="image-${version}"
conf_files="/etc/containers/registries.conf" conf_files="/etc/containers/registries.conf /etc/containers/policy.json"
hostmakedepends="go-md2man" hostmakedepends="go-md2man"
short_desc="Configuration shared by podman, buildah, and skopeo" short_desc="Configuration shared by podman, buildah, and skopeo"
maintainer="Cameron Nemo <cnemo@tutanota.com>" maintainer="Cameron Nemo <cnemo@tutanota.com>"
license="Apache-2.0" license="Apache-2.0"
homepage="https://github.com/containers/image" homepage="https://github.com/containers/image"
distfiles="https://github.com/containers/image/archive/v${version}.tar.gz" distfiles="https://github.com/containers/image/archive/v${version}.tar.gz"
checksum=369dd8a90eae5d25acd843f8eff5c571392a43582d3eced5bbdc4b3f0e81c551 checksum=28c2a729fabe57f84f50eb26f028734ee8977588acb81aeeb63a35d23ed650e3
do_build() { do_build() {
mkdir -p build mkdir -p build
@ -25,4 +25,5 @@ do_install() {
vman "${man}" vman "${man}"
done done
vinstall registries.conf 0644 etc/containers vinstall registries.conf 0644 etc/containers
vinstall "${FILESDIR}/policy.json" 0644 etc/containers
} }