vtrefny / rpms / pylint

Forked from rpms/pylint 4 years ago
Clone
de86cff
Name:           pylint
754196b
Version:        2.3.1
3cb43cf
Release:        3%{?dist}
de86cff
Summary:        Analyzes Python code looking for bugs and signs of poor quality
006ee69
License:        GPLv2+
53c567a
URL:            http://www.pylint.org/
45e3a64
Source0:        %{pypi_source}
9cc610f
922e9df
BuildArch:      noarch
4df9bc6
e9df221
BuildRequires:  python3-devel
e9df221
BuildRequires:  python3-setuptools
e9df221
# For tests
f22651d
BuildRequires:  python3-astroid >= 2.0.2
e9df221
BuildRequires:  python3-isort
e9df221
BuildRequires:  python3-mccabe
e9df221
BuildRequires:  python3-pytest
e9df221
BuildRequires:  python3-pytest-runner
Orion Poplawski 7d94e29
e9df221
# For the main pylint package
e9df221
Requires:       python3-%{name} = %{version}-%{release}
Orion Poplawski 7d94e29
e9df221
%description
bfc7be4
Pylint is a Python source code analyzer which looks for programming
bfc7be4
errors, helps enforcing a coding standard and sniffs for some code
bfc7be4
smells (as defined in Martin Fowler's Refactoring book).
bfc7be4
Pylint can be seen as another PyChecker since nearly all tests you
bfc7be4
can do with PyChecker can also be done with Pylint. However, Pylint
bfc7be4
offers some more features, like checking length of lines of code,
bfc7be4
checking if variable names are well-formed according to your coding
bfc7be4
standard, or checking if declared interfaces are truly implemented,
bfc7be4
and much more.
bfc7be4
Additionally, it is possible to write plugins to add your own checks.
Orion Poplawski 7d94e29
e9df221
%package -n python3-%{name}
e9df221
Summary:        %{summary}
754196b
Requires:       python3-astroid >= 2.2
e9df221
Requires:       python3-setuptools
e9df221
Requires:       python3-mccabe
e9df221
Requires:       python3-isort
e9df221
Obsoletes:      python3-pylint-gui < 1.7
e9df221
%{?python_provide:%python_provide python3-%{name}}
e9df221
e9df221
%description -n python3-%{name}
bfc7be4
Pylint is a Python source code analyzer which looks for programming
bfc7be4
errors, helps enforcing a coding standard and sniffs for some code
bfc7be4
smells (as defined in Martin Fowler's Refactoring book).
bfc7be4
Pylint can be seen as another PyChecker since nearly all tests you
bfc7be4
can do with PyChecker can also be done with Pylint. However, Pylint
bfc7be4
offers some more features, like checking length of lines of code,
bfc7be4
checking if variable names are well-formed according to your coding
bfc7be4
standard, or checking if declared interfaces are truly implemented,
bfc7be4
and much more.
bfc7be4
Additionally, it is possible to write plugins to add your own checks.
de86cff
de86cff
%prep
45e3a64
%autosetup -p1
e9df221
e9df221
# Convert DOS line endings to Unix
e9df221
sed -i 's/\r//g' README.rst
de86cff
de86cff
%build
Orion Poplawski 6859605
%py3_build
de86cff
de86cff
%install
Orion Poplawski 6859605
%py3_install
51d6897
rm -rf %{buildroot}%{python3_sitelib}/pylint/test
e9df221
51d6897
mkdir -pm 755 %{buildroot}%{_mandir}/man1
51d6897
install -pm 644 man/*.1 %{buildroot}%{_mandir}/man1/
e9df221
e9df221
# Add -%%{python3_version} to the binaries and manpages for backwards compatibility
aef7845
for NAME in epylint pylint pyreverse symilar; do
Orion Poplawski 7d94e29
    mv %{buildroot}%{_bindir}/{$NAME,${NAME}-%{python3_version}}
Orion Poplawski 034593c
    ln -s ${NAME}-%{python3_version} %{buildroot}%{_bindir}/${NAME}-3
Orion Poplawski 7d94e29
    mv %{buildroot}%{_mandir}/man1/{${NAME}.1,${NAME}-%{python3_version}.1}
Orion Poplawski 034593c
    ln -s ${NAME}-%{python3_version}.1 %{buildroot}%{_mandir}/man1/${NAME}-3.1
Orion Poplawski 7d94e29
    ln -s ${NAME}-%{python3_version} %{buildroot}%{_bindir}/${NAME}
Orion Poplawski 7d94e29
    ln -s ${NAME}-%{python3_version}.1 %{buildroot}%{_mandir}/man1/${NAME}.1
Orion Poplawski 7d94e29
done
de86cff
Orion Poplawski 6859605
%check
Orion Poplawski 6859605
export PYTHONPATH=%{buildroot}%{python3_sitelib}
Orion Poplawski 6859605
%{__python3} bin/pylint -rn --rcfile=pylintrc --load-plugins=pylint.extensions.docparams, pylint.extensions.mccabe pylint || :
f587765
# Skip failing tests, reported upstream: https://github.com/PyCQA/pylint/issues/2288
f22651d
# test_good_comprehension_checks is considered expected failure in our case
158373f
%{__python3} -m pytest -v -k "not (test_functional or test_good_comprehension_checks)"
Orion Poplawski 6859605
de86cff
%files
23c02f7
%doc README.rst ChangeLog examples elisp
23c02f7
%license COPYING
Orion Poplawski 7d94e29
%{_bindir}/epylint
Orion Poplawski 7d94e29
%{_bindir}/pylint
Orion Poplawski 7d94e29
%{_bindir}/pyreverse
Orion Poplawski 7d94e29
%{_bindir}/symilar
Orion Poplawski 7d94e29
%{_mandir}/man1/epylint.1*
Orion Poplawski 7d94e29
%{_mandir}/man1/pylint.1*
Orion Poplawski 7d94e29
%{_mandir}/man1/pyreverse.1*
Orion Poplawski 7d94e29
%{_mandir}/man1/symilar.1*
de86cff
e9df221
%files -n python3-%{name}
23c02f7
%license COPYING
51d6897
%{python3_sitelib}/pylint*
e9df221
# backwards compatible versioned executables and manpages:
Orion Poplawski 034593c
%{_bindir}/*-3
Orion Poplawski 7d94e29
%{_bindir}/*-%{python3_version}
Orion Poplawski 034593c
%{_mandir}/man1/*-3.1*
Orion Poplawski 7d94e29
%{_mandir}/man1/*-%{python3_version}.1*
de86cff
de86cff
%changelog
3cb43cf
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.3.1-3
3cb43cf
- Rebuilt for Python 3.8
3cb43cf
29d0032
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.1-2
29d0032
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
29d0032
754196b
* Sat Mar 30 2019 Christian Dersch <lupinix@fedoraproject.org> - 2.3.1-1
754196b
- new version
754196b
- removed Patch0, applied upstream
754196b
848d1ca
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.1-3
848d1ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
848d1ca
94674a6
* Fri Nov 09 2018 Christian Dersch <lupinix@mailbox.org> - 2.1.1-2
94674a6
- Apply upstream fix for #1648299
94674a6
2873e2a
* Tue Oct 02 2018 Christian Dersch <lupinix@fedoraproject.org> - 2.1.1-1
2873e2a
- new version
2873e2a
f22651d
* Wed Aug 01 2018 Christian Dersch <lupinix@mailbox.org> - 2.1.0-1
f22651d
- new version
f22651d
8c68917
* Wed Jul 25 2018 Christian Dersch <lupinix.fedora@gmail.com> - 2.0.1-1
8c68917
- new version
8c68917
45e3a64
* Sun Jul 15 2018 Christian Dersch <lupinix@fedoraproject.org> - 2.0.0-1
45e3a64
- Final 2.0.0 release
45e3a64
9cc610f
* Sun Jul 15 2018 Christian Dersch <lupinix@fedoraproject.org> - 2.0.0-0.5dev1
9cc610f
- Import upstream fix for https://github.com/PyCQA/pylint/issues/2238
9cc610f
7803ec4
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.0-0.4dev1
7803ec4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
7803ec4
c8d46f5
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 2.0.0-0.3dev1
c8d46f5
- Rebuilt for Python 3.7
c8d46f5
685f9e6
* Tue Jun 05 2018 Miro Hrončok <mhroncok@redhat.com> - 2.0.0-0.2dev1
685f9e6
- Update to 2.0.0dev1
685f9e6
e9df221
* Mon May 21 2018 Miro Hrončok <mhroncok@redhat.com> - 2.0.0-0.1dev0
e9df221
- Update to 2.0.0dev0
e9df221
- Drop python2-pylint (to it's own source RPM)
e9df221
4df9bc6
* Sun Apr 15 2018 Miro Hrončok <mhroncok@redhat.com> - 1.7.5-3
4df9bc6
- Conditionalize python2 subpackage, don't build it on RHEL > 7
4df9bc6
d73927b
* Wed Feb 28 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.7.5-2
d73927b
- Update Python 2 dependency declarations to new packaging standards
d73927b
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
d73927b
f7428ec
* Tue Feb 27 2018 Gwyn Ciesla <limburgher@gmail.com> - 1.7.5-1
f7428ec
- 1.7.5.
f7428ec
c3d1fbc
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.7.4-4
c3d1fbc
- Escape macros in %%changelog
c3d1fbc
4f58116
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.4-3
4f58116
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
4f58116
fad873b
* Thu Jan 18 2018 Karsten Hopp <karsten@redhat.com> - 1.7.4-2
fad873b
- update requirements
fad873b
ff15c47
* Tue Oct 10 2017 Christian Dersch <lupinix@mailbox.org> - 1.7.4-1
ff15c47
- new version
ff15c47
- added BR: python2-configparser, python(2,3)-mccabe for proper test execution
ff15c47
65c997b
* Thu Aug 31 2017 Brian C. Lane <bcl@redhat.com> - 1.7.2-2
65c997b
- Remove module that wasn't actually moved. (#1483869)
65c997b
7ed7a6b
* Wed Aug 02 2017 Gwyn Ciesla <limburgher@gmail.com> - 1.7.2-1
7ed7a6b
- 1.7.2.
7ed7a6b
9bf372a
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.1-2
9bf372a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
9bf372a
60c3006
* Sun May 14 2017 Christian Dersch <lupinix@mailbox.org> - 1.7.1-1
60c3006
- new version
d34c277
- we need pytest-runner now
429b28b
- pylint-gui has been removed upstream
60c3006
Orion Poplawski 034593c
* Wed Apr 5 2017 Orion Poplawski <orion@cora.nwra.com> - 1.6.5-4
Orion Poplawski 034593c
- Provide python major version links (bug #1439070)
Orion Poplawski 034593c
Orion Poplawski 7d94e29
* Tue Mar 28 2017 Orion Poplawski <orion@cora.nwra.com> - 1.6.5-3
Orion Poplawski 7d94e29
- Split python2 modules into sub-packages
Orion Poplawski 7d94e29
- Make python3 the default for scripts on Fedora 26+
Orion Poplawski 7d94e29
Orion Poplawski 6859605
* Mon Mar 13 2017 Orion Poplawski <orion@cora.nwra.com> - 1.6.5-2
Orion Poplawski 6859605
- Enable python3 build for EPEL
Orion Poplawski 6859605
- Include python3-pylint-gui __pycache__ files in gui package (bug #1422609)
Orion Poplawski 6859605
- Cleanup spec
Orion Poplawski 6859605
- Run tests, but they currently fail
Orion Poplawski 6859605
63ce0ec
* Wed Feb 22 2017 Christian Dersch <lupinix@mailbox.org> - 1.6.5-1
63ce0ec
- new version
63ce0ec
b308d72
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.4-3
b308d72
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b308d72
13171c7
* Tue Dec 13 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.6.4-2
13171c7
- Rebuild for Python 3.6
13171c7
cb8293c
* Mon Oct 03 2016 Jon Ciesla <limburgher@gmail.com> - 1.6.4-1
cb8293c
- Upstream v1.6.4
cb8293c
348133c
* Fri Jul 29 2016 Jon Ciesla <limburgher@gmail.com> - 1.5.6-1
348133c
- Upstream v1.5.6
348133c
4430fe4
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.5-2
4430fe4
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
4430fe4
dce67fe
* Thu Apr 07 2016 Brian C. Lane <bcl@redhat.com> 1.5.5-1
dce67fe
- Upstream v1.5.5
dce67fe
b054387
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-2
b054387
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b054387
6d54557
* Mon Jan 18 2016 Brian C. Lane <bcl@redhat.com> 1.5.4-1
6d54557
- Upstream v1.5.4
6d54557
23c02f7
* Mon Jan 04 2016 Brian C. Lane <bcl@redhat.com> 1.5.2-1
23c02f7
- Upstream v1.5.2
23c02f7
bfc7be4
* Thu Dec 10 2015 Brian C. Lane <bcl@redhat.com> 1.5.1-1
bfc7be4
- Upstream v1.5.1
c3d1fbc
- Remove %%check section, it does not work due to unpackaged requirements.
bfc7be4
- Update description from the package's __pkginfo__.py file.
bfc7be4
276486c
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.3-4
276486c
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
276486c
bd05e6d
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.3-3
bd05e6d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
bd05e6d
7e66c98
* Wed May 27 2015 Mathieu Bridon <bochecha@daitauha.fr> - 1.4.3-2
7e66c98
- Drop python3 requirements from the python2 package.
7e66c98
- Add missing requirement on six.
7e66c98
45da38d
* Tue Apr 28 2015 Brian C. Lane <bcl@redhat.com> 1.4.3-1
45da38d
- Upstream v1.4.3
45da38d
f58ab25
* Fri Jan 30 2015 Brian C. Lane <bcl@redhat.com> 1.4.1-3
f58ab25
- Exclude the python3-* files from the python2 package
f58ab25
de75f9d
* Thu Jan 29 2015 Brian C. Lane <bcl@redhat.com> 1.4.1-2
de75f9d
- Add python-six requirement
de75f9d
3e455aa
* Wed Jan 28 2015 Brian C. Lane <bcl@redhat.com> 1.4.1-1
3e455aa
- Upstream v1.4.1
3e455aa
002e816
* Mon Oct 27 2014 Brian C. Lane <bcl@redhat.com> 1.3.1-2
002e816
- python3-pylint-gui needs python3-tkinter
002e816
633aeea
* Fri Oct 03 2014 Brian C. Lane <bcl@redhat.com> 1.3.1-1
633aeea
- Upstream v1.3.1
633aeea
  Dropped patches included in upstream
633aeea
cd28325
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-7
cd28325
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
cd28325
b234779
* Mon Jun 02 2014 Brian C. Lane <bcl@redhat.com> 1.2-6
b234779
- Add python3-astroid and python3-setuptools as Requires (#1103479)
b234779
444a32e
* Tue May 27 2014 Kalev Lember <kalevlember@gmail.com> - 1.2-5
444a32e
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
444a32e
72897ea
* Fri May 09 2014 Brian C. Lane <bcl@redhat.com> 1.2-4
72897ea
- Fix a potential AttributeError when checking for `reversed` arguments.
72897ea
  https://bitbucket.org/logilab/pylint/commits/93babaf6bffc59a49c75319d9850086b4935edbc
72897ea
a13bbd4
* Thu May 08 2014 Brian C. Lane <bcl@redhat.com> 1.2-3
a13bbd4
- fix explicit check of python script
a13bbd4
  https://bitbucket.org/logilab/pylint/issue/219/
a13bbd4
922e9df
* Thu Apr 24 2014 Brian C. Lane <bcl@redhat.com> 1.2-2
922e9df
- Patch to Fix --init-hook typo (dshea)
922e9df
  https://bitbucket.org/logilab/pylint/issue/211/init-hook-no-longer-works
922e9df
9f1cd7e
* Tue Apr 22 2014 Brian C. Lane <bcl@redhat.com> 1.2-1
9f1cd7e
- Upstream v1.2
9f1cd7e
4b79379
* Thu Feb 27 2014 Brian C. Lane <bcl@redhat.com> 1.1.0-1
4b79379
- Upstream v1.1.0
4b79379
  Drop patch included in upstream
4b79379
1f12936
* Thu Oct 24 2013 Brian C. Lane <bcl@redhat.com> 1.0.0-3
1f12936
- Switching on python3 support
1f12936
501af29
* Tue Sep 03 2013 Brian C. Lane <bcl@redhat.com> 1.0.0-2
501af29
- Add upstream patch for epylint input validation (#981859)
501af29
53c567a
* Tue Aug 13 2013 Brian C. Lane <bcl@redhat.com> 1.0.0-1
53c567a
- Upstream 1.0.0
53c567a
9decff7
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.26.0-3
9decff7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
9decff7
77677f3
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.26.0-2
77677f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
77677f3
51d6897
* Thu Jan 10 2013 Brian C. Lane <bcl@redhat.com> 0.26.0-1
51d6897
- Upstream 0.26.0
51d6897
- Add python3-pylint and python3-pylint-gui subpackages. Not ready to turn it
51d6897
  on yet due to this upstream bug: http://www.logilab.org/ticket/110213
51d6897
e4b7c9a
* Fri Aug 03 2012 Brian C. Lane <bcl@redhat.com> 0.25.2-1
e4b7c9a
- Upstream 0.25.2
e4b7c9a
319bf74
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.25.1-2
319bf74
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
319bf74
e0640e5
* Wed Mar 14 2012 Brian C. Lane <bcl@redhat.com> 0.25.1-1
e0640e5
- Upstream 0.25.1
e0640e5
3b8776d
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.25.0-2
3b8776d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
3b8776d
fb08bcb
* Fri Nov 18 2011 Brian C. Lane <bcl@redhat.com> - 0.25.0-1
fb08bcb
- Upstream 0.25.0
fb08bcb
d48dff6
* Fri Jul 29 2011 Brian C. Lane <bcl@redhat.com> - 0.24.0-1
d48dff6
- Upstream 0.24.0
d48dff6
a3d3418
* Mon Mar 28 2011 Brian C. Lane <bcl@redhat.com> - 0.23-0.1
a3d3418
- Upstream 0.23.0
a3d3418
- Add unit tests to spec
a3d3418
a738fc5
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.22.0-3
a738fc5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a738fc5
6087c5a
* Mon Dec 06 2010 Brian C. Lane <bcl@redhat.com> - 0.22.0-2
6087c5a
- Add version to requirement for python-logilab-astng so that updates will
6087c5a
  work correctly.
6087c5a
6087c5a
* Mon Nov 29 2010 Brian C. Lane <bcl@redhat.com> - 0.22.0-1
ca54d9c
- Upstream 0.22.0
ca54d9c
ec90ee7
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.21.1-2
ec90ee7
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
ec90ee7
80e557d
* Thu Jul 08 2010 Brian C. Lane <bcl@redhat.com> - 0.21.1-1
80e557d
- Upstream 0.21.1
80e557d
- Removed patch for 500272, fixed upstream - http://www.logilab.org/ticket/22962
80e557d
75f7bfd
* Mon Apr 05 2010 Brian C. Lane <bcl@redhat.com> - 0.20.0-2
75f7bfd
- Added patch for bug 500272 (exception with --disable-msg-cat)
75f7bfd
7a1fe13
* Fri Mar 26 2010 Brian C.Lane <bcl@redhat.com> - 0.20.0-1
7a1fe13
- Upstream 0.20.0
7a1fe13
- Added python-setuptools to BuildRequires
bf9494e
94244e9
* Sun Aug 30 2009 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.18.1-1
94244e9
- Upstream 0.18.1 (bugfixes and small enhancements)
94244e9
57d9808
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18.0-2
57d9808
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
57d9808
e8c832e
* Wed Jun 17 2009 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.18.0-1
e8c832e
- Upstream 0.18.0 (bugfixes and minor feature updates)
e8c832e
8c96057
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.16.0-2
8c96057
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
8c96057
05eae2c
* Wed Jan 28 2009 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.16.0-1
05eae2c
- Upstream 0.16.0
05eae2c
318e2e1
* Tue Dec 30 2008 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.15.2-1
318e2e1
- Upstream 0.15.2
318e2e1
5877b6b
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.14.0-2
5877b6b
- Rebuild for Python 2.6
5877b6b
fe33666
* Thu Jan 17 2008 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.14.0-1
fe33666
- Upstream 0.14.0
fe33666
- Package the .egg-info files.
fe33666
006ee69
* Mon Dec 24 2007 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.13.2-1
006ee69
- Upstream 0.13.2
006ee69
- Adjust license to a more precise version
006ee69
- Fix docs to be valid utf-8
006ee69
86c4bda
* Sun Apr 01 2007 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.13.1-1
86c4bda
- Upstream 0.13.1
86c4bda
a3d2799
* Sun Dec 17 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.12.2-1
a3d2799
- Upstream 0.12.2
a3d2799
- Add COPYING to -gui
a3d2799
cd97744
* Tue Sep 26 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.12.1-1
a3d2799
- Upstream 0.12.1
cd97744
- Require the renamed python-logilab-astng
cd97744
ee0662a
* Mon May 01 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.11.0-0
ee0662a
- Version 0.11.0
ee0662a
fb33f0c
* Sun Mar 12 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.10.0-1
fb33f0c
- Version 0.10.0
fb33f0c
8180db7
* Thu Jan 12 2006 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.9.0-1
8180db7
- Version 0.9.0
8180db7
- Add COPYING to docs
8180db7
29ae062
* Sun Nov 13 2005 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.8.1-1
29ae062
- Version 0.8.1
29ae062
- Add dependency on python-astng
29ae062
- Drop artificial version requirement on python-logilab-common
29ae062
3ee3cef
* Mon Jun 13 2005 Konstantin Ryabitsev <icon@linux.duke.edu> - 0.7.0-1
3ee3cef
- Version 0.7.0
3ee3cef
- No longer in the logilab subdir
3ee3cef
- Disttagging
3ee3cef
097752d
* Mon May 09 2005 Konstantin Ryabitsev <icon@linux.duke.edu> - 0.6.4-4
097752d
- Install the pylint.1 manfile.
097752d
- Add examples and elisp dirs to docs.
097752d
de86cff
* Thu May 05 2005 Konstantin Ryabitsev <icon@linux.duke.edu> - 0.6.4-3
de86cff
- Only doc the .txt files.
de86cff
- Don't buildrequire python-logilab-common
de86cff
- Fix paths.
de86cff
de86cff
* Tue Apr 26 2005 Konstantin Ryabitsev <icon@linux.duke.edu> - 0.6.4-2
de86cff
- Ghost .pyo files.
de86cff
- Remove the test dir, as it doesn't do anything.
de86cff
- Separate the gui package, which depends on tkinter.
de86cff
- Don't own site-packages/logilab, which is owned by
de86cff
  python-logilab-common.
de86cff
de86cff
* Fri Apr 22 2005 Konstantin Ryabitsev <icon@linux.duke.edu> - 0.6.4-1
de86cff
- Initial packaging.