summaryrefslogtreecommitdiff
path: root/python-fsh-validator.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-10 09:30:20 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-10 09:30:20 +0000
commit177b898c5826bbfdf9a5d3294e72f1976b086866 (patch)
tree3f188db2cb8e3163d73eef79f36af9d676c83468 /python-fsh-validator.spec
parent391db0219c5500158260c080def19634fe5a3ba9 (diff)
automatic import of python-fsh-validator
Diffstat (limited to 'python-fsh-validator.spec')
-rw-r--r--python-fsh-validator.spec77
1 files changed, 77 insertions, 0 deletions
diff --git a/python-fsh-validator.spec b/python-fsh-validator.spec
new file mode 100644
index 0000000..7a8e314
--- /dev/null
+++ b/python-fsh-validator.spec
@@ -0,0 +1,77 @@
+%global _empty_manifest_terminate_build 0
+Name: python-fsh-validator
+Version: 0.3.2
+Release: 1
+Summary: FHIR Shorthand Validator unshortens fsh input and validates all defined instances against their profiles.
+License: BSD license
+URL: https://github.com/glichtner/fsh-validator
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/42/e2/4a5c9c52507dac8840d72ac0c956533f8d870869d709d5be9fd3c7a43ec2/fsh-validator-0.3.2.tar.gz
+BuildArch: noarch
+
+Requires: python3-jsonpath-ng
+Requires: python3-pandas
+Requires: python3-openpyxl
+Requires: python3-tabulate
+Requires: python3-pyyaml
+
+%description
+
+
+%package -n python3-fsh-validator
+Summary: FHIR Shorthand Validator unshortens fsh input and validates all defined instances against their profiles.
+Provides: python-fsh-validator
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-fsh-validator
+
+
+%package help
+Summary: Development documents and examples for fsh-validator
+Provides: python3-fsh-validator-doc
+%description help
+
+
+%prep
+%autosetup -n fsh-validator-0.3.2
+
+%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-fsh-validator -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.3.2-1
+- Package Spec generated