From 483548f09d6f16b85a99daa1a258043255ca239a Mon Sep 17 00:00:00 2001 From: leot Date: Mon, 20 Jan 2020 10:33:04 +0000 Subject: gallery-dl: Update to 1.12.3 1.12.3 ------ ### Additions - [hentaifoundry] extract more metadata (#565) - [twitter] add option to extract TwitPic embeds (#579) - implement a post-processor module to compare file versions (#530) ### Fixes - [hitomi] update image URL generation - [mangadex] revert domain to `mangadex.org` - [pinterest] improve detection of invalid pin.it links - [pixiv] update URL patterns for user profiles and bookmarks (#568) - [twitter] Fix stop before real end (#573) - remove temp files before downloading from fallback URLs ### Removals - [erolord] remove extractor --- net/gallery-dl/Makefile | 4 ++-- net/gallery-dl/PLIST | 8 ++++---- net/gallery-dl/distinfo | 12 ++++++------ net/gallery-dl/patches/patch-gallery__dl_version.py | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) (limited to 'net/gallery-dl') diff --git a/net/gallery-dl/Makefile b/net/gallery-dl/Makefile index aaabb542b0e..2952b775a04 100644 --- a/net/gallery-dl/Makefile +++ b/net/gallery-dl/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.48 2020/01/05 21:53:55 leot Exp $ +# $NetBSD: Makefile,v 1.49 2020/01/20 10:33:04 leot Exp $ -DISTNAME= gallery_dl-1.12.2 +DISTNAME= gallery_dl-1.12.3 PKGNAME= ${DISTNAME:S/_/-/} CATEGORIES= net python MASTER_SITES= ${MASTER_SITE_PYPI:=g/gallery-dl/} diff --git a/net/gallery-dl/PLIST b/net/gallery-dl/PLIST index 126922387f1..4966219d8ab 100644 --- a/net/gallery-dl/PLIST +++ b/net/gallery-dl/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.35 2019/12/28 21:44:17 leot Exp $ +@comment $NetBSD: PLIST,v 1.36 2020/01/20 10:33:04 leot Exp $ bin/gallery-dl ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt @@ -99,9 +99,6 @@ ${PYSITELIB}/gallery_dl/extractor/dynastyscans.pyo ${PYSITELIB}/gallery_dl/extractor/e621.py ${PYSITELIB}/gallery_dl/extractor/e621.pyc ${PYSITELIB}/gallery_dl/extractor/e621.pyo -${PYSITELIB}/gallery_dl/extractor/erolord.py -${PYSITELIB}/gallery_dl/extractor/erolord.pyc -${PYSITELIB}/gallery_dl/extractor/erolord.pyo ${PYSITELIB}/gallery_dl/extractor/exhentai.py ${PYSITELIB}/gallery_dl/extractor/exhentai.pyc ${PYSITELIB}/gallery_dl/extractor/exhentai.pyo @@ -411,6 +408,9 @@ ${PYSITELIB}/gallery_dl/postprocessor/classify.pyo ${PYSITELIB}/gallery_dl/postprocessor/common.py ${PYSITELIB}/gallery_dl/postprocessor/common.pyc ${PYSITELIB}/gallery_dl/postprocessor/common.pyo +${PYSITELIB}/gallery_dl/postprocessor/compare.py +${PYSITELIB}/gallery_dl/postprocessor/compare.pyc +${PYSITELIB}/gallery_dl/postprocessor/compare.pyo ${PYSITELIB}/gallery_dl/postprocessor/exec.py ${PYSITELIB}/gallery_dl/postprocessor/exec.pyc ${PYSITELIB}/gallery_dl/postprocessor/exec.pyo diff --git a/net/gallery-dl/distinfo b/net/gallery-dl/distinfo index 2ed024d2b51..351e63338b5 100644 --- a/net/gallery-dl/distinfo +++ b/net/gallery-dl/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.46 2020/01/05 21:53:55 leot Exp $ +$NetBSD: distinfo,v 1.47 2020/01/20 10:33:04 leot Exp $ -SHA1 (gallery_dl-1.12.2.tar.gz) = 4cb6193ea082baeb6d65b2f51d9395d8fe4a35e6 -RMD160 (gallery_dl-1.12.2.tar.gz) = e63c6047916d52a29f35377486551b0eaa360d01 -SHA512 (gallery_dl-1.12.2.tar.gz) = c41c3fbf2b3c78bb279b5f072250ca10c81ec6fa22d1417dfb10e5df161fa2252356b74e1454244bc3c65b5915a34fbdf9f268f2cb3147d3b457d1b3a99e8a96 -Size (gallery_dl-1.12.2.tar.gz) = 251792 bytes -SHA1 (patch-gallery__dl_version.py) = 140cf782ac60597849b6efca686b12b737bc1956 +SHA1 (gallery_dl-1.12.3.tar.gz) = 4e0899444341e78d8e073883c3a28d0f3eca9c57 +RMD160 (gallery_dl-1.12.3.tar.gz) = e5fa9955a619e073bd59db498d2b3621ec806c19 +SHA512 (gallery_dl-1.12.3.tar.gz) = d06e17d88daccb5822a5c8684309d633b0bf6680c1cf0c2c482079fa5a3ae1a9524a22190231e4e03ddb708b437e2a1d57a7b728cf971f10de1ddf144f393fd2 +Size (gallery_dl-1.12.3.tar.gz) = 252764 bytes +SHA1 (patch-gallery__dl_version.py) = bcfd1666f21b9c050908a7e5592dfbce3b8791ce diff --git a/net/gallery-dl/patches/patch-gallery__dl_version.py b/net/gallery-dl/patches/patch-gallery__dl_version.py index 41e2c3ac3ef..cf6d7b8936c 100644 --- a/net/gallery-dl/patches/patch-gallery__dl_version.py +++ b/net/gallery-dl/patches/patch-gallery__dl_version.py @@ -1,4 +1,4 @@ -$NetBSD: patch-gallery__dl_version.py,v 1.3 2019/02/05 21:18:04 leot Exp $ +$NetBSD: patch-gallery__dl_version.py,v 1.4 2020/01/20 10:33:04 leot Exp $ Avoid a UnicodeDecodeError. @@ -7,8 +7,8 @@ Avoid a UnicodeDecodeError. @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- --# Copyright 2016-2019 Mike Fährmann -+# Copyright 2016-2019 Mike Fahrmann +-# Copyright 2016-2020 Mike Fährmann ++# Copyright 2016-2020 Mike Fahrmann # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as -- cgit v1.2.3