Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/secpanel/
Date: Tue, 05 Mar 2019 03:45:02
Message-Id: 1551757478.b265e7209858b26f3f2e19ed3281048c12e103a0.bman@gentoo
1 commit: b265e7209858b26f3f2e19ed3281048c12e103a0
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 5 03:44:38 2019 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 5 03:44:38 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b265e720
7
8 net-misc/secpanel: bump EAPI
9
10 -use https
11 -remove unnecessary dies
12 -break RDEPEND across multiple lines and reorder
13 -add eapply_user to src_prepare
14
15 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
16 Package-Manager: Portage-2.3.62, Repoman-2.3.12
17
18 net-misc/secpanel/secpanel-0.6.1-r1.ebuild | 15 +++++++++------
19 1 file changed, 9 insertions(+), 6 deletions(-)
20
21 diff --git a/net-misc/secpanel/secpanel-0.6.1-r1.ebuild b/net-misc/secpanel/secpanel-0.6.1-r1.ebuild
22 index e504942af28..1490bfa53d9 100644
23 --- a/net-misc/secpanel/secpanel-0.6.1-r1.ebuild
24 +++ b/net-misc/secpanel/secpanel-0.6.1-r1.ebuild
25 @@ -1,10 +1,10 @@
26 -# Copyright 1999-2017 Gentoo Foundation
27 +# Copyright 1999-2019 Gentoo Authors
28 # Distributed under the terms of the GNU General Public License v2
29
30 -EAPI=2
31 +EAPI=7
32
33 DESCRIPTION="Graphical frontend for managing and running SSH and SCP connections"
34 -HOMEPAGE="http://themediahost.de/secpanel/"
35 +HOMEPAGE="https://themediahost.de/secpanel/"
36 SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
37
38 LICENSE="GPL-2"
39 @@ -14,7 +14,8 @@ IUSE="gif"
40
41 DEPEND="!gif? ( virtual/imagemagick-tools )"
42
43 -RDEPEND="virtual/ssh dev-lang/tk"
44 +RDEPEND="dev-lang/tk
45 + virtual/ssh"
46
47 S=${WORKDIR}/usr/local
48
49 @@ -37,11 +38,13 @@ src_prepare() {
50 rm -v "${i}" || die
51 done
52 fi
53 +
54 + eapply_user
55 }
56
57 src_install() {
58 - dobin bin/secpanel || die
59 + dobin bin/secpanel
60
61 insinto /usr/share/secpanel
62 - doins -r lib/secpanel/{*.{tcl,config,profile,wait,txt,sh},images,spdistkey} || die
63 + doins -r lib/secpanel/{*.{tcl,config,profile,wait,txt,sh},images,spdistkey}
64 }