aboutsummaryrefslogtreecommitdiff
path: root/doc/git-permalink.eo.1.in (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-06-25Release v0.2.2v0.2.2EuAndreh3-1/+9
2021-06-25Makefile: Fix installation path of manpagesEuAndreh1-2/+2
2021-06-25Makefile: Make "spellcheck" depend on "public"EuAndreh1-3/+3
2021-06-25Release v0.2.1v0.2.1EuAndreh4-4/+15
2021-06-25aux/guix/manifest.scm: Use hunspell insted of hunspell-iconvEuAndreh1-1/+1
2021-06-25TODOs.md: Mark #task-4ae91595-6e6d-be17-d882-754a478da878 as DONEEuAndreh1-1/+46
2021-06-25git mv po/ doc/po/EuAndreh5-4/+4
2021-06-25aux/assert-shellcheck.sh: Remove "set -x" optionEuAndreh1-1/+1
2021-06-25aux/workflow/assert-spelling.sh: Add; init dictionaries; fix spellingEuAndreh18-307/+535
- aux/workflow/l10n.sh: fix handling of $@; - Makefile: remove circular dependency between dev-check and public by adding the "l10n-gen" target.
2021-06-23aux/workflow/manpages.sh: Add missing suffix to HTML filesEuAndreh1-1/+1
2021-06-23README.md, aux/workflow/assert-readme.sh: Link to commit in the releases ↵EuAndreh2-3/+3
section too
2021-06-23TODOs.md: Fix code block escapingEuAndreh1-1/+1
2021-06-23aux/workflow/{l10n,manpages}.sh: Fix ShellCheck offensesEuAndreh2-2/+2
2021-06-23Fix tests: git grep -l 'sh git-permalink' | xargs sed -i 's|sh ↵EuAndreh1-14/+14
git-permalink|sh src/git-permalink.sh|g'
2021-06-23TODOs.md: Add #decision-6c2801da-bcb9-dd38-69bf-270a6f9b5acdEuAndreh1-0/+37
2021-06-23TODOs.md: Mark #task-9ee2bbc8-295f-52b7-4104-483869bad017 as DONEEuAndreh1-1/+5
2021-06-23aux/workflow/manpages.sh: Refactor how manpages and translations are madeEuAndreh10-71/+135
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.
2021-06-23git mv doc/*.po po/EuAndreh5-4/+4
2021-06-23aux/workflow/public.sh: Spell out .{svg,png} files (ShellCheck offense)EuAndreh1-1/+1
2021-06-23TODOs.md: Mark #task-f09dedb7-1b25-0b5e-2520-910a9aa32562 as DONEEuAndreh1-1/+5
2021-06-23aux/: Explicitly pass "public/" as a parameter to scriptsEuAndreh6-19/+21
2021-06-23aux/workflow/assert-readme.sh: No need to create the public/ directoryEuAndreh1-2/+0
2021-06-23git grep -l PACKAGE aux/ | xargs sed -i 's/PACKAGE/PROJECT/g'EuAndreh3-9/+9
2021-06-23aux/guix/with-container.sh: Remove -x sh optionEuAndreh1-1/+1
2021-06-23aux/workflow/public.sh: Selectively copy favicon filesEuAndreh1-1/+1
2021-06-22TODOs.md: Add #task-f09dedb7-1b25-0b5e-2520-910a9aa32562EuAndreh1-0/+3
2021-06-22doc/: s/SYNOPSYS/SYNOPSIS/EuAndreh4-10/+10
2021-06-22TODOs.md: Mark #task-9ee2bbc8-295f-52b7-4104-483869bad017 as TODO againEuAndreh1-1/+5
2021-06-22tests/remotes.sh: Supress output of git configEuAndreh1-2/+2
2021-06-22tests/cli-opts.sh: Stop testing behaviour of "locale" commandEuAndreh1-9/+0
2021-06-22tests/remotes.sh: Conditionally set user.{email,name} to work on new env like CIEuAndreh1-1/+11
2021-06-22aux/tests-lib.sh: Add uuid() function, use it on testsEuAndreh3-3/+11
2021-06-22src/git-permalink.sh.in, tests/remotes.sh: Address ShellCheck issuesEuAndreh2-12/+12
2021-06-22CHANGELOG.md: Mention integration testsEuAndreh1-0/+4
2021-06-22TODOs.md: Mark #task-bebbe847-f552-be4b-b886-70a621162b69 as DONEEuAndreh1-1/+5
2021-06-22src/git-permalink.sh.in: Fix #task-bebbe847-f552-be4b-b886-70a621162b69EuAndreh2-18/+16
The issue wan't with getopts but with my usage of it (well, now that's obvious that the problem wouldn't be in the implementation, but on how I was using). The problem was on: 1) my confusion on when and where to "shift"; 2) make sure to look for the "--help" and "--version" long flags before getopts, because it doesn't know about long flags. Those fixed, the tests are now working again.
2021-06-22TODOs.md: Mark #task-ada9b39a-cc42-97b2-bd02-ad9c0adc475c as DONEEuAndreh1-1/+5
2021-06-22tests/remotes.sh: AddEuAndreh3-0/+179
2021-06-22TODOs.md: Mark #task-755d8aa8-d39e-f8ce-d4c8-a8649338fffc as DONEEuAndreh1-1/+5
2021-06-22tests/install-uninstall.sh: AddEuAndreh2-0/+50
2021-06-22src/git-permalink.sh.in: Remove empty lines across translated string variablesEuAndreh1-2/+0
2021-06-22TODOs.md: Add #task-755d8aa8-d39e-f8ce-d4c8-a8649338fffcEuAndreh1-0/+3
2021-06-22tests/cli-opts.sh: Use portable "sh git-permalink" over "./git-permalink"EuAndreh1-15/+15
2021-06-22mv src/git-permalink.sh src/git-permalink.sh.inEuAndreh2-1/+1
2021-06-22CHANGELOG.md: Mention "getopts"EuAndreh1-0/+11
2021-06-22TODOs.md: Mark #task-ada9b39a-cc42-97b2-bd02-ad9c0adc475c as DONEEuAndreh1-1/+5
2021-06-22Add small example of using -- on manpageEuAndreh8-62/+137
2021-06-22TODOs.md: Mark #task-cded56f2-c939-3c69-c818-0fb62d62cfd8 as DONEEuAndreh1-1/+5
2021-06-22aux/tests-lib.sh: Use colours on test outputEuAndreh1-6/+17
2021-06-22tests/cli-opts.sh: Add test_langsEuAndreh1-0/+70