diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-10 08:10:19 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 08:10:19 +0000 |
commit | 9128d07ca2ec6e70d961eb79c24e96df86f8863c (patch) | |
tree | 7f84ca7716228d2fb8f5bc2eff2bb4de45791c25 | |
parent | 1d9c59076bb140ca825e8de92cb13f6e48358156 (diff) |
automatic import of python-jupyter
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-jupyter.spec | 72 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 74 insertions, 0 deletions
@@ -0,0 +1 @@ +/jupyter-1.0.0.tar.gz diff --git a/python-jupyter.spec b/python-jupyter.spec new file mode 100644 index 0000000..ec0b48c --- /dev/null +++ b/python-jupyter.spec @@ -0,0 +1,72 @@ +%global _empty_manifest_terminate_build 0 +Name: python-jupyter +Version: 1.0.0 +Release: 1 +Summary: Jupyter metapackage. Install all the Jupyter components in one go. +License: BSD +URL: http://jupyter.org +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c9/a9/371d0b8fe37dd231cf4b2cff0a9f0f25e98f3a73c3771742444be27f2944/jupyter-1.0.0.tar.gz +BuildArch: noarch + + +%description +Install the Jupyter system, including the notebook, qtconsole, and the IPython kernel. + +%package -n python3-jupyter +Summary: Jupyter metapackage. Install all the Jupyter components in one go. +Provides: python-jupyter +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-jupyter +Install the Jupyter system, including the notebook, qtconsole, and the IPython kernel. + +%package help +Summary: Development documents and examples for jupyter +Provides: python3-jupyter-doc +%description help +Install the Jupyter system, including the notebook, qtconsole, and the IPython kernel. + +%prep +%autosetup -n jupyter-1.0.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-jupyter -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.0-1 +- Package Spec generated @@ -0,0 +1 @@ +c6030444c7eb6c05a4d7b1768c72aed7 jupyter-1.0.0.tar.gz |