summaryrefslogtreecommitdiff
path: root/finance
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2022-01-14 11:49:41 +0000
committerwiz <wiz@pkgsrc.org>2022-01-14 11:49:41 +0000
commitb461ebc61eb28fe69cd1e993ac58e3c1757c7e47 (patch)
tree9805ebfe34408e9981eebfdd2ad617857f732131 /finance
parent71023e16e9c60a858d647271160d66c2cc71b386 (diff)
downloadpkgsrc-b461ebc61eb28fe69cd1e993ac58e3c1757c7e47.tar.gz
*: remove workaround patches for python 3.6
Diffstat (limited to 'finance')
-rw-r--r--finance/py-eth-hash/distinfo3
-rw-r--r--finance/py-eth-hash/patches/patch-setup.py23
-rw-r--r--finance/py-eth-typing/distinfo3
-rw-r--r--finance/py-eth-typing/patches/patch-setup.py22
-rw-r--r--finance/py-eth-utils/distinfo3
-rw-r--r--finance/py-eth-utils/patches/patch-setup.py23
6 files changed, 3 insertions, 74 deletions
diff --git a/finance/py-eth-hash/distinfo b/finance/py-eth-hash/distinfo
index 3ee24fc84ba..6862f059115 100644
--- a/finance/py-eth-hash/distinfo
+++ b/finance/py-eth-hash/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.6 2021/10/26 10:26:04 nia Exp $
+$NetBSD: distinfo,v 1.7 2022/01/14 11:49:42 wiz Exp $
BLAKE2s (eth-hash-0.3.2.tar.gz) = 08b8bee72091178a266047e6e8b3161b6298bf24a532aa34dbcc6cfea21d9f6a
SHA512 (eth-hash-0.3.2.tar.gz) = 519255ef7e798c9fcf454215ddba6b2cce4dc81380a5da3d74a6b4aca1c9112b679dca9708f222174b67ae3815aac8b7bb784341a410ee1ca573ea342e5f3b77
Size (eth-hash-0.3.2.tar.gz) = 5291253 bytes
-SHA1 (patch-setup.py) = 8da4ca9fdd58577c627df6662a3799d88e414138
diff --git a/finance/py-eth-hash/patches/patch-setup.py b/finance/py-eth-hash/patches/patch-setup.py
deleted file mode 100644
index 96b8ceea4b1..00000000000
--- a/finance/py-eth-hash/patches/patch-setup.py
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-setup.py,v 1.1 2021/02/15 14:59:25 mef Exp $
-
-py36 gives following flag:
-UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 2861: ordinal not in range(128)
-
---- setup.py.orig 2021-01-22 04:52:10.000000000 +0900
-+++ setup.py 2021-02-15 23:50:09.430652835 +0900
-@@ -1,5 +1,6 @@
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
-+import sys
- from setuptools import (
- setup,
- find_packages,
-@@ -46,7 +47,7 @@ extras_require['dev'] = (
- )
-
-
--with open('./README.md') as readme:
-+with open("./README.md", **({'encoding': 'UTF-8'} if sys.version_info.major>=3 else {})) as readme:
- long_description = readme.read()
-
-
diff --git a/finance/py-eth-typing/distinfo b/finance/py-eth-typing/distinfo
index 13c4c9c98f8..07d1657dd39 100644
--- a/finance/py-eth-typing/distinfo
+++ b/finance/py-eth-typing/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.5 2021/10/26 10:26:04 nia Exp $
+$NetBSD: distinfo,v 1.6 2022/01/14 11:49:43 wiz Exp $
BLAKE2s (eth-typing-2.2.2.tar.gz) = 38d82fcc788b649c279792fe0610a5cc340a8ba57a9abf0b7bcdcfeea9c49a8b
SHA512 (eth-typing-2.2.2.tar.gz) = 79185a1a940b776cc350c6b5e3506d6fa27a3cc6d8ea233f59e9b1696589c62f8af777f0b9d90be6ba4045cc456cd0ab972a12c67120ddb2d302cb111e82dffe
Size (eth-typing-2.2.2.tar.gz) = 5378 bytes
-SHA1 (patch-setup.py) = 674c387c0f6d42829499cfe1ee60bbb1642e46bc
diff --git a/finance/py-eth-typing/patches/patch-setup.py b/finance/py-eth-typing/patches/patch-setup.py
deleted file mode 100644
index f7be93f736b..00000000000
--- a/finance/py-eth-typing/patches/patch-setup.py
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-setup.py,v 1.1 2021/02/15 15:14:56 mef Exp $
-
-UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 2071: ordinal not in range(128)
-
---- setup.py.orig 2020-09-03 09:31:05.000000000 +0900
-+++ setup.py 2021-02-16 00:03:32.721946377 +0900
-@@ -1,5 +1,6 @@
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
-+import sys
- from setuptools import (
- setup,
- find_packages,
-@@ -38,7 +39,7 @@ extras_require['dev'] = (
- )
-
-
--with open('./README.md') as readme:
-+with open("./README.md", **({'encoding': 'UTF-8'} if sys.version_info.major>=3 else {})) as readme:
- long_description = readme.read()
-
-
diff --git a/finance/py-eth-utils/distinfo b/finance/py-eth-utils/distinfo
index 12f7a30f682..5de59cc8128 100644
--- a/finance/py-eth-utils/distinfo
+++ b/finance/py-eth-utils/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.5 2021/10/26 10:26:05 nia Exp $
+$NetBSD: distinfo,v 1.6 2022/01/14 11:49:43 wiz Exp $
BLAKE2s (eth-utils-1.10.0.tar.gz) = 8a989223cd0aa27370c417f310840718702e3c01e44de7044f5dc79f88a7e56b
SHA512 (eth-utils-1.10.0.tar.gz) = 910f6d1e89c17415141e0d67c9ae915272c1709b6b691a7c5661d308d0a854c84d7d5644f4d968e7c3fba8ff38101fd8ce63134b16f845e640874de1201717f4
Size (eth-utils-1.10.0.tar.gz) = 4602591 bytes
-SHA1 (patch-setup.py) = 6a7906a300f7d7023bbee0dbc983626c888b06e8
diff --git a/finance/py-eth-utils/patches/patch-setup.py b/finance/py-eth-utils/patches/patch-setup.py
deleted file mode 100644
index e7b92c362dd..00000000000
--- a/finance/py-eth-utils/patches/patch-setup.py
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-setup.py,v 1.1 2021/02/18 12:35:03 mef Exp $
-
-py36 gives following flag:
-UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 2119: ordinal not in range(128)
-
---- setup.py.orig 2021-01-22 07:56:32.000000000 +0900
-+++ setup.py 2021-02-18 21:31:28.038465408 +0900
-@@ -1,5 +1,6 @@
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
-+import sys
- from setuptools import (
- setup,
- find_packages,
-@@ -42,7 +43,7 @@ extras_require['dev'] = (
- )
-
-
--with open('./README.md') as readme:
-+with open("./README.md", **({'encoding': 'UTF-8'} if sys.version_info.major>=3 else {})) as readme:
- long_description = readme.read()
-
-