summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 11:19:10 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 11:19:10 +0000
commit4a359fc30452347dadad52b31db5a9463cee42ad (patch)
tree0ef42204560547dc96036bd2468c8782f89e38c3
parent293723c9703428b58e816f1f8d046587d16266e0 (diff)
automatic import of python-wcag-contrast-ratioopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-wcag-contrast-ratio.spec72
-rw-r--r--sources1
3 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..ed414d1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/wcag-contrast-ratio-0.9.tar.gz
diff --git a/python-wcag-contrast-ratio.spec b/python-wcag-contrast-ratio.spec
new file mode 100644
index 0000000..9fba73f
--- /dev/null
+++ b/python-wcag-contrast-ratio.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-wcag-contrast-ratio
+Version: 0.9
+Release: 1
+Summary: A library for computing contrast ratios, as required by WCAG 2.0
+License: MIT License
+URL: https://github.com/gsnedders/wcag-contrast-ratio
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/1f/ec/faf3e7ee407a00081372632cdd9858302c8a9bb071e3767f8dac2ac3f9e2/wcag-contrast-ratio-0.9.tar.gz
+BuildArch: noarch
+
+
+%description
+A library for computing contrast ratios, as required by `WCAG 2.0`.
+
+%package -n python3-wcag-contrast-ratio
+Summary: A library for computing contrast ratios, as required by WCAG 2.0
+Provides: python-wcag-contrast-ratio
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-wcag-contrast-ratio
+A library for computing contrast ratios, as required by `WCAG 2.0`.
+
+%package help
+Summary: Development documents and examples for wcag-contrast-ratio
+Provides: python3-wcag-contrast-ratio-doc
+%description help
+A library for computing contrast ratios, as required by `WCAG 2.0`.
+
+%prep
+%autosetup -n wcag-contrast-ratio-0.9
+
+%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-wcag-contrast-ratio -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.9-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..f6b5b65
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+5ad2879d24d8558e3ac67843091da33b wcag-contrast-ratio-0.9.tar.gz