aboutsummaryrefslogtreecommitdiff
path: root/Makefile (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-02-19Extract aux/workflow/manpages2html.sh from doc/manpages.shHEADmainEuAndreh1-1/+1
2022-01-20Add diacritic and spaces to mk{s,d}temp paths to enforce that everything ↵EuAndreh1-14/+13
works with it
2022-01-18Makefile: Run ShellCheck in "dev-check" targetEuAndreh1-0/+1
2022-01-18Makefile: Enforce no missing translations in repocheck.sh callEuAndreh1-1/+2
2022-01-16Release v0.3.1v0.3.1EuAndreh1-2/+2
2022-01-15Makefile: Increase expected instealled files countEuAndreh1-1/+1
2022-01-15Makefile: Remove dependency on makefile.svgEuAndreh1-1/+1
2022-01-15Translate and ship strings in src/locale/*.txtEuAndreh1-12/+25
2022-01-13Makefile: Remove makefile.svgEuAndreh1-4/+0
2021-10-03po/extract-strings.sh: Use dedicated file for extracting stringsEuAndreh1-1/+1
2021-10-02Use po4a for translating src/locale/en.shEuAndreh1-1/+1
2021-10-02Makefile: Generate src/locale/en.sh for translationEuAndreh1-1/+5
2021-09-29Makefile: Also install and uninstall en.sh translationsEuAndreh1-9/+11
2021-09-20Makefile: Remove load-locale-messages.sh in "uninstall" targetEuAndreh1-0/+1
2021-09-20Makefile: Include translation files in repocheck.sh countEuAndreh1-1/+1
2021-09-20Adapt installation to new i18n.EuAndreh1-3/+17
Use the locale files over the locale variables. Adapt the "install" and "uninstall" targets to it, and remove the locale test.
2021-09-14Rework how translation is doneEuAndreh1-9/+21
Instead of variables on the code itself, each language gets its own file.
2021-09-13Makefile: Remove quotes around $(DESTDIR) and $(PREFIX)EuAndreh1-6/+6
This is because the default paths don't need quotes, and if the user provides a path with spaces, they can provide the quotes.
2021-08-28Makefile: Put "install"/"uninstall" at the endEuAndreh1-4/+4
2021-08-28Makefile: Use empty line break to separate sectionsEuAndreh1-2/+2
2021-08-28Makefile: Line break to keep 80 columnsEuAndreh1-1/+2
2021-08-28aux/workflow/dist.sh: Run "make clean public dev-check" instead of just two ↵EuAndreh1-2/+2
assert files before tagging and publishing
2021-08-24Makefile: Use single quotes around macro expansions for paths and namesEuAndreh1-13/+13
2021-08-23public/makefile.svg: Start generating it with makefile2graph and graphvizEuAndreh1-1/+5
2021-08-19aux/workflow/repocheck.sh: Add, supersedes aux/workflow/installcheck.shEuAndreh1-9/+1
Implements - #task-079946ed-7e58-3051-78d6-71ba12342aba - #task-4a7e02bd-ab82-c628-fa1c-02749c178936 - #task-db34da8d-bf61-43ae-b8f0-f2299834a937 - #task-a0644009-70d7-56ff-c595-ea39fe24dc2b
2021-08-06mv aux/workflow/manpages.sh doc/manpages.shEuAndreh1-3/+3
2021-07-30Makefile: Keep executable permission of .in suffixed filesEuAndreh1-1/+1
2021-07-30Makefile: Make separation between canonical and personal targets clearEuAndreh1-13/+18
2021-07-26Makefile: Stick to 80 columnsEuAndreh1-8/+11
2021-07-23Makefile: Use $(PREFIX) directly over the $(MANPREFIX) variableEuAndreh1-3/+2
2021-07-16Makefile: Stick to 80 columns limitEuAndreh1-4/+8
2021-07-16Makefile: Remove redundant markdown dependencies from "public"EuAndreh1-1/+1
2021-07-16Release v0.2.3v0.2.3EuAndreh1-2/+2
2021-07-15aux/lib.sh: Add mkstemp and mkdtemp, and copy uuid overEuAndreh1-1/+1
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.
2021-07-15aux/workflow/l10n.sh: Support "-L CONTRIBLANGS" optionEuAndreh1-5/+10
Adjust Makfile to include it and give it both to aux/workflow/l10n.sh and to aux/workflow/public.sh
2021-07-15Makefile: Remove TODOs.md as a dependency for "l10n-gen" targetEuAndreh1-1/+1
2021-07-15aux/workflow/assert-manpages.sh: Get input languages and en files as argumentsEuAndreh1-1/+1
2021-07-15tests/install-uninstall.sh: Remove in favor of aux/workflow/installcheck.shEuAndreh1-1/+0
2021-07-14Makefile: Delete .mo and test files in "clean" targetEuAndreh1-1/+2
2021-07-13Makefile: Add clear dependencies to "l10n-gen" and "public" targetsEuAndreh1-2/+2
2021-07-07aux/workflow/installcheck.sh: Add, call it from MakefileEuAndreh1-0/+7
Implements #task-0b034315-cbd2-6fd6-fd32-9e00a12b7594.
2021-07-07Put pofiles under po/, use one folder for each translated file.EuAndreh1-1/+1
This is an improvement over 67f7c956239a7bc811a1d655d389666048e45fc3, and a final step for #task-7c5cd2aa-6d92-0423-bfa7-81f2e8436586. Now instead of trying to convince po4a and mdpo to work together, each tools gets it own folder and a pofile for each language. This means that if I want to translate files FOO.md and a-dir/BAR.txt to pt and fr, the directory structure of po/ will be: po/ FOO.md/ pt.po fr.po a-dir/ BAR.txt/ pt.po fr.po The po/ folder mirrors the directory structure of the input files, also nesting down directories. This way mdpo can do extration and update on its own way, and po4a can do extraction and update on its on way. The downside is that some translations will be duplicated, because they can appear on more than one file.
2021-07-06Translate CHANGELOG.md adn README.mdEuAndreh1-3/+5
Partially implements #task-7c5cd2aa-6d92-0423-bfa7-81f2e8436586. As mentioned in the task, instead of making "README.md" as symlink to "README.en.md", "README.md" is kept as it is, as the translated file doesn't need to live in the repository. The same goes for the "CHANGELOG.md" file.
2021-06-26Makefile: Don't use $(NAME) for the file nameEuAndreh1-1/+1
2021-06-26aux/workflow/public.sh: Use getopts for argumentsEuAndreh1-1/+1
2021-06-26aux/workflow/dist.sh: Use getopts for argumentsEuAndreh1-1/+1
2021-06-26aux/workflow/assert-manpages.sh: Use getopts for argumentsEuAndreh1-1/+1
2021-06-26aux/workflow/assert-readme.sh: Use getopts for argumentsEuAndreh1-1/+1
2021-06-26aux/workflow/assert-changelog.sh: Use getopts for arugmentsEuAndreh1-1/+1
2021-06-26aux/workflow/assert-spelling.sh: Get files as arguments instead of assuming ↵EuAndreh1-1/+1
they're under public/