update to ipython 0.7.2
from maintainer Will Maier
This commit is contained in:
parent
4e159a33aa
commit
c9fa958a0c
@ -1,9 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.2 2006/06/03 12:23:41 steven Exp $
|
||||
# $OpenBSD: Makefile,v 1.3 2006/06/08 14:38:01 steven Exp $
|
||||
|
||||
COMMENT= "enhanced interactive Python shell"
|
||||
|
||||
DISTNAME= ipython-0.7.1.fix1
|
||||
PKGNAME= ipython-0.7.1.1p0
|
||||
DISTNAME= ipython-0.7.2
|
||||
CATEGORIES= devel
|
||||
|
||||
HOMEPAGE= http://ipython.scipy.org/
|
||||
@ -22,15 +21,14 @@ MASTER_SITES= http://ipython.scipy.org/dist/
|
||||
|
||||
NO_REGRESS= Yes
|
||||
|
||||
RUN_DEPENDS= ::devel/py-pexpect
|
||||
|
||||
DOC_DIR= ${PREFIX}/share/doc/ipython
|
||||
EXAMPLE_DIR= ${PREFIX}/share/examples/ipython
|
||||
|
||||
post-extract:
|
||||
@cd ${WRKSRC}/doc && gunzip *.1.gz
|
||||
|
||||
pre-install:
|
||||
@rm -f ${WRKSRC}/IPython/UserConfig/*.orig
|
||||
|
||||
post-install:
|
||||
${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${PREFIX}/man/man1
|
||||
${INSTALL_DATA_DIR} ${DOC_DIR}
|
||||
|
@ -1,4 +1,4 @@
|
||||
MD5 (ipython-0.7.1.fix1.tar.gz) = f3a23ea23e68736e6a8f823be70bfacf
|
||||
RMD160 (ipython-0.7.1.fix1.tar.gz) = 1e132a20bf0b45b44028a937b8ee330101683586
|
||||
SHA1 (ipython-0.7.1.fix1.tar.gz) = b5cf94d6cd557f471ad5759ab526b1c56b5bf466
|
||||
SIZE (ipython-0.7.1.fix1.tar.gz) = 949931
|
||||
MD5 (ipython-0.7.2.tar.gz) = 3565efcf87c7318c1a3930e278ac9fa5
|
||||
RMD160 (ipython-0.7.2.tar.gz) = d0c324cde16b092b1443e60d174d950e11dcbebd
|
||||
SHA1 (ipython-0.7.2.tar.gz) = fe73fd5f78c997258ab41d6621a6be25bc2a697e
|
||||
SIZE (ipython-0.7.2.tar.gz) = 1085704
|
||||
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-IPython_UserConfig_ipy_user_conf_py,v 1.1.1.1 2006/05/28 21:59:20 steven Exp $
|
||||
--- IPython/UserConfig/ipy_user_conf.py.orig Sun May 28 15:35:14 2006
|
||||
+++ IPython/UserConfig/ipy_user_conf.py Sun May 28 15:35:32 2006
|
||||
@@ -36,7 +36,7 @@ if o.profile == 'pysh':
|
||||
|
||||
# make 'd' an alias for ls -F
|
||||
|
||||
-ip.magic('alias d ls -F --color=auto')
|
||||
+ip.magic('alias d ls -F')
|
||||
|
||||
# Make available all system commands through "rehashing" immediately.
|
||||
# You can comment these lines out to speed up startup on very slow
|
@ -1,24 +1,21 @@
|
||||
$OpenBSD: patch-IPython_iplib_py,v 1.1.1.1 2006/05/28 21:59:20 steven Exp $
|
||||
--- IPython/iplib.py.orig Mon Jan 30 07:34:22 2006
|
||||
+++ IPython/iplib.py Sun May 28 15:49:04 2006
|
||||
@@ -576,15 +576,15 @@ class InteractiveShell(object,Magic):
|
||||
# long ls
|
||||
'll ls -lF',
|
||||
# color ls
|
||||
- 'lc ls -F -o --color',
|
||||
+ #'lc ls -F -o --color',
|
||||
# ls normal files only
|
||||
- 'lf ls -F -o --color %l | grep ^-',
|
||||
+ 'lf ls -F -l %l | grep ^-',
|
||||
# ls symbolic links
|
||||
- 'lk ls -F -o --color %l | grep ^l',
|
||||
+ 'lk ls -F -l %l | grep ^l',
|
||||
# directories or links to directories,
|
||||
- 'ldir ls -F -o --color %l | grep /$',
|
||||
+ 'ldir ls -F -l %l | grep /$',
|
||||
# things which are executable
|
||||
- 'lx ls -F -o --color %l | grep ^-..x',
|
||||
+ 'lx ls -F -l %l | grep *$',
|
||||
)
|
||||
$OpenBSD: patch-IPython_iplib_py,v 1.2 2006/06/08 14:38:01 steven Exp $
|
||||
--- IPython/iplib.py.orig Mon Jun 5 12:03:22 2006
|
||||
+++ IPython/iplib.py Thu Jun 8 07:16:12 2006
|
||||
@@ -566,13 +566,13 @@ class InteractiveShell(object,Magic):
|
||||
# --color switch out of the box
|
||||
if 'bsd' in sys.platform:
|
||||
ls_extra = ( # ls normal files only
|
||||
- 'lf ls -F -o %l | grep ^-',
|
||||
+ 'lf ls -lF -o %l | grep ^-',
|
||||
# ls symbolic links
|
||||
- 'lk ls -F -o %l | grep ^l',
|
||||
+ 'lk ls -lF -o %l | grep ^l',
|
||||
# directories or links to directories,
|
||||
- 'ldir ls -F -o %l | grep /$',
|
||||
+ 'ldir ls -lF -o %l | grep /$',
|
||||
# things which are executable
|
||||
- 'lx ls -F -o %l | grep ^-..x',
|
||||
+ 'lx ls -lF -o %l | grep *$',
|
||||
)
|
||||
auto_alias = auto_alias + ls_extra
|
||||
elif os.name in ['nt','dos']:
|
||||
auto_alias = ('dir dir /on', 'ls dir /on',
|
||||
|
@ -1,16 +1,18 @@
|
||||
$OpenBSD: patch-setup_py,v 1.1.1.1 2006/05/28 21:59:20 steven Exp $
|
||||
--- setup.py.orig Sun Jan 22 02:14:10 2006
|
||||
+++ setup.py Sun May 28 15:32:47 2006
|
||||
@@ -140,11 +140,5 @@ setup(name = name,
|
||||
packages = ['IPython', 'IPython.Extensions'],
|
||||
scripts = scriptfiles,
|
||||
cmdclass = {'install_data': install_data_ext},
|
||||
- data_files = [('data', docdirbase, docfiles),
|
||||
$OpenBSD: patch-setup_py,v 1.2 2006/06/08 14:38:01 steven Exp $
|
||||
--- setup.py.orig Wed Jun 7 11:00:19 2006
|
||||
+++ setup.py Wed Jun 7 11:01:22 2006
|
||||
@@ -126,13 +126,7 @@ if 'bdist_wininst' in sys.argv:
|
||||
sys.exit(1)
|
||||
scriptfiles.append('scripts/ipython_win_post_install.py')
|
||||
|
||||
-datafiles = [('data', docdirbase, docfiles),
|
||||
- ('data', os.path.join(docdirbase, 'examples'),
|
||||
- examfiles),
|
||||
- ('data', os.path.join(docdirbase, 'manual'),
|
||||
- manfiles),
|
||||
- ('data', manpagebase, manpages),
|
||||
- ('lib', 'IPython/UserConfig', cfgfiles)]
|
||||
+ data_files = [('lib', 'IPython/UserConfig', cfgfiles)]
|
||||
)
|
||||
+datafiles = [('lib', 'IPython/UserConfig', cfgfiles),]
|
||||
|
||||
if 'setuptools' in sys.modules:
|
||||
# setuptools config for egg building
|
||||
|
@ -1,5 +1,6 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2006/05/28 21:59:20 steven Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.2 2006/06/08 14:38:01 steven Exp $
|
||||
bin/ipython
|
||||
bin/irunner
|
||||
bin/pycolor
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/ColorANSI.py
|
||||
@ -23,12 +24,32 @@ lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/PhysicalQInteractive
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/PhysicalQInteractive.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/__init__.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/__init__.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/astyle.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/astyle.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/clearcmd.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/clearcmd.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/ext_rehashdir.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/ext_rehashdir.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/ext_rescapture.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/ext_rescapture.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/ibrowse.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/ibrowse.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/ipipe.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/ipipe.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/ipy_defaults.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/ipy_defaults.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/ipy_system_conf.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/ipy_system_conf.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/numeric_formats.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/numeric_formats.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/path.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/path.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/pickleshare.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/pickleshare.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/pspersistence.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/pspersistence.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/win32clip.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Extensions/win32clip.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/FakeModule.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/FakeModule.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Gnuplot2.py
|
||||
@ -56,6 +77,7 @@ lib/python${MODPY_VERSION}/site-packages/IPython/Release.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Shell.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/Shell.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/UserConfig/
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/UserConfig/ipy_profile_sh.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/UserConfig/ipy_user_conf.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/UserConfig/ipythonrc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/UserConfig/ipythonrc-math
|
||||
@ -88,12 +110,12 @@ lib/python${MODPY_VERSION}/site-packages/IPython/ipmaker.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/ipmaker.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/ipstruct.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/ipstruct.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/irunner.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/irunner.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/macro.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/macro.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/numutils.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/numutils.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/path.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/path.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/platutils.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/platutils.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/platutils_dummy.py
|
||||
@ -102,8 +124,12 @@ lib/python${MODPY_VERSION}/site-packages/IPython/platutils_posix.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/platutils_posix.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/platutils_win32.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/platutils_win32.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/rlineimpl.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/rlineimpl.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/ultraTB.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/ultraTB.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/upgrade_dir.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/upgrade_dir.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/usage.py
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/usage.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/IPython/wildcard.py
|
||||
|
Loading…
Reference in New Issue
Block a user