diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-15 08:08:56 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-15 08:08:56 +0000 |
commit | ad2fcf968b0ce37a6e3729b2fe049417d0974cb8 (patch) | |
tree | 7e6bca5d4c818c207f103f7aac03a5cef18644eb | |
parent | 351fc8f83de0aa65127f0605030c282023852d0d (diff) |
automatic import of python-finviz
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-finviz.spec | 72 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 74 insertions, 0 deletions
@@ -0,0 +1 @@ +/finviz-1.4.6.tar.gz diff --git a/python-finviz.spec b/python-finviz.spec new file mode 100644 index 0000000..3a11649 --- /dev/null +++ b/python-finviz.spec @@ -0,0 +1,72 @@ +%global _empty_manifest_terminate_build 0 +Name: python-finviz +Version: 1.4.6 +Release: 1 +Summary: Unofficial API for FinViz.com +License: MIT +URL: https://github.com/mariostoev/finviz +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/0d/e7/355eace29e57708a1dd328be15d912351f5a0f01a74273fb10f6bb9bb9ce/finviz-1.4.6.tar.gz +BuildArch: noarch + + +%description + + +%package -n python3-finviz +Summary: Unofficial API for FinViz.com +Provides: python-finviz +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-finviz + + +%package help +Summary: Development documents and examples for finviz +Provides: python3-finviz-doc +%description help + + +%prep +%autosetup -n finviz-1.4.6 + +%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-finviz -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 1.4.6-1 +- Package Spec generated @@ -0,0 +1 @@ +fa2fe1b0cf70c632b37f4e11601b2d0d finviz-1.4.6.tar.gz |