From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37099) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eBq0y-0007iV-Qf for guix-patches@gnu.org; Mon, 06 Nov 2017 17:37:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eBq0u-0001j3-FN for guix-patches@gnu.org; Mon, 06 Nov 2017 17:37:08 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:46113) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eBq0s-0001hh-Ql for guix-patches@gnu.org; Mon, 06 Nov 2017 17:37:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eBq0s-00059a-Go for guix-patches@gnu.org; Mon, 06 Nov 2017 17:37:02 -0500 Subject: [bug#29169] Updated patch for python-jsonrpclib-pelix Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87k1z362zc.fsf@zancanaro.id.au> <87inen62nv.fsf@zancanaro.id.au> Date: Mon, 06 Nov 2017 23:36:39 +0100 In-Reply-To: <87inen62nv.fsf@zancanaro.id.au> (Carlo Zancanaro's message of "Mon, 06 Nov 2017 22:56:52 +1100") Message-ID: <87tvy7m3uw.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Carlo Zancanaro Cc: 29169@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Carlo, Carlo Zancanaro skribis: > From 38646c4dbcf5c7dfe85e7685acfeab72da6a69db Mon Sep 17 00:00:00 2001 > From: Carlo Zancanaro > Date: Mon, 6 Nov 2017 22:39:11 +1100 > Subject: [PATCH 1/2] gnu: Add python-jsonrpclib-pelix. > > * gnu/packages/python.scm (python-jsonrpclib-pelix, python2-jsonrpclib-pe= lix): > New variables. Applied with the changes below. Please make sure to run =E2=80=98guix lint= =E2=80=99 next time. :-) Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 090069ab2..5b11a6371 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -16910,19 +16910,14 @@ embeddable JavaScript engine.") (base32 "1qs95vxplxwspbrqy8bvc195s58iy43qkf75yrjfql2sim8b25sl")))) (build-system python-build-system) - (home-page - "http://github.com/tcalmant/jsonrpclib/") - (synopsis - "This project is an implementation of the JSON-RPC v2.0 -specification (backwards-compatible) as a client library, for Python 2.7 and -Python 3.This version is a fork of jsonrpclib by Josh Marshall, usable with -Pelix remote services.") - (description - "This project is an implementation of the JSON-RPC v2.0 -specification (backwards-compatible) as a client library, for Python 2.7 and -Python 3.This version is a fork of jsonrpclib by Josh Marshall, usable with -Pelix remote services.") - (license #f))) + (home-page "https://github.com/tcalmant/jsonrpclib/") + (synopsis "JSON-RPC 2.0 client library for Python") + (description + "This library implements the JSON-RPC v2.0 +specification (backwards-compatible) as a client library for Python. This +version is a fork of jsonrpclib by Josh Marshall, usable with Pelix remote +services.") + (license license:asl2.0))) (define-public python2-jsonrpclib-pelix (package-with-python2 python-jsonrpclib-pelix)) --=-=-=--