unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#34398] [PATCH] gnu: Add python-backports-shutil-which.
@ 2019-02-09  6:28 Vagrant Cascadian
  2019-02-11  9:54 ` Danny Milosavljevic
  0 siblings, 1 reply; 5+ messages in thread
From: Vagrant Cascadian @ 2019-02-09  6:28 UTC (permalink / raw)
  To: 34398

[-- Attachment #1: Type: text/plain, Size: 1507 bytes --]


* gnu/packages/python-xyz.scm
  (python-backports-shutil-which): New variable.
---
 gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 086eb3af26..143d9c2ffc 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -317,6 +317,31 @@ etc. ")
 (define-public python2-babel
   (package-with-python2 python-babel))
 
+(define-public python-backports-shutil-which
+  (package
+    (name "python-backports-shutil-which")
+    (version "3.5.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "backports.shutil_which" version))
+       (sha256
+        (base32
+         "0cy16w2dpv110afncag8x1zhzy3yz0iypny4iagdiyp4rdkzafgy"))))
+    (build-system python-build-system)
+    (home-page
+     "https://github.com/minrk/backports.shutil_which")
+    (synopsis
+     "Backport of shutil.which from Python 3.3")
+    (description
+     "Python-backports-shutil-which provides a backport of shutil.which from
+Python 3.3")
+    ;; The backported code is "psfl" license, setup.py is under "MIT" license.
+    (license
+     (list license:psfl
+           (license:non-copyleft
+            "https://raw.githubusercontent.com/minrk/backports.shutil_which/master/LICENSE")))))
+
 (define-public python2-backport-ssl-match-hostname
   (package
     (name "python2-backport-ssl-match-hostname")
-- 
2.20.1


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#34398] [PATCH] gnu: Add python-backports-shutil-which.
  2019-02-09  6:28 [bug#34398] [PATCH] gnu: Add python-backports-shutil-which Vagrant Cascadian
@ 2019-02-11  9:54 ` Danny Milosavljevic
  2019-02-11 22:07   ` Vagrant Cascadian
  0 siblings, 1 reply; 5+ messages in thread
From: Danny Milosavljevic @ 2019-02-11  9:54 UTC (permalink / raw)
  To: Vagrant Cascadian; +Cc: 34398

[-- Attachment #1: Type: text/plain, Size: 392 bytes --]

Hi Vagrant,

On Fri, 08 Feb 2019 22:28:37 -0800
Vagrant Cascadian <vagrant@debian.org> wrote:

> +    (synopsis
> +     "Backport of shutil.which from Python 3.3")
> +    (description
> +     "Python-backports-shutil-which provides a backport of shutil.which from
> +Python 3.3")

Why do we need this package?  We have Python 3.7.0.
Doesn't that contain the same module already?

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#34398] [PATCH] gnu: Add python-backports-shutil-which.
  2019-02-11  9:54 ` Danny Milosavljevic
@ 2019-02-11 22:07   ` Vagrant Cascadian
  2019-02-12  7:02     ` Vagrant Cascadian
  0 siblings, 1 reply; 5+ messages in thread
From: Vagrant Cascadian @ 2019-02-11 22:07 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: 34398

[-- Attachment #1: Type: text/plain, Size: 754 bytes --]

On 2019-02-11, Danny Milosavljevic wrote:
> On Fri, 08 Feb 2019 22:28:37 -0800
> Vagrant Cascadian <vagrant@debian.org> wrote:
>
>> +    (synopsis
>> +     "Backport of shutil.which from Python 3.3")
>> +    (description
>> +     "Python-backports-shutil-which provides a backport of shutil.which from
>> +Python 3.3")
>
> Why do we need this package?  We have Python 3.7.0.
> Doesn't that contain the same module already?

I found it odd as well, but I couldn't figure out how to get the newer
versions of python-trezor-agent to build without
python-backports-shutil-which without patching python-trezor-agent.

I didn't spend too much effort looking into patching it; I'll take a
little deeper look.

Thanks for all the reviews!


live well,
  vagrant

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#34398] [PATCH] gnu: Add python-backports-shutil-which.
  2019-02-11 22:07   ` Vagrant Cascadian
@ 2019-02-12  7:02     ` Vagrant Cascadian
  2022-04-07 12:08       ` bug#34398: " zimoun
  0 siblings, 1 reply; 5+ messages in thread
From: Vagrant Cascadian @ 2019-02-12  7:02 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: 34398

[-- Attachment #1: Type: text/plain, Size: 1465 bytes --]

On 2019-02-11, Vagrant Cascadian wrote:
> On 2019-02-11, Danny Milosavljevic wrote:
>> On Fri, 08 Feb 2019 22:28:37 -0800
>> Vagrant Cascadian <vagrant@debian.org> wrote:
>>> +    (synopsis
>>> +     "Backport of shutil.which from Python 3.3")
>>> +    (description
>>> +     "Python-backports-shutil-which provides a backport of shutil.which from
>>> +Python 3.3")
>>
>> Why do we need this package?  We have Python 3.7.0.
>> Doesn't that contain the same module already?
>
> I found it odd as well, but I couldn't figure out how to get the newer
> versions of python-trezor-agent to build without
> python-backports-shutil-which without patching python-trezor-agent.
>
> I didn't spend too much effort looking into patching it; I'll take a
> little deeper look.

I don't see a need for this package anymore; I submitted an update for
python-trezor-agent/trezor-agent that fixes the issue without using
backports.shutil_which.

A slightly deeper look into: Lacking backports.shutil_which caused
"trezor-agent" to fail during tests as it tried to download the missing
library, but there was no mention of shutil_which at all in any of it's
code... turned out "python-trezor-agent" had an overly strict requires
on the backported.shutil_which, even though "python-trezor-agent"
supports the shutil_which included in newer python versions. Simply
removing the backports.shutil_which from "python-trezor-agent" requires
fixed the issue.

Thanks!

live well,
  vagrant

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#34398: [PATCH] gnu: Add python-backports-shutil-which.
  2019-02-12  7:02     ` Vagrant Cascadian
@ 2022-04-07 12:08       ` zimoun
  0 siblings, 0 replies; 5+ messages in thread
From: zimoun @ 2022-04-07 12:08 UTC (permalink / raw)
  To: Vagrant Cascadian; +Cc: 34398-done, Danny Milosavljevic

Hi,

On Mon, 11 Feb 2019 at 23:02, Vagrant Cascadian <vagrant@debian.org> wrote:

> I don't see a need for this package anymore; I submitted an update for
> python-trezor-agent/trezor-agent that fixes the issue without using
> backports.shutil_which.

Therefore, closing.  Let me know if I have missed a point.


Cheers,
simon




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-04-07 12:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-09  6:28 [bug#34398] [PATCH] gnu: Add python-backports-shutil-which Vagrant Cascadian
2019-02-11  9:54 ` Danny Milosavljevic
2019-02-11 22:07   ` Vagrant Cascadian
2019-02-12  7:02     ` Vagrant Cascadian
2022-04-07 12:08       ` bug#34398: " zimoun

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).