diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-05 08:41:07 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 08:41:07 +0000 |
commit | 9b3f1d5386b45d4f693557cdd8b9363e283cb359 (patch) | |
tree | 2d0ea4d74de637506eefd7261f891b9e90188d8c | |
parent | 0994938f0bf9bc17a0f51efbea92d221801accfe (diff) |
automatic import of python-instawowopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-instawow.spec | 117 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 119 insertions, 0 deletions
@@ -0,0 +1 @@ +/instawow-2.3.0.tar.gz diff --git a/python-instawow.spec b/python-instawow.spec new file mode 100644 index 0000000..6de310f --- /dev/null +++ b/python-instawow.spec @@ -0,0 +1,117 @@ +%global _empty_manifest_terminate_build 0 +Name: python-instawow +Version: 2.3.0 +Release: 1 +Summary: World of Warcraft add-on manager +License: GPL-3.0-or-later +URL: https://pypi.org/project/instawow/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/bb/11/c23e96a2807b9cd0e6c10709f94163aa8986bd2176cb27c66811e2df5b23/instawow-2.3.0.tar.gz +BuildArch: noarch + +Requires: python3-aiohttp +Requires: python3-aiohttp-client-cache +Requires: python3-aiohttp-rpc +Requires: python3-alembic +Requires: python3-anyio +Requires: python3-aresponses +Requires: python3-attrs +Requires: python3-cattrs +Requires: python3-click +Requires: python3-coverage[toml] +Requires: python3-exceptiongroup +Requires: python3-iso8601 +Requires: python3-loguru +Requires: python3-mako +Requires: python3-packaging +Requires: python3-pluggy +Requires: python3-prompt-toolkit +Requires: python3-pytest +Requires: python3-pytest-asyncio +Requires: python3-pytest-xdist +Requires: python3-questionary +Requires: python3-rapidfuzz +Requires: python3-sqlalchemy +Requires: python3-toga +Requires: python3-types-certifi +Requires: python3-typing-extensions +Requires: python3-yarl + +%description +*instawow* is an add-on manager for World of Warcraft. +It can be used to install, update and remove add-ons from GitHub, +CurseForge, WoWInterface and Tukui. +*instawow* has an interoperable CLI and GUI, fuzzy search with download scoring +and several other goodies. + * - .. figure:: https://asciinema.org/a/8m36ncAoyTmig4MXfQM8YjE6a.svg + - .. figure:: https://raw.githubusercontent.com/layday/instawow/main/gui-webview/screenshots/v1.34.1.png + +%package -n python3-instawow +Summary: World of Warcraft add-on manager +Provides: python-instawow +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-instawow +*instawow* is an add-on manager for World of Warcraft. +It can be used to install, update and remove add-ons from GitHub, +CurseForge, WoWInterface and Tukui. +*instawow* has an interoperable CLI and GUI, fuzzy search with download scoring +and several other goodies. + * - .. figure:: https://asciinema.org/a/8m36ncAoyTmig4MXfQM8YjE6a.svg + - .. figure:: https://raw.githubusercontent.com/layday/instawow/main/gui-webview/screenshots/v1.34.1.png + +%package help +Summary: Development documents and examples for instawow +Provides: python3-instawow-doc +%description help +*instawow* is an add-on manager for World of Warcraft. +It can be used to install, update and remove add-ons from GitHub, +CurseForge, WoWInterface and Tukui. +*instawow* has an interoperable CLI and GUI, fuzzy search with download scoring +and several other goodies. + * - .. figure:: https://asciinema.org/a/8m36ncAoyTmig4MXfQM8YjE6a.svg + - .. figure:: https://raw.githubusercontent.com/layday/instawow/main/gui-webview/screenshots/v1.34.1.png + +%prep +%autosetup -n instawow-2.3.0 + +%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-instawow -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 2.3.0-1 +- Package Spec generated @@ -0,0 +1 @@ +0115655a573fdaf6d66f99552fde19ea instawow-2.3.0.tar.gz |