summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 05:45:35 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 05:45:35 +0000
commitc8f7ab1e9a7944b0dd0da2175e453beef8d4ee70 (patch)
tree72ed3223d412700728206dae91abab2bc85ecc2a
parent9109f0745d7e0f8e921d2ac75cd1d433ffc43795 (diff)
automatic import of python-pyap
-rw-r--r--.gitignore1
-rw-r--r--python-pyap.spec114
-rw-r--r--sources1
3 files changed, 116 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..83794c8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pyap-0.3.1.tar.gz
diff --git a/python-pyap.spec b/python-pyap.spec
new file mode 100644
index 0000000..8f76fc7
--- /dev/null
+++ b/python-pyap.spec
@@ -0,0 +1,114 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pyap
+Version: 0.3.1
+Release: 1
+Summary: Pyap is an MIT Licensed text processing library, written in Python, for detecting and parsing addresses. Currently it supports USA, Canadian and British addresses.
+License: MIT
+URL: https://pypi.org/project/pyap/
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/80/c1/11817334122325663f739f84864b1cca74f49e263d26f2cbcc2a651146f3/pyap-0.3.1.tar.gz
+BuildArch: noarch
+
+
+%description
+Pyap is an MIT Licensed text processing library, written in Python, for
+detecting and parsing addresses. Currently it supports US πŸ‡ΊπŸ‡Έ, Canadian πŸ‡¨πŸ‡¦ and British πŸ‡¬πŸ‡§ addresses.
+ >>> import pyap
+ >>> test_address = """
+ Lorem ipsum
+ 225 E. John Carpenter Freeway,
+ Suite 1500 Irving, Texas 75062
+ Dorem sit amet
+ """
+ >>> addresses = pyap.parse(test_address, country='US')
+ >>> for address in addresses:
+ # shows found address
+ print(address)
+ # shows address parts
+ print(address.as_dict())
+
+%package -n python3-pyap
+Summary: Pyap is an MIT Licensed text processing library, written in Python, for detecting and parsing addresses. Currently it supports USA, Canadian and British addresses.
+Provides: python-pyap
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-pyap
+Pyap is an MIT Licensed text processing library, written in Python, for
+detecting and parsing addresses. Currently it supports US πŸ‡ΊπŸ‡Έ, Canadian πŸ‡¨πŸ‡¦ and British πŸ‡¬πŸ‡§ addresses.
+ >>> import pyap
+ >>> test_address = """
+ Lorem ipsum
+ 225 E. John Carpenter Freeway,
+ Suite 1500 Irving, Texas 75062
+ Dorem sit amet
+ """
+ >>> addresses = pyap.parse(test_address, country='US')
+ >>> for address in addresses:
+ # shows found address
+ print(address)
+ # shows address parts
+ print(address.as_dict())
+
+%package help
+Summary: Development documents and examples for pyap
+Provides: python3-pyap-doc
+%description help
+Pyap is an MIT Licensed text processing library, written in Python, for
+detecting and parsing addresses. Currently it supports US πŸ‡ΊπŸ‡Έ, Canadian πŸ‡¨πŸ‡¦ and British πŸ‡¬πŸ‡§ addresses.
+ >>> import pyap
+ >>> test_address = """
+ Lorem ipsum
+ 225 E. John Carpenter Freeway,
+ Suite 1500 Irving, Texas 75062
+ Dorem sit amet
+ """
+ >>> addresses = pyap.parse(test_address, country='US')
+ >>> for address in addresses:
+ # shows found address
+ print(address)
+ # shows address parts
+ print(address.as_dict())
+
+%prep
+%autosetup -n pyap-0.3.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-pyap -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.3.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..ec42459
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+b04574e08ca1df14a238b29836ad6e9c pyap-0.3.1.tar.gz