Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/cppcheck: cppcheck-1.61.ebuild cppcheck-1.62.ebuild ChangeLog
Date: Tue, 03 Dec 2013 08:54:02
Message-Id: 20131203085350.912A22004B@flycatcher.gentoo.org
1 xmw 13/12/03 08:53:50
2
3 Modified: ChangeLog
4 Added: cppcheck-1.61.ebuild cppcheck-1.62.ebuild
5 Log:
6 Version bump as reported by Christian Strahl on bug 480384.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
9
10 Revision Changes Path
11 1.43 dev-util/cppcheck/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cppcheck/ChangeLog?rev=1.43&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cppcheck/ChangeLog?rev=1.43&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cppcheck/ChangeLog?r1=1.42&r2=1.43
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/cppcheck/ChangeLog,v
20 retrieving revision 1.42
21 retrieving revision 1.43
22 diff -u -r1.42 -r1.43
23 --- ChangeLog 5 Sep 2013 18:40:37 -0000 1.42
24 +++ ChangeLog 3 Dec 2013 08:53:50 -0000 1.43
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-util/cppcheck
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/ChangeLog,v 1.42 2013/09/05 18:40:37 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/ChangeLog,v 1.43 2013/12/03 08:53:50 xmw Exp $
30 +
31 +*cppcheck-1.62 (03 Dec 2013)
32 +*cppcheck-1.61 (03 Dec 2013)
33 +
34 + 03 Dec 2013; Michael Weber <xmw@g.o> +cppcheck-1.61.ebuild,
35 + +cppcheck-1.62.ebuild:
36 + Version bump as reported by Christian Strahl on bug 480384.
37
38 05 Sep 2013; Michał Górny <mgorny@g.o> cppcheck-1.59-r1.ebuild,
39 cppcheck-1.60.1.ebuild:
40
41
42
43 1.1 dev-util/cppcheck/cppcheck-1.61.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cppcheck/cppcheck-1.61.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cppcheck/cppcheck-1.61.ebuild?rev=1.1&content-type=text/plain
47
48 Index: cppcheck-1.61.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.61.ebuild,v 1.1 2013/12/03 08:53:50 xmw Exp $
53
54 EAPI=5
55
56 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
57
58 inherit distutils-r1 eutils qt4-r2 toolchain-funcs
59
60 DESCRIPTION="static analyzer of C/C++ code"
61 HOMEPAGE="http://apps.sourceforge.net/trac/cppcheck/"
62 SRC_URI="mirror://sourceforge/cppcheck/${P}.tar.bz2"
63
64 LICENSE="GPL-3"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="htmlreport qt4"
68
69 DEPEND="htmlreport? ( ${PYTHON_DEPS} )
70 qt4? ( dev-qt/qtgui:4 )"
71 RDEPEND="${DEPEND}"
72
73 src_configure() {
74 tc-export CXX
75 if use qt4 ; then
76 pushd gui
77 qt4-r2_src_configure
78 popd
79 fi
80 }
81
82 src_compile() {
83 emake
84 if use qt4 ; then
85 pushd gui
86 qt4-r2_src_compile
87 popd
88 fi
89 if use htmlreport ; then
90 pushd htmlreport
91 distutils-r1_src_compile
92 popd
93 fi
94 }
95
96 src_install() {
97 emake install DESTDIR="${D}"
98 dodoc readme.txt
99 if use qt4 ; then
100 dobin gui/${PN}-gui
101 dodoc readme_gui.txt gui/{projectfile.txt,gui.cppcheck}
102 fi
103 if use htmlreport ; then
104 pushd htmlreport
105 distutils-r1_src_install
106 popd
107 find "${D}" -name "*.egg-info" -delete
108 fi
109 }
110
111
112
113 1.1 dev-util/cppcheck/cppcheck-1.62.ebuild
114
115 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cppcheck/cppcheck-1.62.ebuild?rev=1.1&view=markup
116 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cppcheck/cppcheck-1.62.ebuild?rev=1.1&content-type=text/plain
117
118 Index: cppcheck-1.62.ebuild
119 ===================================================================
120 # Copyright 1999-2013 Gentoo Foundation
121 # Distributed under the terms of the GNU General Public License v2
122 # $Header: /var/cvsroot/gentoo-x86/dev-util/cppcheck/cppcheck-1.62.ebuild,v 1.1 2013/12/03 08:53:50 xmw Exp $
123
124 EAPI=5
125
126 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
127
128 inherit distutils-r1 eutils qt4-r2 toolchain-funcs
129
130 DESCRIPTION="static analyzer of C/C++ code"
131 HOMEPAGE="http://apps.sourceforge.net/trac/cppcheck/"
132 SRC_URI="mirror://sourceforge/cppcheck/${P}.tar.bz2"
133
134 LICENSE="GPL-3"
135 SLOT="0"
136 KEYWORDS="~amd64 ~x86"
137 IUSE="htmlreport qt4"
138
139 DEPEND="htmlreport? ( ${PYTHON_DEPS} )
140 qt4? ( dev-qt/qtgui:4 )"
141 RDEPEND="${DEPEND}"
142
143 src_configure() {
144 tc-export CXX
145 if use qt4 ; then
146 pushd gui
147 qt4-r2_src_configure
148 popd
149 fi
150 }
151
152 src_compile() {
153 emake
154 if use qt4 ; then
155 pushd gui
156 qt4-r2_src_compile
157 popd
158 fi
159 if use htmlreport ; then
160 pushd htmlreport
161 distutils-r1_src_compile
162 popd
163 fi
164 }
165
166 src_install() {
167 emake install DESTDIR="${D}"
168 dodoc readme.txt
169 if use qt4 ; then
170 dobin gui/${PN}-gui
171 dodoc readme_gui.txt gui/{projectfile.txt,gui.cppcheck}
172 fi
173 if use htmlreport ; then
174 pushd htmlreport
175 distutils-r1_src_install
176 popd
177 find "${D}" -name "*.egg-info" -delete
178 fi
179 }