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

Revision 6867, 3.6 KB checked in by kudoh, 12 years ago (diff)
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.6.0
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 Changelog.rst README.rst
44%{python_sitelib}/*
45
46%changelog
47* Sat Sep 29 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.6.0-1
48- new upstream release
49- fixed %%files
50
51* Sun Jul 09 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.5.2-1
52- new upstream release
53
54* Sat Jun 16 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.5.1-1
55- new upstream release
56
57* Sat Jun 09 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.4.1-1
58- new upstream release
59
60* Fri May 11 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.3.0-1
61- new upstream release
62
63* Sat Mar 10 2012 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.2.2-1
64- new upstream release
65- changed URL and Source
66
67* Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.1.1-2
68- rebuild with python-2.7.2
69
70* Mon Nov 07 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.1.1-1
71- new upstream release
72
73* Sun May 22 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0b4-1
74- new upstream release
75
76* Mon Oct 18 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0b3-1
77- new upstream release
78
79* Wed Sep 29 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0b2-2
80- rebuilt with rpm-4.8.1 for pkg-config
81
82* Sat Aug 21 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0b2-1
83- new upstream release
84- fixed Release macro
85
86* Sat May 22 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.9b-1
87- initial build for VineSeed
88
89* Fri Jul 24 2009 Robert Scheck <robert@fedoraproject.org> 1.8d-1
90- Upgrade to 1.8d (#513560)
91
92* Wed Jun 03 2009 Luke Macken <lmacken@redhat.com> 1.7a-2
93- Add python-setuptools-devel to our build requirements, for egg-info
94
95* Thu Apr 16 2009 Robert Scheck <robert@fedoraproject.org> 1.7a-1
96- Upgrade to 1.7a
97
98* Mon Feb 23 2009 Robert Scheck <robert@fedoraproject.org> 1.5c-2
99- Rebuild against rpm 4.6
100
101* Sun Dec 07 2008 Robert Scheck <robert@fedoraproject.org> 1.5c-1
102- Upgrade to 1.5c
103
104* Fri Dec 05 2008 Jeremy Katz <katzj@redhat.com> 1.2a-2
105- Rebuild for python 2.6
106
107* Wed May 07 2008 Robert Scheck <robert@fedoraproject.org> 1.2a-1
108- Upgrade to 1.2a
109
110* Sat Feb 09 2008 Robert Scheck <robert@fedoraproject.org> 1.0a-1
111- Upgrade to 1.0a
112
113* Sat Dec 08 2007 Robert Scheck <robert@fedoraproject.org> 0.9d-1
114- Upgrade to 0.9d
115
116* Thu Aug 30 2007 Robert Scheck <robert@fedoraproject.org> 0.9b-1
117- Upgrade to 0.9b
118- Initial spec file for Fedora and Red Hat Enterprise Linux
Note: See TracBrowser for help on using the repository browser.