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 8B5317A26F for ; Fri, 30 Dec 2016 23:23:22 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 07D5185621; Fri, 30 Dec 2016 23:23:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8CC3D85603 for ; Fri, 30 Dec 2016 23:23:21 +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 9ghD6o8b_Cwk for ; Fri, 30 Dec 2016 23:23:21 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 162FA8558A for ; Fri, 30 Dec 2016 23:23:21 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0DCB5FBA6; Fri, 30 Dec 2016 23:23:21 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148314020158530" MIME-Version: 1.0 Date: Fri, 30 Dec 2016 23:23:21 +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: <20161230232321.0DCB5FBA6@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. --_----------=_148314020158530 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:23:20 UTC 2016 Modified Files: pkgsrc/multimedia/streamlink: distinfo Added Files: pkgsrc/multimedia/streamlink/patches: patch-setup.py Log Message: streamlink: be less specific about pycryptodome dependency To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/multimedia/streamlink/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/multimedia/streamlink/patches/patch-setup.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148314020158530 Content-Disposition: inline Content-Length: 1698 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/multimedia/streamlink/distinfo diff -u pkgsrc/multimedia/streamlink/distinfo:1.3 pkgsrc/multimedia/streamlink/distinfo:1.4 --- pkgsrc/multimedia/streamlink/distinfo:1.3 Fri Dec 30 22:41:33 2016 +++ pkgsrc/multimedia/streamlink/distinfo Fri Dec 30 23:23:20 2016 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.3 2016/12/30 22:41:33 maya Exp $ +$NetBSD: distinfo,v 1.4 2016/12/30 23:23:20 maya Exp $ SHA1 (streamlink-0.2.0.tar.gz) = 6f56764b3b6fbf6eb74c0d92afe6f5f93ccb2198 RMD160 (streamlink-0.2.0.tar.gz) = d437e47bf5e811a92fe0bef69ae4a4606b87d082 SHA512 (streamlink-0.2.0.tar.gz) = 10ccf30ef024c34f15b16539ac1e9329351eb26dffe0c36546240354fcf635e7dabc63a56cf70d43763adbfdc41651b86f189e625215d475d54d04f8e3b24ab1 Size (streamlink-0.2.0.tar.gz) = 996839 bytes +SHA1 (patch-setup.py) = c3b628dcc7cad49c90a8116e1b40baa67bd8b76d Added files: Index: pkgsrc/multimedia/streamlink/patches/patch-setup.py diff -u /dev/null pkgsrc/multimedia/streamlink/patches/patch-setup.py:1.1 --- /dev/null Fri Dec 30 23:23:21 2016 +++ pkgsrc/multimedia/streamlink/patches/patch-setup.py Fri Dec 30 23:23:20 2016 @@ -0,0 +1,15 @@ +$NetBSD: patch-setup.py,v 1.1 2016/12/30 23:23:20 maya Exp $ + +Don't be so specific about py-cryptodome version dependency. + +--- setup.py.orig 2016-12-17 00:41:21.000000000 +0000 ++++ setup.py +@@ -38,7 +38,7 @@ else: + deps.append("requests>=1.0,!=2.12.0,!=2.12.1,<3.0") + + # this version of pycryptodome is known to work and has a Windows wheel for py2.7, py3.3-3.5 +-deps.append("pycryptodome==3.4.3") ++deps.append("pycryptodome>=3.4.3") + + # When we build an egg for the Win32 bootstrap we don't want dependency + # information built into it. --_----------=_148314020158530--