From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-861192-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B791A58973 for <garchives@archives.gentoo.org>; Tue, 2 Feb 2016 21:19:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBD4521C004; Tue, 2 Feb 2016 21:19:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 64E1E21C004 for <gentoo-commits@lists.gentoo.org>; Tue, 2 Feb 2016 21:19:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37BA033D3CF for <gentoo-commits@lists.gentoo.org>; Tue, 2 Feb 2016 21:19:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 740868E1 for <gentoo-commits@lists.gentoo.org>; Tue, 2 Feb 2016 21:19:32 +0000 (UTC) From: "Patrice Clement" <monsieurp@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" <monsieurp@gentoo.org> Message-ID: <1454447848.89e350bf011198fa03e9cff57c667008b554f348.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/distlib/files/, dev-python/distlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/distlib/distlib-0.2.2.ebuild dev-python/distlib/files/distlib-0.2.2-unbundle.patch X-VCS-Directories: dev-python/distlib/files/ dev-python/distlib/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 89e350bf011198fa03e9cff57c667008b554f348 X-VCS-Branch: master Date: Tue, 2 Feb 2016 21:19:32 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 35a9147d-0bf2-4bc6-bf1e-6f1630472c93 X-Archives-Hash: 9d240638d186bd834cf83c05aa165e3c commit: 89e350bf011198fa03e9cff57c667008b554f348 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org> AuthorDate: Tue Feb 2 16:23:43 2016 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Tue Feb 2 21:17:28 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89e350bf dev-python/distlib: Add patches for distlib-0.2.2. Package-Manager: portage-2.2.26 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org> dev-python/distlib/distlib-0.2.2.ebuild | 1 - .../distlib/files/distlib-0.2.2-unbundle.patch | 35 ++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/dev-python/distlib/distlib-0.2.2.ebuild b/dev-python/distlib/distlib-0.2.2.ebuild index b5fbc3e..81a6691 100644 --- a/dev-python/distlib/distlib-0.2.2.ebuild +++ b/dev-python/distlib/distlib-0.2.2.ebuild @@ -20,7 +20,6 @@ IUSE="" PATCHES=( "${FILESDIR}"/${P}-unbundle.patch - "${FILESDIR}"/${P}-online.patch ) python_prepare_all() { diff --git a/dev-python/distlib/files/distlib-0.2.2-unbundle.patch b/dev-python/distlib/files/distlib-0.2.2-unbundle.patch new file mode 100644 index 0000000..5ee9129 --- /dev/null +++ b/dev-python/distlib/files/distlib-0.2.2-unbundle.patch @@ -0,0 +1,35 @@ +--- distlib-0.1.9/distlib/compat.py.orig 2014-06-06 09:58:21.317560756 +0200 ++++ distlib-0.1.9/distlib/compat.py 2014-06-06 09:58:29.955611427 +0200 +@@ -17,7 +17,7 @@ if sys.version_info[0] < 3: + from types import FileType as file_type + import __builtin__ as builtins + import ConfigParser as configparser +- from ._backport import shutil ++ import shutil + from urlparse import urlparse, urlunparse, urljoin, urlsplit, urlunsplit + from urllib import (urlretrieve, quote as _quote, unquote, url2pathname, + pathname2url, ContentTooShortError, splittype) +@@ -267,7 +267,7 @@ except ImportError: # pragma: no cover + try: + import sysconfig + except ImportError: # pragma: no cover +- from ._backport import sysconfig ++ import sysconfig + + try: + callable = callable +--- distlib-0.1.9/setup.py.orig 2014-06-06 10:19:13.971997156 +0200 ++++ distlib-0.1.9/setup.py 2014-06-06 10:19:20.012034150 +0200 +@@ -62,12 +62,7 @@ distutils.core.setup( + platforms='any', + packages=[ + 'distlib', +- 'distlib._backport', + ], +- package_data={ +- 'distlib._backport': ['sysconfig.cfg'], +- 'distlib': ['t32.exe', 't64.exe', 'w32.exe', 'w64.exe'], +- }, + cmdclass={ + 'test': TestCommand, + },