From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48660) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gHzhb-0004eS-0U for guix-patches@gnu.org; Wed, 31 Oct 2018 19:15:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gHzhW-00083k-37 for guix-patches@gnu.org; Wed, 31 Oct 2018 19:15:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53300) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gHzhV-00083a-Uu for guix-patches@gnu.org; Wed, 31 Oct 2018 19:15:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gHzhV-0001Rs-Ph for guix-patches@gnu.org; Wed, 31 Oct 2018 19:15:01 -0400 Subject: [bug#33220] [PATCH] python-ilinkedlist 0.2.0 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48372) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gHzgT-00044i-0G for guix-patches@gnu.org; Wed, 31 Oct 2018 19:13:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gHzgP-0006HJ-QL for guix-patches@gnu.org; Wed, 31 Oct 2018 19:13:56 -0400 Received: from mail-yw1-xc34.google.com ([2607:f8b0:4864:20::c34]:41739) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gHzgP-0006H0-JE for guix-patches@gnu.org; Wed, 31 Oct 2018 19:13:53 -0400 Received: by mail-yw1-xc34.google.com with SMTP id c126-v6so7188286ywd.8 for ; Wed, 31 Oct 2018 16:13:53 -0700 (PDT) Received: from localhost (50-251-161-19-static.hfc.comcastbusiness.net. [50.251.161.19]) by smtp.gmail.com with ESMTPSA id z11-v6sm8272943ywl.36.2018.10.31.16.13.51 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 31 Oct 2018 16:13:52 -0700 (PDT) Date: Wed, 31 Oct 2018 19:13:26 -0400 From: Luther Thompson Message-ID: <20181031191326.51136527@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/vE1ZHt6chd36mlbaFh.cfvs" 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: 33220@debbugs.gnu.org --MP_/vE1ZHt6chd36mlbaFh.cfvs Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Here's an update to the python module that I submitted a couple weeks ago. I tried to get the commit message right, but I don't know what that "gnu:" is at the beginning of each message in the git log. Does it just mean the change is in the `(gnu packages)` module? I went ahead and put it in anyway. Luther --MP_/vE1ZHt6chd36mlbaFh.cfvs Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-gnu-python-ilinkedlist-Update-to-0.2.0.patch >From b30c1bee3a0324cc29816dff6e0d3321e403330e Mon Sep 17 00:00:00 2001 From: Luther Thompson Date: Wed, 31 Oct 2018 18:56:10 -0400 Subject: [PATCH] gnu: python-ilinkedlist: Update to 0.2.0. * gnu/packages/python.scm (python-ilinkedlist): Update to 0.2.0. --- gnu/packages/python.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 29b4a8e35..f038581ad 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -14503,14 +14503,14 @@ run on top of the dynamic task schedulers. ") (define-public python-ilinkedlist (package (name "python-ilinkedlist") - (version "0.1.0") + (version "0.2.0") (source (origin (method url-fetch) (uri (pypi-uri "ilinkedlist" version)) (sha256 (base32 - "063c2gm4jkgkv0nsg7mrc8y0w82ms98l4xchmbrvr68cscglhk69")))) + "0klb846q5vs62d8f89my7wan1sji4yjj6pjhjch9dha3p8vlncd2")))) (build-system python-build-system) (native-inputs `(("python-pytest" ,python-pytest))) (inputs `(("python" ,python))) -- 2.19.1 --MP_/vE1ZHt6chd36mlbaFh.cfvs--