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

Commit df11b99

Browse files
committed
Added wordcloud_cli
1 parent 05544ec commit df11b99

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5418,6 +5418,17 @@
54185418
"version: \"?(?<currentValue>.*?)\"?\\n"
54195419
]
54205420
},
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+
},
54215432
{
54225433
"datasourceTemplate": "github-tags",
54235434
"depNameTemplate": "4U6U57/wsl-open",

tools/wordcloud/Dockerfile.template

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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

tools/wordcloud/manifest.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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

0 commit comments

Comments
 (0)