From patchwork Thu Apr 16 08:28:48 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christopher Baines X-Patchwork-Id: 21284 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id 6E20C27BBEA; Thu, 16 Apr 2020 09:29:13 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, UNPARSEABLE_RELAY autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTP id EB89227BBE4 for ; Thu, 16 Apr 2020 09:29:12 +0100 (BST) Received: from localhost ([::1]:59290 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOztY-00085C-Eq for patchwork@mira.cbaines.net; Thu, 16 Apr 2020 04:29:12 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45502) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOztR-00082c-6D for guix-patches@gnu.org; Thu, 16 Apr 2020 04:29:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOztQ-0005ux-3y for guix-patches@gnu.org; Thu, 16 Apr 2020 04:29:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54160) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jOztQ-0005uX-1a for guix-patches@gnu.org; Thu, 16 Apr 2020 04:29:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jOztO-0000eR-UO for guix-patches@gnu.org; Thu, 16 Apr 2020 04:29:02 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#40543] [PATCH v3 1/5] gnu: Add python2-pyatspi. Resent-From: Christopher Baines Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Thu, 16 Apr 2020 08:29:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 40543 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 40543@debbugs.gnu.org Received: via spool by 40543-submit@debbugs.gnu.org id=B40543.15870257372465 (code B ref 40543); Thu, 16 Apr 2020 08:29:02 +0000 Received: (at 40543) by debbugs.gnu.org; 16 Apr 2020 08:28:57 +0000 Received: from localhost ([127.0.0.1]:37464 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jOztJ-0000dg-C1 for submit@debbugs.gnu.org; Thu, 16 Apr 2020 04:28:57 -0400 Received: from mira.cbaines.net ([212.71.252.8]:55816) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jOztH-0000d7-5h for 40543@debbugs.gnu.org; Thu, 16 Apr 2020 04:28:55 -0400 Received: from localhost (unknown [46.237.160.17]) by mira.cbaines.net (Postfix) with ESMTPSA id A4C5327BBE1 for <40543@debbugs.gnu.org>; Thu, 16 Apr 2020 09:28:54 +0100 (BST) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 94eff15b for <40543@debbugs.gnu.org>; Thu, 16 Apr 2020 08:28:52 +0000 (UTC) From: Christopher Baines Date: Thu, 16 Apr 2020 09:28:48 +0100 Message-Id: <20200416082852.4319-1-mail@cbaines.net> X-Mailer: git-send-email 2.26.0 In-Reply-To: <20200415174952.9368-1-mail@cbaines.net> References: <20200415174952.9368-1-mail@cbaines.net> MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.51.188.43 X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches This will enable updating python2-dogtail to 0.9.11. * gnu/packages/gnome.scm (python2-pyatspi): New variable. --- gnu/packages/gnome.scm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 33aae4545e..4710bd1349 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -8774,6 +8774,14 @@ accessibility infrastructure.") (license license:lgpl2.0) (properties '((upstream-name . "pyatspi"))))) +(define-public python2-pyatspi + (package + (inherit python-pyatspi) + (name "python2-pyatspi") + (inputs + `(("python" ,python-2) + ("python-pygobject" ,python2-pygobject))))) + (define-public orca (package (name "orca")