Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-cluster/charm: charm-6.6.0.ebuild ChangeLog
Date: Fri, 26 Sep 2014 20:43:37
Message-Id: 20140926204333.08223659E@oystercatcher.gentoo.org
1 ottxor 14/09/26 20:43:33
2
3 Modified: charm-6.6.0.ebuild ChangeLog
4 Log:
5 clean up install
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key C2000586)
8
9 Revision Changes Path
10 1.2 sys-cluster/charm/charm-6.6.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/charm/charm-6.6.0.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/charm/charm-6.6.0.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/charm/charm-6.6.0.ebuild?r1=1.1&r2=1.2
15
16 Index: charm-6.6.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-cluster/charm/charm-6.6.0.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- charm-6.6.0.ebuild 26 Sep 2014 19:04:03 -0000 1.1
23 +++ charm-6.6.0.ebuild 26 Sep 2014 20:43:32 -0000 1.2
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/sys-cluster/charm/charm-6.6.0.ebuild,v 1.1 2014/09/26 19:04:03 ottxor Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/charm/charm-6.6.0.ebuild,v 1.2 2014/09/26 20:43:32 ottxor Exp $
29
30 EAPI=5
31
32 @@ -166,23 +166,13 @@
33 doins "${i}"
34 done
35
36 - # Install static libs. Charm has a lot of .o "libs" that it requires at
37 - # runtime.
38 - if use static-libs; then
39 - for i in lib/*.{a,o}; do
40 - if [[ -L ${i} ]]; then
41 - i=$(readlink -e "${i}") || die
42 - fi
43 - dolib "${i}"
44 - done
45 - fi
46 -
47 - # Install shared libs.
48 - for i in lib_so/*; do
49 + # Install libs incl. charm objects
50 + for i in lib*/*.{so,o,a}; do
51 + [[ ${i} = *.a ]] && use !static-libs && continue
52 if [[ -L ${i} ]]; then
53 i=$(readlink -e "${i}") || die
54 fi
55 - dolib.so "${i}"
56 + [[ ${i} = *.so ]] && dolib.so "${i}" || dolib "${i}"
57 done
58
59 # Basic docs.
60
61
62
63 1.42 sys-cluster/charm/ChangeLog
64
65 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/charm/ChangeLog?rev=1.42&view=markup
66 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/charm/ChangeLog?rev=1.42&content-type=text/plain
67 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/charm/ChangeLog?r1=1.41&r2=1.42
68
69 Index: ChangeLog
70 ===================================================================
71 RCS file: /var/cvsroot/gentoo-x86/sys-cluster/charm/ChangeLog,v
72 retrieving revision 1.41
73 retrieving revision 1.42
74 diff -u -r1.41 -r1.42
75 --- ChangeLog 26 Sep 2014 19:04:03 -0000 1.41
76 +++ ChangeLog 26 Sep 2014 20:43:32 -0000 1.42
77 @@ -1,6 +1,9 @@
78 # ChangeLog for sys-cluster/charm
79 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
80 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/charm/ChangeLog,v 1.41 2014/09/26 19:04:03 ottxor Exp $
81 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/charm/ChangeLog,v 1.42 2014/09/26 20:43:32 ottxor Exp $
82 +
83 + 26 Sep 2014; Christoph Junghans <ottxor@g.o> charm-6.6.0.ebuild:
84 + clean up install
85
86 *charm-6.6.0 (26 Sep 2014)