all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tanguy Le Carrour <tanguy@bioneland.org>
To: 39777@debbugs.gnu.org
Cc: Tanguy Le Carrour <tanguy@bioneland.org>
Subject: [bug#39777] [PATCH V6] gnu: poetry: Update to 1.0.5.
Date: Sat, 21 Mar 2020 15:37:16 +0100	[thread overview]
Message-ID: <20200321143716.30965-1-tanguy@bioneland.org> (raw)
In-Reply-To: <20200225082847.9548-1-tanguy@bioneland.org>

* gnu/packages/python-xyz.scm (poetry): Update to 1.0.5.
[propagated-inputs] Add python-clikit, add python-importlib-metadata,
add python-keyring, add python-pexpect, remove python-msgpack,
remove python-glob2.  [home-page] Update URL.
[arguments] Remove distutils patch, patch versions of keyring, pyrsistent
and importlib-metadata.
---
 gnu/packages/python-xyz.scm | 23 +++++++++++++----------
 1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f036b66aba..319bd83c43 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -11237,34 +11237,37 @@ database, file, dict stores.  Cachy supports python versions 2.7+ and 3.2+.")
 (define-public poetry
   (package
     (name "poetry")
-    (version "0.12.17")
-    ;; Poetry can only be built from source with poetry.
+    (version "1.0.5")
+    ;; Poetry can only be built from source with Poetry.
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "poetry" version))
        (sha256
         (base32
-         "0gxwcd65qjmzqzppf53x51sic1rbcd9py6cdzx3aprppipimslvf"))))
+         "02h387k0xssvv78yy82pcpknpq4w5ym2in1zl8cg9r5wljl5w6cf"))))
     (build-system python-build-system)
     (arguments
      `(#:tests? #f ;; Pypi does not have tests.
        #:phases
        (modify-phases %standard-phases
-         (replace 'build
+         (add-before 'build 'patch-setup-py
            (lambda _
-             ;; Bug in poetry https://github.com/sdispater/poetry/issues/866.
-             (invoke "sed" "-i" "-e" "s/from distutils.core/from setuptools/"
-                     "setup.py")
+             (substitute* "setup.py"
+               (("keyring>=20.0.1,<21.0.0") "keyring>=21.0.0,<22.0.0") ;; poetry won't update version as 21.0.0 relies on python > 3.6
+               (("pyrsistent>=0.14.2,<0.15.0") "pyrsistent>=0.14.2,<0.16.0")
+               (("importlib-metadata>=1.1.3,<1.2.0") "importlib-metadata>=1.1.3,<1.5.0"))
              #t)))))
     (propagated-inputs
      `(("python-cachecontrol" ,python-cachecontrol)
        ("python-cachy" ,python-cachy)
        ("python-cleo" ,python-cleo)
-       ("python-glob2" ,python-glob2)
+       ("python-clikit" ,python-clikit)
        ("python-html5lib" ,python-html5lib)
+       ("python-importlib-metadata" ,python-importlib-metadata) ;; python < 3.8
        ("python-jsonschema" ,python-jsonschema)
-       ("python-msgpack" ,python-msgpack)
+       ("python-keyring" ,python-keyring)
+       ("python-pexpect" ,python-pexpect)
        ("python-pkginfo" ,python-pkginfo)
        ("python-pyparsing" ,python-pyparsing)
        ("python-pyrsistent" ,python-pyrsistent)
@@ -11273,7 +11276,7 @@ database, file, dict stores.  Cachy supports python versions 2.7+ and 3.2+.")
        ("python-shellingham" ,python-shellingham)
        ("python-tomlkit" ,python-tomlkit)
        ("python-virtualenv" ,python-virtualenv)))
-    (home-page "https://poetry.eustace.io/")
+    (home-page "https://python-poetry.org")
     (synopsis "Python dependency management and packaging made easy")
     (description "Poetry is a tool for dependency management and packaging
 in Python.  It allows you to declare the libraries your project depends on and
-- 
2.25.2

      parent reply	other threads:[~2020-03-21 14:38 UTC|newest]

Thread overview: 77+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-25  8:28 [bug#39777] [PATCH 0/5] gnu: poetry: Update to 1.0.3 Tanguy Le Carrour
2020-02-25  8:33 ` [bug#39777] [PATCH 1/5] gnu: python-pexpect: Update to 4.8.0 Tanguy Le Carrour
2020-02-25  8:33   ` [bug#39777] [PATCH 2/5] gnu: python-jsonschema: Update to 3.2.0 Tanguy Le Carrour
2020-02-25  8:33   ` [bug#39777] [PATCH 3/5] gnu: python-fakeredis: Update to 1.2.1 Tanguy Le Carrour
2020-02-25  8:33   ` [bug#39777] [PATCH 4/5] gnu: python-cachy: Update to 0.3.0 Tanguy Le Carrour
2020-02-25  8:33   ` [bug#39777] [PATCH 5/5] gnu: poetry: Update to 1.0.3 Tanguy Le Carrour
2020-03-08 14:10 ` [bug#39777] [PATCH V2 01/10] gnu: python-pexpect: Update to 4.8.0 Tanguy Le Carrour
2020-03-08 14:10   ` [bug#39777] [PATCH V2 02/10] gnu: python-cachy: Update to 0.3.0 Tanguy Le Carrour
2020-03-08 14:10   ` [bug#39777] [PATCH V2 03/10] gnu: python-fakeredis: Update to 1.2.1 Tanguy Le Carrour
2020-03-08 14:10   ` [bug#39777] [PATCH V2 04/10] gnu: python-jsonschema: Update to 3.2.0 Tanguy Le Carrour
2020-03-08 14:10   ` [bug#39777] [PATCH V2 05/10] gnu: python-pastel: Update to 0.2.0 Tanguy Le Carrour
2020-03-08 14:10   ` [bug#39777] [PATCH V2 06/10] gnu: python-msgpack: Update to 1.0.0 Tanguy Le Carrour
2020-03-08 14:10   ` [bug#39777] [PATCH V2 07/10] gnu: python-cachecontrol: Add missing propagated-input Tanguy Le Carrour
2020-03-08 14:10   ` [bug#39777] [PATCH V2 08/10] gnu: python-tomlkit: Update to 0.5.11 Tanguy Le Carrour
2020-03-08 14:10   ` [bug#39777] [PATCH V2 09/10] gnu: python-clikit: Update to 0.4.2 Tanguy Le Carrour
2020-03-08 14:10   ` [bug#39777] [PATCH V2 10/10] gnu: poetry: Update to 1.0.5 Tanguy Le Carrour
2020-03-08 14:13 ` [bug#39777] [PATCH V2 0/10] " Tanguy Le Carrour
2020-03-09  8:16 ` [bug#39777] [PATCH V3 0/11] " Tanguy Le Carrour
2020-03-09  8:18 ` [bug#39777] [PATCH V3 01/11] gnu: python-pexpect: Update to 4.8.0 Tanguy Le Carrour
2020-03-09  8:18   ` [bug#39777] [PATCH V3 02/11] gnu: python-cachy: Update to 0.3.0 Tanguy Le Carrour
2020-03-11 19:14     ` Leo Famulari
2020-03-12  8:58       ` Tanguy Le Carrour
2020-03-14 17:30         ` Leo Famulari
2020-03-14 18:37           ` Tanguy Le Carrour
2020-03-14 17:39         ` Leo Famulari
2020-03-14 18:38           ` Tanguy Le Carrour
2020-03-19 17:27           ` Tanguy Le Carrour
2020-03-20 19:16             ` Leo Famulari
2020-03-09  8:18   ` [bug#39777] [PATCH V3 03/11] gnu: python-fakeredis: Update to 1.2.1 Tanguy Le Carrour
2020-03-09  8:18   ` [bug#39777] [PATCH V3 04/11] gnu: python-jsonschema: Update to 3.2.0 Tanguy Le Carrour
2020-03-11 19:15     ` Leo Famulari
2020-03-12  8:48       ` Tanguy Le Carrour
2020-03-12 17:44         ` Leo Famulari
2020-03-13  8:45           ` Tanguy Le Carrour
2020-03-14 17:33             ` Leo Famulari
2020-03-14 17:36             ` Leo Famulari
2020-03-14 18:40               ` Tanguy Le Carrour
2020-03-19  7:42                 ` Tanguy Le Carrour
2020-03-20 19:15                   ` Leo Famulari
2020-03-21  8:50                     ` Tanguy Le Carrour
2020-03-22 22:02                       ` Leo Famulari
2020-03-23  7:26                         ` Tanguy Le Carrour
2020-03-09  8:18   ` [bug#39777] [PATCH V3 05/11] gnu: python-pastel: Update to 0.2.0 Tanguy Le Carrour
2020-03-09  8:18   ` [bug#39777] [PATCH V3 06/11] gnu: python-msgpack: Update to 1.0.0 Tanguy Le Carrour
2020-03-09  8:18   ` [bug#39777] [PATCH V3 07/11] gnu: python-cachecontrol: Add missing propagated-input Tanguy Le Carrour
2020-03-09  8:18   ` [bug#39777] [PATCH V3 08/11] gnu: python-sortedcontainers: Add missing propagated-inputs Tanguy Le Carrour
2020-03-09  8:18   ` [bug#39777] [PATCH V3 09/11] gnu: python-tomlkit: Update to 0.5.11 Tanguy Le Carrour
2020-03-09  8:18   ` [bug#39777] [PATCH V3 10/11] gnu: python-clikit: Update to 0.4.2 Tanguy Le Carrour
2020-03-09  8:18   ` [bug#39777] [PATCH V3 11/11] gnu: poetry: Update to 1.0.5 Tanguy Le Carrour
2020-03-19 17:30 ` [bug#39777] [PATCH V4 01/10] gnu: python-pexpect: Update to 4.8.0 Tanguy Le Carrour
2020-03-19 17:30   ` [bug#39777] [PATCH V4 02/10] gnu: python-jsonschema: Update to 3.2.0 Tanguy Le Carrour
2020-03-19 17:30   ` [bug#39777] [PATCH V4 03/10] gnu: python-pastel: Update to 0.2.0 Tanguy Le Carrour
2020-03-19 17:30   ` [bug#39777] [PATCH V4 04/10] gnu: python-msgpack: Update to 1.0.0 Tanguy Le Carrour
2020-03-19 17:30   ` [bug#39777] [PATCH V4 05/10] gnu: python-cachecontrol: Add missing propagated-input Tanguy Le Carrour
2020-03-19 17:30   ` [bug#39777] [PATCH V4 06/10] gnu: python-sortedcontainers: Add missing propagated-inputs Tanguy Le Carrour
2020-03-19 17:30   ` [bug#39777] [PATCH V4 07/10] gnu: python-clikit: Update to 0.4.2 Tanguy Le Carrour
2020-03-19 17:30   ` [bug#39777] [PATCH V4 08/10] gnu: python-fakeredis: Update to 1.2.1 Tanguy Le Carrour
2020-03-19 17:30   ` [bug#39777] [PATCH V4 09/10] gnu: python-cachy: Update to 0.3.0 Tanguy Le Carrour
2020-03-19 17:30   ` [bug#39777] [PATCH V4 10/10] gnu: poetry: Update to 1.0.5 Tanguy Le Carrour
2020-03-21 11:25 ` [bug#39777] [PATCH V5 0/14] " Tanguy Le Carrour
2020-03-21 11:26 ` [bug#39777] [PATCH V5 01/14] gnu: python-pexpect: Update to 4.8.0 Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 02/14] gnu: python-jsonschema: Update to 3.2.0 Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 03/14] gnu: python-pastel: Update to 0.2.0 Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 04/14] gnu: python-msgpack: Update to 1.0.0 Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 05/14] gnu: python-cachecontrol: Add missing propagated-input Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 06/14] gnu: python-sortedcontainers: Add missing propagated-inputs Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 07/14] gnu: python-clikit: Update to 0.4.2 Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 08/14] gnu: python-fakeredis: Update to 1.2.1 Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 09/14] gnu: Add python-xattr Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 10/14] gnu: Add python-json-logger Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 11/14] gnu: Add python-daiquiri Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 12/14] gnu: Add python-pifpaf Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 13/14] gnu: python-cachy: Update to 0.3.0 Tanguy Le Carrour
2020-03-21 11:26   ` [bug#39777] [PATCH V5 14/14] gnu: poetry: Update to 1.0.5 Tanguy Le Carrour
2020-03-21 14:26 ` [bug#39777] [PATCH V6 0/X] " Tanguy Le Carrour
2020-03-24 21:19   ` bug#39777: " Leo Famulari
2020-03-21 14:37 ` Tanguy Le Carrour [this message]

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=20200321143716.30965-1-tanguy@bioneland.org \
    --to=tanguy@bioneland.org \
    --cc=39777@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.