Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: intel-sdp.eclass ChangeLog
Date: Sun, 29 Sep 2013 18:01:01
Message-Id: 20130929180030.7B06C2004C@flycatcher.gentoo.org
1 ottxor 13/09/29 18:00:30
2
3 Modified: intel-sdp.eclass ChangeLog
4 Log:
5 EAPI bump, ccache support
6
7 Revision Changes Path
8 1.15 eclass/intel-sdp.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/intel-sdp.eclass?rev=1.15&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/intel-sdp.eclass?rev=1.15&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/intel-sdp.eclass?r1=1.14&r2=1.15
13
14 Index: intel-sdp.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v
17 retrieving revision 1.14
18 retrieving revision 1.15
19 diff -u -r1.14 -r1.15
20 --- intel-sdp.eclass 29 Jul 2013 09:50:09 -0000 1.14
21 +++ intel-sdp.eclass 29 Sep 2013 18:00:30 -0000 1.15
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2013 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v 1.14 2013/07/29 09:50:09 jlec Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/intel-sdp.eclass,v 1.15 2013/09/29 18:00:30 ottxor Exp $
27
28 # @ECLASS: intel-sdp.eclass
29 # @MAINTAINER:
30 @@ -364,10 +364,6 @@
31 INTEL_RPMS_FULL+=( ${p}-${_INTEL_PV4}-${_INTEL_PV1}.${_INTEL_PV2}-${_INTEL_PV3}.noarch.rpm )
32 fi
33 done
34 -
35 - case "${EAPI:-0}" in
36 - 0|1|2|3) intel-sdp_pkg_pretend ;;
37 - esac
38 }
39
40 # @FUNCTION: intel-sdp_src_unpack
41 @@ -472,6 +468,11 @@
42 "<:${r%-${_INTEL_PV4}*}-${_INTEL_PV4}:${r}:${INTEL_SDP_EDIR}:${l}:>"
43 done
44 _isdp_run-test
45 +
46 + if [[ ${PN} = icc ]] && has_version ">=dev-util/ccache-3.1.9-r2" ; then
47 + #add ccache links as icc might get installed after ccache
48 + "${EROOT}"/usr/bin/ccache-config --install-links
49 + fi
50 }
51
52 # @FUNCTION: intel-sdp_pkg_postrm
53 @@ -487,11 +488,16 @@
54 ${INTEL_SDP_DB}
55 done
56 fi
57 +
58 + if [[ ${PN} = icc ]] && has_version ">=dev-util/ccache-3.1.9-r2" && [[ -z ${REPLACED_BY_VERSION} ]]; then
59 + # --remove-links would remove all links, --install-links updates them
60 + "${EROOT}"/usr/bin/ccache-config --install-links
61 + fi
62 }
63
64 -EXPORT_FUNCTIONS pkg_setup src_unpack src_install pkg_postinst pkg_postrm
65 +EXPORT_FUNCTIONS pkg_setup src_unpack src_install pkg_postinst pkg_postrm pkg_pretend
66 case "${EAPI:-0}" in
67 - 0|1|2|3) ;;
68 - 4|5) EXPORT_FUNCTIONS pkg_pretend ;;
69 + 0|1|2|3)die "EAPI=${EAPI} is not supported anymore" ;;
70 + 4|5) ;;
71 *) die "EAPI=${EAPI} is not supported" ;;
72 esac
73
74
75
76 1.1000 eclass/ChangeLog
77
78 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1000&view=markup
79 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1000&content-type=text/plain
80 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.999&r2=1.1000
81
82 Index: ChangeLog
83 ===================================================================
84 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
85 retrieving revision 1.999
86 retrieving revision 1.1000
87 diff -u -r1.999 -r1.1000
88 --- ChangeLog 29 Sep 2013 17:47:13 -0000 1.999
89 +++ ChangeLog 29 Sep 2013 18:00:30 -0000 1.1000
90 @@ -1,6 +1,9 @@
91 # ChangeLog for eclass directory
92 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
93 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.999 2013/09/29 17:47:13 eva Exp $
94 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1000 2013/09/29 18:00:30 ottxor Exp $
95 +
96 + 29 Sep 2013; Christoph Junghans <ottxor@g.o> intel-sdp.eclass:
97 + EAPI bump, ccache support
98
99 29 Sep 2013; Gilles Dartiguelongue <eva@g.o> gst-plugins10.eclass:
100 Add support for gstreamer 1.2 release series.