Archived
1
0
Fork 0

gnu: tryton modules: Remove "python"- prefix from name.

Remove the `python-` prefix from all trytond module packages. The aspect that
these packages are plugins for trytond is much more relevant than that they
are written in Python.

* gnu/packages/tryton.scm (python-trytond-account,
python-trytond-account-invoice, python-trytond-account-invoice-stock,
python-trytond-account-product, python-trytond-analytic-account,
python-trytond-company, python-trytond-counpython-try,
python-trytond-currency, python-trytond-party, python-trytond-product,
python-trytond-purchase, python-trytond-purchase-request,
python-trytond-stock, python-trytond-stock-lot, python-trytond-stock-supply):
New deprecated packages.
(trytond-account, trytond-account-invoice, trytond-account-invoice-stock,
trytond-account-product, trytond-analytic-account, trytond-company,
trytond-country, trytond-currency, trytond-party, trytond-product,
trytond-purchase, trytond-purchase-request, trytond-stock, trytond-stock-lot,
trytond-stock-supply): Renamed from the respective above.
[propagated-inputs]: Adjusted and re-ordered.
This commit is contained in:
Hartmut Goebel 2021-08-26 12:57:31 +02:00
parent 1422caed2b
commit da0a8a1f6b
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -2,6 +2,7 @@
;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com> ;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be> ;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
;;; Copyright © 2021 Hartmut Goebel <h.goebel@crazy-compilers.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -170,9 +171,9 @@ the build system."
;;; Tryton modules - please sort alphabetically ;;; Tryton modules - please sort alphabetically
;;; ;;;
(define-public python-trytond-account (define-public trytond-account
(package (package
(name "python-trytond-account") (name "trytond-account")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -196,12 +197,10 @@ the build system."
`(("python-dateutil" ,python-dateutil) `(("python-dateutil" ,python-dateutil)
("python-simpleeval" ,python-simpleeval) ("python-simpleeval" ,python-simpleeval)
("python-sql" ,python-sql) ("python-sql" ,python-sql)
("python-trytond-company" ("trytond" ,trytond)
,python-trytond-company) ("trytond-company" ,trytond-company)
("python-trytond-currency" ("trytond-currency" ,trytond-currency)
,python-trytond-currency) ("trytond-party" ,trytond-party)))
("python-trytond-party" ,python-trytond-party)
("trytond" ,trytond)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module for accounting") (synopsis "Tryton module for accounting")
(description (description
@ -209,9 +208,12 @@ the build system."
most of accounting needs.") most of accounting needs.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-account-invoice (define-public python-trytond-account
(deprecated-package "python-trytond-account" trytond-account))
(define-public trytond-account-invoice
(package (package
(name "python-trytond-account-invoice") (name "trytond-account-invoice")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -234,18 +236,13 @@ most of accounting needs.")
(propagated-inputs (propagated-inputs
`(("python-dateutil" ,python-dateutil) `(("python-dateutil" ,python-dateutil)
("python-sql" ,python-sql) ("python-sql" ,python-sql)
("python-trytond-account" ("trytond" ,trytond)
,python-trytond-account) ("trytond-account" ,trytond-account)
("python-trytond-account-product" ("trytond-account-product" ,trytond-account-product)
,python-trytond-account-product) ("trytond-company" ,trytond-company)
("python-trytond-company" ("trytond-currency" ,trytond-currency)
,python-trytond-company) ("trytond-party" ,trytond-party)
("python-trytond-currency" ("trytond-product" ,trytond-product)))
,python-trytond-currency)
("python-trytond-party" ,python-trytond-party)
("python-trytond-product"
,python-trytond-product)
("trytond" ,trytond)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module for invoicing") (synopsis "Tryton module for invoicing")
(description (description
@ -253,9 +250,12 @@ most of accounting needs.")
term.") term.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-account-invoice-stock (define-public python-trytond-account-invoice
(deprecated-package "python-trytond-account-invoice" trytond-account-invoice))
(define-public trytond-account-invoice-stock
(package (package
(name "python-trytond-account-invoice-stock") (name "trytond-account-invoice-stock")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -280,12 +280,10 @@ term.")
("python-werkzeug" ,python-werkzeug) ("python-werkzeug" ,python-werkzeug)
("python-wrapt" ,python-wrapt))) ("python-wrapt" ,python-wrapt)))
(propagated-inputs (propagated-inputs
`(("python-trytond-account-invoice" `(("trytond" ,trytond)
,python-trytond-account-invoice) ("trytond-account-invoice" ,trytond-account-invoice)
("python-trytond-product" ("trytond-product" ,trytond-product)
,python-trytond-product) ("trytond-stock" ,trytond-stock)))
("python-trytond-stock" ,python-trytond-stock)
("trytond" ,trytond)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module to link stock and invoice") (synopsis "Tryton module to link stock and invoice")
(description (description
@ -294,9 +292,13 @@ lines and stock moves. The unit price of the stock move is updated with the
average price of the posted invoice lines that are linked to it.") average price of the posted invoice lines that are linked to it.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-account-product (define-public python-trytond-account-invoice-stock
(deprecated-package
"python-trytond-account-invoice-stock" trytond-account-invoice-stock))
(define-public trytond-account-product
(package (package
(name "python-trytond-account-product") (name "trytond-account-product")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -319,15 +321,11 @@ average price of the posted invoice lines that are linked to it.")
("python-werkzeug" ,python-werkzeug) ("python-werkzeug" ,python-werkzeug)
("python-wrapt" ,python-wrapt))) ("python-wrapt" ,python-wrapt)))
(propagated-inputs (propagated-inputs
`(("python-trytond-account" `(("trytond" ,trytond)
,python-trytond-account) ("trytond-account" ,trytond-account)
("python-trytond-analytic-account" ("trytond-analytic-account" ,trytond-analytic-account)
,python-trytond-analytic-account) ("trytond-company" ,trytond-company)
("python-trytond-company" ("trytond-product" ,trytond-product)))
,python-trytond-company)
("python-trytond-product"
,python-trytond-product)
("trytond" ,trytond)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module to add accounting on product") (synopsis "Tryton module to add accounting on product")
(description (description
@ -335,9 +333,12 @@ average price of the posted invoice lines that are linked to it.")
and category.") and category.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-analytic-account (define-public python-trytond-account-product
(deprecated-package "python-trytond-account-product" trytond-account-product))
(define-public trytond-analytic-account
(package (package
(name "python-trytond-analytic-account") (name "trytond-analytic-account")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -360,14 +361,11 @@ and category.")
("python-wrapt" ,python-wrapt))) ("python-wrapt" ,python-wrapt)))
(propagated-inputs (propagated-inputs
`(("python-sql" ,python-sql) `(("python-sql" ,python-sql)
("python-trytond-account" ("trytond" ,trytond)
,python-trytond-account) ("trytond-account" ,trytond-account)
("python-trytond-company" ("trytond-company" ,trytond-company)
,python-trytond-company) ("trytond-currency" ,trytond-currency)
("python-trytond-currency" ("trytond-party" ,trytond-party)))
,python-trytond-currency)
("python-trytond-party" ,python-trytond-party)
("trytond" ,trytond)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module for analytic accounting") (synopsis "Tryton module for analytic accounting")
(description (description
@ -375,9 +373,13 @@ and category.")
required to analyse accounting using multiple different axes.") required to analyse accounting using multiple different axes.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-company (define-public python-trytond-analytic-account
(deprecated-package
"python-trytond-analytic-account" trytond-analytic-account))
(define-public trytond-company
(package (package
(name "python-trytond-company") (name "trytond-company")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -400,10 +402,9 @@ required to analyse accounting using multiple different axes.")
("python-werkzeug" ,python-werkzeug) ("python-werkzeug" ,python-werkzeug)
("python-wrapt" ,python-wrapt))) ("python-wrapt" ,python-wrapt)))
(propagated-inputs (propagated-inputs
`(("python-trytond-currency" `(("trytond" ,trytond)
,python-trytond-currency) ("trytond-currency" ,trytond-currency)
("python-trytond-party" ,python-trytond-party) ("trytond-party" ,trytond-party)))
("trytond" ,trytond)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module with companies and employees") (synopsis "Tryton module with companies and employees")
(description (description
@ -411,9 +412,12 @@ required to analyse accounting using multiple different axes.")
company and employee and extend the user model.") company and employee and extend the user model.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-country (define-public python-trytond-company
(deprecated-package "python-trytond-company" trytond-company))
(define-public trytond-country
(package (package
(name "python-trytond-country") (name "trytond-country")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -445,9 +449,12 @@ company and employee and extend the user model.")
"This package provides a Tryton module with countries.") "This package provides a Tryton module with countries.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-currency (define-public python-trytond-country
(deprecated-package "python-trytond-country" trytond-country))
(define-public trytond-currency
(package (package
(name "python-trytond-currency") (name "trytond-currency")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -480,9 +487,12 @@ company and employee and extend the user model.")
currency and rate.") currency and rate.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-party (define-public python-trytond-currency
(deprecated-package "python-trytond-currency" trytond-currency))
(define-public trytond-party
(package (package
(name "python-trytond-party") (name "trytond-party")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -507,8 +517,8 @@ currency and rate.")
(propagated-inputs (propagated-inputs
`(("python-sql" ,python-sql) `(("python-sql" ,python-sql)
("python-stnum" ,python-stdnum) ("python-stnum" ,python-stdnum)
("python-trytond-country" ,python-trytond-country) ("trytond" ,trytond)
("trytond" ,trytond))) ("trytond-country" ,trytond-country)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module for parties and addresses") (synopsis "Tryton module for parties and addresses")
(description (description
@ -516,9 +526,12 @@ currency and rate.")
addresses.") addresses.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-product (define-public python-trytond-party
(deprecated-package "python-trytond-party" trytond-party))
(define-public trytond-product
(package (package
(name "python-trytond-product") (name "trytond-product")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -542,9 +555,8 @@ addresses.")
(propagated-inputs (propagated-inputs
`(("python-sql" ,python-sql) `(("python-sql" ,python-sql)
("python-stdnum" ,python-stdnum) ("python-stdnum" ,python-stdnum)
("python-trytond-company" ("trytond" ,trytond)
,python-trytond-company) ("trytond-company" ,trytond-company)))
("trytond" ,trytond)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module with products") (synopsis "Tryton module with products")
(description (description
@ -552,9 +564,12 @@ addresses.")
Template and Product.") Template and Product.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-purchase (define-public python-trytond-product
(deprecated-package "python-trytond-product" trytond-product))
(define-public trytond-purchase
(package (package
(name "python-trytond-purchase") (name "trytond-purchase")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -577,32 +592,28 @@ Template and Product.")
("python-wrapt" ,python-wrapt))) ("python-wrapt" ,python-wrapt)))
(propagated-inputs (propagated-inputs
`(("python-sql" ,python-sql) `(("python-sql" ,python-sql)
("python-trytond-account" ("trytond" ,trytond)
,python-trytond-account) ("trytond-account" ,trytond-account)
("python-trytond-account-invoice" ("trytond-account-invoice" ,trytond-account-invoice)
,python-trytond-account-invoice) ("trytond-account-invoice-stock" ,trytond-account-invoice-stock)
("python-trytond-account-invoice-stock" ("trytond-account-product" ,trytond-account-product)
,python-trytond-account-invoice-stock) ("trytond-company" ,trytond-company)
("python-trytond-account-product" ("trytond-currency" ,trytond-currency)
,python-trytond-account-product) ("trytond-party" ,trytond-party)
("python-trytond-company" ("trytond-product" ,trytond-product)
,python-trytond-company) ("trytond-stock" ,trytond-stock)))
("python-trytond-currency"
,python-trytond-currency)
("python-trytond-party" ,python-trytond-party)
("python-trytond-product"
,python-trytond-product)
("python-trytond-stock" ,python-trytond-stock)
("trytond" ,trytond)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module for purchase") (synopsis "Tryton module for purchase")
(description (description
"This package provides a Tryton module that defines the Purchase model.") "This package provides a Tryton module that defines the Purchase model.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-purchase-request (define-public python-trytond-purchase
(deprecated-package "python-trytond-purchase" trytond-purchase))
(define-public trytond-purchase-request
(package (package
(name "python-trytond-purchase-request") (name "trytond-purchase-request")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -626,11 +637,9 @@ Template and Product.")
("python-werkzeug" ,python-werkzeug) ("python-werkzeug" ,python-werkzeug)
("python-wrapt" ,python-wrapt))) ("python-wrapt" ,python-wrapt)))
(propagated-inputs (propagated-inputs
`(("python-trytond-product" `(("trytond" ,trytond)
,python-trytond-product) ("trytond-product" ,trytond-product)
("python-trytond-purchase" ("trytond-purchase" ,trytond-purchase)))
,python-trytond-purchase)
("trytond" ,trytond)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module for purchase requests") (synopsis "Tryton module for purchase requests")
(description (description
@ -639,9 +648,13 @@ Purchase Requests which are central points to collect purchase requests
generated by other process from Tryton.") generated by other process from Tryton.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-stock (define-public python-trytond-purchase-request
(deprecated-package
"python-trytond-purchase-request" trytond-purchase-request))
(define-public trytond-stock
(package (package
(name "python-trytond-stock") (name "trytond-stock")
(version "5.8.2") (version "5.8.2")
(source (source
(origin (origin
@ -664,14 +677,11 @@ generated by other process from Tryton.")
(propagated-inputs (propagated-inputs
`(("python-simpleeval" ,python-simpleeval) `(("python-simpleeval" ,python-simpleeval)
("python-sql" ,python-sql) ("python-sql" ,python-sql)
("python-trytond-company" ("trytond" ,trytond)
,python-trytond-company) ("trytond-company" ,trytond-company)
("python-trytond-currency" ("trytond-currency" ,trytond-currency)
,python-trytond-currency) ("trytond-party" ,trytond-party)
("python-trytond-party" ,python-trytond-party) ("trytond-product" ,trytond-product)))
("python-trytond-product"
,python-trytond-product)
("trytond" ,trytond)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module for stock and inventory") (synopsis "Tryton module for stock and inventory")
(description (description
@ -681,9 +691,12 @@ between these locations, shipments for product arrivals and departures and
inventory to control and update stock levels.") inventory to control and update stock levels.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-stock-lot (define-public python-trytond-stock
(deprecated-package "python-trytond-stock" trytond-stock))
(define-public trytond-stock-lot
(package (package
(name "python-trytond-stock-lot") (name "trytond-stock-lot")
(version "5.8.2") (version "5.8.2")
(source (source
(origin (origin
@ -706,19 +719,21 @@ inventory to control and update stock levels.")
("python-werkzeug" ,python-werkzeug) ("python-werkzeug" ,python-werkzeug)
("python-wrapt" ,python-wrapt))) ("python-wrapt" ,python-wrapt)))
(propagated-inputs (propagated-inputs
`(("python-trytond-product" `(("trytond" ,trytond)
,python-trytond-product) ("trytond-product" ,trytond-product)
("python-trytond-stock" ,python-trytond-stock) ("trytond-stock" ,trytond-stock)))
("trytond" ,trytond)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module for lot of products") (synopsis "Tryton module for lot of products")
(description (description
"This package provides a Tryton module that defines lot of products.") "This package provides a Tryton module that defines lot of products.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-stock-supply (define-public python-trytond-stock-lot
(deprecated-package "python-trytond-stock-lot" trytond-stock-lot))
(define-public trytond-stock-supply
(package (package
(name "python-trytond-stock-supply") (name "trytond-stock-supply")
(version "5.8.1") (version "5.8.1")
(source (source
(origin (origin
@ -741,20 +756,19 @@ inventory to control and update stock levels.")
("python-wrapt" ,python-wrapt))) ("python-wrapt" ,python-wrapt)))
(propagated-inputs (propagated-inputs
`(("python-sql" ,python-sql) `(("python-sql" ,python-sql)
("python-trytond-account" ("trytond" ,trytond)
,python-trytond-account) ("trytond-account" ,trytond-account)
("python-trytond-party" ,python-trytond-party) ("trytond-party" ,trytond-party)
("python-trytond-product" ("trytond-product" ,trytond-product)
,python-trytond-product) ("trytond-purchase" ,trytond-purchase)
("python-trytond-purchase" ("trytond-purchase-request" ,trytond-purchase-request)
,python-trytond-purchase) ("trytond-stock" ,trytond-stock)))
("python-trytond-purchase-request"
,python-trytond-purchase-request)
("python-trytond-stock" ,python-trytond-stock)
("trytond" ,trytond)))
(home-page "https://www.tryton.org/") (home-page "https://www.tryton.org/")
(synopsis "Tryton module for stock supply") (synopsis "Tryton module for stock supply")
(description (description
"This package provides a Tryton module that adds automatic supply "This package provides a Tryton module that adds automatic supply
mechanisms and introduces the concepts of order point.") mechanisms and introduces the concepts of order point.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public python-trytond-stock-supply
(deprecated-package "python-trytond-stock-supply" trytond-stock-supply))