diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-15 06:41:08 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-15 06:41:08 +0000 |
| commit | fc0a8a3741754e0f1299b86866836975747c563c (patch) | |
| tree | b41337fd388c72c68b0b2900cde651be6f7803f8 | |
| parent | ae5928fa7e150f4e2f6a5cfb769443b632783d08 (diff) | |
automatic import of python-pyedimax
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-pyedimax.spec | 73 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 75 insertions, 0 deletions
@@ -0,0 +1 @@ +/pyedimax-0.2.1.tar.gz diff --git a/python-pyedimax.spec b/python-pyedimax.spec new file mode 100644 index 0000000..c3b6420 --- /dev/null +++ b/python-pyedimax.spec @@ -0,0 +1,73 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pyedimax +Version: 0.2.1 +Release: 1 +Summary: Interface with Edimax Smart Plugs +License: MIT +URL: https://github.com/andreipop2005/pyedimax +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/e0/f0/a3173add408c4ca042eee73394602965ae5adbb3377a8e3255ae5d6efba8/pyedimax-0.2.1.tar.gz +BuildArch: noarch + +Requires: python3-requests + +%description + + +%package -n python3-pyedimax +Summary: Interface with Edimax Smart Plugs +Provides: python-pyedimax +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-pyedimax + + +%package help +Summary: Development documents and examples for pyedimax +Provides: python3-pyedimax-doc +%description help + + +%prep +%autosetup -n pyedimax-0.2.1 + +%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-pyedimax -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 0.2.1-1 +- Package Spec generated @@ -0,0 +1 @@ +3112d4f05727c015eeadc8c3eb80efa4 pyedimax-0.2.1.tar.gz |
