Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-py-moneyed for openSUSE:Factory checked in at 2024-12-11 21:03:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-py-moneyed (Old) and /work/SRC/openSUSE:Factory/.python-py-moneyed.new.29675 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-py-moneyed" Wed Dec 11 21:03:55 2024 rev:5 rq:1229977 version:3.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-py-moneyed/python-py-moneyed.changes 2022-11-28 11:07:30.611876038 +0100 +++ /work/SRC/openSUSE:Factory/.python-py-moneyed.new.29675/python-py-moneyed.changes 2024-12-11 21:08:51.800306174 +0100 @@ -1,0 +2,7 @@ +Wed Dec 11 01:37:46 UTC 2024 - Steve Kowalik <steven.kowa...@suse.com> + +- Add patch add-missing-xcg.patch: + * Support the upcoming Caribbean guilder (XCG) +- Switch to pyproject macros. + +------------------------------------------------------------------- New: ---- add-missing-xcg.patch BETA DEBUG BEGIN: New: - Add patch add-missing-xcg.patch: * Support the upcoming Caribbean guilder (XCG) BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-py-moneyed.spec ++++++ --- /var/tmp/diff_new_pack.rAklmU/_old 2024-12-11 21:08:52.224323862 +0100 +++ /var/tmp/diff_new_pack.rAklmU/_new 2024-12-11 21:08:52.228324029 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-py-moneyed # -# Copyright (c) 2022 SUSE LLC +# 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 @@ -23,8 +23,12 @@ License: BSD-3-Clause URL: https://github.com/limist/py-moneyed Source: https://github.com/py-moneyed/py-moneyed/archive/refs/tags/v%{version}.tar.gz#/py-moneyed-%{version}.tar.gz +# PATCH-FIX-OPENSUSE Add XCG -- Caribbean guilder +Patch0: add-missing-xcg.patch BuildRequires: %{python_module base >= 3.6} +BuildRequires: %{python_module pip} BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wheel} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-Babel >= 2.8.0 @@ -34,8 +38,6 @@ BuildRequires: %{python_module mypy >= 0.812} BuildRequires: %{python_module Babel >= 2.8.0} BuildRequires: %{python_module pytest >= 2.3.0} -BuildRequires: %{python_module pytest >= 2.3.0} -BuildRequires: %{python_module tox >= 1.6.0} BuildRequires: %{python_module typing-extensions >= 3.7.4.3} # /SECTION %python_subpackages @@ -47,10 +49,10 @@ %autosetup -p1 -n py-moneyed-%{version} %build -%python_build +%pyproject_wheel %install -%python_install +%pyproject_install %python_expand %fdupes %{buildroot}%{$python_sitelib} %check @@ -60,5 +62,5 @@ %doc CHANGES.rst README.rst %license LICENSE %{python_sitelib}/moneyed -%{python_sitelib}/py_moneyed-%{version}*-info +%{python_sitelib}/py_moneyed-%{version}.dist-info ++++++ add-missing-xcg.patch ++++++ Index: py-moneyed-3.0/src/moneyed/classes.py =================================================================== --- py-moneyed-3.0.orig/src/moneyed/classes.py +++ py-moneyed-3.0/src/moneyed/classes.py @@ -723,6 +723,7 @@ XBB = add_currency("XBB", "956") XBC = add_currency("XBC", "957") XBD = add_currency("XBD", "958") XCD = add_currency("XCD", "951", 100) +XCG = add_currency("XCG", None, 100) XDR = add_currency("XDR", "960") XFO = add_currency("XFO", None) XFU = add_currency("XFU", None)