From 0704956f7256f1f618cc5e03af2c1dbd0e83dbc5 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Thu, 16 Jan 2020 16:18:18 +0000 Subject: gentoo resync : 16.01.2020 --- dev-python/six/files/1.10.0-no-setuptools.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 dev-python/six/files/1.10.0-no-setuptools.patch (limited to 'dev-python/six/files/1.10.0-no-setuptools.patch') diff --git a/dev-python/six/files/1.10.0-no-setuptools.patch b/dev-python/six/files/1.10.0-no-setuptools.patch deleted file mode 100644 index d4309181902a..000000000000 --- a/dev-python/six/files/1.10.0-no-setuptools.patch +++ /dev/null @@ -1,22 +0,0 @@ -Force distutils to avoid depending on setuptools - -distutils and setuptools have differing behavior in regard to egg-info -directories versus files, so we need to ensure that no automagic behavior -occurs here. - -We cannot hard-depend on setuptools due to a circular dependency. - -diff --git a/setup.py b/setup.py ---- a/setup.py -+++ b/setup.py -@@ -1,9 +1,6 @@ - from __future__ import with_statement - --try: -- from setuptools import setup --except ImportError: -- from distutils.core import setup -+from distutils.core import setup - - import six - -- cgit v1.2.3