Re: [Discuss-gnuradio] Status of GNU Radio on Mac OS X

2011-09-26 Thread Tom Rondeau
On Sun, Sep 25, 2011 at 10:13 PM, Ben Reynwar b...@reynwar.net wrote:

 On Sun, Sep 25, 2011 at 5:54 PM, Michael Dickens m...@alum.mit.edu wrote:
  On Sep 25, 2011, at 8:39 PM, Ben Reynwar wrote:
  It wasn't that python2.5 didn't work, rather that macports didn't
  attempt to install gnuradio for that version.  Instead it installed
  python2.6 and setup gnuradio for that.  I've never messed about with
  macports scripts so I don't know why that might happen.
 
 
  If you do port info gnuradio, you'll see:
 
   gnuradio @3.3.0 (science)
   Variants: docs, python25, [+]python26, python27
 
  which means that if you do sudo port install gnuradio -- install with
 default variants -- then it will do so for use with Python 2.6.  If you want
 to use gnuradio with Python 2.5, then you'll want to do sudo port install
 gnuradio +python25.
 
  Hope that helps  makes sense. - MLD
 
 

 Makes sense.  I didn't know about that.



Great. Thanks again Michael!

Tom
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Status of GNU Radio on Mac OS X

2011-09-25 Thread Ben Reynwar
I tried this out, and it almost worked perfectly.

Two things needed fiddling:

Gnuradio and most of the python dependencies were installed for
python2.6.  My default was 2.5 so I had to switch to using the 2.6
version installed by macports.

Most of the python dependencies were installed to:
  /opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/

The gnuradio python stuff was installed to:
  /opt/local/lib/python2.6/site-packages
which was not on the python-path and had to be added manually.

On Fri, Sep 23, 2011 at 11:57 AM, Michael Dickens m...@alum.mit.edu wrote:
 If you use MacPorts under Mac OS X 10.5, .6, or .7, sudo port install 
 gnuradio should work as of this morning for installing all of the background 
 dependencies (and, version GR 3.3.0 from the tarball if that's good enough).  
 I had to fix SDCC 2.9 to work under 10.7, as well as tweak GNU Radio 3.3.0 
 tarball's configure script to correctly set the MD_CPU types under 10.7 (just 
 like when 10.6 came out).  It looks like the MD_CPU issue has been fixed 
 since the 3.3.0 release, as the current GIT master seems to build cleanly and 
 make check (as correctly as possible) on 10.7 (64 bit) with no changes (and 
 with Volk disabled).  The UDP QA code doesn't work any better on 10.7 than on 
 10.6.  I think the primary OSX issue right now is setting the audio input 
 device sample rate using using it as an audio source.  There are a few of us 
 looking into this issue as time allows; hopefully nobody is truly dependent 
 on this feature when using OSX. - MLD


 ___
 Discuss-gnuradio mailing list
 Discuss-gnuradio@gnu.org
 https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Status of GNU Radio on Mac OS X

2011-09-25 Thread Tom Rondeau
On Sun, Sep 25, 2011 at 11:15 AM, Ben Reynwar b...@reynwar.net wrote:

 I tried this out, and it almost worked perfectly.

 Two things needed fiddling:

 Gnuradio and most of the python dependencies were installed for
 python2.6.  My default was 2.5 so I had to switch to using the 2.6
 version installed by macports.


Thanks for the report. Did you see where Python 2.5 failed to work? We're
supposed to be compatible with it, so if it's stuff we can fix to make it
compatible again, we will.

Tom



 Most of the python dependencies were installed to:
  /opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/

 The gnuradio python stuff was installed to:
  /opt/local/lib/python2.6/site-packages
 which was not on the python-path and had to be added manually.

 On Fri, Sep 23, 2011 at 11:57 AM, Michael Dickens m...@alum.mit.edu
 wrote:
  If you use MacPorts under Mac OS X 10.5, .6, or .7, sudo port install
 gnuradio should work as of this morning for installing all of the
 background dependencies (and, version GR 3.3.0 from the tarball if that's
 good enough).  I had to fix SDCC 2.9 to work under 10.7, as well as tweak
 GNU Radio 3.3.0 tarball's configure script to correctly set the MD_CPU types
 under 10.7 (just like when 10.6 came out).  It looks like the MD_CPU issue
 has been fixed since the 3.3.0 release, as the current GIT master seems to
 build cleanly and make check (as correctly as possible) on 10.7 (64 bit)
 with no changes (and with Volk disabled).  The UDP QA code doesn't work any
 better on 10.7 than on 10.6.  I think the primary OSX issue right now is
 setting the audio input device sample rate using using it as an audio
 source.  There are a few of us looking into this issue as time allows;
 hopefully nobody is truly dependent on this feature when using OSX. - MLD
 
 
  ___
  Discuss-gnuradio mailing list
  Discuss-gnuradio@gnu.org
  https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
 

 ___
 Discuss-gnuradio mailing list
 Discuss-gnuradio@gnu.org
 https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Status of GNU Radio on Mac OS X

2011-09-25 Thread Ben Reynwar
It wasn't that python2.5 didn't work, rather that macports didn't
attempt to install gnuradio for that version.  Instead it installed
python2.6 and setup gnuradio for that.  I've never messed about with
macports scripts so I don't know why that might happen.

On Sun, Sep 25, 2011 at 3:42 PM, Tom Rondeau trondeau1...@gmail.com wrote:
 On Sun, Sep 25, 2011 at 11:15 AM, Ben Reynwar b...@reynwar.net wrote:

 I tried this out, and it almost worked perfectly.

 Two things needed fiddling:

 Gnuradio and most of the python dependencies were installed for
 python2.6.  My default was 2.5 so I had to switch to using the 2.6
 version installed by macports.

 Thanks for the report. Did you see where Python 2.5 failed to work? We're
 supposed to be compatible with it, so if it's stuff we can fix to make it
 compatible again, we will.
 Tom


 Most of the python dependencies were installed to:

  /opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/

 The gnuradio python stuff was installed to:
  /opt/local/lib/python2.6/site-packages
 which was not on the python-path and had to be added manually.

 On Fri, Sep 23, 2011 at 11:57 AM, Michael Dickens m...@alum.mit.edu
 wrote:
  If you use MacPorts under Mac OS X 10.5, .6, or .7, sudo port install
  gnuradio should work as of this morning for installing all of the
  background dependencies (and, version GR 3.3.0 from the tarball if that's
  good enough).  I had to fix SDCC 2.9 to work under 10.7, as well as tweak
  GNU Radio 3.3.0 tarball's configure script to correctly set the MD_CPU 
  types
  under 10.7 (just like when 10.6 came out).  It looks like the MD_CPU issue
  has been fixed since the 3.3.0 release, as the current GIT master seems to
  build cleanly and make check (as correctly as possible) on 10.7 (64 bit)
  with no changes (and with Volk disabled).  The UDP QA code doesn't work any
  better on 10.7 than on 10.6.  I think the primary OSX issue right now is
  setting the audio input device sample rate using using it as an audio
  source.  There are a few of us looking into this issue as time allows;
  hopefully nobody is truly dependent on this feature when using OSX. - MLD
 
 
  ___
  Discuss-gnuradio mailing list
  Discuss-gnuradio@gnu.org
  https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
 

 ___
 Discuss-gnuradio mailing list
 Discuss-gnuradio@gnu.org
 https://lists.gnu.org/mailman/listinfo/discuss-gnuradio



___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Status of GNU Radio on Mac OS X

2011-09-25 Thread Michael Dickens
On Sep 25, 2011, at 8:39 PM, Ben Reynwar wrote:
 It wasn't that python2.5 didn't work, rather that macports didn't
 attempt to install gnuradio for that version.  Instead it installed
 python2.6 and setup gnuradio for that.  I've never messed about with
 macports scripts so I don't know why that might happen.


If you do port info gnuradio, you'll see:

  gnuradio @3.3.0 (science)
  Variants: docs, python25, [+]python26, python27

which means that if you do sudo port install gnuradio -- install with default 
variants -- then it will do so for use with Python 2.6.  If you want to use 
gnuradio with Python 2.5, then you'll want to do sudo port install gnuradio 
+python25.

Hope that helps  makes sense. - MLD


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Status of GNU Radio on Mac OS X

2011-09-25 Thread Ben Reynwar
On Sun, Sep 25, 2011 at 5:54 PM, Michael Dickens m...@alum.mit.edu wrote:
 On Sep 25, 2011, at 8:39 PM, Ben Reynwar wrote:
 It wasn't that python2.5 didn't work, rather that macports didn't
 attempt to install gnuradio for that version.  Instead it installed
 python2.6 and setup gnuradio for that.  I've never messed about with
 macports scripts so I don't know why that might happen.


 If you do port info gnuradio, you'll see:

  gnuradio @3.3.0 (science)
  Variants: docs, python25, [+]python26, python27

 which means that if you do sudo port install gnuradio -- install with 
 default variants -- then it will do so for use with Python 2.6.  If you want 
 to use gnuradio with Python 2.5, then you'll want to do sudo port install 
 gnuradio +python25.

 Hope that helps  makes sense. - MLD



Makes sense.  I didn't know about that.

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] Status of GNU Radio on Mac OS X

2011-09-23 Thread Michael Dickens
If you use MacPorts under Mac OS X 10.5, .6, or .7, sudo port install 
gnuradio should work as of this morning for installing all of the background 
dependencies (and, version GR 3.3.0 from the tarball if that's good enough).  I 
had to fix SDCC 2.9 to work under 10.7, as well as tweak GNU Radio 3.3.0 
tarball's configure script to correctly set the MD_CPU types under 10.7 (just 
like when 10.6 came out).  It looks like the MD_CPU issue has been fixed since 
the 3.3.0 release, as the current GIT master seems to build cleanly and make 
check (as correctly as possible) on 10.7 (64 bit) with no changes (and with 
Volk disabled).  The UDP QA code doesn't work any better on 10.7 than on 10.6.  
I think the primary OSX issue right now is setting the audio input device 
sample rate using using it as an audio source.  There are a few of us looking 
into this issue as time allows; hopefully nobody is truly dependent on this 
feature when using OSX. - MLD


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Status of GNU Radio on Mac OS X

2011-09-23 Thread Tom Rondeau
On Fri, Sep 23, 2011 at 2:57 PM, Michael Dickens m...@alum.mit.edu wrote:

 If you use MacPorts under Mac OS X 10.5, .6, or .7, sudo port install
 gnuradio should work as of this morning for installing all of the
 background dependencies (and, version GR 3.3.0 from the tarball if that's
 good enough).  I had to fix SDCC 2.9 to work under 10.7, as well as tweak
 GNU Radio 3.3.0 tarball's configure script to correctly set the MD_CPU types
 under 10.7 (just like when 10.6 came out).  It looks like the MD_CPU issue
 has been fixed since the 3.3.0 release, as the current GIT master seems to
 build cleanly and make check (as correctly as possible) on 10.7 (64 bit)
 with no changes (and with Volk disabled).  The UDP QA code doesn't work any
 better on 10.7 than on 10.6.  I think the primary OSX issue right now is
 setting the audio input device sample rate using using it as an audio
 source.  There are a few of us looking into this issue as time allows;
 hopefully nobody is truly dependent on this feature when using OSX. - MLD


Thanks Michael!

Tom
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Status of GNU Radio on Mac OS X

2011-09-23 Thread Robert McGwier
Awesome
On Sep 23, 2011 5:31 PM, Tom Rondeau trondeau1...@gmail.com wrote:
 On Fri, Sep 23, 2011 at 2:57 PM, Michael Dickens m...@alum.mit.edu wrote:

 If you use MacPorts under Mac OS X 10.5, .6, or .7, sudo port install
 gnuradio should work as of this morning for installing all of the
 background dependencies (and, version GR 3.3.0 from the tarball if that's
 good enough). I had to fix SDCC 2.9 to work under 10.7, as well as tweak
 GNU Radio 3.3.0 tarball's configure script to correctly set the MD_CPU
types
 under 10.7 (just like when 10.6 came out). It looks like the MD_CPU issue
 has been fixed since the 3.3.0 release, as the current GIT master seems
to
 build cleanly and make check (as correctly as possible) on 10.7 (64 bit)
 with no changes (and with Volk disabled). The UDP QA code doesn't work
any
 better on 10.7 than on 10.6. I think the primary OSX issue right now is
 setting the audio input device sample rate using using it as an audio
 source. There are a few of us looking into this issue as time allows;
 hopefully nobody is truly dependent on this feature when using OSX. - MLD


 Thanks Michael!

 Tom
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio