From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44267) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cxEcL-0004cq-S2 for guix-patches@gnu.org; Sun, 09 Apr 2017 11:19:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cxEcI-0005f0-Oh for guix-patches@gnu.org; Sun, 09 Apr 2017 11:19:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:41677) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cxEcI-0005et-LJ for guix-patches@gnu.org; Sun, 09 Apr 2017 11:19:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cxEcI-0007bh-9v for guix-patches@gnu.org; Sun, 09 Apr 2017 11:19:02 -0400 Subject: bug#26414: [PATCH 2/3] gnu: Add python-pyatspi. Resent-Message-ID: From: Marius Bakke In-Reply-To: <20170409094942.20144-2-iyzsong@member.fsf.org> References: <20170409094942.20144-1-iyzsong@member.fsf.org> <20170409094942.20144-2-iyzsong@member.fsf.org> Date: Sun, 09 Apr 2017 17:18:43 +0200 Message-ID: <87vaqdtxrg.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> 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: =?UTF-8?Q?=E5=AE=8B=E6=96=87=E6=AD=A6?= , 26414@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable =E5=AE=8B=E6=96=87=E6=AD=A6 writes: > * gnu/packages/gnome.scm (python-pyatspi): New package. > --- > gnu/packages/gnome.scm | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 insertions(+) > > diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm > index b94c36636..bf53835a0 100644 > --- a/gnu/packages/gnome.scm > +++ b/gnu/packages/gnome.scm > @@ -5997,3 +5997,31 @@ for process dependencies, icons for processes, the= ability to hide processes, > graphical time histories of CPU/memory/swap usage and the ability to > kill/reinice processes.") > (license license:gpl2+))) > + > +(define-public python-pyatspi > + (package > + (name "python-pyatspi") > + (version "2.24.0") > + (source (origin > + (method url-fetch) > + (uri (string-append > + "mirror://gnome/sources/pyatspi/" > + (version-major+minor version) > + "/pyatspi-" version ".tar.xz")) > + (sha256 > + (base32 > + "14m6y27ziqc9f6339gjz49mlsk6mrsyg4bkj055cdzc7sfjlgvz7"))= )) > + (build-system gnu-build-system) > + (native-inputs > + `(("pkg-config" ,pkg-config))) > + (inputs > + `(("python" ,python) > + ("python-pygobject" ,python-pygobject))) > + (synopsis "Python client bindings for D-Bus AT-SPI") > + (home-page "http://www.linuxfoundation.org/en/Accessibility\ > +/ATK/AT-SPI/AT-SPI_on_D-Bus") This redirects to: https://wiki.linuxfoundation.org/accessibility/atk/at-spi/at-spi_on_d-bus I think using string-append would look nicer than the awkward line break, but not a strong opinion. Other than that this series LGTM! > + (description > + "This package includes a python client library for the AT-SPI D-Bus > +accessibility infrastructure.") > + (license license:lgpl2.0) > + (properties '((upstream-name . "pyatspi"))))) > --=20 > 2.12.2 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAljqUNMACgkQoqBt8qM6 VPpFtQf+KFIkVmsZcohhso+l9dqvx/lASTRRxP0Hljq3Ybft1ILKyXyiLgsQmfbh tj4ZD38fnIrcM8DKYxxF0l3aQ+B7JNeevo14Puv+LOMRRWHM9XZFNrQ/+c1zUV5P vnq5fHjIAj3cMqgcUoieVJ4YthRP2wbo8gBQ/LOStmWbrkC/Y+RlZDZz9lO4OqQl O38LpJcXV5HBYi2bvw+mpEhcJmZOFP+kmgCU/zkot9UNqVc7UxCvdm60cpqt03vg WMsuxlGq/0GQ4Mjz01OFb+n5w8Ecmd3lqokeVYatbgd5MvJD8YfnAyjkxQMPCArq DKsQtFEcMLyL/EiJytpdxm1c4MCiJA== =3YW7 -----END PGP SIGNATURE----- --=-=-=--