diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-16 15:41:28 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-05-16 17:56:57 +0200 |
commit | 8f7160e545c10bf5596c91968d0e71caec162596 (patch) | |
tree | fe3142a2dc744f10f34ad903fc6971958ddb82a6 /dev-python/notebook/files | |
parent | dev-python/widgetsnbextension: Drop old (diff) | |
download | gentoo-8f7160e545c10bf5596c91968d0e71caec162596.tar.gz gentoo-8f7160e545c10bf5596c91968d0e71caec162596.tar.bz2 gentoo-8f7160e545c10bf5596c91968d0e71caec162596.zip |
dev-python/notebook: Drop old
Package-Manager: Portage-2.3.36, Repoman-2.3.9
Diffstat (limited to 'dev-python/notebook/files')
-rw-r--r-- | dev-python/notebook/files/notebook-4.2.0-setupbase.py.patch | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-python/notebook/files/notebook-4.2.0-setupbase.py.patch b/dev-python/notebook/files/notebook-4.2.0-setupbase.py.patch deleted file mode 100644 index a4c29048b925..000000000000 --- a/dev-python/notebook/files/notebook-4.2.0-setupbase.py.patch +++ /dev/null @@ -1,42 +0,0 @@ -Disable bundled mathjax. - -Patch by Marius Brehler ---- a/setupbase.py -+++ b/setupbase.py -@@ -152,36 +152,6 @@ def find_package_data(): - if f.endswith(('.js', '.css')): - static_data.append(pjoin(parent, f)) - -- # Trim mathjax -- mj = lambda *path: pjoin(components, 'MathJax', *path) -- static_data.extend([ -- mj('MathJax.js'), -- mj('config', 'TeX-AMS_HTML-full.js'), -- mj('config', 'Safe.js'), -- ]) -- -- trees = [] -- mj_out = mj('jax', 'output') -- -- if os.path.exists(mj_out): -- for output in os.listdir(mj_out): -- path = pjoin(mj_out, output) -- static_data.append(pjoin(path, '*.js')) -- autoload = pjoin(path, 'autoload') -- if os.path.isdir(autoload): -- trees.append(autoload) -- -- for tree in trees + [ -- mj('localization'), # limit to en? -- mj('fonts', 'HTML-CSS', 'STIX-Web', 'woff'), -- mj('extensions'), -- mj('jax', 'input', 'TeX'), -- mj('jax', 'output', 'HTML-CSS', 'fonts', 'STIX-Web'), -- mj('jax', 'output', 'SVG', 'fonts', 'STIX-Web'), -- ]: -- for parent, dirs, files in os.walk(tree): -- for f in files: -- static_data.append(pjoin(parent, f)) - - os.chdir(os.path.join('tests',)) - js_tests = glob('*.js') + glob('*/*.js') |