unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#68425] [PATCH] gnu: python-activepapers: Fix build.
@ 2024-01-13 12:23 Troy Figiel
  2024-01-13 13:05 ` [bug#68425] python-activepapers is unmaintained Troy Figiel
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Troy Figiel @ 2024-01-13 12:23 UTC (permalink / raw)
  To: 68425

* gnu/packages/python-xyz.scm (python-activepapers)[source]: Add snippet fixing MutableMapping import.
---
 gnu/packages/python-xyz.scm | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 37d7dd0dd5..ddba925fd7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24143,6 +24143,12 @@ (define-public python-activepapers
      (origin
        (method url-fetch)
        (uri (pypi-uri "ActivePapers.Py" version))
+       ;; This package has not seen active maintenance since 2017. This is a
+       ;; hack needed to make it build against a recent version of Python 3.
+       (modules '((guix build utils)))
+       (snippet '(substitute* "lib/activepapers/execution.py"
+                   (("collections\\.MutableMapping")
+                    "collections.abc.MutableMapping")))
        (sha256
         (base32
          "12wkhjh90ffipjzv10swndp2xv9hd7xrxvg6v0n4n3i411pj4xb8"))))

base-commit: c0b303aaa3d6154acbe054120d11467eb98e6d33
-- 
2.42.0





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

* [bug#68425] python-activepapers is unmaintained
  2024-01-13 12:23 [bug#68425] [PATCH] gnu: python-activepapers: Fix build Troy Figiel
@ 2024-01-13 13:05 ` Troy Figiel
  2024-01-14 23:25 ` [bug#68425] Sharlatan Hellseher
  2024-01-15 21:09 ` bug#68425: Sharlatan Hellseher
  2 siblings, 0 replies; 5+ messages in thread
From: Troy Figiel @ 2024-01-13 13:05 UTC (permalink / raw)
  To: 68425

python-activepapers has not been maintained since 2017. This patch is a
quick fix, but the latest version is actually built for Python >=3.3,
<=3.5. Trying to keep it buildable against newer versions of Python
would increase the maintenance burden over time.

Would it make more sense to remove/deprecate this package altogether?




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

* [bug#68425]
  2024-01-13 12:23 [bug#68425] [PATCH] gnu: python-activepapers: Fix build Troy Figiel
  2024-01-13 13:05 ` [bug#68425] python-activepapers is unmaintained Troy Figiel
@ 2024-01-14 23:25 ` Sharlatan Hellseher
  2024-01-15  8:57   ` [bug#68425] Konrad Hinsen
  2024-01-15 21:09 ` bug#68425: Sharlatan Hellseher
  2 siblings, 1 reply; 5+ messages in thread
From: Sharlatan Hellseher @ 2024-01-14 23:25 UTC (permalink / raw)
  To: 68425; +Cc: konrad.hinsen, troy

Hi,

Pinging Konrad to check the status of the project as
 he was the last commiter to upstream package.

Thanks,
Oleg

-- 
VCS: https://github.incerto.xyz/; https://git.sr.ht/~hellseher/
GPG: 9847 81DE 689C 21C2 6418 0867 76D7 27BF F62C D2B5

… наш разум - превосходная объяснительная машина которая способна
найти смысл почти в чем угодно, истолковать любой феномен, но
совершенно не в состоянии принять мысль о непредсказуемости.

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

* [bug#68425]
  2024-01-14 23:25 ` [bug#68425] Sharlatan Hellseher
@ 2024-01-15  8:57   ` Konrad Hinsen
  0 siblings, 0 replies; 5+ messages in thread
From: Konrad Hinsen @ 2024-01-15  8:57 UTC (permalink / raw)
  To: Sharlatan Hellseher, 68425; +Cc: troy

Sharlatan Hellseher <sharlatanus@gmail.com> writes:

> Pinging Konrad to check the status of the project as
>  he was the last commiter to upstream package.

Thanks for the ping!

It's OK to deprecate or remove this package, since it is useful only
with time-machine going back a few years.

I just added a note to the README:

   https://github.com/activepapers/activepapers-python/blob/master/README.md

and archived the project.

Cheers,
  Konrad.




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

* bug#68425:
  2024-01-13 12:23 [bug#68425] [PATCH] gnu: python-activepapers: Fix build Troy Figiel
  2024-01-13 13:05 ` [bug#68425] python-activepapers is unmaintained Troy Figiel
  2024-01-14 23:25 ` [bug#68425] Sharlatan Hellseher
@ 2024-01-15 21:09 ` Sharlatan Hellseher
  2 siblings, 0 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2024-01-15 21:09 UTC (permalink / raw)
  To: 68425-done; +Cc: troy, konrad.hinsen

Hi,

I've remvoed the package.
Pushed as  1e3f1f9f92c1d3727d1ef69aa11455286abd0ebc.

Thanks,
Oleg
-- 
VCS: https://github.incerto.xyz/; https://git.sr.ht/~hellseher/
GPG: 9847 81DE 689C 21C2 6418 0867 76D7 27BF F62C D2B5

… наш разум - превосходная объяснительная машина которая способна
найти смысл почти в чем угодно, истолковать любой феномен, но
совершенно не в состоянии принять мысль о непредсказуемости.

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

end of thread, other threads:[~2024-01-15 21:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-13 12:23 [bug#68425] [PATCH] gnu: python-activepapers: Fix build Troy Figiel
2024-01-13 13:05 ` [bug#68425] python-activepapers is unmaintained Troy Figiel
2024-01-14 23:25 ` [bug#68425] Sharlatan Hellseher
2024-01-15  8:57   ` [bug#68425] Konrad Hinsen
2024-01-15 21:09 ` bug#68425: Sharlatan Hellseher

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).