python-appdirs/desetuptoolize.patch
Jan Matejek ceb2c65731 - update for single-spec
- desetuptoolize.patch : switch from setuptools to distutils.core
  for installation, as this is now a setuptools dependency
- ensure egg-info is a directory (distutils would install it as file)
- update to 1.4.1
  * [issue 55] make appname optional

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-appdirs?expand=0&rev=4
2017-02-23 11:48:02 +00:00

14 lines
314 B
Diff

Index: appdirs-1.4.1/setup.py
===================================================================
--- appdirs-1.4.1.orig/setup.py
+++ appdirs-1.4.1/setup.py
@@ -2,7 +2,7 @@
import sys
import os
import os.path
-from setuptools import setup
+from distutils.core import setup
import appdirs
tests_require = []