[Python-modules-commits] r2164 - in /packages/ipython/trunk/debian: changelog control ipython-lintian irunner.1 manpages rules

bzed-guest at users.alioth.debian.org bzed-guest at users.alioth.debian.org
Tue Apr 24 00:36:03 UTC 2007


Author: bzed-guest
Date: Tue Apr 24 00:36:03 2007
New Revision: 2164

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=2164
Log:
+lintian overrides, +manpage

Added:
    packages/ipython/trunk/debian/irunner.1
    packages/ipython/trunk/debian/manpages
Modified:
    packages/ipython/trunk/debian/changelog
    packages/ipython/trunk/debian/control
    packages/ipython/trunk/debian/ipython-lintian
    packages/ipython/trunk/debian/rules

Modified: packages/ipython/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/ipython/trunk/debian/changelog?rev=2164&op=diff
==============================================================================
--- packages/ipython/trunk/debian/changelog (original)
+++ packages/ipython/trunk/debian/changelog Tue Apr 24 00:36:03 2007
@@ -22,6 +22,7 @@
      - adding the missing identation for Homepage:
      - adding cdbs as Build-Depends
      - adding myself to Uploaders
+     - removing the short description from the long description
   * debian/patches/03_ipy_gnuglobal.dpatch:
      - fix the location of the global binary - we're not on windows
   * debian/rules:
@@ -30,8 +31,9 @@
        modules for 2.5 avaiable now. (Closes: #420134)
   * adding lintian ovverrides for several scripts included in the
     IPython/Extensions directory.
-
- -- Bernd Zeimetz <bernd at bzed.de>  Tue, 24 Apr 2007 01:53:33 +0200
+  * adding a manpage for /usr/bin/irunner
+
+ -- Bernd Zeimetz <bernd at bzed.de>  Tue, 24 Apr 2007 02:35:07 +0200
 
 ipython (0.8.0-1) unstable; urgency=low
 

Modified: packages/ipython/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/ipython/trunk/debian/control?rev=2164&op=diff
==============================================================================
--- packages/ipython/trunk/debian/control (original)
+++ packages/ipython/trunk/debian/control Tue Apr 24 00:36:03 2007
@@ -16,14 +16,13 @@
 Replaces: python2.3-ipython, python2.4-ipython, ipython-common
 Suggests: python-profiler
 Description: enhanced interactive Python shell
- IPython is an enhanced interactive Python shell. It can be used as a
- replacement for the standard Python shell, or it can be used as a
- complete working environment for scientific computing (like Matlab or
- Mathematica) when paired with the standard Python scientific and
- numerical tools. It supports dynamic object introspections, numbered
- input/output prompts, a macro system, session logging, session
- restoring, complete system shell access, verbose and colored traceback
- reports, auto-parentheses, auto-quoting, and is embeddable in other
- Python programs.
+ IPython can be used as a replacement for the standard Python shell,
+ or it can be used as a complete working environment for scientific
+ computing (like Matlab or Mathematica) when paired with the standard
+ Python scientific and numerical tools. It supports dynamic object
+ introspections, numbered input/output prompts, a macro system,
+ session logging, session restoring, complete system shell access,
+ verbose and colored traceback reports, auto-parentheses, auto-quoting,
+ and is embeddable in other Python programs.
  .
   Homepage: http://ipython.scipy.org/

Modified: packages/ipython/trunk/debian/ipython-lintian
URL: http://svn.debian.org/wsvn/python-modules/packages/ipython/trunk/debian/ipython-lintian?rev=2164&op=diff
==============================================================================
--- packages/ipython/trunk/debian/ipython-lintian (original)
+++ packages/ipython/trunk/debian/ipython-lintian Tue Apr 24 00:36:03 2007
@@ -1,5 +1,5 @@
-ipython: script-not-executable ./usr/share/pycentral/ipython/site-packages/IPython/Extensions/ipy_completers.py
-ipython: script-not-executable ./usr/share/pycentral/ipython/site-packages/IPython/Extensions/ipy_gnuglobal.py
-ipython: script-not-executable ./usr/share/pycentral/ipython/site-packages/IPython/Extensions/pickleshare.py
-ipython: script-not-executable ./usr/share/pycentral/ipython/site-packages/IPython/irunner.py
-ipython: script-not-executable ./usr/share/pycentral/ipython/site-packages/IPython/upgrade_dir.py
+ipython: script-not-executable ./usr/share/python-support/ipython/IPython/upgrade_dir.py
+ipython: script-not-executable ./usr/share/python-support/ipython/IPython/Extensions/pickleshare.py
+ipython: script-not-executable ./usr/share/python-support/ipython/IPython/Extensions/ipy_gnuglobal.py
+ipython: script-not-executable ./usr/share/python-support/ipython/IPython/Extensions/ipy_completers.py
+ipython: script-not-executable ./usr/share/python-support/ipython/IPython/irunner.py

Added: packages/ipython/trunk/debian/irunner.1
URL: http://svn.debian.org/wsvn/python-modules/packages/ipython/trunk/debian/irunner.1?rev=2164&op=file
==============================================================================
--- packages/ipython/trunk/debian/irunner.1 (added)
+++ packages/ipython/trunk/debian/irunner.1 Tue Apr 24 00:36:03 2007
@@ -1,0 +1,52 @@
+.TH IRUNNER 1 "April 24, 2007" "" ""
+.SH NAME
+\fBirunner \- interactive runner interface
+.SH SYNOPSIS
+.nf
+.fam C
+\fBirunner\fP [\fIoptions\fP] \fIfile_to_run\fP
+.fam T
+.fi
+.SH DESCRIPTION
+irunner is an interface to the various interactive runners
+available in IPython's \fBirunner\fP module. 
+.PP
+The already implemented runners are listed below; adding
+one for a new program is a trivial task, see the source
+for examples.
+.SH OPTIONS
+.TP
+.B
+\-h, \-\-help
+show this help message and exit
+.TP
+.B
+\-\-ipython
+IPython interactive runner (default).
+.TP
+.B
+\-\-python
+Python interactive runner.
+.TP
+.B
+\-\-sage
+SAGE interactive runner.
+.SH EXAMPLE
+irunner.py \-\-python \-\- \-\-help
+will pass \-\-help to the python runner.
+Similarly,
+irunner.py \-\-ipython \-\- \-\-interact script.ipy
+.SH SEE ALSO
+.BR ipython(1)
+.br
+.SH BUGS
+The SAGE runner only works if you manually configure your SAGE
+copy to use 'colors NoColor' in the ipythonrc config file, since
+currently the prompt matching regexp does not identify color sequences.
+.SH AUTHOR
+\fBirunner\fP is an extension of Ken Schutte <kschutte-AT-csail.mit.edu>'s
+script contributed on the ipython-user list:
+http://scipy.net/pipermail/ipython-user/2006-May/001705.html
+.PP
+This manual page was written by Bernd Zeimetz <bernd at bzed.de>,
+for the Debian project (but may be used by others).

Added: packages/ipython/trunk/debian/manpages
URL: http://svn.debian.org/wsvn/python-modules/packages/ipython/trunk/debian/manpages?rev=2164&op=file
==============================================================================
--- packages/ipython/trunk/debian/manpages (added)
+++ packages/ipython/trunk/debian/manpages Tue Apr 24 00:36:03 2007
@@ -1,0 +1,1 @@
+debian/irunner.1

Modified: packages/ipython/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/ipython/trunk/debian/rules?rev=2164&op=diff
==============================================================================
--- packages/ipython/trunk/debian/rules (original)
+++ packages/ipython/trunk/debian/rules Tue Apr 24 00:36:03 2007
@@ -17,7 +17,7 @@
 	chmod a-x $(CURDIR)/debian/ipython/usr/share/doc/ipython/examples/*
 
 	# add lintian overrides
-	cp $(CURDIR)/debian/ipython-lintian $(CURDIR)/debian/ipython/usr/share/lintian/overrides/
+	cp $(CURDIR)/debian/ipython-lintian $(CURDIR)/debian/ipython/usr/share/lintian/overrides/ipython
 
 	# removing bogus usr/IPython directory
 	rm -rf $(CURDIR)/debian/ipython/usr/IPython




More information about the Python-modules-commits mailing list