diff -Nru python-dbusmock-0.18.1/debian/changelog python-dbusmock-0.18.2/debian/changelog --- python-dbusmock-0.18.1/debian/changelog 2018-11-13 09:16:02.000000000 +0000 +++ python-dbusmock-0.18.2/debian/changelog 2019-02-23 12:45:09.000000000 +0000 @@ -1,3 +1,10 @@ +python-dbusmock (0.18.2-1) unstable; urgency=medium + + * Bump Standards-Version to 4.3.0. No changes necessary. + * New upstream version 0.18.2. Fixes tests for systemd 241. + + -- Martin Pitt Sat, 23 Feb 2019 12:45:09 +0000 + python-dbusmock (0.18.1-2) unstable; urgency=medium * debian/tests: Allow stderr messages. diff -Nru python-dbusmock-0.18.1/debian/control python-dbusmock-0.18.2/debian/control --- python-dbusmock-0.18.1/debian/control 2018-11-13 09:16:02.000000000 +0000 +++ python-dbusmock-0.18.2/debian/control 2019-02-23 12:45:09.000000000 +0000 @@ -21,7 +21,7 @@ Uploaders: Martin Pitt Vcs-Browser: https://salsa.debian.org/debian/python-dbusmock Vcs-Git: https://salsa.debian.org/debian/python-dbusmock.git -Standards-Version: 4.2.1 +Standards-Version: 4.3.0 Homepage: https://github.com/martinpitt/python-dbusmock/ Package: python-dbusmock diff -Nru python-dbusmock-0.18.1/NEWS python-dbusmock-0.18.2/NEWS --- python-dbusmock-0.18.1/NEWS 2018-11-11 20:54:43.000000000 +0000 +++ python-dbusmock-0.18.2/NEWS 2019-02-23 11:54:04.000000000 +0000 @@ -1,3 +1,7 @@ +0.18.2 (2019-02-23) +------------------- + - test: Adjust for changed version output format in systemd 241 + 0.18.1 (2018-11-11) ------------------- - test: Fix failures with systemd 239 in chroots diff -Nru python-dbusmock-0.18.1/PKG-INFO python-dbusmock-0.18.2/PKG-INFO --- python-dbusmock-0.18.1/PKG-INFO 2018-11-11 21:00:17.000000000 +0000 +++ python-dbusmock-0.18.2/PKG-INFO 2019-02-23 11:56:06.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: python-dbusmock -Version: 0.18.1 +Version: 0.18.2 Summary: Mock D-Bus objects Home-page: https://github.com/martinpitt/python-dbusmock Author: Martin Pitt diff -Nru python-dbusmock-0.18.1/python_dbusmock.egg-info/PKG-INFO python-dbusmock-0.18.2/python_dbusmock.egg-info/PKG-INFO --- python-dbusmock-0.18.1/python_dbusmock.egg-info/PKG-INFO 2018-11-11 21:00:17.000000000 +0000 +++ python-dbusmock-0.18.2/python_dbusmock.egg-info/PKG-INFO 2019-02-23 11:56:06.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: python-dbusmock -Version: 0.18.1 +Version: 0.18.2 Summary: Mock D-Bus objects Home-page: https://github.com/martinpitt/python-dbusmock Author: Martin Pitt diff -Nru python-dbusmock-0.18.1/tests/test_logind.py python-dbusmock-0.18.2/tests/test_logind.py --- python-dbusmock-0.18.1/tests/test_logind.py 2018-11-11 20:54:43.000000000 +0000 +++ python-dbusmock-0.18.2/tests/test_logind.py 2019-02-23 11:54:04.000000000 +0000 @@ -14,6 +14,7 @@ import unittest import os import sys +import re import subprocess import dbusmock @@ -37,7 +38,7 @@ if have_loginctl: out = subprocess.check_output(['loginctl', '--version'], universal_newlines=True) - klass.version = out.splitlines()[0].split()[-1] + klass.version = re.search(r'(\d+)', out.splitlines()[0]).group(1) def setUp(self): self.p_mock = None