source: projects/specs/branches/6/p/python-django-tagging/python-django-tagging-vl.spec @ 5795

Revision 5795, 2.3 KB checked in by Takemikaduchi, 12 years ago (diff)

rebuild package

Line 
1%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
2
3%define alphatag r154
4%define srcname django-tagging
5
6Name:           python-%{srcname}
7Version:        0.3
8Release:        3.20080217svn%{alphatag}%{?_dist_release}
9Summary:        A generic tagging application for Django projects
10
11Group:          Development/Languages
12License:        MIT
13URL:            http://code.google.com/p/django-tagging/
14# svn export -r154 http://django-tagging.googlecode.com/svn/trunk/ django-tagging-0.3-r154
15# tar zcf django-tagging-0.3-r154.tar.gz django-tagging-0.3-r154
16Source0:        %{srcname}-%{version}-%{alphatag}.tar.gz
17BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
18
19BuildArch:      noarch
20BuildRequires:  python-devel
21Requires:       python-django
22
23%description
24A generic tagging application for Django projects, which allows association
25of a number of tags with any Model instance and makes retrieval of tags
26simple.
27
28%prep
29%setup -q -n %{srcname}-%{version}-%{alphatag}
30
31%build
32%{__python} setup.py build
33
34
35%install
36%__rm -rf $RPM_BUILD_ROOT
37%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
38
39%clean
40%__rm -rf $RPM_BUILD_ROOT
41
42%files
43%defattr(-,root,root,-)
44%doc CHANGELOG.txt LICENSE.txt README.txt docs/*
45%{python_sitelib}/*
46
47%changelog
48* Thu Mar 01 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.3-3.20080217svnr154
49- rebuild with Vine6 environment
50
51* Thu Sep 02 2010 Munehiro Yamamoto <munepi@vinelinux.org> - 0.3-2.20080217svnr154
52- changed from Django to python-django in Requires: (see changeset r1742)
53
54* Mon Aug 23 2010 Munehiro Yamamoto <munepi@vinelinux.org> - 0.3-1.20080217svnr154
55- initial build based on Fedora development
56
57* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.3-3.20080217svnr154
58- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
59
60* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3-2.20080217svnr154
61- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
62
63* Mon Mar 02 2009 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> 0.3-1.20080217svnr154
64- Add Requires: Django
65
66* Wed Feb 18 2009 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> 0.3-0.20080217svnr154
67- Initial RPM release
Note: See TracBrowser for help on using the repository browser.