source: projects/specs/trunk/p/python-cdb/python-cdb-vl.spec @ 8154

Revision 8154, 2.1 KB checked in by Takemikaduchi, 10 years ago (diff)

new upstream release or rebuild

Line 
1Summary:        A python interface to constant database files (cdb)
2Name:           python-cdb
3Version:        0.32
4Release:        3%{?_dist_release}
5Source0:        http://pilcrow.madison.wi.us/python-cdb/%{name}-%{version}.tar.gz
6License:        GPL
7Group:          Development/Languages
8URL:            http://pilcrow.madison.wi.us/
9BuildRequires:  python-devel >= 2.0
10Requires:       python >= 2.0
11Vendor: Project Vine
12Distribution: Vine Linux
13Packager: Susumu Tanimura <stanimura-ngs@umin.ac.jp>
14BuildRoot: %{_tmppath}/%{name}-%{version}-root
15
16%description
17The python-cdb extension module is an adaptation of D. J.
18Bernstein's constant database package (see
19http://cr.yp.to/cdb.html).
20
21cdb files are mappings of keys to values, designed for wickedly
22fast lookups and atomic updates.  This module mimics the normal
23cdb utilities, cdb(get|dump|make), via convenient, high-level
24Python objects.
25
26%prep
27
28%setup -q
29
30%build
31
32CFLAGS="%{optflags}" python setup.py build
33
34%install
35[ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf %{buildroot}
36
37python setup.py install \
38    --root="%{buildroot}" \
39    --record="INSTALLED_FILES"
40
41%clean
42[ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf %{buildroot}
43
44%files -f INSTALLED_FILES
45%defattr(-,root,root)
46%doc ChangeLog README COPYING Example
47
48%changelog
49* Sun Jan 12 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.32-3
50- rebuild with VineSeed environment
51
52* Mon Apr 19 2010 Shu KONNO <owa@bg.wakwak.com> 0.32-2
53- rebuilt with python-2.6
54
55* Sun Jul 20 2008 Shu KONNO <owa@bg.wakwak.com> 0.32-1vl5
56- rebuilt with python-2.5.2
57- applied new versioning policy and spec in utf-8
58
59* Tue Aug 15 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.32-0vl2
60- Rebuilt for Vine Seed (4.0)
61- Changed Group to Development/Languages
62
63* Wed Sep 29 2004  <stanimura-ngs@umin.ac.jp>
64- Initial package for VineLinux3.0
65
66* Tue Aug 12 2003 Per リyvind Karlsen <peroyvind@linux-mandrake.com> 0.32-4mdk
67- really rebuild against new python
68
69* Thu Aug 07 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 0.32-3mdk
70- rebuilt against new python
71
72* Sun Jul 27 2003 Michael Scherer <scherer.michael@free.fr> 0.32-2mdk
73- BuildRequires
74
75* Wed Jul 16 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 0.32-1mdk
76- initial cooker contrib
Note: See TracBrowser for help on using the repository browser.