emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#56433: closed ([PATCH] import: pypi: Add special treatment for Tryto


From: GNU bug Tracking System
Subject: bug#56433: closed ([PATCH] import: pypi: Add special treatment for Tryton package names, )
Date: Fri, 15 Jul 2022 19:17:02 +0000

Your message dated Fri, 15 Jul 2022 21:16:15 +0200
with message-id <153f0d88-8021-5f1c-1007-77e8ecb685df@crazy-compilers.com>
and subject line Re: bug#56433: [PATCH] import: pypi: Add special treatment for 
Tryton package names,
has caused the debbugs.gnu.org bug report #56433,
regarding [PATCH] import: pypi: Add special treatment for Tryton package names, 
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
56433: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=56433
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] import: pypi: Add special treatment for Tryton package names, Date: Thu, 7 Jul 2022 11:47:10 +0200
While Trytond modules are Python package, they don't have the "python-"
prefix (see also https://issues.guix.gnu.org/46057#1).  This patch disables
adding the prefix for Trytond modules when importing and updating, thus
inhibiting irritating messages like „consider removing this propagated input:
trytond-party, consider adding this propagated input: python-trytond-party“.

Handling this a special case seems appropriate since (as of now) there are
about 165 packages for Trytond and the number is growing.

* guix/import/pypi.scm(python->package-name): Don't add "python-" prefix for
  trytond packages.
---
 guix/import/pypi.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/guix/import/pypi.scm b/guix/import/pypi.scm
index 130ec769b3..ee74f6065c 100644
--- a/guix/import/pypi.scm
+++ b/guix/import/pypi.scm
@@ -162,9 +162,11 @@ or #f if there isn't any."
 (define (python->package-name name)
   "Given the NAME of a package on PyPI, return a Guix-compliant name for the
 package."
-  (if (string-prefix? "python-" name)
-      (snake-case name)
-      (string-append "python-" (snake-case name))))
+  (cond
+   ((string-prefix? "python-" name) (snake-case name))
+   ((or (string=? "trytond" name)
+        (string-prefix? "trytond-" name)) (snake-case name))
+   (#t (string-append "python-" (snake-case name)))))
 
 (define (guix-package->pypi-name package)
   "Given a Python PACKAGE built from pypi.org, return the name of the

base-commit: 2b883504288fc48ed1ae80620e664fe5216766c7
-- 
2.30.4




--- End Message ---
--- Begin Message --- Subject: Re: bug#56433: [PATCH] import: pypi: Add special treatment for Tryton package names, Date: Fri, 15 Jul 2022 21:16:15 +0200 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.10.0 Thanks for the review. As you suggested, I added an example and pushed as 2e0b7867fe89fcfb0523a85635ecc3e1f9484fcd

--
Regards
Hartmut Goebel

| Hartmut Goebel          | h.goebel@crazy-compilers.com               |
| www.crazy-compilers.com | compilers which you thought are impossible |



--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]