Index: head/audio/py-mpd2/Makefile =================================================================== --- head/audio/py-mpd2/Makefile (revision 405033) +++ head/audio/py-mpd2/Makefile (revision 405034) @@ -1,58 +1,58 @@ # Created by: rene@FreeBSD.org (repocopied from audio/py-mpd) # $FreeBSD$ PORTNAME= mpd2 PORTVERSION= 0.5.4 DISTVERSIONPREFIX= v CATEGORIES= audio python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= rene@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Fork of the Python MPD client library LICENSE= LGPL3 USE_GITHUB= yes GH_ACCOUNT= Mic92 GH_PROJECT= python-${PORTNAME} USES= shebangfix python SHEBANG_FILES= examples/helloworld.py USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes OPTIONS_DEFINE= DOCS EXAMPLES DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} PORTDOCS_1= commands_header.txt index.rst changes.rst PORTDOCS_2= topics/advanced.rst topics/commands.rst \ topics/getting-started.rst topics/logging.rst PORTDOCS_3= generate_command_reference.py PORTDOCS= ${PORTDOCS_1} ${PORTDOCS_2} ${PORTDOCS_3} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} PORTEXAMPLES_1= errorhandling.py helloworld.py idle.py locking.py logger.py \ multitags.py randomqueue.py stats.py stickers.py PORTEXAMPLES_2= summary.txt PORTEXAMPLES= ${PORTEXAMPLES_1} ${PORTEXAMPLES_2} post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR}/topics .for f in ${PORTDOCS_1} ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR} .endfor .for f in ${PORTDOCS_2} ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}/topics .endfor .for f in ${PORTDOCS_3} ${INSTALL_SCRIPT} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR} .endfor ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for f in ${PORTEXAMPLES_1} ${INSTALL_SCRIPT} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR} .endfor .for f in ${PORTEXAMPLES_2} ${INSTALL_DATA} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR} .endfor .include Index: head/www/py-ws4py/Makefile =================================================================== --- head/www/py-ws4py/Makefile (revision 405033) +++ head/www/py-ws4py/Makefile (revision 405034) @@ -1,50 +1,50 @@ # Created by: rene@FreeBSD.org # $FreeBSD$ PORTNAME= ws4py PORTVERSION= 0.3.4 CATEGORIES= www python MASTER_SITES= http://www.defuze.org/oss/${PORTNAME}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= rene@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= WebSocket package for Python LICENSE= BSD3CLAUSE USES= python USE_PYTHON= distutils autoplist NO_ARCH= yes OPTIONS_DEFINE= CHERRYPY GEVENT TORNADO OPTIONS_DEFAULT= CHERRYPY GEVENT CHERRYPY_DESC= CherryPy server support GEVENT_DESC= gevent-based client/server support TORNADO_DESC= Tornado client support CHERRYPY_RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}cherrypy>=3.2.2:${PORTSDIR}/www/py-cherrypy GEVENT_RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}gevent>=0.13.8:${PORTSDIR}/devel/py-gevent TORNADO_RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}tornado>=3.1:${PORTSDIR}/www/py-tornado .include # Do not install files which will not work post-patch: .if ! ${PORT_OPTIONS:MCHERRYPY} .for f in test/test_cherrypy.py ws4py/server/cherrypyserver.py ${RM} ${WRKSRC}/${f} .endfor .endif .if ! ${PORT_OPTIONS:MGEVENT} .for f in ws4py/client/geventclient.py ws4py/server/geventserver.py ${RM} ${WRKSRC}/${f} .endfor .endif .if ! ${PORT_OPTIONS:MTORNADO} .for f in ws4py/client/tornadoclient.py ${RM} ${WRKSRC}/${f} .endfor .endif .include