From 44995be7c2cc15c5c0e825abec1957b1f2e23051 Mon Sep 17 00:00:00 2001 From: mef Date: Wed, 22 Dec 2021 22:33:30 +0000 Subject: [PATCH] (devel/py-trytond) Updated 4.2.2 to 6.2.2 --- devel/py-trytond/DESCR | 5 +- devel/py-trytond/Makefile | 81 ++----- devel/py-trytond/Makefile.common | 36 +-- devel/py-trytond/PLIST | 381 ++++++++++++++++++++++++++----- devel/py-trytond/distinfo | 9 +- 5 files changed, 363 insertions(+), 149 deletions(-) diff --git a/devel/py-trytond/DESCR b/devel/py-trytond/DESCR index a7b9c1aa5bf0..fa113d190b2d 100644 --- a/devel/py-trytond/DESCR +++ b/devel/py-trytond/DESCR @@ -1,4 +1,3 @@ -The server of the Tryton application platform, a three-tiers high-level general -purpose application platform written in Python and uses PostgreSQL as main -database engine. It is the core base of an Open Source ERP. It provides +The server of Tryton. Tryton is business software, ideal for companies of +any size, easy to use, complete and 100% Open Source. It provides modularity, scalability and security. diff --git a/devel/py-trytond/Makefile b/devel/py-trytond/Makefile index 2ce4933af896..c6582d5f0651 100644 --- a/devel/py-trytond/Makefile +++ b/devel/py-trytond/Makefile @@ -1,77 +1,28 @@ -# $NetBSD: Makefile,v 1.21 2021/12/16 14:48:11 wiz Exp $ +# $NetBSD: Makefile,v 1.22 2021/12/22 22:33:30 mef Exp $ TRYTON_MODULE_NAME= trytond .include "../../devel/py-trytond/Makefile.common" -CATEGORIES= devel python +CATEGORIES= devel python MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://www.tryton.org/ -COMMENT= Server of the Tryton application platform +COMMENT= Tryton server LICENSE= gnu-gpl-v3 -DEPENDS+= ${PYPKGPREFIX}-dateutil-[0-9]*:../../time/py-dateutil -DEPENDS+= ${PYPKGPREFIX}-python-sql>=0.4:../../databases/py-python-sql -DEPENDS+= ${PYPKGPREFIX}-polib-[0-9]*:../../devel/py-polib -DEPENDS+= ${PYPKGPREFIX}-wrapt-[0-9]*:../../devel/py-wrapt -DEPENDS+= ${PYPKGPREFIX}-bcrypt-[0-9]*:../../security/py-bcrypt -DEPENDS+= ${PYPKGPREFIX}-relatorio>=0.2.0:../../textproc/py-relatorio -DEPENDS+= ${PYPKGPREFIX}-lxml>=2.0:../../textproc/py-lxml -DEPENDS+= ${PYPKGPREFIX}-genshi-[0-9]*:../../www/py-genshi -DEPENDS+= ${PYPKGPREFIX}-werkzeug-[0-9]*:../../www/py-werkzeug +DEPENDS+= # TODO: lxml>=2.0 +DEPENDS+= # TODO: relatorio[fodt]>=0.7.0 +DEPENDS+= # TODO: Genshi>=0 +DEPENDS+= # TODO: python-dateutil>=0 +DEPENDS+= # TODO: polib>=0 +DEPENDS+= # TODO: python-sql>=0.5 +DEPENDS+= # TODO: werkzeug>=0 +DEPENDS+= # TODO: wrapt>=0 +DEPENDS+= # TODO: passlib>=1.7.0 +TEST_DEPENDS+= # TODO: pillow>=0 -USE_LANGUAGES= # none - -REPLACE_PYTHON+= trytond/tests/run-tests.py trytond/tests/test_access.py -REPLACE_PYTHON+= trytond/tests/test_cache.py trytond/tests/test_copy.py -REPLACE_PYTHON+= trytond/tests/test_exportdata.py -REPLACE_PYTHON+= trytond/tests/test_fields.py -REPLACE_PYTHON+= trytond/tests/test_importdata.py -REPLACE_PYTHON+= trytond/tests/test_mixins.py -REPLACE_PYTHON+= trytond/tests/test_modelsingleton.py -REPLACE_PYTHON+= trytond/tests/test_modelsql.py -REPLACE_PYTHON+= trytond/tests/test_mptt.py trytond/tests/test_pyson.py -REPLACE_PYTHON+= trytond/tests/test_sequence.py -REPLACE_PYTHON+= trytond/tests/test_tools.py -REPLACE_PYTHON+= trytond/tests/test_transaction.py -REPLACE_PYTHON+= trytond/tests/test_trigger.py -REPLACE_PYTHON+= trytond/tests/test_tryton.py - -PY_PATCHPLIST= yes -PLIST_SUBST+= PYPKGPREFIX=${PYPKGPREFIX} - -.include "options.mk" - -OPSYSVARS+= DEPENDS -DEPENDS.Darwin+= ${PYPKGPREFIX}-py2app-[0-9]*:../../devel/py-py2app - -RCD_SCRIPTS= trytond -CONFDIR= ${PKG_SYSCONFDIR}/${PKGBASE} -EGDIR= share/examples/${PKGBASE} -INSTALLATION_DIRS+= ${EGDIR} share/${PKGBASE} -MESSAGE_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX} - -CONF_FILES+= ${EGDIR}/trytond.conf.example \ - ${CONFDIR}/trytond.conf -CONF_FILES+= ${EGDIR}/logging.conf.example \ - ${CONFDIR}/logging.conf +USE_PKGLOCALEDIR= yes +USE_LANGUAGES= # none +# TODO: Migrate MASTER_SITES to MASTER_SITE_PYPI .include "../../lang/python/egg.mk" - -.if ${PYPKGPREFIX} != "py27" -pre-build: - cd ${WRKSRC} && 2to3-${PYVERSSUFFIX} -w --no-diffs trytond -.endif - -post-install: - ${MV} ${DESTDIR}${PREFIX}/bin/trytond-admin \ - ${DESTDIR}${PREFIX}/bin/trytond-admin${PYVERSSUFFIX} || ${TRUE} - ${MV} ${DESTDIR}${PREFIX}/bin/trytond-cron \ - ${DESTDIR}${PREFIX}/bin/trytond-cron${PYVERSSUFFIX} || ${TRUE} - ${MV} ${DESTDIR}${PREFIX}/bin/trytond \ - ${DESTDIR}${PREFIX}/bin/trytond${PYVERSSUFFIX} || ${TRUE} - ${INSTALL_DATA} ${FILESDIR}/trytond.conf.example \ - ${DESTDIR}${PREFIX}/${EGDIR}/trytond.conf.example - ${INSTALL_DATA} ${FILESDIR}/logging.conf.example \ - ${DESTDIR}${PREFIX}/${EGDIR}/logging.conf.example - .include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" diff --git a/devel/py-trytond/Makefile.common b/devel/py-trytond/Makefile.common index 2a3573568118..05bf612fc162 100644 --- a/devel/py-trytond/Makefile.common +++ b/devel/py-trytond/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.18 2020/03/13 20:20:48 wiz Exp $ +# $NetBSD: Makefile.common,v 1.19 2021/12/22 22:33:30 mef Exp $ # used by databases/py-trytond-ldap-authentication # used by devel/py-proteus/Makefile @@ -112,7 +112,7 @@ # used by www/py-trytond-web-user/Makefile # used by www/py-trytond-webdav/Makefile -TRYTON_BASEVER= 4.2 +TRYTON_BASEVER= 6.2 # NB: the following commands can help getting a list of module revisions: # @@ -133,9 +133,9 @@ TRYTON_BASEVER= 4.2 # # specific module revisions: MODULE_REVISION.proteus= 0 -MODULE_REVISION.tryton= 1 -MODULE_REVISION.trytond= 1 -MODULE_REVISION.trytond_account= 0 +MODULE_REVISION.tryton= 0 +MODULE_REVISION.trytond= 2 +MODULE_REVISION.trytond_account= 1 MODULE_REVISION.trytond_account_asset= 0 MODULE_REVISION.trytond_account_be= 0 MODULE_REVISION.trytond_account_credit_limit= 0 @@ -145,19 +145,19 @@ MODULE_REVISION.trytond_account_dunning= 0 MODULE_REVISION.trytond_account_dunning_fee= 0 MODULE_REVISION.trytond_account_dunning_letter= 0 MODULE_REVISION.trytond_account_fr= 0 -MODULE_REVISION.trytond_account_invoice= 0 +MODULE_REVISION.trytond_account_invoice= 1 MODULE_REVISION.trytond_account_invoice_history= 0 MODULE_REVISION.trytond_account_invoice_line_standalone= 0 MODULE_REVISION.trytond_account_invoice_stock= 0 MODULE_REVISION.trytond_account_payment= 0 MODULE_REVISION.trytond_account_payment_clearing= 0 -MODULE_REVISION.trytond_account_payment_sepa= 0 +MODULE_REVISION.trytond_account_payment_sepa= 1 MODULE_REVISION.trytond_account_payment_sepa_cfonb= 0 MODULE_REVISION.trytond_account_product= 0 MODULE_REVISION.trytond_account_statement= 0 MODULE_REVISION.trytond_account_stock_anglo_saxon= 0 MODULE_REVISION.trytond_account_stock_continental= 0 -MODULE_REVISION.trytond_account_stock_landed_cost= 0 +MODULE_REVISION.trytond_account_stock_landed_cost= 1 MODULE_REVISION.trytond_account_stock_landed_cost_weight= 0 MODULE_REVISION.trytond_account_tax_rule_country= 0 MODULE_REVISION.trytond_analytic_account= 0 @@ -166,14 +166,14 @@ MODULE_REVISION.trytond_analytic_purchase= 0 MODULE_REVISION.trytond_analytic_sale= 0 MODULE_REVISION.trytond_authentication_sms= 0 MODULE_REVISION.trytond_bank= 0 -MODULE_REVISION.trytond_calendar= 0 +MODULE_REVISION.trytond_calendar= 1 MODULE_REVISION.trytond_calendar_classification= 0 MODULE_REVISION.trytond_calendar_scheduling= 0 MODULE_REVISION.trytond_calendar_todo= 0 MODULE_REVISION.trytond_carrier= 0 MODULE_REVISION.trytond_carrier_percentage= 0 MODULE_REVISION.trytond_carrier_weight= 0 -MODULE_REVISION.trytond_commission= 1 +MODULE_REVISION.trytond_commission= 0 MODULE_REVISION.trytond_commission_waiting= 0 MODULE_REVISION.trytond_company= 0 MODULE_REVISION.trytond_company_work_time= 0 @@ -181,13 +181,13 @@ MODULE_REVISION.trytond_country= 0 MODULE_REVISION.trytond_currency= 0 MODULE_REVISION.trytond_customs= 0 MODULE_REVISION.trytond_dashboard= 0 -MODULE_REVISION.trytond_google_maps= 1 +MODULE_REVISION.trytond_google_maps= 0 MODULE_REVISION.trytond_ldap_authentication= 0 -MODULE_REVISION.trytond_party= 1 +MODULE_REVISION.trytond_party= 0 MODULE_REVISION.trytond_party_relationship= 0 MODULE_REVISION.trytond_party_siret= 0 MODULE_REVISION.trytond_party_vcarddav= 0 -MODULE_REVISION.trytond_product= 1 +MODULE_REVISION.trytond_product= 0 MODULE_REVISION.trytond_product_attribute= 0 MODULE_REVISION.trytond_product_classification= 0 MODULE_REVISION.trytond_product_classification_taxonomic= 0 @@ -236,7 +236,7 @@ MODULE_REVISION.trytond_stock_product_location= 0 MODULE_REVISION.trytond_stock_split= 0 MODULE_REVISION.trytond_stock_supply= 0 MODULE_REVISION.trytond_stock_supply_day= 0 -MODULE_REVISION.trytond_stock_supply_forecast= 1 +MODULE_REVISION.trytond_stock_supply_forecast= 0 MODULE_REVISION.trytond_stock_supply_production= 0 MODULE_REVISION.trytond_timesheet= 0 MODULE_REVISION.trytond_timesheet_cost= 0 @@ -247,13 +247,17 @@ MODULE_REVISION.trytond_webdav= 0 TRYTON_VERSION= ${TRYTON_BASEVER}.${MODULE_REVISION.${TRYTON_MODULE_NAME}} +GITHUB_PROJECT= trytond +CATEGORIES?= devel python + DISTNAME?= ${TRYTON_MODULE_NAME}-${TRYTON_VERSION} PKGNAME?= ${PYPKGPREFIX}-${DISTNAME:S/_/-/g} +#RKSRC?= ${WRKDIR}/trytond-${TRYTON_VERSION} -TRYTON_SITES= http://downloads.tryton.org/${TRYTON_BASEVER}/ -MASTER_SITES= ${TRYTON_SITES} +MASTER_SITES= https://downloads-cdn.tryton.org/6.2/ DIST_SUBDIR= tryton-${TRYTON_BASEVER} +PYTHON_VERSIONS_INCOMPATIBLE= 27 # predefine these so modules don't have to. PY_PATCHPLIST= yes diff --git a/devel/py-trytond/PLIST b/devel/py-trytond/PLIST index 9fa0b190ae4d..878c566e66b6 100644 --- a/devel/py-trytond/PLIST +++ b/devel/py-trytond/PLIST @@ -1,7 +1,10 @@ -@comment $NetBSD: PLIST,v 1.7 2020/03/13 20:20:48 wiz Exp $ -bin/trytond-admin${PYVERSSUFFIX} -bin/trytond-cron${PYVERSSUFFIX} -bin/trytond${PYVERSSUFFIX} +@comment $NetBSD: PLIST,v 1.8 2021/12/22 22:33:30 mef Exp $ +bin/trytond +bin/trytond-admin +bin/trytond-console +bin/trytond-cron +bin/trytond-stat +bin/trytond-worker ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -23,16 +26,6 @@ ${PYSITELIB}/trytond/backend/__init__.pyo ${PYSITELIB}/trytond/backend/database.py ${PYSITELIB}/trytond/backend/database.pyc ${PYSITELIB}/trytond/backend/database.pyo -${PYSITELIB}/trytond/backend/mysql/__init__.py -${PYSITELIB}/trytond/backend/mysql/__init__.pyc -${PYSITELIB}/trytond/backend/mysql/__init__.pyo -${PYSITELIB}/trytond/backend/mysql/database.py -${PYSITELIB}/trytond/backend/mysql/database.pyc -${PYSITELIB}/trytond/backend/mysql/database.pyo -${PYSITELIB}/trytond/backend/mysql/init.sql -${PYSITELIB}/trytond/backend/mysql/table.py -${PYSITELIB}/trytond/backend/mysql/table.pyc -${PYSITELIB}/trytond/backend/mysql/table.pyo ${PYSITELIB}/trytond/backend/postgresql/__init__.py ${PYSITELIB}/trytond/backend/postgresql/__init__.pyc ${PYSITELIB}/trytond/backend/postgresql/__init__.pyo @@ -56,6 +49,9 @@ ${PYSITELIB}/trytond/backend/sqlite/table.pyo ${PYSITELIB}/trytond/backend/table.py ${PYSITELIB}/trytond/backend/table.pyc ${PYSITELIB}/trytond/backend/table.pyo +${PYSITELIB}/trytond/bus.py +${PYSITELIB}/trytond/bus.pyc +${PYSITELIB}/trytond/bus.pyo ${PYSITELIB}/trytond/cache.py ${PYSITELIB}/trytond/cache.pyc ${PYSITELIB}/trytond/cache.pyo @@ -65,6 +61,9 @@ ${PYSITELIB}/trytond/commandline.pyo ${PYSITELIB}/trytond/config.py ${PYSITELIB}/trytond/config.pyc ${PYSITELIB}/trytond/config.pyo +${PYSITELIB}/trytond/console.py +${PYSITELIB}/trytond/console.pyc +${PYSITELIB}/trytond/console.pyo ${PYSITELIB}/trytond/const.py ${PYSITELIB}/trytond/const.pyc ${PYSITELIB}/trytond/const.pyo @@ -74,15 +73,15 @@ ${PYSITELIB}/trytond/convert.pyo ${PYSITELIB}/trytond/cron.py ${PYSITELIB}/trytond/cron.pyc ${PYSITELIB}/trytond/cron.pyo -${PYSITELIB}/trytond/error.py -${PYSITELIB}/trytond/error.pyc -${PYSITELIB}/trytond/error.pyo ${PYSITELIB}/trytond/exceptions.py ${PYSITELIB}/trytond/exceptions.pyc ${PYSITELIB}/trytond/exceptions.pyo ${PYSITELIB}/trytond/filestore.py ${PYSITELIB}/trytond/filestore.pyc ${PYSITELIB}/trytond/filestore.pyo +${PYSITELIB}/trytond/i18n.py +${PYSITELIB}/trytond/i18n.pyc +${PYSITELIB}/trytond/i18n.pyo ${PYSITELIB}/trytond/ir/__init__.py ${PYSITELIB}/trytond/ir/__init__.pyc ${PYSITELIB}/trytond/ir/__init__.pyo @@ -94,9 +93,16 @@ ${PYSITELIB}/trytond/ir/attachment.py ${PYSITELIB}/trytond/ir/attachment.pyc ${PYSITELIB}/trytond/ir/attachment.pyo ${PYSITELIB}/trytond/ir/attachment.xml +${PYSITELIB}/trytond/ir/avatar.py +${PYSITELIB}/trytond/ir/avatar.pyc +${PYSITELIB}/trytond/ir/avatar.pyo ${PYSITELIB}/trytond/ir/cache.py ${PYSITELIB}/trytond/ir/cache.pyc ${PYSITELIB}/trytond/ir/cache.pyo +${PYSITELIB}/trytond/ir/calendar_.py +${PYSITELIB}/trytond/ir/calendar_.pyc +${PYSITELIB}/trytond/ir/calendar_.pyo +${PYSITELIB}/trytond/ir/calendar_.xml ${PYSITELIB}/trytond/ir/configuration.py ${PYSITELIB}/trytond/ir/configuration.pyc ${PYSITELIB}/trytond/ir/configuration.pyo @@ -107,13 +113,22 @@ ${PYSITELIB}/trytond/ir/cron.xml ${PYSITELIB}/trytond/ir/date.py ${PYSITELIB}/trytond/ir/date.pyc ${PYSITELIB}/trytond/ir/date.pyo +${PYSITELIB}/trytond/ir/email.xml +${PYSITELIB}/trytond/ir/email_.py +${PYSITELIB}/trytond/ir/email_.pyc +${PYSITELIB}/trytond/ir/email_.pyo +${PYSITELIB}/trytond/ir/error.py +${PYSITELIB}/trytond/ir/error.pyc +${PYSITELIB}/trytond/ir/error.pyo +${PYSITELIB}/trytond/ir/error.xml +${PYSITELIB}/trytond/ir/exceptions.py +${PYSITELIB}/trytond/ir/exceptions.pyc +${PYSITELIB}/trytond/ir/exceptions.pyo ${PYSITELIB}/trytond/ir/export.py ${PYSITELIB}/trytond/ir/export.pyc ${PYSITELIB}/trytond/ir/export.pyo ${PYSITELIB}/trytond/ir/export.xml -${PYSITELIB}/trytond/ir/gen_time_locale.py -${PYSITELIB}/trytond/ir/gen_time_locale.pyc -${PYSITELIB}/trytond/ir/gen_time_locale.pyo +${PYSITELIB}/trytond/ir/fonts/karla.ttf ${PYSITELIB}/trytond/ir/ir.xml ${PYSITELIB}/trytond/ir/lang.py ${PYSITELIB}/trytond/ir/lang.pyc @@ -125,18 +140,27 @@ ${PYSITELIB}/trytond/ir/locale/cs.po ${PYSITELIB}/trytond/ir/locale/de.po ${PYSITELIB}/trytond/ir/locale/es.po ${PYSITELIB}/trytond/ir/locale/es_419.po +${PYSITELIB}/trytond/ir/locale/et.po +${PYSITELIB}/trytond/ir/locale/fa.po +${PYSITELIB}/trytond/ir/locale/fi.po ${PYSITELIB}/trytond/ir/locale/fr.po -${PYSITELIB}/trytond/ir/locale/hu_HU.po -${PYSITELIB}/trytond/ir/locale/it_IT.po -${PYSITELIB}/trytond/ir/locale/ja_JP.po +${PYSITELIB}/trytond/ir/locale/hu.po +${PYSITELIB}/trytond/ir/locale/id.po +${PYSITELIB}/trytond/ir/locale/it.po ${PYSITELIB}/trytond/ir/locale/lo.po ${PYSITELIB}/trytond/ir/locale/lt.po ${PYSITELIB}/trytond/ir/locale/nl.po ${PYSITELIB}/trytond/ir/locale/pl.po -${PYSITELIB}/trytond/ir/locale/pt_BR.po +${PYSITELIB}/trytond/ir/locale/pt.po +${PYSITELIB}/trytond/ir/locale/ro.po ${PYSITELIB}/trytond/ir/locale/ru.po ${PYSITELIB}/trytond/ir/locale/sl.po +${PYSITELIB}/trytond/ir/locale/tr.po ${PYSITELIB}/trytond/ir/locale/zh_CN.po +${PYSITELIB}/trytond/ir/message.py +${PYSITELIB}/trytond/ir/message.pyc +${PYSITELIB}/trytond/ir/message.pyo +${PYSITELIB}/trytond/ir/message.xml ${PYSITELIB}/trytond/ir/model.py ${PYSITELIB}/trytond/ir/model.pyc ${PYSITELIB}/trytond/ir/model.pyo @@ -149,13 +173,16 @@ ${PYSITELIB}/trytond/ir/note.py ${PYSITELIB}/trytond/ir/note.pyc ${PYSITELIB}/trytond/ir/note.pyo ${PYSITELIB}/trytond/ir/note.xml -${PYSITELIB}/trytond/ir/property.py -${PYSITELIB}/trytond/ir/property.pyc -${PYSITELIB}/trytond/ir/property.pyo -${PYSITELIB}/trytond/ir/property.xml +${PYSITELIB}/trytond/ir/queue.py +${PYSITELIB}/trytond/ir/queue.pyc +${PYSITELIB}/trytond/ir/queue.pyo +${PYSITELIB}/trytond/ir/queue.xml ${PYSITELIB}/trytond/ir/resource.py ${PYSITELIB}/trytond/ir/resource.pyc ${PYSITELIB}/trytond/ir/resource.pyo +${PYSITELIB}/trytond/ir/routes.py +${PYSITELIB}/trytond/ir/routes.pyc +${PYSITELIB}/trytond/ir/routes.pyo ${PYSITELIB}/trytond/ir/rule.py ${PYSITELIB}/trytond/ir/rule.pyc ${PYSITELIB}/trytond/ir/rule.pyo @@ -167,9 +194,6 @@ ${PYSITELIB}/trytond/ir/sequence.xml ${PYSITELIB}/trytond/ir/session.py ${PYSITELIB}/trytond/ir/session.pyc ${PYSITELIB}/trytond/ir/session.pyo -${PYSITELIB}/trytond/ir/time_locale.py -${PYSITELIB}/trytond/ir/time_locale.pyc -${PYSITELIB}/trytond/ir/time_locale.pyo ${PYSITELIB}/trytond/ir/translation.py ${PYSITELIB}/trytond/ir/translation.pyc ${PYSITELIB}/trytond/ir/translation.pyo @@ -194,14 +218,13 @@ ${PYSITELIB}/trytond/ir/ui/icon.py ${PYSITELIB}/trytond/ir/ui/icon.pyc ${PYSITELIB}/trytond/ir/ui/icon.pyo ${PYSITELIB}/trytond/ir/ui/icon.xml +${PYSITELIB}/trytond/ir/ui/icons/tryton-board.svg ${PYSITELIB}/trytond/ir/ui/icons/tryton-calendar.svg -${PYSITELIB}/trytond/ir/ui/icons/tryton-clock.svg +${PYSITELIB}/trytond/ir/ui/icons/tryton-folder.svg +${PYSITELIB}/trytond/ir/ui/icons/tryton-form.svg ${PYSITELIB}/trytond/ir/ui/icons/tryton-graph.svg -${PYSITELIB}/trytond/ir/ui/icons/tryton-image-missing.svg ${PYSITELIB}/trytond/ir/ui/icons/tryton-list.svg -${PYSITELIB}/trytond/ir/ui/icons/tryton-presentation.svg -${PYSITELIB}/trytond/ir/ui/icons/tryton-readonly.svg -${PYSITELIB}/trytond/ir/ui/icons/tryton-spreadsheet.svg +${PYSITELIB}/trytond/ir/ui/icons/tryton-settings.svg ${PYSITELIB}/trytond/ir/ui/icons/tryton-tree.svg ${PYSITELIB}/trytond/ir/ui/menu.py ${PYSITELIB}/trytond/ir/ui/menu.pyc @@ -233,15 +256,27 @@ ${PYSITELIB}/trytond/ir/view/action_url_list.xml ${PYSITELIB}/trytond/ir/view/action_wizard_form.xml ${PYSITELIB}/trytond/ir/view/action_wizard_list.xml ${PYSITELIB}/trytond/ir/view/attachment_form.xml +${PYSITELIB}/trytond/ir/view/attachment_form_preview.xml ${PYSITELIB}/trytond/ir/view/attachment_list.xml ${PYSITELIB}/trytond/ir/view/cron_form.xml ${PYSITELIB}/trytond/ir/view/cron_list.xml +${PYSITELIB}/trytond/ir/view/email_form.xml +${PYSITELIB}/trytond/ir/view/email_list.xml +${PYSITELIB}/trytond/ir/view/email_template_form.xml +${PYSITELIB}/trytond/ir/view/email_template_list.xml +${PYSITELIB}/trytond/ir/view/error_form.xml +${PYSITELIB}/trytond/ir/view/error_list.xml ${PYSITELIB}/trytond/ir/view/export_form.xml +${PYSITELIB}/trytond/ir/view/export_line_form.xml +${PYSITELIB}/trytond/ir/view/export_line_list.xml ${PYSITELIB}/trytond/ir/view/export_list.xml ${PYSITELIB}/trytond/ir/view/icon_view_form.xml ${PYSITELIB}/trytond/ir/view/icon_view_list.xml +${PYSITELIB}/trytond/ir/view/lang_config_start_form.xml ${PYSITELIB}/trytond/ir/view/lang_form.xml ${PYSITELIB}/trytond/ir/view/lang_list.xml +${PYSITELIB}/trytond/ir/view/message_form.xml +${PYSITELIB}/trytond/ir/view/message_list.xml ${PYSITELIB}/trytond/ir/view/model_access_form.xml ${PYSITELIB}/trytond/ir/view/model_access_list.xml ${PYSITELIB}/trytond/ir/view/model_button_click_form.xml @@ -261,6 +296,7 @@ ${PYSITELIB}/trytond/ir/view/model_list.xml ${PYSITELIB}/trytond/ir/view/model_print_model_graph_start_form.xml ${PYSITELIB}/trytond/ir/view/module_activate_upgrade_done_form.xml ${PYSITELIB}/trytond/ir/view/module_activate_upgrade_start_form.xml +${PYSITELIB}/trytond/ir/view/module_config_start_form.xml ${PYSITELIB}/trytond/ir/view/module_config_wizard_done_form.xml ${PYSITELIB}/trytond/ir/view/module_config_wizard_first_form.xml ${PYSITELIB}/trytond/ir/view/module_config_wizard_item_list.xml @@ -271,8 +307,6 @@ ${PYSITELIB}/trytond/ir/view/module_form.xml ${PYSITELIB}/trytond/ir/view/module_list.xml ${PYSITELIB}/trytond/ir/view/note_form.xml ${PYSITELIB}/trytond/ir/view/note_list.xml -${PYSITELIB}/trytond/ir/view/property_form.xml -${PYSITELIB}/trytond/ir/view/property_list.xml ${PYSITELIB}/trytond/ir/view/rule_form.xml ${PYSITELIB}/trytond/ir/view/rule_group_form.xml ${PYSITELIB}/trytond/ir/view/rule_group_list.xml @@ -308,12 +342,24 @@ ${PYSITELIB}/trytond/ir/view/ui_view_tree_width_list.xml ${PYSITELIB}/trytond/model/__init__.py ${PYSITELIB}/trytond/model/__init__.pyc ${PYSITELIB}/trytond/model/__init__.pyo +${PYSITELIB}/trytond/model/active.py +${PYSITELIB}/trytond/model/active.pyc +${PYSITELIB}/trytond/model/active.pyo +${PYSITELIB}/trytond/model/avatar.py +${PYSITELIB}/trytond/model/avatar.pyc +${PYSITELIB}/trytond/model/avatar.pyo ${PYSITELIB}/trytond/model/descriptors.py ${PYSITELIB}/trytond/model/descriptors.pyc ${PYSITELIB}/trytond/model/descriptors.pyo ${PYSITELIB}/trytond/model/dictschema.py ${PYSITELIB}/trytond/model/dictschema.pyc ${PYSITELIB}/trytond/model/dictschema.pyo +${PYSITELIB}/trytond/model/digits.py +${PYSITELIB}/trytond/model/digits.pyc +${PYSITELIB}/trytond/model/digits.pyo +${PYSITELIB}/trytond/model/exceptions.py +${PYSITELIB}/trytond/model/exceptions.pyc +${PYSITELIB}/trytond/model/exceptions.pyo ${PYSITELIB}/trytond/model/fields/__init__.py ${PYSITELIB}/trytond/model/fields/__init__.pyc ${PYSITELIB}/trytond/model/fields/__init__.pyo @@ -350,6 +396,9 @@ ${PYSITELIB}/trytond/model/fields/many2many.pyo ${PYSITELIB}/trytond/model/fields/many2one.py ${PYSITELIB}/trytond/model/fields/many2one.pyc ${PYSITELIB}/trytond/model/fields/many2one.pyo +${PYSITELIB}/trytond/model/fields/multiselection.py +${PYSITELIB}/trytond/model/fields/multiselection.pyc +${PYSITELIB}/trytond/model/fields/multiselection.pyo ${PYSITELIB}/trytond/model/fields/numeric.py ${PYSITELIB}/trytond/model/fields/numeric.pyc ${PYSITELIB}/trytond/model/fields/numeric.pyo @@ -359,9 +408,6 @@ ${PYSITELIB}/trytond/model/fields/one2many.pyo ${PYSITELIB}/trytond/model/fields/one2one.py ${PYSITELIB}/trytond/model/fields/one2one.pyc ${PYSITELIB}/trytond/model/fields/one2one.pyo -${PYSITELIB}/trytond/model/fields/property.py -${PYSITELIB}/trytond/model/fields/property.pyc -${PYSITELIB}/trytond/model/fields/property.pyo ${PYSITELIB}/trytond/model/fields/reference.py ${PYSITELIB}/trytond/model/fields/reference.pyc ${PYSITELIB}/trytond/model/fields/reference.pyo @@ -389,9 +435,18 @@ ${PYSITELIB}/trytond/model/modelstorage.pyo ${PYSITELIB}/trytond/model/modelview.py ${PYSITELIB}/trytond/model/modelview.pyc ${PYSITELIB}/trytond/model/modelview.pyo +${PYSITELIB}/trytond/model/multivalue.py +${PYSITELIB}/trytond/model/multivalue.pyc +${PYSITELIB}/trytond/model/multivalue.pyo ${PYSITELIB}/trytond/model/order.py ${PYSITELIB}/trytond/model/order.pyc ${PYSITELIB}/trytond/model/order.pyo +${PYSITELIB}/trytond/model/symbol.py +${PYSITELIB}/trytond/model/symbol.pyc +${PYSITELIB}/trytond/model/symbol.pyo +${PYSITELIB}/trytond/model/tree.py +${PYSITELIB}/trytond/model/tree.pyc +${PYSITELIB}/trytond/model/tree.pyo ${PYSITELIB}/trytond/model/union.py ${PYSITELIB}/trytond/model/union.pyc ${PYSITELIB}/trytond/model/union.pyo @@ -431,6 +486,10 @@ ${PYSITELIB}/trytond/report/report.pyo ${PYSITELIB}/trytond/res/__init__.py ${PYSITELIB}/trytond/res/__init__.pyc ${PYSITELIB}/trytond/res/__init__.pyo +${PYSITELIB}/trytond/res/email_reset_password.html +${PYSITELIB}/trytond/res/exceptions.py +${PYSITELIB}/trytond/res/exceptions.pyc +${PYSITELIB}/trytond/res/exceptions.pyo ${PYSITELIB}/trytond/res/group.py ${PYSITELIB}/trytond/res/group.pyc ${PYSITELIB}/trytond/res/group.pyo @@ -445,18 +504,24 @@ ${PYSITELIB}/trytond/res/locale/cs.po ${PYSITELIB}/trytond/res/locale/de.po ${PYSITELIB}/trytond/res/locale/es.po ${PYSITELIB}/trytond/res/locale/es_419.po +${PYSITELIB}/trytond/res/locale/et.po +${PYSITELIB}/trytond/res/locale/fa.po +${PYSITELIB}/trytond/res/locale/fi.po ${PYSITELIB}/trytond/res/locale/fr.po -${PYSITELIB}/trytond/res/locale/hu_HU.po -${PYSITELIB}/trytond/res/locale/it_IT.po -${PYSITELIB}/trytond/res/locale/ja_JP.po +${PYSITELIB}/trytond/res/locale/hu.po +${PYSITELIB}/trytond/res/locale/id.po +${PYSITELIB}/trytond/res/locale/it.po ${PYSITELIB}/trytond/res/locale/lo.po ${PYSITELIB}/trytond/res/locale/lt.po ${PYSITELIB}/trytond/res/locale/nl.po ${PYSITELIB}/trytond/res/locale/pl.po -${PYSITELIB}/trytond/res/locale/pt_BR.po +${PYSITELIB}/trytond/res/locale/pt.po +${PYSITELIB}/trytond/res/locale/ro.po ${PYSITELIB}/trytond/res/locale/ru.po ${PYSITELIB}/trytond/res/locale/sl.po +${PYSITELIB}/trytond/res/locale/tr.po ${PYSITELIB}/trytond/res/locale/zh_CN.po +${PYSITELIB}/trytond/res/message.xml ${PYSITELIB}/trytond/res/res.xml ${PYSITELIB}/trytond/res/routes.py ${PYSITELIB}/trytond/res/routes.pyc @@ -466,6 +531,8 @@ ${PYSITELIB}/trytond/res/user.py ${PYSITELIB}/trytond/res/user.pyc ${PYSITELIB}/trytond/res/user.pyo ${PYSITELIB}/trytond/res/user.xml +${PYSITELIB}/trytond/res/view/export_form.xml +${PYSITELIB}/trytond/res/view/export_list.xml ${PYSITELIB}/trytond/res/view/group_form.xml ${PYSITELIB}/trytond/res/view/group_list.xml ${PYSITELIB}/trytond/res/view/sequence_type_form.xml @@ -486,6 +553,9 @@ ${PYSITELIB}/trytond/security.pyo ${PYSITELIB}/trytond/sendmail.py ${PYSITELIB}/trytond/sendmail.pyc ${PYSITELIB}/trytond/sendmail.pyo +${PYSITELIB}/trytond/status.py +${PYSITELIB}/trytond/status.pyc +${PYSITELIB}/trytond/status.pyo ${PYSITELIB}/trytond/test_loader.py ${PYSITELIB}/trytond/test_loader.pyc ${PYSITELIB}/trytond/test_loader.pyo @@ -501,9 +571,70 @@ ${PYSITELIB}/trytond/tests/copy_.pyo ${PYSITELIB}/trytond/tests/export_data.py ${PYSITELIB}/trytond/tests/export_data.pyc ${PYSITELIB}/trytond/tests/export_data.pyo +${PYSITELIB}/trytond/tests/field_binary.py +${PYSITELIB}/trytond/tests/field_binary.pyc +${PYSITELIB}/trytond/tests/field_binary.pyo +${PYSITELIB}/trytond/tests/field_boolean.py +${PYSITELIB}/trytond/tests/field_boolean.pyc +${PYSITELIB}/trytond/tests/field_boolean.pyo +${PYSITELIB}/trytond/tests/field_char.py +${PYSITELIB}/trytond/tests/field_char.pyc +${PYSITELIB}/trytond/tests/field_char.pyo ${PYSITELIB}/trytond/tests/field_context.py ${PYSITELIB}/trytond/tests/field_context.pyc ${PYSITELIB}/trytond/tests/field_context.pyo +${PYSITELIB}/trytond/tests/field_date.py +${PYSITELIB}/trytond/tests/field_date.pyc +${PYSITELIB}/trytond/tests/field_date.pyo +${PYSITELIB}/trytond/tests/field_datetime.py +${PYSITELIB}/trytond/tests/field_datetime.pyc +${PYSITELIB}/trytond/tests/field_datetime.pyo +${PYSITELIB}/trytond/tests/field_dict.py +${PYSITELIB}/trytond/tests/field_dict.pyc +${PYSITELIB}/trytond/tests/field_dict.pyo +${PYSITELIB}/trytond/tests/field_float.py +${PYSITELIB}/trytond/tests/field_float.pyc +${PYSITELIB}/trytond/tests/field_float.pyo +${PYSITELIB}/trytond/tests/field_function.py +${PYSITELIB}/trytond/tests/field_function.pyc +${PYSITELIB}/trytond/tests/field_function.pyo +${PYSITELIB}/trytond/tests/field_integer.py +${PYSITELIB}/trytond/tests/field_integer.pyc +${PYSITELIB}/trytond/tests/field_integer.pyo +${PYSITELIB}/trytond/tests/field_many2many.py +${PYSITELIB}/trytond/tests/field_many2many.pyc +${PYSITELIB}/trytond/tests/field_many2many.pyo +${PYSITELIB}/trytond/tests/field_many2one.py +${PYSITELIB}/trytond/tests/field_many2one.pyc +${PYSITELIB}/trytond/tests/field_many2one.pyo +${PYSITELIB}/trytond/tests/field_multiselection.py +${PYSITELIB}/trytond/tests/field_multiselection.pyc +${PYSITELIB}/trytond/tests/field_multiselection.pyo +${PYSITELIB}/trytond/tests/field_numeric.py +${PYSITELIB}/trytond/tests/field_numeric.pyc +${PYSITELIB}/trytond/tests/field_numeric.pyo +${PYSITELIB}/trytond/tests/field_one2many.py +${PYSITELIB}/trytond/tests/field_one2many.pyc +${PYSITELIB}/trytond/tests/field_one2many.pyo +${PYSITELIB}/trytond/tests/field_one2one.py +${PYSITELIB}/trytond/tests/field_one2one.pyc +${PYSITELIB}/trytond/tests/field_one2one.pyo +${PYSITELIB}/trytond/tests/field_reference.py +${PYSITELIB}/trytond/tests/field_reference.pyc +${PYSITELIB}/trytond/tests/field_reference.pyo +${PYSITELIB}/trytond/tests/field_selection.py +${PYSITELIB}/trytond/tests/field_selection.pyc +${PYSITELIB}/trytond/tests/field_selection.pyo +${PYSITELIB}/trytond/tests/field_text.py +${PYSITELIB}/trytond/tests/field_text.pyc +${PYSITELIB}/trytond/tests/field_text.pyo +${PYSITELIB}/trytond/tests/field_time.py +${PYSITELIB}/trytond/tests/field_time.pyc +${PYSITELIB}/trytond/tests/field_time.pyo +${PYSITELIB}/trytond/tests/field_timedelta.py +${PYSITELIB}/trytond/tests/field_timedelta.pyc +${PYSITELIB}/trytond/tests/field_timedelta.pyo +${PYSITELIB}/trytond/tests/forbidden.txt ${PYSITELIB}/trytond/tests/history.py ${PYSITELIB}/trytond/tests/history.pyc ${PYSITELIB}/trytond/tests/history.pyo @@ -511,25 +642,51 @@ ${PYSITELIB}/trytond/tests/import_data.py ${PYSITELIB}/trytond/tests/import_data.pyc ${PYSITELIB}/trytond/tests/import_data.pyo ${PYSITELIB}/trytond/tests/import_data.xml +${PYSITELIB}/trytond/tests/message.xml +${PYSITELIB}/trytond/tests/mixin.py +${PYSITELIB}/trytond/tests/mixin.pyc +${PYSITELIB}/trytond/tests/mixin.pyo ${PYSITELIB}/trytond/tests/model.py ${PYSITELIB}/trytond/tests/model.pyc ${PYSITELIB}/trytond/tests/model.pyo +${PYSITELIB}/trytond/tests/modelsql.py +${PYSITELIB}/trytond/tests/modelsql.pyc +${PYSITELIB}/trytond/tests/modelsql.pyo +${PYSITELIB}/trytond/tests/modelstorage.py +${PYSITELIB}/trytond/tests/modelstorage.pyc +${PYSITELIB}/trytond/tests/modelstorage.pyo ${PYSITELIB}/trytond/tests/modelview.py ${PYSITELIB}/trytond/tests/modelview.pyc ${PYSITELIB}/trytond/tests/modelview.pyo +${PYSITELIB}/trytond/tests/modelview.xml ${PYSITELIB}/trytond/tests/mptt.py ${PYSITELIB}/trytond/tests/mptt.pyc ${PYSITELIB}/trytond/tests/mptt.pyo +${PYSITELIB}/trytond/tests/multivalue.py +${PYSITELIB}/trytond/tests/multivalue.pyc +${PYSITELIB}/trytond/tests/multivalue.pyo +${PYSITELIB}/trytond/tests/path.py +${PYSITELIB}/trytond/tests/path.pyc +${PYSITELIB}/trytond/tests/path.pyo +${PYSITELIB}/trytond/tests/resource.py +${PYSITELIB}/trytond/tests/resource.pyc +${PYSITELIB}/trytond/tests/resource.pyo +${PYSITELIB}/trytond/tests/rule.py +${PYSITELIB}/trytond/tests/rule.pyc +${PYSITELIB}/trytond/tests/rule.pyo ${PYSITELIB}/trytond/tests/run-tests.py ${PYSITELIB}/trytond/tests/run-tests.pyc ${PYSITELIB}/trytond/tests/run-tests.pyo ${PYSITELIB}/trytond/tests/sequence.xml -${PYSITELIB}/trytond/tests/test.py -${PYSITELIB}/trytond/tests/test.pyc -${PYSITELIB}/trytond/tests/test.pyo ${PYSITELIB}/trytond/tests/test_access.py ${PYSITELIB}/trytond/tests/test_access.pyc ${PYSITELIB}/trytond/tests/test_access.pyo +${PYSITELIB}/trytond/tests/test_backend.py +${PYSITELIB}/trytond/tests/test_backend.pyc +${PYSITELIB}/trytond/tests/test_backend.pyo +${PYSITELIB}/trytond/tests/test_bus.py +${PYSITELIB}/trytond/tests/test_bus.pyc +${PYSITELIB}/trytond/tests/test_bus.pyo ${PYSITELIB}/trytond/tests/test_cache.py ${PYSITELIB}/trytond/tests/test_cache.pyc ${PYSITELIB}/trytond/tests/test_cache.pyo @@ -542,18 +699,81 @@ ${PYSITELIB}/trytond/tests/test_descriptors.pyo ${PYSITELIB}/trytond/tests/test_exportdata.py ${PYSITELIB}/trytond/tests/test_exportdata.pyc ${PYSITELIB}/trytond/tests/test_exportdata.pyo +${PYSITELIB}/trytond/tests/test_field_binary.py +${PYSITELIB}/trytond/tests/test_field_binary.pyc +${PYSITELIB}/trytond/tests/test_field_binary.pyo +${PYSITELIB}/trytond/tests/test_field_boolean.py +${PYSITELIB}/trytond/tests/test_field_boolean.pyc +${PYSITELIB}/trytond/tests/test_field_boolean.pyo +${PYSITELIB}/trytond/tests/test_field_char.py +${PYSITELIB}/trytond/tests/test_field_char.pyc +${PYSITELIB}/trytond/tests/test_field_char.pyo ${PYSITELIB}/trytond/tests/test_field_context.py ${PYSITELIB}/trytond/tests/test_field_context.pyc ${PYSITELIB}/trytond/tests/test_field_context.pyo -${PYSITELIB}/trytond/tests/test_fields.py -${PYSITELIB}/trytond/tests/test_fields.pyc -${PYSITELIB}/trytond/tests/test_fields.pyo +${PYSITELIB}/trytond/tests/test_field_date.py +${PYSITELIB}/trytond/tests/test_field_date.pyc +${PYSITELIB}/trytond/tests/test_field_date.pyo +${PYSITELIB}/trytond/tests/test_field_datetime.py +${PYSITELIB}/trytond/tests/test_field_datetime.pyc +${PYSITELIB}/trytond/tests/test_field_datetime.pyo +${PYSITELIB}/trytond/tests/test_field_depends.py +${PYSITELIB}/trytond/tests/test_field_depends.pyc +${PYSITELIB}/trytond/tests/test_field_depends.pyo +${PYSITELIB}/trytond/tests/test_field_dict.py +${PYSITELIB}/trytond/tests/test_field_dict.pyc +${PYSITELIB}/trytond/tests/test_field_dict.pyo +${PYSITELIB}/trytond/tests/test_field_float.py +${PYSITELIB}/trytond/tests/test_field_float.pyc +${PYSITELIB}/trytond/tests/test_field_float.pyo +${PYSITELIB}/trytond/tests/test_field_function.py +${PYSITELIB}/trytond/tests/test_field_function.pyc +${PYSITELIB}/trytond/tests/test_field_function.pyo +${PYSITELIB}/trytond/tests/test_field_integer.py +${PYSITELIB}/trytond/tests/test_field_integer.pyc +${PYSITELIB}/trytond/tests/test_field_integer.pyo +${PYSITELIB}/trytond/tests/test_field_many2many.py +${PYSITELIB}/trytond/tests/test_field_many2many.pyc +${PYSITELIB}/trytond/tests/test_field_many2many.pyo +${PYSITELIB}/trytond/tests/test_field_many2one.py +${PYSITELIB}/trytond/tests/test_field_many2one.pyc +${PYSITELIB}/trytond/tests/test_field_many2one.pyo +${PYSITELIB}/trytond/tests/test_field_multiselection.py +${PYSITELIB}/trytond/tests/test_field_multiselection.pyc +${PYSITELIB}/trytond/tests/test_field_multiselection.pyo +${PYSITELIB}/trytond/tests/test_field_numeric.py +${PYSITELIB}/trytond/tests/test_field_numeric.pyc +${PYSITELIB}/trytond/tests/test_field_numeric.pyo +${PYSITELIB}/trytond/tests/test_field_one2many.py +${PYSITELIB}/trytond/tests/test_field_one2many.pyc +${PYSITELIB}/trytond/tests/test_field_one2many.pyo +${PYSITELIB}/trytond/tests/test_field_one2one.py +${PYSITELIB}/trytond/tests/test_field_one2one.pyc +${PYSITELIB}/trytond/tests/test_field_one2one.pyo +${PYSITELIB}/trytond/tests/test_field_reference.py +${PYSITELIB}/trytond/tests/test_field_reference.pyc +${PYSITELIB}/trytond/tests/test_field_reference.pyo +${PYSITELIB}/trytond/tests/test_field_selection.py +${PYSITELIB}/trytond/tests/test_field_selection.pyc +${PYSITELIB}/trytond/tests/test_field_selection.pyo +${PYSITELIB}/trytond/tests/test_field_text.py +${PYSITELIB}/trytond/tests/test_field_text.pyc +${PYSITELIB}/trytond/tests/test_field_text.pyo +${PYSITELIB}/trytond/tests/test_field_time.py +${PYSITELIB}/trytond/tests/test_field_time.pyc +${PYSITELIB}/trytond/tests/test_field_time.pyo +${PYSITELIB}/trytond/tests/test_field_timedelta.py +${PYSITELIB}/trytond/tests/test_field_timedelta.pyc +${PYSITELIB}/trytond/tests/test_field_timedelta.pyo ${PYSITELIB}/trytond/tests/test_filestore.py ${PYSITELIB}/trytond/tests/test_filestore.pyc ${PYSITELIB}/trytond/tests/test_filestore.pyo ${PYSITELIB}/trytond/tests/test_history.py ${PYSITELIB}/trytond/tests/test_history.pyc ${PYSITELIB}/trytond/tests/test_history.pyo +${PYSITELIB}/trytond/tests/test_i18n.py +${PYSITELIB}/trytond/tests/test_i18n.pyc +${PYSITELIB}/trytond/tests/test_i18n.pyo ${PYSITELIB}/trytond/tests/test_importdata.py ${PYSITELIB}/trytond/tests/test_importdata.pyc ${PYSITELIB}/trytond/tests/test_importdata.pyo @@ -581,21 +801,39 @@ ${PYSITELIB}/trytond/tests/test_modelview.pyo ${PYSITELIB}/trytond/tests/test_mptt.py ${PYSITELIB}/trytond/tests/test_mptt.pyc ${PYSITELIB}/trytond/tests/test_mptt.pyo +${PYSITELIB}/trytond/tests/test_multivalue.py +${PYSITELIB}/trytond/tests/test_multivalue.pyc +${PYSITELIB}/trytond/tests/test_multivalue.pyo ${PYSITELIB}/trytond/tests/test_order.py ${PYSITELIB}/trytond/tests/test_order.pyc ${PYSITELIB}/trytond/tests/test_order.pyo +${PYSITELIB}/trytond/tests/test_path.py +${PYSITELIB}/trytond/tests/test_path.pyc +${PYSITELIB}/trytond/tests/test_path.pyo ${PYSITELIB}/trytond/tests/test_protocols.py ${PYSITELIB}/trytond/tests/test_protocols.pyc ${PYSITELIB}/trytond/tests/test_protocols.pyo ${PYSITELIB}/trytond/tests/test_pyson.py ${PYSITELIB}/trytond/tests/test_pyson.pyc ${PYSITELIB}/trytond/tests/test_pyson.pyo +${PYSITELIB}/trytond/tests/test_report.py +${PYSITELIB}/trytond/tests/test_report.pyc +${PYSITELIB}/trytond/tests/test_report.pyo ${PYSITELIB}/trytond/tests/test_res.py ${PYSITELIB}/trytond/tests/test_res.pyc ${PYSITELIB}/trytond/tests/test_res.pyo +${PYSITELIB}/trytond/tests/test_resource.py +${PYSITELIB}/trytond/tests/test_resource.pyc +${PYSITELIB}/trytond/tests/test_resource.pyo +${PYSITELIB}/trytond/tests/test_routes.py +${PYSITELIB}/trytond/tests/test_routes.pyc +${PYSITELIB}/trytond/tests/test_routes.pyo ${PYSITELIB}/trytond/tests/test_rpc.py ${PYSITELIB}/trytond/tests/test_rpc.pyc ${PYSITELIB}/trytond/tests/test_rpc.pyo +${PYSITELIB}/trytond/tests/test_rule.py +${PYSITELIB}/trytond/tests/test_rule.pyc +${PYSITELIB}/trytond/tests/test_rule.pyo ${PYSITELIB}/trytond/tests/test_sendmail.py ${PYSITELIB}/trytond/tests/test_sendmail.pyc ${PYSITELIB}/trytond/tests/test_sendmail.pyo @@ -608,6 +846,9 @@ ${PYSITELIB}/trytond/tests/test_tools.pyo ${PYSITELIB}/trytond/tests/test_transaction.py ${PYSITELIB}/trytond/tests/test_transaction.pyc ${PYSITELIB}/trytond/tests/test_transaction.pyo +${PYSITELIB}/trytond/tests/test_tree.py +${PYSITELIB}/trytond/tests/test_tree.pyc +${PYSITELIB}/trytond/tests/test_tree.pyo ${PYSITELIB}/trytond/tests/test_trigger.py ${PYSITELIB}/trytond/tests/test_trigger.pyc ${PYSITELIB}/trytond/tests/test_trigger.pyo @@ -626,9 +867,15 @@ ${PYSITELIB}/trytond/tests/test_wizard.pyo ${PYSITELIB}/trytond/tests/test_workflow.py ${PYSITELIB}/trytond/tests/test_workflow.pyc ${PYSITELIB}/trytond/tests/test_workflow.pyo +${PYSITELIB}/trytond/tests/test_wsgi.py +${PYSITELIB}/trytond/tests/test_wsgi.pyc +${PYSITELIB}/trytond/tests/test_wsgi.pyo ${PYSITELIB}/trytond/tests/tools.py ${PYSITELIB}/trytond/tests/tools.pyc ${PYSITELIB}/trytond/tests/tools.pyo +${PYSITELIB}/trytond/tests/tree.py +${PYSITELIB}/trytond/tests/tree.pyc +${PYSITELIB}/trytond/tests/tree.pyo ${PYSITELIB}/trytond/tests/trigger.py ${PYSITELIB}/trytond/tests/trigger.pyc ${PYSITELIB}/trytond/tests/trigger.pyo @@ -641,27 +888,41 @@ ${PYSITELIB}/trytond/tests/workflow.py ${PYSITELIB}/trytond/tests/workflow.pyc ${PYSITELIB}/trytond/tests/workflow.pyo ${PYSITELIB}/trytond/tests/workflow.xml -${PYSITELIB}/trytond/tools/StringMatcher.py -${PYSITELIB}/trytond/tools/StringMatcher.pyc -${PYSITELIB}/trytond/tools/StringMatcher.pyo ${PYSITELIB}/trytond/tools/__init__.py ${PYSITELIB}/trytond/tools/__init__.pyc ${PYSITELIB}/trytond/tools/__init__.pyo -${PYSITELIB}/trytond/tools/datetime_strftime.py -${PYSITELIB}/trytond/tools/datetime_strftime.pyc -${PYSITELIB}/trytond/tools/datetime_strftime.pyo ${PYSITELIB}/trytond/tools/decimal_.py ${PYSITELIB}/trytond/tools/decimal_.pyc ${PYSITELIB}/trytond/tools/decimal_.pyo +${PYSITELIB}/trytond/tools/domain_inversion.py +${PYSITELIB}/trytond/tools/domain_inversion.pyc +${PYSITELIB}/trytond/tools/domain_inversion.pyo +${PYSITELIB}/trytond/tools/email_.py +${PYSITELIB}/trytond/tools/email_.pyc +${PYSITELIB}/trytond/tools/email_.pyo +${PYSITELIB}/trytond/tools/gevent.py +${PYSITELIB}/trytond/tools/gevent.pyc +${PYSITELIB}/trytond/tools/gevent.pyo +${PYSITELIB}/trytond/tools/immutabledict.py +${PYSITELIB}/trytond/tools/immutabledict.pyc +${PYSITELIB}/trytond/tools/immutabledict.pyo ${PYSITELIB}/trytond/tools/misc.py ${PYSITELIB}/trytond/tools/misc.pyc ${PYSITELIB}/trytond/tools/misc.pyo +${PYSITELIB}/trytond/tools/multivalue.py +${PYSITELIB}/trytond/tools/multivalue.pyc +${PYSITELIB}/trytond/tools/multivalue.pyo ${PYSITELIB}/trytond/tools/singleton.py ${PYSITELIB}/trytond/tools/singleton.pyc ${PYSITELIB}/trytond/tools/singleton.pyo +${PYSITELIB}/trytond/tools/string_.py +${PYSITELIB}/trytond/tools/string_.pyc +${PYSITELIB}/trytond/tools/string_.pyo ${PYSITELIB}/trytond/transaction.py ${PYSITELIB}/trytond/transaction.pyc ${PYSITELIB}/trytond/transaction.pyo +${PYSITELIB}/trytond/tryton.rnc +${PYSITELIB}/trytond/tryton.rng ${PYSITELIB}/trytond/url.py ${PYSITELIB}/trytond/url.pyc ${PYSITELIB}/trytond/url.pyo @@ -671,9 +932,9 @@ ${PYSITELIB}/trytond/wizard/__init__.pyo ${PYSITELIB}/trytond/wizard/wizard.py ${PYSITELIB}/trytond/wizard/wizard.pyc ${PYSITELIB}/trytond/wizard/wizard.pyo +${PYSITELIB}/trytond/worker.py +${PYSITELIB}/trytond/worker.pyc +${PYSITELIB}/trytond/worker.pyo ${PYSITELIB}/trytond/wsgi.py ${PYSITELIB}/trytond/wsgi.pyc ${PYSITELIB}/trytond/wsgi.pyo -share/examples/${PYPKGPREFIX}-trytond/logging.conf.example -share/examples/${PYPKGPREFIX}-trytond/trytond.conf.example -@pkgdir share/${PYPKGPREFIX}-trytond diff --git a/devel/py-trytond/distinfo b/devel/py-trytond/distinfo index bbccd5282d8f..6f8b76ac3f3e 100644 --- a/devel/py-trytond/distinfo +++ b/devel/py-trytond/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.14 2021/12/16 14:48:11 wiz Exp $ +$NetBSD: distinfo,v 1.15 2021/12/22 22:33:30 mef Exp $ -BLAKE2s (tryton-4.2/trytond-4.2.1.tar.gz) = 633773d9a79c7974ba605350706231ce6a66a8dd306e690b4271efd494b987ad -SHA512 (tryton-4.2/trytond-4.2.1.tar.gz) = 3716a56d87e95dabaa77f2210c9499a6d1ae0278b7bae2034d6a19db8a40f1e22efd48118de9af1a72022b556a991d4293886804b2b531be0f4dd038fbe9e882 -Size (tryton-4.2/trytond-4.2.1.tar.gz) = 581536 bytes -SHA1 (patch-setup.py) = 4b802daf2801407b5c0d89eb130742a63555bc10 +BLAKE2s (tryton-6.2/trytond-6.2.2.tar.gz) = 0aa2a635967e18d577171476007104721934dc299e0eac49027464d933968f5d +SHA512 (tryton-6.2/trytond-6.2.2.tar.gz) = c1ec1e2e3de5f38e0ea205bd3bb9e9f635ed487ab6ba5a3761184c731c00814de4c39a6d178deed4756cd95d8ceff9204babf62fa284c3123ccfac03ccd71d10 +Size (tryton-6.2/trytond-6.2.2.tar.gz) = 873356 bytes