From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marius Bakke Subject: Re: [PATCH 6/8] gnu: Add python-fastimport. Date: Tue, 17 Jan 2017 23:50:19 +0100 Message-ID: <8737ghb8t0.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> References: <20170117222548.13995-1-dannym@scratchpost.org> <20170117222548.13995-7-dannym@scratchpost.org> Mime-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51946) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cTcaA-0003iU-OS for guix-devel@gnu.org; Tue, 17 Jan 2017 17:50:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cTca5-0003kZ-Vf for guix-devel@gnu.org; Tue, 17 Jan 2017 17:50:26 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:42783) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cTca5-0003kO-S8 for guix-devel@gnu.org; Tue, 17 Jan 2017 17:50:21 -0500 In-Reply-To: <20170117222548.13995-7-dannym@scratchpost.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Danny Milosavljevic , guix-devel@gnu.org --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Danny Milosavljevic writes: > * gnu/packages/python.scm (python-fastimport, python2-fastimport): > New variables. > --- > gnu/packages/python.scm | 19 +++++++++++++++++++ > 1 file changed, 19 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index 8c81eae64..cd0a47043 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -12679,6 +12679,25 @@ Features: > (define-public python2-geventhttpclient > (package-with-python2 python-geventhttpclient)) >=20=20 > +(define-public python-fastimport > + (package > + (name "python-fastimport") > + (version "0.9.6") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "fastimport" version)) > + (sha256 > + (base32 "1aqjsin4rmqm7ln4j0p73fzxifws6c6ikgyhav7r137m2ixsxl43"= )))) > + (build-system python-build-system) > + (home-page "https://github.com/jelmer/python-fastimport") > + (synopsis "git fastimport/fastexport parser") > + (description "This package provides a git fastimport/fastexport pars= er.") Does `guix lint` accept the lowercase synopsis? Here is what I have: (synopsis "VCS fastimport parser and generator in Python") (description "This package provides a parser for and generator of the Git @url{https://www.kernel.org/pub/software/scm/git/docs/git-fast-import.html,= fastimport} format.") > + (license license:gpl2+))) > + > +(define-public python2-fastimport > + (package-with-python2 python-fastimport)) > + > (define-public python-dulwich > (package > (name "python-dulwich") --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAlh+n6sACgkQoqBt8qM6 VPoL8Qf+NUAaAsAEA7u2FFMx7d9LZpoTma6iJOoJ6aCT04tVz+MxG2fpe9/6a8dr p5YRf5798U0bTBB+q72O72bp7izTu9wUvTTLgwQpTPZLsgs8UFEI8uUtj7Za3kUZ YgfI7mCYtdxEUj9B2JM7r6SSpwFq1oS2vZrTKXy5QmJ75qIHVyAOkNr2o88iKvSx FVwN/fQ9SYaCNoEIHIfeNVeiPAooPNgMNgOrz0lTZvh4YqZv9n4ZCPkvFl8m2+mi Ma71rbdTGenlCyMQG2XXBXcsHPAVh2ksO+wSgdGFq4RTcYwkQUPKbxCPhVTdTP5F u6m1WchCp76aqZVCAQXNAe4x4LWdng== =gAfj -----END PGP SIGNATURE----- --=-=-=--