Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/apr-util: apr-util-1.5.3.ebuild ChangeLog
Date: Fri, 31 Jan 2014 08:05:06
Message-Id: 20140131080502.68EB32004C@flycatcher.gentoo.org
1 vapier 14/01/31 08:05:02
2
3 Modified: apr-util-1.5.3.ebuild ChangeLog
4 Log:
5 Convert myconf to an array to make it easier to maintain.
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
8
9 Revision Changes Path
10 1.5 dev-libs/apr-util/apr-util-1.5.3.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.5.3.ebuild?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.5.3.ebuild?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.5.3.ebuild?r1=1.4&r2=1.5
15
16 Index: apr-util-1.5.3.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.5.3.ebuild,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- apr-util-1.5.3.ebuild 30 Jan 2014 01:03:49 -0000 1.4
23 +++ apr-util-1.5.3.ebuild 31 Jan 2014 08:05:02 -0000 1.5
24 @@ -1,6 +1,6 @@
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-libs/apr-util/apr-util-1.5.3.ebuild,v 1.4 2014/01/30 01:03:49 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.5.3.ebuild,v 1.5 2014/01/31 08:05:02 vapier Exp $
29
30 EAPI="4"
31
32 @@ -45,18 +45,21 @@
33 }
34
35 src_configure() {
36 - local myconf
37 + local myconf=()
38
39 - tc-is-static-only && myconf+=" --disable-util-dso"
40 + tc-is-static-only && myconf+=( --disable-util-dso )
41
42 if use berkdb; then
43 local db_version
44 db_version="$(db_findver sys-libs/db)" || die "Unable to find Berkeley DB version"
45 db_version="$(db_ver_to_slot "${db_version}")"
46 db_version="${db_version/\./}"
47 - myconf+=" --with-dbm=db${db_version} --with-berkeley-db=$(db_includedir 2> /dev/null):${EPREFIX}/usr/$(get_libdir)"
48 + myconf+=(
49 + --with-dbm=db${db_version}
50 + --with-berkeley-db="$(db_includedir 2> /dev/null):${EPREFIX}/usr/$(get_libdir)"
51 + )
52 else
53 - myconf+=" --without-berkeley-db"
54 + myconf+=( --without-berkeley-db )
55 fi
56
57 econf \
58 @@ -73,7 +76,7 @@
59 $(use_with openssl) \
60 $(use_with postgres pgsql) \
61 $(use_with sqlite sqlite3) \
62 - ${myconf}
63 + "${myconf[@]}"
64 }
65
66 src_compile() {
67
68
69
70 1.195 dev-libs/apr-util/ChangeLog
71
72 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/ChangeLog?rev=1.195&view=markup
73 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/ChangeLog?rev=1.195&content-type=text/plain
74 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/ChangeLog?r1=1.194&r2=1.195
75
76 Index: ChangeLog
77 ===================================================================
78 RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v
79 retrieving revision 1.194
80 retrieving revision 1.195
81 diff -u -r1.194 -r1.195
82 --- ChangeLog 30 Jan 2014 01:03:49 -0000 1.194
83 +++ ChangeLog 31 Jan 2014 08:05:02 -0000 1.195
84 @@ -1,6 +1,9 @@
85 # ChangeLog for dev-libs/apr-util
86 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
87 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.194 2014/01/30 01:03:49 vapier Exp $
88 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.195 2014/01/31 08:05:02 vapier Exp $
89 +
90 + 31 Jan 2014; Mike Frysinger <vapier@g.o> apr-util-1.5.3.ebuild:
91 + Convert myconf to an array to make it easier to maintain.
92
93 30 Jan 2014; Mike Frysinger <vapier@g.o> apr-util-1.5.2.ebuild,
94 apr-util-1.5.3.ebuild: