8942de43ff
Point all www/py-requests dependants to www/py-requests1 in preparation for the upgrade of www/py-requests to version 2.x, which substantially breaks API compatibility. Maintainers of these ports can update their requests dependency independently as time for sufficient testing permits. PR: ports/185631
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
# Created by: William Grzybowski <william88@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= subliminal
|
|
PORTVERSION= 0.7.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= multimedia python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= wg@FreeBSD.org
|
|
COMMENT= Python library to search and download subtitles
|
|
|
|
LICENSE= LGPL3
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/bs4/__init__.py:${PORTSDIR}/www/py-beautifulsoup \
|
|
${PYTHON_PKGNAMEPREFIX}enzyme>=0.4.0:${PORTSDIR}/multimedia/py-enzyme \
|
|
${PYTHON_PKGNAMEPREFIX}guessit>=0.6.1:${PORTSDIR}/multimedia/py-guessit \
|
|
${PYTHON_PKGNAMEPREFIX}requests1>=1.1:${PORTSDIR}/www/py-requests1 \
|
|
${PYTHON_PKGNAMEPREFIX}html5lib>0:${PORTSDIR}/www/py-html5lib \
|
|
${PYTHON_PKGNAMEPREFIX}charade>0:${PORTSDIR}/textproc/py-charade \
|
|
${PYTHON_PKGNAMEPREFIX}pysrt>0:${PORTSDIR}/textproc/py-pysrt \
|
|
${PYTHON_PKGNAMEPREFIX}babelfish>=0.4.0:${PORTSDIR}/devel/py-babelfish \
|
|
${PYTHON_PKGNAMEPREFIX}dogpile.cache>=0.5.2:${PORTSDIR}/devel/py-dogpile.cache
|
|
|
|
USE_PYTHON= 2
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} "s/.com',/.com', zip_safe=False,/" \
|
|
${WRKSRC}/setup.py
|
|
@${REINPLACE_CMD} \
|
|
-e 's,^requests.*,requests,g' \
|
|
-e 's,^html5lib.*,html5lib,g' \
|
|
${WRKSRC}/requirements.txt
|
|
|
|
.include <bsd.port.mk>
|