7c78979fc2
Changes: 1.14.3 ------ ### Additions - [8muses] support `comics.8muses.com` URLs - [artstation] add `following` extractor (#888) - [exhentai] add `domain` option (#897) - [gfycat] add `user` and `search` extractors - [imgur] support all `/t/...` URLs (#880) - [khinsider] add `format` option (#840) - [mangakakalot] add `manga` and `chapter` extractors (#876) - [redgifs] support `gifsdeliverynetwork.com` URLs (#874) - [subscribestar] add `user` and `post` extractors (#852) - [twitter] add support for nitter.net URLs (#890) - add Zsh completion script (#150) ### Fixes - [gfycat] retry 404'ed videos on redgifs.com (#874) - [newgrounds] fix favorites extraction - [patreon] yield images and attachments before post files (#871) - [reddit] fix AttributeError when using `recursion` (#879) - [twitter] raise proper exception if a user doesn't exist (#891) - defer directory creation (#722) - set pseudo extension for Metadata messages (#865) - prevent exception on Cloudflare challenges (#868)
29 lines
889 B
Makefile
29 lines
889 B
Makefile
# $NetBSD: Makefile,v 1.60 2020/07/18 17:17:04 leot Exp $
|
|
|
|
DISTNAME= gallery_dl-1.14.3
|
|
PKGNAME= ${DISTNAME:S/_/-/}
|
|
CATEGORIES= net python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=g/gallery-dl/}
|
|
|
|
MAINTAINER= leot@NetBSD.org
|
|
HOMEPAGE= https://github.com/mikf/gallery-dl
|
|
COMMENT= Command-line program to download image galleries and collections
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
|
|
DEPENDS+= ${PYPKGPREFIX}-requests>=2.11.0:../../devel/py-requests
|
|
|
|
SUBST_CLASSES+= paths
|
|
SUBST_STAGE.paths= pre-configure
|
|
SUBST_MESSAGE.paths= Adjust hard-coded paths
|
|
SUBST_FILES.paths= setup.py
|
|
SUBST_SED.paths+= -e 's,etc/bash_completion\.d,share/bash_completion.d,'
|
|
SUBST_SED.paths+= -e 's,share/man,${PKGMANDIR},g'
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
# Only for Python 3
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|