summaryrefslogtreecommitdiff
path: root/python-quickstart-rhy.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 07:57:13 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 07:57:13 +0000
commit54b8568513aca447c702e90cac49dddd7b11041b (patch)
treee05c1406bdc234f5a469f3789be264ae45304c3f /python-quickstart-rhy.spec
parenta6f706b1a4fb1070f7392c2e658f840d4a8db930 (diff)
automatic import of python-quickstart-rhyopeneuler20.03
Diffstat (limited to 'python-quickstart-rhy.spec')
-rw-r--r--python-quickstart-rhy.spec158
1 files changed, 158 insertions, 0 deletions
diff --git a/python-quickstart-rhy.spec b/python-quickstart-rhy.spec
new file mode 100644
index 0000000..79b4f42
--- /dev/null
+++ b/python-quickstart-rhy.spec
@@ -0,0 +1,158 @@
+%global _empty_manifest_terminate_build 0
+Name: python-quickstart-rhy
+Version: 0.7.1
+Release: 1
+Summary: A Command Line Toolbox
+License: MIT
+URL: https://pypi.org/project/quickstart-rhy/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/bb/db/ad4e3d0d06deeb6571fadbb491d67f0e53f4ea0e1802a29ad4dbf879389f/quickstart_rhy-0.7.1.tar.gz
+BuildArch: noarch
+
+Requires: python3-Qpro
+Requires: python3-inquirer-rhy
+Requires: python3-requests
+Requires: python3-rich
+Requires: python3-urllib3
+
+%description
+# QuickStart_Rhy
+
+```shell
+pip3 install quickstart-rhy # stable version
+pip3 install git+https://github.com/Rhythmicc/quickstart-rhy.git -U # beta version but more features
+```
+
+| Key | Value |
+| :--: | -------------------------------------------------- |
+| ENV | **^Python 3.7** |
+| FONT | **Cascadia Code / Meslo** |
+| DOCS | <https://rhythmlian.cn/2020/02/14/QuickStart-Rhy/> |
+
+## Tab Complete
+
+1. fig
+
+ ```shell
+ npx @fig/publish-spec -p complete/fig/qs-<your language>.ts --name qs
+ ```
+
+2. zsh
+
+ ```shell
+ mv _qs /path/in/$FPATH/
+ ```
+
+
+
+%package -n python3-quickstart-rhy
+Summary: A Command Line Toolbox
+Provides: python-quickstart-rhy
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-quickstart-rhy
+# QuickStart_Rhy
+
+```shell
+pip3 install quickstart-rhy # stable version
+pip3 install git+https://github.com/Rhythmicc/quickstart-rhy.git -U # beta version but more features
+```
+
+| Key | Value |
+| :--: | -------------------------------------------------- |
+| ENV | **^Python 3.7** |
+| FONT | **Cascadia Code / Meslo** |
+| DOCS | <https://rhythmlian.cn/2020/02/14/QuickStart-Rhy/> |
+
+## Tab Complete
+
+1. fig
+
+ ```shell
+ npx @fig/publish-spec -p complete/fig/qs-<your language>.ts --name qs
+ ```
+
+2. zsh
+
+ ```shell
+ mv _qs /path/in/$FPATH/
+ ```
+
+
+
+%package help
+Summary: Development documents and examples for quickstart-rhy
+Provides: python3-quickstart-rhy-doc
+%description help
+# QuickStart_Rhy
+
+```shell
+pip3 install quickstart-rhy # stable version
+pip3 install git+https://github.com/Rhythmicc/quickstart-rhy.git -U # beta version but more features
+```
+
+| Key | Value |
+| :--: | -------------------------------------------------- |
+| ENV | **^Python 3.7** |
+| FONT | **Cascadia Code / Meslo** |
+| DOCS | <https://rhythmlian.cn/2020/02/14/QuickStart-Rhy/> |
+
+## Tab Complete
+
+1. fig
+
+ ```shell
+ npx @fig/publish-spec -p complete/fig/qs-<your language>.ts --name qs
+ ```
+
+2. zsh
+
+ ```shell
+ mv _qs /path/in/$FPATH/
+ ```
+
+
+
+%prep
+%autosetup -n quickstart-rhy-0.7.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-quickstart-rhy -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.7.1-1
+- Package Spec generated