forked from pool/python-num2words
-Version 0.5.12 -- 2022/08/19 Support Japanese Reiwa (令和/れいわ) era. (#412) Add basic farsi support (#354) Added Tajik language support (#406) Fix Amharic language support (#465) Fix Hebrew pluralize and implement to_currency (#330) Add support to translate some currencies in italian language (#434) Fix Polish twenties (#345) Add uzs for ru and en (#422) Added support for Esperanto numbers. (#387) [ADD] to ordinal number for Turkish (#468) Fix zeroth in Dutch to nulde fixing (#326) -Version 0.5.11 -- 2022/08/03 Add KZT and UAH currencies to lang RU (#264) Add es_NI currency (#276) Update .gitignore to add .eggs/ directory (#280) Fix Hebrew support (#289) Update test_tr.py to increase coverage (#298) Add ordinal 12,345 to ES test suite to increase coverage (#287) Add simple tests for lang_DK.py (#286) Add testcase for lang_EN.py (#288) Add more tests to base.py (#283) Fixed misspelling of 21 (cardinal and ordinal number) in IT language (#270) Romanian issues 259 (#260) Adding Language Support for Telugu / Bug Fix in Kannada (#263) Add support of Kazakh language (KZ) (#306) Update README.rst (#307) Added support for Hungarian language (#310) [UPD] Readme file (#363) [ADD] num2words: add traslation to spanish of several currencies (#356) OBS-URL: https://build.opensuse.org/request/show/1007951 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-num2words?expand=0&rev=12
75 lines
2.3 KiB
RPMSpec
75 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-num2words
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
Name: python-num2words
|
|
Version: 0.5.12
|
|
Release: 0
|
|
Summary: Modules to convert numbers to words
|
|
License: LGPL-2.1-only
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/savoirfairelinux/num2words
|
|
Source: https://files.pythonhosted.org/packages/source/n/num2words/num2words-%{version}.tar.gz
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-docopt >= 0.6.2
|
|
Requires(post): update-alternatives
|
|
Requires(postun):update-alternatives
|
|
BuildArch: noarch
|
|
# SECTION test requirements
|
|
BuildRequires: %{python_module delegator.py}
|
|
BuildRequires: %{python_module docopt >= 0.6.2}
|
|
BuildRequires: %{python_module pytest}
|
|
# /SECTION
|
|
%python_subpackages
|
|
|
|
%description
|
|
num2words is a library that converts numbers like "42" to words like "forty-two".
|
|
It supports multiple languages and can even generate ordinal numbers like "forty-second"
|
|
(although this last feature is a bit buggy for some languages at the moment).
|
|
|
|
%prep
|
|
%setup -q -n num2words-%{version}
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_clone -a %{buildroot}%{_bindir}/num2words
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
# test_cli.py has 'python' command hardcoded
|
|
%pytest -k "not test_cli" tests
|
|
|
|
%post
|
|
%python_install_alternative num2words
|
|
|
|
%postun
|
|
%python_uninstall_alternative num2words
|
|
|
|
%files %{python_files}
|
|
%doc CHANGES.rst README.rst
|
|
%license COPYING
|
|
%{python_sitelib}/*
|
|
%python_alternative %{_bindir}/num2words
|
|
|
|
%changelog
|