summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 07:28:10 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 07:28:10 +0000
commitd47880d7dec2cf22b51980706ec3fd5215dc9a51 (patch)
treedc098737643469bf9fd63a93ce56ce5a55af0349
parentf58dffa6794ae27d071ce95e651c91a19e83f481 (diff)
automatic import of python-stringparseropeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-stringparser.spec89
-rw-r--r--sources1
3 files changed, 91 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..0f3b9fb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/stringparser-0.6.tar.gz
diff --git a/python-stringparser.spec b/python-stringparser.spec
new file mode 100644
index 0000000..5404194
--- /dev/null
+++ b/python-stringparser.spec
@@ -0,0 +1,89 @@
+%global _empty_manifest_terminate_build 0
+Name: python-stringparser
+Version: 0.6
+Release: 1
+Summary: Easy to use pattern matching and information extraction
+License: BSD
+URL: http://github.com/hgrecco/stringparser
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/43/f8/731947603a22ebffb93a917c2ffb2d1a11f9446537a756db50459556dd37/stringparser-0.6.tar.gz
+BuildArch: noarch
+
+Requires: python3-pytest
+Requires: python3-pytest-cov
+
+%description
+The ``stringparser`` module provides a simple way to match patterns and extract
+information within strings. As patterns are given using the familiar format
+string specification :pep:`3101`, writing them is much easier than writing
+regular expressions (albeit less powerful).
+Just install it using:
+ pip install stringparser
+
+%package -n python3-stringparser
+Summary: Easy to use pattern matching and information extraction
+Provides: python-stringparser
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-stringparser
+The ``stringparser`` module provides a simple way to match patterns and extract
+information within strings. As patterns are given using the familiar format
+string specification :pep:`3101`, writing them is much easier than writing
+regular expressions (albeit less powerful).
+Just install it using:
+ pip install stringparser
+
+%package help
+Summary: Development documents and examples for stringparser
+Provides: python3-stringparser-doc
+%description help
+The ``stringparser`` module provides a simple way to match patterns and extract
+information within strings. As patterns are given using the familiar format
+string specification :pep:`3101`, writing them is much easier than writing
+regular expressions (albeit less powerful).
+Just install it using:
+ pip install stringparser
+
+%prep
+%autosetup -n stringparser-0.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-stringparser -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.6-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..8d92ddb
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+7647d780a82a7a6211985ecd0255d9ca stringparser-0.6.tar.gz