diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-05 09:32:41 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 09:32:41 +0000 |
| commit | 65934e54d1986a098522caa65685f53124e71d5f (patch) | |
| tree | 643f1255b755119d640e610ac2cc323980963cfa | |
| parent | cf783d46ab5151c1bee2a130db089dfc4774d9fb (diff) | |
automatic import of python-ottopyopeneuler20.03
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-ottopy.spec | 306 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 308 insertions, 0 deletions
@@ -0,0 +1 @@ +/ottopy-0.1.21.tar.gz diff --git a/python-ottopy.spec b/python-ottopy.spec new file mode 100644 index 0000000..5eb6bf7 --- /dev/null +++ b/python-ottopy.spec @@ -0,0 +1,306 @@ +%global _empty_manifest_terminate_build 0 +Name: python-ottopy +Version: 0.1.21 +Release: 1 +Summary: A configurable maze library +License: BSD +URL: https://github.com/totogoto/ottopy +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/02/55/d2e1cdf6cf26672dcdff84f1bdcc2f37ca6acc2239ec64bd248c01fe5371/ottopy-0.1.21.tar.gz +BuildArch: noarch + +Requires: python3-ipywidgets +Requires: python3-jupyter-sphinx +Requires: python3-nbsphinx +Requires: python3-nbsphinx-link +Requires: python3-pytest-check-links +Requires: python3-pypandoc +Requires: python3-recommonmark +Requires: python3-sphinx +Requires: python3-sphinx-rtd-theme +Requires: python3-pytest +Requires: python3-pytest-cov +Requires: python3-nbval + +%description + +# ottopy + +[](https://travis-ci.org/Varsito Pvt Ltd/ottopy) +[](https://codecov.io/gh/Varsito Pvt Ltd/ottopy) + + +A configurable maze library + +## Installation + +You can install using `pip`: + +```bash +pip install ottopy +``` + +If you are using Jupyter Notebook 5.2 or earlier, you may also need to enable +the nbextension: +```bash +jupyter nbextension enable --py [--sys-prefix|--user|--system] ottopy +``` + +## Development Installation + +Create a dev environment: +```bash +conda create -n ottopy-dev -c conda-forge nodejs yarn python jupyterlab +conda activate ottopy-dev +``` + +Install the python. This will also build the TS package. +```bash +pip install -e ".[test, examples]" +``` + +When developing your extensions, you need to manually enable your extensions with the +notebook / lab frontend. For lab, this is done by the command: + +``` +jupyter labextension develop --overwrite . +yarn run build +``` + +For classic notebook, you need to run: + +``` +jupyter nbextension install --sys-prefix --symlink --overwrite --py ottopy +jupyter nbextension enable --sys-prefix --py ottopy +``` + +Note that the `--symlink` flag doesn't work on Windows, so you will here have to run +the `install` command every time that you rebuild your extension. For certain installations +you might also need another flag instead of `--sys-prefix`, but we won't cover the meaning +of those flags here. + +### How to see your changes +#### Typescript: +If you use JupyterLab to develop then you can watch the source directory and run JupyterLab at the same time in different +terminals to watch for changes in the extension's source and automatically rebuild the widget. + +```bash +# Watch the source directory in one terminal, automatically rebuilding when needed +yarn run watch +# Run JupyterLab in another terminal +jupyter lab +``` + +After a change wait for the build to finish and then refresh your browser and the changes should take effect. + +#### Python: +If you make a change to the python code then you will need to restart the notebook kernel to have it take effect. + + + + +%package -n python3-ottopy +Summary: A configurable maze library +Provides: python-ottopy +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-ottopy + +# ottopy + +[](https://travis-ci.org/Varsito Pvt Ltd/ottopy) +[](https://codecov.io/gh/Varsito Pvt Ltd/ottopy) + + +A configurable maze library + +## Installation + +You can install using `pip`: + +```bash +pip install ottopy +``` + +If you are using Jupyter Notebook 5.2 or earlier, you may also need to enable +the nbextension: +```bash +jupyter nbextension enable --py [--sys-prefix|--user|--system] ottopy +``` + +## Development Installation + +Create a dev environment: +```bash +conda create -n ottopy-dev -c conda-forge nodejs yarn python jupyterlab +conda activate ottopy-dev +``` + +Install the python. This will also build the TS package. +```bash +pip install -e ".[test, examples]" +``` + +When developing your extensions, you need to manually enable your extensions with the +notebook / lab frontend. For lab, this is done by the command: + +``` +jupyter labextension develop --overwrite . +yarn run build +``` + +For classic notebook, you need to run: + +``` +jupyter nbextension install --sys-prefix --symlink --overwrite --py ottopy +jupyter nbextension enable --sys-prefix --py ottopy +``` + +Note that the `--symlink` flag doesn't work on Windows, so you will here have to run +the `install` command every time that you rebuild your extension. For certain installations +you might also need another flag instead of `--sys-prefix`, but we won't cover the meaning +of those flags here. + +### How to see your changes +#### Typescript: +If you use JupyterLab to develop then you can watch the source directory and run JupyterLab at the same time in different +terminals to watch for changes in the extension's source and automatically rebuild the widget. + +```bash +# Watch the source directory in one terminal, automatically rebuilding when needed +yarn run watch +# Run JupyterLab in another terminal +jupyter lab +``` + +After a change wait for the build to finish and then refresh your browser and the changes should take effect. + +#### Python: +If you make a change to the python code then you will need to restart the notebook kernel to have it take effect. + + + + +%package help +Summary: Development documents and examples for ottopy +Provides: python3-ottopy-doc +%description help + +# ottopy + +[](https://travis-ci.org/Varsito Pvt Ltd/ottopy) +[](https://codecov.io/gh/Varsito Pvt Ltd/ottopy) + + +A configurable maze library + +## Installation + +You can install using `pip`: + +```bash +pip install ottopy +``` + +If you are using Jupyter Notebook 5.2 or earlier, you may also need to enable +the nbextension: +```bash +jupyter nbextension enable --py [--sys-prefix|--user|--system] ottopy +``` + +## Development Installation + +Create a dev environment: +```bash +conda create -n ottopy-dev -c conda-forge nodejs yarn python jupyterlab +conda activate ottopy-dev +``` + +Install the python. This will also build the TS package. +```bash +pip install -e ".[test, examples]" +``` + +When developing your extensions, you need to manually enable your extensions with the +notebook / lab frontend. For lab, this is done by the command: + +``` +jupyter labextension develop --overwrite . +yarn run build +``` + +For classic notebook, you need to run: + +``` +jupyter nbextension install --sys-prefix --symlink --overwrite --py ottopy +jupyter nbextension enable --sys-prefix --py ottopy +``` + +Note that the `--symlink` flag doesn't work on Windows, so you will here have to run +the `install` command every time that you rebuild your extension. For certain installations +you might also need another flag instead of `--sys-prefix`, but we won't cover the meaning +of those flags here. + +### How to see your changes +#### Typescript: +If you use JupyterLab to develop then you can watch the source directory and run JupyterLab at the same time in different +terminals to watch for changes in the extension's source and automatically rebuild the widget. + +```bash +# Watch the source directory in one terminal, automatically rebuilding when needed +yarn run watch +# Run JupyterLab in another terminal +jupyter lab +``` + +After a change wait for the build to finish and then refresh your browser and the changes should take effect. + +#### Python: +If you make a change to the python code then you will need to restart the notebook kernel to have it take effect. + + + + +%prep +%autosetup -n ottopy-0.1.21 + +%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-ottopy -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.21-1 +- Package Spec generated @@ -0,0 +1 @@ +ace6fa4c0ff0e616de68f4890cddbc2c ottopy-0.1.21.tar.gz |
