Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/flawfinder/
Date: Fri, 05 Jul 2019 14:30:59
Message-Id: 1562336978.cd97c8df9d9a25f3582da2e80c87a04610710e57.mgorny@gentoo
1 commit: cd97c8df9d9a25f3582da2e80c87a04610710e57
2 Author: Lucas Ramage <ramage.lucas <AT> protonmail <DOT> com>
3 AuthorDate: Wed Jun 12 01:28:42 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 5 14:29:38 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd97c8df
7
8 dev-util/flawfinder: bump to 2.0.10
9
10 Signed-off-by: Lucas Ramage <ramage.lucas <AT> protonmail.com>
11 Package-Manager: Portage-2.3.67, Repoman-2.3.14
12 Closes: https://github.com/gentoo/gentoo/pull/12249
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 dev-util/flawfinder/Manifest | 1 +
16 dev-util/flawfinder/flawfinder-2.0.10.ebuild | 36 ++++++++++++++++++++++++++++
17 2 files changed, 37 insertions(+)
18
19 diff --git a/dev-util/flawfinder/Manifest b/dev-util/flawfinder/Manifest
20 index 9010cedf008..7c1a1cd5e4f 100644
21 --- a/dev-util/flawfinder/Manifest
22 +++ b/dev-util/flawfinder/Manifest
23 @@ -1,3 +1,4 @@
24 DIST flawfinder-1.31.tar.gz 174148 BLAKE2B f545a9d4dc8c0a9d7ae34fb5b26e06eb7c40a916155fdd738e4d56b6fccee4af1941935b6847d5f6c8f968ba45e95a8e9b44e5723b11a9c47fce725d1c27dcf1 SHA512 880919a05dbf0e29055f052b88c8bbfd403105504749bc65fb17675e6ebe0d84f9cd367e7a6efc68dc0d9209e0938185da4718b70f484007c507fe96b83e0355
25 +DIST flawfinder-2.0.10.tar.gz 252772 BLAKE2B 9647bb4258f6a7fcfa84aa119b2b714dbf6239c0869a7a0c3b6cb50264c5872d18bd6d8bd48fef5030cdc72f38b945e71d6bccb2c861e922212566326263a2ee SHA512 4bf24f4b84fc17d1cecda7686259efdd4d36afc267a315be147545518ba965929f3a58d13f534aec4c1816e55cfb854ec647d09e170bb5f5eccfb4dc3469acd0
26 DIST flawfinder-2.0.7.tar.gz 249177 BLAKE2B 35dc5796ca7ecf456bf623247c7fb3944e05864bb714900a386f3e39eed81695409b44b9684365e4b172feb938a7c781c831856a8a94826c48b1027698b0967a SHA512 ecfe98c58e253b1d90b833747d69c41597ab7b4c82286e5f45dff45de90056216c25d2c9626540aebfc1e475882a04c3cfa3c0cb3ee242f498f5cdfe188d761f
27 DIST flawfinder-2.0.8.tar.gz 251546 BLAKE2B 4817d3f529c27f0e969754fab08d1323b5fd778e4914882bdd4a61a96301ded287e2899016e609f658d9fee5dc76c1013e535a32120831cd166bb3f24c443e8f SHA512 9346c60808087ddf28f433067691c662beb0c36375903fdd0b4dbe3e53fe92b3893e38b13ecb0fe134586cf680fc554d33c92ff910dbd1cd4c3cbeab946038f4
28
29 diff --git a/dev-util/flawfinder/flawfinder-2.0.10.ebuild b/dev-util/flawfinder/flawfinder-2.0.10.ebuild
30 new file mode 100644
31 index 00000000000..cf9cdb27f94
32 --- /dev/null
33 +++ b/dev-util/flawfinder/flawfinder-2.0.10.ebuild
34 @@ -0,0 +1,36 @@
35 +# Copyright 1999-2019 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +
40 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
41 +
42 +inherit distutils-r1
43 +
44 +DESCRIPTION="Examines C/C++ source code for security flaws"
45 +HOMEPAGE="https://www.dwheeler.com/flawfinder/"
46 +SRC_URI="https://www.dwheeler.com/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="GPL-2+"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
51 +IUSE=""
52 +
53 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
54 +
55 +DEPEND="${PYTHON_DEPS}"
56 +RDEPEND="${DEPEND}"
57 +
58 +src_prepare() {
59 + sed -i "s/${PN}.1.gz/${PN}.1/g" setup.py || die 'sed failed.'
60 + default
61 +}
62 +
63 +python_test() {
64 + emake test
65 +}
66 +
67 +python_install_all() {
68 + local DOCS=( announcement ChangeLog README.md ${PN}.pdf )
69 + distutils-r1_python_install_all
70 +}