Package: gitinspector / 0.4.4+dfsg-15

Metadata

Package Version Patches format
gitinspector 0.4.4+dfsg-15 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
Use jQuery libraries from the Debian archive.patch | (download)

gitinspector/format.py | 28 15 + 13 - 0 !
1 file changed, 15 insertions(+), 13 deletions(-)

 use jquery libraries from the debian archive

Move arch indep files to usr share.patch | (download)

gitinspector/format.py | 4 2 + 2 - 0 !
gitinspector/localization.py | 2 1 + 1 - 0 !
setup.py | 6 4 + 2 - 0 !
3 files changed, 7 insertions(+), 5 deletions(-)

 move arch-indep files to /usr/share

Within Debian, arch-independent files shouldn't be in /usr/lib.

port to python3.patch | (download)

gitinspector/blame.py | 30 15 + 15 - 0 !
gitinspector/changes.py | 28 14 + 14 - 0 !
gitinspector/clone.py | 2 1 + 1 - 0 !
gitinspector/comment.py | 2 1 + 1 - 0 !
gitinspector/config.py | 12 6 + 6 - 0 !
gitinspector/extensions.py | 10 5 + 5 - 0 !
gitinspector/filtering.py | 12 6 + 6 - 0 !
gitinspector/format.py | 12 6 + 6 - 0 !
gitinspector/gitinspector.py | 40 20 + 20 - 0 !
gitinspector/gravatar.py | 6 3 + 3 - 0 !
gitinspector/help.py | 8 4 + 4 - 0 !
gitinspector/interval.py | 2 1 + 1 - 0 !
gitinspector/localization.py | 6 3 + 3 - 0 !
gitinspector/metrics.py | 34 17 + 17 - 0 !
gitinspector/optval.py | 2 1 + 1 - 0 !
gitinspector/outputable.py | 6 3 + 3 - 0 !
gitinspector/responsibilities.py | 20 10 + 10 - 0 !
gitinspector/terminal.py | 2 1 + 1 - 0 !
gitinspector/timeline.py | 16 8 + 8 - 0 !
gitinspector/version.py | 6 3 + 3 - 0 !
tests/test_comment.py | 37 18 + 19 - 0 !
21 files changed, 146 insertions(+), 147 deletions(-)

 port-to-python3

Bug: https://github.com/ejwa/gitinspector/pull/223

Drop superfluous argument to NullTranslations.install.patch | (download)

gitinspector/localization.py | 6 3 + 3 - 0 !
1 file changed, 3 insertions(+), 3 deletions(-)

 drop superfluous argument to nulltranslations.install()

The given argument of True wasn't valid, and triggers an exception with
Python3.8.

Drop bufsize argument to Popen.patch | (download)

gitinspector/basedir.py | 6 3 + 3 - 0 !
gitinspector/blame.py | 4 2 + 2 - 0 !
gitinspector/changes.py | 4 2 + 2 - 0 !
gitinspector/clone.py | 2 1 + 1 - 0 !
gitinspector/config.py | 2 1 + 1 - 0 !
gitinspector/filtering.py | 2 1 + 1 - 0 !
gitinspector/metrics.py | 4 2 + 2 - 0 !
7 files changed, 12 insertions(+), 12 deletions(-)

 drop bufsize argument to popen

It's only allowed in text mode, and with Python 3.8, we get a ton of the
following warnings:

usr/lib/python3.8/subprocess.py:844: RuntimeWarning: line buffering
(buffering=1) isn't supported in binary mode, the default buffer size will be
used
  self.stdout = io.open(c2pread, 'rb', bufsize)

SyntaxWarning.patch | (download)

gitinspector/blame.py | 2 1 + 1 - 0 !
gitinspector/metrics.py | 12 6 + 6 - 0 !
2 files changed, 7 insertions(+), 7 deletions(-)

---