From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40351) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dHUu2-0001Hy-8e for guix-patches@gnu.org; Sun, 04 Jun 2017 08:45:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dHUtz-0005KD-3u for guix-patches@gnu.org; Sun, 04 Jun 2017 08:45:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:52037) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dHUtz-0005Jw-0H for guix-patches@gnu.org; Sun, 04 Jun 2017 08:45:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dHUty-0003Mg-I7 for guix-patches@gnu.org; Sun, 04 Jun 2017 08:45:02 -0400 Subject: bug#26524: [PATCH 4/5] gnu: Add python2-steadymark Resent-Message-ID: From: Marius Bakke In-Reply-To: <20170528153241.15637-4-fredmanglis@gmail.com> References: <20170528153241.15637-1-fredmanglis@gmail.com> <20170528153241.15637-4-fredmanglis@gmail.com> Date: Sun, 04 Jun 2017 14:44:15 +0200 Message-ID: <874lvvzzvk.fsf@fastmail.com> 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: Muriithi Frederick Muriuki , 26524@debbugs.gnu.org --=-=-= Content-Type: text/plain Muriithi Frederick Muriuki writes: > * gnu/packages/python.scm (python2-steadymark): New variable. Applied with this diff (description wrapped at 80 chars): diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index c8701f968..ee216116c 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15017,7 +15017,7 @@ renderers (e.g. man pages or LaTeX).") ;; due to its dependence on couleur that has no support ;; for python3 (package - (name "python-steadymark") + (name "python2-steadymark") (version "0.7.3") (source (origin @@ -15035,21 +15035,18 @@ renderers (e.g. man pages or LaTeX).") `(#:python ,python-2 #:phases (modify-phases %standard-phases - (add-before 'build - 'patch-setup-py - (lambda* (#:key inputs #:allow-other-keys) - ;; Update requirements from dependecy==version + (add-before 'build 'patch-setup-py + (lambda _ + ;; Update requirements from dependency==version ;; to dependency>=version (substitute* "setup.py" (("==") ">=")) #t))))) - (home-page - "http://github.com/gabrielfalcao/steadymark") - (synopsis - "Markdown-based test runner for python. Good for github projects") + (home-page "https://github.com/gabrielfalcao/steadymark") + (synopsis "Markdown-based test runner for python") (description - "@code{Steadymark} allows documentation to be written in github-flavoured markdown. -The documentation may contain snippets of code surrounded by python code blocks and -@code{Steadymark} will find these snippets and run them, making sure that there are no old -malfunctional examples in the documentation examples.") + "@code{Steadymark} allows documentation to be written in github-flavoured +markdown. The documentation may contain snippets of code surrounded by python +code blocks and @code{Steadymark} will find these snippets and run them, making +sure that there are no old malfunctional examples in the documentation examples.") (license license:expat))) --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAlk0AJ8ACgkQoqBt8qM6 VPr+VwgA06ksdal9uE7Cr5WMHc+ScEwT7z8ODspg/qAeEPcSoKRk/WO+tKF++Km8 BWrE86QopRk7FPqd9e+6Knr8NLeOo+bUuYeYo7aPoWDOfcz5Wz6WF1EjRf1ekybJ oaKs+pnucPDwP//2xjbLhGrx1BpabzGU2rju9n2flqea6wiJ/Z3bm2y/AS0I26sW 4CdrnE3Gcmi+4lydXBDWFs9d1kIg22HfDrce+QSsqJipT5TufvrV1yt4rAVp4QHi GcWun3qEgEvw9QZ46nEsffAJ5Os5LaRjlDSPcAZufSKdJIfYEDMWwUgZX2Ox36b7 umf+uZVFXUF66JB+8e9BNKwTYbRuFQ== =UQbl -----END PGP SIGNATURE----- --=-=-=--