Update ipython to 0.11.

ok wcmaier@ (maintainer).
This commit is contained in:
rpointel 2011-09-22 18:42:14 +00:00
parent 453eac5208
commit f630634d36
4 changed files with 1264 additions and 1060 deletions

View File

@ -1,13 +1,12 @@
# $OpenBSD: Makefile,v 1.18 2011/09/16 09:24:51 espie Exp $
# $OpenBSD: Makefile,v 1.19 2011/09/22 18:42:14 rpointel Exp $
COMMENT= enhanced interactive Python shell
MODPY_EGG_VERSION= 0.10
MODPY_EGG_VERSION= 0.11
DISTNAME= ipython-${MODPY_EGG_VERSION}
CATEGORIES= devel
REVISION= 2
HOMEPAGE= http://ipython.scipy.org/moin/
HOMEPAGE= http://ipython.org/
MAINTAINER= Will Maier <wcmaier@openbsd.org>
@ -19,7 +18,7 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= http://ipython.scipy.org/dist/${MODPY_EGG_VERSION}/
MASTER_SITES= ${MASTER_SITE_PYPI:=i/ipython/}
USE_GROFF = Yes
NO_REGRESS= Yes

View File

@ -1,5 +1,5 @@
MD5 (ipython-0.10.tar.gz) = 3RDNG2IsFsGvyiI5/MDf3w==
RMD160 (ipython-0.10.tar.gz) = gZYJKYuwAKoBw69q0nF9kdRuOdg=
SHA1 (ipython-0.10.tar.gz) = F1u6z3TZQzbj/gbjkOBK0r//b9Q=
SHA256 (ipython-0.10.tar.gz) = YNYCY33F8Hiwg6TKWrZDZLqBa9ckOYRAEu0Row+IIow=
SIZE (ipython-0.10.tar.gz) = 5829939
MD5 (ipython-0.11.tar.gz) = 78iZ51KkpKZ6mVdc6hcZ7w==
RMD160 (ipython-0.11.tar.gz) = L5yuWC6KGFBAswzXeiwk7naZsOI=
SHA1 (ipython-0.11.tar.gz) = 5lj0hQK5usWigNNNojIwP/WZ6a8=
SHA256 (ipython-0.11.tar.gz) = AwOuks1CpNBEHTORqfhe+JDZemws84Ky4mvq1cq+P84=
SIZE (ipython-0.11.tar.gz) = 7958871

View File

@ -1,24 +1,28 @@
$OpenBSD: patch-setupbase_py,v 1.1 2008/12/27 15:29:55 fgsch Exp $
--- setupbase.py.orig Sun Sep 14 22:26:16 2008
+++ setupbase.py Mon Dec 15 03:12:11 2008
@@ -188,16 +188,16 @@ def find_data_files():
$OpenBSD: patch-setupbase_py,v 1.2 2011/09/22 18:42:14 rpointel Exp $
--- setupbase.py.orig Sun Jul 31 06:36:48 2011
+++ setupbase.py Fri Sep 16 07:49:37 2011
@@ -202,7 +202,7 @@
"""
docdirbase = 'share/doc/ipython'
- manpagebase = 'share/man/man1'
+ manpagebase = 'man/man1'
docdirbase = pjoin('share', 'doc', 'ipython')
- manpagebase = pjoin('share', 'man', 'man1')
+ manpagebase = pjoin('man', 'man1')
# Simple file lists can be made by hand
- manpages = filter(isfile, glob('docs/man/*.1.gz'))
+ manpages = filter(isfile, glob('docs/man/*.1'))
igridhelpfiles = filter(isfile, glob('IPython/Extensions/igrid_help.*'))
manpages = filter(isfile, glob(pjoin('docs','man','*.1.gz')))
@@ -215,13 +215,13 @@
# For nested structures, use the utility above
example_files = make_dir_struct('data','docs/examples',
- pjoin(docdirbase,'examples'))
- manual_files = make_dir_struct('data','docs/dist',pjoin(docdirbase,'manual'))
+ pjoin('share/examples/ipython'))
+ manual_files = make_dir_struct('data','docs/dist',pjoin(docdirbase))
example_files = make_dir_struct(
'data',
- pjoin('docs','examples'),
+ pjoin('share','examples', 'ipython'),
pjoin(docdirbase,'examples')
)
manual_files = make_dir_struct(
'data',
pjoin('docs','html'),
- pjoin(docdirbase,'manual')
+ pjoin(docdirbase)
)
# And assemble the entire output list
data_files = [ ('data',manpagebase, manpages),

File diff suppressed because it is too large Load Diff