From 9343a56b0d80eb1466885fc5e0f84dd6d9ffd946 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Fri, 5 May 2023 06:47:07 +0000 Subject: automatic import of python-inventree --- .gitignore | 1 + python-inventree.spec | 142 ++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 144 insertions(+) create mode 100644 python-inventree.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..49c6047 100644 --- a/.gitignore +++ b/.gitignore @@ -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 +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +[![PyPI](https://img.shields.io/pypi/v/inventree)](https://pypi.org/project/inventree/) +![Build Status](https://github.com/inventree/inventree-python/actions/workflows/ci.yaml/badge.svg) +[![Coverage Status](https://coveralls.io/repos/github/inventree/inventree-python/badge.svg)](https://coveralls.io/github/inventree/inventree-python) +![PEP](https://github.com/inventree/inventree-python/actions/workflows/pep.yaml/badge.svg) + +## 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 +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +[![PyPI](https://img.shields.io/pypi/v/inventree)](https://pypi.org/project/inventree/) +![Build Status](https://github.com/inventree/inventree-python/actions/workflows/ci.yaml/badge.svg) +[![Coverage Status](https://coveralls.io/repos/github/inventree/inventree-python/badge.svg)](https://coveralls.io/github/inventree/inventree-python) +![PEP](https://github.com/inventree/inventree-python/actions/workflows/pep.yaml/badge.svg) + +## 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 +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +[![PyPI](https://img.shields.io/pypi/v/inventree)](https://pypi.org/project/inventree/) +![Build Status](https://github.com/inventree/inventree-python/actions/workflows/ci.yaml/badge.svg) +[![Coverage Status](https://coveralls.io/repos/github/inventree/inventree-python/badge.svg)](https://coveralls.io/github/inventree/inventree-python) +![PEP](https://github.com/inventree/inventree-python/actions/workflows/pep.yaml/badge.svg) + +## 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 - 0.11.2-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..56a6c10 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +fd7c410fb6c5ac5e3e0d90f3a29ed59e inventree-0.11.2.tar.gz -- cgit v1.2.3