pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-rlp py-rlp: do not depend on pip



details:   https://anonhg.NetBSD.org/pkgsrc/rev/bfe6433c09c2
branches:  trunk
changeset: 450123:bfe6433c09c2
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Sun Apr 11 16:59:36 2021 +0000

description:
py-rlp: do not depend on pip

It was used to install setuptools-markdown, which is deprecated anyway;
update setup.py to not request the module instead (since it's not packaged)

diffstat:

 devel/py-rlp/Makefile               |   3 +--
 devel/py-rlp/distinfo               |   4 ++--
 devel/py-rlp/patches/patch-setup.py |  15 +++++++++++++++
 3 files changed, 18 insertions(+), 4 deletions(-)

diffs (49 lines):

diff -r 5a9413cf17bb -r bfe6433c09c2 devel/py-rlp/Makefile
--- a/devel/py-rlp/Makefile     Sun Apr 11 15:03:41 2021 +0000
+++ b/devel/py-rlp/Makefile     Sun Apr 11 16:59:36 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2021/04/11 05:02:51 mef Exp $
+# $NetBSD: Makefile,v 1.11 2021/04/11 16:59:36 wiz Exp $
 
 DISTNAME=      rlp-2.0.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
@@ -13,7 +13,6 @@
 DEPENDS+=      ${PYPKGPREFIX}-eth-utils>=1.0.2:../../finance/py-eth-utils
 DEPENDS+=      ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel
 DEPENDS+=      ${PYPKGPREFIX}-certifi-[0-9]*:../../security/py-certifi
-DEPENDS+=      ${PYPKGPREFIX}-pip-[0-9]*:../../devel/py-pip
 
 TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=5.19.0:../../devel/py-hypothesis
 TEST_DEPENDS+= ${PYPKGPREFIX}-test>=5.4.3:../../devel/py-test
diff -r 5a9413cf17bb -r bfe6433c09c2 devel/py-rlp/distinfo
--- a/devel/py-rlp/distinfo     Sun Apr 11 15:03:41 2021 +0000
+++ b/devel/py-rlp/distinfo     Sun Apr 11 16:59:36 2021 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.2 2021/02/08 06:58:44 adam Exp $
+$NetBSD: distinfo,v 1.3 2021/04/11 16:59:36 wiz Exp $
 
 SHA1 (rlp-2.0.1.tar.gz) = 7d7bb9580026bbe360f715e26209767e1ba2c40c
 RMD160 (rlp-2.0.1.tar.gz) = d8b27f0722b186ecf495eae125eb4f4208bdc890
 SHA512 (rlp-2.0.1.tar.gz) = 5082cb8458964a458d039da8ca565fc1bb9e9f2926afe63af47417622f86d392b64ed68a884909a9008d59dfc27b4d606c7e7a6c0e0abd5494370de05a3e9212
 Size (rlp-2.0.1.tar.gz) = 39928 bytes
-SHA1 (patch-setup.py) = 796c53a1aa5108d0c926b4b8d371fd2b67b8e4f7
+SHA1 (patch-setup.py) = 8163902c3c6782fa4843e4d179fca69cc9031ee2
diff -r 5a9413cf17bb -r bfe6433c09c2 devel/py-rlp/patches/patch-setup.py
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-rlp/patches/patch-setup.py       Sun Apr 11 16:59:36 2021 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-setup.py,v 1.1 2021/04/11 16:59:36 wiz Exp $
+
+setuptools-markdown is deprecated for functionality included in setuptools.
+
+--- setup.py.orig      2020-11-23 15:09:47.000000000 +0000
++++ setup.py
+@@ -52,7 +52,7 @@ setup(
+     url='https://github.com/ethereum/pyrlp',
+     packages=find_packages(exclude=["tests", "tests.*"]),
+     include_package_data=True,
+-    setup_requires=['setuptools-markdown'],
++    setup_requires=[],
+     install_requires=[
+         "eth-utils>=1.0.2,<2",
+     ],



Home | Main Index | Thread Index | Old Index