[Bug 206911] lang/python27: readline shared extension fails to compile (/usr/local/lib/libreadline.so.6: Undefined symbol "PC")

2016-02-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206911

w.schwarzenf...@aon.at changed:

   What|Removed |Added

 CC||w.schwarzenf...@aon.at

--- Comment #9 from w.schwarzenf...@aon.at ---
pyton27 means another readline.so
/usr/local/lib/python2.7/lib-dynload/readline.so

I would try reinstall 
devel/py-setuptools27 and  devel/py-pip.


(installs on my 10.2-RELEASE amd64 without problems.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 206911] lang/python27: readline shared extension fails to compile (/usr/local/lib/libreadline.so.6: Undefined symbol "PC")

2016-02-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206911

--- Comment #10 from salvator2...@gmail.com ---
(In reply to w.schwarzenfeld from comment #9)
Thanks w.schwarzenf...@aon.at , it's work

Install clean system - FreeBSD 10.2 - amd64
Configure network interface
Make freebsd-update ( fetch and install )
Make install devel/py-pip and devel/py-setuptools27 ( depend lang/python27 was
installed )
portsnap ports-tree
reinstall 
devel/py-pip
devel/py-setuptools27
lang/python27

installed on FreeBSD-10.2 -amd64 without problem

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 203798] [PATCH] games/py-mnemosyne: Fix runtime error on 9.x

2016-02-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203798

ae...@posteo.de changed:

   What|Removed |Added

 CC||ae...@posteo.de

--- Comment #4 from ae...@posteo.de ---
I have a runtime error on 10.2-RELEASE-p12 too [1].

Could it be fixed by the patch?


[1]

Traceback (innermost last):
  File "/usr/local/bin/mnemosyne", line 191, in 
debug_file=options.debug_file)
  File
"/usr/local/lib/python2.7/site-packages/mnemosyne/libmnemosyne/__init__.py",
line 174, in initialise
self.register_components()
  File
"/usr/local/lib/python2.7/site-packages/mnemosyne/libmnemosyne/__init__.py",
line 244, in register_components
exec("from %s import %s" % (module_name, class_name))
  File "", line 1, in 
  File
"/usr/local/lib/python2.7/site-packages/mnemosyne/pyqt_ui/statistics_wdgts_plotting.py",
line 7, in 
from matplotlib import use
  File "/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py", line
122, in 
from matplotlib.cbook import is_string_like, mplDeprecation, dedent,
get_label
  File "/usr/local/lib/python2.7/site-packages/matplotlib/cbook.py", line 32,
in 
import numpy as np
  File "/usr/local/lib/python2.7/site-packages/numpy/__init__.py", line 180, in

from . import add_newdocs
  File "/usr/local/lib/python2.7/site-packages/numpy/add_newdocs.py", line 13,
in 
from numpy.lib import add_newdoc
  File "/usr/local/lib/python2.7/site-packages/numpy/lib/__init__.py", line 8,
in 
from .type_check import *
  File "/usr/local/lib/python2.7/site-packages/numpy/lib/type_check.py", line
11, in 
import numpy.core.numeric as _nx
  File "/usr/local/lib/python2.7/site-packages/numpy/core/__init__.py", line
14, in 
from . import multiarray
 ImportError: /lib/libgcc_s.so.1: version GCC_4.6.0 required by
/usr/local/lib/gcc48/libgfortran.so.3 not found

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 206911] lang/python27: readline shared extension fails to compile (/usr/local/lib/libreadline.so.6: Undefined symbol "PC")

2016-02-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206911

--- Comment #11 from w.schwarzenf...@aon.at ---
Please close the PR, if it is solved.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 203798] [PATCH] games/py-mnemosyne: Fix runtime error on 9.x

2016-02-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203798

--- Comment #5 from ae...@posteo.de ---
(In reply to aeuii from comment #4)

My current workaround is to start mnemosyne in the following way:

LD_LIBRARY_PATH=/usr/local/lib/gcc48 mnemosyne

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 203798] [PATCH] games/py-mnemosyne: Fix runtime error on 9.x

2016-02-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203798

--- Comment #6 from tkato...@yahoo.com ---
Oh, it seems recent update of math/py-matplotlib affects this port.
I wiil take a look at that ASAP.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 203798] [PATCH] games/py-mnemosyne: Fix runtime error on 9.x

2016-02-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203798

tkato...@yahoo.com changed:

   What|Removed |Added

 Attachment #164009|0   |1
is obsolete||

--- Comment #7 from tkato...@yahoo.com ---
Created attachment 167086
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=167086&action=edit
games_py-mnemosyne.diff

It is certain that passing LD_LIBRARY_PATH of fortran lib is necessary
for all FreeBSD versions.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 203798] [PATCH] games/py-mnemosyne: Fix runtime error

2016-02-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203798

tkato...@yahoo.com changed:

   What|Removed |Added

Summary|[PATCH] games/py-mnemosyne: |[PATCH] games/py-mnemosyne:
   |Fix runtime error on 9.x|Fix runtime error

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 206911] lang/python27: readline shared extension fails to compile (/usr/local/lib/libreadline.so.6: Undefined symbol "PC")

2016-02-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206911

salvator2...@gmail.com changed:

   What|Removed |Added

   Hardware|Any |amd64

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 206911] lang/python27: readline shared extension fails to compile (/usr/local/lib/libreadline.so.6: Undefined symbol "PC")

2016-02-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206911

--- Comment #12 from salvator2...@gmail.com ---
I think discussion can be closed, the problem is solved.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"


[Bug 206911] lang/python27: readline shared extension fails to compile (/usr/local/lib/libreadline.so.6: Undefined symbol "PC")

2016-02-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206911

Kubilay Kocak  changed:

   What|Removed |Added

 Status|New |Open

--- Comment #13 from Kubilay Kocak  ---
(In reply to w.schwarzenfeld from comment #11)

Before we close this issue, what was the root cause?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
___
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"