all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Hartmut Goebel <h.goebel@crazy-compilers.com>
To: 50295@debbugs.gnu.org
Subject: [bug#50295] [PATCH 5/6] gnu: tryton modules: Remove propagated-inputs propagated elsewhere.
Date: Tue, 31 Aug 2021 10:49:37 +0200	[thread overview]
Message-ID: <97e4f6d42d043fec46150a40d97548615da14ac8.1630398482.git.h.goebel@crazy-compilers.com> (raw)
In-Reply-To: <cover.1630398482.git.h.goebel@crazy-compilers.com>

From all tryton modules propagating `trytond` remove the packages already
propagated by `trytond`.

* gnu/packages/tryton.scm (account, account_invoice) [propagated-inputs]:
  Remove python-dateutils, python-sql.
  (analytic_account, party, product, purchase, stock,
  stock_supply) [propagated-inputs]: Remove python-sql.
---
 gnu/packages/tryton.scm | 24 +++++++-----------------
 1 file changed, 7 insertions(+), 17 deletions(-)

diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index d9acc671e1..6d8e71354f 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -199,9 +199,7 @@ the build system."
     (arguments (tryton-arguments "account"))
     (native-inputs `(,@%standard-trytond-native-inputs))
     (propagated-inputs
-     `(("python-dateutil" ,python-dateutil)
-       ("python-simpleeval" ,python-simpleeval)
-       ("python-sql" ,python-sql)
+     `(("python-simpleeval" ,python-simpleeval)
        ("trytond" ,trytond)
        ("trytond-company" ,trytond-company)
        ("trytond-currency" ,trytond-currency)
@@ -230,9 +228,7 @@ most of accounting needs.")
     (arguments (tryton-arguments "account_invoice"))
     (native-inputs `(,@%standard-trytond-native-inputs))
     (propagated-inputs
-     `(("python-dateutil" ,python-dateutil)
-       ("python-sql" ,python-sql)
-       ("trytond" ,trytond)
+     `(("trytond" ,trytond)
        ("trytond-account" ,trytond-account)
        ("trytond-account-product" ,trytond-account-product)
        ("trytond-company" ,trytond-company)
@@ -324,8 +320,7 @@ and category.")
     (arguments (tryton-arguments "analytic_account"))
     (native-inputs `(,@%standard-trytond-native-inputs))
     (propagated-inputs
-     `(("python-sql" ,python-sql)
-       ("trytond" ,trytond)
+     `(("trytond" ,trytond)
        ("trytond-account" ,trytond-account)
        ("trytond-company" ,trytond-company)
        ("trytond-currency" ,trytond-currency)
@@ -438,8 +433,7 @@ currency and rate.")
     (arguments (tryton-arguments "party" "--no-doctest"))
     (native-inputs `(,@%standard-trytond-native-inputs))
     (propagated-inputs
-     `(("python-sql" ,python-sql)
-       ("python-stnum" ,python-stdnum)
+     `(("python-stdnum" ,python-stdnum)
        ("trytond" ,trytond)
        ("trytond-country" ,trytond-country)))
     (home-page "https://www.tryton.org/")
@@ -466,8 +460,7 @@ addresses.")
     (arguments (tryton-arguments "product"))
     (native-inputs `(,@%standard-trytond-native-inputs))
     (propagated-inputs
-     `(("python-sql" ,python-sql)
-       ("python-stdnum" ,python-stdnum)
+     `(("python-stdnum" ,python-stdnum)
        ("trytond" ,trytond)
        ("trytond-company" ,trytond-company)))
     (home-page "https://www.tryton.org/")
@@ -494,8 +487,7 @@ Template and Product.")
     (arguments (tryton-arguments "purchase"))
     (native-inputs `(,@%standard-trytond-native-inputs))
     (propagated-inputs
-     `(("python-sql" ,python-sql)
-       ("trytond" ,trytond)
+     `(("trytond" ,trytond)
        ("trytond-account" ,trytond-account)
        ("trytond-account-invoice" ,trytond-account-invoice)
        ("trytond-account-invoice-stock" ,trytond-account-invoice-stock)
@@ -559,7 +551,6 @@ generated by other process from Tryton.")
     (native-inputs `(,@%standard-trytond-native-inputs))
     (propagated-inputs
      `(("python-simpleeval" ,python-simpleeval)
-       ("python-sql" ,python-sql)
        ("trytond" ,trytond)
        ("trytond-company" ,trytond-company)
        ("trytond-currency" ,trytond-currency)
@@ -617,8 +608,7 @@ inventory to control and update stock levels.")
     (arguments (tryton-arguments "stock_supply"))
     (native-inputs `(,@%standard-trytond-native-inputs))
     (propagated-inputs
-     `(("python-sql" ,python-sql)
-       ("trytond" ,trytond)
+     `(("trytond" ,trytond)
        ("trytond-account" ,trytond-account)
        ("trytond-party" ,trytond-party)
        ("trytond-product" ,trytond-product)
-- 
2.30.2





  parent reply	other threads:[~2021-08-31  8:50 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-31  8:47 [bug#50295] [PATCH 0/6] Update Tryton ERP applications and framework to 6.0.x Hartmut Goebel
2021-08-31  8:49 ` [bug#50295] [PATCH 1/6] gnu: trytond: Propagate inputs Hartmut Goebel
2021-08-31  8:49 ` [bug#50295] [PATCH 2/6] gnu: tryton: " Hartmut Goebel
2021-08-31  8:49 ` [bug#50295] [PATCH 3/6] gnu: tryton modules: Remove "python"- prefix from name Hartmut Goebel
2021-08-31  8:49 ` [bug#50295] [PATCH 4/6] gnu: tryton modules: Unify native-inputs Hartmut Goebel
2021-09-02 14:08   ` Maxime Devos
2021-09-16 10:28     ` Hartmut Goebel
2021-09-16 19:54       ` Hartmut Goebel
2021-08-31  8:49 ` Hartmut Goebel [this message]
2021-08-31  8:49 ` [bug#50295] [PATCH 6/6] gnu: tryton applications and framework: Update to 6.0.x Hartmut Goebel
2021-08-31 16:25 ` [bug#50295] [PATCH 0/6] Update Tryton ERP applications and framework " Vinicius Monego
2021-09-16 15:56 ` [bug#50295] [PATCH 4/6] gnu: tryton modules: Unify native-inputs Liliana Marie Prikler
2021-09-20 12:49   ` Hartmut Goebel
     [not found] ` <handler.50295.B.16303996502742.ack@debbugs.gnu.org>
2021-09-16 23:09   ` bug#50295: Acknowledgement ([PATCH 0/6] Update Tryton ERP applications and framework to 6.0.x.) Hartmut Goebel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=97e4f6d42d043fec46150a40d97548615da14ac8.1630398482.git.h.goebel@crazy-compilers.com \
    --to=h.goebel@crazy-compilers.com \
    --cc=50295@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.