From 82a27ce2b4927ea573d85e425b27d19bdd74eda5 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Sun, 5 Jun 2022 19:36:25 +0200 Subject: [PATCH] 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 --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5a74be6591..830d12b66b 100644 --- a/Makefile +++ b/Makefile @@ -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