public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/autobahn/files/
@ 2018-04-20  7:34 Michał Górny
  0 siblings, 0 replies; 2+ messages in thread
From: Michał Górny @ 2018-04-20  7:34 UTC (permalink / raw
  To: gentoo-commits

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=UTF-8, Size: 4362 bytes --]

commit:     a38b46cfa8980a79ecb783a138445f1fab479a8e
Author:     Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Sun Apr  8 12:53:51 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 20 07:33:58 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a38b46cf

dev-python/autobahn: remove binary junk

Replaced with a 'fixed' copy from upstream, removed the extraneous
portions.

https://github.com/crossbario/autobahn-python/commit/604bc53a3beec173020c944ce9cb38afca2a9126.patch

Closes: https://github.com/gentoo/gentoo/pull/7868
Package-Manager: Portage-2.3.28, Repoman-2.3.9

 .../files/autobahn-18.3.1-Fix-cs-test-955.patch    | 38 +++++++++++++++-------
 1 file changed, 26 insertions(+), 12 deletions(-)

diff --git a/dev-python/autobahn/files/autobahn-18.3.1-Fix-cs-test-955.patch b/dev-python/autobahn/files/autobahn-18.3.1-Fix-cs-test-955.patch
index 07c5a0a20e2..a62f48569ce 100644
--- a/dev-python/autobahn/files/autobahn-18.3.1-Fix-cs-test-955.patch
+++ b/dev-python/autobahn/files/autobahn-18.3.1-Fix-cs-test-955.patch
@@ -1,18 +1,35 @@
 From 604bc53a3beec173020c944ce9cb38afca2a9126 Mon Sep 17 00:00:00 2001
-From:   <°?¡\x06>
+From: Tobias Oberstein <tobias.oberstein@crossbario.com>
 Date: Fri, 9 Mar 2018 10:37:31 +0100
 Subject: [PATCH] Fix cs test (#955)
 
+* encode test string
+
+* already an instance
+
+* add extra deps (encryption)
+
+* add extra deps
+
+* deactivate py 3.3, tx < 15.4
+
+* systematic version coverage
+
+* fix coverage (hopefully)
+
+* another try
+
+* actually need to yield, as a future is returned
 ---
- .travis.yml                           | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++-----
- Makefile                              |  3 +++
+ .travis.yml                           | 58 ++++++++++++++++++++++++++++++++---
+ Makefile                              |  3 ++
  autobahn/asyncio/rawsocket.py         |  2 +-
- autobahn/wamp/test/test_cryptosign.py | 18 +++++++++++++++---
- tox.ini                               | 32 +++++++++++++++++---------------
+ autobahn/wamp/test/test_cryptosign.py | 18 +++++++++--
+ tox.ini                               | 32 ++++++++++---------
  5 files changed, 89 insertions(+), 24 deletions(-)
 
 diff --git a/autobahn/asyncio/rawsocket.py b/autobahn/asyncio/rawsocket.py
-index 130a8e4..bbb8333 100644
+index 130a8e41..bbb83337 100644
 --- a/autobahn/asyncio/rawsocket.py
 +++ b/autobahn/asyncio/rawsocket.py
 @@ -408,7 +408,7 @@ class WampRawSocketClientProtocol(WampRawSocketMixinGeneral, WampRawSocketMixinA
@@ -25,7 +42,7 @@ index 130a8e4..bbb8333 100644
  
      def get_channel_id(self, channel_id_type=u'tls-unique'):
 diff --git a/autobahn/wamp/test/test_cryptosign.py b/autobahn/wamp/test/test_cryptosign.py
-index 700ca3c..78f8d55 100644
+index 700ca3cc..78f8d556 100644
 --- a/autobahn/wamp/test/test_cryptosign.py
 +++ b/autobahn/wamp/test/test_cryptosign.py
 @@ -25,9 +25,21 @@
@@ -50,7 +67,7 @@ index 700ca3c..78f8d55 100644
  from autobahn.wamp.cryptosign import _makepad, HAS_CRYPTOSIGN
  from autobahn.wamp import types
  from autobahn.wamp.auth import create_authenticator
-@@ -59,14 +71,14 @@ class TestAuth(unittest.TestCase):
+@@ -59,14 +71,14 @@ def setUp(self):
          self.key = SigningKey.from_ssh_data(keybody)
          self.privkey_hex = self.key._key.encode(encoder=HexEncoder)
          m = hashlib.sha256()
@@ -67,7 +84,7 @@ index 700ca3c..78f8d55 100644
          self.assertEqual(
              u'9b6f41540c9b95b4b7b281c3042fa9c54cef43c842d62ea3fd6030fcb66e70b3e80d49d44c29d1635da9348d02ec93f3ed1ef227dfb59a07b580095c2b82f80f9d16ca518aa0c2b707f2b2a609edeca73bca8dd59817a633f35574ac6fd80d00',
              signed.result,
-@@ -81,7 +93,7 @@ class TestAuth(unittest.TestCase):
+@@ -81,7 +93,7 @@ def test_authenticator(self):
          session = Mock()
          session._transport.get_channel_id = Mock(return_value=self.channel_id)
          challenge = types.Challenge(u"cryptosign", dict(challenge="ff" * 32))
@@ -76,6 +93,3 @@ index 700ca3c..78f8d55 100644
          self.assertEqual(
              reply.result,
              u'9b6f41540c9b95b4b7b281c3042fa9c54cef43c842d62ea3fd6030fcb66e70b3e80d49d44c29d1635da9348d02ec93f3ed1ef227dfb59a07b580095c2b82f80f9d16ca518aa0c2b707f2b2a609edeca73bca8dd59817a633f35574ac6fd80d00',
---
-libgit2 0.24.6
-


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/autobahn/files/
@ 2020-07-21 15:50 Andreas Sturmlechner
  0 siblings, 0 replies; 2+ messages in thread
From: Andreas Sturmlechner @ 2020-07-21 15:50 UTC (permalink / raw
  To: gentoo-commits

commit:     30c4d6b868c0724fb1865a5ed9668b1f69e1abff
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue Jul 21 14:06:36 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jul 21 15:50:10 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30c4d6b8

dev-python/autobahn: remove unused patch(es)

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16763
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 .../files/autobahn-18.3.1-Fix-cs-test-955.patch    | 95 ----------------------
 1 file changed, 95 deletions(-)

diff --git a/dev-python/autobahn/files/autobahn-18.3.1-Fix-cs-test-955.patch b/dev-python/autobahn/files/autobahn-18.3.1-Fix-cs-test-955.patch
deleted file mode 100644
index a62f48569ce..00000000000
--- a/dev-python/autobahn/files/autobahn-18.3.1-Fix-cs-test-955.patch
+++ /dev/null
@@ -1,95 +0,0 @@
-From 604bc53a3beec173020c944ce9cb38afca2a9126 Mon Sep 17 00:00:00 2001
-From: Tobias Oberstein <tobias.oberstein@crossbario.com>
-Date: Fri, 9 Mar 2018 10:37:31 +0100
-Subject: [PATCH] Fix cs test (#955)
-
-* encode test string
-
-* already an instance
-
-* add extra deps (encryption)
-
-* add extra deps
-
-* deactivate py 3.3, tx < 15.4
-
-* systematic version coverage
-
-* fix coverage (hopefully)
-
-* another try
-
-* actually need to yield, as a future is returned
----
- .travis.yml                           | 58 ++++++++++++++++++++++++++++++++---
- Makefile                              |  3 ++
- autobahn/asyncio/rawsocket.py         |  2 +-
- autobahn/wamp/test/test_cryptosign.py | 18 +++++++++--
- tox.ini                               | 32 ++++++++++---------
- 5 files changed, 89 insertions(+), 24 deletions(-)
-
-diff --git a/autobahn/asyncio/rawsocket.py b/autobahn/asyncio/rawsocket.py
-index 130a8e41..bbb83337 100644
---- a/autobahn/asyncio/rawsocket.py
-+++ b/autobahn/asyncio/rawsocket.py
-@@ -408,7 +408,7 @@ class WampRawSocketClientProtocol(WampRawSocketMixinGeneral, WampRawSocketMixinA
-     @property
-     def serializer_id(self):
-         if not hasattr(self, '_serializer'):
--            self._serializer = self.factory._serializer()
-+            self._serializer = self.factory._serializer
-         return self._serializer.RAWSOCKET_SERIALIZER_ID
- 
-     def get_channel_id(self, channel_id_type=u'tls-unique'):
-diff --git a/autobahn/wamp/test/test_cryptosign.py b/autobahn/wamp/test/test_cryptosign.py
-index 700ca3cc..78f8d556 100644
---- a/autobahn/wamp/test/test_cryptosign.py
-+++ b/autobahn/wamp/test/test_cryptosign.py
-@@ -25,9 +25,21 @@
- ###############################################################################
- 
- from __future__ import absolute_import
-+
- import hashlib
-+import os
-+
- from mock import Mock
- 
-+import txaio
-+
-+if os.environ.get('USE_TWISTED', False):
-+    txaio.use_twisted()
-+elif os.environ.get('USE_ASYNCIO', False):
-+    txaio.use_asyncio()
-+else:
-+    raise Exception('no networking framework selected')
-+
- from autobahn.wamp.cryptosign import _makepad, HAS_CRYPTOSIGN
- from autobahn.wamp import types
- from autobahn.wamp.auth import create_authenticator
-@@ -59,14 +71,14 @@ def setUp(self):
-         self.key = SigningKey.from_ssh_data(keybody)
-         self.privkey_hex = self.key._key.encode(encoder=HexEncoder)
-         m = hashlib.sha256()
--        m.update("some TLS message")
-+        m.update("some TLS message".encode())
-         self.channel_id = m.digest()
- 
-     def test_valid(self):
-         session = Mock()
-         session._transport.get_channel_id = Mock(return_value=self.channel_id)
-         challenge = types.Challenge(u"ticket", dict(challenge="ff" * 32))
--        signed = self.key.sign_challenge(session, challenge)
-+        signed = yield self.key.sign_challenge(session, challenge)
-         self.assertEqual(
-             u'9b6f41540c9b95b4b7b281c3042fa9c54cef43c842d62ea3fd6030fcb66e70b3e80d49d44c29d1635da9348d02ec93f3ed1ef227dfb59a07b580095c2b82f80f9d16ca518aa0c2b707f2b2a609edeca73bca8dd59817a633f35574ac6fd80d00',
-             signed.result,
-@@ -81,7 +93,7 @@ def test_authenticator(self):
-         session = Mock()
-         session._transport.get_channel_id = Mock(return_value=self.channel_id)
-         challenge = types.Challenge(u"cryptosign", dict(challenge="ff" * 32))
--        reply = authenticator.on_challenge(session, challenge)
-+        reply = yield authenticator.on_challenge(session, challenge)
-         self.assertEqual(
-             reply.result,
-             u'9b6f41540c9b95b4b7b281c3042fa9c54cef43c842d62ea3fd6030fcb66e70b3e80d49d44c29d1635da9348d02ec93f3ed1ef227dfb59a07b580095c2b82f80f9d16ca518aa0c2b707f2b2a609edeca73bca8dd59817a633f35574ac6fd80d00',


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-07-21 15:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-20  7:34 [gentoo-commits] repo/gentoo:master commit in: dev-python/autobahn/files/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2020-07-21 15:50 Andreas Sturmlechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox