source: projects/specs/trunk/p/python-mako/python-mako-vl.spec @ 9551

Revision 9551, 3.8 KB checked in by kudoh, 9 years ago (diff)

new upstream release and rebuild

Line 
1%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
2
3Name: python-mako
4Version: 1.0.1
5Release: 1%{?_dist_release}
6Summary: Mako template library for Python
7Summary(ja): Python の Mako テンプレートライブラリ
8
9Group: Development/Languages
10License: MIT
11URL: http://www.makotemplates.org/
12Source0: http://www.makotemplates.org/downloads/Mako-%{version}.tar.gz
13BuildRoot: %{_tmppath}/%{name}-%{version}-root
14BuildArch: noarch
15BuildRequires: python-setuptools
16Requires: python-beaker
17
18%description
19Mako is a template library written in Python. It provides a familiar, non-XML
20syntax which compiles into Python modules for maximum performance. Mako's
21syntax and API borrows from the best ideas of many others, including Django
22templates, Cheetah, Myghty, and Genshi. Conceptually, Mako is an embedded
23Python (i.e. Python Server Page) language, which refines the familiar ideas of
24componentized layout and inheritance to produce one of the most straightforward
25and flexible models available, while also maintaining close ties to Python
26calling and scoping semantics.
27
28
29%prep
30%setup -q -n Mako-%{version}
31
32
33%build
34%{__python} setup.py build
35
36
37%install
38rm -rf $RPM_BUILD_ROOT
39%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
40
41 
42%clean
43rm -rf $RPM_BUILD_ROOT
44
45
46%files
47%defattr(-,root,root,-)
48%doc CHANGES LICENSE README.rst doc/ examples/
49%{_bindir}/mako-render
50%{python_sitelib}/*
51
52
53%changelog
54* Sat May 09 2015 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.0.1-1
55- new upstream release
56
57* Sat Dec 14 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.9.0-1
58- new upstream release
59
60* Sun Apr 28 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.8.0-1
61- new upstream release
62
63* Fri Nov 23 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.7.3-1
64- new upstream release
65
66* Fri Aug 10 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.7.2-1
67- new upstream release
68
69* Thu Jul 12 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.7.1-1
70- new upstream release
71
72* Thu May 10 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.7.0-1
73- new upstream release
74
75* Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.6.2-2
76- rebuild with python-2.7.2
77
78* Wed Feb 08 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.6.2-1
79- new upstream release
80
81* Sat Nov 12 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5.0-1
82- new upstream release
83
84* Sat Aug 20 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.4.2-1
85- new upstream release
86
87* Sun May 1 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.4.1-1
88- new upstream release
89
90* Sun Feb 27 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.4.0-1
91- new upstream release
92
93* Sun Dec 5 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.3.6-1
94- new upstream release
95
96* Sun Nov 7 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.3.5-1
97- new upstream release
98
99* Sun Oct 3 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.3.4-2
100- rebuilt with rpm-4.8.1 for pkg-config
101
102* Wed Jun 30 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.3.4-1
103- new upstream release
104
105* Sat Jun 5 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.3.3-1
106- new upstream release
107
108* Thu Mar 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.3.2-1
109- initial build for VineSeed
110
111* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.4-3
112- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
113
114* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.4-2
115- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
116
117* Tue Jan 06 2009 Luke Macken <lmacken@redhat.com> - 0.2.4-1
118- Update to 0.2.4
119
120* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.1.10-3
121- Rebuild for Python 2.6
122
123* Sun May 11 2008 Kyle VanderBeek <kylev@kylev.com> - 0.1.10-2
124- Fix rpmlint warnings.
125- Add docs and examples.
126
127* Wed Apr  9 2008 Kyle VanderBeek <kylev@kylev.com> - 0.1.10-1
128- Initial version.
Note: See TracBrowser for help on using the repository browser.