Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-inspektor for 
openSUSE:Factory checked in at 2026-06-25 10:58:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-inspektor (Old)
 and      /work/SRC/openSUSE:Factory/.python-inspektor.new.2088 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-inspektor"

Thu Jun 25 10:58:17 2026 rev:8 rq:1361666 version:0.5.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-inspektor/python-inspektor.changes        
2024-10-09 22:13:37.683957712 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-inspektor.new.2088/python-inspektor.changes  
    2026-06-25 11:00:10.319494771 +0200
@@ -1,0 +2,7 @@
+Wed Jun 24 20:09:40 UTC 2026 - Martin Pluskal <[email protected]>
+
+- Update to version 0.5.3:
+  * Fix a crash in the linter where LinterStats was accessed with
+    a missing .get attribute
+
+-------------------------------------------------------------------

Old:
----
  inspektor-0.5.2.tar.gz

New:
----
  inspektor-0.5.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-inspektor.spec ++++++
--- /var/tmp/diff_new_pack.wxwxQa/_old  2026-06-25 11:00:10.879514076 +0200
+++ /var/tmp/diff_new_pack.wxwxQa/_new  2026-06-25 11:00:10.883514214 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-inspektor
 #
-# Copyright (c) 2024 SUSE LLC
+# Copyright (c) 2026 SUSE LLC and contributors
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,18 +16,18 @@
 #
 
 
-%if 0%{suse_version} >= 1550
+%global         pkgname inspektor
+%if 0%{?suse_version} >= 1550
 # cliff and stevedore are only built for primary python3
 %define pythons python3
 %endif
-%global         pkgname inspektor
 Name:           python-%{pkgname}
-Version:        0.5.2
+Version:        0.5.3
 Release:        0
 Summary:        Program used to verify the code of your python project
 License:        GPL-2.0-only
 URL:            https://github.com/avocado-framework/inspektor
-Source:         
https://files.pythonhosted.org/packages/42/8a/9e375ac0bb498760fe2408a2e0f1fe09808933e593d1b6f04193492b9048/inspektor-%{version}.tar.gz
+Source:         
https://files.pythonhosted.org/packages/source/i/inspektor/inspektor-%{version}.tar.gz
 BuildRequires:  %{python_module astroid >= 1.2.1}
 BuildRequires:  %{python_module cmd2}
 BuildRequires:  %{python_module devel}
@@ -69,6 +69,8 @@
 
 %install
 %pyproject_install
+# force hash-based .pyc (avoid python-bytecode-inconsistent-mtime)
+%python_expand $python -m compileall -q -f -o 0 -o 1 --invalidation-mode 
unchecked-hash %{buildroot}%{$python_sitelib}/inspektor
 %python_clone -a %{buildroot}%{_bindir}/inspekt
 %fdupes %{buildroot}
 

++++++ inspektor-0.5.2.tar.gz -> inspektor-0.5.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/.gitignore 
new/inspektor-0.5.3/.gitignore
--- old/inspektor-0.5.2/.gitignore      2018-07-18 04:53:11.000000000 +0200
+++ new/inspektor-0.5.3/.gitignore      1970-01-01 01:00:00.000000000 +0100
@@ -1,11 +0,0 @@
-*~
-*.pyc
-build/
-tags
-cscope.*
-.project
-.pydevproject
-.venv*
-.idea
-inspektor.egg-info
-MANIFEST
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/.travis.yml 
new/inspektor-0.5.3/.travis.yml
--- old/inspektor-0.5.2/.travis.yml     2017-12-22 12:41:29.000000000 +0100
+++ new/inspektor-0.5.3/.travis.yml     1970-01-01 01:00:00.000000000 +0100
@@ -1,13 +0,0 @@
-language: python
-python:
-    - "2.7"
-    - "2.6"
-    - "3.5"
-    - "3.6"
-sudo: false
-
-install:
-    - pip install -e .
-
-script:
-    - make check
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/Makefile new/inspektor-0.5.3/Makefile
--- old/inspektor-0.5.2/Makefile        2018-07-18 14:24:28.000000000 +0200
+++ new/inspektor-0.5.3/Makefile        1970-01-01 01:00:00.000000000 +0100
@@ -1,52 +0,0 @@
-PYTHON=`which python`
-DESTDIR=/
-BUILDIR=$(CURDIR)/debian/inspektor
-PROJECT=inspektor
-VERSION=`$(CURDIR)/inspektor/version.py`
-
-all:
-       @echo "make source - Create source package"
-       @echo "make install - Install on local system"
-       @echo "make build-deb-src - Generate a source debian package"
-       @echo "make build-deb-bin - Generate a binary debian package"
-       @echo "make build-deb-all - Generate both source and binary debian 
packages"
-       @echo "make build-rpm-all - Generate both source and binary RPMs"
-       @echo "make clean - Get rid of scratch and byte files"
-
-source:
-       $(PYTHON) setup.py sdist $(COMPILE) --dist-dir=SOURCES
-
-install:
-       $(PYTHON) setup.py install --root $(DESTDIR) $(COMPILE)
-
-prepare-source:
-       # build the source package in the parent directory
-       # then rename it to project_version.orig.tar.gz
-       dch -D "saucy" -M -v "$(VERSION)" "Automated (make builddeb) build."
-       $(PYTHON) setup.py sdist $(COMPILE) --dist-dir=../ --prune
-       rename -f 's/$(PROJECT)-(.*)\.tar\.gz/$(PROJECT)_$$1\.orig\.tar\.gz/' 
../*
-
-build-deb-src: prepare-source
-       # build the source package
-       dpkg-buildpackage -S -rfakeroot
-
-build-deb-bin: prepare-source
-       # build binary package
-       dpkg-buildpackage -b -rfakeroot
-
-build-deb-all: prepare-source
-       # build both source and binary packages
-       dpkg-buildpackage -i -I -rfakeroot
-
-build-rpm-all: source
-       rpmbuild --define '_topdir %{getenv:PWD}' \
-                -ba inspektor.spec
-
-check:
-       inspekt checkall --verbose --exclude .venv
-
-clean:
-       $(PYTHON) setup.py clean
-       $(MAKE) -f $(CURDIR)/debian/rules clean || true
-       rm -rf build/ MANIFEST BUILD BUILDROOT SOURCES SPECS RPMS SRPMS
-       find . -name '*.pyc' -delete
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/PKG-INFO new/inspektor-0.5.3/PKG-INFO
--- old/inspektor-0.5.2/PKG-INFO        2018-07-18 14:28:55.000000000 +0200
+++ new/inspektor-0.5.3/PKG-INFO        2021-12-08 18:18:31.237860700 +0100
@@ -1,88 +1,12 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: inspektor
-Version: 0.5.2
+Version: 0.5.3
 Summary: Inspektor python code checker and fixer
 Home-page: https://github.com/avocado-framework/inspektor
 Author: Lucas Meneghel Rodrigues
 Author-email: [email protected]
 License: UNKNOWN
 Download-URL: https://github.com/avocado-framework/inspektor/tarball/master
-Description: Inspektor
-        =========
-        
-        Inspektor is a program used to verify the code of your python project. 
It
-        evolved from a set of scripts used to check patches and code of python 
projects
-        of the autotest organization [1]. As the project grew and new modules 
started
-        to be developed, we noticed the same scripts had to be copied to each 
new
-        project repo, creating a massive headache when we needed to update said
-        scripts.
-        
-        Inspektor knows how to:
-        
-        1) Check code with the help of `pylint`.
-        2) Check indentation of your code with the help of `pycodestyle`,
-           correcting it if you so deem appropriate.
-        3) Check whether your code is PEP8 compliant, correcting it if 
necessary
-           (only works if you have `autopep8` installed) if you so deem 
appropriate.
-        4) If your project is hosted on the autotest github area, it can apply 
pull
-           requests made against it, and check if it introduced any regression 
from
-           the metrics outlined above.
-        
-        This all assumes you're working on a version control checkout of your 
code.
-        Currently inspektor knows how to handle subversion and git.
-        
-        Installing inspektor
-        --------------------
-        
-        You can get inspektor through pip:
-        
-        ::
-        
-            $ sudo pip install inspektor
-        
-        But you should avoid doing that if possible. A virtual environment 
deployment
-        tends to be better, since each installation is restricted to each 
environment:
-        
-        ::
-        
-            $ virtualenv .venv
-            $ source .venv/bin/activate
-            $ pip install inspektor
-        
-        If you are developing inspektor, you can install it in your virtual 
environment
-        as an editable package. From this source code tree root:
-        
-        ::
-        
-            $ pip install -e .
-        
-        Usage
-        -----
-        
-        1) Go to the root of your project source code clone
-        2) If you want to check code with pylint:
-        
-        ::
-        
-            inspekt lint
-        3) If you want to check indentation:
-        
-        ::
-        
-            inspekt indent
-        4) If you want to check compliance to the PEP8:
-        
-        ::
-        
-            inspekt style
-        5) If you want to check PR #123 for a project inside the autotest 
github area:
-        
-        ::
-        
-            inspekt github 123
-        
-        [1] http://autotest.github.io/
-        
 Platform: Any
 Classifier: Development Status :: 3 - Alpha
 Classifier: License :: OSI Approved :: GNU General Public License v2 or later 
(GPLv2+)
@@ -93,3 +17,86 @@
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Intended Audience :: Developers
 Classifier: Environment :: Console
+Description-Content-Type: text/x-rst
+License-File: LICENSE
+
+Inspektor
+=========
+
+Inspektor is a program used to verify the code of your python project. It
+evolved from a set of scripts used to check patches and code of python projects
+of the autotest organization [1]. As the project grew and new modules started
+to be developed, we noticed the same scripts had to be copied to each new
+project repo, creating a massive headache when we needed to update said
+scripts.
+
+Inspektor knows how to:
+
+1) Check code with the help of `pylint`.
+2) Check indentation of your code with the help of `pycodestyle`,
+   correcting it if you so deem appropriate.
+3) Check whether your code is PEP8 compliant, correcting it if necessary
+   (only works if you have `autopep8` installed) if you so deem appropriate.
+4) If your project is hosted on the autotest github area, it can apply pull
+   requests made against it, and check if it introduced any regression from
+   the metrics outlined above.
+
+This all assumes you're working on a version control checkout of your code.
+Currently inspektor knows how to handle subversion and git.
+
+Installing inspektor
+--------------------
+
+You can get inspektor through pip:
+
+::
+
+    $ sudo pip install inspektor
+
+But you should avoid doing that if possible. A virtual environment deployment
+tends to be better, since each installation is restricted to each environment:
+
+::
+
+    $ virtualenv .venv
+    $ source .venv/bin/activate
+    $ pip install inspektor
+
+If you are developing inspektor, you can install it in your virtual environment
+as an editable package. From this source code tree root:
+
+::
+
+    $ pip install -e .
+
+Usage
+-----
+
+1) Go to the root of your project source code clone
+2) If you want to check code with pylint:
+
+::
+
+    inspekt lint
+
+3) If you want to check indentation:
+
+::
+
+    inspekt indent
+
+4) If you want to check compliance to the PEP8:
+
+::
+
+    inspekt style
+
+5) If you want to check PR #123 for a project inside the autotest github area:
+
+::
+
+    inspekt github 123
+
+[1] http://autotest.github.io/
+
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/README.rst 
new/inspektor-0.5.3/README.rst
--- old/inspektor-0.5.2/README.rst      2017-12-22 12:41:29.000000000 +0100
+++ new/inspektor-0.5.3/README.rst      2021-12-08 18:16:16.000000000 +0100
@@ -56,16 +56,19 @@
 ::
 
     inspekt lint
+
 3) If you want to check indentation:
 
 ::
 
     inspekt indent
+
 4) If you want to check compliance to the PEP8:
 
 ::
 
     inspekt style
+
 5) If you want to check PR #123 for a project inside the autotest github area:
 
 ::
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/debian/changelog 
new/inspektor-0.5.3/debian/changelog
--- old/inspektor-0.5.2/debian/changelog        2017-12-22 12:41:29.000000000 
+0100
+++ new/inspektor-0.5.3/debian/changelog        1970-01-01 01:00:00.000000000 
+0100
@@ -1,18 +0,0 @@
-inspektor (0.1.9) saucy; urgency=medium
-
-  * Automated (make builddeb) build.
-
- -- Lucas Meneghel Rodrigues (lmr) <[email protected]>  Tue, 29 Apr 2014 
22:50:41 -0300
-
-inspektor (0.1.6) saucy; urgency=medium
-
-  * Automated (make builddeb) build.
-
- -- Lucas Meneghel Rodrigues (lmr) <[email protected]>  Mon, 14 Apr 2014 
16:29:55 -0300
-
-inspektor (0.0.1ubuntu1) saucy; urgency=medium
-
-  * First build.
-
- -- Lucas Meneghel Rodrigues (lmr) <[email protected]>  Wed, 02 Apr 2014 
13:39:36 -0300
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/debian/compat 
new/inspektor-0.5.3/debian/compat
--- old/inspektor-0.5.2/debian/compat   2017-12-22 12:41:29.000000000 +0100
+++ new/inspektor-0.5.3/debian/compat   1970-01-01 01:00:00.000000000 +0100
@@ -1,2 +0,0 @@
-9
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/debian/control 
new/inspektor-0.5.3/debian/control
--- old/inspektor-0.5.2/debian/control  2017-12-22 12:41:29.000000000 +0100
+++ new/inspektor-0.5.3/debian/control  1970-01-01 01:00:00.000000000 +0100
@@ -1,13 +0,0 @@
-Source: inspektor
-Section: python
-Priority: optional
-Maintainer: Lucas Meneghel Rodrigues (lmr) <[email protected]>
-Build-Depends: debhelper (>=7.0.50~), python-support (>= 0.6), cdbs (>= 
0.4.49), python-autopep8, pylint
-Standards-Version: 3.8.4
-
-Package: inspektor
-Architecture: all
-Homepage: https://github.com/autotest/inspektor
-XB-Python-Version: ${python:Versions}
-Depends: ${misc:Depends}, ${python:Depends}, python-autopep8 (>= 0.9), pylint 
(>= 1.0)
-Description: Inspektor is a checker tool, that automates a number of static 
checks in a python project code.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/debian/copyright 
new/inspektor-0.5.3/debian/copyright
--- old/inspektor-0.5.2/debian/copyright        2017-12-22 12:41:29.000000000 
+0100
+++ new/inspektor-0.5.3/debian/copyright        1970-01-01 01:00:00.000000000 
+0100
@@ -1,29 +0,0 @@
-Upstream Author:
-
-    Lucas Meneghel Rodrigues
-
-Files: *
-Copyright:
-    2014, Lucas Meneghel Rodrigues
-License: GPL
-
-Files: debian/*
-Copyright:
-    2014, Lucas Meneghel Rodrigues (lmr) <[email protected]>
-License: GPL
-
-License: GPL
-   This package is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; version 2 only.
-
-   This package is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this package; if not, see .
-
-On Debian systems, the complete text of the GNU General
-Public License 2 can be found in `/usr/share/common-licenses/GPL-2'.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/debian/pyversions 
new/inspektor-0.5.3/debian/pyversions
--- old/inspektor-0.5.2/debian/pyversions       2017-12-22 12:41:29.000000000 
+0100
+++ new/inspektor-0.5.3/debian/pyversions       1970-01-01 01:00:00.000000000 
+0100
@@ -1 +0,0 @@
-2.7-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/debian/rules 
new/inspektor-0.5.3/debian/rules
--- old/inspektor-0.5.2/debian/rules    2017-12-22 12:41:29.000000000 +0100
+++ new/inspektor-0.5.3/debian/rules    1970-01-01 01:00:00.000000000 +0100
@@ -1,11 +0,0 @@
-#!/usr/bin/make -f
-# -*- makefile -*-
-
-DEB_PYTHON_SYSTEM := pysupport
-
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/python-distutils.mk
-
-clean::
-       rm -rf build build-stamp configure-stamp build/ MANIFEST
-       dh_clean
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/debian/source/format 
new/inspektor-0.5.3/debian/source/format
--- old/inspektor-0.5.2/debian/source/format    2017-12-22 12:41:29.000000000 
+0100
+++ new/inspektor-0.5.3/debian/source/format    1970-01-01 01:00:00.000000000 
+0100
@@ -1 +0,0 @@
-3.0 (native)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/debian/source/options 
new/inspektor-0.5.3/debian/source/options
--- old/inspektor-0.5.2/debian/source/options   2017-12-22 12:41:29.000000000 
+0100
+++ new/inspektor-0.5.3/debian/source/options   1970-01-01 01:00:00.000000000 
+0100
@@ -1 +0,0 @@
-tar-ignore = ".git/*"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/debian/watch 
new/inspektor-0.5.3/debian/watch
--- old/inspektor-0.5.2/debian/watch    2017-12-22 12:41:29.000000000 +0100
+++ new/inspektor-0.5.3/debian/watch    1970-01-01 01:00:00.000000000 +0100
@@ -1,3 +0,0 @@
-version=3
-
-https://github.com/autotest/inspektor/tags .*/(\d[\d\.]+)\.tar\.gz
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/documentation/Makefile 
new/inspektor-0.5.3/documentation/Makefile
--- old/inspektor-0.5.2/documentation/Makefile  2017-12-22 12:41:29.000000000 
+0100
+++ new/inspektor-0.5.3/documentation/Makefile  1970-01-01 01:00:00.000000000 
+0100
@@ -1,153 +0,0 @@
-# Makefile for Sphinx documentation
-#
-
-# You can set these variables from the command line.
-SPHINXOPTS    =
-SPHINXBUILD   = sphinx-build
-PAPER         =
-BUILDDIR      = build
-
-# Internal variables.
-PAPEROPT_a4     = -D latex_paper_size=a4
-PAPEROPT_letter = -D latex_paper_size=letter
-ALLSPHINXOPTS   = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) 
source
-# the i18n builder cannot share the environment and doctrees with the others
-I18NSPHINXOPTS  = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
-
-.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp 
epub latex latexpdf text man changes linkcheck doctest gettext
-
-help:
-       @echo "Please use \`make <target>' where <target> is one of"
-       @echo "  html       to make standalone HTML files"
-       @echo "  dirhtml    to make HTML files named index.html in directories"
-       @echo "  singlehtml to make a single large HTML file"
-       @echo "  pickle     to make pickle files"
-       @echo "  json       to make JSON files"
-       @echo "  htmlhelp   to make HTML files and a HTML help project"
-       @echo "  qthelp     to make HTML files and a qthelp project"
-       @echo "  devhelp    to make HTML files and a Devhelp project"
-       @echo "  epub       to make an epub"
-       @echo "  latex      to make LaTeX files, you can set PAPER=a4 or 
PAPER=letter"
-       @echo "  latexpdf   to make LaTeX files and run them through pdflatex"
-       @echo "  text       to make text files"
-       @echo "  man        to make manual pages"
-       @echo "  texinfo    to make Texinfo files"
-       @echo "  info       to make Texinfo files and run them through makeinfo"
-       @echo "  gettext    to make PO message catalogs"
-       @echo "  changes    to make an overview of all changed/added/deprecated 
items"
-       @echo "  linkcheck  to check all external links for integrity"
-       @echo "  doctest    to run all doctests embedded in the documentation 
(if enabled)"
-
-clean:
-       -rm -rf $(BUILDDIR)/*
-
-html:
-       $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
-       @echo
-       @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
-
-dirhtml:
-       $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
-       @echo
-       @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
-
-singlehtml:
-       $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
-       @echo
-       @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
-
-pickle:
-       $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
-       @echo
-       @echo "Build finished; now you can process the pickle files."
-
-json:
-       $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
-       @echo
-       @echo "Build finished; now you can process the JSON files."
-
-htmlhelp:
-       $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
-       @echo
-       @echo "Build finished; now you can run HTML Help Workshop with the" \
-             ".hhp project file in $(BUILDDIR)/htmlhelp."
-
-qthelp:
-       $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
-       @echo
-       @echo "Build finished; now you can run "qcollectiongenerator" with the" 
\
-             ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
-       @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/inspektor.qhcp"
-       @echo "To view the help file:"
-       @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/inspektor.qhc"
-
-devhelp:
-       $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
-       @echo
-       @echo "Build finished."
-       @echo "To view the help file:"
-       @echo "# mkdir -p $$HOME/.local/share/devhelp/inspektor"
-       @echo "# ln -s $(BUILDDIR)/devhelp 
$$HOME/.local/share/devhelp/inspektor"
-       @echo "# devhelp"
-
-epub:
-       $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
-       @echo
-       @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
-
-latex:
-       $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
-       @echo
-       @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
-       @echo "Run \`make' in that directory to run these through (pdf)latex" \
-             "(use \`make latexpdf' here to do that automatically)."
-
-latexpdf:
-       $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
-       @echo "Running LaTeX files through pdflatex..."
-       $(MAKE) -C $(BUILDDIR)/latex all-pdf
-       @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
-
-text:
-       $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
-       @echo
-       @echo "Build finished. The text files are in $(BUILDDIR)/text."
-
-man:
-       $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
-       @echo
-       @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
-
-texinfo:
-       $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
-       @echo
-       @echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
-       @echo "Run \`make' in that directory to run these through makeinfo" \
-             "(use \`make info' here to do that automatically)."
-
-info:
-       $(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
-       @echo "Running Texinfo files through makeinfo..."
-       make -C $(BUILDDIR)/texinfo info
-       @echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
-
-gettext:
-       $(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
-       @echo
-       @echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
-
-changes:
-       $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
-       @echo
-       @echo "The overview file is in $(BUILDDIR)/changes."
-
-linkcheck:
-       $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
-       @echo
-       @echo "Link check complete; look for any errors in the above output " \
-             "or in $(BUILDDIR)/linkcheck/output.txt."
-
-doctest:
-       $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
-       @echo "Testing of doctests in the sources finished, look at the " \
-             "results in $(BUILDDIR)/doctest/output.txt."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/documentation/source/conf.py 
new/inspektor-0.5.3/documentation/source/conf.py
--- old/inspektor-0.5.2/documentation/source/conf.py    2018-07-18 
14:24:49.000000000 +0200
+++ new/inspektor-0.5.3/documentation/source/conf.py    1970-01-01 
01:00:00.000000000 +0100
@@ -1,254 +0,0 @@
-# -*- coding: utf-8 -*-
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-#
-# See LICENSE for more details.
-#
-# inspektor documentation build configuration file, created by
-# sphinx-quickstart on Tue Apr 15 02:47:18 2014.
-#
-# This file is execfile()d with the current directory set to its containing 
dir.
-#
-# Note that not all possible configuration values are present in this
-# autogenerated file.
-#
-# All configuration values have a default; values that are commented out
-# serve to show the default.
-
-# If extensions (or modules to document with autodoc) are in another directory,
-# add these directories to sys.path here. If the directory is relative to the
-# documentation root, use os.path.abspath to make it absolute, like shown here.
-#sys.path.insert(0, os.path.abspath('.'))
-
-# -- General configuration 
-----------------------------------------------------
-
-# If your documentation needs a minimal Sphinx version, state it here.
-#needs_sphinx = '1.0'
-
-# Add any Sphinx extension module names here, as strings. They can be 
extensions
-# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 
'sphinx.ext.viewcode']
-
-# Add any paths that contain templates here, relative to this directory.
-templates_path = ['_templates']
-
-# The suffix of source filenames.
-source_suffix = '.rst'
-
-# The encoding of source files.
-#source_encoding = 'utf-8-sig'
-
-# The master toctree document.
-master_doc = 'index'
-
-# General information about the project.
-project = u'inspektor'
-copyright = u'2014, Lucas Meneghel Rodrigues <[email protected]>'
-
-# The version info for the project you're documenting, acts as replacement for
-# |version| and |release|, also used in various other places throughout the
-# built documents.
-#
-# The short X.Y version.
-version = '0.5.2'
-# The full version, including alpha/beta/rc tags.
-release = '0.5.2'
-
-# The language for content autogenerated by Sphinx. Refer to documentation
-# for a list of supported languages.
-#language = None
-
-# There are two options for replacing |today|: either, you set today to some
-# non-false value, then it is used:
-#today = ''
-# Else, today_fmt is used as the format for a strftime call.
-#today_fmt = '%B %d, %Y'
-
-# List of patterns, relative to source directory, that match files and
-# directories to ignore when looking for source files.
-exclude_patterns = []
-
-# The reST default role (used for this markup: `text`) to use for all 
documents.
-#default_role = None
-
-# If true, '()' will be appended to :func: etc. cross-reference text.
-#add_function_parentheses = True
-
-# If true, the current module name will be prepended to all description
-# unit titles (such as .. function::).
-#add_module_names = True
-
-# If true, sectionauthor and moduleauthor directives will be shown in the
-# output. They are ignored by default.
-#show_authors = False
-
-# The name of the Pygments (syntax highlighting) style to use.
-pygments_style = 'sphinx'
-
-# A list of ignored prefixes for module index sorting.
-#modindex_common_prefix = []
-
-
-# -- Options for HTML output 
---------------------------------------------------
-
-# The theme to use for HTML and HTML Help pages.  See the documentation for
-# a list of builtin themes.
-html_theme = 'default'
-
-# Theme options are theme-specific and customize the look and feel of a theme
-# further.  For a list of options available for each theme, see the
-# documentation.
-#html_theme_options = {}
-
-# Add any paths that contain custom themes here, relative to this directory.
-#html_theme_path = []
-
-# The name for this set of Sphinx documents.  If None, it defaults to
-# "<project> v<release> documentation".
-#html_title = None
-
-# A shorter title for the navigation bar.  Default is the same as html_title.
-#html_short_title = None
-
-# The name of an image file (relative to this directory) to place at the top
-# of the sidebar.
-#html_logo = None
-
-# The name of an image file (within the static path) to use as favicon of the
-# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
-# pixels large.
-#html_favicon = None
-
-# Add any paths that contain custom static files (such as style sheets) here,
-# relative to this directory. They are copied after the builtin static files,
-# so a file named "default.css" will overwrite the builtin "default.css".
-html_static_path = ['_static']
-
-# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
-# using the given strftime format.
-#html_last_updated_fmt = '%b %d, %Y'
-
-# If true, SmartyPants will be used to convert quotes and dashes to
-# typographically correct entities.
-#html_use_smartypants = True
-
-# Custom sidebar templates, maps document names to template names.
-#html_sidebars = {}
-
-# Additional templates that should be rendered to pages, maps page names to
-# template names.
-#html_additional_pages = {}
-
-# If false, no module index is generated.
-#html_domain_indices = True
-
-# If false, no index is generated.
-#html_use_index = True
-
-# If true, the index is split into individual pages for each letter.
-#html_split_index = False
-
-# If true, links to the reST sources are added to the pages.
-#html_show_sourcelink = True
-
-# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
-#html_show_sphinx = True
-
-# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
-#html_show_copyright = True
-
-# If true, an OpenSearch description file will be output, and all pages will
-# contain a <link> tag referring to it.  The value of this option must be the
-# base URL from which the finished HTML is served.
-#html_use_opensearch = ''
-
-# This is the file name suffix for HTML files (e.g. ".xhtml").
-#html_file_suffix = None
-
-# Output file base name for HTML help builder.
-htmlhelp_basename = 'inspektordoc'
-
-
-# -- Options for LaTeX output 
--------------------------------------------------
-
-latex_elements = {
-    # The paper size ('letterpaper' or 'a4paper').
-    #'papersize': 'letterpaper',
-
-    # The font size ('10pt', '11pt' or '12pt').
-    #'pointsize': '10pt',
-
-    # Additional stuff for the LaTeX preamble.
-    #'preamble': '',
-}
-
-# Grouping the document tree into LaTeX files. List of tuples
-# (source start file, target name, title, author, documentclass 
[howto/manual]).
-latex_documents = [
-    ('index', 'inspektor.tex', u'inspektor Documentation',
-     u'Lucas Meneghel Rodrigues \\textless{}[email protected]\\textgreater{}', 
'manual'),
-]
-
-# The name of an image file (relative to this directory) to place at the top of
-# the title page.
-#latex_logo = None
-
-# For "manual" documents, if this is true, then toplevel headings are parts,
-# not chapters.
-#latex_use_parts = False
-
-# If true, show page references after internal links.
-#latex_show_pagerefs = False
-
-# If true, show URL addresses after external links.
-#latex_show_urls = False
-
-# Documents to append as an appendix to all manuals.
-#latex_appendices = []
-
-# If false, no module index is generated.
-#latex_domain_indices = True
-
-
-# -- Options for manual page output 
--------------------------------------------
-
-# One entry per manual page. List of tuples
-# (source start file, name, description, authors, manual section).
-man_pages = [
-    ('index', 'inspektor', u'inspektor Documentation',
-     [u'Lucas Meneghel Rodrigues <[email protected]>'], 1)
-]
-
-# If true, show URL addresses after external links.
-#man_show_urls = False
-
-
-# -- Options for Texinfo output 
------------------------------------------------
-
-# Grouping the document tree into Texinfo files. List of tuples
-# (source start file, target name, title, author,
-#  dir menu entry, description, category)
-texinfo_documents = [
-    ('index', 'inspektor', u'inspektor Documentation',
-     u'Lucas Meneghel Rodrigues <[email protected]>', 'inspektor', 'One line 
description of project.',
-     'Miscellaneous'),
-]
-
-# Documents to append as an appendix to all manuals.
-#texinfo_appendices = []
-
-# If false, no module index is generated.
-#texinfo_domain_indices = True
-
-# How to display URL addresses: 'footnote', 'no', or 'inline'.
-#texinfo_show_urls = 'footnote'
-
-
-# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'http://docs.python.org/': None}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/documentation/source/index.rst 
new/inspektor-0.5.3/documentation/source/index.rst
--- old/inspektor-0.5.2/documentation/source/index.rst  2017-12-22 
12:41:29.000000000 +0100
+++ new/inspektor-0.5.3/documentation/source/index.rst  1970-01-01 
01:00:00.000000000 +0100
@@ -1,22 +0,0 @@
-.. inspektor documentation master file, created by
-   sphinx-quickstart on Tue Apr 15 02:47:18 2014.
-   You can adapt this file completely to your liking, but it should at least
-   contain the root `toctree` directive.
-
-Welcome to inspektor's documentation!
-=====================================
-
-Contents:
-
-.. toctree::
-   :maxdepth: 2
-
-
-
-Indices and tables
-==================
-
-* :ref:`genindex`
-* :ref:`modindex`
-* :ref:`search`
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/inspektor/cli/app.py 
new/inspektor-0.5.3/inspektor/cli/app.py
--- old/inspektor-0.5.2/inspektor/cli/app.py    2018-07-18 14:24:49.000000000 
+0200
+++ new/inspektor-0.5.3/inspektor/cli/app.py    2021-12-08 18:02:39.000000000 
+0100
@@ -26,7 +26,7 @@
     def __init__(self):
         super(InspektorApp, self).__init__(
             description='Inspektor python code checker and fixer',
-            version='0.5.2',
+            version='0.5.3',
             command_manager=CommandManager('inspektor.app'),
             deferred_help=True,
             )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/inspektor/lint.py 
new/inspektor-0.5.3/inspektor/lint.py
--- old/inspektor-0.5.2/inspektor/lint.py       2018-07-18 14:24:28.000000000 
+0200
+++ new/inspektor-0.5.3/inspektor/lint.py       2021-12-08 18:00:58.000000000 
+0100
@@ -122,7 +122,12 @@
         linter_failed = True
         if paths:
             runner = QuietLintRun(self.get_opts() + paths, exit=False)
-            for module, status in runner.linter.stats.get('by_module').items():
+            if hasattr(runner.linter.stats, 'get'):
+                items = runner.linter.stats.get('by_module').items()
+            else:
+                items = runner.linter.stats.by_module.items()
+            for module, status in items:
+                status.pop("statement")
                 if any(status.values()):
                     self.log.debug('Lint: %s FAIL', module)
                 else:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/inspektor.egg-info/PKG-INFO 
new/inspektor-0.5.3/inspektor.egg-info/PKG-INFO
--- old/inspektor-0.5.2/inspektor.egg-info/PKG-INFO     2018-07-18 
14:28:55.000000000 +0200
+++ new/inspektor-0.5.3/inspektor.egg-info/PKG-INFO     2021-12-08 
18:18:31.000000000 +0100
@@ -1,88 +1,12 @@
-Metadata-Version: 1.1
+Metadata-Version: 2.1
 Name: inspektor
-Version: 0.5.2
+Version: 0.5.3
 Summary: Inspektor python code checker and fixer
 Home-page: https://github.com/avocado-framework/inspektor
 Author: Lucas Meneghel Rodrigues
 Author-email: [email protected]
 License: UNKNOWN
 Download-URL: https://github.com/avocado-framework/inspektor/tarball/master
-Description: Inspektor
-        =========
-        
-        Inspektor is a program used to verify the code of your python project. 
It
-        evolved from a set of scripts used to check patches and code of python 
projects
-        of the autotest organization [1]. As the project grew and new modules 
started
-        to be developed, we noticed the same scripts had to be copied to each 
new
-        project repo, creating a massive headache when we needed to update said
-        scripts.
-        
-        Inspektor knows how to:
-        
-        1) Check code with the help of `pylint`.
-        2) Check indentation of your code with the help of `pycodestyle`,
-           correcting it if you so deem appropriate.
-        3) Check whether your code is PEP8 compliant, correcting it if 
necessary
-           (only works if you have `autopep8` installed) if you so deem 
appropriate.
-        4) If your project is hosted on the autotest github area, it can apply 
pull
-           requests made against it, and check if it introduced any regression 
from
-           the metrics outlined above.
-        
-        This all assumes you're working on a version control checkout of your 
code.
-        Currently inspektor knows how to handle subversion and git.
-        
-        Installing inspektor
-        --------------------
-        
-        You can get inspektor through pip:
-        
-        ::
-        
-            $ sudo pip install inspektor
-        
-        But you should avoid doing that if possible. A virtual environment 
deployment
-        tends to be better, since each installation is restricted to each 
environment:
-        
-        ::
-        
-            $ virtualenv .venv
-            $ source .venv/bin/activate
-            $ pip install inspektor
-        
-        If you are developing inspektor, you can install it in your virtual 
environment
-        as an editable package. From this source code tree root:
-        
-        ::
-        
-            $ pip install -e .
-        
-        Usage
-        -----
-        
-        1) Go to the root of your project source code clone
-        2) If you want to check code with pylint:
-        
-        ::
-        
-            inspekt lint
-        3) If you want to check indentation:
-        
-        ::
-        
-            inspekt indent
-        4) If you want to check compliance to the PEP8:
-        
-        ::
-        
-            inspekt style
-        5) If you want to check PR #123 for a project inside the autotest 
github area:
-        
-        ::
-        
-            inspekt github 123
-        
-        [1] http://autotest.github.io/
-        
 Platform: Any
 Classifier: Development Status :: 3 - Alpha
 Classifier: License :: OSI Approved :: GNU General Public License v2 or later 
(GPLv2+)
@@ -93,3 +17,86 @@
 Classifier: Programming Language :: Python :: 3.6
 Classifier: Intended Audience :: Developers
 Classifier: Environment :: Console
+Description-Content-Type: text/x-rst
+License-File: LICENSE
+
+Inspektor
+=========
+
+Inspektor is a program used to verify the code of your python project. It
+evolved from a set of scripts used to check patches and code of python projects
+of the autotest organization [1]. As the project grew and new modules started
+to be developed, we noticed the same scripts had to be copied to each new
+project repo, creating a massive headache when we needed to update said
+scripts.
+
+Inspektor knows how to:
+
+1) Check code with the help of `pylint`.
+2) Check indentation of your code with the help of `pycodestyle`,
+   correcting it if you so deem appropriate.
+3) Check whether your code is PEP8 compliant, correcting it if necessary
+   (only works if you have `autopep8` installed) if you so deem appropriate.
+4) If your project is hosted on the autotest github area, it can apply pull
+   requests made against it, and check if it introduced any regression from
+   the metrics outlined above.
+
+This all assumes you're working on a version control checkout of your code.
+Currently inspektor knows how to handle subversion and git.
+
+Installing inspektor
+--------------------
+
+You can get inspektor through pip:
+
+::
+
+    $ sudo pip install inspektor
+
+But you should avoid doing that if possible. A virtual environment deployment
+tends to be better, since each installation is restricted to each environment:
+
+::
+
+    $ virtualenv .venv
+    $ source .venv/bin/activate
+    $ pip install inspektor
+
+If you are developing inspektor, you can install it in your virtual environment
+as an editable package. From this source code tree root:
+
+::
+
+    $ pip install -e .
+
+Usage
+-----
+
+1) Go to the root of your project source code clone
+2) If you want to check code with pylint:
+
+::
+
+    inspekt lint
+
+3) If you want to check indentation:
+
+::
+
+    inspekt indent
+
+4) If you want to check compliance to the PEP8:
+
+::
+
+    inspekt style
+
+5) If you want to check PR #123 for a project inside the autotest github area:
+
+::
+
+    inspekt github 123
+
+[1] http://autotest.github.io/
+
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/inspektor.egg-info/SOURCES.txt 
new/inspektor-0.5.3/inspektor.egg-info/SOURCES.txt
--- old/inspektor-0.5.2/inspektor.egg-info/SOURCES.txt  2018-07-18 
14:28:55.000000000 +0200
+++ new/inspektor-0.5.3/inspektor.egg-info/SOURCES.txt  2021-12-08 
18:18:31.000000000 +0100
@@ -1,25 +1,7 @@
-.gitignore
-.travis.yml
 LICENSE
 MANIFEST.in
-Makefile
 README.rst
-inspektor.spec
 setup.py
-debian/changelog
-debian/compat
-debian/control
-debian/copyright
-debian/pyversions
-debian/rules
-debian/watch
-debian/source/format
-debian/source/options
-documentation/Makefile
-documentation/source/conf.py
-documentation/source/index.rst
-documentation/source/_static/.gitignore
-documentation/source/_templates/.gitignore
 inspektor/__init__.py
 inspektor/indent.py
 inspektor/license.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/inspektor.spec 
new/inspektor-0.5.3/inspektor.spec
--- old/inspektor-0.5.2/inspektor.spec  2018-07-18 14:24:49.000000000 +0200
+++ new/inspektor-0.5.3/inspektor.spec  1970-01-01 01:00:00.000000000 +0100
@@ -1,86 +0,0 @@
-%global inspektorversion 0.5.2
-Summary: Inspektor python project checker
-Name: inspektor
-Version: %{inspektorversion}
-Release: 0%{?dist}
-License: GPLv2
-Group: Development/Tools
-URL: https://github.com/avocado-framework/inspektor
-Source: inspektor-%{inspektorversion}.tar.gz
-BuildArch: noarch
-
-%if "%{?dist}" == ".el6"
-Requires: python, pylint < 1.4, python-pep8, python-logutils, python-six, 
python-cliff
-BuildRequires: python2-devel, pylint < 1.4, python-pep8, python-logutils, 
python-six, python-cliff
-%else
-Requires: python, pylint >= 1.3, python-pep8, python-logutils, python-six, 
python-cliff
-BuildRequires: python2-devel, pylint >= 1.3, python-pep8, python-six, 
python-cliff
-%endif
-
-%description
-Inspektor is a checker tool, that tries to automate a number of checks in a
-python project code:
-* Syntax
-* Indentation
-* PEP8 compliance
-It also helps you to batch add license header files, and analyze github pull
-requests, in case your project uses github. Inspektor was developed to ease
-patch review for programs developed by the autotest project team.
-
-%prep
-%setup -q
-
-%build
-%{__python} setup.py build
-
-%install
-%{__python} setup.py install --root %{buildroot} --skip-build
-
-%files
-%defattr(-,root,root,-)
-%doc README.rst LICENSE
-%{_bindir}/inspekt
-%{python_sitelib}/inspektor*
-
-
-%changelog
-* Wed Jul 18 2018 Lucas Meneghel Rodrigues <[email protected]> - 0.5.2-0
-- New upstream version 0.5.2
-* Thu May  3 2018 Cleber Rosa <[email protected]> - 0.5.1-0
-- New upstream version 0.5.1
-* Thu May  3 2018 Cleber Rosa <[email protected]> - 0.4.6-0
-- New upstream version 0.4.6
-- Updated URL from autotest to avocado-framework project
-* Fri Aug 11 2017 Lucas Meneghel Rodrigues <[email protected]> - 0.4.5-0
-- New upstream version 0.4.5
-* Wed Jul 19 2017 Lucas Meneghel Rodrigues <[email protected]> - 0.4.0-0
-- New upstream version 0.4.0
-- Application is now based on the cliff python app framework
-* Fri May 5 2017 Lucas Meneghel Rodrigues <[email protected]> - 0.3.0-0
-- New upstream version 0.3.0
-* Mon Jan 18 2016 Lucas Meneghel Rodrigues <[email protected]> - 0.2.1-0
-- New upstream version 0.2.1
-* Tue Dec 2 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.2.0-0
-- New upstream version 0.2.0
-* Thu Mar 19 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.1.15-3
-- Add conditional build dependencies
-* Wed Mar 11 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.1.15-2
-- Fix build on COPR
-* Wed Mar 11 2015 Lucas Meneghel Rodrigues <[email protected]> - 0.1.15-1
-- New upstream version 0.1.15
-* Tue Apr 29 2014 Lucas Meneghel Rodrigues <[email protected]> - 0.1.9-5
-- Moved macro definitions to rpm spec file, fix build on COPR
-* Tue Apr 29 2014 Lucas Meneghel Rodrigues <[email protected]> - 0.1.9-4
-- Fix error in pkg spec that was preventing build on COPR
-* Tue Apr 29 2014 Lucas Meneghel Rodrigues <[email protected]> - 0.1.9-3
-- Fix error in pkg spec that was preventing build on COPR
-* Tue Apr 29 2014 Lucas Meneghel Rodrigues <[email protected]> - 0.1.9-2
-- Fix error in pkg spec that was preventing build on COPR
-* Tue Apr 29 2014 Lucas Meneghel Rodrigues <[email protected]> - 0.1.9-1
-- New upstream version
-* Thu Apr 10 2014 Lucas Meneghel Rodrigues <[email protected]> - 0.1.5-3
-- Fix autopep8 build dep
-* Thu Apr 10 2014 Lucas Meneghel Rodrigues <[email protected]> - 0.1.5-2
-- Fix pylint build dep
-* Thu Apr 10 2014 Lucas Meneghel Rodrigues <[email protected]> - 0.1.5-1
-- Created initial spec file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/inspektor-0.5.2/setup.py new/inspektor-0.5.3/setup.py
--- old/inspektor-0.5.2/setup.py        2018-07-18 14:24:49.000000000 +0200
+++ new/inspektor-0.5.3/setup.py        2021-12-08 18:17:37.000000000 +0100
@@ -20,7 +20,7 @@
 PROJECT = 'inspektor'
 
 # Change documentation/source/conf.py and inspektor/cli/app.py
-VERSION = '0.5.2'
+VERSION = '0.5.3'
 
 REQUIRES = ['six']
 if sys.version_info[:2] == (2, 6):
@@ -42,6 +42,7 @@
     version=VERSION,
 
     description='Inspektor python code checker and fixer',
+    long_description_content_type='text/x-rst',
     long_description=long_description,
 
     author='Lucas Meneghel Rodrigues',

Reply via email to