Index: head/comms/py-libconcord/Makefile =================================================================== --- head/comms/py-libconcord/Makefile (revision 554888) +++ head/comms/py-libconcord/Makefile (revision 554889) @@ -1,24 +1,27 @@ # Created by: Stephen Hurd # $FreeBSD$ PORTNAME= libconcord PORTVERSION= 1.2 PORTREVISION= 1 CATEGORIES= comms MASTER_SITES= SF/concordance/concordance/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= concordance-${PORTVERSION} MAINTAINER= shurd@FreeBSD.org COMMENT= Python bindings for Logitech Harmony library LICENSE= GPLv2 +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + LIB_DEPENDS= libconcord.so:comms/libconcord USE_LDCONFIG= yes USES= python:2.7 tar:bzip2 WRKSRC_SUBDIR= libconcord/bindings/python USE_PYTHON= distutils .include Index: head/databases/py-swift/Makefile =================================================================== --- head/databases/py-swift/Makefile (revision 554888) +++ head/databases/py-swift/Makefile (revision 554889) @@ -1,117 +1,120 @@ # Created by: Gea-Suan Lin # $FreeBSD$ PORTNAME= swift PORTVERSION= 2.2.2 PORTREVISION= 1 CATEGORIES= databases python MASTER_SITES= http://launchpadlibrarian.net/196367574/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= trociny@FreeBSD.org COMMENT= Highly available, distributed, eventually consistent object/blob store LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=0.5.21:devel/py-pbr@${PY_FLAVOR} RUN_DEPENDS:= ${BUILD_DEPENDS} RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pastedeploy>0:www/py-pastedeploy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dnspython>=1.10.0:dns/py-dnspython@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}eventlet>=0.9.8:net/py-eventlet@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}netifaces>=0:net/py-netifaces@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}python-swiftclient>=0:databases/py-python-swiftclient@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}simplejson>=0:devel/py-simplejson@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}webob>=0.9.8:www/py-webob@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}xattr>=0:devel/py-xattr@${PY_FLAVOR} \ memcached>=0:databases/memcached \ rsync>=3.0:net/rsync USES= python:2.7 USE_PYTHON= distutils autoplist USE_RC_SUBR= swift USERS= swift GROUPS= swift post-extract: @(cd ${WRKSRC}/etc; \ for f in *-sample; do\ ${MV} $${f} $${f%%-sample}.sample;\ done) post-patch: @${REINPLACE_CMD} -e "s|/etc/swift|${PREFIX}/etc/${PORTNAME}|" \ -e "s|conf-sample|conf.sample|" \ -e "s|types-sample|types.sample|" \ ${WRKSRC}/bin/swift-account-audit \ ${WRKSRC}/bin/swift-account-info \ ${WRKSRC}/bin/swift-container-info \ ${WRKSRC}/bin/swift-dispersion-populate \ ${WRKSRC}/bin/swift-dispersion-report \ ${WRKSRC}/bin/swift-get-nodes \ ${WRKSRC}/bin/swift-object-info \ ${WRKSRC}/bin/swift-recon \ ${WRKSRC}/bin/swift-recon-cron \ ${WRKSRC}/bin/swift-reconciler-enqueue \ ${WRKSRC}/doc/manpages/account-server.conf.5 \ ${WRKSRC}/doc/manpages/container-server.conf.5 \ ${WRKSRC}/doc/manpages/dispersion.conf.5 \ ${WRKSRC}/doc/manpages/object-expirer.conf.5 \ ${WRKSRC}/doc/manpages/object-server.conf.5 \ ${WRKSRC}/doc/manpages/proxy-server.conf.5 \ ${WRKSRC}/doc/manpages/swift-dispersion-populate.1 \ ${WRKSRC}/doc/manpages/swift-dispersion-report.1 \ ${WRKSRC}/doc/manpages/swift-get-nodes.1 \ ${WRKSRC}/doc/manpages/swift-recon.1 \ ${WRKSRC}/etc/account-server.conf.sample \ ${WRKSRC}/etc/container-reconciler.conf.sample \ ${WRKSRC}/etc/container-server.conf.sample \ ${WRKSRC}/etc/dispersion.conf.sample \ ${WRKSRC}/etc/object-expirer.conf.sample \ ${WRKSRC}/etc/object-server.conf.sample \ ${WRKSRC}/etc/proxy-server.conf.sample \ ${WRKSRC}/etc/swift.conf.sample \ ${WRKSRC}/swift.egg-info/SOURCES.txt \ ${WRKSRC}/swift/account/reaper.py \ ${WRKSRC}/swift/cli/info.py \ ${WRKSRC}/swift/cli/recon.py \ ${WRKSRC}/swift/common/constraints.py \ ${WRKSRC}/swift/common/db_replicator.py \ ${WRKSRC}/swift/common/manager.py \ ${WRKSRC}/swift/common/middleware/account_quotas.py \ ${WRKSRC}/swift/common/middleware/container_quotas.py \ ${WRKSRC}/swift/common/middleware/container_sync.py \ ${WRKSRC}/swift/common/middleware/gatekeeper.py \ ${WRKSRC}/swift/common/middleware/list_endpoints.py \ ${WRKSRC}/swift/common/middleware/memcache.py \ ${WRKSRC}/swift/common/middleware/recon.py \ ${WRKSRC}/swift/common/middleware/staticweb.py \ ${WRKSRC}/swift/common/middleware/tempauth.py \ ${WRKSRC}/swift/common/utils.py \ ${WRKSRC}/swift/container/reconciler.py \ ${WRKSRC}/swift/container/server.py \ ${WRKSRC}/swift/container/sync.py \ ${WRKSRC}/swift/container/updater.py \ ${WRKSRC}/swift/obj/expirer.py \ ${WRKSRC}/swift/obj/replicator.py \ ${WRKSRC}/swift/obj/server.py \ ${WRKSRC}/swift/obj/updater.py \ ${WRKSRC}/swift/proxy/server.py \ ${WRKSRC}/test/__init__.py \ ${WRKSRC}/test/functional/tests.py \ ${WRKSRC}/test/probe/common.py \ ${WRKSRC}/test/sample.conf \ ${WRKSRC}/test/unit/common/middleware/test_memcache.py @${FIND} ${WRKSRC} -type f -name "*.bak" -delete post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/${PORTNAME} ${CP} -R ${WRKSRC}/etc/ ${STAGEDIR}${PREFIX}/etc/${PORTNAME} .for n in 1 5 ${INSTALL_MAN} ${WRKSRC}/doc/manpages/*.${n} \ ${STAGEDIR}${MANPREFIX}/man/man${n} .endfor .include Index: head/devel/py-AddOns/Makefile =================================================================== --- head/devel/py-AddOns/Makefile (revision 554888) +++ head/devel/py-AddOns/Makefile (revision 554889) @@ -1,21 +1,24 @@ # Created by: Wen Heping # $FreeBSD$ PORTNAME= AddOns PORTVERSION= 0.7 PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP \ http://www.turbogears.org/2.0/downloads/2.0.1/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wenheping@gmail.com COMMENT= Dynamically extend other objects with AddOns +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}DecoratorTools>=1.7:devel/py-decoratortools@${PY_FLAVOR} RUN_DEPENDS:= ${BUILD_DEPENDS} USES= python:2.7 zip USE_PYTHON= distutils autoplist .include Index: head/devel/py-BytecodeAssembler/Makefile =================================================================== --- head/devel/py-BytecodeAssembler/Makefile (revision 554888) +++ head/devel/py-BytecodeAssembler/Makefile (revision 554889) @@ -1,20 +1,23 @@ # Created by: Wen Heping # $FreeBSD$ PORTNAME= BytecodeAssembler PORTVERSION= 0.6.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Generate Python code objects by "assembling" bytecode +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}DecoratorTools>=1.7:devel/py-decoratortools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}SymbolType>0:devel/py-SymbolType@${PY_FLAVOR} RUN_DEPENDS:= ${BUILD_DEPENDS} USES= python:2.7 zip USE_PYTHON= distutils autoplist .include Index: head/devel/py-delfick_error/Makefile =================================================================== --- head/devel/py-delfick_error/Makefile (revision 554888) +++ head/devel/py-delfick_error/Makefile (revision 554889) @@ -1,47 +1,50 @@ # $FreeBSD$ PORTNAME= delfick_error PORTVERSION= 1.7.2 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= truckman@FreeBSD.org COMMENT= Customized exception class LICENSE= MIT +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}total-ordering>0:devel/py-total-ordering@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}noseofyeti>=1.4.9:devel/py-noseofyeti@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} OPTIONS_DEFINE= DOCS DOCS_BUILD_DEPENDS= \ ${PY_SPHINX} \ ${PYTHON_PKGNAMEPREFIX}cloud_sptheme>0:textproc/py-cloud_sptheme@${PY_FLAVOR} NO_ARCH= yes USES= python:2.7 USE_GITHUB= yes GH_ACCOUNT= delfick GH_TAGNAME= 6761e6c USE_PYTHON= autoplist distutils PORTDOCS= * post-patch: @${REINPLACE_CMD} -e 's|sphinx-build|&-${PYTHON_VER}|' ${WRKSRC}/docs/build.sh post-build-DOCS-on: cd ${WRKSRC}/docs && ${SH} build.sh post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/docs/_build/html ; \ ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} "-not -name .buildinfo") do-test: cd ${WRKSRC} && ${PYTHON_CMD} -m nose --with-noy .include Index: head/devel/py-fusefs/Makefile =================================================================== --- head/devel/py-fusefs/Makefile (revision 554888) +++ head/devel/py-fusefs/Makefile (revision 554889) @@ -1,44 +1,47 @@ # Created by: Andrew Pantyukhin # $FreeBSD$ PORTNAME= fusefs PORTVERSION= 0.2.1 PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= SF/fuse/fuse-python/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= fuse-python-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= FUSE Python bindings LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}fusepy # fuse.py OPTIONS_DEFINE= DOCS EXAMPLES USES= fuse pkgconfig python:2.7 iconv USE_PYTHON= distutils autoplist PORTDOCS= AUTHORS Changelog FAQ INSTALL README.1st README.historic \ README.new_fusepy_api PORTEXAMPLES= _find_fuse_parts.py hello.py xmp.py DOCSDIR?= ${PREFIX}/share/doc/py-fusefs EXAMPLESDIR?= ${PREFIX}/share/examples/py-fusefs post-patch: @${REINPLACE_CMD} -e '/libs =/s|$$| + " ${ICONV_LIB}"|'\ ${WRKSRC}/setup.py post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/fuseparts/_fusemodule.so post-install-DOCS-on: @${INSTALL} -d ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ post-install-EXAMPLES-on: @${INSTALL} -d ${STAGEDIR}${EXAMPLESDIR}/ cd ${WRKSRC}/example/ && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}/ .include Index: head/devel/py-gobject/Makefile =================================================================== --- head/devel/py-gobject/Makefile (revision 554888) +++ head/devel/py-gobject/Makefile (revision 554889) @@ -1,50 +1,53 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ # $MCom: ports/devel/py-gobject/Makefile,v 1.58 2012/12/30 18:15:16 mezz Exp $ PORTNAME= gobject PORTVERSION= 2.28.6 PORTREVISION= 9 CATEGORIES= devel python MASTER_SITES= GNOME/sources/pygobject/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= pygobject-${PORTVERSION} DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= Python bindings for GObject LICENSE= LGPL21 +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/pycairo.pc:graphics/py-cairo@${PY_FLAVOR} LIB_DEPENDS+= libffi.so:devel/libffi RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/pycairo.pc:graphics/py-cairo@${PY_FLAVOR} PORTSCOUT= ignore:1 USES= gmake gnome libtool pathfix pkgconfig python:2.7 shebangfix \ tar:xz USE_GNOME= glib20 introspection:build,run USE_PYTHON= flavors GNU_CONFIGURE= yes USE_LDCONFIG= yes CONFIGURE_ARGS= --disable-docs --disable-introspection --with-ffi INSTALL_TARGET= install-strip SHEBANG_FILES= codegen/*.py CONFLICTS= py*-gtk-0* PLIST_SUB= PYTHON_VER="${PYTHON_VER}" PYSHAREDIR= ${PREFIX}/share/pygobject/2.0/codegen post-install: cd ${STAGEDIR}${PREFIX} && ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ -d ${PYTHONPREFIX_SITELIBDIR} -f ${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} cd ${STAGEDIR}${PREFIX} && ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ -d ${PYTHONPREFIX_SITELIBDIR} -f ${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} cd ${STAGEDIR}${PREFIX} && ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ -d ${PYSHAREDIR} -f ${PYSHAREDIR:S;${PREFIX}/;;} cd ${STAGEDIR}${PREFIX} && ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py \ -d ${PYSHAREDIR} -f ${PYSHAREDIR:S;${PREFIX}/;;} .include Index: head/devel/py-pygdbmi/Makefile =================================================================== --- head/devel/py-pygdbmi/Makefile (revision 554888) +++ head/devel/py-pygdbmi/Makefile (revision 554889) @@ -1,19 +1,22 @@ # $FreeBSD$ PORTNAME= pygdbmi PORTVERSION= 0.8.2.0 CATEGORIES= devel lang python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= mmokhi@FreeBSD.org COMMENT= Parse gdb machine interface (mi) string output LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + USE_GITHUB= yes GH_ACCOUNT= cs01 USES= python:2.7 USE_PYTHON= autoplist distutils .include Index: head/devel/py-repoze.who-testutil/Makefile =================================================================== --- head/devel/py-repoze.who-testutil/Makefile (revision 554888) +++ head/devel/py-repoze.who-testutil/Makefile (revision 554889) @@ -1,25 +1,28 @@ # Created by: Wen Heping # $FreeBSD$ PORTNAME= repoze.who-testutil PORTVERSION= 1.0.1 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Test utilities for repoze.who-powered applications LICENSE= BSD4CLAUSE +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}repoze.who>=1.0.15:devel/py-repoze.who@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pastedeploy>=1.3.3:www/py-pastedeploy@${PY_FLAVOR} RUN_DEPENDS:= ${BUILD_DEPENDS} USES= python:2.7 USE_PYTHON= distutils autoplist NO_ARCH= yes .include Index: head/devel/py-riak_pb/Makefile =================================================================== --- head/devel/py-riak_pb/Makefile (revision 554888) +++ head/devel/py-riak_pb/Makefile (revision 554889) @@ -1,20 +1,23 @@ # Created by: Kubilay Kocak # $FreeBSD$ PORTNAME= riak_pb PORTVERSION= 2.0.0.16 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org COMMENT= Riak Protocol Buffers Messages LICENSE= APACHE20 +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}protobuf>=2.4.1:devel/py-protobuf@${PY_FLAVOR} USES= python:2.7 USE_PYTHON= autoplist distutils .include Index: head/devel/py-utils/Makefile =================================================================== --- head/devel/py-utils/Makefile (revision 554888) +++ head/devel/py-utils/Makefile (revision 554889) @@ -1,26 +1,29 @@ # Created by: Daniel Bretoi # $FreeBSD$ PORTNAME= utils PORTVERSION= 0.4.0 CATEGORIES= devel python MASTER_SITES= http://www.voidspace.org.uk/downloads/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= pythonutils-${PORTVERSION} MAINTAINER= daniel@netwalk.org COMMENT= General utility modules that simplify common programming in Python USES= python:2.7 zip USE_PYTHON= distutils autoplist +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} PORTDOCS= * OPTIONS_DEFINE= DOCS post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) .include Index: head/devel/pythk/Makefile =================================================================== --- head/devel/pythk/Makefile (revision 554888) +++ head/devel/pythk/Makefile (revision 554889) @@ -1,19 +1,22 @@ # Created by: Thinker K.F. Li # $FreeBSD$ PORTNAME= pythk PORTVERSION= 0.2.0 PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Collection of Python functions LICENSE= BSD2CLAUSE +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + USES= python:2.7 USE_PYTHON= distutils autoplist .include Index: head/mail/py-spambayes/Makefile =================================================================== --- head/mail/py-spambayes/Makefile (revision 554888) +++ head/mail/py-spambayes/Makefile (revision 554889) @@ -1,79 +1,82 @@ # Created by: Mario Sergio Fujikawa Ferreira # $FreeBSD$ PORTNAME= spambayes PORTVERSION= 1.1b3 CATEGORIES= mail python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org COMMENT= Bayesian anti-spam filter written in Python LICENSE= PSFL +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bsddb>0:databases/py-bsddb@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dns>=2.0:dns/py-dns@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}lockfile>=0.2:devel/py-lockfile@${PY_FLAVOR} USES= python:2.7 USE_PYTHON= distutils autoplist USE_RC_SUBR= pyspamd OPTIONS_DEFINE= DOCS NO_ARCH= yes LOCALSTATDIR?= /var/db/spambayes DBDIR?= ${LOCALSTATDIR}/dbs CACHEDIR?= ${LOCALSTATDIR}/cache PLIST_SUB+= LOCALSTATDIR=${LOCALSTATDIR} \ DBDIR=${DBDIR} \ CACHEDIR=${CACHEDIR} SUB_LIST+= PYTHON_CMD=${PYTHON_CMD} PORTDOCS= CHANGELOG.txt \ LICENSE.txt \ NEWTRICKS.txt \ POP3PROXY.txt \ README-DEVEL.txt \ README.txt \ TESTING.txt \ WHAT_IS_NEW.txt \ utilities/ \ contrib/ post-patch: @${REINPLACE_CMD} -e \ '/persistent_storage_file/s|hammie.db|${DBDIR}/hammie.db|' \ -e \ '/messageinfo_storage_file/s|spambayes.messageinfo.db|${DBDIR}/spambayes.messageinfo.db|' \ -e \ '/spam_cache/s|pop3proxy-spam-cache|${CACHEDIR}/pop3proxy-spam-cache|' \ -e \ '/ham_cache/s|pop3proxy-ham-cache|${CACHEDIR}/pop3proxy-ham-cache|' \ -e \ '/unknown_cache/s|pop3proxy-unknown-cache|${CACHEDIR}/pop3proxy-unknown-cache|' \ ${WRKSRC}/spambayes/Options.py post-install: @${MKDIR} ${STAGEDIR}${CACHEDIR}/pop3proxy-spam-cache @${MKDIR} ${STAGEDIR}${CACHEDIR}/pop3proxy-ham-cache @${MKDIR} ${STAGEDIR}${CACHEDIR}/pop3proxy-unknown-cache @${MKDIR} ${STAGEDIR}${DBDIR} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in ${PORTDOCS} @if [ -f ${WRKSRC}/${file} ]; then \ ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} ; \ fi .endfor @${MKDIR} ${STAGEDIR}${DOCSDIR}/contrib @${MKDIR} ${STAGEDIR}${DOCSDIR}/utilities ${INSTALL_DATA} ${WRKSRC}/contrib/* ${STAGEDIR}${DOCSDIR}/contrib ${INSTALL_DATA} ${WRKSRC}/utilities/* ${STAGEDIR}${DOCSDIR}/utilities .include Index: head/math/py-numeric/Makefile =================================================================== --- head/math/py-numeric/Makefile (revision 554888) +++ head/math/py-numeric/Makefile (revision 554889) @@ -1,57 +1,60 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= numeric PORTVERSION= 24.2 PORTREVISION= 4 CATEGORIES= math python MASTER_SITES= http://numpy.scipy.org/:doc \ SF/numpy/Old%20Numeric/${PORTVERSION}:source PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTFILES= Numeric-${PORTVERSION}${EXTRACT_SUFX}:source \ numpy.pdf:doc EXTRACT_ONLY= Numeric-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= ports@FreeBSD.org COMMENT= Numeric Extension to Python +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + USES= python:2.7 USE_PYTHON= distutils autoplist WRKSRC= ${WRKDIR}/Numeric-${PORTVERSION} DOCSDIR= ${PREFIX}/share/doc/py-numeric EXAMPLESDIR= ${PREFIX}/share/examples/py-numeric PORTDOCS= * PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES post-extract: @${CP} ${DISTDIR}/numpy.pdf ${WRKDIR} # # Force the setup.py file to use a specific version of Python, # since more than one may be installed, and we want to use # the correct one, because if one has setuptools and another # doesn't, that could mess with how pkg-plist is constructed. # @${REINPLACE_CMD} \ -e "s|/usr/bin/env python|/usr/bin/env python${PYTHON_VER}|" \ -e 's,distutils\.command\.install ,setuptools\.command\.install ,' \ ${WRKSRC}/setup.py post-install: @${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Numeric -name "*.so" -exec \ ${STRIP_CMD} {} \; post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKDIR}/numpy.pdf ${STAGEDIR}${DOCSDIR} post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/Demo/*.py ${STAGEDIR}${EXAMPLESDIR} @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/NumTut ${INSTALL_DATA} ${WRKSRC}/Demo/NumTut/* ${STAGEDIR}${EXAMPLESDIR}/NumTut .include Index: head/math/py-scientific/Makefile =================================================================== --- head/math/py-scientific/Makefile (revision 554888) +++ head/math/py-scientific/Makefile (revision 554889) @@ -1,36 +1,39 @@ # Created by: Thomas Gellekum # $FreeBSD$ PORTNAME= scientific PORTVERSION= 2.8 PORTREVISION= 9 CATEGORIES= math python MASTER_SITES= http://sourcesup.cru.fr/frs/download.php/2309/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= ScientificPython-${PORTVERSION} MAINTAINER= fmysh@iijmio-mail.jp COMMENT= Collection of Python modules for scientific computing +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + BUILD_DEPENDS= ${PYNUMPY} LIB_DEPENDS= libnetcdf.so:science/netcdf RUN_DEPENDS= ${PYNUMPY} USES= python:2.7 USE_PYTHON= distutils autoplist DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} OPTIONS_DEFINE= DOCS EXAMPLES post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/LICENSE ${STAGEDIR}${DOCSDIR} cd ${WRKDIR}/${DISTNAME}/Doc; ${TAR} -c --exclude='*~' -f - . | \ (cd ${STAGEDIR}${DOCSDIR}; ${TAR} -xf -) @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKDIR}/${DISTNAME}/Examples; ${TAR} -c --exclude='*~' -f - . | \ (cd ${STAGEDIR}${EXAMPLESDIR}; ${TAR} -xf -) .include Index: head/net/py-libfte/Makefile =================================================================== --- head/net/py-libfte/Makefile (revision 554888) +++ head/net/py-libfte/Makefile (revision 554889) @@ -1,30 +1,33 @@ # $FreeBSD$ PORTNAME= libfte PORTVERSION= 0.1.3 CATEGORIES= net security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= fte-${PORTVERSION} MAINTAINER= egypcio@FreeBSD.org COMMENT= Format-Transforming Encryption Library/Toolkit LICENSE= APACHE20 +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + BUILD_DEPENDS= regex2dfa:textproc/regex2dfa \ ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.6.1:security/py-pycrypto@${PY_FLAVOR} LIB_DEPENDS= libgmp.so:math/gmp USES= localbase python:2.7 USE_PYTHON= autoplist distutils # setup.cfg enables inplace, copying extension to final place and breaking # autoplist post-extract: ${RM} ${WRKSRC}/setup.cfg post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/fte/cDFA.so .include Index: head/net/py-suds/Makefile =================================================================== --- head/net/py-suds/Makefile (revision 554888) +++ head/net/py-suds/Makefile (revision 554889) @@ -1,21 +1,24 @@ # Created by: Corey Smith # $FreeBSD$ PORTNAME= suds PORTVERSION= 0.4 PORTREVISION= 3 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= corsmith@gmail.com COMMENT= SOAP implementation LICENSE= LGPL3 +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}suds-jurko-* USES= python:2.7 USE_PYTHON= autoplist distutils .include Index: head/net/pynids/Makefile =================================================================== --- head/net/pynids/Makefile (revision 554888) +++ head/net/pynids/Makefile (revision 554889) @@ -1,31 +1,34 @@ # Created by: Corey Smith # $FreeBSD$ PORTNAME= pynids PORTVERSION= 0.6.1 PORTREVISION= 2 CATEGORIES= net python MASTER_SITES= http://jon.oberheide.org/pynids/downloads/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DIST_SUBDIR= python MAINTAINER= corsmith@gmail.com COMMENT= Python interface to libnids +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + LIB_DEPENDS= libnet.so:net/libnet USES= gnome pkgconfig python:2.7 USE_GNOME= glib20 USE_PYTHON= distutils autoplist pythonprefix post-extract: @cd ${WRKSRC} && ${TAR} xzf libnids-1.24.tar.gz post-patch: @${CP} -f ${TEMPLATES}/config.guess ${WRKSRC} @${CHMOD} a+rx ${WRKSRC}/config.guess @${CP} -f ${TEMPLATES}/config.sub ${WRKSRC} @${CHMOD} a+rx ${WRKSRC}/config.sub @${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|' ${WRKSRC}/setup.py .include Index: head/news/py-sabyenc/Makefile =================================================================== --- head/news/py-sabyenc/Makefile (revision 554888) +++ head/news/py-sabyenc/Makefile (revision 554889) @@ -1,21 +1,24 @@ # Created by: Ralf van der Enden # $FreeBSD$ PORTNAME= sabyenc PORTVERSION= 3.3.6 CATEGORIES= news python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ports@FreeBSD.org COMMENT= Python yEnc package optimized for use within SABnzbd LICENSE= LGPL3 +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + USES= python:2.7 USE_PYTHON= autoplist distutils post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/sabyenc.so .include Index: head/security/py-obfsproxy-tor/Makefile =================================================================== --- head/security/py-obfsproxy-tor/Makefile (revision 554888) +++ head/security/py-obfsproxy-tor/Makefile (revision 554889) @@ -1,35 +1,38 @@ # Created by: Carlo Strub # $FreeBSD$ PORTNAME= obfsproxy PORTVERSION= 0.2.13 PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= security net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMESUFFIX= -tor MAINTAINER= cs@FreeBSD.org COMMENT= Pluggable transport proxy LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyptlib>=0.0.5:security/py-pyptlib@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.1:security/py-pycrypto@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}twisted>=0:devel/py-twisted@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} USES= python:2.7 USE_PYTHON= distutils autoplist SUB_FILES= pkg-message NO_ARCH= yes PYDISTUTILS_PKGNAME= obfsproxy do-test: @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest) .include Index: head/textproc/py-hypua2jamo/Makefile =================================================================== --- head/textproc/py-hypua2jamo/Makefile (revision 554888) +++ head/textproc/py-hypua2jamo/Makefile (revision 554889) @@ -1,16 +1,19 @@ # Created by: Ryan Steinmetz # $FreeBSD$ PORTNAME= hypua2jamo PORTVERSION= 0.3 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= zi@FreeBSD.org COMMENT= Convert Hanyang-PUA code to unicode Hangul Jamo +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + USES= python:2.7 USE_PYTHON= distutils autoplist .include Index: head/www/py-pylons/Makefile =================================================================== --- head/www/py-pylons/Makefile (revision 554888) +++ head/www/py-pylons/Makefile (revision 554889) @@ -1,40 +1,43 @@ # Created by: Denis Shaposhnikov # $FreeBSD$ PORTNAME= pylons PORTVERSION= 1.0.3 CATEGORIES= www devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= Pylons-${PORTVERSION} MAINTAINER= python@FreeBSD.org COMMENT= Python based web framework LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MarkupSafe>=0.15:textproc/py-MarkupSafe@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Paste>=1.7.5.1:www/py-paste@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pastedeploy>=1.5.0:www/py-pastedeploy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}PasteScript>=1.7.4.2:www/py-pastescript@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Tempita>=0.5.1:textproc/py-Tempita@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}WebError>=0.10.3:www/py-WebError@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}WebTest>=1.3.1:www/py-WebTest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}beaker>=1.5.4:www/py-beaker@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}decorator>=3.3.2:devel/py-decorator@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}formencode>=1.2.4:www/py-formencode@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mako>=0.5.0:textproc/py-mako@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}nose>=1.1.2:devel/py-nose@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}routes>=1.12.3:www/py-routes@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}simplejson>=2.2.1:devel/py-simplejson@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}webhelpers>=0.6.4:www/py-webhelpers@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}webob>=1.1.1:www/py-webob@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.2.1:devel/py-Jinja2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR} NO_ARCH= yes USES= python:2.7 USE_PYTHON= distutils autoplist .include Index: head/www/py-qpy/Makefile =================================================================== --- head/www/py-qpy/Makefile (revision 554888) +++ head/www/py-qpy/Makefile (revision 554889) @@ -1,29 +1,32 @@ # Created by: Dryice Liu # $FreeBSD$ PORTNAME= qpy PORTVERSION= 1.8 PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= http://www.mems-exchange.org/software/qpy/ \ LOCAL/sunpoet PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generating safely-quoted html text from python code +DEPRECATED= Uses deprecated version of python +EXPIRATION_DATE= 2020-12-12 + OPTIONS_DEFINE= DOCS USE_PYTHON= autoplist distutils USES= python:2.7 PORTDOCS= CHANGES.txt LICENSE.txt README.txt post-build: @${STRIP_CMD} ${WRKSRC}/build/lib.*/qpy/quoted.so post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ .include