summaryrefslogtreecommitdiff
path: root/math/py-sympy
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-01-23 18:43:11 +0000
committerwiz <wiz@pkgsrc.org>2014-01-23 18:43:11 +0000
commitc39388bfea375457e5ecae08a70ca48c3a51da16 (patch)
treee2f31bcf5ae8eb5ca47b1edd933245f3de874c8b /math/py-sympy
parentef9aec1699b6bde3cca1c047cf20500fa04288ee (diff)
downloadpkgsrc-c39388bfea375457e5ecae08a70ca48c3a51da16.tar.gz
Remove unused patch.
Diffstat (limited to 'math/py-sympy')
-rw-r--r--math/py-sympy/patches/patch-aa17
1 files changed, 0 insertions, 17 deletions
diff --git a/math/py-sympy/patches/patch-aa b/math/py-sympy/patches/patch-aa
deleted file mode 100644
index 3935986b7dd..00000000000
--- a/math/py-sympy/patches/patch-aa
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-aa,v 1.6 2012/12/02 12:33:24 wen Exp $
-Add the python version to the name of script and man file
---- setup.py.orig 2012-12-02 19:33:28.000000000 +0000
-+++ setup.py
-@@ -274,10 +274,10 @@ setup(
- keywords = "Math CAS",
- url = 'http://code.google.com/p/sympy',
- packages = ['sympy'] + modules + tests,
-- scripts = ['bin/isympy'],
-+ scripts = ['bin/isympy' + sys.version[0:3]],
- ext_modules = [],
- package_data = { 'sympy.utilities.mathml' : ['data/*.xsl'] },
-- data_files = [('share/man/man1', ['doc/man/isympy.1'])],
-+ data_files = [('man/man1', ['doc/man/isympy' + sys.version[0:3] + '.1'])],
- cmdclass = {'test': test_sympy,
- 'bench': run_benchmarks,
- 'clean': clean,