Compare commits

..

10 commits

Author SHA1 Message Date
Till Maas
24bf557890 2014-06-04 - This package was already retired in pkgdb/blocked in koji, but no dead.package file existed. The original retirement reason is unclear. 2014-06-04 19:32:26 +02:00
Dennis Gilmore
2f8a9d28e2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild 2012-01-12 18:44:37 -06:00
Matthias Runge
3c644c3c7b forgotten patch reference 2011-11-28 08:46:04 +01:00
Matthias Runge
05d1cbe37b fix for bz 652188 2011-11-28 08:44:55 +01:00
Dennis Gilmore
5f860f0c65 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild 2011-02-08 08:08:34 -06:00
Matthias Runge
ca55359215 force rebuild 2010-07-31 19:42:30 +02:00
Fedora Release Engineering
aa56f2b7e5 dist-git conversion 2010-07-28 13:04:46 +00:00
Matthias Runge
7eb91984df Make wildcard more general to catch all files. 2010-07-22 05:21:03 +00:00
dmalcolm
75bece5419 - Rebuilt for
https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
2010-07-22 01:07:57 +00:00
Matthias Runge
9fbffa64c9 Initial import devel branch 2010-04-03 18:50:59 +00:00
4 changed files with 1 additions and 94 deletions

1
.gitignore vendored
View file

@ -1 +0,0 @@
django-lint-0.13.tar.bz2

1
dead.package Normal file
View file

@ -0,0 +1 @@
2014-06-04 - This package was already retired in pkgdb/blocked in koji, but no dead.package file existed. The original retirement reason is unclear.

View file

@ -1,92 +0,0 @@
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%endif
Name: django-lint
Version: 0.13
Release: 5%{?dist}
Summary: Analyzes Django code looking for bugs and signs of poor quality
Group: Development/Debuggers
License: GPLv3+
URL: http://chris-lamb.co.uk/projects/django-lint/
Source0: http://chris-lamb.co.uk/releases/%{name}/%{name}-%{version}/%{name}-%{version}.tar.bz2
BuildArch: noarch
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildRequires: python2-devel
Requires: Django
Requires: pylint
%description
Django Lint is a static analysis tool that checks (or "lints") projects
and applications that use the Django web development framework.
It reports on common programming errors and bad code smells, including
checking for null-able CharField field types, the use of brittle or deprecated
Django features (such as auto_now_add) as well as the absence of recommended
options in settings.py. It aims to encourage the development of high-quality
re-usable Django applications.
Django Lint is currently implemented as a wrapper around PyLint.
%prep
%setup -q -n %{name}
%build
%{__python} setup.py build
%install
rm -rf %{buildroot}
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
%{__mkdir} -pm 755 %{buildroot}%{_mandir}/man1
%{__install} -pm 644 django-lint.1 %{buildroot}%{_mandir}/man1/
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc README.rst COPYING
%{python_sitelib}/DjangoLint*
%{python_sitelib}/django_lint-0.0.0-py2.6.egg-info
%{_bindir}/*
%{_mandir}/man?/*
%changelog
* Mon Mar 29 2010 Matthias Runge <mrunge@fedoraproject.org> 0.13-5
- Fix execute permissions
* Mon Mar 29 2010 Matthias Runge <mrunge@fedoraproject.org> 0.13-4
- Install man page
* Sat Mar 27 2010 Matthias Runge <mrunge@fedoraproject.org> 0.13-3
- SPEC Fix: License is GPLv3+
* Mon Mar 01 2010 Matthias Runge <mrunge@fedoraproject.org> 0.13-2
- SPEC-Fixes (global instead of define), Source0 fixed
* Tue Feb 02 2010 Matthias Runge <mrunge@fedoraproject.org> 0.13-1
- Update to version 0.13
* Sun Jan 03 2010 Matthias Runge <mrunge@fedoraproject.org> 0.12-1
- Version bump 0.12
* Fri Dec 4 2009 Matthias Runge <mrunge@fedoraproject.org> 0.11-5
- SPEC fix for mock build
* Wed Dec 2 2009 Matthias Runge <mrunge@fedoraproject.org> 0.11-4
- SPEC fixes
* Mon Nov 23 2009 Matthias Runge <mrunge@fedoraproject.org> 0.11-1
- Version 0.11
- Initial RPM build

View file

@ -1 +0,0 @@
374a639fd34c41b29d3a80156ea42b3d django-lint-0.13.tar.bz2