From cafddeb5d016d033a6095487402f520db9f63e96 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Tue, 11 Apr 2023 01:00:44 +0000 Subject: automatic import of python-scrapbook --- .gitignore | 1 + python-scrapbook.spec | 153 ++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 155 insertions(+) create mode 100644 python-scrapbook.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..3f7ecaf 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/scrapbook-0.5.0.tar.gz diff --git a/python-scrapbook.spec b/python-scrapbook.spec new file mode 100644 index 0000000..90f2f77 --- /dev/null +++ b/python-scrapbook.spec @@ -0,0 +1,153 @@ +%global _empty_manifest_terminate_build 0 +Name: python-scrapbook +Version: 0.5.0 +Release: 1 +Summary: A library for recording and reading data in Jupyter and nteract Notebooks +License: BSD +URL: https://github.com/nteract/scrapbook +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/44/5f/cb73e0d1c92d73d992c6e77e050f7288e5a1503644822c2792a0e4bad996/scrapbook-0.5.0.tar.gz +BuildArch: noarch + +Requires: python3-pandas +Requires: python3-papermill +Requires: python3-jsonschema +Requires: python3-ipython +Requires: python3-pyarrow +Requires: python3-papermill[all] +Requires: python3-papermill[azure] +Requires: python3-bumpversion +Requires: python3-wheel +Requires: python3-setuptools +Requires: python3-twine +Requires: python3-flake8 +Requires: python3-tox +Requires: python3-mock +Requires: python3-ipython +Requires: python3-papermill[dev] +Requires: python3-pytest +Requires: python3-pytest-cov +Requires: python3-pytest-mock +Requires: python3-pytest-env +Requires: python3-codecov +Requires: python3-coverage +Requires: python3-papermill[gcs] +Requires: python3-papermill[s3] +Requires: python3-bumpversion +Requires: python3-wheel +Requires: python3-setuptools +Requires: python3-twine +Requires: python3-flake8 +Requires: python3-tox +Requires: python3-mock +Requires: python3-ipython +Requires: python3-papermill[dev] +Requires: python3-pytest +Requires: python3-pytest-cov +Requires: python3-pytest-mock +Requires: python3-pytest-env +Requires: python3-codecov +Requires: python3-coverage + +%description +## Models and Terminology +Scrapbook defines the following items: +- **scraps**: serializable data values and visualizations such as strings, lists of + objects, pandas dataframes, charts, images, or data references. +- **notebook**: a wrapped nbformat notebook object with extra methods for interacting + with scraps. +- **scrapbook**: a collection of notebooks with an interface for asking questions of + the collection. +- **encoders**: a registered translator of data to/from notebook + storage formats. +### `scrap` model +The `scrap` model houses a few key attributes in a tuple, including: +- **name**: The name of the scrap +- **data**: Any data captured by the scrapbook api call +- **encoder**: The name of the encoder used to encode/decode data to/from the notebook + +%package -n python3-scrapbook +Summary: A library for recording and reading data in Jupyter and nteract Notebooks +Provides: python-scrapbook +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-scrapbook +## Models and Terminology +Scrapbook defines the following items: +- **scraps**: serializable data values and visualizations such as strings, lists of + objects, pandas dataframes, charts, images, or data references. +- **notebook**: a wrapped nbformat notebook object with extra methods for interacting + with scraps. +- **scrapbook**: a collection of notebooks with an interface for asking questions of + the collection. +- **encoders**: a registered translator of data to/from notebook + storage formats. +### `scrap` model +The `scrap` model houses a few key attributes in a tuple, including: +- **name**: The name of the scrap +- **data**: Any data captured by the scrapbook api call +- **encoder**: The name of the encoder used to encode/decode data to/from the notebook + +%package help +Summary: Development documents and examples for scrapbook +Provides: python3-scrapbook-doc +%description help +## Models and Terminology +Scrapbook defines the following items: +- **scraps**: serializable data values and visualizations such as strings, lists of + objects, pandas dataframes, charts, images, or data references. +- **notebook**: a wrapped nbformat notebook object with extra methods for interacting + with scraps. +- **scrapbook**: a collection of notebooks with an interface for asking questions of + the collection. +- **encoders**: a registered translator of data to/from notebook + storage formats. +### `scrap` model +The `scrap` model houses a few key attributes in a tuple, including: +- **name**: The name of the scrap +- **data**: Any data captured by the scrapbook api call +- **encoder**: The name of the encoder used to encode/decode data to/from the notebook + +%prep +%autosetup -n scrapbook-0.5.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-scrapbook -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot - 0.5.0-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..9cf348b --- /dev/null +++ b/sources @@ -0,0 +1 @@ +1c6452b64bc313236986842dd5672974 scrapbook-0.5.0.tar.gz -- cgit v1.2.3