summaryrefslogtreecommitdiff
path: root/devel/ipython/files/patch-setupbase.py
diff options
context:
space:
mode:
authorJimmy Olgeni <olgeni@FreeBSD.org>2014-05-22 21:05:22 +0000
committerJimmy Olgeni <olgeni@FreeBSD.org>2014-05-22 21:05:22 +0000
commite5bb7dfcaa6d1110498ce7ba49740d3a76fe868c (patch)
treeb014d83aa7fe0e42f9d25bbd04f04c51d2e3caae /devel/ipython/files/patch-setupbase.py
parent- Use PYDISTUTILS_AUTOPLIST. (diff)
Upgrade to version 2.1.0.
Diffstat (limited to 'devel/ipython/files/patch-setupbase.py')
-rw-r--r--devel/ipython/files/patch-setupbase.py12
1 files changed, 2 insertions, 10 deletions
diff --git a/devel/ipython/files/patch-setupbase.py b/devel/ipython/files/patch-setupbase.py
index c3446a790af2..b31efb92eb07 100644
--- a/devel/ipython/files/patch-setupbase.py
+++ b/devel/ipython/files/patch-setupbase.py
@@ -3,20 +3,12 @@ $FreeBSD$
--- setupbase.py.orig
+++ setupbase.py
-@@ -208,7 +208,7 @@
+@@ -272,7 +272,7 @@
+ Just man pages at this point.
"""
- docdirbase = pjoin('share', 'doc', 'ipython')
- manpagebase = pjoin('share', 'man', 'man1')
+ manpagebase = pjoin('man', 'man1')
# Simple file lists can be made by hand
manpages = [f for f in glob(pjoin('docs','man','*.1.gz')) if isfile(f)]
-@@ -232,7 +232,6 @@
-
- # And assemble the entire output list
- data_files = [ (manpagebase, manpages),
-- (pjoin(docdirbase, 'extensions'), igridhelpfiles),
- ] + manual_files + example_files
-
- return data_files