Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
I'd like to ask if the attached debdiff would be allowed in wheezy. It fixes important bug #691230 by backporting a small patch from the upstream repository; of course there are no other versions of the package in sid. The package is team-maintained, and the Uploader has been contacted, but didn't answer. Thanks in advance, Elena Grandi
diff -u pyrrd-0.1.0/debian/changelog pyrrd-0.1.0/debian/changelog --- pyrrd-0.1.0/debian/changelog +++ pyrrd-0.1.0/debian/changelog @@ -1,3 +1,11 @@ +pyrrd (0.1.0-2) UNRELEASED; urgency=low + + * Team upload. + * Backport fix for RRD.fetch from upstream bzr revision 158 + (git commit dcd78df45c52) (Closes: #691230) + + -- Elena Grandi <elena.valha...@gmail.com> Mon, 18 Feb 2013 14:49:11 +0100 + pyrrd (0.1.0-1) unstable; urgency=low * Team upload only in patch2: unchanged: --- pyrrd-0.1.0.orig/pyrrd/backend/external.py +++ pyrrd-0.1.0/pyrrd/backend/external.py @@ -264,7 +264,7 @@ data += [unicode(x) for x in obj.rra] return (obj.filename, params + data) - if function == 'update': + elif function == 'update': validParams = ['template'] params = common.buildParameters(obj, validParams) FIRST_VALUE = 0 @@ -277,15 +277,15 @@ data = [data for data, nil in obj.values] return (obj.filename, params + data) - if function == 'fetch': + elif function == 'fetch': validParams = ['resolution', 'start', 'end'] params = common.buildParameters(obj, validParams) - return (obj.filename, obj.cf, params) + return (obj.filename, [obj.cf] + params) - if function == 'info': + elif function == 'info': return (obj.filename, obj) - if function == 'graph': + elif function == 'graph': validParams = ['start', 'end', 'step', 'title', 'vertical_label', 'width', 'height', 'only_graph', 'upper_limit', 'lower_limit', 'rigid', 'alt_autoscale',