Commit graph

22 commits

Author SHA1 Message Date
xyny
be6e4ba5bd
feat: add typespec schemas for modules (#233)
* feat: add typespec for bling and akmods for testing

* chore: temporarily change module source to dev branch

* feat: add missing module typespecs from blue-build/schema

* feat: add schemas for default-flatpaks module

* chore: annotate some parameters as optional

* fix: typo in default-flatpaks schema

* feat: add schema for files module

* feat: add script module schema

* feat: add signing module schema

* docs: add module.yml docs etc.

* fix(default-flatpaks): don't capitalize string in typespec

* feat: add schemas for gnome-extensions

* fix(files): properly declare string: string record type

* chore: add tsp for gschema-overrides

* chore: tsp for systemd module

* chore: add link to systemd tsp to module.yml

* chore: add tsp for yafti module

* feat: add docstrings for files module

* feat: add tsp for chezmoi module

* feat: docstrings for akmods tsp

* feat: docstrings for bling tsp

* feat: docstrings for default flatpaks tsp

* fix: link to files module docs page in files module tsp

* feat: docstrings for fonts module tsp

* feat: add docstrings for gnome extensions tsp

* feat: docstrings for gschema overrides tsp

* feat: docstrings for rpm ostree tsp

* feat: docstrings for script tsp

* feat: docstrings for signing module

* feat: docstrings for systemd tsp

* feat: docstrings for yafti module

* fix: typo in files tsp

* feat: typespec for brew module

* chore: update rpm ostree tsp for keys: prop

* fix: use typespec to declare default values

* fix: errors from previous commit

* docs: add typespec instructions

* docs: chore: add typespec docs link for docs syntax

* chore: switch to semicolon for ending property definitions

* docs: fix: typo inlude -> include

* feat: tsp for justfiles module

* chore: change links to reference main branch

---------

Co-authored-by: fiftydinar <65243233+fiftydinar@users.noreply.github.com>
2024-07-09 16:25:31 +00:00
xyny
c6f522e786
chore: add back inline docs for gfonts download (#187)
Co-authored-by: fiftydinar <65243233+fiftydinar@users.noreply.github.com>
2024-04-02 16:36:56 +00:00
Joe Ipson
68f9579cec
Last one I swear 2024-04-02 09:04:46 -06:00
xynydev
6ec531eeab chore: add back inline docs for gfonts download 2024-04-02 17:42:22 +03:00
Joe Ipson
0d3d2ebebe
Update google-fonts.sh 2024-04-02 07:36:17 -06:00
Joe Ipson
f25b712ff8
Add in some safety for when there is unexpected issues with jq 2024-04-02 07:27:10 -06:00
Joe Ipson
a656019893
fix: Trim Google Font names so that they download properly (#184) 2024-04-02 12:30:44 +00:00
xynydev
845aaeee00 fix: check font name nonempty nerd fonts? 2024-03-29 14:31:46 +02:00
xynydev
54617a3d01 fix: remove spaces from nerd fonts? 2024-03-29 13:40:45 +02:00
xynydev
3de87f3086 fix: make /tmp/fonts directory before attempting use 2024-03-29 13:22:22 +02:00
xynydev
df5aff1e01 chore: remove annoying "..." from logs 2024-03-29 13:20:46 +02:00
xynydev
ed7a6b788b fix: MODULE_DIRECTORY: unbound variable 2024-03-29 13:10:51 +02:00
xynydev
be2bcc530e refactor(fonts): follow code guidelines better, document code better, fix google fonts 2024-03-29 12:58:58 +02:00
xyny
52f6bdbfd2
refactor: migration PR 2024-02-25 16:48:55 +00:00
fiftydinar
2157b7eb5e
fix(fonts): Module failing with legacy templates (#141)
Issue described here:
https://github.com/blue-build/github-action/issues/16#issuecomment-1961862342
2024-02-24 18:03:10 +00:00
xynydev
d0110160ba chore: change the rest of readme urls in module.ymls 2024-02-21 17:38:01 +02:00
xynydev
03ac42e16f fix: switch urls to fetch main branch in module.ymls 2024-02-04 18:18:35 +02:00
xyny
5e455a1477
refactor: start using module.yml for module metadata (#116)
* feat: add initial module.yml for rpm-ostree

* chore: add shortdesc to module.yml

* feat: add missing module.ymls

* feat: add website rebuild action for module reference updates

* chore: remove old readme in modules dir

* refactor: switch to a hybrid module.yml + README arrangement

* chore: switch docs to use starlight aside syntax
2024-02-04 16:05:22 +00:00
Nick Saika
17bacbe3da
fix: Fix flag ordering in set calls in scripts (#99)
The README for scripts has an incorrect use of the `set`. Where it says
to use:

	set -oue pipefail

it should be:

	set -euo pipefail

since `pipefail` is an option consumed by `set -o`.

More information: https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
2024-01-16 06:12:08 +00:00
Lucas Ribeiro
835222f1db
fix: not specifying a nerd-font makes the module fail. (#63) 2023-10-13 15:18:15 +00:00
xyny
4e79916835
docs: enhacements to module documentation (#54)
* docs: chore: rn ":" from "Example configuration"

* docs: correct title casing for fonts module title

* docs: document OS_VERSION in example,...
non-copr example for rpmrepos

* docs: remove bling fonts option from bling example

* docs: start yafti README the same way as others
"The yafti module..."
2023-10-01 08:41:01 -07:00
Lucas Ribeiro
53507920aa
feat: fonts module (#52)
* feat: nerd-fonts modules

* feat: nerd-fonts modules

* feat: fonts module

* fix: fonts module readme

* chore: fonts module readme

* chore: fonts module

* chore: fonts module

* Update nerd-fonts.sh

* Update google-fonts.sh

* chore: scripts

* docs: unify font module grammar with other modules

fixes some misc grammar mistakes and makes documentation more inline with that of other modules

* refactor: move download.sh to root directory
this removes the need of the font source scripts
to have an environment variable with path to the ./scripts directory
making them more portable

* fix: get correct download.sh path
(relative to currently running script)

* chore: rm loop making .sh in scripts/ executable
this is not needed, as download.sh was moved and is called with bash

---------

Co-authored-by: xyny <60004820+xynydev@users.noreply.github.com>
2023-10-01 13:14:54 +00:00