Gentoo Archives: gentoo-commits

From: "Johannes Huber (johu)" <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/phonon: phonon-9999.ebuild phonon-4.8.3.ebuild ChangeLog phonon-4.8.2.ebuild
Date: Fri, 30 Jan 2015 22:13:46
Message-Id: 20150130221341.4DBA510B6A@oystercatcher.gentoo.org
1 johu 15/01/30 22:13:41
2
3 Modified: phonon-9999.ebuild phonon-4.8.3.ebuild ChangeLog
4 Removed: phonon-4.8.2.ebuild
5 Log:
6 Shorten pkg setup. Sort functions. Remove old.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
9
10 Revision Changes Path
11 1.26 media-libs/phonon/phonon-9999.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-9999.ebuild?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-9999.ebuild?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-9999.ebuild?r1=1.25&r2=1.26
16
17 Index: phonon-9999.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-9999.ebuild,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- phonon-9999.ebuild 9 Sep 2014 17:17:26 -0000 1.25
24 +++ phonon-9999.ebuild 30 Jan 2015 22:13:41 -0000 1.26
25 @@ -1,6 +1,6 @@
26 -# Copyright 1999-2014 Gentoo Foundation
27 +# Copyright 1999-2015 Gentoo Foundation
28 # Distributed under the terms of the GNU General Public License v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-9999.ebuild,v 1.25 2014/09/09 17:17:26 kensington Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-9999.ebuild,v 1.26 2015/01/30 22:13:41 johu Exp $
31
32 EAPI=5
33
34 @@ -62,13 +62,7 @@
35 PATCHES=( "${FILESDIR}/${PN}-4.7.0-plugin-install.patch" )
36
37 pkg_setup() {
38 - MULTIBUILD_VARIANTS=()
39 - if use qt4; then
40 - MULTIBUILD_VARIANTS+=(qt4)
41 - fi
42 - if use qt5; then
43 - MULTIBUILD_VARIANTS+=(qt5)
44 - fi
45 + MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
46 }
47
48 src_configure() {
49 @@ -96,10 +90,10 @@
50 multibuild_foreach_variant cmake-utils_src_compile
51 }
52
53 -src_install() {
54 - multibuild_foreach_variant cmake-utils_src_install
55 -}
56 -
57 src_test() {
58 multibuild_foreach_variant cmake-utils_src_test
59 }
60 +
61 +src_install() {
62 + multibuild_foreach_variant cmake-utils_src_install
63 +}
64
65
66
67 1.2 media-libs/phonon/phonon-4.8.3.ebuild
68
69 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-4.8.3.ebuild?rev=1.2&view=markup
70 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-4.8.3.ebuild?rev=1.2&content-type=text/plain
71 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/phonon-4.8.3.ebuild?r1=1.1&r2=1.2
72
73 Index: phonon-4.8.3.ebuild
74 ===================================================================
75 RCS file: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-4.8.3.ebuild,v
76 retrieving revision 1.1
77 retrieving revision 1.2
78 diff -u -r1.1 -r1.2
79 --- phonon-4.8.3.ebuild 11 Dec 2014 12:11:48 -0000 1.1
80 +++ phonon-4.8.3.ebuild 30 Jan 2015 22:13:41 -0000 1.2
81 @@ -1,6 +1,6 @@
82 -# Copyright 1999-2014 Gentoo Foundation
83 +# Copyright 1999-2015 Gentoo Foundation
84 # Distributed under the terms of the GNU General Public License v2
85 -# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-4.8.3.ebuild,v 1.1 2014/12/11 12:11:48 mrueg Exp $
86 +# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/phonon-4.8.3.ebuild,v 1.2 2015/01/30 22:13:41 johu Exp $
87
88 EAPI=5
89
90 @@ -62,13 +62,7 @@
91 PATCHES=( "${FILESDIR}/${PN}-4.7.0-plugin-install.patch" )
92
93 pkg_setup() {
94 - MULTIBUILD_VARIANTS=()
95 - if use qt4; then
96 - MULTIBUILD_VARIANTS+=(qt4)
97 - fi
98 - if use qt5; then
99 - MULTIBUILD_VARIANTS+=(qt5)
100 - fi
101 + MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
102 }
103
104 src_configure() {
105 @@ -96,10 +90,10 @@
106 multibuild_foreach_variant cmake-utils_src_compile
107 }
108
109 -src_install() {
110 - multibuild_foreach_variant cmake-utils_src_install
111 -}
112 -
113 src_test() {
114 multibuild_foreach_variant cmake-utils_src_test
115 }
116 +
117 +src_install() {
118 + multibuild_foreach_variant cmake-utils_src_install
119 +}
120
121
122
123 1.73 media-libs/phonon/ChangeLog
124
125 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/ChangeLog?rev=1.73&view=markup
126 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/ChangeLog?rev=1.73&content-type=text/plain
127 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon/ChangeLog?r1=1.72&r2=1.73
128
129 Index: ChangeLog
130 ===================================================================
131 RCS file: /var/cvsroot/gentoo-x86/media-libs/phonon/ChangeLog,v
132 retrieving revision 1.72
133 retrieving revision 1.73
134 diff -u -r1.72 -r1.73
135 --- ChangeLog 11 Dec 2014 12:11:48 -0000 1.72
136 +++ ChangeLog 30 Jan 2015 22:13:41 -0000 1.73
137 @@ -1,6 +1,10 @@
138 # ChangeLog for media-libs/phonon
139 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
140 -# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/ChangeLog,v 1.72 2014/12/11 12:11:48 mrueg Exp $
141 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
142 +# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon/ChangeLog,v 1.73 2015/01/30 22:13:41 johu Exp $
143 +
144 + 30 Jan 2015; Johannes Huber <johu@g.o> -phonon-4.8.2.ebuild,
145 + phonon-4.8.3.ebuild, phonon-9999.ebuild:
146 + Shorten pkg setup. Sort functions. Remove old.
147
148 *phonon-4.8.3 (11 Dec 2014)