Skip to content

Commit

Permalink
New Tryton release 3.8
Browse files Browse the repository at this point in the history
http://www.tryton.org/news/index.html

Major changes for the developer

    The progress bar widget works with float between 0 and 1 to ease usage as
    percentage.

    The rich text widget uses now a subset of HTML to allow its implementation
    in sao.

    The Many2One has a new option target_search which define the kind of query
    to use for dereferenced search. The options are subquery and the new join
    (which is the default). The join method generate a faster query in most
    cases.

    The SQL constraints use a similar syntax to python-sql. This gives more
    flexibility to implement backend for other databases.

    Trying to create/write/delete on a Model based on a table_query raises an
    exception instead of a silent error.

    The table name of a ModelSQL can be overridden with a configuration file.
    This allows to work around database limitations on the length of table
    names.

    The new StateReport has been added to wizards, to simplify the code of
    wizards that run a report.
    The style on reports has been removed, experience show that this feature
    was not used.

    The PostgreSQL backend manages now schema. This allows different instances
    of Tryton sharing the same database.

    The generic foreign key to create/write user on all ModelSQL has been
    replaced by a rule that prevent to delete users. This greatly improves
    scalability in some circumstances.

    The Property field supports now float and integer values.
    A subdirectory locale/override is supported for modules that override
    translations of other modules.

Accounting

    The charts of account are no longer translatable. Instead we provide
    translated charts via a template using XSLT.

    The invoice doesn't set a unit price on the line. For this feature the
    purchase or sale module must be used.

    Some fields of the invoice like the note and the origin are editable after
    posting the invoice.

Product

    Conversion between units no longer results in silent failures but an
    explicit error is risen.

    The volume property has been added to the products.

Project

    The tree structure of the project and the time sheet have been separated,
    each object has its own one.

    The price list uses the same decimal precision as the product.

    The cost price of the employee is stored on the time sheet line for the
    date of the line. This allows to sum the costs of time sheet faster

Purchase

    The state of the purchase request is now searchable.

    The purchase requests are generated even if the rounded quantity is zero
    to allow the user to still decide to purchase more.

Stock

    Many unnecessary restrictions on the edition of move fields have been
    removed.

    The expected quantity of the inventory lines is always computed even if
    they are added manually.

    It is possible to create staging and draft moves using view locations.
    Those locations will have to be changed to really do the move.

    The inventory uses the grouping feature to create the moves. This allows
    to easily support the lot (or any other extra field).
  • Loading branch information
richard committed Nov 22, 2015
1 parent 8852559 commit 8def203
Show file tree
Hide file tree
Showing 87 changed files with 800 additions and 443 deletions.
10 changes: 5 additions & 5 deletions devel/py-proteus/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.3 2015/11/03 03:29:12 agc Exp $
$NetBSD: distinfo,v 1.4 2015/11/22 08:05:07 richard Exp $

SHA1 (tryton-3.6/proteus-3.6.1.tar.gz) = f0642a6449565d03d657af55ac467d1bc5dc0357
RMD160 (tryton-3.6/proteus-3.6.1.tar.gz) = 70f2f874f4823f4cfaf5721cf364fc0d4b5d9c09
SHA512 (tryton-3.6/proteus-3.6.1.tar.gz) = f63b435a46e5e3f33e42b45d33a74c10ad208410dd31eae9cd90a4205e2dfd8fb883fb05d62627ea1080fc7a28cf4782dfb4d3c048c66b1276db1c441bbf4992
Size (tryton-3.6/proteus-3.6.1.tar.gz) = 23400 bytes
SHA1 (tryton-3.8/proteus-3.8.0.tar.gz) = 18a47cf46544d4971d68a1e14a350ebe4de86cbf
RMD160 (tryton-3.8/proteus-3.8.0.tar.gz) = 6f76cd3f255c4c134d8295c6738236271935f7ea
SHA512 (tryton-3.8/proteus-3.8.0.tar.gz) = d448ad9a535a2cb70181777b19da65e488ef2eeed5d9f09ef12b95877984305dbdb4ae02571de7679454d247b31080ec703b6be35db0699a2e76106ef6578b96
Size (tryton-3.8/proteus-3.8.0.tar.gz) = 37154 bytes
4 changes: 3 additions & 1 deletion devel/py-tryton/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.17 2015/08/24 14:49:41 richard Exp $
# $NetBSD: Makefile,v 1.18 2015/11/22 08:05:07 richard Exp $
TRYTON_MODULE_NAME= tryton
.include "../../devel/py-trytond/Makefile.common"
CATEGORIES= devel python
Expand All @@ -16,6 +16,8 @@ PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX}

.include "options.mk"

DEPENDS+= ${PYPKGPREFIX}-chardet-[0-9]*:../../converters/py-chardet

.if ${OPSYS} == "Darwin"
DEPENDS+= ${PYPKGPREFIX}-py2app-[0-9]*:../../devel/py-py2app
.endif
Expand Down
181 changes: 97 additions & 84 deletions devel/py-tryton/PLIST
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.4 2015/08/24 14:49:41 richard Exp $
@comment $NetBSD: PLIST,v 1.5 2015/11/22 08:05:07 richard Exp $
bin/tryton${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
Expand Down Expand Up @@ -75,6 +75,9 @@ ${PYSITELIB}/tryton/common/environment.pyo
${PYSITELIB}/tryton/common/focus.py
${PYSITELIB}/tryton/common/focus.pyc
${PYSITELIB}/tryton/common/focus.pyo
${PYSITELIB}/tryton/common/htmltextbuffer.py
${PYSITELIB}/tryton/common/htmltextbuffer.pyc
${PYSITELIB}/tryton/common/htmltextbuffer.pyo
${PYSITELIB}/tryton/common/placeholder_entry.py
${PYSITELIB}/tryton/common/placeholder_entry.pyc
${PYSITELIB}/tryton/common/placeholder_entry.pyo
Expand All @@ -93,6 +96,96 @@ ${PYSITELIB}/tryton/common/treeviewcontrol.pyo
${PYSITELIB}/tryton/config.py
${PYSITELIB}/tryton/config.pyc
${PYSITELIB}/tryton/config.pyo
${PYSITELIB}/tryton/data/locale/bg_BG/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/bg_BG/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/ca_ES/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/ca_ES/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/cs_CZ/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/cs_CZ/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/de_DE/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/de_DE/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/es_AR/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/es_AR/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/es_CO/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/es_CO/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/es_EC/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/es_EC/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/es_ES/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/es_ES/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/es_MX/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/es_MX/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/fr_FR/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/fr_FR/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/it_IT/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/it_IT/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/lt_LT/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/lt_LT/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/nl_NL/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/nl_NL/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/ru_RU/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/ru_RU/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/locale/sl_SI/LC_MESSAGES/tryton.mo
${PYSITELIB}/tryton/data/locale/sl_SI/LC_MESSAGES/tryton.po
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-attachment-hi.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-attachment.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-bookmark.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-clear.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-close.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-connect.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-copy.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-delete.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-dialog-error.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-dialog-information.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-dialog-warning.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-disconnect.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-executable.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-find-replace.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-find.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-folder-new.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-fullscreen.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-go-home.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-go-jump.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-go-next.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-go-previous.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-help.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-icon.png
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-icon.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-list-add.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-list-remove.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-locale.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-lock.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-log-out.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-mail-message-new.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-mail-message.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-new.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-noimage.png
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-open.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-preferences-system-session.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-preferences-system.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-preferences.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-print-email.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-print-open.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-print.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-refresh.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-save-as.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-save.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-star.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-start-here.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-system-file-manager.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-system.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-text-background.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-text-foreground.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-text-markup.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-undo.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-unstar.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton-web-browser.svg
${PYSITELIB}/tryton/data/pixmaps/tryton/tryton.png
${PYSITELIB}/tryton/exceptions.py
${PYSITELIB}/tryton/exceptions.pyc
${PYSITELIB}/tryton/exceptions.pyo
Expand Down Expand Up @@ -135,6 +228,9 @@ ${PYSITELIB}/tryton/gui/window/email.pyo
${PYSITELIB}/tryton/gui/window/form.py
${PYSITELIB}/tryton/gui/window/form.pyc
${PYSITELIB}/tryton/gui/window/form.pyo
${PYSITELIB}/tryton/gui/window/infobar.py
${PYSITELIB}/tryton/gui/window/infobar.pyc
${PYSITELIB}/tryton/gui/window/infobar.pyo
${PYSITELIB}/tryton/gui/window/limit.py
${PYSITELIB}/tryton/gui/window/limit.pyc
${PYSITELIB}/tryton/gui/window/limit.pyo
Expand Down Expand Up @@ -351,86 +447,3 @@ ${PYSITELIB}/tryton/signal_event.pyo
${PYSITELIB}/tryton/translate.py
${PYSITELIB}/tryton/translate.pyc
${PYSITELIB}/tryton/translate.pyo
share/locale/bg_BG/LC_MESSAGES/tryton.mo
share/locale/bg_BG/LC_MESSAGES/tryton.po
share/locale/ca_ES/LC_MESSAGES/tryton.mo
share/locale/ca_ES/LC_MESSAGES/tryton.po
share/locale/cs_CZ/LC_MESSAGES/tryton.mo
share/locale/cs_CZ/LC_MESSAGES/tryton.po
share/locale/de_DE/LC_MESSAGES/tryton.mo
share/locale/de_DE/LC_MESSAGES/tryton.po
share/locale/es_AR/LC_MESSAGES/tryton.mo
share/locale/es_AR/LC_MESSAGES/tryton.po
share/locale/es_CO/LC_MESSAGES/tryton.mo
share/locale/es_CO/LC_MESSAGES/tryton.po
share/locale/es_EC/LC_MESSAGES/tryton.mo
share/locale/es_EC/LC_MESSAGES/tryton.po
share/locale/es_ES/LC_MESSAGES/tryton.mo
share/locale/es_ES/LC_MESSAGES/tryton.po
share/locale/fr_FR/LC_MESSAGES/tryton.mo
share/locale/fr_FR/LC_MESSAGES/tryton.po
share/locale/ja_JP/LC_MESSAGES/tryton.mo
share/locale/ja_JP/LC_MESSAGES/tryton.po
share/locale/lt_LT/LC_MESSAGES/tryton.mo
share/locale/lt_LT/LC_MESSAGES/tryton.po
share/locale/nl_NL/LC_MESSAGES/tryton.mo
share/locale/nl_NL/LC_MESSAGES/tryton.po
share/locale/ru_RU/LC_MESSAGES/tryton.mo
share/locale/ru_RU/LC_MESSAGES/tryton.po
share/locale/sl_SI/LC_MESSAGES/tryton.mo
share/locale/sl_SI/LC_MESSAGES/tryton.po
share/locale/tryton.pot
share/pixmaps/tryton/tryton-attachment-hi.svg
share/pixmaps/tryton/tryton-attachment.svg
share/pixmaps/tryton/tryton-bookmark.svg
share/pixmaps/tryton/tryton-clear.svg
share/pixmaps/tryton/tryton-close.svg
share/pixmaps/tryton/tryton-connect.svg
share/pixmaps/tryton/tryton-copy.svg
share/pixmaps/tryton/tryton-delete.svg
share/pixmaps/tryton/tryton-dialog-error.svg
share/pixmaps/tryton/tryton-dialog-information.svg
share/pixmaps/tryton/tryton-dialog-warning.svg
share/pixmaps/tryton/tryton-disconnect.svg
share/pixmaps/tryton/tryton-executable.svg
share/pixmaps/tryton/tryton-find-replace.svg
share/pixmaps/tryton/tryton-find.svg
share/pixmaps/tryton/tryton-folder-new.svg
share/pixmaps/tryton/tryton-fullscreen.svg
share/pixmaps/tryton/tryton-go-home.svg
share/pixmaps/tryton/tryton-go-jump.svg
share/pixmaps/tryton/tryton-go-next.svg
share/pixmaps/tryton/tryton-go-previous.svg
share/pixmaps/tryton/tryton-help.svg
share/pixmaps/tryton/tryton-icon.png
share/pixmaps/tryton/tryton-icon.svg
share/pixmaps/tryton/tryton-list-add.svg
share/pixmaps/tryton/tryton-list-remove.svg
share/pixmaps/tryton/tryton-locale.svg
share/pixmaps/tryton/tryton-lock.svg
share/pixmaps/tryton/tryton-log-out.svg
share/pixmaps/tryton/tryton-mail-message-new.svg
share/pixmaps/tryton/tryton-mail-message.svg
share/pixmaps/tryton/tryton-new.svg
share/pixmaps/tryton/tryton-noimage.png
share/pixmaps/tryton/tryton-open.svg
share/pixmaps/tryton/tryton-preferences-system-session.svg
share/pixmaps/tryton/tryton-preferences-system.svg
share/pixmaps/tryton/tryton-preferences.svg
share/pixmaps/tryton/tryton-print-email.svg
share/pixmaps/tryton/tryton-print-open.svg
share/pixmaps/tryton/tryton-print.svg
share/pixmaps/tryton/tryton-refresh.svg
share/pixmaps/tryton/tryton-save-as.svg
share/pixmaps/tryton/tryton-save.svg
share/pixmaps/tryton/tryton-star.svg
share/pixmaps/tryton/tryton-start-here.svg
share/pixmaps/tryton/tryton-system-file-manager.svg
share/pixmaps/tryton/tryton-system.svg
share/pixmaps/tryton/tryton-text-background.svg
share/pixmaps/tryton/tryton-text-foreground.svg
share/pixmaps/tryton/tryton-text-markup.svg
share/pixmaps/tryton/tryton-undo.svg
share/pixmaps/tryton/tryton-unstar.svg
share/pixmaps/tryton/tryton-web-browser.svg
share/pixmaps/tryton/tryton.png
10 changes: 5 additions & 5 deletions devel/py-tryton/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.13 2015/11/03 03:29:17 agc Exp $
$NetBSD: distinfo,v 1.14 2015/11/22 08:05:07 richard Exp $

SHA1 (tryton-3.6/tryton-3.6.3.tar.gz) = 99df05dbe2102c3a787be2788095ace49198617c
RMD160 (tryton-3.6/tryton-3.6.3.tar.gz) = 6bc06f4c914f37c70f87b33680afe28453dc1167
SHA512 (tryton-3.6/tryton-3.6.3.tar.gz) = 629ad75bebf31693e053d75cefc3f5b0e875b4b8eaee1413c370d5b30897d2d94b27283a7611aec22664a9a0891936b430456045bd3103ab188172dd51faec44
Size (tryton-3.6/tryton-3.6.3.tar.gz) = 721843 bytes
SHA1 (tryton-3.8/tryton-3.8.2.tar.gz) = 1bf4a0e5ff5dcc7e632a44dc74dee58586500b92
RMD160 (tryton-3.8/tryton-3.8.2.tar.gz) = 3118a74fd6d6a508645c8d8a02e51646f0ee9a39
SHA512 (tryton-3.8/tryton-3.8.2.tar.gz) = 4b1626ed95a229ea59bfbec50a8b51ae8412e46ad7150cbf3d05162c479ddfc053d570b2925107eeddcf914e346055db4508cde6ee66583cece6d3c86c00118b
Size (tryton-3.8/tryton-3.8.2.tar.gz) = 810794 bytes
26 changes: 13 additions & 13 deletions devel/py-trytond/Makefile.common
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile.common,v 1.7 2015/09/17 14:28:01 richard Exp $
# $NetBSD: Makefile.common,v 1.8 2015/11/22 08:05:07 richard Exp $

# used by meta-pkgs/py-tryton-platform/Makefile
# used by devel/py-proteus/Makefile
Expand Down Expand Up @@ -45,16 +45,16 @@
# used by time/py-trytond-calendar/Makefile
# used by time/py-trytond-company-work-time/Makefile

TRYTON_BASEVER= 3.6
TRYTON_BASEVER= 3.8

#specific module revisions:
MODULE_REVISION.proteus= 1
MODULE_REVISION.tryton= 3
MODULE_REVISION.trytond= 3
MODULE_REVISION.trytond_account= 1
MODULE_REVISION.trytond_account_asset= 1
#MODULE_REVISION.proteus= 1
MODULE_REVISION.tryton= 2
#MODULE_REVISION.trytond= 3
#MODULE_REVISION.trytond_account= 1
#MODULE_REVISION.trytond_account_asset= 1
#MODULE_REVISION.trytond_account_fr= 0
MODULE_REVISION.trytond_account_invoice= 1
#MODULE_REVISION.trytond_account_invoice= 1
#MODULE_REVISION.trytond_account_invoice_history= 1
#MODULE_REVISION.trytond_account_invoice_line_standalone= 1
#MODULE_REVISION.trytond_account_invoice_stock= 1
Expand All @@ -69,7 +69,7 @@ MODULE_REVISION.trytond_account_invoice= 1
#MODULE_REVISION.trytond_analytic_purchase= 1
#MODULE_REVISION.trytond_analytic_sale= 1
#MODULE_REVISION.trytond_bank= 1
MODULE_REVISION.trytond_calendar= 1
#MODULE_REVISION.trytond_calendar= 1
#MODULE_REVISION.trytond_carrier= 1
#MODULE_REVISION.trytond_carrier_percentage= 1
#MODULE_REVISION.trytond_carrier_weight= 1
Expand All @@ -80,20 +80,20 @@ MODULE_REVISION.trytond_calendar= 1
#MODULE_REVISION.trytond_dashboard= 1
#MODULE_REVISION.trytond_google_maps= 1
#MODULE_REVISION.trytond_ldap_authentication= 1
MODULE_REVISION.trytond_party= 1
#MODULE_REVISION.trytond_party= 1
#MODULE_REVISION.trytond_party_relationship= 1
#MODULE_REVISION.trytond_party_siret= 1
#MODULE_REVISION.trytond_party_vcarddav= 1
MODULE_REVISION.trytond_product= 1
#MODULE_REVISION.trytond_product= 1
#MODULE_REVISION.trytond_product_attribute= 1
#MODULE_REVISION.trytond_product_cost_fifo= 1
#MODULE_REVISION.trytond_product_cost_history= 1
#MODULE_REVISION.trytond_product_measurements= 1
#MODULE_REVISION.trytond_product_price_list= 1
#MODULE_REVISION.trytond_production= 1
#MODULE_REVISION.trytond_project= 1
MODULE_REVISION.trytond_project_invoice= 1
MODULE_REVISION.trytond_project_plan= 1
#MODULE_REVISION.trytond_project_invoice= 1
#MODULE_REVISION.trytond_project_plan= 1
#MODULE_REVISION.trytond_project_revenue= 1
#MODULE_REVISION.trytond_purchase= 1
#MODULE_REVISION.trytond_purchase_invoice_line_standalone= 1
Expand Down
31 changes: 23 additions & 8 deletions devel/py-trytond/PLIST
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.4 2015/08/24 14:49:41 richard Exp $
@comment $NetBSD: PLIST,v 1.5 2015/11/22 08:05:07 richard Exp $
bin/trytond${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
Expand Down Expand Up @@ -110,21 +110,24 @@ ${PYSITELIB}/trytond/ir/locale/es_AR.po
${PYSITELIB}/trytond/ir/locale/es_CO.po
${PYSITELIB}/trytond/ir/locale/es_EC.po
${PYSITELIB}/trytond/ir/locale/es_ES.po
${PYSITELIB}/trytond/ir/locale/es_MX.po
${PYSITELIB}/trytond/ir/locale/fr_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/lt_LT.po
${PYSITELIB}/trytond/ir/locale/nl_NL.po
${PYSITELIB}/trytond/ir/locale/pt_BR.po
${PYSITELIB}/trytond/ir/locale/ru_RU.po
${PYSITELIB}/trytond/ir/locale/sl_SI.po
${PYSITELIB}/trytond/ir/model.py
${PYSITELIB}/trytond/ir/model.pyc
${PYSITELIB}/trytond/ir/model.pyo
${PYSITELIB}/trytond/ir/model.xml
${PYSITELIB}/trytond/ir/module/__init__.py
${PYSITELIB}/trytond/ir/module/__init__.pyc
${PYSITELIB}/trytond/ir/module/__init__.pyo
${PYSITELIB}/trytond/ir/module/module.py
${PYSITELIB}/trytond/ir/module/module.pyc
${PYSITELIB}/trytond/ir/module/module.pyo
${PYSITELIB}/trytond/ir/module/module.xml
${PYSITELIB}/trytond/ir/module.py
${PYSITELIB}/trytond/ir/module.pyc
${PYSITELIB}/trytond/ir/module.pyo
${PYSITELIB}/trytond/ir/module.xml
${PYSITELIB}/trytond/ir/property.py
${PYSITELIB}/trytond/ir/property.pyc
${PYSITELIB}/trytond/ir/property.pyo
Expand Down Expand Up @@ -423,8 +426,14 @@ ${PYSITELIB}/trytond/res/locale/es_AR.po
${PYSITELIB}/trytond/res/locale/es_CO.po
${PYSITELIB}/trytond/res/locale/es_EC.po
${PYSITELIB}/trytond/res/locale/es_ES.po
${PYSITELIB}/trytond/res/locale/es_MX.po
${PYSITELIB}/trytond/res/locale/fr_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/lt_LT.po
${PYSITELIB}/trytond/res/locale/nl_NL.po
${PYSITELIB}/trytond/res/locale/pt_BR.po
${PYSITELIB}/trytond/res/locale/ru_RU.po
${PYSITELIB}/trytond/res/locale/sl_SI.po
${PYSITELIB}/trytond/res/res.xml
Expand Down Expand Up @@ -623,11 +632,17 @@ ${PYSITELIB}/trytond/webdav/locale/ca_ES.po
${PYSITELIB}/trytond/webdav/locale/cs_CZ.po
${PYSITELIB}/trytond/webdav/locale/de_DE.po
${PYSITELIB}/trytond/webdav/locale/es_AR.po
${PYSITELIB}/trytond/webdav/locale/es_MX.po
${PYSITELIB}/trytond/webdav/locale/es_CO.po
${PYSITELIB}/trytond/webdav/locale/es_EC.po
${PYSITELIB}/trytond/webdav/locale/es_ES.po
${PYSITELIB}/trytond/webdav/locale/fr_FR.po
${PYSITELIB}/trytond/webdav/locale/hu_HU.po
${PYSITELIB}/trytond/webdav/locale/it_IT.po
${PYSITELIB}/trytond/webdav/locale/ja_JP.po
${PYSITELIB}/trytond/webdav/locale/lt_LT.po
${PYSITELIB}/trytond/webdav/locale/nl_NL.po
${PYSITELIB}/trytond/webdav/locale/pt_BR.po
${PYSITELIB}/trytond/webdav/locale/ru_RU.po
${PYSITELIB}/trytond/webdav/locale/sl_SI.po
${PYSITELIB}/trytond/webdav/tryton.cfg
Expand Down
10 changes: 5 additions & 5 deletions devel/py-trytond/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.8 2015/11/03 03:29:17 agc Exp $
$NetBSD: distinfo,v 1.9 2015/11/22 08:05:07 richard Exp $

SHA1 (tryton-3.6/trytond-3.6.3.tar.gz) = 9e6617d6b63c0774833cca8b5d5fd684d94df1fa
RMD160 (tryton-3.6/trytond-3.6.3.tar.gz) = b4c6cab65484ef58ba59fe71907ecf3667c2b2c0
SHA512 (tryton-3.6/trytond-3.6.3.tar.gz) = e1f994b05bd53911dab8b6e7b3b19b8c94d7beb6739b3a72fae41b769da67d91676ed0f1b857abb1af48aebb377b0b7316b28049f1099c632693e8868cbe1e5d
Size (tryton-3.6/trytond-3.6.3.tar.gz) = 506636 bytes
SHA1 (tryton-3.8/trytond-3.8.0.tar.gz) = ad676dc77efd54bdf5fd2201147ae61785a02526
RMD160 (tryton-3.8/trytond-3.8.0.tar.gz) = 11b02f64b9edd28292a7ec3879cbe536be45f05f
SHA512 (tryton-3.8/trytond-3.8.0.tar.gz) = b61a86a12e8b644bfdce9dead15cdc5935be0051360da16010374a9476fba8015196088fb204038cf3788d027e270c7d182a6f3b0e26039cd21e4206d6e6abc9
Size (tryton-3.8/trytond-3.8.0.tar.gz) = 579722 bytes
Loading

0 comments on commit 8def203

Please sign in to comment.