Jon Boone pushed to branch issue-154-piglatin-translation-doesnt-work-anymore at cmucl / cmucl
Commits:
11ec47e8 by Jon Boone at 2023-06-07T22:33:48-04:00
make the additional command part of a single command line invocation
- - - - -
1 changed file:
- src/lisp/GNUmakefile
Changes:
=====================================
src/lisp/GNUmakefile
=====================================
@@ -106,7 +106,7 @@ LOCALE_DIRS = $(patsubst %, i18n/locale/%/LC_MESSAGES, $(LOCALES))
# FreeBSD, it moves the line to after the Language-Team line. This
# makes things messy. Hence, sort and diff.
translations:
- echo "making translations"
+ echo "making translations"; \
for pot in ../../src/i18n/locale/*.pot; do \
for po in $(LOCALE_DIRS); do \
d=`dirname $$pot`; \
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/11ec47e882e6c08e12a47a7…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/11ec47e882e6c08e12a47a7…
You're receiving this email because of your account on gitlab.common-lisp.net.
Jon Boone pushed to branch issue-154-piglatin-translation-doesnt-work-anymore at cmucl / cmucl
Commits:
cb69ee79 by Jon Boone at 2023-06-07T22:21:17-04:00
adds translations diagnostic ouput to GNUmakefile
- - - - -
1 changed file:
- src/lisp/GNUmakefile
Changes:
=====================================
src/lisp/GNUmakefile
=====================================
@@ -106,6 +106,7 @@ LOCALE_DIRS = $(patsubst %, i18n/locale/%/LC_MESSAGES, $(LOCALES))
# FreeBSD, it moves the line to after the Language-Team line. This
# makes things messy. Hence, sort and diff.
translations:
+ echo "making translations"
for pot in ../../src/i18n/locale/*.pot; do \
for po in $(LOCALE_DIRS); do \
d=`dirname $$pot`; \
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/cb69ee793b7eb1c1e0842b5…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/cb69ee793b7eb1c1e0842b5…
You're receiving this email because of your account on gitlab.common-lisp.net.
Jon Boone pushed to branch issue-154-piglatin-translation-doesnt-work-anymore at cmucl / cmucl
Commits:
c24b478b by Jon Boone at 2023-06-07T21:14:45-04:00
adding diagnostic message about POT
- - - - -
1 changed file:
- bin/build.sh
Changes:
=====================================
bin/build.sh
=====================================
@@ -246,6 +246,7 @@ if [ "${BUILD_POT}" = "yes" ]; then
fi
BUILD=3
+echo "MAKE_TARGET = ${MAKE_TARGET}"
buildit
# Asdf and friends are part of the base install, so we need to build
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/c24b478baec3bde7afc58e6…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/c24b478baec3bde7afc58e6…
You're receiving this email because of your account on gitlab.common-lisp.net.
Jon Boone pushed to branch issue-154-piglatin-translation-doesnt-work-anymore at cmucl / cmucl
Commits:
c2a36a08 by Jon Boone at 2023-06-07T21:08:55-04:00
revert to using clang, but leave the option to not use it
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
=====================================
.gitlab-ci.yml
=====================================
@@ -46,8 +46,8 @@ linux:build:
#- bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp
# Regular build using the cross-compiled result or snapshot
- ls -laR snapshot/lib/cmucl/lib/locale
- # - bin/build.sh $bootstrap -R -C "x86_linux_clang" -o snapshot/bin/lisp
- - bin/build.sh $bootstrap -R -C "x86_linux" -o snapshot/bin/lisp
+ - bin/build.sh $bootstrap -R -C "x86_linux_clang" -o snapshot/bin/lisp
+ # - bin/build.sh $bootstrap -R -C "x86_linux" -o snapshot/bin/lisp
- ls -laR linux-4/i18n/locale
- bin/make-dist.sh -I dist linux-4
- ls -laR dist/lib/cmucl/lib/locale
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/c2a36a0827e245984341dea…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/c2a36a0827e245984341dea…
You're receiving this email because of your account on gitlab.common-lisp.net.
Jon Boone pushed to branch issue-154-piglatin-translation-doesnt-work-anymore at cmucl / cmucl
Commits:
2e26de40 by Jon Boone at 2023-06-06T22:04:56-04:00
additional check for locale files in linux:install job snapshot
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
=====================================
.gitlab-ci.yml
=====================================
@@ -45,6 +45,7 @@ linux:build:
#- bin/create-target.sh xcross x86_linux_clang
#- bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp
# Regular build using the cross-compiled result or snapshot
+ - ls -laR snapshot/lib/cmucl/lib/locale
- bin/build.sh $bootstrap -R -C "x86_linux_clang" -o snapshot/bin/lisp
- ls -laR linux-4/i18n/locale
- bin/make-dist.sh -I dist linux-4
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/2e26de4020276d07178597b…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/2e26de4020276d07178597b…
You're receiving this email because of your account on gitlab.common-lisp.net.
Jon Boone pushed to branch issue-154-piglatin-translation-doesnt-work-anymore at cmucl / cmucl
Commits:
418dca5a by Jon Boone at 2023-06-06T21:54:38-04:00
add additional checks to the linux:build task
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
=====================================
.gitlab-ci.yml
=====================================
@@ -46,7 +46,9 @@ linux:build:
#- bin/cross-build-world.sh -crl -B boot-2020-04-1 xtarget xcross src/tools/cross-scripts/cross-x86-x86.lisp snapshot/bin/lisp
# Regular build using the cross-compiled result or snapshot
- bin/build.sh $bootstrap -R -C "x86_linux_clang" -o snapshot/bin/lisp
+ - ls -laR linux-4/i18n/locale
- bin/make-dist.sh -I dist linux-4
+ - ls -laR dist/lib/cmucl/lib/locale
linux:test:
stage: test
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/418dca5ac3937ad496e20c7…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/418dca5ac3937ad496e20c7…
You're receiving this email because of your account on gitlab.common-lisp.net.
Jon Boone pushed to branch issue-154-piglatin-translation-doesnt-work-anymore at cmucl / cmucl
Commits:
9ce6e5c4 by Jon Boone at 2023-06-06T21:35:40-04:00
add recursive listing of locale directories to test for files
- - - - -
1 changed file:
- .gitlab-ci.yml
Changes:
=====================================
.gitlab-ci.yml
=====================================
@@ -61,6 +61,7 @@ linux:test:
- job: linux:build
artifacts: true
script:
+ - ls -laR dist/lib/cmucl/lib/locale/
- bin/run-tests.sh -l dist/bin/lisp 2>&1 | tee test.log
linux:ansi-test:
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/9ce6e5c475401d2f9953eaa…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/9ce6e5c475401d2f9953eaa…
You're receiving this email because of your account on gitlab.common-lisp.net.