Gentoo Archives: gentoo-commits

From: "Akinori Hattori (hattya)" <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/tinycdb: tinycdb-0.77-r2.ebuild ChangeLog
Date: Sun, 28 Sep 2014 09:29:50
Message-Id: 20140928092947.607F16735@oystercatcher.gentoo.org
1 hattya 14/09/28 09:29:47
2
3 Modified: tinycdb-0.77-r2.ebuild ChangeLog
4 Log:
5 update to EAPI 5
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)
8
9 Revision Changes Path
10 1.9 dev-db/tinycdb/tinycdb-0.77-r2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r2.ebuild?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r2.ebuild?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r2.ebuild?r1=1.8&r2=1.9
15
16 Index: tinycdb-0.77-r2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r2.ebuild,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- tinycdb-0.77-r2.ebuild 28 Sep 2014 09:28:17 -0000 1.8
23 +++ tinycdb-0.77-r2.ebuild 28 Sep 2014 09:29:47 -0000 1.9
24 @@ -1,8 +1,8 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r2.ebuild,v 1.8 2014/09/28 09:28:17 hattya Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/tinycdb-0.77-r2.ebuild,v 1.9 2014/09/28 09:29:47 hattya Exp $
29
30 -EAPI="4"
31 +EAPI="5"
32
33 inherit eutils multilib toolchain-funcs
34
35 @@ -28,14 +28,14 @@
36
37 src_compile() {
38 local targets="shared"
39 - use static-libs && targets="${targets} staticlib piclib"
40 + use static-libs && targets+=" staticlib piclib"
41
42 emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${LDFLAGS}" ${targets}
43 }
44
45 src_install() {
46 local targets="install-sharedlib"
47 - use static-libs && targets="${targets} install-piclib"
48 + use static-libs && targets+=" install-piclib"
49
50 emake DESTDIR="${D}" ${targets}
51 dodoc ChangeLog NEWS
52
53
54
55 1.42 dev-db/tinycdb/ChangeLog
56
57 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tinycdb/ChangeLog?rev=1.42&view=markup
58 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tinycdb/ChangeLog?rev=1.42&content-type=text/plain
59 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tinycdb/ChangeLog?r1=1.41&r2=1.42
60
61 Index: ChangeLog
62 ===================================================================
63 RCS file: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v
64 retrieving revision 1.41
65 retrieving revision 1.42
66 diff -u -r1.41 -r1.42
67 --- ChangeLog 28 Sep 2014 09:28:17 -0000 1.41
68 +++ ChangeLog 28 Sep 2014 09:29:47 -0000 1.42
69 @@ -1,6 +1,9 @@
70 # ChangeLog for dev-db/tinycdb
71 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
72 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v 1.41 2014/09/28 09:28:17 hattya Exp $
73 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tinycdb/ChangeLog,v 1.42 2014/09/28 09:29:47 hattya Exp $
74 +
75 + 28 Sep 2014; Akinori Hattori <hattya@g.o> tinycdb-0.77-r2.ebuild:
76 + update to EAPI 5
77
78 28 Sep 2014; Akinori Hattori <hattya@g.o> tinycdb-0.77-r2.ebuild:
79 einstall -> emake wrt bug #521540