diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-05 06:47:07 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 06:47:07 +0000 |
commit | 9343a56b0d80eb1466885fc5e0f84dd6d9ffd946 (patch) | |
tree | f625fbcea90902ab2265c430c6d63ab878403fae | |
parent | 3cd5881ba9e2b133222db5fabce36751e6706daf (diff) |
automatic import of python-inventreeopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-inventree.spec | 142 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 144 insertions, 0 deletions
@@ -0,0 +1 @@ +/inventree-0.11.2.tar.gz diff --git a/python-inventree.spec b/python-inventree.spec new file mode 100644 index 0000000..259343a --- /dev/null +++ b/python-inventree.spec @@ -0,0 +1,142 @@ +%global _empty_manifest_terminate_build 0 +Name: python-inventree +Version: 0.11.2 +Release: 1 +Summary: Python interface for InvenTree inventory management system +License: MIT +URL: https://github.com/inventree/inventree-python/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c9/ff/ab39ec1911046407f7c8051b307e4d63ade0a58f2f2719ac5b68691875be/inventree-0.11.2.tar.gz +BuildArch: noarch + +Requires: python3-requests + +%description +[](https://opensource.org/licenses/MIT) +[](https://pypi.org/project/inventree/) + +[](https://coveralls.io/github/inventree/inventree-python) + + +## InvenTree Python Interface + +Python library for communication with the [InvenTree parts management system](https:///github.com/inventree/inventree) using the integrated REST API. + +This library provides a class-based interface for interacting with the database. Each database table is represented as a class object which provides features analogous to the REST CRUD endpoints (Create, Retrieve, Update, Destroy). + +## Installation + +The InvenTree python library can be easily installed using PIP: + +``` +pip install inventree +``` + +## Documentation + +Refer to the [InvenTree documentation](https://docs.inventree.org/en/latest/api/python/python/) + + +%package -n python3-inventree +Summary: Python interface for InvenTree inventory management system +Provides: python-inventree +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-inventree +[](https://opensource.org/licenses/MIT) +[](https://pypi.org/project/inventree/) + +[](https://coveralls.io/github/inventree/inventree-python) + + +## InvenTree Python Interface + +Python library for communication with the [InvenTree parts management system](https:///github.com/inventree/inventree) using the integrated REST API. + +This library provides a class-based interface for interacting with the database. Each database table is represented as a class object which provides features analogous to the REST CRUD endpoints (Create, Retrieve, Update, Destroy). + +## Installation + +The InvenTree python library can be easily installed using PIP: + +``` +pip install inventree +``` + +## Documentation + +Refer to the [InvenTree documentation](https://docs.inventree.org/en/latest/api/python/python/) + + +%package help +Summary: Development documents and examples for inventree +Provides: python3-inventree-doc +%description help +[](https://opensource.org/licenses/MIT) +[](https://pypi.org/project/inventree/) + +[](https://coveralls.io/github/inventree/inventree-python) + + +## InvenTree Python Interface + +Python library for communication with the [InvenTree parts management system](https:///github.com/inventree/inventree) using the integrated REST API. + +This library provides a class-based interface for interacting with the database. Each database table is represented as a class object which provides features analogous to the REST CRUD endpoints (Create, Retrieve, Update, Destroy). + +## Installation + +The InvenTree python library can be easily installed using PIP: + +``` +pip install inventree +``` + +## Documentation + +Refer to the [InvenTree documentation](https://docs.inventree.org/en/latest/api/python/python/) + + +%prep +%autosetup -n inventree-0.11.2 + +%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-inventree -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.11.2-1 +- Package Spec generated @@ -0,0 +1 @@ +fd7c410fb6c5ac5e3e0d90f3a29ed59e inventree-0.11.2.tar.gz |