Doc cleanup
authorjcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5>
Sat, 23 May 2009 22:26:03 +0000 (22:26 +0000)
committerjcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5>
Sat, 23 May 2009 22:26:03 +0000 (22:26 +0000)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11106 221aa14e-8319-0410-a670-987f0aec2ac5

NEWS
README
README.hacking

diff --git a/NEWS b/NEWS
index 5f6eaa6a72ad1d9e728c06a41f80997f0f71fb61..8bb9e275796b0dc3b0dd6c8cd9edff3ec024fd13 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,5 @@
 #
-# Copyright 2006 Free Software Foundation, Inc.
+# Copyright 2009 Free Software Foundation, Inc.
 # 
 # This file is part of GNU Radio
 # 
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 #
 
-changes in gnuradio-3.0rc1 relative to gnuradio-core-2.8 and related tarballs:
-
-* We moved the source code repository from CVS on savannah.gnu.org to
-  subversion on gnuradio.org
-* The build system was restructured such that there is now a single
-  top-level configure.  See ./configure --help for details.  All
-  top-level components may be required or excluded via configure
-  options.  By default configure includes all components for which the
-  dependencies are satisifed.
-* There is now uniform handling for a variety of digital modulations
-  and demodulations including gmsk, dbpsk and dqpsk.
-* dbpsk and dqpsk now work!  dqpsk still has a higher error-rate than
-  it should.
-* gr-radio-astronomy now has very cool code for observing pulsars!
-* gr-trellis: new module implementing a variety of forward error
-correction techniques.  See gnuradio-examples/python/channel-coding
-* gnuradio-core, usrp and gr-usrp now build and run under Cygwin.
-* Fixed 52 bugs
+See http://gnuradio.org for the latest information about this software.
diff --git a/README b/README
index 2f7e7229aa14f79bae3b3507c5145701ed1661f3..6eeb0fe8ae68be216bda4dbe7d64e3f88f561db9 100644 (file)
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
 #
-# Copyright 2001,2002,2003,2004,2005,2006,2007 Free Software Foundation, Inc.
+# Copyright 2001,2002,2003,2004,2005,2006,2007,2009 Free Software Foundation, Inc.
 # 
 # This file is part of GNU Radio
 # 
@@ -159,12 +159,11 @@ In systems using pkgsrc, install math/fftwf, which provides the
 single-precision libraries.
 
 
-(4) Python 2.3 or later              http://www.python.org
+(4) Python 2.5 or later              http://www.python.org
 
-Python 2.3 or later is now required.  If your system splits
+Python 2.5 or later is now required.  If your system splits
 python into a bunch of separate packages including python-devel or
-libpython you'll most likely need those too. The GNU Radio Companion 
-application requires Python 2.5 or later.
+libpython you'll most likely need those too.
 
 
 (5) Numpy python library   http://numeric.scipy.org
@@ -199,10 +198,12 @@ This includes a C compiler and linker for the 8051.  It's required to
 build the firmware for the USRP.  If you don't have a USRP, don't
 worry about it.
 
+
 (10) Guile 1.6 or 1.8 
 
 Scheme interpreter.  http://www.gnu.org/software/guile/guile.html
 
+
 (11) GNU Scientific Library (gsl) 1.10 or later
 
 The GNU Radio core library uses some routines from here.
@@ -211,7 +212,7 @@ The GNU Radio core library uses some routines from here.
 Optional, but nice to have:
 
 (12) wxPython.  Python binding for the wxWidgets GUI framework.  Use
-version 2.5.2.7 or later.  Again, almost all systems have this
+version 2.8 or later.  Again, almost all systems have this
 available.
 
 As a last resort, build it from source (not recommended!)
@@ -230,9 +231,8 @@ to be installed.
 
 ----------------------------------------------------------------
 
-If you've got doxygen installed and provide the --enable-doxygen
-configure option, the build process creates documentation for the
-class hierarchy etc.  Point your browser at
+If you've got doxygen installed, the build process creates 
+documentation for the class hierarchy etc.  Point your browser at
 gnuradio/gnuradio-core/doc/html/index.html
 
 
@@ -240,7 +240,7 @@ To run the examples you may need to set PYTHONPATH.  Note that the
 prefix and python version number in the path needs to match your
 installed version of python.
 
-  $ export PYTHONPATH=/usr/local/lib/python2.4/site-packages
+  $ export PYTHONPATH=/usr/local/lib/python2.5/site-packages
 
 You may want to add this to your shell init file (~/.bash_profile if
 you use bash).
index 204d07f7c6439755ca43a391d883533e7994eeda..ff01a0a539e40c52853f2b4120f12a403e3ce1a2 100644 (file)
@@ -1,6 +1,6 @@
 # -*- Outline -*-
 #
-# Copyright 2004,2007,2008 Free Software Foundation, Inc.
+# Copyright 2004,2007,2008,2009 Free Software Foundation, Inc.
 # 
 # This file is part of GNU Radio
 # 
@@ -41,9 +41,6 @@ GNU Radio is now a hybrid system.  Some parts of the system are built
 in C++ and some of it in Python.  In general, prefer Python to C++.
 Signal processing primitives are still built in C++ for performance.
 
-It is no longer possible to build user applications entirely in C++.
-Essential parts of the runtime system have been moved into Python.
-
 
 * C++ namespaces