diff -Nru dh-python-2.20151103ubuntu1/debian/changelog dh-python-2.20151103ubuntu1.2/debian/changelog --- dh-python-2.20151103ubuntu1/debian/changelog 2015-11-04 18:22:36.000000000 +0000 +++ dh-python-2.20151103ubuntu1.2/debian/changelog 2019-08-16 00:17:59.000000000 +0000 @@ -1,3 +1,16 @@ +dh-python (2.20151103ubuntu1.2) xenial-security; urgency=medium + + * No change rebuild to get fixed dh-python into xenial-security. + + -- Steve Beattie Thu, 15 Aug 2019 17:17:27 -0700 + +dh-python (2.20151103ubuntu1.1) xenial; urgency=medium + + * dhpython/pydist.py: Ensure that != dependency versions are ignored + (LP: #1581065). + + -- James Page Thu, 12 May 2016 17:04:43 +0100 + dh-python (2.20151103ubuntu1) xenial; urgency=medium * Merge from unstable. Remaining changes: diff -Nru dh-python-2.20151103ubuntu1/dhpython/pydist.py dh-python-2.20151103ubuntu1.2/dhpython/pydist.py --- dh-python-2.20151103ubuntu1/dhpython/pydist.py 2015-10-25 16:04:16.000000000 +0000 +++ dh-python-2.20151103ubuntu1.2/dhpython/pydist.py 2016-05-12 14:23:07.000000000 +0000 @@ -149,7 +149,7 @@ # Debian dependency return item['dependency'] if req_d['version'] and (item['standard'] or item['rules']) and\ - req_d['operator'] not in (None, '=='): + req_d['operator'] not in (None, '==', '!='): v = _translate(req_d['version'], item['rules'], item['standard']) return "%s (%s %s)" % (item['dependency'], req_d['operator'], v) else: