Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-forensics/lynis: lynis-2.1.1.ebuild ChangeLog
Date: Thu, 30 Jul 2015 08:58:06
Message-Id: 20150730085755.3275B110@oystercatcher.gentoo.org
1 patrick 15/07/30 08:57:55
2
3 Modified: ChangeLog
4 Added: lynis-2.1.1.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.60 app-forensics/lynis/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/lynis/ChangeLog?rev=1.60&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/lynis/ChangeLog?rev=1.60&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/lynis/ChangeLog?r1=1.59&r2=1.60
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-forensics/lynis/ChangeLog,v
20 retrieving revision 1.59
21 retrieving revision 1.60
22 diff -u -r1.59 -r1.60
23 --- ChangeLog 29 Jun 2015 19:39:29 -0000 1.59
24 +++ ChangeLog 30 Jul 2015 08:57:55 -0000 1.60
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-forensics/lynis
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/ChangeLog,v 1.59 2015/06/29 19:39:29 idl0r Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/ChangeLog,v 1.60 2015/07/30 08:57:55 patrick Exp $
30 +
31 +*lynis-2.1.1 (30 Jul 2015)
32 +
33 + 30 Jul 2015; Patrick Lauer <patrick@g.o> +lynis-2.1.1.ebuild:
34 + Bump
35
36 *lynis-2.1.0 (29 Jun 2015)
37
38
39
40
41 1.1 app-forensics/lynis/lynis-2.1.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/lynis/lynis-2.1.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/lynis/lynis-2.1.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lynis-2.1.1.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-forensics/lynis/lynis-2.1.1.ebuild,v 1.1 2015/07/30 08:57:55 patrick Exp $
51
52 EAPI="5"
53
54 inherit eutils bash-completion-r1
55
56 DESCRIPTION="Security and system auditing tool"
57 HOMEPAGE="http://cisofy.com/lynis/"
58 SRC_URI="http://cisofy.com/files/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE=""
64
65 DEPEND=""
66 RDEPEND="app-shells/bash"
67
68 S="${WORKDIR}/${PN}"
69
70 src_prepare() {
71 # Bug 507438
72 epatch_user
73 }
74
75 src_install() {
76 doman lynis.8
77 dodoc CHANGELOG FAQ README
78
79 # Remove the old one during the next stabilize progress
80 exeinto /etc/cron.daily
81 newexe "${FILESDIR}"/lynis.cron-new lynis
82
83 dobashcomp extras/bash_completion.d/lynis
84
85 # stricter default perms - bug 507436
86 diropts -m0700
87 insopts -m0600
88
89 insinto /usr/share/${PN}
90 doins -r db/ include/ plugins/
91
92 dosbin lynis
93
94 insinto /etc/${PN}
95 doins default.prf
96 }
97
98 pkg_postinst() {
99 einfo
100 einfo "A cron script has been installed to ${ROOT}etc/cron.daily/lynis."
101 einfo
102 }