0f739a65f3
- 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) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyparsing?expand=0&rev=35
14 lines
363 B
Diff
14 lines
363 B
Diff
Index: pyparsing-2.1.10/setup.py
|
|
===================================================================
|
|
--- pyparsing-2.1.10.orig/setup.py
|
|
+++ pyparsing-2.1.10/setup.py
|
|
@@ -1,7 +1,7 @@
|
|
#!/usr/bin/env python
|
|
|
|
"""Setup script for the pyparsing module distribution."""
|
|
-from setuptools import setup
|
|
+from distutils.core import setup
|
|
|
|
import sys
|
|
import os
|