On Wed, Apr 28, 2021 at 01:30:19PM +0100, Stuart Henderson wrote:

Hello Stuart,

> The contrib files are still installed by "make fake". If you want to strip
> them out please add a post-install target that removes them so that
> regenerating plist doesn't bring them back. I don't see a big need to strip
> them though, they don't take a lot of space.

Fine with me!

It seems that the build system underwent a heavy change recently-ish and the
newest version (4.60.0) doesn't build on -current. I think this is because
tqdm broke out some things to a new package py-make (which we don't have a
port for) which it's trying to fetch from the network. At least for the time
being, it thus seems easiest to move to the newest version whose build
system reliably works on OpenBSD (4.52.0). Port for that attached.


Laurie


Index: Makefile
===================================================================
RCS file: /cvs/ports/devel/py-tqdm/Makefile,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 Makefile
--- Makefile    15 Jul 2020 20:36:08 -0000      1.1.1.1
+++ Makefile    28 Apr 2021 19:05:56 -0000
@@ -2,7 +2,7 @@
 
 COMMENT =              progress bar for Python
 
-MODPY_EGG_VERSION =    4.47.0
+MODPY_EGG_VERSION =    4.52.0
 DISTNAME =             tqdm-${MODPY_EGG_VERSION}
 PKGNAME =              py-${DISTNAME}
 
Index: distinfo
===================================================================
RCS file: /cvs/ports/devel/py-tqdm/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo    15 Jul 2020 20:36:08 -0000      1.1.1.1
+++ distinfo    28 Apr 2021 19:05:56 -0000
@@ -1,2 +1,2 @@
-SHA256 (tqdm-4.47.0.tar.gz) = Y+96bT6zn4DWs25IZ1ZrPY5fH+PWy1DF6e3isxmLp7c=
-SIZE (tqdm-4.47.0.tar.gz) = 145749
+SHA256 (tqdm-4.52.0.tar.gz) = GNamFa7dCeyEVtlSRInaszCvS9XCoUp26z+aDhRHGv4=
+SIZE (tqdm-4.52.0.tar.gz) = 180391
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/devel/py-tqdm/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 PLIST
--- pkg/PLIST   15 Jul 2020 20:36:08 -0000      1.1.1.1
+++ pkg/PLIST   28 Apr 2021 19:05:56 -0000
@@ -1,4 +1,4 @@
-@comment $OpenBSD: PLIST,v 1.1.1.1 2020/07/15 20:36:08 kn Exp $
+@comment $OpenBSD: PLIST,v$
 bin/tqdm
 lib/python${MODPY_VERSION}/site-packages/tqdm/
 
lib/python${MODPY_VERSION}/site-packages/tqdm-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/
@@ -21,6 +21,7 @@ lib/python${MODPY_VERSION}/site-packages
 
lib/python${MODPY_VERSION}/site-packages/tqdm/${MODPY_PYCACHE}_tqdm_pandas.${MODPY_PYC_MAGIC_TAG}pyc
 
lib/python${MODPY_VERSION}/site-packages/tqdm/${MODPY_PYCACHE}_utils.${MODPY_PYC_MAGIC_TAG}pyc
 
lib/python${MODPY_VERSION}/site-packages/tqdm/${MODPY_PYCACHE}_version.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/tqdm/${MODPY_PYCACHE}asyncio.${MODPY_PYC_MAGIC_TAG}pyc
 
lib/python${MODPY_VERSION}/site-packages/tqdm/${MODPY_PYCACHE}auto.${MODPY_PYC_MAGIC_TAG}pyc
 
lib/python${MODPY_VERSION}/site-packages/tqdm/${MODPY_PYCACHE}autonotebook.${MODPY_PYC_MAGIC_TAG}pyc
 
lib/python${MODPY_VERSION}/site-packages/tqdm/${MODPY_PYCACHE}cli.${MODPY_PYC_MAGIC_TAG}pyc
@@ -37,6 +38,7 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/tqdm/_tqdm_pandas.py
 lib/python${MODPY_VERSION}/site-packages/tqdm/_utils.py
 lib/python${MODPY_VERSION}/site-packages/tqdm/_version.py
+lib/python${MODPY_VERSION}/site-packages/tqdm/asyncio.py
 lib/python${MODPY_VERSION}/site-packages/tqdm/auto.py
 lib/python${MODPY_VERSION}/site-packages/tqdm/autonotebook.py
 lib/python${MODPY_VERSION}/site-packages/tqdm/cli.py

Reply via email to