aboutsummaryrefslogtreecommitdiff
path: root/databases/py-psycopg2cffi
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2018-01-05 20:02:03 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2018-01-05 20:02:03 +0000
commit2c43c07183b7dd04d6878cb6b421a417e8871057 (patch)
treec7c8b5d263f8fd187e65af3dad981ad626141a6a /databases/py-psycopg2cffi
parentdfce33f4701d6e0f92863a459498c31bd507c865 (diff)
downloadports-2c43c07183b7dd04d6878cb6b421a417e8871057.tar.gz
ports-2c43c07183b7dd04d6878cb6b421a417e8871057.zip
Corrected shared library names that got the .abi3 suffix for python-36 and up after devel/py-cffi upgrade to 1.11.2
This is the followup for the r457997 commit that updated devel/py-cffi to 1.11.2. As it turned out, the shared object names built by py-cffi has changed in python 36. Dependent ports can choose between installing such shared object as part of their plist, or generating them in the runtime and placing them into ~/.cache/{port-name}/ The former ones, that include the shared objects in their plist, got affected. 4 of the ports were failing explicitly in their py36 flavor during the strip phase. The other 6 were either missing strip entirely, or performed the strip operation without using explicit shared object names. These 6 ports didn't trigger any build errors, and were failing silently during the runtime, making the problem very hard to detect. Precisely, .abi3 suffix is now added for the py36 flavor of relevant ports. Here are the 10 ports that got affected and are now corrected: databases/py-psycopg2cffi devel/py-pygit2 devel/py-xattr devel/py-pyopencl devel/py-atomiclong multimedia/py-librtmp net/py-nnpy security/py-bcrypt security/py-cryptography security/py-pynacl All of them got the * in the stripped shared object name, and a PORTREVISION bump.
Notes
Notes: svn path=/head/; revision=458167
Diffstat (limited to 'databases/py-psycopg2cffi')
-rw-r--r--databases/py-psycopg2cffi/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/databases/py-psycopg2cffi/Makefile b/databases/py-psycopg2cffi/Makefile
index 05758accdacb..430fcdbb9f0f 100644
--- a/databases/py-psycopg2cffi/Makefile
+++ b/databases/py-psycopg2cffi/Makefile
@@ -2,6 +2,7 @@
PORTNAME= psycopg2cffi
DISTVERSION= 2.7.7
+PORTREVISION= 1
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -19,6 +20,6 @@ USES= pgsql python
USE_PYTHON= autoplist distutils
post-install:
- ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/_impl/_libpq.so
+ ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/_impl/_libpq*.so
.include <bsd.port.mk>