Gentoo Archives: gentoo-commits

From: "Patrice Clement (monsieurp)" <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/nikto: nikto-2.1.5.ebuild ChangeLog
Date: Sat, 30 Aug 2014 20:44:43
Message-Id: 20140830204439.9C2354478@oystercatcher.gentoo.org
1 monsieurp 14/08/30 20:44:39
2
3 Modified: nikto-2.1.5.ebuild ChangeLog
4 Log:
5 some clean up due to EAPI=5 bump
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.3 net-analyzer/nikto/nikto-2.1.5.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nikto/nikto-2.1.5.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nikto/nikto-2.1.5.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nikto/nikto-2.1.5.ebuild?r1=1.2&r2=1.3
15
16 Index: nikto-2.1.5.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nikto/nikto-2.1.5.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- nikto-2.1.5.ebuild 30 Aug 2014 18:18:59 -0000 1.2
23 +++ nikto-2.1.5.ebuild 30 Aug 2014 20:44:39 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nikto/nikto-2.1.5.ebuild,v 1.2 2014/08/30 18:18:59 monsieurp Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nikto/nikto-2.1.5.ebuild,v 1.3 2014/08/30 20:44:39 monsieurp Exp $
29 EAPI=5
30 inherit perl-module
31
32 @@ -21,12 +21,12 @@
33 )"
34
35 src_prepare() {
36 - sed -i -e 's:config.txt:nikto.conf:g' plugins/* || die
37 + sed -i -e 's:config.txt:nikto.conf:g' plugins/*
38
39 sed -i -e 's:/etc/nikto.conf:/etc/nikto/nikto.conf:;
40 s:# EXECDIR=/usr/local/nikto:EXECDIR=/usr/share/nikto:;
41 s:# use LW2:use LW2:;
42 - s:require "$CONFIGFILE{'\''PLUGINDIR'\''}/LW2.pm":# require "$CONFIGFILE{'\''PLUGINDIR'\''}/LW2.pm":;' nikto.pl || die
43 + s:require "$CONFIGFILE{'\''PLUGINDIR'\''}/LW2.pm":# require "$CONFIGFILE{'\''PLUGINDIR'\''}/LW2.pm":;' nikto.pl
44 }
45
46 src_compile() {
47 @@ -36,23 +36,24 @@
48
49 src_install() {
50 insinto /etc/nikto
51 - doins nikto.conf || die "config install failed"
52 + doins nikto.conf
53
54 - dobin nikto.pl || die "install failed"
55 - dosym /usr/bin/nikto.pl /usr/bin/nikto || die
56 + dobin nikto.pl
57 + dosym /usr/bin/nikto.pl /usr/bin/nikto
58
59 - unset ${NIKTO_PMS}
60 dodir /usr/share/nikto
61 insinto /usr/share/nikto
62 - doins -r plugins templates databases || die
63 + doins -r plugins templates databases
64
65 NIKTO_PMS="LW2.pm JSON-PP.pm"
66 einfo "symlinking ${NIKTO_PMS} to ${VENDOR_LIB}"
67 for pm in ${NIKTO_PMS}; do
68 dosym /usr/share/nikto/plugins/${pm} ${VENDOR_LIB}/${pm}
69 done
70 - dodoc docs/*.txt || die
71 - dohtml docs/nikto_manual.html || die
72 + unset ${NIKTO_PMS}
73 +
74 + dodoc docs/*.txt
75 + dohtml docs/nikto_manual.html
76
77 insinto ${VENDOR_PERL}
78 }
79
80
81
82 1.31 net-analyzer/nikto/ChangeLog
83
84 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nikto/ChangeLog?rev=1.31&view=markup
85 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nikto/ChangeLog?rev=1.31&content-type=text/plain
86 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nikto/ChangeLog?r1=1.30&r2=1.31
87
88 Index: ChangeLog
89 ===================================================================
90 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nikto/ChangeLog,v
91 retrieving revision 1.30
92 retrieving revision 1.31
93 diff -u -r1.30 -r1.31
94 --- ChangeLog 30 Aug 2014 18:18:59 -0000 1.30
95 +++ ChangeLog 30 Aug 2014 20:44:39 -0000 1.31
96 @@ -1,6 +1,9 @@
97 # ChangeLog for net-analyzer/nikto
98 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
99 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nikto/ChangeLog,v 1.30 2014/08/30 18:18:59 monsieurp Exp $
100 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nikto/ChangeLog,v 1.31 2014/08/30 20:44:39 monsieurp Exp $
101 +
102 + 30 Aug 2014; <patrice@g.o> nikto-2.1.5.ebuild:
103 + some clean up due to EAPI=5 bump
104
105 30 Aug 2014; <patrice@g.o> nikto-2.1.5.ebuild:
106 #489240: version bump to 2.1.5 + EAPI bump to 5