This repository was archived by the owner on Oct 3, 2023. It is now read-only.
Commit 725237d 1 parent 07f8fe3 commit 725237d Copy full SHA for 725237d
File tree 2 files changed +43
-0
lines changed
2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 510
510
"datasourceTemplate" : " github-releases" ,
511
511
"extractVersionTemplate" : " ^v(?<version>.+?)$"
512
512
},
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
+ },
513
524
{
514
525
"fileMatch" : [
515
526
" ^tools.yaml$"
Original file line number Diff line number Diff line change @@ -827,6 +827,37 @@ tools:
827
827
systemctl daemon-reload
828
828
fi
829
829
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
+
830
861
- name : containerssh
831
862
version : 0.4.1
832
863
tags :
@@ -3887,6 +3918,7 @@ tools:
3887
3918
- cni
3888
3919
- fuse-overlayfs
3889
3920
- shortnames
3921
+ - containers-common
3890
3922
tags :
3891
3923
- runtime
3892
3924
- redhat
You can’t perform that action at this time.
0 commit comments