discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] Packaging GNU Radio for Fedora


From: Eric Blossom
Subject: Re: [Discuss-gnuradio] Packaging GNU Radio for Fedora
Date: Tue, 6 Mar 2007 17:56:10 -0800
User-agent: Mutt/1.5.9i

On Tue, Mar 06, 2007 at 01:38:51PM +0100, Trond Danielsen wrote:
> Hi,
> 
> 2. Install path for some of the python modules are problematic:
>   /usr/lib64/python2.4/site-packages/__init__.py
>   /usr/lib64/python2.4/site-packages/_usrp_prims.la
>   /usr/lib64/python2.4/site-packages/_usrp_prims.so
>   /usr/lib64/python2.4/site-packages/usrp_dbid.py
>   /usr/lib64/python2.4/site-packages/usrp_fpga_regs.py
>   /usr/lib64/python2.4/site-packages/usrp_prims.py
> 
> Would it be possible to move these to a separate subfolder?
> 
> Cheers,
> -- 
> Trond Danielsen

In [4728] on the trunk, I moved these to site-packages/usrpm.

This change could impact user code that's not in the tree.
In particular, any occurrences of any of:

  import usrp_dbid
  import usrp_prims
  from usrp_fpga_regs import *

should be changed to:

  from usrpm import usrp_dbid
  from usrpm import usrp_prims
  from usrpm.usrp_fpga_regs import *

respectively.


Sorry about the incompatible change, but this does clean up our
installation. 

Thanks,
Eric




reply via email to

[Prev in Thread] Current Thread [Next in Thread]