23980a4e2b
3.1.1: Drop python 3.4 support Use SafeLoader with yaml.load() 3.1.0: Add python 3.8 support Use rebulk 2.* Remove v from subtitle_language prefix in default configuration Add Variable Frame Rate value to other property (VFR tag) Use episode words defined in configuration in a rebulk rule Avoid trigger of useless rules consequences Fix possible crash in weak episode removal Fix issue caused by streaming_service property conflicts Fix source validation when more than one pattern match Fix issue with some titles on multiple fileparts Fix issue related to website exclusion inside title
28 lines
1,019 B
Makefile
28 lines
1,019 B
Makefile
# $NetBSD: Makefile,v 1.6 2020/05/17 21:07:03 adam Exp $
|
|
|
|
DISTNAME= guessit-3.1.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=g/guessit/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://guessit.readthedocs.io/
|
|
COMMENT= Extracts as much information as possible from a video filename
|
|
LICENSE= gnu-lgpl-v3
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-babelfish>=0.5.5:../../textproc/py-babelfish
|
|
DEPENDS+= ${PYPKGPREFIX}-dateutil-[0-9]*:../../time/py-dateutil
|
|
DEPENDS+= ${PYPKGPREFIX}-rebulk>=2.0.0:../../textproc/py-rebulk
|
|
DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml
|
|
#TEST_DEPENDS+= ${PYPKGPREFIX}-test-benchmark-[0-9]*: not yet packaged
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} guessit guessit-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|