Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/DBD-SQLite: ChangeLog DBD-SQLite-1.330.0.ebuild
Date: Mon, 30 May 2011 11:03:27
Message-Id: 20110530110242.C86AC20054@flycatcher.gentoo.org
1 tove 11/05/30 11:02:42
2
3 Modified: ChangeLog
4 Added: DBD-SQLite-1.330.0.ebuild
5 Log:
6 [bump] dev-perl/DBD-SQLite-1.330.0
7
8 (Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.93 dev-perl/DBD-SQLite/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog?rev=1.93&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog?rev=1.93&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog?r1=1.92&r2=1.93
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog,v
20 retrieving revision 1.92
21 retrieving revision 1.93
22 diff -u -r1.92 -r1.93
23 --- ChangeLog 14 Jan 2011 18:27:01 -0000 1.92
24 +++ ChangeLog 30 May 2011 11:02:42 -0000 1.93
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-perl/DBD-SQLite
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog,v 1.92 2011/01/14 18:27:01 tove Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog,v 1.93 2011/05/30 11:02:42 tove Exp $
30 +
31 +*DBD-SQLite-1.330.0 (30 May 2011)
32 +
33 + 30 May 2011; Torsten Veller <tove@g.o> +DBD-SQLite-1.330.0.ebuild:
34 + Version bump
35
36 14 Jan 2011; Torsten Veller <tove@g.o> -DBD-SQLite-1.14.ebuild,
37 -DBD-SQLite-1.27-r1.ebuild, -DBD-SQLite-1.29.ebuild,
38
39
40
41 1.1 dev-perl/DBD-SQLite/DBD-SQLite-1.330.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.330.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.330.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: DBD-SQLite-1.330.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.330.0.ebuild,v 1.1 2011/05/30 11:02:42 tove Exp $
51
52 EAPI=4
53
54 MODULE_AUTHOR=ADAMK
55 MODULE_VERSION=1.33
56 inherit perl-module
57
58 DESCRIPTION="Self Contained RDBMS in a DBI Driver"
59
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
62 IUSE="test"
63
64 RDEPEND=">=dev-perl/DBI-1.57
65 >=dev-db/sqlite-3.6.22[extensions]
66 !<dev-perl/DBD-SQLite-1"
67 DEPEND="${RDEPEND}
68 test? ( >=virtual/perl-Test-Simple-0.86 )"
69
70 SRC_TEST="do"
71
72 src_prepare() {
73 perl-module_src_prepare
74 sed -i 's/^if ( 0 )/if ( 1 )/' "${S}"/Makefile.PL || die
75 # remove bundled sqlite (rt.cpan#61361)
76 for i in sqlite3{.c,.h,ext.h} ; do
77 rm ${i} || die
78 sed -i -e "/^${i}\$/d" MANIFEST || die
79 done
80
81 myconf="SQLITE_LOCATION=${EPREFIX}/usr"
82 }