Received: by mail.netbsd.org (Postfix, from userid 605) id 6389284D8B; Mon, 3 Feb 2020 01:16:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E0C3684D8A for ; Mon, 3 Feb 2020 01:16:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id HGAWTm2D5zqW for ; Mon, 3 Feb 2020 01:16:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6D04A84D36 for ; Mon, 3 Feb 2020 01:16:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 60847FBF4; Mon, 3 Feb 2020 01:16:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1580692598216360" MIME-Version: 1.0 Date: Mon, 3 Feb 2020 01:16:38 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/mail/feed2exec To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20200203011638.60847FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1580692598216360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Mon Feb 3 01:16:38 UTC 2020 Modified Files: pkgsrc/mail/feed2exec: Makefile Log Message: Add missing dependencies on py-attrs and py-wcwidth. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/mail/feed2exec/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1580692598216360 Content-Disposition: inline Content-Length: 1685 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/feed2exec/Makefile diff -u pkgsrc/mail/feed2exec/Makefile:1.4 pkgsrc/mail/feed2exec/Makefile:1.5 --- pkgsrc/mail/feed2exec/Makefile:1.4 Sat Feb 1 03:07:49 2020 +++ pkgsrc/mail/feed2exec/Makefile Mon Feb 3 01:16:38 2020 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2020/02/01 03:07:49 schmonz Exp $ +# $NetBSD: Makefile,v 1.5 2020/02/03 01:16:38 schmonz Exp $ DISTNAME= feed2exec-0.14.0 PKGNAME= ${DISTNAME:S/14/15/} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= mail python MASTER_SITES= https://gitlab.com/anarcat/feed2exec/-/archive/${PKGVERSION_NOREV}/ @@ -18,6 +18,7 @@ BUILD_DEPENDS+= ${PYPKGPREFIX}-flakes-[ BUILD_DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx BUILD_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel DEPENDS+= ${PYPKGPREFIX}-Unidecode-[0-9]*:../../textproc/py-Unidecode +DEPENDS+= ${PYPKGPREFIX}-attrs-[0-9]*:../../devel/py-attrs DEPENDS+= ${PYPKGPREFIX}-click-[0-9]*:../../devel/py-click DEPENDS+= ${PYPKGPREFIX}-dateparser-[0-9]*:../../time/py-dateparser DEPENDS+= ${PYPKGPREFIX}-feedparser-[0-9]*:../../textproc/py-feedparser @@ -26,6 +27,7 @@ DEPENDS+= ${PYPKGPREFIX}-xdg-[0-9]*:../ DEPENDS+= ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests DEPENDS+= ${PYPKGPREFIX}-requests-file-[0-9]*:../../devel/py-requests-file DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3 +DEPENDS+= ${PYPKGPREFIX}-wcwidth-[0-9]*:../../devel/py-wcwidth TEST_DEPENDS+= ${PYPKGPREFIX}-betamax-[0-9]*:../../www/py-betamax TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-runner --_----------=_1580692598216360--