summaryrefslogtreecommitdiff
path: root/gnu/packages/tryton.scm
AgeCommit message (Collapse)Author
2022-01-14gnu: trytond-*: Fix grammar.Vagrant Cascadian
* gnu/packages/tryton.scm (trytond-account-deposit)[description]: Fix grammar. (trytond-account-deposit)[description]: Likewise. (trytond-account-es)[description]: Likewise. (trytond-account-invoice-defer)[description]: Likewise. (trytond-account-invoice-line-standalone)[description]: Likewise. (trytond-account-payment-clearing)[description]: Likewise. (trytond-account-payment-sepa)[description]: Likewise. (trytond-account-statement)[description]: Likewise. (trytond-account-stock-landed-cost)[description]: Likewise. (trytond-account-tax-cash)[description]: Likewise. (trytond-analytic-invoice)[description]: Likewise. (trytond-analytic-purchase)[description]: Likewise. (trytond-analytic-sale)[description]: Likewise. (trytond-commission)[description]: Likewise. (trytond-commission-waiting)[description]: Likewise. (trytond-company-work-time)[description]: Likewise. (trytond-customs)[description]: Likewise. (trytond-ldap-authentication)[description]: Likewise. (trytond-notification-email)[description]: Likewise. (trytond-party-relationship)[description]: Likewise. (trytond-production-outsourcing)[description]: Likewise. (trytond-production-split)[description]: Likewise. (trytond-production-work)[description]: Likewise. (trytond-production-work-timesheet)[description]: Likewise. (trytond-sale-extra)[description]: Likewise. (trytond-sale-promotion)[description]: Likewise. (trytond-stock-consignment)[description]: Likewise. (trytond-stock-location-move)[description]: Likewise. (trytond-stock-lot-unit)[description]: Likewise. (trytond-stock-package)[description]: Likewise. (trytond-stock-split)[description]: Likewise. (trytond-stock-supply-day)[description]: Likewise. (trytond-timesheet)[description]: Likewise.
2021-12-18gnu: trytond: Ensure all modules are found.Hartmut Goebel
If the python package matching trytond is not installed alongside to trytond, PYTHONPATH is not set (or pointing to a wrong version) and trytond (and the trytond tools) would not find the trytond modules. This change introduces a new native-search-path GUIX_TRYTOND_MODULES_PATH. Trytond gets patched to honor this environment variable. Thanks to Maxim Cournoyer, whose code for guix-pythonpath-search-path was the template for guix-trytonpath-search-path. * gnu/packages/patches/trytond-add-guix_trytond_path.patch: New file. * gnu/local.mk: (dist_patch_DATA): Add it. * gnu/packages/tryton.scm (trytond): Use it. [native-search-paths]: New element. (guix-trytonpath-search-path): New function.
2021-12-18gnu: trytond: Fix import of trytond modules.Hartmut Goebel
For adding modules, trytond uses entry-points, anyhow relying on the modules being named "trytond.modules.xxx" and being placed in the same filesystem path as "trytond.modules". The package "trytond.modules" is not a namespace module, anyhow trytond modules must be sub-modules of "trytond.modules". This works well if all packages are installed into the same filesystem path "…/trytond/modules": The Python importer will find all sub_modules at this place. Anyhow, in Guix, modules don't share the same filesystem path and the Python importer will not find them. Solution is to add all trytond module's locations to "trytond.modules._path__". This will make "trytond.module" behave much like a namespace module and the importer pick up the module. * gnu/packages/patches/trytond-add-egg-modules-to-path.patch: New file. * gnu/packages/tryton.scm (trytond): Use it. * gnu/local.mk (dist_patch_DATA): Add it
2021-12-13gnu: Simplify package inputs.Ludovic Courtès
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
2021-11-21gnu: trytond: Avoid top-level references to other modules.Ludovic Courtès
This delays references to variables defined in other modules. * gnu/packages/tryton.scm (%standard-trytond-native-inputs): Turn into a thunk. Adjust users.
2021-11-21gnu: trytond: Build against python-werkzeug 1.0.Ludovic Courtès
* gnu/packages/tryton.scm (trytond)[propagated-inputs]: Replace PYTHON-WERKZEUG by PYTHON-WERKZEUG-1.0. * gnu/packages/tryton.scm (%standard-trytond-native-inputs): Likewise.
2021-11-11gnu: gtk: Replace gdk-pixbuf+svg by librsvg.Maxim Cournoyer
With the addition of a profile hook for computing the gdk-pixbuf loaders cache file, there is no longer a need for gdk-pixbuf+svg, and librsvg can propagate gdk-pixbuf without fear, so replace the former for the latter. The replacement was automated with the following command: $ git grep -l ',gdk-pixbuf+svg)' \ | xargs sed 's/(".*" ,gdk-pixbuf+svg)/("librsvg" ,librsvg)/' -i * gnu/packages/gtk.scm (gdk-pixbuf+svg): Delete package. (gtk+-2)[propagated-inputs]: Replace gdk-pixbuf+svg with librsvg. (gtk+)[propagated-inputs]: Likewise. * gnu/packages/gnome.scm (gdk-pixbuf+svg): Add deprecated package.
2021-09-29gnu: trytond-stock-forecast: Fix typo in description.Tobias Geerinckx-Rice
* gnu/packages/tryton.scm (trytond-stock-forecast)[description]: Fix ‘mecanisms’ typo.
2021-09-21gnu: Add trytond-web-user.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-web-user): New variable.
2021-09-21gnu: Add trytond-web-shortener.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-web-shortener): New variable.
2021-09-21gnu: Add trytond-web-shop-vue-storefront-stripe.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-web-shop-vue-storefront-stripe): New variable.
2021-09-21gnu: Add trytond-web-shop-vue-storefront.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-web-shop-vue-storefront): New variable.
2021-09-21gnu: Add trytond-web-shop.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-web-shop): New variable.
2021-09-21gnu: Add trytond-user-role.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-user-role): New variable.
2021-09-21gnu: Add trytond-timesheet-cost.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-timesheet-cost): New variable.
2021-09-21gnu: Add trytond-timesheet.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-timesheet): New variable.
2021-09-21gnu: Add trytond-stock-supply-production.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-supply-production): New variable.
2021-09-21gnu: Add trytond-stock-supply-forecast.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-supply-forecast): New variable.
2021-09-21gnu: Add trytond-stock-supply-day.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-supply-day): New variable.
2021-09-21gnu: Add trytond-stock-split.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-split): New variable.
2021-09-21gnu: Add trytond-stock-shipment-measurements.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-shipment-measurements): New variable.
2021-09-21gnu: Add trytond-stock-shipment-cost.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-shipment-cost): New variable.
2021-09-21gnu: Add trytond-stock-secondary-unit.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-secondary-unit): New variable.
2021-09-21gnu: Add trytond-stock-quantity-issue.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-quantity-issue): New variable.
2021-09-21gnu: Add trytond-stock-quantity-early-planning.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-quantity-early-planning): New variable.
2021-09-21gnu: Add trytond-stock-product-location.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-product-location): New variable.
2021-09-21gnu: Add trytond-stock-package-shipping-ups.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-package-shipping-ups): New variable.
2021-09-21gnu: Add trytond-stock-package-shipping.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-package-shipping): New variable.
2021-09-21gnu: Add trytond-stock-package.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-package): New variable.
2021-09-21gnu: Add trytond-stock-lot-unit.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-lot-unit): New variable.
2021-09-21gnu: Add trytond-stock-lot-sled.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-lot-sled): New variable.
2021-09-21gnu: Add trytond-stock-location-sequence.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-location-sequence): New variable.
2021-09-21gnu: Add trytond-stock-location-move.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-location-move): New variable.
2021-09-21gnu: Add trytond-stock-inventory-location.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-inventory-location): New variable.
2021-09-21gnu: Add trytond-stock-forecast.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-forecast): New variable.
2021-09-21gnu: Add trytond-stock-consignment.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-consignment): New variable.
2021-09-21gnu: Add trytond-stock-assign-manual.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-stock-assign-manual): New variable.
2021-09-21gnu: Add trytond-sale-supply-production.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-supply-production): New variable.
2021-09-21gnu: Add trytond-sale-supply-drop-shipment.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-supply-drop-shipment): New variable.
2021-09-21gnu: Add trytond-sale-supply.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-supply): New variable.
2021-09-21gnu: Add trytond-sale-subscription-asset.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-subscription-asset): New variable.
2021-09-21gnu: Add trytond-sale-subscription.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-subscription): New variable.
2021-09-21gnu: Add trytond-sale-stock-quantity.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-stock-quantity): New variable.
2021-09-21gnu: Add trytond-sale-shipment-tolerance.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-shipment-tolerance): New variable.
2021-09-21gnu: Add trytond-sale-shipment-grouping.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-shipment-grouping): New variable.
2021-09-21gnu: Add trytond-sale-shipment-cost.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-shipment-cost): New variable.
2021-09-21gnu: Add trytond-sale-secondary-unit.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-secondary-unit): New variable.
2021-09-21gnu: Add trytond-sale-promotion-coupon.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-promotion-coupon): New variable.
2021-09-21gnu: Add trytond-sale-promotion.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-promotion): New variable.
2021-09-21gnu: Add trytond-sale-product-customer.Hartmut Goebel
* gnu/packages/tryton.scm (trytond-sale-product-customer): New variable.