all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ben Sturmfels via Guix-patches via <guix-patches@gnu.org>
To: 49993@debbugs.gnu.org
Cc: Ben Sturmfels <ben@sturm.com.au>
Subject: [bug#49993] [PATCH 18/18] gnu: Remove python2-celery.
Date: Wed, 11 Aug 2021 13:09:01 +1000	[thread overview]
Message-ID: <20210811030901.2865-18-ben@sturm.com.au> (raw)
In-Reply-To: <20210811030901.2865-1-ben@sturm.com.au>

Remove Python 2 leaf package possibly added for Python 2 MediaGoblin.

* gnu/packages/python-xyz.scm (python2-celery): Remove variable.
---
 gnu/packages/python-xyz.scm | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f6fe106bcf..316d8c9b64 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13194,16 +13194,7 @@ supports scheduling as well.  The execution units, called tasks, are executed
 concurrently on a single or more worker servers using multiprocessing,
 Eventlet, or gevent.  Tasks can execute asynchronously (in the background) or
 synchronously (wait until ready).")
-    (license license:bsd-3)
-    (properties `((python2-variant . ,(delay python2-celery))))))
-
-(define-public python2-celery
-  (let ((celery (package-with-python2
-                 (strip-python2-variant python-celery))))
-    (package/inherit celery
-      (native-inputs `(("python2-unittest2" ,python2-unittest2)
-                       ("python2-mock" ,python2-mock)
-                       ,@(package-native-inputs celery))))))
+    (license license:bsd-3)))
 
 (define-public python-translitcodec
   (package
-- 
2.32.0





  parent reply	other threads:[~2021-08-11  3:11 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-11  3:07 [bug#49993] [PATCH 00/18] Remove Python 2 packages possibly added for Python 2 MediaGoblin Ben Sturmfels via Guix-patches via
2021-08-11  3:08 ` [bug#49993] [PATCH 01/18] gnu: Remove python2-exif-read Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 02/18] gnu: Remove python2-pyld Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 03/18] gnu: Remove python2-jsonschema Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 04/18] gnu: Remove python2-unidecode Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 05/18] gnu: Remove python2-itsdangerous Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 06/18] gnu: Remove python2-feedgenerator Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 07/18] gnu: Remove python2-markdown Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 08/18] gnu: Remove python2-configobj Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 09/18] gnu: Remove python2-waitress Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 10/18] gnu: Remove python2-email-validator Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 11/18] gnu: Remove python2-py-bcrypt Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 12/18] gnu: Remove python2-oauthlib Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 13/18] gnu: Remove python2-wtforms Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 14/18] gnu: Remove python2-pastescript Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 15/18] gnu: Remove python2-openid-teams Ben Sturmfels via Guix-patches via
2021-08-11  3:08   ` [bug#49993] [PATCH 16/18] gnu: Remove python2-openid-cla Ben Sturmfels via Guix-patches via
2021-08-11  3:09   ` [bug#49993] [PATCH 17/18] gnu: Remove python2-openid Ben Sturmfels via Guix-patches via
2021-08-11  3:09   ` Ben Sturmfels via Guix-patches via [this message]
2021-08-31  0:09 ` [bug#49993] Ben Sturmfels via Guix-patches via
2021-08-31  0:09   ` [bug#49993] [PATCH] gnu: Remove python2-translitcodec Ben Sturmfels via Guix-patches via
2021-08-31  1:08     ` [bug#49993] [PATCH 00/18] Remove Python 2 packages possibly added for Python 2 MediaGoblin Ben Sturmfels via Guix-patches via
2021-08-31  6:10       ` zimoun
2021-09-01 15:43         ` Ben Sturmfels via Guix-patches via
2021-09-02  5:30 ` [bug#49993] [v2 00/12] Remove Python 2 packages Ben Sturmfels via Guix-patches via
2021-09-02  5:30   ` [bug#49993] [v2 01/12] gnu: Remove python2-pyld Ben Sturmfels via Guix-patches via
2021-09-02  5:30   ` [bug#49993] [v2 02/12] gnu: Remove python2-itsdangerous Ben Sturmfels via Guix-patches via
2021-09-02  5:30   ` [bug#49993] [v2 03/12] gnu: Remove python2-feedgenerator Ben Sturmfels via Guix-patches via
2021-09-02  5:30   ` [bug#49993] [v2 04/12] gnu: Remove python2-configobj Ben Sturmfels via Guix-patches via
2021-09-02  5:30   ` [bug#49993] [v2 05/12] gnu: Remove python2-email-validator Ben Sturmfels via Guix-patches via
2021-09-02  5:30   ` [bug#49993] [v2 06/12] gnu: Remove python2-wtforms Ben Sturmfels via Guix-patches via
2021-09-02  5:30   ` [bug#49993] [v2 07/12] gnu: Remove python2-pastescript Ben Sturmfels via Guix-patches via
2021-09-02  5:30   ` [bug#49993] [v2 08/12] gnu: Remove python2-openid-teams Ben Sturmfels via Guix-patches via
2021-09-02  5:30   ` [bug#49993] [v2 09/12] gnu: Remove python2-openid-cla Ben Sturmfels via Guix-patches via
2021-09-02  5:30   ` [bug#49993] [v2 10/12] gnu: Remove python2-openid Ben Sturmfels via Guix-patches via
2021-09-02  5:30   ` [bug#49993] [v2 11/12] gnu: Remove python2-celery Ben Sturmfels via Guix-patches via
2021-09-02  5:30   ` [bug#49993] [v2 12/12] gnu: Remove python2-translitcodec Ben Sturmfels via Guix-patches via
2023-05-14 23:46 ` bug#49993: [PATCH 00/18] Remove Python 2 packages possibly added for Python 2 MediaGoblin Vinicius Monego

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=20210811030901.2865-18-ben@sturm.com.au \
    --to=guix-patches@gnu.org \
    --cc=49993@debbugs.gnu.org \
    --cc=ben@sturm.com.au \
    /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.