tools: automatically add github metadata (stargazers_count/updated_at) to github software entries missing these (make process)

- https://docs.github.com/en/actions/security-guides/automatic-token-authentication
- tools: makefile: install python3-wheel before pip packages installation so that bdist_wheel does not fail
This commit is contained in:
nodiscc 2022-06-05 19:36:25 +02:00
parent cd5930fc2a
commit 82a27ce2b4
No known key found for this signature in database
GPG key ID: 067FC4266A4B6909

View file

@ -4,6 +4,7 @@ SHELL := /bin/bash
install:
python3 -m venv .venv
source .venv/bin/activate && \
pip3 install wheel && \
pip3 install --force git+https://github.com/nodiscc/hecat.git@hecat-process
.PHONY: import # import data from original list at https://github.com/awesome-selfhosted/awesome-selfhosted
@ -19,7 +20,7 @@ import: install
.PHONY: process # apply automatic processing (gather github metadata)
process: install
source .venv/bin/activate && \
hecat process --processors github_metadata --source-directory ./
hecat process --processors github_metadata --source-directory ./ --options=gh-metadata-only-missing
.PHONY: build # build markdown singlepage document from yaml data
build: install