diff options
author | Yi-Jheng Lin <yzlin@FreeBSD.org> | 2010-03-09 13:40:33 +0000 |
---|---|---|
committer | Yi-Jheng Lin <yzlin@FreeBSD.org> | 2010-03-09 13:40:33 +0000 |
commit | 8f77fcdf2c635356855a1155904f205674abb8a9 (patch) | |
tree | 7961340d9d80fd4cf472344a94c35d211d05ec90 /devel/bpython/files/patch-setup.py | |
parent | Remove unneeded -lcompat. (diff) |
Add bpython-0.9.6.2, bpython is a fancy interface to the Python
interpreter for Unix-like operating systems.
Approved by: lwhsu/rafan (mentors, implicit)
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=250768
Diffstat (limited to 'devel/bpython/files/patch-setup.py')
-rw-r--r-- | devel/bpython/files/patch-setup.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/devel/bpython/files/patch-setup.py b/devel/bpython/files/patch-setup.py new file mode 100644 index 000000000000..59840f704558 --- /dev/null +++ b/devel/bpython/files/patch-setup.py @@ -0,0 +1,19 @@ + +$FreeBSD$ + +--- setup.py.orig ++++ setup.py +@@ -37,13 +37,8 @@ + url = "http://www.bpython-interpreter.org/", + long_description = """bpython is a fancy interface to the Python + interpreter for Unix-like operating systems.""", +- install_requires = [ +- 'pygments' +- ], + packages = ["bpython"], + data_files = [ +- (os.path.join(man_dir, 'man1'), ['doc/bpython.1']), +- (os.path.join(man_dir, 'man5'), ['doc/bpython-config.5']), + ('share/applications', ['data/bpython.desktop']) + ], + package_data = {'bpython': ['logo.png']}, |