From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:48071) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jOmJS-0006c5-QC for guix-patches@gnu.org; Wed, 15 Apr 2020 13:59:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jOmJR-0002YT-RR for guix-patches@gnu.org; Wed, 15 Apr 2020 13:59:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53801) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jOmJR-0002YP-O8 for guix-patches@gnu.org; Wed, 15 Apr 2020 13:59:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jOmJR-0001aw-O4 for guix-patches@gnu.org; Wed, 15 Apr 2020 13:59:01 -0400 Subject: [bug#40543] [PATCH 1/4] gnu: Add python2-pyatspi. Resent-Message-ID: References: <87wo6n726x.fsf@cbaines.net> <20200410162157.21065-1-mail@cbaines.net> <871rovjnso.fsf@devup.no> From: Christopher Baines In-reply-to: <871rovjnso.fsf@devup.no> Date: Wed, 15 Apr 2020 18:58:31 +0100 Message-ID: <87zhbc637c.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Marius Bakke Cc: 40543@debbugs.gnu.org --=-=-= Content-Type: text/plain Marius Bakke writes: > Christopher Baines writes: > >> 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 088de7dd4c..b28fe6594b 100644 >> --- a/gnu/packages/gnome.scm >> +++ b/gnu/packages/gnome.scm >> @@ -8773,6 +8773,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))))) > > Should the latter not be propagated? Yeah, I've added another commit which makes this propagated. > I think the #:python argument of python-build-system will still refer > to python3 in this case. It would, however python-pyatspi is using the gnu-build-system. I think this is why I ended up doing it this way. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAEBCgB9FiEEPonu50WOcg2XVOCyXiijOwuE9XcFAl6XS0dfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcACgkQXiijOwuE 9XfG6Q//VDCQdfYB2hN5Jj5sFfKMQRbMFNmdsfWBiHnTd4aEIi/ebu7bRpZtPt8q rAQOqFD8wPbcd1mGzxosUJcfVRBi3WhhRO42QBxRvzUkJY9ae7lVJThxIkq6+gZg zdRfnQiplC1ZhjXm2AGg4iJVaT1pnN3FEmZtYFoJ04DTmxCq6wIcSfZG1JImV+Zm me4tnfReQiNy2SQMgOiUNTkFxeIl7Sg66U7Z51nFchm5iDZ0DGsLg1X8qIZ4hoZ2 mx/7R3BJe9RkWlh19EUcofZDidz8/WOPakUEzMgqviYvVwhjeObG8gsm8k11JkdY jSma24N1YvPAo5Akm+cqFhw1Up3H+gSYz+AHhaJ5MKoDDlHKqVnKzkEwaKCbGp71 Qzd2U5zZJnDpVBdf3BDkvwNeyTI8PaBZU/VRC8hXMIuVCdqn/89bY9sLpAG6d8fS 8+brsXSFKEppYQ9z3pBpnOp4l4GvJlWg7tuIi9igY2r3pfodwv9FRe9rZyGc3CUX sVFQUg06J8XZT7tdwcuqVYLPi/dk7OXfQeFuuivXvAMaZQy1kIPVqcP0sG4/ZyUP pOyi64WIu11B2lOIqWyWkmcYI15N3rMbuldFwJKbyqt0GEaSOrJNBsCa+JwCkWK9 5utQ6kWwxyDEVpDZXNx8j86KTHu8PHuGV4A9AriH15DhVvsNxzA= =C45e -----END PGP SIGNATURE----- --=-=-=--