summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-pyinels.spec81
-rw-r--r--sources1
3 files changed, 83 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..8353ea4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pyinels-0.6.11.tar.gz
diff --git a/python-pyinels.spec b/python-pyinels.spec
new file mode 100644
index 0000000..521649e
--- /dev/null
+++ b/python-pyinels.spec
@@ -0,0 +1,81 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pyinels
+Version: 0.6.11
+Release: 1
+Summary: Python library for iNels BUS
+License: MIT
+URL: https://github.com/JH-Soft-Technology/pyinels
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/41/d5/518f3262dd5354a483f1703f968977e69ea1cb7d45f2720a5d9bb94b6c5a/pyinels-0.6.11.tar.gz
+BuildArch: noarch
+
+
+%description
+A Python library that handles communication with proprietary home intelligent system
+named [iNels](https://www.inels.com/) by ElkoEP company.
+This package is developed against iNels BUS version. It is not tested on older
+version CU2 and does not support RF components.
+
+%package -n python3-pyinels
+Summary: Python library for iNels BUS
+Provides: python-pyinels
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-pyinels
+A Python library that handles communication with proprietary home intelligent system
+named [iNels](https://www.inels.com/) by ElkoEP company.
+This package is developed against iNels BUS version. It is not tested on older
+version CU2 and does not support RF components.
+
+%package help
+Summary: Development documents and examples for pyinels
+Provides: python3-pyinels-doc
+%description help
+A Python library that handles communication with proprietary home intelligent system
+named [iNels](https://www.inels.com/) by ElkoEP company.
+This package is developed against iNels BUS version. It is not tested on older
+version CU2 and does not support RF components.
+
+%prep
+%autosetup -n pyinels-0.6.11
+
+%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-pyinels -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 0.6.11-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..f474b3a
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+4c79614a5776418f06e04846b0ddcaba pyinels-0.6.11.tar.gz