[packages/python3-idna] Up to 3.3.
arekm
arekm at pld-linux.org
Fri Oct 15 07:53:01 CEST 2021
commit d47db7839317e64da4ece2998914415765b70f69
Author: Arkadiusz Miśkiewicz <arekm at maven.pl>
Date: Fri Oct 15 05:52:23 2021 +0000
Up to 3.3.
python-idna.spec | 123 ------------------------------------------------------
python3-idna.spec | 63 ++++++++++++++++++++++++++++
2 files changed, 63 insertions(+), 123 deletions(-)
---
diff --git a/python-idna.spec b/python-idna.spec
deleted file mode 100644
index 59d6312..0000000
--- a/python-idna.spec
+++ /dev/null
@@ -1,123 +0,0 @@
-#
-# Conditional build:
-%bcond_without tests # unit tests
-%bcond_without python2 # CPython 2.x module
-%bcond_without python3 # CPython 3.x module
-
-%define module idna
-Summary: Internationalized Domain Names in Applications (IDNA) for Python 2
-Summary(pl.UTF-8): IDNA (Internationalized Domain Names in Applications) dla Pythona 2
-Name: python-%{module}
-Version: 2.9
-Release: 2
-License: BSD
-Group: Libraries/Python
-#Source0Download: https://github.com/kjd/idna/releases
-Source0: https://github.com/kjd/idna/archive/v%{version}/%{module}-%{version}.tar.gz
-# Source0-md5: 117c8fbeabd36d7206121dec962ef011
-URL: https://github.com/kjd/idna
-BuildRequires: rpm-pythonprov
-BuildRequires: rpmbuild(macros) >= 1.714
-%if %{with python2}
-BuildRequires: python-modules >= 1:2.7
-BuildRequires: python-setuptools
-%endif
-%if %{with python3}
-BuildRequires: python3-modules >= 1:3.4
-BuildRequires: python3-setuptools
-%endif
-Requires: python-modules >= 1:2.7
-BuildArch: noarch
-BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
-
-%description
-A library to support the Internationalised Domain Names in
-Applications (IDNA) protocol as specified in RFC 5891. This version of
-the protocol is often referred to as IDNA2008 and can produce
-different results from the earlier standard from 2003.
-
-The library is also intended to act as a suitable drop-in replacement
-for the encodings.idna module that comes with the Python standard
-library but currently only supports the older 2003 specification.
-
-%description -l pl.UTF-8
-Biblioteka obsługująca protokół IDNA (International Domain Names in
-Applications - międzynarodowe nazwy domen w aplikacjach) według
-specyfikacji RFC 5891. Ta wersja protokołu jest często nazywana
-IDNA2008 i może dawać inne wyniki, niż wcześniejszy standard z 2003
-roku.
-
-Ta biblioteka ma służyć także jako zamiennik modułu encodings.idna
-dostarczanego z biblioteką standardową Pythona, ale obecnie
-obsługująca tylko starszą specyfikację z 2003.
-
-%package -n python3-%{module}
-Summary: Internationalized Domain Names in Applications (IDNA) for Python 3
-Summary(pl.UTF-8): IDNA (Internationalized Domain Names in Applications) dla Pythona 3
-Group: Libraries/Python
-Requires: python3-modules >= 1:3.4
-
-%description -n python3-%{module}
-A library to support the Internationalised Domain Names in
-Applications (IDNA) protocol as specified in RFC 5891. This version of
-the protocol is often referred to as IDNA2008 and can produce
-different results from the earlier standard from 2003.
-
-The library is also intended to act as a suitable drop-in replacement
-for the encodings.idna module that comes with the Python standard
-library but currently only supports the older 2003 specification.
-
-%description -n python3-%{module} -l pl.UTF-8
-Biblioteka obsługująca protokół IDNA (International Domain Names in
-Applications - międzynarodowe nazwy domen w aplikacjach) według
-specyfikacji RFC 5891. Ta wersja protokołu jest często nazywana
-IDNA2008 i może dawać inne wyniki, niż wcześniejszy standard z 2003
-roku.
-
-Ta biblioteka ma służyć także jako zamiennik modułu encodings.idna
-dostarczanego z biblioteką standardową Pythona, ale obecnie
-obsługująca tylko starszą specyfikację z 2003.
-
-%prep
-%setup -q -n %{module}-%{version}
-
-%build
-%if %{with python2}
-%py_build %{?with_tests:test}
-%endif
-
-%if %{with python3}
-%py3_build %{?with_tests:test}
-%endif
-
-%install
-rm -rf $RPM_BUILD_ROOT
-
-%if %{with python2}
-%py_install
-
-%py_postclean
-%endif
-
-%if %{with python3}
-%py3_install
-%endif
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-%if %{with python2}
-%files
-%defattr(644,root,root,755)
-%doc HISTORY.rst LICENSE.rst README.rst
-%{py_sitescriptdir}/%{module}
-%{py_sitescriptdir}/%{module}-%{version}-py*.egg-info
-%endif
-
-%if %{with python3}
-%files -n python3-%{module}
-%defattr(644,root,root,755)
-%doc HISTORY.rst LICENSE.rst README.rst
-%{py3_sitescriptdir}/%{module}
-%{py3_sitescriptdir}/%{module}-%{version}-py*.egg-info
-%endif
diff --git a/python3-idna.spec b/python3-idna.spec
new file mode 100644
index 0000000..fff6271
--- /dev/null
+++ b/python3-idna.spec
@@ -0,0 +1,63 @@
+#
+# Conditional build:
+%bcond_without tests # unit tests
+
+%define module idna
+Summary: Internationalized Domain Names in Applications (IDNA) for Python 2
+Summary(pl.UTF-8): IDNA (Internationalized Domain Names in Applications) dla Pythona 2
+Name: python3-%{module}
+Version: 3.3
+Release: 1
+License: BSD
+Group: Libraries/Python
+#Source0Download: https://github.com/kjd/idna/releases
+Source0: https://github.com/kjd/idna/archive/v%{version}/%{module}-%{version}.tar.gz
+# Source0-md5: ce91a53442503d8e94b869957b7d4981
+URL: https://github.com/kjd/idna
+BuildRequires: rpm-pythonprov
+BuildRequires: rpmbuild(macros) >= 1.714
+BuildRequires: python3-modules >= 1:3.6
+BuildRequires: python3-setuptools
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A library to support the Internationalised Domain Names in
+Applications (IDNA) protocol as specified in RFC 5891. This version of
+the protocol is often referred to as IDNA2008 and can produce
+different results from the earlier standard from 2003.
+
+The library is also intended to act as a suitable drop-in replacement
+for the encodings.idna module that comes with the Python standard
+library but currently only supports the older 2003 specification.
+
+%description -l pl.UTF-8
+Biblioteka obsługująca protokół IDNA (International Domain Names in
+Applications - międzynarodowe nazwy domen w aplikacjach) według
+specyfikacji RFC 5891. Ta wersja protokołu jest często nazywana
+IDNA2008 i może dawać inne wyniki, niż wcześniejszy standard z 2003
+roku.
+
+Ta biblioteka ma służyć także jako zamiennik modułu encodings.idna
+dostarczanego z biblioteką standardową Pythona, ale obecnie
+obsługująca tylko starszą specyfikację z 2003.
+
+%prep
+%setup -q -n %{module}-%{version}
+
+%build
+%py3_build %{?with_tests:test}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%py3_install
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc HISTORY.rst README.rst
+%{py3_sitescriptdir}/%{module}
+%{py3_sitescriptdir}/%{module}-%{version}-py*.egg-info
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/python3-idna.git/commitdiff/d47db7839317e64da4ece2998914415765b70f69
More information about the pld-cvs-commit
mailing list