pkgsrc changes: - Remove no longer needed patches Changes: 2.1.0 ----- * Improve legendastv provider matches * Fix video extensions (.mk3d .ogm .ogv) * Use new url to search for titles in legendastv provider * Fix stevedore incompatibility * Add support to webm video extension * Make providers easier to be extended and customized * Update podnapisi URL * Add support to VIP/Donor accounts in legendastv provider * Proper handling titles with year / country in legendastv provider * Several minor enhancements in legendastv provider * Add support for python 3.6, 3.7 and 3.8 * Drop support for python 3.3 and 3.4 * Do not discard providers bad zip/rar is downloaded * SubsCenter provider removal * Fix lxml parsing for Addic7ed provider * Support titles with asterics in Addic7ed provider * Add support to multi-episode search in Opensubtitles provider * Fix multi-episode search in TVSubtitles provider * Update to guessit 3 * Improve archive scanning * Add Opensubtitles VIP provider * Add country to Movie and Episode * Add streaming_service to Video * Add info property to Subtitle * Do not search for subtitles if all required languages is already present * Improve TVDB refiner to support series with comma * Add alternative_titles to Video and enhance OMDB refiner to use alternative_titles * Only compute video hashes when required * Add apikey to OMDB refiner * Fix Subtitle validation when unable to guess encoding * Add support to rar in Dockerfile
39 lines
1.5 KiB
Makefile
39 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2020/05/02 16:32:01 leot Exp $
|
|
|
|
DISTNAME= subliminal-2.1.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=s/subliminal/}
|
|
|
|
MAINTAINER= leot@NetBSD.org
|
|
HOMEPAGE= https://github.com/Diaoul/subliminal/
|
|
COMMENT= Video subtitles downloader
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-appdirs>=1.3:../../devel/py-appdirs
|
|
DEPENDS+= ${PYPKGPREFIX}-babelfish>=0.5.2:../../textproc/py-babelfish
|
|
DEPENDS+= ${PYPKGPREFIX}-beautifulsoup4>=4.4.0:../../www/py-beautifulsoup4
|
|
DEPENDS+= ${PYPKGPREFIX}-chardet>=2.3.0:../../converters/py-chardet
|
|
DEPENDS+= ${PYPKGPREFIX}-click>=4.0:../../devel/py-click
|
|
DEPENDS+= ${PYPKGPREFIX}-dogpile-cache>=0.6.0:../../devel/py-dogpile-cache
|
|
DEPENDS+= ${PYPKGPREFIX}-enzyme>=0.4.1:../../multimedia/py-enzyme
|
|
DEPENDS+= ${PYPKGPREFIX}-guessit>=3.0.0:../../textproc/py-guessit
|
|
DEPENDS+= ${PYPKGPREFIX}-pysrt>=1.0.1:../../textproc/py-pysrt
|
|
DEPENDS+= ${PYPKGPREFIX}-pytz>=2012c:../../time/py-pytz
|
|
DEPENDS+= ${PYPKGPREFIX}-rarfile>=2.7:../../archivers/py-rarfile
|
|
DEPENDS+= ${PYPKGPREFIX}-requests>=2.0:../../devel/py-requests
|
|
DEPENDS+= ${PYPKGPREFIX}-six>=1.9.0:../../lang/py-six
|
|
DEPENDS+= ${PYPKGPREFIX}-stevedore>=1.20.0:../../devel/py-stevedore
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
|
|
.if ${_PYTHON_VERSION} < 33
|
|
DEPENDS+= ${PYPKGPREFIX}-futures>=3.0:../../devel/py-futures
|
|
.endif
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
${MV} ${DESTDIR}${PREFIX}/bin/subliminal ${DESTDIR}${PREFIX}/bin/subliminal-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|