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:07:44
Message-Id: 20140131080739.C1A652004C@flycatcher.gentoo.org
1 vapier 14/01/31 08:07:39
2
3 Modified: apr-util-1.5.3.ebuild ChangeLog
4 Log:
5 Simplify src_compile/src_install a bit -- no functional changes.
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.6 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.6&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/apr-util-1.5.3.ebuild?rev=1.6&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.5&r2=1.6
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.5
20 retrieving revision 1.6
21 diff -u -r1.5 -r1.6
22 --- apr-util-1.5.3.ebuild 31 Jan 2014 08:05:02 -0000 1.5
23 +++ apr-util-1.5.3.ebuild 31 Jan 2014 08:07:39 -0000 1.6
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.5 2014/01/31 08:05:02 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/apr-util-1.5.3.ebuild,v 1.6 2014/01/31 08:07:39 vapier Exp $
29
30 EAPI="4"
31
32 @@ -81,25 +81,17 @@
33
34 src_compile() {
35 emake CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
36 -
37 - if use doc; then
38 - emake dox
39 - fi
40 + use doc && emake dox
41 }
42
43 src_install() {
44 default
45
46 - find "${ED}" -name "*.la" -exec rm -f {} +
47 - find "${ED}usr/$(get_libdir)/apr-util-${SLOT}" -name "*.a" -exec rm -f {} +
48 + find "${ED}" -name "*.la" -delete
49 + find "${ED}usr/$(get_libdir)/apr-util-${SLOT}" -name "*.a" -delete
50 + use static-libs || find "${ED}" -name "*.a" -delete
51
52 - if use doc; then
53 - dohtml -r docs/dox/html/*
54 - fi
55 -
56 - if ! use static-libs; then
57 - find "${ED}" -name "*.a" -exec rm -f {} +
58 - fi
59 + use doc && dohtml -r docs/dox/html/*
60
61 # This file is only used on AIX systems, which Gentoo is not,
62 # and causes collisions between the SLOTs, so remove it.
63
64
65
66 1.196 dev-libs/apr-util/ChangeLog
67
68 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/ChangeLog?rev=1.196&view=markup
69 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/ChangeLog?rev=1.196&content-type=text/plain
70 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/apr-util/ChangeLog?r1=1.195&r2=1.196
71
72 Index: ChangeLog
73 ===================================================================
74 RCS file: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v
75 retrieving revision 1.195
76 retrieving revision 1.196
77 diff -u -r1.195 -r1.196
78 --- ChangeLog 31 Jan 2014 08:05:02 -0000 1.195
79 +++ ChangeLog 31 Jan 2014 08:07:39 -0000 1.196
80 @@ -1,6 +1,9 @@
81 # ChangeLog for dev-libs/apr-util
82 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
83 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.195 2014/01/31 08:05:02 vapier Exp $
84 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/apr-util/ChangeLog,v 1.196 2014/01/31 08:07:39 vapier Exp $
85 +
86 + 31 Jan 2014; Mike Frysinger <vapier@g.o> apr-util-1.5.3.ebuild:
87 + Simplify src_compile/src_install a bit -- no functional changes.
88
89 31 Jan 2014; Mike Frysinger <vapier@g.o> apr-util-1.5.3.ebuild:
90 Convert myconf to an array to make it easier to maintain.