summaryrefslogtreecommitdiff
path: root/dev-python/genson
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/genson')
-rw-r--r--dev-python/genson/Manifest1
-rw-r--r--dev-python/genson/files/genson-1.2.2-test.patch28
2 files changed, 0 insertions, 29 deletions
diff --git a/dev-python/genson/Manifest b/dev-python/genson/Manifest
index c902d94ccdee..e13640d931e2 100644
--- a/dev-python/genson/Manifest
+++ b/dev-python/genson/Manifest
@@ -1,4 +1,3 @@
-AUX genson-1.2.2-test.patch 1022 BLAKE2B 9ee212400676b1b836384cf427ad28690efdb96c49e830e281b7990b86c8b3ffc78df3bd3e159872f1c40dd49d63d49341a1415b6f56a73f7e5cebc223d73311 SHA512 4b47824c054112627b8309b6b28f11adff43664af73ab0a9d09f9a4ae80cbdf3fe0b4f716eea5c5628b716b4ea75bafb5377ab4fbf67552b58b846b6aff0a1b2
DIST genson-1.1.0.tar.gz 26662 BLAKE2B 726b0467edca9ca503d73c914d35392f0784ae8be01a8287b84da3cd5ae4b4cd6e12a46b1a7baf73db40377b915ddb3c4b53f4a135e3923fa775af5b51a5261c SHA512 54264dcc51cd5ece9bd428079fcd5cf833f32ef36afbb7987de9982d33253834c5c8c35d18b21ad4003fc2ffac4da02965a00844457b7d8ca6c6bf3d3facb8d6
DIST genson-1.2.2.tar.gz 34387 BLAKE2B 2e3c3b0fd96d93fe1e7244c11828dfb42d8e9bd97058a1b76d983e02094b2e62560e00b08e2ce1d21abf7e858f481a9e2a5678d51b27162fde1d60535031f54e SHA512 9caf1936518db5ffb412c6b1f1d28b33e9aef2e6f9b2fe50bcc2932a75522dcbc57bf7bc6b3df41244ee470060295a92fb6ba0be9f6fcf512950a81615f85f87
EBUILD genson-1.1.0-r1.ebuild 682 BLAKE2B f190ed82975a9e33094c5cd972d75ed8d5c3ea95a24a67ec15be28a9111c0fdbb98c0e0ebbdd18839e19b2d7d542064261861992d09f9cd32b7effe73311b42d SHA512 2a2eb1b8ad3aec8cc09dc01216ed80e11d4547c015f16c6090729a74fbde872969e1a174a013cc044326fdabf38d74b9d1495033120b2ff4b6fda44991354668
diff --git a/dev-python/genson/files/genson-1.2.2-test.patch b/dev-python/genson/files/genson-1.2.2-test.patch
deleted file mode 100644
index 1fb14ea900b0..000000000000
--- a/dev-python/genson/files/genson-1.2.2-test.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 48cb6895f1a4b3320d9ae210debd0befe06bec43 Mon Sep 17 00:00:00 2001
-From: Jon Wolverton <jonwolverton@google.com>
-Date: Mon, 19 Apr 2021 14:27:42 -0400
-Subject: [PATCH] use python -m genson for test_bin
-
----
- test/test_bin.py | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/test/test_bin.py b/test/test_bin.py
-index cd16d38..acee10f 100644
---- a/test/test_bin.py
-+++ b/test/test_bin.py
-@@ -25,8 +25,9 @@ def run(args=[], stdin_data=None):
- Run the ``genson`` executable as a subprocess and return
- (stdout, stderr).
- """
-- genson_process = Popen(['genson'] + args, stdout=PIPE, stderr=PIPE,
-- stdin=PIPE if stdin_data is not None else None)
-+ genson_process = Popen(
-+ ['python', '-m', 'genson'] + args, stdout=PIPE, stderr=PIPE,
-+ stdin=PIPE if stdin_data is not None else None)
- if stdin_data is not None:
- stdin_data = stdin_data.encode('utf-8')
- (stdout, stderr) = genson_process.communicate(stdin_data)
---
-2.40.0
-