From owner-svn-ports-head@freebsd.org Thu Dec 24 13:46:23 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5A4504C4DB5; Thu, 24 Dec 2020 13:46:23 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D1rvg1Dk3z4S6J; Thu, 24 Dec 2020 13:46:23 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1CC6C113E9; Thu, 24 Dec 2020 13:46:23 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BODkMDq028557; Thu, 24 Dec 2020 13:46:22 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BODk2L1028446; Thu, 24 Dec 2020 13:46:02 GMT (envelope-from kai@FreeBSD.org) Message-Id: <202012241346.0BODk2L1028446@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Thu, 24 Dec 2020 13:46:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r559094 - in head: archivers/py-brotli archivers/py-lzma archivers/py-python-lhafile archivers/py-zstandard archivers/py-zstd astro/py-ephem audio/py-aubio audio/py-pyaudio audio/py-pyl... X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head: archivers/py-brotli archivers/py-lzma archivers/py-python-lhafile archivers/py-zstandard archivers/py-zstd astro/py-ephem audio/py-aubio audio/py-pyaudio audio/py-pyliblo audio/py-pymad cad/p... X-SVN-Commit-Revision: 559094 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Dec 2020 13:46:23 -0000 Author: kai Date: Thu Dec 24 13:46:01 2020 New Revision: 559094 URL: https://svnweb.freebsd.org/changeset/ports/559094 Log: Relax hardcoded paths to fix build with Python 3.8.7 Since r558913 Python 3.8 incorporates BPO-42604 [1] which changed the shared libs naming scheme. This means "EXT_SUFFIX" is now derived from SOABI and yields with Python 3.8 to ".cpython-38.so" instead of ".so". The affected ports strip the libaries in the "post-install" target via hardcoded path(s) and the build fails at the end because the new extension is not expected at this place. Remedy the issue by adding wildcards to these paths. This should also prepare the ports for future Python releases, which will use the new shared libs naming scheme. [1] https://bugs.python.org/issue42604 PR: 252057 Reported by: John Kennedy Reviewed by: fluffy, koobs Approved by: koobs (python) Modified: head/archivers/py-brotli/Makefile head/archivers/py-lzma/Makefile head/archivers/py-python-lhafile/Makefile head/archivers/py-zstandard/Makefile head/archivers/py-zstd/Makefile head/astro/py-ephem/Makefile head/audio/py-aubio/Makefile head/audio/py-pyaudio/Makefile head/audio/py-pyliblo/Makefile head/audio/py-pymad/Makefile head/cad/py-gdspy/Makefile head/comms/py-hidapi/Makefile head/converters/py-rencode/Makefile head/converters/py-zfec/Makefile head/databases/py-PyGreSQL/Makefile head/databases/py-apsw/Makefile head/databases/py-asyncpg/Makefile head/databases/py-bsddb3/Makefile head/databases/py-cassandra-driver/Makefile head/databases/py-leveldb/Makefile head/databases/py-lmdb/Makefile head/databases/py-peewee/Makefile head/databases/py-pglast/Makefile head/databases/py-psycopg2/Makefile head/databases/py-pylibmc/Makefile head/databases/py-pymssql/Makefile head/databases/py-pyodbc/Makefile head/databases/py-sqlite3/Makefile head/databases/py-sqlrelay/Makefile head/devel/py-bullet3/Makefile head/devel/py-cbor/Makefile head/devel/py-cffi/Makefile head/devel/py-coverage/Makefile head/devel/py-crcmod/Makefile head/devel/py-cymem/Makefile head/devel/py-editdistance/Makefile head/devel/py-fam/Makefile head/devel/py-fastcache/Makefile head/devel/py-fastnumbers/Makefile head/devel/py-freebsd/Makefile head/devel/py-fusefs/Makefile head/devel/py-greenlet/Makefile head/devel/py-grpcio-tools/Makefile head/devel/py-ice37/Makefile head/devel/py-immutables/Makefile head/devel/py-intbitset/Makefile head/devel/py-lazy-object-proxy/Makefile head/devel/py-libversion/Makefile head/devel/py-libvirt/Makefile head/devel/py-llfuse/Makefile head/devel/py-llvmlite/Makefile head/devel/py-msgpack/Makefile head/devel/py-murmurhash/Makefile head/devel/py-opendht/Makefile head/devel/py-pendulum/Makefile head/devel/py-posix_ipc/Makefile head/devel/py-py-ubjson/Makefile head/devel/py-pyjq/Makefile head/devel/py-pyrsistent/Makefile head/devel/py-python-Levenshtein/Makefile head/devel/py-python-pcre/Makefile head/devel/py-ruamel.yaml.clib/Makefile head/devel/py-setproctitle/Makefile head/devel/py-simplejson/Makefile head/devel/py-urwid/Makefile head/devel/py-uvloop/Makefile head/devel/py-websockets/Makefile head/devel/py-wrapt/Makefile head/devel/py-xxhash/Makefile head/devel/py-yaml/Makefile head/devel/py-yappi/Makefile head/devel/py-zope.interface/Makefile head/dns/py-pycares/Makefile head/dns/py-pydnstable/Makefile head/dns/py-pywdns/Makefile head/finance/py-ta-lib/Makefile head/ftp/py-pycurl/Makefile head/graphics/py-ming/Makefile head/graphics/py-pygraphviz/Makefile head/graphics/py-zbar-py/Makefile head/mail/py-milter/Makefile head/mail/py-notmuch2/Makefile head/math/py-PySCIPOpt/Makefile head/math/py-cdecimal/Makefile head/math/py-cryptominisat/Makefile head/math/py-cvxpy/Makefile head/math/py-cyipopt/Makefile head/math/py-fastcluster/Makefile head/math/py-gmpy2/Makefile head/math/py-graphillion/Makefile head/math/py-hdmedians/Makefile head/math/py-levmar/Makefile head/math/py-libpoly/Makefile head/math/py-numexpr/Makefile head/math/py-numpy-stl/Makefile head/math/py-pdal/Makefile head/math/py-piranha/Makefile head/math/py-pycosat/Makefile head/math/py-pyhull/Makefile head/math/py-pyipopt/Makefile head/math/py-pynleq2/Makefile head/math/py-python-fcl/Makefile head/math/py-rpy2/Makefile head/math/py-symcxx/Makefile head/math/py-triangle/Makefile head/misc/py-fast-histogram/Makefile head/misc/py-onnx/Makefile head/misc/py-python-geohash/Makefile head/multimedia/py-cec/Makefile head/net-im/py-toxcore-c/Makefile head/net-p2p/py-libtorrent-rasterbar/Makefile head/net/py-confluent-kafka/Makefile head/net/py-ldap/Makefile head/net/py-ldap0/Makefile head/net/py-libfte/Makefile head/net/py-maxminddb/Makefile head/net/py-miniupnpc/Makefile head/net/py-mpi4py/Makefile head/net/py-netifaces/Makefile head/net/py-pcapy/Makefile head/net/py-pyenet/Makefile head/net/py-pypcap/Makefile head/net/py-pysendfile/Makefile head/net/py-radix/Makefile head/news/py-sabyenc3/Makefile head/print/py-psautohint/Makefile head/print/py-pycups/Makefile head/print/py-pycups1/Makefile head/science/py-gpaw/Makefile head/science/py-netCDF4/Makefile head/science/py-scikit-sparse/Makefile head/science/py-segyio/Makefile head/science/py-spglib/Makefile head/security/py-angr/Makefile head/security/py-coincurve/Makefile head/security/py-kerberos/Makefile head/security/py-m2crypto/Makefile head/security/py-pyscard/Makefile head/security/py-pysha3/Makefile head/security/py-python-axolotl-curve25519/Makefile head/security/py-pyvex/Makefile head/security/py-scrypt/Makefile head/security/py-sequoia/Makefile head/security/py-xmlsec/Makefile head/sysutils/py-psutil/Makefile head/sysutils/py-rdiff-backup/Makefile head/sysutils/py-scandir/Makefile head/sysutils/py-uptime/Makefile head/textproc/py-jsonslicer/Makefile head/textproc/py-libxml2/Makefile head/textproc/py-markupsafe/Makefile head/textproc/py-mwparserfromhell/Makefile head/textproc/py-patiencediff/Makefile head/textproc/py-pikepdf/Makefile head/textproc/py-pyahocorasick/Makefile head/textproc/py-pystemmer/Makefile head/textproc/py-regex/Makefile head/www/py-biscuits/Makefile head/www/py-html5-parser/Makefile head/www/py-tornado/Makefile head/www/py-tornado4/Makefile head/www/py-tornado6/Makefile head/www/py-wsaccel/Makefile head/www/py-yarl/Makefile head/x11-fonts/py-opentype-sanitizer/Makefile head/x11-toolkits/py-fltk/Makefile Modified: head/archivers/py-brotli/Makefile ============================================================================== --- head/archivers/py-brotli/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/archivers/py-brotli/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -20,6 +20,6 @@ USE_PYTHON= autoplist concurrent distutils SHEBANG_FILES= python/bro.py post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_brotli.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_brotli*.so .include Modified: head/archivers/py-lzma/Makefile ============================================================================== --- head/archivers/py-lzma/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/archivers/py-lzma/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -31,6 +31,6 @@ post-install-DOCS-on: ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/doc/,} ${STAGEDIR}${DOCSDIR} post-install: - @${STRIP_CMD} ${STAGEDIR}/${PYTHONPREFIX_SITELIBDIR}/pylzma.so + @${STRIP_CMD} ${STAGEDIR}/${PYTHONPREFIX_SITELIBDIR}/pylzma*.so .include Modified: head/archivers/py-python-lhafile/Makefile ============================================================================== --- head/archivers/py-python-lhafile/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/archivers/py-python-lhafile/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -18,6 +18,6 @@ USES= python USE_PYTHON= distutils autoplist post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/lzhlib.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/lzhlib*.so .include Modified: head/archivers/py-zstandard/Makefile ============================================================================== --- head/archivers/py-zstandard/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/archivers/py-zstandard/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -22,6 +22,6 @@ USE_PYTHON= distutils autoplist PYDISTUTILS_BUILDARGS= --system-zstd post-install: - @cd ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} && ${STRIP_CMD} zstd.so _zstd_cffi.so + @cd ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} && ${STRIP_CMD} zstd*.so _zstd_cffi*.so .include Modified: head/archivers/py-zstd/Makefile ============================================================================== --- head/archivers/py-zstd/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/archivers/py-zstd/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -18,6 +18,6 @@ USE_PYTHON= distutils autoplist PYDISTUTILS_BUILDARGS= --external post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/zstd.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/zstd*.so .include Modified: head/astro/py-ephem/Makefile ============================================================================== --- head/astro/py-ephem/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/astro/py-ephem/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -17,7 +17,7 @@ USES= python USE_PYTHON= autoplist distutils post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/ephem/_libastro.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/ephem/_libastro*.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test Modified: head/audio/py-aubio/Makefile ============================================================================== --- head/audio/py-aubio/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/audio/py-aubio/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -28,6 +28,6 @@ pre-test: @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} create_test_sounds) post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/_aubio.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/_aubio*.so .include "${MASTERDIR}/Makefile" Modified: head/audio/py-pyaudio/Makefile ============================================================================== --- head/audio/py-pyaudio/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/audio/py-pyaudio/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -39,6 +39,6 @@ post-install-DOCS-on: (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} "! -name .buildinfo -and ! -path *doctrees*") post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_portaudio.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_portaudio*.so .include Modified: head/audio/py-pyliblo/Makefile ============================================================================== --- head/audio/py-pyliblo/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/audio/py-pyliblo/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -20,6 +20,6 @@ USES= localbase python USE_PYTHON= autoplist concurrent cython distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/liblo.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/liblo*.so .include Modified: head/audio/py-pymad/Makefile ============================================================================== --- head/audio/py-pymad/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/audio/py-pymad/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -22,6 +22,6 @@ do-configure: @cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} config_unix.py --prefix ${LOCALBASE} post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/mad.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/mad*.so .include Modified: head/cad/py-gdspy/Makefile ============================================================================== --- head/cad/py-gdspy/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/cad/py-gdspy/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -43,7 +43,7 @@ test: post-install: cd ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME} && \ - ${STRIP_CMD} clipper.so + ${STRIP_CMD} clipper*.so post-install-EXAMPLES-on: cd ${WRKSRC}/tests && \ Modified: head/comms/py-hidapi/Makefile ============================================================================== --- head/comms/py-hidapi/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/comms/py-hidapi/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -22,6 +22,6 @@ post-patch: @${REINPLACE_CMD} -e 's|usb-1.0|usb|g' ${WRKSRC}/setup.py post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/hid.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/hid*.so .include Modified: head/converters/py-rencode/Makefile ============================================================================== --- head/converters/py-rencode/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/converters/py-rencode/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -24,7 +24,7 @@ post-patch: ${TOUCH} ${WRKSRC}/tests/__init__.py post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/rencode/_rencode.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/rencode/_rencode*.so do-test: cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test Modified: head/converters/py-zfec/Makefile ============================================================================== --- head/converters/py-zfec/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/converters/py-zfec/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -23,6 +23,6 @@ USES= python USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/zfec/_fec.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/zfec/_fec*.so .include Modified: head/databases/py-PyGreSQL/Makefile ============================================================================== --- head/databases/py-PyGreSQL/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-PyGreSQL/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -22,7 +22,7 @@ PORTDOCS= * OPTIONS_DEFINE= DOCS post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_pg.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_pg*.so @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) Modified: head/databases/py-apsw/Makefile ============================================================================== --- head/databases/py-apsw/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-apsw/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -19,7 +19,7 @@ USES= localbase python sqlite:3 zip USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/apsw.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/apsw*.so do-test: cd ${WRKSRC}/ && ${PYTHON_CMD} setup.py test Modified: head/databases/py-asyncpg/Makefile ============================================================================== --- head/databases/py-asyncpg/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-asyncpg/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -20,7 +20,7 @@ OPTIONS_DEFINE= DOCS PORTDOCS= PKG-INFO README.rst post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/asyncpg/protocol/protocol.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/asyncpg/protocol/protocol*.so post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR}/ Modified: head/databases/py-bsddb3/Makefile ============================================================================== --- head/databases/py-bsddb3/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-bsddb3/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -34,6 +34,6 @@ post-patch: post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} @(cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR}) - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/bsddb3/_pybsddb.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/bsddb3/_pybsddb*.so .include Modified: head/databases/py-cassandra-driver/Makefile ============================================================================== --- head/databases/py-cassandra-driver/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-cassandra-driver/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -29,7 +29,7 @@ MURMUR3_DESC= Enable murmur3 extension OPTIONS_DEFAULT= LIBEV MURMUR3 LIBEV_LIB_DEPENDS= libev.so:devel/libev -LIBEV_VARS= STRIPFILES=${STAGEDIR}${PYTHON_SITELIBDIR}/cassandra/io/libevwrapper.so +LIBEV_VARS= STRIPFILES=${STAGEDIR}${PYTHON_SITELIBDIR}/cassandra/io/libevwrapper*.so LIBEV_VARS_OFF= PYDISTUTILS_BUILDARGS+=--no-libev PYDISTUTILS_INSTALLARGS+=--no-libev MURMUR3_VARS_OFF= PYDISTUTILS_BUILDARGS+=--no-murmur3 PYDISTUTILS_INSTALLARGS+=--no-murmur3 Modified: head/databases/py-leveldb/Makefile ============================================================================== --- head/databases/py-leveldb/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-leveldb/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -23,6 +23,6 @@ post-patch: @${RM} -r ${WRKSRC}/leveldb/ ${WRKSRC}/snappy/ post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/leveldb.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/leveldb*.so .include Modified: head/databases/py-lmdb/Makefile ============================================================================== --- head/databases/py-lmdb/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-lmdb/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -26,7 +26,7 @@ MAKE_ENV= LMDB_FORCE_SYSTEM=1 \ LMDB_FORCE_CFFI=1 post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/lmdb/lmdb_cffi.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/lmdb/lmdb_cffi*.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -rs -v Modified: head/databases/py-peewee/Makefile ============================================================================== --- head/databases/py-peewee/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-peewee/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -25,7 +25,7 @@ MYSQL_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1 PGSQL_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>=2.5.1:databases/py-psycopg2@${PY_FLAVOR} post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/playhouse/_speedups.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/playhouse/_speedups*.so do-test: ${PYTHON_CMD} ${WRKSRC}/runtests.py Modified: head/databases/py-pglast/Makefile ============================================================================== --- head/databases/py-pglast/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-pglast/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -23,6 +23,6 @@ post-patch: @${REINPLACE_CMD} -e 's|make|gmake|' ${WRKSRC}/setup.py post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pglast/parser.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pglast/parser*.so .include Modified: head/databases/py-psycopg2/Makefile ============================================================================== --- head/databases/py-psycopg2/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-psycopg2/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -17,6 +17,6 @@ USES= pgsql python USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/psycopg2/_psycopg.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/psycopg2/_psycopg*.so .include Modified: head/databases/py-pylibmc/Makefile ============================================================================== --- head/databases/py-pylibmc/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-pylibmc/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -23,7 +23,7 @@ USE_PYTHON= autoplist distutils MAKE_ENV+= LIBMEMCACHED="${LOCALBASE}" post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_pylibmc.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_pylibmc*.so # Note: memcached needs to be running first for this to work Modified: head/databases/py-pymssql/Makefile ============================================================================== --- head/databases/py-pymssql/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-pymssql/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -22,7 +22,7 @@ post-extract: @${RM} ${WRKSRC}/_mssql.c post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_mssql.so \ - ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pymssql.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_mssql*.so \ + ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pymssql*.so .include Modified: head/databases/py-pyodbc/Makefile ============================================================================== --- head/databases/py-pyodbc/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-pyodbc/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -20,6 +20,6 @@ USES= localbase python USE_PYTHON= autoplist distutils post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pyodbc.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pyodbc*.so .include Modified: head/databases/py-sqlite3/Makefile ============================================================================== --- head/databases/py-sqlite3/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-sqlite3/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -38,6 +38,6 @@ post-extract: .endif post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/lib-dynload/_sqlite3.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/lib-dynload/_sqlite3*.so .include Modified: head/databases/py-sqlrelay/Makefile ============================================================================== --- head/databases/py-sqlrelay/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/databases/py-sqlrelay/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -36,6 +36,6 @@ post-patch: ${WRKSRC}/configure post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/SQLRelay/CSQLRelay.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/SQLRelay/CSQLRelay*.so .include Modified: head/devel/py-bullet3/Makefile ============================================================================== --- head/devel/py-bullet3/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-bullet3/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -21,6 +21,6 @@ post-patch: # remove examples because they fail: https @${REINPLACE_CMD} -E 's,"examples/.*\.(cpp|c|m)",,' ${WRKSRC}/setup.py post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pybullet.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pybullet*.so .include Modified: head/devel/py-cbor/Makefile ============================================================================== --- head/devel/py-cbor/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-cbor/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -23,6 +23,6 @@ post-patch: .endif post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/cbor/_cbor.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/cbor/_cbor*.so .include Modified: head/devel/py-cffi/Makefile ============================================================================== --- head/devel/py-cffi/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-cffi/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -27,7 +27,7 @@ CFLAGS+= -Wno-shift-negative-value .endif post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_cffi_backend.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_cffi_backend*.so do-test: cd ${TEST_WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} build_ext -i Modified: head/devel/py-coverage/Makefile ============================================================================== --- head/devel/py-coverage/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-coverage/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -15,6 +15,6 @@ USES= python USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/coverage/tracer.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/coverage/tracer*.so .include Modified: head/devel/py-crcmod/Makefile ============================================================================== --- head/devel/py-crcmod/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-crcmod/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -27,6 +27,6 @@ post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/changelog ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR}) - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/crcmod/_crcfunext.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/crcmod/_crcfunext*.so .include Modified: head/devel/py-cymem/Makefile ============================================================================== --- head/devel/py-cymem/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-cymem/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -16,6 +16,6 @@ USES= python USE_PYTHON= distutils cython autoplist post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/cymem/cymem.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/cymem/cymem*.so .include Modified: head/devel/py-editdistance/Makefile ============================================================================== --- head/devel/py-editdistance/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-editdistance/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -16,6 +16,6 @@ USE_PYTHON= autoplist concurrent distutils USES= python post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/editdistance/bycython.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/editdistance/bycython*.so .include Modified: head/devel/py-fam/Makefile ============================================================================== --- head/devel/py-fam/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-fam/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -22,6 +22,6 @@ pre-patch: ${INSTALL_DATA} ${FILESDIR}/setup.py ${WRKSRC} post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_fam.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_fam*.so .include Modified: head/devel/py-fastcache/Makefile ============================================================================== --- head/devel/py-fastcache/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-fastcache/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -15,6 +15,6 @@ USES= python USE_PYTHON= distutils autoplist post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/fastcache/_lrucache.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/fastcache/_lrucache*.so .include Modified: head/devel/py-fastnumbers/Makefile ============================================================================== --- head/devel/py-fastnumbers/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-fastnumbers/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -16,6 +16,6 @@ USES= python:3.5+ USE_PYTHON= autoplist distutils post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/fastnumbers.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/fastnumbers*.so .include Modified: head/devel/py-freebsd/Makefile ============================================================================== --- head/devel/py-freebsd/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-freebsd/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -23,7 +23,7 @@ GH_PROJECT= py-${PORTNAME} PYDISTUTILS_BUILD_TARGET=build_ext -i post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/freebsd.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/freebsd*.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} -m unittest discover tests -v Modified: head/devel/py-fusefs/Makefile ============================================================================== --- head/devel/py-fusefs/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-fusefs/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -36,7 +36,7 @@ post-patch: ${WRKSRC}/setup.py post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/fuseparts/_fusemodule.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/fuseparts/_fusemodule*.so post-install-DOCS-on: @${INSTALL} -d ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ Modified: head/devel/py-greenlet/Makefile ============================================================================== --- head/devel/py-greenlet/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-greenlet/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -23,6 +23,6 @@ DO_MAKE_TEST= ${PYTHON_CMD} TEST_TARGET= run-tests.py post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/greenlet.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/greenlet*.so .include Modified: head/devel/py-grpcio-tools/Makefile ============================================================================== --- head/devel/py-grpcio-tools/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-grpcio-tools/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -21,6 +21,6 @@ CFLAGS+= -DHAVE_PTHREAD=1 LDFLAGS+= -lcares post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/grpc_tools/_protoc_compiler.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/grpc_tools/_protoc_compiler*.so .include Modified: head/devel/py-ice37/Makefile ============================================================================== --- head/devel/py-ice37/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-ice37/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -33,7 +33,7 @@ OPTIONS_DEFINE= DEBUG TEST TEST_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}passlib>0:security/py-passlib@${PY_FLAVOR} post-install: - ${STRIP_CMD} ${STAGEDIR}${PYSITEDIR}/IcePy.so + ${STRIP_CMD} ${STAGEDIR}${PYSITEDIR}/IcePy*.so ${ECHO} "Ice" > ${STAGEDIR}${PYSITEDIR}/Ice.pth @${FIND} ${STAGEDIR}${PYSITEDIR}/Ice \( -name "*.pyc" -or -name "*.pyo" \) \ -exec ${CHMOD} u+w {} \; Modified: head/devel/py-immutables/Makefile ============================================================================== --- head/devel/py-immutables/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-immutables/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -17,6 +17,6 @@ USES= python:3.5+ USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/immutables/_map.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/immutables/_map*.so .include Modified: head/devel/py-intbitset/Makefile ============================================================================== --- head/devel/py-intbitset/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-intbitset/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -19,7 +19,7 @@ USES= python USE_PYTHON= cython distutils autoplist post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/intbitset.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/intbitset*.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test Modified: head/devel/py-lazy-object-proxy/Makefile ============================================================================== --- head/devel/py-lazy-object-proxy/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-lazy-object-proxy/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -18,6 +18,6 @@ USES= python USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/lazy_object_proxy/cext.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/lazy_object_proxy/cext*.so .include Modified: head/devel/py-libversion/Makefile ============================================================================== --- head/devel/py-libversion/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-libversion/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -22,6 +22,6 @@ do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/libversion/_libversion.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/libversion/_libversion*.so .include Modified: head/devel/py-libvirt/Makefile ============================================================================== --- head/devel/py-libvirt/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-libvirt/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -22,7 +22,7 @@ USE_PYTHON= distutils autoplist post-install: .for lib in libvirtmod libvirtmod_qemu libvirtmod_lxc - @${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/site-packages/${lib}.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/site-packages/${lib}*.so .endfor .include Modified: head/devel/py-llfuse/Makefile ============================================================================== --- head/devel/py-llfuse/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-llfuse/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -17,6 +17,6 @@ USES= compiler:c++11-lang fuse pkgconfig python tar:b USE_PYTHON= autoplist distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/llfuse.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/llfuse*.so .include Modified: head/devel/py-llvmlite/Makefile ============================================================================== --- head/devel/py-llvmlite/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-llvmlite/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -27,6 +27,6 @@ MAKE_ENV= LLVM_CONFIG=${LOCALBASE}/bin/llvm-config${LL LLVM_VER= ${LLVM_DEFAULT} post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/llvmlite/binding/libllvmlite.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/llvmlite/binding/libllvmlite*.so .include Modified: head/devel/py-msgpack/Makefile ============================================================================== --- head/devel/py-msgpack/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-msgpack/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -20,7 +20,7 @@ USE_PYTHON= autoplist concurrent cython distutils .if ${PYTHON_REL} >= 3000 post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/msgpack/_cmsgpack.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/msgpack/_cmsgpack*.so .else NO_ARCH= yes .endif Modified: head/devel/py-murmurhash/Makefile ============================================================================== --- head/devel/py-murmurhash/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-murmurhash/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -16,6 +16,6 @@ USES= python USE_PYTHON= distutils cython autoplist post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/murmurhash/mrmr.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/murmurhash/mrmr*.so .include Modified: head/devel/py-opendht/Makefile ============================================================================== --- head/devel/py-opendht/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-opendht/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -22,6 +22,6 @@ USE_PYTHON= distutils cython autoplist WRKSRC_SUBDIR= python post-stage: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/opendht.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/opendht*.so .include Modified: head/devel/py-pendulum/Makefile ============================================================================== --- head/devel/py-pendulum/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-pendulum/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -19,7 +19,7 @@ USES= python:3.6+ USE_PYTHON= autoplist distutils post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pendulum/_extensions/_helpers.so - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pendulum/parsing/_iso8601.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pendulum/_extensions/_helpers*.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pendulum/parsing/_iso8601*.so .include Modified: head/devel/py-posix_ipc/Makefile ============================================================================== --- head/devel/py-posix_ipc/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-posix_ipc/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -17,7 +17,7 @@ USES= python USE_PYTHON= distutils autoplist post-install: - ${STRIP_CMD} ${STAGEDIR}/${PYTHONPREFIX_SITELIBDIR}/posix_ipc.so + ${STRIP_CMD} ${STAGEDIR}/${PYTHONPREFIX_SITELIBDIR}/posix_ipc*.so # requires mqueuefs and sem kernel modules loaded Modified: head/devel/py-py-ubjson/Makefile ============================================================================== --- head/devel/py-py-ubjson/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-py-ubjson/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -17,6 +17,6 @@ USES= python USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_ubjson.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_ubjson*.so .include Modified: head/devel/py-pyjq/Makefile ============================================================================== --- head/devel/py-pyjq/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-pyjq/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -22,6 +22,6 @@ post-patch: @${RM} -r ${WRKSRC}/dependencies post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_pyjq.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_pyjq*.so .include Modified: head/devel/py-pyrsistent/Makefile ============================================================================== --- head/devel/py-pyrsistent/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-pyrsistent/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -21,7 +21,7 @@ USES= python USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pvectorc.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pvectorc*.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v -rs -o addopts= Modified: head/devel/py-python-Levenshtein/Makefile ============================================================================== --- head/devel/py-python-Levenshtein/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-python-Levenshtein/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -18,6 +18,6 @@ USES= python USE_PYTHON= distutils autoplist post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/Levenshtein/_levenshtein.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/Levenshtein/_levenshtein*.so .include Modified: head/devel/py-python-pcre/Makefile ============================================================================== --- head/devel/py-python-pcre/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-python-pcre/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -21,6 +21,6 @@ post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/setup.py post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/python${PYTHON_VER}/site-packages/_pcre.so + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/python${PYTHON_VER}/site-packages/_pcre*.so .include Modified: head/devel/py-ruamel.yaml.clib/Makefile ============================================================================== --- head/devel/py-ruamel.yaml.clib/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-ruamel.yaml.clib/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -17,7 +17,7 @@ USES= python USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_ruamel_yaml.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_ruamel_yaml*.so ${RM} -fr ${STAGEDIR}${PYTHON_SITELIBDIR}/ruamel ${REINPLACE_CMD} -e '/LICENSE/d; /__init__.py/d' ${_PYTHONPKGLIST} Modified: head/devel/py-setproctitle/Makefile ============================================================================== --- head/devel/py-setproctitle/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-setproctitle/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -22,7 +22,7 @@ PORTDOCS= HISTORY.rst README.rst OPTIONS_DEFINE= DOCS post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/setproctitle.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/setproctitle*.so post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/devel/py-simplejson/Makefile ============================================================================== --- head/devel/py-simplejson/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-simplejson/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -18,7 +18,7 @@ USES= python USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/simplejson/_speedups.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/simplejson/_speedups*.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test Modified: head/devel/py-urwid/Makefile ============================================================================== --- head/devel/py-urwid/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-urwid/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -21,7 +21,7 @@ PORTEXAMPLES= * OPTIONS_DEFINE= EXAMPLES post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/urwid/str_util.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/urwid/str_util*.so post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ Modified: head/devel/py-uvloop/Makefile ============================================================================== --- head/devel/py-uvloop/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-uvloop/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -24,7 +24,7 @@ PORTDOCS= * PORTEXAMPLES= * post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/uvloop/loop.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/uvloop/loop*.so post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR}/ Modified: head/devel/py-websockets/Makefile ============================================================================== --- head/devel/py-websockets/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-websockets/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -16,6 +16,6 @@ USES= python:3.4+ USE_PYTHON= autoplist distutils post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/websockets/speedups.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/websockets/speedups*.so .include Modified: head/devel/py-wrapt/Makefile ============================================================================== --- head/devel/py-wrapt/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-wrapt/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -16,6 +16,6 @@ USES= python USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/wrapt/_wrappers.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/wrapt/_wrappers*.so .include Modified: head/devel/py-xxhash/Makefile ============================================================================== --- head/devel/py-xxhash/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-xxhash/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -22,6 +22,6 @@ CONFIGURE_ENV= XXHASH_LINK_SO=yes MAKE_ENV= XXHASH_LINK_SO=yes post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/xxhash/_xxhash.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/xxhash/_xxhash*.so .include Modified: head/devel/py-yaml/Makefile ============================================================================== --- head/devel/py-yaml/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-yaml/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -38,7 +38,7 @@ post-install-EXAMPLES-on: @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/) post-install-LIBYAML-on: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_yaml.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_yaml*.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test Modified: head/devel/py-yappi/Makefile ============================================================================== --- head/devel/py-yappi/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-yappi/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -19,7 +19,7 @@ USES= python USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_yappi.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_yappi*.so do-test: cd ${WRKSRC} && ${PYTHON_CMD} run_tests.py Modified: head/devel/py-zope.interface/Makefile ============================================================================== --- head/devel/py-zope.interface/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/devel/py-zope.interface/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -18,6 +18,6 @@ USES= python USE_PYTHON= autoplist distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/zope/interface/_zope_interface_coptimizations.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/zope/interface/_zope_interface_coptimizations*.so .include Modified: head/dns/py-pycares/Makefile ============================================================================== --- head/dns/py-pycares/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/dns/py-pycares/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -25,7 +25,7 @@ IDNA_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}idna>0:dns/ IDNA_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}idna>0:dns/py-idna@${PY_FLAVOR} post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/_cares.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/_cares*.so do-test: cd ${WRKSRC} && ${SETENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} ${PYTHON_CMD} tests/tests.py Modified: head/dns/py-pydnstable/Makefile ============================================================================== --- head/dns/py-pydnstable/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/dns/py-pydnstable/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -19,6 +19,6 @@ USES= pkgconfig python USE_PYTHON= autoplist cython distutils post-install: - ${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/dnstable.so + ${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/dnstable*.so .include Modified: head/dns/py-pywdns/Makefile ============================================================================== --- head/dns/py-pywdns/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/dns/py-pywdns/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -21,6 +21,6 @@ post-patch: ${REINPLACE_CMD} -e "1s+ python+ ${PYTHON_CMD}+" ${WRKSRC}/gen_pywdns_constants post-install: - ${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/wdns.so + ${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/wdns*.so .include Modified: head/finance/py-ta-lib/Makefile ============================================================================== --- head/finance/py-ta-lib/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/finance/py-ta-lib/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -26,6 +26,6 @@ GH_ACCOUNT= mrjbq7 USE_PYTHON= distutils cython autoplist post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/talib/_ta_lib.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/talib/_ta_lib*.so .include Modified: head/ftp/py-pycurl/Makefile ============================================================================== --- head/ftp/py-pycurl/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/ftp/py-pycurl/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -25,7 +25,7 @@ PORTDOCS= AUTHORS INSTALL.rst README.rst RELEASE-NOTES OPTIONS_DEFINE= DOCS post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}*.so post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR}/ Modified: head/graphics/py-ming/Makefile ============================================================================== --- head/graphics/py-ming/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/graphics/py-ming/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -41,6 +41,6 @@ post-patch: @${LN} -fs ${LOCALBASE}/include/ming ${WRKSRC}/src post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_mingc.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_mingc*.so .include Modified: head/graphics/py-pygraphviz/Makefile ============================================================================== --- head/graphics/py-pygraphviz/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/graphics/py-pygraphviz/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -30,7 +30,7 @@ post-patch: s+^docdirbase.*=.*+docdirbase = "${DOCSDIR:S/${PREFIX}\///}"+' ${WRKSRC}/setup.py post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pygraphviz/_graphviz.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pygraphviz/_graphviz*.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test Modified: head/graphics/py-zbar-py/Makefile ============================================================================== --- head/graphics/py-zbar-py/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/graphics/py-zbar-py/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -20,6 +20,6 @@ USES= iconv:wchar_t python USE_PYTHON= autoplist distutils post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/zbar/_zbar.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/zbar/_zbar*.so .include Modified: head/mail/py-milter/Makefile ============================================================================== --- head/mail/py-milter/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/mail/py-milter/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -26,6 +26,6 @@ GH_PROJECT= py${PORTNAME} USE_PYTHON= distutils autoplist flavors post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/milter.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/milter*.so .include Modified: head/mail/py-notmuch2/Makefile ============================================================================== --- head/mail/py-notmuch2/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/mail/py-notmuch2/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -21,6 +21,6 @@ WRKSRC_SUBDIR= bindings/python-cffi PORTSCOUT= limit:^[0-9\.]*$$ post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/notmuch2/_capi.abi3.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/notmuch2/_capi.abi3*.so .include "${MASTERDIR}/Makefile" Modified: head/math/py-PySCIPOpt/Makefile ============================================================================== --- head/math/py-PySCIPOpt/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-PySCIPOpt/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -17,6 +17,6 @@ USES= localbase python USE_PYTHON= distutils cython autoplist post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pyscipopt/scip.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pyscipopt/scip*.so .include Modified: head/math/py-cdecimal/Makefile ============================================================================== --- head/math/py-cdecimal/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-cdecimal/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -18,6 +18,6 @@ USES= python USE_PYTHON= distutils autoplist post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/cdecimal.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/cdecimal*.so .include Modified: head/math/py-cryptominisat/Makefile ============================================================================== --- head/math/py-cryptominisat/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-cryptominisat/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -35,6 +35,6 @@ post-patch: ${CP} ${WRKSRC}/src/pycryptosat.cpp.in ${WRKSRC}/src/pycryptosat.cpp post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pycryptosat.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pycryptosat*.so .include Modified: head/math/py-cvxpy/Makefile ============================================================================== --- head/math/py-cvxpy/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-cvxpy/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -23,6 +23,6 @@ USES= python:3.6+ USE_PYTHON= distutils autoplist post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_cvxcore.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_cvxcore*.so .include Modified: head/math/py-cyipopt/Makefile ============================================================================== --- head/math/py-cyipopt/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-cyipopt/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -28,6 +28,6 @@ GH_ACCOUNT= matthias-k USE_PYTHON= distutils cython autoplist post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}*.so .include Modified: head/math/py-fastcluster/Makefile ============================================================================== --- head/math/py-fastcluster/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-fastcluster/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -25,7 +25,7 @@ PORTDOCS= CITATION.txt INSTALL.txt NEWS.txt README.txt OPTIONS_DEFINE= DOCS post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_fastcluster.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_fastcluster*.so post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/math/py-gmpy2/Makefile ============================================================================== --- head/math/py-gmpy2/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-gmpy2/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -23,6 +23,6 @@ USE_PYTHON= distutils autoplist CONFLICTS= ${PYTHON_PKGNAMEPREFIX}gmpy2-devel-2.1* post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/gmpy2.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/gmpy2*.so .include Modified: head/math/py-graphillion/Makefile ============================================================================== --- head/math/py-graphillion/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-graphillion/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -21,7 +21,7 @@ USES= python USE_PYTHON= distutils autoplist post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_graphillion.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_graphillion*.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test Modified: head/math/py-hdmedians/Makefile ============================================================================== --- head/math/py-hdmedians/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-hdmedians/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -19,6 +19,6 @@ USES= python USE_PYTHON= autoplist cython distutils post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/hdmedians/geomedian.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/hdmedians/geomedian*.so .include Modified: head/math/py-levmar/Makefile ============================================================================== --- head/math/py-levmar/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-levmar/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -27,7 +27,7 @@ post-patch: @${REINPLACE_CMD} -e 's|รถ|o|' ${WRKSRC}/AUTHORS # breaks because of non-ascii chars post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/_${PORTNAME}.so + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/_${PORTNAME}*.so do-test: @cd ${WRKSRC}/levmar/tests && ${PYTHON_CMD} -m pytest --pyargs levmar Modified: head/math/py-libpoly/Makefile ============================================================================== --- head/math/py-libpoly/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-libpoly/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -27,7 +27,7 @@ BUILD_WRKSRC= ${WRKSRC}/python INSTALL_WRKSRC= ${WRKSRC}/python post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/polypy.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/polypy*.so do-build: @cd ${BUILD_WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} ${PYDISTUTILS_BUILD_TARGET} ${PYDISTUTILS_BUILDARGS} Modified: head/math/py-numexpr/Makefile ============================================================================== --- head/math/py-numexpr/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-numexpr/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -20,6 +20,6 @@ USES= dos2unix python USE_PYTHON= autoplist concurrent distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/numexpr/interpreter.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/numexpr/interpreter*.so .include Modified: head/math/py-numpy-stl/Makefile ============================================================================== --- head/math/py-numpy-stl/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-numpy-stl/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -21,6 +21,6 @@ USES= python:3.4+ USE_PYTHON= cython distutils autoplist post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/stl/_speedups.so + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/stl/_speedups*.so .include Modified: head/math/py-pdal/Makefile ============================================================================== --- head/math/py-pdal/Makefile Thu Dec 24 13:39:18 2020 (r559093) +++ head/math/py-pdal/Makefile Thu Dec 24 13:46:01 2020 (r559094) @@ -24,9 +24,9 @@ USES= compiler:c++11-lang python:3.6+ USE_PYTHON= autoplist cython distutils post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpdal_plugin_filter_python.so - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/libpdalpython.so - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpdal_plugin_reader_numpy.so + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpdal_plugin_filter_python*.so + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/libpdalpython*.so + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpdal_plugin_reader_numpy*.so *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***