Gentoo Archives: gentoo-commits

From: "Ian Stakenvicius (axs)" <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/RadiusPerl: RadiusPerl-0.220.0-r1.ebuild ChangeLog RadiusPerl-0.220.0.ebuild
Date: Sat, 23 Aug 2014 00:22:08
Message-Id: 20140823002205.04BF33C27@oystercatcher.gentoo.org
1 axs 14/08/23 00:22:05
2
3 Modified: ChangeLog
4 Added: RadiusPerl-0.220.0-r1.ebuild
5 Removed: RadiusPerl-0.220.0.ebuild
6 Log:
7 bumped EAPI to 5; committed directly to stable as no other changes present and revbump helps stable systems to keep from dieing on perl-5.18 upgrade
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 2B6559ED)
10
11 Revision Changes Path
12 1.7 dev-perl/RadiusPerl/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RadiusPerl/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RadiusPerl/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RadiusPerl/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-perl/RadiusPerl/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 10 Jul 2013 05:18:28 -0000 1.6
25 +++ ChangeLog 23 Aug 2014 00:22:04 -0000 1.7
26 @@ -1,6 +1,13 @@
27 # ChangeLog for dev-perl/RadiusPerl
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/RadiusPerl/ChangeLog,v 1.6 2013/07/10 05:18:28 ago Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/RadiusPerl/ChangeLog,v 1.7 2014/08/23 00:22:04 axs Exp $
32 +
33 +*RadiusPerl-0.220.0-r1 (23 Aug 2014)
34 +
35 + 23 Aug 2014; Ian Stakenvicius (_AxS_) <axs@g.o>
36 + +RadiusPerl-0.220.0-r1.ebuild, -RadiusPerl-0.220.0.ebuild:
37 + bumped EAPI to 5; committed directly to stable as no other changes present and
38 + revbump helps stable systems to keep from dieing on perl-5.18 upgrade
39
40 10 Jul 2013; Agostino Sarubbo <ago@g.o> RadiusPerl-0.220.0.ebuild:
41 Stable for x86, wrt bug #399553
42
43
44
45 1.1 dev-perl/RadiusPerl/RadiusPerl-0.220.0-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RadiusPerl/RadiusPerl-0.220.0-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/RadiusPerl/RadiusPerl-0.220.0-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: RadiusPerl-0.220.0-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2014 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-perl/RadiusPerl/RadiusPerl-0.220.0-r1.ebuild,v 1.1 2014/08/23 00:22:04 axs Exp $
55
56 EAPI=5
57
58 MODULE_AUTHOR=MANOWAR
59 MODULE_VERSION=0.22
60 inherit perl-module
61
62 DESCRIPTION="Communicate with a Radius server from Perl"
63
64 LICENSE="Artistic-2"
65 SLOT="0"
66 KEYWORDS="amd64 ~hppa ~sparc x86"
67 IUSE=""
68
69 DEPEND="
70 >=virtual/perl-Digest-MD5-2.200.0
71 >=virtual/perl-IO-1.12
72 >=dev-perl/Data-HexDump-0.02
73 "
74 RDEPEND="${DEPEND}"
75
76 S=${WORKDIR}/Authen-Radius-${MODULE_VERSION}
77
78 SRC_TEST="do"
79 export OPTIMIZE="$CFLAGS"
80 PATCHES=( "${FILESDIR}"/dictionary.cisco.ssg.patch )
81
82 src_prepare() {
83 sed -i '/install-radius-db.PL/d' Makefile.PL MANIFEST || die
84 mv "${S}"/install-radius-db.PL{,.orig} || die
85
86 perl-module_src_prepare
87 }
88
89 src_install() {
90 perl-module_src_install
91
92 # Really want to install these radius dictionaries?
93 insinto /etc/raddb
94 doins raddb/dictionary*
95 }