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
Commits
8fa382c0
Commit
8fa382c0
authored
3 years ago
by
Vincent Texier
Browse files
Options
Downloads
Plain Diff
Merge branch 'fixes_duniterpy_makefile' into 'main'
Add DuniterPy, Makefile fixes See merge request
!1
parents
34e60d17
3bffee51
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!1
Add DuniterPy, Makefile fixes
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+12
-12
12 additions, 12 deletions
Makefile
pyproject.toml
+2
-1
2 additions, 1 deletion
pyproject.toml
with
14 additions
and
13 deletions
Makefile
+
12
−
12
View file @
8fa382c0
.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
...
...
This diff is collapsed.
Click to expand it.
pyproject.toml
+
2
−
1
View file @
8fa382c0
...
...
@@ -8,7 +8,8 @@ authors = ["Vincent Texier <vit@free.fr>"]
tikka
=
"tikka.__main__:main"
[tool.poetry.dependencies]
python
=
"^3.6.1"
python
=
"^3.6.8"
duniterpy
=
"1.0.0rc1"
mnemonic
=
"^0.19"
markdown
=
"^3.3.3"
tkinterhtml
=
"^0.7"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment