Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit 725237d

Browse files
committed
Added containers-common #2581
1 parent 07f8fe3 commit 725237d

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

renovate.json

+11
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,17 @@
510510
"datasourceTemplate": "github-releases",
511511
"extractVersionTemplate": "^v(?<version>.+?)$"
512512
},
513+
{
514+
"fileMatch": [
515+
"^tools.yaml$"
516+
],
517+
"matchStrings": [
518+
"name: containers-common\\n\\s+version: \"?(?<currentValue>.*?)\"?\\n"
519+
],
520+
"depNameTemplate": "containers/common",
521+
"datasourceTemplate": "github-releases",
522+
"extractVersionTemplate": "^v(?<version>.+?)$"
523+
},
513524
{
514525
"fileMatch": [
515526
"^tools.yaml$"

tools.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -827,6 +827,37 @@ tools:
827827
systemctl daemon-reload
828828
fi
829829
830+
- name: containers-common
831+
version: 0.49.1
832+
needs:
833+
- go-md2man
834+
tags:
835+
- redhat
836+
download:
837+
- url: https://github.com/containers/common/raw/v${version}/docs/Containerfile.5.md
838+
type: file
839+
path: ${target}/share/man/man5/Containerfile.5.md
840+
- url: https://github.com/containers/common/raw/v${version}/docs/containerignore.5.md
841+
type: file
842+
path: ${target}/share/man/man5/containerignore.5.md
843+
- url: https://github.com/containers/common/raw/v${version}/docs/containers-mounts.conf.5.md
844+
type: file
845+
path: ${target}/share/man/man5/containers-mounts.conf.5.md
846+
- url: https://github.com/containers/common/raw/v${version}/docs/containers.conf.5.md
847+
type: file
848+
path: ${target}/share/man/man5/containers.conf.5.md
849+
post_install: |
850+
echo "Create manpages"
851+
go-md2man -in "${target}/share/man/man5/Containerfile.5.md" -out "${target}/share/man/man5/Containerfile.5"
852+
go-md2man -in "${target}/share/man/man5/containerignore.5.md" -out "${target}/share/man/man5/containerignore.5"
853+
go-md2man -in "${target}/share/man/man5/containers-mounts.conf.5.md" -out "${target}/share/man/man5/containers-mounts.conf.5"
854+
go-md2man -in "${target}/share/man/man5/containers.conf.5.md" -out "${target}/share/man/man5/containers.conf.5"
855+
rm \
856+
"${target}/share/man/man5/Containerfile.5.md" \
857+
"${target}/share/man/man5/containerignore.5.md" \
858+
"${target}/share/man/man5/containers-mounts.conf.5.md" \
859+
"${target}/share/man/man5/containers.conf.5.md"
860+
830861
- name: containerssh
831862
version: 0.4.1
832863
tags:
@@ -3887,6 +3918,7 @@ tools:
38873918
- cni
38883919
- fuse-overlayfs
38893920
- shortnames
3921+
- containers-common
38903922
tags:
38913923
- runtime
38923924
- redhat

0 commit comments

Comments
 (0)