From ef7ac1433ac3df8f183c8a3f030ff793c5f3c346d60e422f3f888dcec4f06407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=C3=A9ta=20Machov=C3=A1?= Date: Wed, 4 Sep 2024 12:23:21 +0000 Subject: [PATCH] - update to 4.10.0: * Remove shebang from filesize.py (#188) * Fix test failures on systems with 32-bit time_t (#177) * Fix handling of negative time deltas (#173) * Fix naturaldelta sub second precision (#169) * Reword the French translation of very small amount of time (#162) * Fix Arabic localization (#160) * metric: Fix precision format (#159) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-humanize?expand=0&rev=29 --- .gitattributes | 23 +++++ .gitignore | 1 + humanize-4.10.0.tar.gz | 3 + humanize-4.9.0.tar.gz | 3 + python-humanize.changes | 184 ++++++++++++++++++++++++++++++++++++++++ python-humanize.spec | 67 +++++++++++++++ 6 files changed, 281 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 humanize-4.10.0.tar.gz create mode 100644 humanize-4.9.0.tar.gz create mode 100644 python-humanize.changes create mode 100644 python-humanize.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/humanize-4.10.0.tar.gz b/humanize-4.10.0.tar.gz new file mode 100644 index 0000000..cd2c1b6 --- /dev/null +++ b/humanize-4.10.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06b6eb0293e4b85e8d385397c5868926820db32b9b654b932f57fa41c23c9978 +size 79192 diff --git a/humanize-4.9.0.tar.gz b/humanize-4.9.0.tar.gz new file mode 100644 index 0000000..389fa0d --- /dev/null +++ b/humanize-4.9.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:582a265c931c683a7e9b8ed9559089dea7edcf6cc95be39a3cbc2c5d5ac2bcfa +size 78465 diff --git a/python-humanize.changes b/python-humanize.changes new file mode 100644 index 0000000..874c071 --- /dev/null +++ b/python-humanize.changes @@ -0,0 +1,184 @@ +------------------------------------------------------------------- +Wed Sep 4 12:12:21 UTC 2024 - Frantisek Simorda + +- update to 4.10.0: + * Remove shebang from filesize.py (#188) + * Fix test failures on systems with 32-bit time_t (#177) + * Fix handling of negative time deltas (#173) + * Fix naturaldelta sub second precision (#169) + * Reword the French translation of very small amount of time (#162) + * Fix Arabic localization (#160) + * metric: Fix precision format (#159) + +------------------------------------------------------------------- +Mon Nov 27 19:01:58 UTC 2023 - Dirk Müller + +- update to 4.9.0: + * Add support for Python 3.13 (#156) @hugovk + * Add Norwegian localization (#155) @fdanielsen + * Add Hebrew localization (#149) @clsn + * Add Klingon translation (#150) @clsn + * Replace Flake8 with Ruff (#157) @hugovk + * Fix DeprecationWarning: Plural value must be an integer, got + float (#147) @dansarpong + * Remove useless shebangs (#141) @aueam + +------------------------------------------------------------------- +Wed Sep 13 08:17:10 UTC 2023 - Dirk Müller + +- update to 4.8.0: + * Add Hungarian localization + * Revise Turkish localization + * Translate "thousand" to "千" for zh_CN + * Move logic to convert aware datetime to naive into function + * Docs: fix formatting of return value + * Declare support for Python 3.12 + * Add Esperanto localization + * Support timezone-aware datetimes in naturaltime + * Update Bengali translation + * Drop support for EOL Python 3.7 + * Add missing keys to extract translatable strings + * Add default Italian thousand and decimal separator + * Add Italian translation for "thousand" and fix singulars + * Add Italian translation for "%s and %s" + * Add Basque translation + * Add latest metric prefixes: ronna, ronto, quetta, quecto + * Add pt_BR separators + * Replace setup.cfg with pyproject.toml + * Filesize simplification + * Fix intword for 1,000 decillion + * Add localisation for thousand, fixing German plurals + * Handle NaN + +------------------------------------------------------------------- +Wed Jan 4 20:02:31 UTC 2023 - Dirk Müller + +- update to 4.4.0: + * Add installation instructions (#56) @hugovk + * Internationalise the decimal separator in intcomma() (#53) @Luflosi + * Internationalise intcomma for de_DE locale (#49) @Luflosi + * Replace short scale with long scale for Polish numbers (#54) @mjmikulski + * Fix intcomma() failing with a string as input when ndigits is not None + (#52) @Luflosi + * Fix some pylint findings (#42) @hugovk + * Fix "ValueError: math domain error" for metric(0) (#47) @liukun + * Add Greek translation (#46) @waseigo + * Polish: Added thousand, fixed big numbers (#43) @dejurin + * Fix intword for negative numbers (#41) @vishket + * Update annotations, docs, and tests: naturaltime can also accept a + timedelta (#31) @nuztalgia + * Update annotations: naturadelta and naturaltime can also accept a float + (#29) @hugovk + * Rename Arabic locale from ar_SA to ar to enable fallbacks (#27) @hugovk + * Use %d for year translations, convert to string for intcomma after (#23) + @carterbox + * Fix intcomma with ndigits=0 (#26) @hugovk + * Add humanize.metric() for converting big/small numbers to SI units (#22) + * Add type hints (#15) @hugovk + * Fix scientific() on small positive numbers (#22) @bwoodsend + * Remove redundant wheel dependency from pyproject.toml (#16) @mgorny + * Support Python 3.11 (#13) @hugovk + * Add Arabic language (jmoiron/humanize#256) @AYMENJD + * Docs: add dark mode toggle and default to system preference + (jmoiron/humanize#255) @hugovk + * Documentation improvements (jmoiron/humanize#254) @mondeja + * Update repo links (#2) @hugovk + +------------------------------------------------------------------- +Thu Oct 13 07:20:09 UTC 2022 - Dirk Müller + +- use https for urls + +------------------------------------------------------------------- +Tue Mar 8 12:37:57 UTC 2022 - Edgar Aichinger + +- update to 4.0.0: + * Drop support for Python 3.6 + * Remove deprecated VERSION, use version instead + * Remove when from naturaldelta() and allow largest timedelta + * Remove deprecated private function aliases + +------------------------------------------------------------------- +Mon Sep 28 11:51:21 UTC 2020 - Dirk Mueller + +- update to 2.6.0: + * Deploy docs to Read the Docs (#148) @hugovk + * Build API reference docs from docstrings using MKDocs (#147) @hugovk + * Function to represent timedeltas without losing precision (precisedelta) (#137) @eldipa + * Improve default locale path discovering. (#146) @mondeja + * Added Ukrainian language to list in README.md (#141) @tuxlabore + +------------------------------------------------------------------- +Thu Jun 4 06:42:45 UTC 2020 - Steve Kowalik + +- Update to 2.4.0: + * Added Spanish (Spain) locale. + * Polish (pl_PL) locales added +- Switch to %pytest macro. + +------------------------------------------------------------------- +Tue Mar 31 05:49:52 UTC 2020 - steven.kowalik@suse.com + +- Update to 2.2.0: + * Added + + Disambiguate naturaldate return: only append year if more than + + ~5 months away (#107) @hugovk + + Add scientific notation to string support (#110) @Thx3r @hugovk + + Add micro- and millisecond units to naturaldelta and + + naturaltime (#104) @hugovk + + Add ndigits option to intcomma (#123) @hugovk + + Show more than bytes for negative file sizes (#122) @hugovk + * Fixed + + Fix: AP style for 0 is 'zero' (#121) @hugovk + * Changed + + Disambiguate naturaldate return: only append year if more than ~5 months away (#107) @hugovk + + Convert remaining tests to use pytest.mark.parametrize (#109) @hugovk + + Refactor some tests to use pytest.mark.parametrize (#108) @hugovk + * Removed + + Drop support for EOL Python 2 (#102) @hugovk +- Fiddle with BuildRequires, adding new modules that are needed +- Switch to pypi source tarball, required for setuptools_scm + +------------------------------------------------------------------- +Wed Jun 5 08:03:04 UTC 2019 - Petr Gajdos + +- test package in %check + +------------------------------------------------------------------- +Mon Dec 10 12:37:51 UTC 2018 - Tomáš Chvátal + +- Fix fdupes call +- Fix Source url + +------------------------------------------------------------------- +Tue Dec 4 12:49:01 UTC 2018 - Matej Cepl + +- Remove superfluous devel dependency for noarch package + +------------------------------------------------------------------- +Sat Jul 1 14:54:14 UTC 2017 - okurz@suse.com + +- Convert to singlespec + +------------------------------------------------------------------- +Fri Dec 18 09:06:59 UTC 2015 - mimi.vx@gmail.com + +- update to 0.5.1 +- use %find_lang macro + +------------------------------------------------------------------- +Sun Dec 8 21:48:32 UTC 2013 - p.drouand@gmail.com + +- Update to version 0.5 + + No changelog available + +------------------------------------------------------------------- +Thu Oct 24 11:06:42 UTC 2013 - speilicke@suse.com + +- Require python-setuptools instead of distribute (upstreams merged) + +------------------------------------------------------------------- +Mon Jul 23 11:20:55 UTC 2012 - saschpe@suse.de + +- Initial version + diff --git a/python-humanize.spec b/python-humanize.spec new file mode 100644 index 0000000..60279e2 --- /dev/null +++ b/python-humanize.spec @@ -0,0 +1,67 @@ +# +# spec file for package python-humanize +# +# Copyright (c) 2024 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/ +# + + +%{?sle15_python_module_pythons} +%global modname humanize +Name: python-humanize +Version: 4.10.0 +Release: 0 +Summary: Python humanize utilities +License: MIT +Group: Development/Languages/Python +URL: https://github.com/python-humanize/humanize +Source: https://files.pythonhosted.org/packages/source/h/humanize/humanize-%{version}.tar.gz +BuildRequires: %{python_module base >= 3.8} +BuildRequires: %{python_module coverage} +BuildRequires: %{python_module hatch_vcs} +BuildRequires: %{python_module pip} +BuildRequires: %{python_module wheel} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +BuildArch: noarch +# SECTION test requirements +BuildRequires: %{python_module freezegun} +BuildRequires: %{python_module pytest} +# /SECTION +%python_subpackages + +%description +This modest package contains various common humanization utilities, like turning +a number into a fuzzy human readable duration ('3 minutes ago') or into a human +readable size or throughput. + +%prep +%setup -q -n %{modname}-%{version} + +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%pytest + +%files %{python_files} +%license LICENCE +%doc README.md +%{python_sitelib}/* +%{python_sitelib}/humanize/locale/* + +%changelog