Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-oslo.policy for 
openSUSE:Factory checked in at 2023-03-07 16:49:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-oslo.policy (Old)
 and      /work/SRC/openSUSE:Factory/.python-oslo.policy.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-oslo.policy"

Tue Mar  7 16:49:40 2023 rev:20 rq:1069736 version:4.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-oslo.policy/python-oslo.policy.changes    
2022-10-01 17:44:32.929822058 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-oslo.policy.new.31432/python-oslo.policy.changes
 2023-03-07 16:50:15.145558707 +0100
@@ -1,0 +2,10 @@
+Mon Mar  6 20:46:19 UTC 2023 - cloud-de...@suse.de
+
+- update to version 4.1.1
+  - Fix py38 jobs by using focal rather than jammy
+  - Add Python3 antelope unit tests
+  - Imported Translations from Zanata
+  - Update master for stable/zed
+- add 0001-Avoid-TypeError-when-building-with-Sphinx-6.1.1-and-.patch
+
+-------------------------------------------------------------------

Old:
----
  oslo.policy-4.0.0.tar.gz

New:
----
  0001-Avoid-TypeError-when-building-with-Sphinx-6.1.1-and-.patch
  oslo.policy-4.1.1.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-oslo.policy.spec ++++++
--- /var/tmp/diff_new_pack.7C3hAL/_old  2023-03-07 16:50:15.789562096 +0100
+++ /var/tmp/diff_new_pack.7C3hAL/_new  2023-03-07 16:50:15.793562117 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-oslo.policy
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,14 @@
 
 
 Name:           python-oslo.policy
-Version:        4.0.0
+Version:        4.1.1
 Release:        0
 Summary:        OpenStack Oslo Policy library
 License:        Apache-2.0
 Group:          Development/Languages/Python
 URL:            https://docs.openstack.org/oslo.policy
-Source0:        
https://files.pythonhosted.org/packages/source/o/oslo.policy/oslo.policy-4.0.0.tar.gz
+Source0:        
https://files.pythonhosted.org/packages/source/o/oslo.policy/oslo.policy-4.1.1.tar.gz
+Patch1:         0001-Avoid-TypeError-when-building-with-Sphinx-6.1.1-and-.patch
 BuildRequires:  openstack-macros
 BuildRequires:  python3-PyYAML >= 5.1
 BuildRequires:  python3-oslo.config >= 6.0.0
@@ -73,7 +74,7 @@
 Documentation for the Oslo Policy library.
 
 %prep
-%autosetup -p1 -n oslo.policy-4.0.0
+%autosetup -p1 -n oslo.policy-4.1.1
 %py_req_cleanup
 
 %build
@@ -88,7 +89,7 @@
 %{py3_install}
 
 %check
-python3 -m stestr.cli run
+%{openstack_stestr_run}
 
 %files  -n python3-oslo.policy
 %license LICENSE

++++++ 0001-Avoid-TypeError-when-building-with-Sphinx-6.1.1-and-.patch ++++++
>From 5274d612bc5811bc3c9f740f29e1b015a4e8672d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dirk=20M=C3=BCller?= <d...@dmllr.de>
Date: Mon, 6 Mar 2023 21:48:26 +0100
Subject: [PATCH] Avoid TypeError when building with Sphinx 6.1.1 and above

see https://github.com/sphinx-doc/sphinx/issues/11094 for the
investigation and the fix.

Change-Id: I836df2bc88d416415c395245f012d6990fd006b2
---
 doc/source/conf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/source/conf.py b/doc/source/conf.py
index e390675..84c108a 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -98,7 +98,7 @@ man_pages = [
 # -- sphinx.ext.extlinks configuration ---------------------------------------
 
 extlinks = {
-    'example': (source_tree + '/oslo_policy/%s', ''),
+    'example': (source_tree + '/oslo_policy/%s', None),
 }
 
 # -- sphinxcontrib.apidoc configuration --------------------------------------
-- 
2.39.2


++++++ oslo.policy-4.0.0.tar.gz -> oslo.policy-4.1.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.policy-4.0.0/.zuul.yaml 
new/oslo.policy-4.1.1/.zuul.yaml
--- old/oslo.policy-4.0.0/.zuul.yaml    2022-06-17 12:12:13.000000000 +0200
+++ new/oslo.policy-4.1.1/.zuul.yaml    2023-02-21 18:37:06.000000000 +0100
@@ -13,6 +13,7 @@
 - job:
     name: cross-nova-tox-py38
     parent: openstack-tox
+    nodeset: ubuntu-focal
     description: |
       Run cross-project unit tests on nova.
     vars:
@@ -25,6 +26,7 @@
 - job:
     name: cross-neutron-tox-py38
     parent: openstack-tox
+    nodeset: ubuntu-focal
     description: |
       Run cross-project unit tests on neutron.
     timeout: 3600
@@ -39,7 +41,7 @@
     templates:
       - check-requirements
       - lib-forward-testing-python3
-      - openstack-python3-zed-jobs
+      - openstack-python3-jobs
       - periodic-stable-jobs
       - publish-openstack-docs-pti
       - release-notes-jobs-python3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.policy-4.0.0/ChangeLog 
new/oslo.policy-4.1.1/ChangeLog
--- old/oslo.policy-4.0.0/ChangeLog     2022-06-17 12:12:44.000000000 +0200
+++ new/oslo.policy-4.1.1/ChangeLog     2023-02-21 18:37:31.000000000 +0100
@@ -1,6 +1,18 @@
 CHANGES
 =======
 
+4.1.1
+-----
+
+* Fix py38 jobs by using focal rather than jammy
+
+4.1.0
+-----
+
+* Imported Translations from Zanata
+* Add Python3 antelope unit tests
+* Update master for stable/zed
+
 4.0.0
 -----
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.policy-4.0.0/PKG-INFO 
new/oslo.policy-4.1.1/PKG-INFO
--- old/oslo.policy-4.0.0/PKG-INFO      2022-06-17 12:12:45.064735400 +0200
+++ new/oslo.policy-4.1.1/PKG-INFO      2023-02-21 18:37:31.283450600 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: oslo.policy
-Version: 4.0.0
+Version: 4.1.1
 Summary: Oslo Policy library
 Home-page: https://docs.openstack.org/oslo.policy/latest/
 Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.policy-4.0.0/oslo.policy.egg-info/PKG-INFO 
new/oslo.policy-4.1.1/oslo.policy.egg-info/PKG-INFO
--- old/oslo.policy-4.0.0/oslo.policy.egg-info/PKG-INFO 2022-06-17 
12:12:44.000000000 +0200
+++ new/oslo.policy-4.1.1/oslo.policy.egg-info/PKG-INFO 2023-02-21 
18:37:31.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.2
 Name: oslo.policy
-Version: 4.0.0
+Version: 4.1.1
 Summary: Oslo Policy library
 Home-page: https://docs.openstack.org/oslo.policy/latest/
 Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.policy-4.0.0/oslo.policy.egg-info/SOURCES.txt 
new/oslo.policy-4.1.1/oslo.policy.egg-info/SOURCES.txt
--- old/oslo.policy-4.0.0/oslo.policy.egg-info/SOURCES.txt      2022-06-17 
12:12:45.000000000 +0200
+++ new/oslo.policy-4.1.1/oslo.policy.egg-info/SOURCES.txt      2023-02-21 
18:37:31.000000000 +0100
@@ -120,6 +120,7 @@
 releasenotes/source/wallaby.rst
 releasenotes/source/xena.rst
 releasenotes/source/yoga.rst
+releasenotes/source/zed.rst
 releasenotes/source/_static/.placeholder
 releasenotes/source/_templates/.placeholder
 releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.policy-4.0.0/oslo.policy.egg-info/pbr.json 
new/oslo.policy-4.1.1/oslo.policy.egg-info/pbr.json
--- old/oslo.policy-4.0.0/oslo.policy.egg-info/pbr.json 2022-06-17 
12:12:44.000000000 +0200
+++ new/oslo.policy-4.1.1/oslo.policy.egg-info/pbr.json 2023-02-21 
18:37:31.000000000 +0100
@@ -1 +1 @@
-{"git_version": "5bd767b", "is_release": true}
\ No newline at end of file
+{"git_version": "043db50", "is_release": true}
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.policy-4.0.0/oslo_policy/locale/en_GB/LC_MESSAGES/oslo_policy.po 
new/oslo.policy-4.1.1/oslo_policy/locale/en_GB/LC_MESSAGES/oslo_policy.po
--- old/oslo.policy-4.0.0/oslo_policy/locale/en_GB/LC_MESSAGES/oslo_policy.po   
2022-06-17 12:12:13.000000000 +0200
+++ new/oslo.policy-4.1.1/oslo_policy/locale/en_GB/LC_MESSAGES/oslo_policy.po   
2023-02-21 18:37:06.000000000 +0100
@@ -2,15 +2,16 @@
 # Andi Chandler <a...@gowling.com>, 2016. #zanata
 # Andi Chandler <a...@gowling.com>, 2017. #zanata
 # Andi Chandler <a...@gowling.com>, 2018. #zanata
+# Andi Chandler <a...@gowling.com>, 2022. #zanata
 msgid ""
 msgstr ""
 "Project-Id-Version: oslo.policy VERSION\n"
 "Report-Msgid-Bugs-To: https://bugs.launchpad.net/openstack-i18n/\n";
-"POT-Creation-Date: 2018-08-07 10:53+0000\n"
+"POT-Creation-Date: 2022-09-09 16:03+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"PO-Revision-Date: 2018-08-08 09:50+0000\n"
+"PO-Revision-Date: 2022-10-16 10:54+0000\n"
 "Last-Translator: Andi Chandler <a...@gowling.com>\n"
 "Language-Team: English (United Kingdom)\n"
 "Language: en_GB\n"
@@ -71,8 +72,14 @@
 msgid "Rules must be an instance of dict or Rules, got %s instead"
 msgstr "Rules must be an instance of dict or Rules, got %s instead"
 
-msgid "The file that defines policies."
-msgstr "The file that defines policies."
+msgid ""
+"The relative or absolute path of a file that maps roles to permissions for a "
+"given service. Relative paths must be specified in relation to the "
+"configuration file setting this option."
+msgstr ""
+"The relative or absolute path of a file that maps roles to permissions for a "
+"given service. Relative paths must be specified in relation to the "
+"configuration file setting this option."
 
 msgid ""
 "This option controls whether or not to enforce scope when evaluating "
@@ -89,6 +96,27 @@
 "message will be logged informing operators that policies are being invoked "
 "with mismatching scope."
 
+msgid ""
+"This option controls whether or not to use old deprecated defaults when "
+"evaluating policies. If ``True``, the old deprecated defaults are not going "
+"to be evaluated. This means if any existing token is allowed for old "
+"defaults but is disallowed for new defaults, it will be disallowed. It is "
+"encouraged to enable this flag along with the ``enforce_scope`` flag so that "
+"you can get the benefits of new defaults and ``scope_type`` together. If "
+"``False``, the deprecated policy check string is logically OR'd with the new "
+"policy check string, allowing for a graceful upgrade experience between "
+"releases with new policies, which is the default behavior."
+msgstr ""
+"This option controls whether or not to use old deprecated defaults when "
+"evaluating policies. If ``True``, the old deprecated defaults are not going "
+"to be evaluated. This means if any existing token is allowed for old "
+"defaults but is disallowed for new defaults, it will be disallowed. It is "
+"encouraged to enable this flag along with the ``enforce_scope`` flag so that "
+"you can get the benefits of new defaults and ``scope_type`` together. If "
+"``False``, the deprecated policy check string is logically OR'd with the new "
+"policy check string, allowing for a graceful upgrade experience between "
+"releases with new policies, which is the default behaviour."
+
 #, python-format
 msgid "Unable to access ssl cert_file  : %s"
 msgstr "Unable to access SSL cert_file  : %s"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.policy-4.0.0/releasenotes/source/index.rst 
new/oslo.policy-4.1.1/releasenotes/source/index.rst
--- old/oslo.policy-4.0.0/releasenotes/source/index.rst 2022-06-17 
12:12:13.000000000 +0200
+++ new/oslo.policy-4.1.1/releasenotes/source/index.rst 2023-02-21 
18:37:06.000000000 +0100
@@ -6,6 +6,7 @@
    :maxdepth: 1
 
    unreleased
+   zed
    yoga
    xena
    wallaby
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/oslo.policy-4.0.0/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po
 
new/oslo.policy-4.1.1/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po
--- 
old/oslo.policy-4.0.0/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po
  2022-06-17 12:12:13.000000000 +0200
+++ 
new/oslo.policy-4.1.1/releasenotes/source/locale/en_GB/LC_MESSAGES/releasenotes.po
  2023-02-21 18:37:06.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: oslo.policy\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-08-07 10:53+0000\n"
+"POT-Creation-Date: 2022-09-09 16:02+0000\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -22,18 +22,12 @@
 msgid "1.22.1"
 msgstr "1.22.1"
 
-msgid "1.25.2-2"
-msgstr "1.25.2-2"
-
 msgid "1.29.0"
 msgstr "1.29.0"
 
 msgid "1.33.0"
 msgstr "1.33.0"
 
-msgid "1.33.1-4"
-msgstr "1.33.1-4"
-
 msgid "1.37.0"
 msgstr "1.37.0"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/oslo.policy-4.0.0/releasenotes/source/zed.rst 
new/oslo.policy-4.1.1/releasenotes/source/zed.rst
--- old/oslo.policy-4.0.0/releasenotes/source/zed.rst   1970-01-01 
01:00:00.000000000 +0100
+++ new/oslo.policy-4.1.1/releasenotes/source/zed.rst   2023-02-21 
18:37:06.000000000 +0100
@@ -0,0 +1,6 @@
+========================
+Zed Series Release Notes
+========================
+
+.. release-notes::
+   :branch: stable/zed

Reply via email to