[Bug 211346] [NEW PORT] devel/py-llvmlite: Lightweight LLVM python binding for writing JIT compilers

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Tue Jul 26 11:42:51 UTC 2016


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211346

--- Comment #12 from David Kalliecharan <dave at dal.ca> ---
(In reply to Kubilay Kocak from comment #11)
Regarding the RUN_DEPENDS

Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "setup.py", line 24, in <module>
    from llvmlite.utils import get_library_files
  File "llvmlite/__init__.py", line 6, in <module>
    raise ImportError("could not find the 'enum' module; please install "
ImportError: could not find the 'enum' module; please install it using e.g.
'pip install enum34'
*** Error code 1

If you look at __init__.py one finds

try:
    import enum
except ImportError:
    raise ImportError("could not find the 'enum' module; please install "
"it using e.g. 'pip install enum34'")

which is part of Fix 18
Fix #18: give a better error message when enum34 is missing

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list