Received: by mail.netbsd.org (Postfix, from userid 605) id 0D88784EA7; Fri, 2 Mar 2018 15:36:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 811AF84EA3 for ; Fri, 2 Mar 2018 15:36:48 +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 A9WGVO2dd__T for ; Fri, 2 Mar 2018 15:36:47 +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 D600784E43 for ; Fri, 2 Mar 2018 15:36:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D04D8FB40; Fri, 2 Mar 2018 15:36:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_152000500748410" MIME-Version: 1.0 Date: Fri, 2 Mar 2018 15:36:47 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/www/py-google-apitools/patches To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20180302153647.D04D8FB40@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. --_----------=_152000500748410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Fri Mar 2 15:36:47 UTC 2018 Added Files: pkgsrc/www/py-google-apitools/patches: patch-google__apitools.egg-info_requires.txt patch-setup.py Log Message: These patches were missing from the initial import. As they are mentioned in distinfo, I don't think anyone could build this so far, so no PKGREVISION bump. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 \ pkgsrc/www/py-google-apitools/patches/patch-google__apitools.egg-info_requires.txt \ pkgsrc/www/py-google-apitools/patches/patch-setup.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_152000500748410 Content-Disposition: inline Content-Length: 1545 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/www/py-google-apitools/patches/patch-google__apitools.egg-info_requires.txt diff -u /dev/null pkgsrc/www/py-google-apitools/patches/patch-google__apitools.egg-info_requires.txt:1.1 --- /dev/null Fri Mar 2 15:36:47 2018 +++ pkgsrc/www/py-google-apitools/patches/patch-google__apitools.egg-info_requires.txt Fri Mar 2 15:36:47 2018 @@ -0,0 +1,14 @@ +$NetBSD: patch-google__apitools.egg-info_requires.txt,v 1.1 2018/03/02 15:36:47 bsiegert Exp $ + +Accept any newer gflags version. Python 2.6 compatibility is irrelevant. +--- google_apitools.egg-info/requires.txt.orig 2018-01-16 22:21:20.000000000 +0000 ++++ google_apitools.egg-info/requires.txt +@@ -5,7 +5,7 @@ six>=1.9.0 + + [cli] + google-apputils>=0.4.0 +-python-gflags==3.0.6 ++python-gflags>=3.0.6 + + [testing] + google-apputils>=0.4.0 Index: pkgsrc/www/py-google-apitools/patches/patch-setup.py diff -u /dev/null pkgsrc/www/py-google-apitools/patches/patch-setup.py:1.1 --- /dev/null Fri Mar 2 15:36:47 2018 +++ pkgsrc/www/py-google-apitools/patches/patch-setup.py Fri Mar 2 15:36:47 2018 @@ -0,0 +1,14 @@ +$NetBSD: patch-setup.py,v 1.1 2018/03/02 15:36:47 bsiegert Exp $ + +Accept any newer gflags version. Python 2.6 compatibility is irrelevant. +--- setup.py.orig 2018-01-16 22:17:29.000000000 +0000 ++++ setup.py +@@ -36,7 +36,7 @@ REQUIRED_PACKAGES = [ + + CLI_PACKAGES = [ + 'google-apputils>=0.4.0', +- 'python-gflags==3.0.6', # Starting version 3.0.7 py26 is not supported. ++ 'python-gflags>=3.0.6', + ] + + TESTING_PACKAGES = [ --_----------=_152000500748410--