Gentoo Archives: gentoo-commits

From: "Robert Buchholz (rbu)" <rbu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/flawfinder: ChangeLog flawfinder-1.27-r1.ebuild flawfinder-1.27.ebuild
Date: Tue, 29 Sep 2009 12:12:01
Message-Id: E1MsbYl-0005oI-Si@stork.gentoo.org
1 rbu 09/09/29 12:11:59
2
3 Modified: ChangeLog
4 Added: flawfinder-1.27-r1.ebuild
5 Removed: flawfinder-1.27.ebuild
6 Log:
7 Fix IndexError that occurs when there is whitespace at the end of the file
8 (Portage version: 2.1.6.13/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 dev-util/flawfinder/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/flawfinder/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/flawfinder/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/flawfinder/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/flawfinder/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 25 Jan 2009 23:21:01 -0000 1.12
24 +++ ChangeLog 29 Sep 2009 12:11:59 -0000 1.13
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-util/flawfinder
27 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/flawfinder/ChangeLog,v 1.12 2009/01/25 23:21:01 angelos Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/flawfinder/ChangeLog,v 1.13 2009/09/29 12:11:59 rbu Exp $
31 +
32 +*flawfinder-1.27-r1 (29 Sep 2009)
33 +
34 + 29 Sep 2009; Robert Buchholz <rbu@g.o> -flawfinder-1.27.ebuild,
35 + +flawfinder-1.27-r1.ebuild,
36 + +files/flawfinder-1.27-whitespace-traceback.patch:
37 + Fix IndexError that occurs when there is whitespace at the end of the file
38
39 25 Jan 2009; Christoph Mende <angelos@g.o>
40 -files/flawfinder-1.26-linenumbers.patch, -flawfinder-1.23.ebuild,
41
42
43
44 1.1 dev-util/flawfinder/flawfinder-1.27-r1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/flawfinder/flawfinder-1.27-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/flawfinder/flawfinder-1.27-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: flawfinder-1.27-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-util/flawfinder/flawfinder-1.27-r1.ebuild,v 1.1 2009/09/29 12:11:59 rbu Exp $
54
55 EAPI=2
56 inherit eutils
57
58 DESCRIPTION="Examines C/C++ source code for security flaws"
59 HOMEPAGE="http://www.dwheeler.com/flawfinder/"
60 SRC_URI="http://www.dwheeler.com/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86"
65 IUSE=""
66
67 DEPEND=""
68 RDEPEND="dev-lang/python"
69
70 src_prepare() {
71 epatch "${FILESDIR}"/flawfinder-1.27-whitespace-traceback.patch
72 }
73
74 src_install() {
75 dobin ${PN}
76 doman ${PN}.1
77 dodoc ChangeLog INSTALL.txt README announcement
78 dodoc flawfinder.pdf
79 }