mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
- trim Makefile header - update MASTER_SITES - remove indefinite article from COMMENT - limit python version to 2.x only - convert to optionsng (NOPORTDOCS case) - patch out setuptools for from setup.py for now (mainly to not use PYEASYINSTALL_OSARCH) - update formatting in pkg-descr and change tab with space at WWW Reported by: D'Arcy J.M. Cain <darcy@PyGreSQL.org> (on ports@)
17 lines
502 B
Python
17 lines
502 B
Python
--- ./setup.py.orig 2013-01-03 16:46:09.000000000 +0400
|
|
+++ ./setup.py 2013-01-03 21:16:42.000000000 +0400
|
|
@@ -47,10 +47,10 @@
|
|
|
|
import os
|
|
import platform
|
|
-try:
|
|
- from setuptools import setup
|
|
-except ImportError:
|
|
- from distutils.core import setup
|
|
+#try:
|
|
+# from setuptools import setup
|
|
+#except ImportError:
|
|
+from distutils.core import setup
|
|
from distutils.extension import Extension
|
|
from distutils.command.build_ext import build_ext
|
|
from distutils.ccompiler import get_default_compiler
|