Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-os-service-types for
openSUSE:Factory checked in at 2025-11-10 19:17:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-os-service-types (Old)
and /work/SRC/openSUSE:Factory/.python-os-service-types.new.1980 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-os-service-types"
Mon Nov 10 19:17:19 2025 rev:11 rq:1316774 version:1.8.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-os-service-types/python-os-service-types.changes
2025-02-24 15:51:45.434753245 +0100
+++
/work/SRC/openSUSE:Factory/.python-os-service-types.new.1980/python-os-service-types.changes
2025-11-10 19:17:38.781115803 +0100
@@ -1,0 +2,35 @@
+Sun Nov 9 12:37:19 UTC 2025 - Dirk Müller <[email protected]>
+
+- update to 1.8.0:
+ * Migrate setup configuration to pyproject.toml
+ * Add typing, mypy
+ * Add ruff
+ * Drop support for Python 3.9
+ * Update python classifier in setup.cfg
+ * Updated from OpenStack Service Type Authority
+ * Bump hacking
+ * Updated from OpenStack Service Type Authority
+ * Update api\_ref for Cyborg project
+ * Add Python 3.8 and 3.9 to supported runtimes
+ * Update CI to use unversioned jobs template
+ * Use py3 as the default runtime for tox
+ * Add doc/requirements
+ * Modernize package a little
+ * setup.cfg: Replace dashes by underscores
+ * Bump hacking to 3.0.1
+ * bump py37 to py38 in tox.ini
+ * Fix pep8 testing for ubuntu focal
+ * Switch to newer openstackdocstheme and reno versions
+ * [ussuri][goal] Drop python 2.7 support and testing
+ * Switch to Ussuri jobs
+ * Bump the openstackdocstheme extension to 1.20
+ * Blacklist sphinx 2.1.0 (autodoc bug)
+ * Update the constraints url
+ * Updated from OpenStack Service Type Authority
+ * Update api-ref location
+ * Add Python 3 Train unit tests
+ * Sync Sphinx requirement
+ * Update testing jobs
+- switch to singlespec
+
+-------------------------------------------------------------------
Old:
----
_service
os-service-types-1.7.0.tar.gz
New:
----
os_service_types-1.8.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-os-service-types.spec ++++++
--- /var/tmp/diff_new_pack.bA1Zxs/_old 2025-11-10 19:17:40.713196744 +0100
+++ /var/tmp/diff_new_pack.bA1Zxs/_new 2025-11-10 19:17:40.733197581 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-os-service-types
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,22 +17,25 @@
Name: python-os-service-types
-Version: 1.7.0
+Version: 1.8.0
Release: 0
Summary: Python library for consuming OpenStack sevice-types-authority
data
License: Apache-2.0
Group: Development/Languages/Python
URL: https://docs.openstack.org/os-service-types/latest/
-Source0:
https://files.pythonhosted.org/packages/source/o/os-service-types/os-service-types-%{version}.tar.gz
+Source0:
https://files.pythonhosted.org/packages/source/o/os_service_types/os_service_types-%{version}.tar.gz
+BuildRequires: %{python_module oslotest}
+BuildRequires: %{python_module pbr >= 2.0.0}
+BuildRequires: %{python_module pip}
+BuildRequires: %{python_module python-subunit}
+BuildRequires: %{python_module requests-mock}
+BuildRequires: %{python_module six}
+BuildRequires: %{python_module stestr}
+BuildRequires: %{python_module testscenarios}
+BuildRequires: %{python_module wheel}
BuildRequires: openstack-macros
-BuildRequires: python3-oslotest
-BuildRequires: python3-pbr >= 2.0.0
-BuildRequires: python3-python-subunit
-BuildRequires: python3-requests-mock
-BuildRequires: python3-six
-BuildRequires: python3-stestr
-BuildRequires: python3-testscenarios
BuildArch: noarch
+%python_subpackages
%description
The OpenStack Service Types Authority contains information about official
@@ -42,21 +45,6 @@
version of the data to use in case network access is for some reason not
possible and local caching of the fetched data.
-%package -n python3-os-service-types
-Summary: Python library for consuming OpenStack sevice-types-authority
data
-Requires: python3-pbr >= 2.0.0
-Requires: python3-six
-
-%description -n python3-os-service-types
-The OpenStack Service Types Authority contains information about official
-OpenStack services and their historical service-type aliases.
-The data is in JSON and the latest data should always be used. This simple
-library exists to allow for easy consumption of the data, along with a built-in
-version of the data to use in case network access is for some reason not
-possible and local caching of the fetched data.
-
-This package contains the Python 3.x module.
-
%package -n os-service-types-doc
Summary: Documentation for OpenStack os-service-types library
BuildRequires: python3-Sphinx
@@ -72,7 +60,7 @@
This package contains the documentation.
%prep
-%autosetup -p1 -n os-service-types-1.7.0
+%autosetup -p1 -n os_service_types-%{version}
%py_req_cleanup
# The TestRemote test cases must be excluded because they introduce a circular
# dependency on python-keystoneauth1.
@@ -81,25 +69,25 @@
rm os_service_types/tests/test_remote.py
%build
-%{py3_build}
+%pyproject_wheel
# generate html docs
-PBR_VERSION=%{version} %sphinx_build -b html doc/source doc/build/html
+PBR_VERSION=%{version} %{sphinx_build} -b html doc/source doc/build/html
# remove the sphinx-build leftovers
rm -rf doc/build/html/.{doctrees,buildinfo}
%install
-%{py3_install}
+%pyproject_install
%check
export OS_TEST_PATH=os_service_types/tests
%{openstack_stestr_run}
-%files -n python3-os-service-types
+%files %{python_files}
%license LICENSE
%doc README.rst ChangeLog
-%{python3_sitelib}/os_service_types
-%{python3_sitelib}/*.egg-info
+%{python_sitelib}/os_service_types
+%{python_sitelib}/os_service_types-%{version}.dist-info
%files -n os-service-types-doc
%license LICENSE