This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +40
-0
lines changed Expand file tree Collapse file tree 3 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 3484
3484
"datasourceTemplate" : " github-releases" ,
3485
3485
"extractVersionTemplate" : " ^v(?<version>.+?)$"
3486
3486
},
3487
+ {
3488
+ "fileMatch" : [
3489
+ " ^tools/ncdu/manifest.yaml$"
3490
+ ],
3491
+ "matchStrings" : [
3492
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
3493
+ ],
3494
+ "depNameTemplate" : " ncdu" ,
3495
+ "datasourceTemplate" : " git-tags" ,
3496
+ "packageNameTemplate" : " git://g.blicky.net/ncdu.git" ,
3497
+ "extractVersionTemplate" : " ^v(?<version>\\\\ d+\\ .\\\\ d+\\ .\\\\ d+?)$"
3498
+ },
3487
3499
{
3488
3500
"fileMatch" : [
3489
3501
" ^tools/neo4j/manifest.yaml$"
Original file line number Diff line number Diff line change
1
+ #syntax=docker/dockerfile:1.5.2
2
+
3
+ ARG ref=main
4
+
5
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
6
+ ARG name
7
+ ARG version
8
+ RUN <<EOF
9
+ curl --silent --location --fail "https://dev.yorhel.nl/download/ncdu-${version}-linux-${arch}.tar.gz" \
10
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner
11
+ EOF
Original file line number Diff line number Diff line change
1
+ name : ncdu
2
+ version : " 2.2.1"
3
+ check : " "
4
+ platforms :
5
+ - linux/amd64
6
+ - linux/arm64
7
+ tags :
8
+ - category/operations
9
+ - lang/zig
10
+ - type/cli
11
+ homepage : https://dev.yorhel.nl/ncdu
12
+ description : Disk usage analyzer with an ncurses interface
13
+ renovate :
14
+ datasource : git-tags
15
+ package : ncdu
16
+ url : git://g.blicky.net/ncdu.git
17
+ extractVersion : ^v(?<version>\\d+\.\\d+\.\\d+?)$
You can’t perform that action at this time.
0 commit comments