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 +47
-0
lines changed Expand file tree Collapse file tree 3 files changed +47
-0
lines changed Original file line number Diff line number Diff line change 5418
5418
" version: \" ?(?<currentValue>.*?)\" ?\\ n"
5419
5419
]
5420
5420
},
5421
+ {
5422
+ "datasourceTemplate" : " github-releases" ,
5423
+ "depNameTemplate" : " amueller/word_cloud" ,
5424
+ "extractVersionTemplate" : " loose" ,
5425
+ "fileMatch" : [
5426
+ " ^tools/wordcloud/manifest.yaml$"
5427
+ ],
5428
+ "matchStrings" : [
5429
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
5430
+ ]
5431
+ },
5421
5432
{
5422
5433
"datasourceTemplate" : " github-tags" ,
5423
5434
"depNameTemplate" : " 4U6U57/wsl-open" ,
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/python:${ref} AS python
6
+ FROM ghcr.io/nicholasdille/docker-setup/shiv:${ref} AS shiv
7
+
8
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
9
+ ARG name
10
+ ARG version
11
+ COPY --link --from=python / /
12
+ COPY --link --from=shiv / /
13
+ RUN <<EOF
14
+ shiv --output-file "${prefix}${target}/bin/wordcloud_cli" --console-script wordcloud_cli "wordcloud==${version}"
15
+ EOF
Original file line number Diff line number Diff line change
1
+ name : wordcloud
2
+ version : " 1.9.1.1"
3
+ check : " "
4
+ build_dependencies :
5
+ - python
6
+ - shiv
7
+ runtime_dependencies :
8
+ - python
9
+ platforms :
10
+ - linux/amd64
11
+ # - linux/arm64
12
+ tags :
13
+ - category/documentation
14
+ - lang/python
15
+ - type/cli
16
+ homepage : https://github.com/amueller/word_cloud
17
+ description : Little word cloud generator in Python
18
+ renovate :
19
+ datasource : github-releases
20
+ package : amueller/word_cloud
21
+ extractVersion : loose
You can’t perform that action at this time.
0 commit comments