Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tikka
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
python
Tikka
Merge requests
!1
Add DuniterPy, Makefile fixes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add DuniterPy, Makefile fixes
fixes_duniterpy_makefile
into
main
Overview
0
Commits
2
Pipelines
0
Changes
2
Merged
Moul
requested to merge
fixes_duniterpy_makefile
into
main
3 years ago
Overview
0
Commits
2
Pipelines
0
Changes
2
Expand
Add DuniterPy v1.0.0rc1
Makefile
: Fix
locales
path. Run
yoyo
from Poetry virtualenv
0
0
Merge request reports
Compare
main
version 1
16413219
3 years ago
main (base)
and
latest version
latest version
3bffee51
2 commits,
3 years ago
version 1
16413219
2 commits,
3 years ago
2 files
+
14
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
Makefile
+
12
−
12
Options
.PHONY
:
format check mypy pylint isort insert-license gitlab-ci-linter i18n_
extract
i18n_build database database_rollback database_list pyinstaller
.PHONY
:
format check mypy pylint isort insert-license gitlab-ci-linter i18n_
update
i18n_build database database_rollback database_list pyinstaller
SHELL
:=
/bin/bash
@@ -29,25 +29,25 @@ gitlab-ci-linter:
check
:
format mypy pylint isort insert-license
i18n_update
:
find ./tikka
-type
f |
grep
.py
$$
| xargs pygettext
-v
--output-dir
=
./tikka/locale
-d
application
;
msgmerge ./tikka/locale/fr_FR/LC_MESSAGES/application.po tikka/
/
locale/application.pot
--update
msgmerge ./tikka/locale/en_US/LC_MESSAGES/application.po tikka/
/
locale/application.pot
--update
find ./tikka
-type
f |
grep
.py
$$
| xargs pygettext
-v
--output-dir
=
./tikka/locale
s
-d
application
;
msgmerge ./tikka/locale
s
/fr_FR/LC_MESSAGES/application.po tikka/locale
s
/application.pot
--update
msgmerge ./tikka/locale
s
/en_US/LC_MESSAGES/application.po tikka/locale
s
/application.pot
--update
i18n_build
:
msgfmt tikka/locale/fr_FR/LC_MESSAGES/application.po
--output-file
=
tikka/locale/fr_FR/LC_MESSAGES/application.mo
msgfmt tikka/locale/en_US/LC_MESSAGES/application.po
--output-file
=
tikka/locale/en_US/LC_MESSAGES/application.mo
msgfmt tikka/locale
s
/fr_FR/LC_MESSAGES/application.po
--output-file
=
tikka/locale
s
/fr_FR/LC_MESSAGES/application.mo
msgfmt tikka/locale
s
/en_US/LC_MESSAGES/application.po
--output-file
=
tikka/locale
s
/en_US/LC_MESSAGES/application.mo
database
:
yoyo apply
--batch
--no-config-file
--database
sqlite:///
${
HOME
}
/.config/tikka/g1.sqlite3 ./assets/migrations
yoyo apply
--batch
--no-config-file
--database
sqlite:///
${
HOME
}
/.config/tikka/g1-test.sqlite3 ./assets/migrations
poetry run
yoyo apply
--batch
--no-config-file
--database
sqlite:///
${
HOME
}
/.config/tikka/g1.sqlite3 ./assets/migrations
poetry run
yoyo apply
--batch
--no-config-file
--database
sqlite:///
${
HOME
}
/.config/tikka/g1-test.sqlite3 ./assets/migrations
database_rollback
:
yoyo rollback
--batch
--no-config-file
--database
sqlite:///
${
HOME
}
/.config/tikka/g1.sqlite3 ./assets/migrations
yoyo rollback
--batch
--no-config-file
--database
sqlite:///
${
HOME
}
/.config/tikka/g1-test.sqlite3 ./assets/migrations
poetry run
yoyo rollback
--batch
--no-config-file
--database
sqlite:///
${
HOME
}
/.config/tikka/g1.sqlite3 ./assets/migrations
poetry run
yoyo rollback
--batch
--no-config-file
--database
sqlite:///
${
HOME
}
/.config/tikka/g1-test.sqlite3 ./assets/migrations
database_list
:
yoyo list
--no-config-file
--database
sqlite:///
${
HOME
}
/.config/tikka/g1.sqlite3 ./assets/migrations
yoyo list
--no-config-file
--database
sqlite:///
${
HOME
}
/.config/tikka/g1-test.sqlite3 ./assets/migrations
poetry run
yoyo list
--no-config-file
--database
sqlite:///
${
HOME
}
/.config/tikka/g1.sqlite3 ./assets/migrations
poetry run
yoyo list
--no-config-file
--database
sqlite:///
${
HOME
}
/.config/tikka/g1-test.sqlite3 ./assets/migrations
pyinstaller
:
pyinstaller dist/tikka.spec
Loading