source: projects/specs/trunk/p/python-boto/python-boto-vl.spec @ 6532

Revision 6532, 3.4 KB checked in by kudoh, 12 years ago (diff)

python-boto-vl.spec

Line 
1%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
2%define pkgname boto
3
4Summary:        A simple lightweight interface to Amazon Web Services
5Summary(ja):    シンプル・軽量な Amazon Web サービスへのインターフェイス
6Name:           python-boto
7Version:        2.5.2
8Release:        1%{?_dist_release}
9License:        MIT
10Group:          Development/Languages
11URL:            https://github.com/boto/%{pkgname}
12#URL:           http://code.google.com/p/boto/
13Source:         https://github.com/downloads/boto/boto/%{pkgname}-%{version}.tar.gz
14BuildRequires:  python-devel, python-setuptools
15BuildArch:      noarch
16BuildRoot:      %{_tmppath}/%{name}-%{version}-root
17
18%description
19Boto is a Python package that provides interfaces to Amazon Web Services.
20It supports S3 (Simple Storage Service), SQS (Simple Queue Service) via
21the REST API's provided by those services and EC2 (Elastic Compute Cloud)
22via the Query API. The goal of boto is to provide a very simple, easy to
23use, lightweight wrapper around the Amazon services.
24
25%prep
26%setup -q -n %{pkgname}-%{version}
27
28%build
29%{__python} setup.py build
30
31%install
32rm -rf $RPM_BUILD_ROOT
33%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
34
35# Remove all test scripts
36rm -rf $RPM_BUILD_ROOT{%{_bindir},%{python_sitelib}/tests}
37
38%clean
39rm -rf $RPM_BUILD_ROOT
40
41%files
42%defattr(-,root,root)
43#%doc README
44%{python_sitelib}/*
45
46%changelog
47* Sun Jul 09 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.5.2-1
48- new upstream release
49
50* Sat Jun 16 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.5.1-1
51- new upstream release
52
53* Sat Jun 09 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.4.1-1
54- new upstream release
55
56* Fri May 11 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.3.0-1
57- new upstream release
58
59* Sat Mar 10 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.2.2-1
60- new upstream release
61- changed URL and Source
62
63* Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.1.1-2
64- rebuild with python-2.7.2
65
66* Mon Nov 07 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.1.1-1
67- new upstream release
68
69* Sun May 22 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0b4-1
70- new upstream release
71
72* Mon Oct 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0b3-1
73- new upstream release
74
75* Wed Sep 29 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0b2-2
76- rebuilt with rpm-4.8.1 for pkg-config
77
78* Sat Aug 21 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0b2-1
79- new upstream release
80- fixed Release macro
81
82* Sat May 22 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.9b-1
83- initial build for VineSeed
84
85* Fri Jul 24 2009 Robert Scheck <robert@fedoraproject.org> 1.8d-1
86- Upgrade to 1.8d (#513560)
87
88* Wed Jun 03 2009 Luke Macken <lmacken@redhat.com> 1.7a-2
89- Add python-setuptools-devel to our build requirements, for egg-info
90
91* Thu Apr 16 2009 Robert Scheck <robert@fedoraproject.org> 1.7a-1
92- Upgrade to 1.7a
93
94* Mon Feb 23 2009 Robert Scheck <robert@fedoraproject.org> 1.5c-2
95- Rebuild against rpm 4.6
96
97* Sun Dec 07 2008 Robert Scheck <robert@fedoraproject.org> 1.5c-1
98- Upgrade to 1.5c
99
100* Fri Dec 05 2008 Jeremy Katz <katzj@redhat.com> 1.2a-2
101- Rebuild for python 2.6
102
103* Wed May 07 2008 Robert Scheck <robert@fedoraproject.org> 1.2a-1
104- Upgrade to 1.2a
105
106* Sat Feb 09 2008 Robert Scheck <robert@fedoraproject.org> 1.0a-1
107- Upgrade to 1.0a
108
109* Sat Dec 08 2007 Robert Scheck <robert@fedoraproject.org> 0.9d-1
110- Upgrade to 0.9d
111
112* Thu Aug 30 2007 Robert Scheck <robert@fedoraproject.org> 0.9b-1
113- Upgrade to 0.9b
114- Initial spec file for Fedora and Red Hat Enterprise Linux
Note: See TracBrowser for help on using the repository browser.