From ad201f7f507b20f2bedff7e9ed769bca43c8e053 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Mon, 10 Apr 2023 07:03:39 +0000 Subject: automatic import of python-idna --- .gitignore | 1 + python-idna.spec | 120 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 122 insertions(+) create mode 100644 python-idna.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..91348f5 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/idna-3.4.tar.gz diff --git a/python-idna.spec b/python-idna.spec new file mode 100644 index 0000000..6d1648f --- /dev/null +++ b/python-idna.spec @@ -0,0 +1,120 @@ +%global _empty_manifest_terminate_build 0 +Name: python-idna +Version: 3.4 +Release: 1 +Summary: Internationalized Domain Names in Applications (IDNA) +License: None +URL: https://pypi.org/project/idna/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/8b/e1/43beb3d38dba6cb420cefa297822eac205a277ab43e5ba5d5c46faf96438/idna-3.4.tar.gz +BuildArch: noarch + + +%description +Support for the Internationalized Domain Names in +Applications (IDNA) protocol as specified in `RFC 5891 +`_. This is the latest version of +the protocol and is sometimes referred to as “IDNA 2008”. +This library also provides support for Unicode Technical +Standard 46, `Unicode IDNA Compatibility Processing +`_. +This acts as a suitable replacement for the “encodings.idna” +module that comes with the Python standard library, but which +only supports the older superseded IDNA specification (`RFC 3490 +`_). +Basic functions are simply executed: + >>> import idna + >>> idna.encode('ドメイン.テスト') + b'xn--eckwd4c7c.xn--zckzah' + >>> print(idna.decode('xn--eckwd4c7c.xn--zckzah')) + ドメイン.テスト + +%package -n python3-idna +Summary: Internationalized Domain Names in Applications (IDNA) +Provides: python-idna +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-idna +Support for the Internationalized Domain Names in +Applications (IDNA) protocol as specified in `RFC 5891 +`_. This is the latest version of +the protocol and is sometimes referred to as “IDNA 2008”. +This library also provides support for Unicode Technical +Standard 46, `Unicode IDNA Compatibility Processing +`_. +This acts as a suitable replacement for the “encodings.idna” +module that comes with the Python standard library, but which +only supports the older superseded IDNA specification (`RFC 3490 +`_). +Basic functions are simply executed: + >>> import idna + >>> idna.encode('ドメイン.テスト') + b'xn--eckwd4c7c.xn--zckzah' + >>> print(idna.decode('xn--eckwd4c7c.xn--zckzah')) + ドメイン.テスト + +%package help +Summary: Development documents and examples for idna +Provides: python3-idna-doc +%description help +Support for the Internationalized Domain Names in +Applications (IDNA) protocol as specified in `RFC 5891 +`_. This is the latest version of +the protocol and is sometimes referred to as “IDNA 2008”. +This library also provides support for Unicode Technical +Standard 46, `Unicode IDNA Compatibility Processing +`_. +This acts as a suitable replacement for the “encodings.idna” +module that comes with the Python standard library, but which +only supports the older superseded IDNA specification (`RFC 3490 +`_). +Basic functions are simply executed: + >>> import idna + >>> idna.encode('ドメイン.テスト') + b'xn--eckwd4c7c.xn--zckzah' + >>> print(idna.decode('xn--eckwd4c7c.xn--zckzah')) + ドメイン.テスト + +%prep +%autosetup -n idna-3.4 + +%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-idna -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot - 3.4-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..52ead0b --- /dev/null +++ b/sources @@ -0,0 +1 @@ +13ea24e076212b6baae1135a116d1e0e idna-3.4.tar.gz -- cgit v1.2.3