diff options
author | CoprDistGit <infra@openeuler.org> | 2023-03-09 11:33:34 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-03-09 11:33:34 +0000 |
commit | e0d3cbf18cec89a5ebf7fa489218a0ceeb8409ae (patch) | |
tree | ef280028f36c48412f9f549cacde1492a0eb3f4d | |
parent | 983afffa32d6862e7e54fa33eb7626ca356e3a71 (diff) |
automatic import of python-google-i18n-address
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-google-i18n-address.spec | 97 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 99 insertions, 0 deletions
@@ -0,0 +1 @@ +/google-i18n-address-2.5.2.tar.gz diff --git a/python-google-i18n-address.spec b/python-google-i18n-address.spec new file mode 100644 index 0000000..dc1f3e1 --- /dev/null +++ b/python-google-i18n-address.spec @@ -0,0 +1,97 @@ +%global _empty_manifest_terminate_build 0 +Name: python-google-i18n-address +Version: 2.5.2 +Release: 1 +Summary: Address validation helpers for Google's i18n address database +License: BSD +URL: https://github.com/mirumee/google-i18n-address +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/8d/ed/d66b80421c9f25c15768f1fbb1f65258c62ca6b487d8eb6fb615527dd4ec/google-i18n-address-2.5.2.tar.gz +BuildArch: noarch + +Requires: python3-requests + +%description +|codecov.io| |Circle CI| |PyPi downloads| |requires.io| |PyPi version| |PyPi pythons| |GitHub| +This package contains a copy of `Google's i18n +address <https://chromium-i18n.appspot.com/ssl-address>`_ metadata repository +that contains great data but comes with no uptime guarantees. +Contents of this package will allow you to programatically build address +forms that adhere to rules of a particular region or country, validate +local addresses and format them to produce a valid address label for +delivery. +The package also contains a Python interface for address validation. + +%package -n python3-google-i18n-address +Summary: Address validation helpers for Google's i18n address database +Provides: python-google-i18n-address +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-google-i18n-address +|codecov.io| |Circle CI| |PyPi downloads| |requires.io| |PyPi version| |PyPi pythons| |GitHub| +This package contains a copy of `Google's i18n +address <https://chromium-i18n.appspot.com/ssl-address>`_ metadata repository +that contains great data but comes with no uptime guarantees. +Contents of this package will allow you to programatically build address +forms that adhere to rules of a particular region or country, validate +local addresses and format them to produce a valid address label for +delivery. +The package also contains a Python interface for address validation. + +%package help +Summary: Development documents and examples for google-i18n-address +Provides: python3-google-i18n-address-doc +%description help +|codecov.io| |Circle CI| |PyPi downloads| |requires.io| |PyPi version| |PyPi pythons| |GitHub| +This package contains a copy of `Google's i18n +address <https://chromium-i18n.appspot.com/ssl-address>`_ metadata repository +that contains great data but comes with no uptime guarantees. +Contents of this package will allow you to programatically build address +forms that adhere to rules of a particular region or country, validate +local addresses and format them to produce a valid address label for +delivery. +The package also contains a Python interface for address validation. + +%prep +%autosetup -n google-i18n-address-2.5.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-google-i18n-address -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 2.5.2-1 +- Package Spec generated @@ -0,0 +1 @@ +eece630eae446c2c0f4dbda5a267e58a google-i18n-address-2.5.2.tar.gz |