diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-31 06:36:12 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-31 06:36:12 +0000 |
commit | 81f8a9b5256bab7ba5dedd3052182af9f338dd5f (patch) | |
tree | 0191b9cdca8096cc0f5c0c5d51091412a393e210 /python-dreammultidevices.spec | |
parent | 17bc0a3c11ee8f9b432ec592e9cd4853b5837ebc (diff) |
automatic import of python-dreammultidevices
Diffstat (limited to 'python-dreammultidevices.spec')
-rw-r--r-- | python-dreammultidevices.spec | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/python-dreammultidevices.spec b/python-dreammultidevices.spec new file mode 100644 index 0000000..1d44242 --- /dev/null +++ b/python-dreammultidevices.spec @@ -0,0 +1,82 @@ +%global _empty_manifest_terminate_build 0 +Name: python-DreamMultiDevices +Version: 1.25 +Release: 1 +Summary: 给adb加了过滤关键字的功能 +License: MIT License +URL: https://github.com/saint228/DreamMultiDevices +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/72/2f/8a434a09e8fddc8e6367ca11bfdb46d5be65971f66ec4cadde3ebc0b76da/DreamMultiDevices-1.25.tar.gz +BuildArch: noarch + +Requires: python3-airtest +Requires: python3-BeautifulReport +Requires: python3-pocoui +Requires: python3-xlwings + +%description +微信打赏 +以前我一直对打赏这种行为不屑一顾,但真正得收到社区成员千翻百计找到我的打赏码给我打赏的时候还是很开心,感觉工作得到大家的认可,真的很开心。我也有时候会打赏别人,让激动的心情有了发泄的出口。 请不要打赏太多,知道了你们的心意就好了。我将会用收到的money通通拿来去楼下自动售货机买饮料。^_^ + + +%package -n python3-DreamMultiDevices +Summary: 给adb加了过滤关键字的功能 +Provides: python-DreamMultiDevices +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-DreamMultiDevices +微信打赏 +以前我一直对打赏这种行为不屑一顾,但真正得收到社区成员千翻百计找到我的打赏码给我打赏的时候还是很开心,感觉工作得到大家的认可,真的很开心。我也有时候会打赏别人,让激动的心情有了发泄的出口。 请不要打赏太多,知道了你们的心意就好了。我将会用收到的money通通拿来去楼下自动售货机买饮料。^_^ + + +%package help +Summary: Development documents and examples for DreamMultiDevices +Provides: python3-DreamMultiDevices-doc +%description help +微信打赏 +以前我一直对打赏这种行为不屑一顾,但真正得收到社区成员千翻百计找到我的打赏码给我打赏的时候还是很开心,感觉工作得到大家的认可,真的很开心。我也有时候会打赏别人,让激动的心情有了发泄的出口。 请不要打赏太多,知道了你们的心意就好了。我将会用收到的money通通拿来去楼下自动售货机买饮料。^_^ + + +%prep +%autosetup -n DreamMultiDevices-1.25 + +%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-DreamMultiDevices -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 1.25-1 +- Package Spec generated |