aboutsummaryrefslogtreecommitdiff
path: root/aux/workflow/assert-readme.sh (follow)
Commit message (Collapse)AuthorAgeFilesLines
* aux/workflow/repocheck.sh: Run dev-check, adapt scripts that depend on Git repoEuAndreh2021-08-201-0/+4
|
* Revert back to .tar.gzEuAndreh2021-08-141-1/+1
| | | | git grep -l tar.xz | xargs -I% sh -c 'sed "s/tar\.xz/tar.gz/g" % | sponge %'
* aux/: Stick to 80 columnsEuAndreh2021-07-271-2/+5
|
* Use tar.xz over tar.gzEuAndreh2021-07-231-1/+1
| | | | git grep -lF tar.gz | xargs sed -i 's/tar\.gz/tar.xz/g'
* aux/lib.sh: Add mkstemp and mkdtemp, and copy uuid overEuAndreh2021-07-151-2/+4
| | | | | | | | | | | | | | | The tests were relying on the unspecified and non-standartized behaviour of "mktemp". Now they use "mkstemp()", a shim sh function to provide the expected behaviour, and an accompanying "mkdtemp()" function is also defined. To further decouple from specific implementations and OS-behaviours and quirks, a aux/lib.sh file containing both those functions was added. Its purpose is to also allow code under aux/ to not depend on specific behaviour. "mkdtemp()" had to be replicated in aux/ci/ci-build.sh, since it runs outside the repository.
* Add trailing /en/ to all default URLs, and the equivalent for translationsEuAndreh2021-07-151-2/+2
|
* README.md: Remove "released in" text from the releases list, adjust in ↵EuAndreh2021-07-131-1/+1
| | | | aux/workflow/assert-readme.sh
* aux/workflow/assert-readme.sh: Use getopts for argumentsEuAndreh2021-06-261-4/+24
|
* README.md, aux/workflow/assert-readme.sh: Link to commit in the releases ↵EuAndreh2021-06-231-1/+1
| | | | section too
* aux/workflow/manpages.sh: Refactor how manpages and translations are madeEuAndreh2021-06-231-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I didn't like the previous version of aux/workflow/manpages.sh mainly for 2 reasons: 1. its CLI was terrible, ugly and fragile; 2. it mixed handling manpages and handling *translations*. The first step was to split the translations part to a different file: aux/workflow/l10n.sh. Now it has the base logic for running po4a, and can apply it to manpages. It is useful for updating translated files in other scenarios, such as catgets() message catalogs, markdown files, etc. After I used the venerable getopts to handle the command line arguments, and give aux/workflow/manpages.sh a saner interface. I disliked the fact that aux/workflow/manpages.sh still is being used for the "install" and "uninstall" targets. Before this file, the canonical workflow of "make && make install/uninstall" was 100% embedded within the Makefile itself. But now the Makefile calls to an external script for that. This isn't a real cost, other than how obvious the behaviour is for someone looking at the Makefile for the first time. I still chose to do it anyway, because there was already too many things in the Makefile itself, and it was getting worse with time. I made sure to never cross the line of relying on an external tool for the canonical "make && make install/uninstall", and even for "make check". Those all work without requiring any extra tool outside what POSIX defines, such as "sed", "awk", etc. Despite the cost of adding this detour from the liner Makefile flow, I found it to be worth it to call to the external script, as this script can now also be shared across projects, and the customized Makefile be made simpler. In other to remove the "-- $(do_subst)" horrendous hack, I chose to use an inference rule for ".in" files, and remove the "$(do_subst)" variable altogether. Now all the files that need to go through sed should end in ".in", and the Makefile will take care of producing it. The upside is that this model is much better integrater into make itself. Addresses #task-9ee2bbc8-295f-52b7-4104-483869bad017.
* aux/workflow/assert-readme.sh: No need to create the public/ directoryEuAndreh2021-06-231-2/+0
|
* s/Home page/Homepage/EuAndreh2021-06-161-1/+1
|
* aux/: UpdateEuAndreh2021-06-141-5/+28
|
* README.md: Point to copy of license in the source code repository itselfEuAndreh2021-06-131-1/+1
|
* aux/: Update filesEuAndreh2021-06-111-0/+59