Unbundle js-highlight
This commit is contained in:
parent
22d1333faf
commit
d9f735363a
16
ipython.spec
16
ipython.spec
@ -258,6 +258,7 @@ Requires: python3-matplotlib
|
|||||||
#################################################
|
#################################################
|
||||||
# We need to know nodejs_sitearch and lib
|
# We need to know nodejs_sitearch and lib
|
||||||
BuildRequires: nodejs-packaging
|
BuildRequires: nodejs-packaging
|
||||||
|
BuildRequires: web-assets-devel
|
||||||
|
|
||||||
BuildRequires: fontawesome-fonts-web
|
BuildRequires: fontawesome-fonts-web
|
||||||
Requires: fontawesome-fonts-web
|
Requires: fontawesome-fonts-web
|
||||||
@ -265,8 +266,8 @@ BuildRequires: nodejs-requirejs
|
|||||||
Requires: nodejs-requirejs
|
Requires: nodejs-requirejs
|
||||||
BuildRequires: nodejs-underscore
|
BuildRequires: nodejs-underscore
|
||||||
Requires: nodejs-underscore
|
Requires: nodejs-underscore
|
||||||
BuildRequires: nodejs-highlight-js
|
BuildRequires: js-highlight
|
||||||
Requires: nodejs-highlight-js
|
Requires: js-highlight
|
||||||
|
|
||||||
|
|
||||||
%description -n python3-ipython-notebook
|
%description -n python3-ipython-notebook
|
||||||
@ -346,10 +347,18 @@ pushd IPython/html/static/components
|
|||||||
ls -l
|
ls -l
|
||||||
popd
|
popd
|
||||||
# TODO backbone bootstrap google-caja jquery jquery-ui marked
|
# TODO backbone bootstrap google-caja jquery jquery-ui marked
|
||||||
for folder in highlight.js requirejs underscore; do
|
#for folder in highlight.js requirejs underscore; do
|
||||||
|
for folder in requirejs underscore; do
|
||||||
rm -r ${folder}
|
rm -r ${folder}
|
||||||
ln -s %{nodejs_sitelib}/${folder}
|
ln -s %{nodejs_sitelib}/${folder}
|
||||||
done
|
done
|
||||||
|
# Work around highlight packaging (ipython requires it in build/ subfolder...)
|
||||||
|
# Unbundle JS stuff WITHIN build subfolder (ipython requires it there...)
|
||||||
|
for folder in highlight.js; do
|
||||||
|
rm -r $folder
|
||||||
|
mkdir -p $folder
|
||||||
|
ln -s %{_jsdir}/$folder/ $folder/build
|
||||||
|
done
|
||||||
ls -l
|
ls -l
|
||||||
ls -l *
|
ls -l *
|
||||||
asdf
|
asdf
|
||||||
@ -587,6 +596,7 @@ popd
|
|||||||
- fix python -> python3 sed replacement
|
- fix python -> python3 sed replacement
|
||||||
- fix running testsuite
|
- fix running testsuite
|
||||||
- fix %%files
|
- fix %%files
|
||||||
|
- Unbundle js-highlight
|
||||||
|
|
||||||
* Thu Apr 3 2014 Thomas Spura <tomspur@fedoraproject.org> - 2.0.0-1
|
* Thu Apr 3 2014 Thomas Spura <tomspur@fedoraproject.org> - 2.0.0-1
|
||||||
- update to 2.0.0
|
- update to 2.0.0
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user