Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 3D4127A2DA for ; Fri, 30 Dec 2016 23:29:16 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id DF9F78562C; Fri, 30 Dec 2016 23:29:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6E53285603 for ; Fri, 30 Dec 2016 23:29:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id a6Gsnv6Vn7Oz for ; Fri, 30 Dec 2016 23:29:15 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id C86D38558A for ; Fri, 30 Dec 2016 23:29:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BBC0DFBA6; Fri, 30 Dec 2016 23:29:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148314055438500" MIME-Version: 1.0 Date: Fri, 30 Dec 2016 23:29:14 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/multimedia/streamlink To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20161230232914.BBC0DFBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_148314055438500 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Fri Dec 30 23:29:14 UTC 2016 Modified Files: pkgsrc/multimedia/streamlink: Makefile Log Message: streamlink: actually take advantage of pycryptodome dependency being less specific now. this is necessary for not breaking bulk builds in changes to pycryptodome. pointed out by wiz, thanks. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/multimedia/streamlink/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148314055438500 Content-Disposition: inline Content-Length: 912 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/multimedia/streamlink/Makefile diff -u pkgsrc/multimedia/streamlink/Makefile:1.4 pkgsrc/multimedia/streamlink/Makefile:1.5 --- pkgsrc/multimedia/streamlink/Makefile:1.4 Fri Dec 30 22:41:33 2016 +++ pkgsrc/multimedia/streamlink/Makefile Fri Dec 30 23:29:14 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2016/12/30 22:41:33 maya Exp $ +# $NetBSD: Makefile,v 1.5 2016/12/30 23:29:14 maya Exp $ DISTNAME= streamlink-0.2.0 CATEGORIES= multimedia @@ -17,7 +17,7 @@ DEPENDS+= ${PYPKGPREFIX}-requests-[0-9]* DEPENDS+= ${PYPKGPREFIX}-singledispatch-[0-9]*:../../devel/py-singledispatch DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six DEPENDS+= ${PYPKGPREFIX}-futures-[0-9]*:../../devel/py-futures -DEPENDS+= ${PYPKGPREFIX}-cryptodome-3.4.3:../../security/py-cryptodome +DEPENDS+= ${PYPKGPREFIX}-cryptodome>=3.4.3:../../security/py-cryptodome EGG_NAME= ${PKGNAME_NOREV} --_----------=_148314055438500--