I am sorry, here is missing debdiff. Filip On 2017/03/10 09:57, Debian Bug Tracking System wrote: > Thank you for filing a new Bug report with Debian. > > This is an automatically generated reply to let you know your message > has been received. > > Your message is being forwarded to the package maintainers and other > interested parties for their attention; they will reply in due course. > > As you requested using X-Debbugs-CC, your message was also forwarded to > madduck@debian.org > (after having been given a Bug report number, if it did not have one). > > Your message has been sent to the package maintainer(s): > Debian Release Team <debian-release@lists.debian.org> > > If you wish to submit further information on this problem, please > send it to 857347@bugs.debian.org. > > Please do not send mail to owner@bugs.debian.org unless you wish > to report a problem with the Bug-tracking system. > > -- > 857347: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=857347 > Debian Bug Tracking System > Contact owner@bugs.debian.org with problems
diff -Nru reclass-1.4.1/debian/changelog reclass-1.4.1/debian/changelog
--- reclass-1.4.1/debian/changelog 2014-10-28 15:57:42.000000000 +0100
+++ reclass-1.4.1/debian/changelog 2017-03-10 08:45:53.000000000 +0100
@@ -1,3 +1,12 @@
+reclass (1.4.1-2) unstable; urgency=medium
+
+ * d/patches: backport Fix UndefinedVariableError (Closes: #857337)
+ * Add d/watch file
+ * Raise d/compat to 10, update standards to 3.9.8
+ * Add myself as uploader
+
+ -- Filip Pytloun <filip@pytloun.cz> Fri, 10 Mar 2017 08:45:53 +0100
+
reclass (1.4.1-1) unstable; urgency=low
* New upstream release reverting the logging changes, which weren't ready
diff -Nru reclass-1.4.1/debian/compat reclass-1.4.1/debian/compat
--- reclass-1.4.1/debian/compat 2014-10-25 15:10:11.000000000 +0200
+++ reclass-1.4.1/debian/compat 2017-03-10 08:45:53.000000000 +0100
@@ -1 +1 @@
-8
+10
diff -Nru reclass-1.4.1/debian/control reclass-1.4.1/debian/control
--- reclass-1.4.1/debian/control 2014-10-25 20:45:57.000000000 +0200
+++ reclass-1.4.1/debian/control 2017-03-10 08:45:53.000000000 +0100
@@ -2,9 +2,13 @@
Section: python
Priority: extra
Maintainer: martin f. krafft <madduck@debian.org>
-Uploaders: Jonas Smedegaard <dr@jones.dk>
-Build-Depends: python-setuptools, python, debhelper (>= 8.9.7), python-sphinx, python-yaml
-Standards-Version: 3.9.6
+Uploaders: Jonas Smedegaard <dr@jones.dk>, Filip Pytloun <filip@pytloun.cz>
+Build-Depends: debhelper (>= 10),
+ python,
+ python-setuptools,
+ python-sphinx,
+ python-yaml
+Standards-Version: 3.9.8
XS-Python-Version: all
Homepage: http://reclass.pantsfullofunix.net/
Vcs-Git: git://anonscm.debian.org/collab-maint/reclass.git
@@ -13,7 +17,9 @@
Package: reclass
Architecture: all
Section: admin
-Depends: python-reclass (= ${binary:Version}), ${misc:Depends}, ${python:Depends}
+Depends: python-reclass (= ${binary:Version}),
+ ${misc:Depends},
+ ${python:Depends}
Suggests: reclass-doc
Description: hierarchical inventory backend for configuration management systems
reclass is an "external node classifier" (ENC) as can be used with automation
@@ -38,7 +44,7 @@
Package: python-reclass
Architecture: all
-Depends: ${misc:Depends}, ${python:Depends}, python-pkg-resources
+Depends: python-pkg-resources, ${misc:Depends}, ${python:Depends}
Description: hierarchical inventory backend for configuration management systems
reclass is an "external node classifier" (ENC) as can be used with automation
tools, such as Puppet, Salt, and Ansible. It is also a stand-alone tool for
@@ -61,7 +67,7 @@
Package: reclass-doc
Architecture: all
Section: doc
-Depends: ${sphinxdoc:Depends}, ${misc:Depends}
+Depends: ${misc:Depends}, ${sphinxdoc:Depends}
Description: reclass documentation
reclass is an "external node classifier" (ENC) as can be used with automation
tools, such as Puppet, Salt, and Ansible. It is also a stand-alone tool for
diff -Nru reclass-1.4.1/debian/patches/0001-Fix-UndefinedVariableError-which-had-uh-undefined-va.patch reclass-1.4.1/debian/patches/0001-Fix-UndefinedVariableError-which-had-uh-undefined-va.patch
--- reclass-1.4.1/debian/patches/0001-Fix-UndefinedVariableError-which-had-uh-undefined-va.patch 1970-01-01 01:00:00.000000000 +0100
+++ reclass-1.4.1/debian/patches/0001-Fix-UndefinedVariableError-which-had-uh-undefined-va.patch 2017-03-10 08:45:53.000000000 +0100
@@ -0,0 +1,31 @@
+From fbd22d42a20a0fdd53bc42fd27ad9f3d6af70f80 Mon Sep 17 00:00:00 2001
+From: Michael Kuty <6du1ro.n@gmail.com>
+Date: Fri, 16 Oct 2015 18:10:18 +0200
+Subject: [PATCH 1/2] Fix UndefinedVariableError, which had, uh, undefined
+ variables
+
+Signed-off-by: martin f. krafft <madduck@madduck.net>
+---
+ reclass/errors.py | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/reclass/errors.py b/reclass/errors.py
+index 4da2bc3..ddb95fd 100644
+--- a/reclass/errors.py
++++ b/reclass/errors.py
+@@ -131,9 +131,11 @@ class UndefinedVariableError(InterpolationError):
+ super(UndefinedVariableError, self).__init__(msg=None)
+ self._var = var
+ self._context = context
++ var = property(lambda self: self._var)
++ context = property(lambda self: self._context)
+
+ def _get_message(self):
+- msg = "Cannot resolve " + var.join(PARAMETER_INTERPOLATION_SENTINELS)
++ msg = "Cannot resolve " + self._var.join(PARAMETER_INTERPOLATION_SENTINELS)
+ if self._context:
+ msg += ' in the context of %s' % self._context
+ return msg
+--
+2.1.4
+
diff -Nru reclass-1.4.1/debian/patches/series reclass-1.4.1/debian/patches/series
--- reclass-1.4.1/debian/patches/series 1970-01-01 01:00:00.000000000 +0100
+++ reclass-1.4.1/debian/patches/series 2017-03-10 08:45:53.000000000 +0100
@@ -0,0 +1 @@
+0001-Fix-UndefinedVariableError-which-had-uh-undefined-va.patch
diff -Nru reclass-1.4.1/debian/watch reclass-1.4.1/debian/watch
--- reclass-1.4.1/debian/watch 1970-01-01 01:00:00.000000000 +0100
+++ reclass-1.4.1/debian/watch 2017-03-10 08:45:53.000000000 +0100
@@ -0,0 +1,3 @@
+version=3
+#opts=pgpsigurlmangle=s/$/.asc/ \
+https://pypi.debian.net/reclass/reclass-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
Attachment:
signature.asc
Description: PGP signature