From unknown Tue Jun 17 20:19:42 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#29415 <29415@debbugs.gnu.org> To: bug#29415 <29415@debbugs.gnu.org> Subject: Status: [PATCH] gnu: python-axolotl: Update to 0.1.39 and fix build. Reply-To: bug#29415 <29415@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:19:42 +0000 retitle 29415 [PATCH] gnu: python-axolotl: Update to 0.1.39 and fix build. reassign 29415 guix-patches submitter 29415 Adam Van Ymeren severity 29415 normal tag 29415 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 23 15:05:12 2017 Received: (at submit) by debbugs.gnu.org; 23 Nov 2017 20:05:12 +0000 Received: from localhost ([127.0.0.1]:54168 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHxkB-0007s1-Ru for submit@debbugs.gnu.org; Thu, 23 Nov 2017 15:05:12 -0500 Received: from eggs.gnu.org ([208.118.235.92]:33008) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eHxk9-0007rU-MD for submit@debbugs.gnu.org; Thu, 23 Nov 2017 15:05:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eHxk3-00048Q-Bz for submit@debbugs.gnu.org; Thu, 23 Nov 2017 15:05:00 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:46048) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eHxk3-000488-9g for submit@debbugs.gnu.org; Thu, 23 Nov 2017 15:04:59 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52149) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eHxk1-0003WQ-RU for guix-patches@gnu.org; Thu, 23 Nov 2017 15:04:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eHxjx-00040M-4M for guix-patches@gnu.org; Thu, 23 Nov 2017 15:04:57 -0500 Received: from mail2.vany.ca ([142.54.190.254]:47176) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eHxjw-0003zO-Ur for guix-patches@gnu.org; Thu, 23 Nov 2017 15:04:53 -0500 Received: from adamvy-laptop (unknown [192.159.178.248]) by mail2.vany.ca (Postfix) with ESMTPSA id 4FAFCAC1EA0 for ; Thu, 23 Nov 2017 14:04:47 -0600 (CST) From: Adam Van Ymeren To: guix-patches@gnu.org Subject: [PATCH] gnu: python-axolotl: Update to 0.1.39 and fix build. Date: Thu, 23 Nov 2017 15:04:46 -0500 Message-ID: <87y3mw3go1.fsf@vany.ca> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.4 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.4 (----) Patch taken from the debian package for python-axolotl-0.1.39. python-axolotl has been failing since March, https://hydra.gnu.org/job/gnu/master/python-axolotl-0.1.35.x86_64-linux This also fixes the OMEMO and OTR plugins for Gajim work. --- ...olotl-removes-IV-parameter-at-AES-creation.patch | 21 +++++++++++++++++++++ gnu/packages/python-crypto.scm | 6 ++++-- 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 gnu/packages/patches/python-axolotl-removes-IV-parameter-at-AES-creation.patch diff --git a/gnu/packages/patches/python-axolotl-removes-IV-parameter-at-AES-creation.patch b/gnu/packages/patches/python-axolotl-removes-IV-parameter-at-AES-creation.patch new file mode 100644 index 000000000..b25806ca2 --- /dev/null +++ b/gnu/packages/patches/python-axolotl-removes-IV-parameter-at-AES-creation.patch @@ -0,0 +1,21 @@ +Description: Removes IV paramenter from AES constructor, since it is not necessary for ctr mode. +Author: Josue Ortega +Last-Update: 2017-04-13 + +--- a/axolotl/sessioncipher.py ++++ b/axolotl/sessioncipher.py +@@ -228,13 +228,7 @@ + # counterint = struct.unpack(">L", counterbytes)[0] + # counterint = int.from_bytes(counterbytes, byteorder='big') + ctr = Counter.new(128, initial_value=counter) +- +- # cipher = AES.new(key, AES.MODE_CTR, counter=ctr) +- ivBytes = bytearray(16) +- ByteUtil.intToByteArray(ivBytes, 0, counter) +- +- cipher = AES.new(key, AES.MODE_CTR, IV=bytes(ivBytes), counter=ctr) +- ++ cipher = AES.new(key, AES.MODE_CTR, counter=ctr) + return cipher + + diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 77409d86d..3ffa477fe 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm @@ -430,7 +430,7 @@ python-axolotl.") (define-public python-axolotl (package (name "python-axolotl") - (version "0.1.35") + (version "0.1.39") (source (origin (method url-fetch) @@ -438,8 +438,10 @@ python-axolotl.") "https://github.com/tgalal/python-axolotl/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) + (patches (search-patches + "python-axolotl-removes-IV-parameter-at-AES-creation.patch")) (sha256 - (base32 "1z8d89p7v40p4bwywjm9h4z28fdvra79ddw06azlkrfjbl7dxmz8")))) + (base32 "0badsgkgz0ir3hqynxzsfjgacppi874syvvmgccc6j164053x6zm")))) (build-system python-build-system) (arguments `(#:phases -- 2.15.0 From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 24 19:09:57 2017 Received: (at 29415) by debbugs.gnu.org; 25 Nov 2017 00:09:57 +0000 Received: from localhost ([127.0.0.1]:56625 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eIO2f-0001Qe-0U for submit@debbugs.gnu.org; Fri, 24 Nov 2017 19:09:57 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:47929) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eIO2c-0001QW-NY for 29415@debbugs.gnu.org; Fri, 24 Nov 2017 19:09:55 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 726F4209D1; Fri, 24 Nov 2017 19:09:54 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute4.internal (MEProxy); Fri, 24 Nov 2017 19:09:54 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= mesmtp; bh=I5jwN45rl7W40Sz1HhVX/qMTKzq4lGGJc8eEgS9nQks=; b=a24/z 9Z6ZeHUffIrD1M7uiv9KnzWnh8fiqPM9PBIuYIKjuQXHgydTYqXvimNUk2q7vxbJ wHwR4jdkNkJvEbvpdX8LBxCkyMhU0r+0zA3auzq+h3n3uAXgNMzh/DuERiop/xHV ptzYfaUWVjSLpD0fzM4uQ/KwYRJhLUeg0F2IjQ= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=fm1; bh=I5jwN45rl7W40Sz1HhVX/qMTKzq4l GGJc8eEgS9nQks=; b=ANZshIdX/KqBuWz0gXXk1+0EkzTRQjwYnEq/MH6260sis 5HK4dXYd/srzvH+qxAw/kb+KXdXfLGQPSLAFW1y1oeUJzVxZTrlGtEOvw899gkOx LgAhdcBCQ87iS7HdcXP7w956SlLm7lmg39DjwcuHNXB26YbHKiYpnV9Na9/av8tu ELJLI3nbIJ0zdHLIwExEWFnYDk+OM9qVsPoMxu6A7MKvBtNYTZ4bVD/bo5wLuRh7 8ZuWoKJgsIVohdati59+PpbD6vX1ro+kqJz4E1n6PazrwNcZfFR0WVBdUrLQG+0s N73M9ixJobYeGowqLXAVPYKAMTpS5YkMmfbSzZGww== X-ME-Sender: Received: from localhost (c-73-165-108-70.hsd1.pa.comcast.net [73.165.108.70]) by mail.messagingengine.com (Postfix) with ESMTPA id 2AFC67EDB4; Fri, 24 Nov 2017 19:09:54 -0500 (EST) Date: Fri, 24 Nov 2017 19:09:52 -0500 From: Leo Famulari To: Adam Van Ymeren Subject: Re: [bug#29415] [PATCH] gnu: python-axolotl: Update to 0.1.39 and fix build. Message-ID: <20171125000952.GA17061@jasmine.lan> References: <87y3mw3go1.fsf@vany.ca> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="0F1p//8PRICkK4MW" Content-Disposition: inline In-Reply-To: <87y3mw3go1.fsf@vany.ca> User-Agent: Mutt/1.9.1 (2017-09-22) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 29415 Cc: 29415@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --0F1p//8PRICkK4MW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Nov 23, 2017 at 03:04:46PM -0500, Adam Van Ymeren wrote: Hi, > Patch taken from the debian package for python-axolotl-0.1.39. >=20 > python-axolotl has been failing since March, > https://hydra.gnu.org/job/gnu/master/python-axolotl-0.1.35.x86_64-linux >=20 > This also fixes the OMEMO and OTR plugins for Gajim work. Thanks for looking into this and sending the patch. > diff --git a/gnu/packages/patches/python-axolotl-removes-IV-parameter-at-= AES-creation.patch b/gnu/packages/patches/python-axolotl-removes-IV-paramet= er-at-AES-creation.patch > new file mode 100644 > index 000000000..b25806ca2 > --- /dev/null > +++ b/gnu/packages/patches/python-axolotl-removes-IV-parameter-at-AES-cre= ation.patch > @@ -0,0 +1,21 @@ > +Description: Removes IV paramenter from AES constructor, since it is not= necessary for ctr mode. > +Author: Josue Ortega > +Last-Update: 2017-04-13 > + > +--- a/axolotl/sessioncipher.py > ++++ b/axolotl/sessioncipher.py > +@@ -228,13 +228,7 @@ > + # counterint =3D struct.unpack(">L", counterbytes)[0] > + # counterint =3D int.from_bytes(counterbytes, byteorder=3D'big') > + ctr =3D Counter.new(128, initial_value=3Dcounter) > +- > +- # cipher =3D AES.new(key, AES.MODE_CTR, counter=3Dctr) > +- ivBytes =3D bytearray(16) > +- ByteUtil.intToByteArray(ivBytes, 0, counter) > +- > +- cipher =3D AES.new(key, AES.MODE_CTR, IV=3Dbytes(ivBytes), coun= ter=3Dctr) > +- > ++ cipher =3D AES.new(key, AES.MODE_CTR, counter=3Dctr) > + return cipher I think this change should be submitted upstream, which is here: https://github.com/tgalal/python-axolotl Can you do that? We wouldn't have to wait for a new release of python-axolotl, but we should wait to hear what the upstream maintainer thinks. --0F1p//8PRICkK4MW Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAloYtM0ACgkQJkb6MLrK fwjgrw/+MR/CtIzy05V0fwFZ/5z+EyHiWpBpjohkHrIVl5l+dummX4ht9+GpWfkR 1weK8i0viluSPeVqZ6S+gUBffVD10eL/A4N5mr3yQrJsd61TnHnMbGFiljDsbRq1 manUUc8O/YhCCYQ2IYf0ukMK0v5XV1TmpAh9icU4PBFCYli5Bpjq4A3aqr3Iq87P mhl846uUK80Y+0Tl48h0uj0cVgDbbJeKLB0YFnj3+XbKED9AZq4QnwFdzIlDAFjt SLAwVORtb+FMeZfcUx/QT54yKj2rXGwsyOB4w40zjZvfe0sWD7Iljq7wLd9isChl dH3hfqEJca9TArm+oOb1IrpJdyMhSTeCtgDeflxr1N7tk7CiRpCTVlHkCSMO2ANS PGf4xp8IELed5JMV2co8fCv13d71a8W2UadAyzLEPgjvmoni2x2WC976VX/CuHis 1CbRnhHNZHToiqc1QF0d6/dl3dL6UFWW8v5NX5Y3iSgsyLyVYy7eSR2XAWNg5igO qgsR85aemcN3jTynRUXKV3IZyLqySG+G/pzLuLhK7GCg46ti0cmFnuLQdQ9mwMdI 91Gb92/C2x1/vAjLH/0wGShA3yEal7XbNEVeK9Pug7mitLfkZQ5JkGq0PbeQebj7 jDutFg0gABqDhF9al/slOWhyksGMpjRTcqyiiQYak7VpWheugpA= =SuBl -----END PGP SIGNATURE----- --0F1p//8PRICkK4MW-- From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 27 10:00:08 2017 Received: (at 29415) by debbugs.gnu.org; 27 Nov 2017 15:00:08 +0000 Received: from localhost ([127.0.0.1]:32845 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eJKtE-0004CP-G6 for submit@debbugs.gnu.org; Mon, 27 Nov 2017 10:00:08 -0500 Received: from mail2.vany.ca ([142.54.190.254]:38759) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eJKtC-0004BP-Kr for 29415@debbugs.gnu.org; Mon, 27 Nov 2017 10:00:07 -0500 Received: from adamvy-laptop (dsl1962.rba1.pppoe.execulink.com [209.213.253.180]) by mail2.vany.ca (Postfix) with ESMTPSA id 8C132AC0258; Mon, 27 Nov 2017 09:00:02 -0600 (CST) From: Adam Van Ymeren To: Leo Famulari Subject: Re: [bug#29415] [PATCH] gnu: python-axolotl: Update to 0.1.39 and fix build. References: <87y3mw3go1.fsf@vany.ca> <20171125000952.GA17061@jasmine.lan> Date: Mon, 27 Nov 2017 10:00:01 -0500 In-Reply-To: <20171125000952.GA17061@jasmine.lan> (Leo Famulari's message of "Fri, 24 Nov 2017 19:09:52 -0500") Message-ID: <87vahvvkb2.fsf@vany.ca> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 29415 Cc: 29415@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Leo Famulari writes: > I think this change should be submitted upstream, which is here: > > https://github.com/tgalal/python-axolotl > > Can you do that? We wouldn't have to wait for a new release of > python-axolotl, but we should wait to hear what the upstream maintainer > thinks. Pull request sent. There is also a pull request pending from someone else that updates pyton-axolotl to use a newer python cryptography library rather than the deprecated python-pycrypto library. That would also fix this issue and is a much better long term fix but also a more intrusive change. From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 27 13:10:04 2017 Received: (at 29415) by debbugs.gnu.org; 27 Nov 2017 18:10:04 +0000 Received: from localhost ([127.0.0.1]:32980 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eJNr2-0000Z8-9o for submit@debbugs.gnu.org; Mon, 27 Nov 2017 13:10:04 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:35643) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eJNr0-0000Yz-Uk for 29415@debbugs.gnu.org; Mon, 27 Nov 2017 13:10:03 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 17FB420CFF; Mon, 27 Nov 2017 13:10:01 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute4.internal (MEProxy); Mon, 27 Nov 2017 13:10:01 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= mesmtp; bh=VdxbFRSG7BKzhcUaK6hHSu1gKxG6fX6YP2GFhglFf0Y=; b=nWdWH V0tNsuTRawqzM4/tW2xOLfVfpULDy4NsRIiTgsJPdvdOqnY5nr2XuZjnBquDMZTP RZEjiB7waxnXnDb/a1DSf+yqxB9D/ldVn+S5R7PjZ34re1+3iDrnA26mMhHRtECP FsAm3AdAOFg2VOogXNC5q5n2+UvRJ6n0qxCdAk= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=fm1; bh=VdxbFRSG7BKzhcUaK6hHSu1gKxG6f X6YP2GFhglFf0Y=; b=qyorioHs9VmRP2ABqumcPpUUpJY9O2wh5YZwztHaVzS1D MEn+ZY4fR3Q0hAL4IlOc9dF6qahco3jLR+ClDJeIIWcHm5igQ7VMiQk+vr7jhLGC EQ7yzpyvB7Rd/PqNv9vrZIVyCOGNLZx/aajBRjguj1w9krOE5x9AHVnhSC4VyLY1 lJdJYtWf8swCHSFeJZ54gszcG0YTa9yb1dC/34XhqEMiQ0GbIWiwE30bZjiTydLb YIou9oeCpgQSqOgg9ZzBgNuXmBYPexYQ3ipW5ep9pMZDJ9nkQuKu4S2KyVj6oTUc 22YpaaHBueSrf0L0UrvxXwsrrarODxxeuJNxGvIiQ== X-ME-Sender: Received: from localhost (c-73-165-108-70.hsd1.pa.comcast.net [73.165.108.70]) by mail.messagingengine.com (Postfix) with ESMTPA id C75967F813; Mon, 27 Nov 2017 13:10:00 -0500 (EST) Date: Mon, 27 Nov 2017 13:09:59 -0500 From: Leo Famulari To: Adam Van Ymeren Subject: Re: [bug#29415] [PATCH] gnu: python-axolotl: Update to 0.1.39 and fix build. Message-ID: <20171127180959.GC20970@jasmine.lan> References: <87y3mw3go1.fsf@vany.ca> <20171125000952.GA17061@jasmine.lan> <87vahvvkb2.fsf@vany.ca> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="3siQDZowHQqNOShm" Content-Disposition: inline In-Reply-To: <87vahvvkb2.fsf@vany.ca> User-Agent: Mutt/1.9.1 (2017-09-22) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 29415 Cc: 29415@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --3siQDZowHQqNOShm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Nov 27, 2017 at 10:00:01AM -0500, Adam Van Ymeren wrote: > Leo Famulari writes: > There is also a pull request pending from someone else that updates > pyton-axolotl to use a newer python cryptography library rather than the > deprecated python-pycrypto library. That would also fix this issue and > is a much better long term fix but also a more intrusive change. I noticed that as well. Pycrypto is no longer maintained and has an extremely serious bug that was never fixed in a released version: https://github.com/dlitz/pycrypto/issues/176 And the author seems to implicitly agree that people should stop using it: https://github.com/dlitz/pycrypto/issues/173 So I added a TODO comment to the package, saying that we should remove it: https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/python-crypto.scm?id=12a130b0118c3f56e6337e011dc4a89f2671359a#n186 So, I recommend being careful how you use any package that depends on pycrypto. --3siQDZowHQqNOShm Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlocVPcACgkQJkb6MLrK fwg1WA//R/FWAjD3ED95cDKMD/44Qpn6VR1KJFwzugtAh0p/z6aSyPYtu7bYRSyt EIzdI4kGqHmfiOTOYvr5UFQZIxmEYARccsyNmU/7E5HQKDkPA1IWU/7ucoSeg4rD 2e5kO+APzVRqhhPZqygyorr2qDNqBYVGaVJNmIcaduOoVOBxnhMoci9GI+CUbLXq 7lqp/JdjCoiN1bY0IZeyR5OdxmcZ89IKNQ5XEFX1lrIjCE/AQceTo7/URMeF12S2 7NUa4pdFPIH/cKM5Aed+k81QJaW9/yX3nxAL3coqmdaDznwN+cQ0vLrPrrwOg3yZ Li5KAEMRDxE6rNtLzhWp61SqE29o7bbcGouN2mVQtOxG6ZeI85NLl/xXBAdcNRfx OmqnUFEsCUzhYXFl2lGmrZFmM1kQiZ9UM8OwfbmDmNygcfLKjlDJq170G+bPqjeh sp6VFiE0Qa18Zn0IF8KEt2UJt6HTvfs2SDX2Dome6MS/R8d/0djOb1XF64iuBJZX X2HHgrmd5xrMAa/w47/v7S8/vxCvUnMdQ5/P1waV6AewtJIDZNtTClcNIq4YKFkV Q8IT9T5nmT0n5TLQWeJGZiUAeyVLBZ36yQ370iFRRIz6/0jG7bFBUie34hXgifZy o6SfZQgrqIoX441mqdjPety2PKe+zGn52sqBndXc+C/bFDtQIiA= =ShtK -----END PGP SIGNATURE----- --3siQDZowHQqNOShm-- From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 27 13:10:29 2017 Received: (at 29415) by debbugs.gnu.org; 27 Nov 2017 18:10:29 +0000 Received: from localhost ([127.0.0.1]:32984 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eJNrQ-0000Zr-OP for submit@debbugs.gnu.org; Mon, 27 Nov 2017 13:10:28 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:57853) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1eJNrN-0000Zh-O5 for 29415@debbugs.gnu.org; Mon, 27 Nov 2017 13:10:25 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 94FA22067B; Mon, 27 Nov 2017 13:10:25 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute4.internal (MEProxy); Mon, 27 Nov 2017 13:10:25 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= mesmtp; bh=+mitUp9SFwHut9BoLWITBz4443EoOHh/UUMxB2Gna0E=; b=ib35q 0aR3iYeLrlqFm/7jzS7MyqC7KN/Adxm2rR1MiVx8/mBAYfXpk1IRni5NXqvo8Y6y POUSHv2OhrTpzkMYGzaGrZqXkqFS+pYaLvooCHjMZ2nimebK/Oc3ZpTqbHB9sBVv fl3R90bfKJQ96L8ltKPbNN6EGiC6uRZjmkPsD8= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=fm1; bh=+mitUp9SFwHut9BoLWITBz4443EoO Hh/UUMxB2Gna0E=; b=CG526zMAA15z7nGbIluI2o6I649lohD6mmfj5E68a8zCO W68pCpgGAtEDCwHMT0UIv4fKw26b4pPf3Afm8ZNgQCGUlktwBT1PYLihttK0TADV EPEt2oNr6jZnDuLYuirZQPoF9yl4lRn0ebH78PDjtWR5mYgtz/Psd6ZqCdeYUX9n xZCPN3h/SVX8SfX/oqOb/+to0BsUttfaZ+nba+1GCSFdOCZTTNmfoRaS95zqRanO nr2lYY08rpm7pndSC5TOWwPvp2wcSeuzYwVQLL/NfauiNmMdokjDX2sdspLXB9kS Qrcg6rCQ+8KeX7mrw0oCqBzb6k1Fw2ohZ/Zcdb5Lw== X-ME-Sender: Received: from localhost (c-73-165-108-70.hsd1.pa.comcast.net [73.165.108.70]) by mail.messagingengine.com (Postfix) with ESMTPA id 52C4924751; Mon, 27 Nov 2017 13:10:25 -0500 (EST) Date: Mon, 27 Nov 2017 13:10:24 -0500 From: Leo Famulari To: Adam Van Ymeren Subject: Re: [bug#29415] [PATCH] gnu: python-axolotl: Update to 0.1.39 and fix build. Message-ID: <20171127181024.GD20970@jasmine.lan> References: <87y3mw3go1.fsf@vany.ca> <20171125000952.GA17061@jasmine.lan> <87vahvvkb2.fsf@vany.ca> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="XvKFcGCOAo53UbWW" Content-Disposition: inline In-Reply-To: <87vahvvkb2.fsf@vany.ca> User-Agent: Mutt/1.9.1 (2017-09-22) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 29415 Cc: 29415@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --XvKFcGCOAo53UbWW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Nov 27, 2017 at 10:00:01AM -0500, Adam Van Ymeren wrote: > Leo Famulari writes: > > I think this change should be submitted upstream, which is here: > > > > https://github.com/tgalal/python-axolotl > > > > Can you do that? We wouldn't have to wait for a new release of > > python-axolotl, but we should wait to hear what the upstream maintainer > > thinks. >=20 > Pull request sent. Great, please ping us when they respond or if they never do :) --XvKFcGCOAo53UbWW Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlocVRAACgkQJkb6MLrK fwgorg/7By1LxupDtweAxi34RzKjXPNq3zBGA4gDD20tPfdjT2czN403AH0n2pLv vWaSjv35VA0RjMhlZg3d4ALLFyI+Tiw9bX1rC1PeXpUeFhdfdfZu7+iDm3UO56pD dDf1mZSdR8aAWcdXV1U2obsF7BLkEy3I3v3ohGeVD7dL6ayZN888jmsoFp0O4S7v rB55uK7qRZIqKL7mFEdDfqkVj/oDnNStlEQQE9ev/mZyokKZ5ivWtMR2rNVKTgfH mLTKvvLBFqBsc4Yj90VVCHNjUZXem0YkgMbwswMt8Vf5gsg4olN5AAF1vt24BO2K Tch+lCfWvSC7neLz7L1Yevyj+TJ5wUwGBBgFdgiBI5JYUyhVQrR2uokajbpYH48N 4QQ8swuYf6Oqix87N/RM9lzkUJmy9cJgUwaPTsRD5vwfpyMgT7EC1A15rjY9AqNs radgTHQcLSs7gcz3nt72iQshYW5wMh4+prwEI/S68r51wKFiUsA0xKmCKXWdXMob S1xjBMfz03hX+w01mseFmwj6TuxFhokR1D5iycADiZ68GPfaStLOcwrrb9FWe9Uh K7U8asDChHhoMcwqUEOCoeelIaXMIQlta62aNXUKJ0tjpQw0sJqgbM4xUCkIqA20 ru3rT+BX0eZk06fdeTpnWh+PPHsEI4huVZNZN8xQBhR0qHlSNkA= =NE3l -----END PGP SIGNATURE----- --XvKFcGCOAo53UbWW-- From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 30 16:16:46 2018 Received: (at 29415) by debbugs.gnu.org; 30 Jan 2018 21:16:46 +0000 Received: from localhost ([127.0.0.1]:49886 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1egdGm-00061h-TX for submit@debbugs.gnu.org; Tue, 30 Jan 2018 16:16:46 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:57730) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1egdGk-00061X-UV for 29415@debbugs.gnu.org; Tue, 30 Jan 2018 16:16:43 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 6DE18118F6; Tue, 30 Jan 2018 22:16:42 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 14Y1rKippxgc; Tue, 30 Jan 2018 22:16:41 +0100 (CET) Received: from ribbon (unknown [IPv6:2a01:e0a:1d:7270:af76:b9b:ca24:c465]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 974E6118F5; Tue, 30 Jan 2018 22:16:40 +0100 (CET) From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Adam Van Ymeren Subject: Re: [bug#29415] [PATCH] gnu: python-axolotl: Update to 0.1.39 and fix build. References: <87y3mw3go1.fsf@vany.ca> <20171125000952.GA17061@jasmine.lan> <87vahvvkb2.fsf@vany.ca> Date: Tue, 30 Jan 2018 22:16:39 +0100 In-Reply-To: <87vahvvkb2.fsf@vany.ca> (Adam Van Ymeren's message of "Mon, 27 Nov 2017 10:00:01 -0500") Message-ID: <877erzvyh4.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 29415 Cc: 29415@debbugs.gnu.org, Leo Famulari X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) Hi Adam, Adam Van Ymeren skribis: > Leo Famulari writes: >> I think this change should be submitted upstream, which is here: >> >> https://github.com/tgalal/python-axolotl >> >> Can you do that? We wouldn't have to wait for a new release of >> python-axolotl, but we should wait to hear what the upstream maintainer >> thinks. > > Pull request sent. > > There is also a pull request pending from someone else that updates > pyton-axolotl to use a newer python cryptography library rather than the > deprecated python-pycrypto library. That would also fix this issue and > is a much better long term fix but also a more intrusive change. Any update on this? :-) Thanks in advance, Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 31 09:38:19 2018 Received: (at 29415) by debbugs.gnu.org; 31 Jan 2018 14:38:19 +0000 Received: from localhost ([127.0.0.1]:50442 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1egtWl-00049C-H4 for submit@debbugs.gnu.org; Wed, 31 Jan 2018 09:38:19 -0500 Received: from mail2.vany.ca ([142.54.190.254]:33978) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1egtWj-000492-7W for 29415@debbugs.gnu.org; Wed, 31 Jan 2018 09:38:17 -0500 Received: from adamvy-laptop (cmr-208-97-99-106.cr.net.cable.rogers.com [208.97.99.106]) by mail2.vany.ca (Postfix) with ESMTPSA id E35F1AC05B2; Wed, 31 Jan 2018 08:38:14 -0600 (CST) From: Adam Van Ymeren To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#29415] [PATCH] gnu: python-axolotl: Update to 0.1.39 and fix build. In-Reply-To: <877erzvyh4.fsf@gnu.org> References: <87y3mw3go1.fsf@vany.ca> <20171125000952.GA17061@jasmine.lan> <87vahvvkb2.fsf@vany.ca> <877erzvyh4.fsf@gnu.org> Date: Wed, 31 Jan 2018 09:38:14 -0500 Message-ID: <87y3keccvd.fsf@vany.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 29415 Cc: 29415@debbugs.gnu.org, Leo Famulari X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Ludovic Court=C3=A8s writes: > Hi Adam, > > Adam Van Ymeren skribis: > >> Leo Famulari writes: >>> I think this change should be submitted upstream, which is here: >>> >>> https://github.com/tgalal/python-axolotl >>> >>> Can you do that? We wouldn't have to wait for a new release of >>> python-axolotl, but we should wait to hear what the upstream maintainer >>> thinks. >> >> Pull request sent. >> >> There is also a pull request pending from someone else that updates >> pyton-axolotl to use a newer python cryptography library rather than the >> deprecated python-pycrypto library. That would also fix this issue and >> is a much better long term fix but also a more intrusive change. > > Any update on this? :-) Haven't heard anything from the maintainer :/. We could just go ahead and apply my patch anways :). Or remove the package from guix entirely. As it stands the package has been broken for over a year in guix. https://hydra.gnu.org/job/gnu/master/python-axolotl-0.1.35.x86_64-linux > > Thanks in advance, > Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 31 11:37:57 2018 Received: (at 29415-done) by debbugs.gnu.org; 31 Jan 2018 16:37:57 +0000 Received: from localhost ([127.0.0.1]:51431 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1egvOX-0007ib-Do for submit@debbugs.gnu.org; Wed, 31 Jan 2018 11:37:57 -0500 Received: from hera.aquilenet.fr ([185.233.100.1]:37548) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1egvOT-0007iE-G2 for 29415-done@debbugs.gnu.org; Wed, 31 Jan 2018 11:37:56 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 6322D11BBA; Wed, 31 Jan 2018 17:37:52 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id c3dn3J2oiPCR; Wed, 31 Jan 2018 17:37:51 +0100 (CET) Received: from ribbon (unknown [IPv6:2a01:e0a:1d:7270:af76:b9b:ca24:c465]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 0C93911B98; Wed, 31 Jan 2018 17:37:50 +0100 (CET) From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Adam Van Ymeren Subject: Re: [bug#29415] [PATCH] gnu: python-axolotl: Update to 0.1.39 and fix build. References: <87y3mw3go1.fsf@vany.ca> <20171125000952.GA17061@jasmine.lan> <87vahvvkb2.fsf@vany.ca> <877erzvyh4.fsf@gnu.org> <87y3keccvd.fsf@vany.ca> Date: Wed, 31 Jan 2018 17:37:49 +0100 In-Reply-To: <87y3keccvd.fsf@vany.ca> (Adam Van Ymeren's message of "Wed, 31 Jan 2018 09:38:14 -0500") Message-ID: <87lggernky.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 29415-done Cc: 29415-done@debbugs.gnu.org, Leo Famulari X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) Hi Adam, Adam Van Ymeren skribis: > Ludovic Court=C3=A8s writes: [...] >> Any update on this? :-) > > Haven't heard anything from the maintainer :/. > > We could just go ahead and apply my patch anways :). Or remove the > package from guix entirely. As it stands the package has been broken > for over a year in guix. > > https://hydra.gnu.org/job/gnu/master/python-axolotl-0.1.35.x86_64-linux Indeed. I adjusted the patch and commit log and pushed it as commit 51f887f33d08a805fa62c726c81904ce54a540ac. Sorry for taking so long! Thank you, Ludo=E2=80=99. From unknown Tue Jun 17 20:19:42 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 01 Mar 2018 12:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator