summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-10 04:15:02 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-10 04:15:02 +0000
commit96e9047948fa0564084294436907ee1b3edd64a9 (patch)
tree748ecb089fdba3e97673ed19073928ccbd4f551e
parent693fcd42692dbcf717413b671dc6d46a97520171 (diff)
automatic import of python-nocasedictopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-nocasedict.spec77
-rw-r--r--sources1
3 files changed, 79 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..dabc7b6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/nocasedict-2.0.1.tar.gz
diff --git a/python-nocasedict.spec b/python-nocasedict.spec
new file mode 100644
index 0000000..a8ebab1
--- /dev/null
+++ b/python-nocasedict.spec
@@ -0,0 +1,77 @@
+%global _empty_manifest_terminate_build 0
+Name: python-nocasedict
+Version: 2.0.1
+Release: 1
+Summary: A case-insensitive ordered dictionary for Python
+License: GNU Lesser General Public License v2 or later (LGPLv2+)
+URL: https://github.com/pywbem/nocasedict
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/b7/0c/7efaea31c527e62c38c12a2482a8f24114f53746832f9032152950f01786/nocasedict-2.0.1.tar.gz
+BuildArch: noarch
+
+Requires: python3-pytest
+Requires: python3-virtualenv
+Requires: python3-packaging
+Requires: python3-pluggy
+Requires: python3-six
+
+%description
+
+
+%package -n python3-nocasedict
+Summary: A case-insensitive ordered dictionary for Python
+Provides: python-nocasedict
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-nocasedict
+
+
+%package help
+Summary: Development documents and examples for nocasedict
+Provides: python3-nocasedict-doc
+%description help
+
+
+%prep
+%autosetup -n nocasedict-2.0.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-nocasedict -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 2.0.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..9c3f05c
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+6a2d1941c22126e9879dcf688ce16ce3 nocasedict-2.0.1.tar.gz