From patchwork Wed Apr 15 17:49: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: 21276 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 C906C27BBEA; Wed, 15 Apr 2020 18:50:38 +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 89D2D27BBE4 for ; Wed, 15 Apr 2020 18:50:38 +0100 (BST) Received: from localhost ([::1]:53346 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOmBK-0001N9-2H for patchwork@mira.cbaines.net; Wed, 15 Apr 2020 13:50:38 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:47009) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOmAo-000167-Bt for guix-patches@gnu.org; Wed, 15 Apr 2020 13:50:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOmAn-0005Iz-D7 for guix-patches@gnu.org; Wed, 15 Apr 2020 13:50:06 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53787) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jOmAn-0005Is-AP for guix-patches@gnu.org; Wed, 15 Apr 2020 13:50:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jOmAn-0001MV-8C for guix-patches@gnu.org; Wed, 15 Apr 2020 13:50:05 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#40543] [PATCH v2 1/5] gnu: Add python2-pyatspi. Resent-From: Christopher Baines Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 15 Apr 2020 17:50:05 +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.15869730035219 (code B ref 40543); Wed, 15 Apr 2020 17:50:05 +0000 Received: (at 40543) by debbugs.gnu.org; 15 Apr 2020 17:50:03 +0000 Received: from localhost ([127.0.0.1]:37097 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jOmAl-0001Lv-4r for submit@debbugs.gnu.org; Wed, 15 Apr 2020 13:50:03 -0400 Received: from mira.cbaines.net ([212.71.252.8]:55172) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jOmAe-0001Kb-DJ for 40543@debbugs.gnu.org; Wed, 15 Apr 2020 13:49:59 -0400 Received: from localhost (unknown [46.237.160.17]) by mira.cbaines.net (Postfix) with ESMTPSA id 6EAB827BBE1 for <40543@debbugs.gnu.org>; Wed, 15 Apr 2020 18:49:55 +0100 (BST) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id 55fe1921 for <40543@debbugs.gnu.org>; Wed, 15 Apr 2020 17:49:52 +0000 (UTC) From: Christopher Baines Date: Wed, 15 Apr 2020 18:49:48 +0100 Message-Id: <20200415174952.9368-1-mail@cbaines.net> X-Mailer: git-send-email 2.26.0 In-Reply-To: <87wo6n726x.fsf@cbaines.net> References: <87wo6n726x.fsf@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")