Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Jul 2016 11:42:51 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 211346] [NEW PORT] devel/py-llvmlite: Lightweight LLVM python binding for writing JIT compilers
Message-ID:  <bug-211346-13-kdLYtAKL0H@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-211346-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-211346-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D211346

--- Comment #12 from David Kalliecharan <dave@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

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-211346-13-kdLYtAKL0H>