summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorwiz <wiz>2014-01-23 18:43:11 +0000
committerwiz <wiz>2014-01-23 18:43:11 +0000
commit75b3961ec4beb60057d6d2af71229101cb82d031 (patch)
treee2f31bcf5ae8eb5ca47b1edd933245f3de874c8b /math
parent5f3ff625a73c4a06b3da30151ad9db5b6a0753fa (diff)
downloadpkgsrc-75b3961ec4beb60057d6d2af71229101cb82d031.tar.gz
Remove unused patch.
Diffstat (limited to 'math')
-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,