source: projects/specs/branches/6/p/perl-DBD-SQLite/perl-DBD-SQLite-vl.spec @ 3241

Revision 3241, 3.7 KB checked in by iwaim, 13 years ago (diff)

perl-DBD-SQLite-1.31-1

Line 
1%define module  DBD-SQLite
2%define name    perl-%{module}
3%define version 1.31
4%define release 1%{_dist_release}
5
6Name:           %{name}
7Version:        %{version}
8Release:        %{release}
9Summary:        Self Contained RDBMS in a DBI Driver
10License:        GPL
11URL:            http://search.cpan.org/dist/%{module}/
12Source:         ftp://ftp.perl.org/pub/CPAN/modules/by-module/DBD/%{module}-%{version}.tar.gz
13Group:          Development/Languages
14Requires:       perl(DBI) >= 1.57
15
16BuildRequires:  perl(DBI) >= 1.57
17BuildRequires:  sqlite3-devel   
18Buildroot:      %{_tmppath}/%{name}-%{version}
19
20Vendor:         Project Vine
21Distribution:   Vine Linux
22
23%description
24SQLite is a small fast embedded SQL database engine.
25
26DBD::SQLite embeds that database engine into a DBD driver, so
27if you want a relational database for your project, but don't
28want to install a large RDBMS system like MySQL or PostgreSQL,
29then DBD::SQLite may be just what you need.
30
31It supports quite a lot of features, such as transactions (atomic
32commit and rollback), indexes, DBA-free operation, a large subset
33of SQL92 supported, and more.
34
35#'
36%prep
37%setup -q -n %{module}-%{version}
38
39%build
40CFLAGS="%{optflags}" %{__perl} Makefile.PL INSTALLDIRS="vendor" PREFIX="%{buildroot}%{_prefix}"
41%{__make}
42
43# %check
44# %{__make} test
45
46%install
47rm -rf %{buildroot}
48%makeinstall
49rm -f %{buildroot}%{perl_vendorarch}/auto/*/*/.packlist
50
51%clean
52rm -rf %{buildroot}
53
54%files
55%defattr(-,root,root)
56%doc README* Changes
57%{perl_vendorarch}/DBD
58%{perl_vendorarch}/auto/DBD
59%{_mandir}/*/*
60
61%changelog
62* Thu Mar 31 2011 IWAI, Masaharu <iwai@alib.jp> 1.31-1
63- new upstream release
64- update {Build,}Requires: perl-DBI version: sync upstream
65
66* Fri May 02 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.14-1vl5
67- rebuild with perl 5.10
68- new versioning policy
69
70* Mon Mar 10 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.14-0vl1
71- rebuild for VineSeed
72- disable test
73
74* Sat Mar 08 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.14-0vl0.43
75- add Requires: perl(DBI) >= 1.03
76
77* Sun Mar 02 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.14-0vl0.42
78- new upstream release
79- built for Vine 4.2 testing
80
81* Sun Dec 17 2006 Guillaume Rousse <guillomovitch@mandriva.org> 1.13-2mdv2007.0
82+ Revision: 98263
83- fix build dependencies
84
85* Sat Dec 16 2006 Guillaume Rousse <guillomovitch@mandriva.org> 1.13-1mdv2007.1
86+ Revision: 98198
87- new version
88
89* Mon Aug 07 2006 Olivier Thauvin <nanardon@mandriva.org> 1.12-2mdv2007.0
90+ Revision: 53730
91- rebuild
92- Import perl-DBD-SQLite
93
94
95* Thu Apr 13 2006 Guillaume Rousse <guillomovitch@mandriva.org> 1.12-1mdk
96- New release 1.12
97- better source URL
98- better buildrequires syntax
99
100* Tue Dec 20 2005 Guillaume Rousse <guillomovitch@mandriva.org> 1.11-1mdk
101- new version
102- fix directory ownership
103
104* Mon Sep 26 2005 Guillaume Rousse <guillomovitch@mandriva.org> 1.09-2mdk
105- rebuild to link against external library
106- spec cleanup
107- %%mkrel
108
109* Tue Jun 21 2005 Rafael Garcia-Suarez <rgarciasuarez@mandriva.com> 1.09-1mdk
110- 1.09
111- spec cleanups
112
113* Mon Mar 14 2005 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com> 1.08-1mdk
114- new veresion 1.08
115
116* Mon Nov 15 2004 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com> 1.07-2mdk
117- rebuild for new perl
118- remove README.urpmi
119
120* Thu Oct 14 2004 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com> 1.07-1mdk
121- 1.07.
122
123* Tue Aug 10 2004 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com> 1.03-1mdk
124- 1.03.
125- Remove patch 1.
126
127* Wed Jul 28 2004 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com> 1.00-1mdk
128- 1.00, incompatible format with previous versions.
129- Remove MANIFEST, add README.update.urpmi.
130- Patch to prevent interactivity in Makefile.PL
131
132* Mon May 17 2004 Olivier Thauvin <thauvin@aerov.jussieu.fr> 0.31-2mdk
133- Fix compile FLAGS
134
135* Fri Nov 01 2002 Olivier Thauvin <thauvin@aerov.jussieu.fr> 0.31-1mdk
136- first version of rpm.
Note: See TracBrowser for help on using the repository browser.