Gentoo Archives: gentoo-commits

From: "Markus Duft (mduft)" <mduft@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/DBD-SQLite: ChangeLog DBD-SQLite-1.29-r2.ebuild DBD-SQLite-1.29-r1.ebuild
Date: Tue, 02 Feb 2010 12:19:37
Message-Id: E1NcHjB-0005aR-NV@stork.gentoo.org
1 mduft 10/02/02 12:19:33
2
3 Modified: ChangeLog
4 Added: DBD-SQLite-1.29-r2.ebuild
5 Removed: DBD-SQLite-1.29-r1.ebuild
6 Log:
7 bumped and fixed to use system sqlite on prefix.
8 (Portage version: 2.1.7.16/cvs/Linux i686)
9
10 Revision Changes Path
11 1.77 dev-perl/DBD-SQLite/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog?rev=1.77&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog?rev=1.77&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog?r1=1.76&r2=1.77
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog,v
20 retrieving revision 1.76
21 retrieving revision 1.77
22 diff -u -r1.76 -r1.77
23 --- ChangeLog 12 Jan 2010 11:51:08 -0000 1.76
24 +++ ChangeLog 2 Feb 2010 12:19:33 -0000 1.77
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-perl/DBD-SQLite
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog,v 1.76 2010/01/12 11:51:08 tove Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/ChangeLog,v 1.77 2010/02/02 12:19:33 mduft Exp $
30 +
31 +*DBD-SQLite-1.29-r2 (02 Feb 2010)
32 +
33 + 02 Feb 2010; Markus Duft <mduft@g.o> -DBD-SQLite-1.29-r1.ebuild,
34 + +DBD-SQLite-1.29-r2.ebuild:
35 + added SQLITE_LOCATION setting, to avoid usage of local sqlite (#303101)
36
37 *DBD-SQLite-1.29-r1 (12 Jan 2010)
38
39
40
41
42 1.1 dev-perl/DBD-SQLite/DBD-SQLite-1.29-r2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.29-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.29-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: DBD-SQLite-1.29-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-perl/DBD-SQLite/DBD-SQLite-1.29-r2.ebuild,v 1.1 2010/02/02 12:19:33 mduft Exp $
52
53 EAPI=2
54
55 MODULE_AUTHOR=ADAMK
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-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
62 IUSE=""
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
69 SRC_TEST="do"
70
71 src_prepare() {
72 perl-module_src_prepare
73 sed -i 's/^if ( 0 )/if ( 1 )/' "${S}"/Makefile.PL || die
74
75 myconf="SQLITE_LOCATION=${EPREFIX}/usr"
76 }