Show
Ignore:
Timestamp:
01/24/20 01:45:11 (5 years ago)
Author:
quentin
Message:

Upgrade to Python 3-compatible PyHesiod

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ports/python/py-hesiod/files/patch-setup.py

    r205 r213  
    22+++ setup.py    2012-02-24 01:48:19.000000000 -0500 
    33@@ -17,6 +17,8 @@ 
    4      ext_modules=
     4     ext_modules=cythonize(
    55         Extension("_hesiod", 
    66                   ["_hesiod.pyx"], 
    77+                  include_dirs=['__PREFIX__/include'], 
    88+                  library_dirs=['__PREFIX__/lib'], 
    9                    libraries=["hesiod"]) 
    10          ]
    11      cmdclass= {"build_ext": build_ext} 
     9                   libraries=["hesiod"]), 
     10     ])
     11 )