Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/File-RsyncP/
Date: Mon, 31 Aug 2020 07:10:23
Message-Id: 1598857798.6bc5543f4cf2b0d0fc18a535b326bb62ae9d42f8.kentnl@gentoo
1 commit: 6bc5543f4cf2b0d0fc18a535b326bb62ae9d42f8
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 31 07:09:16 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 31 07:09:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bc5543f
7
8 dev-perl/File-RsyncP: -r bump for EAPI7 + Fixes
9
10 - EAPI7
11 - Fix LICENSE
12 - Ensure CFLAGS passed to make/compile
13 - Minor dep improvement
14 - Remove empty/unused variable assignments
15
16 Package-Manager: Portage-3.0.4, Repoman-3.0.1
17 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
18
19 dev-perl/File-RsyncP/File-RsyncP-0.740.0-r1.ebuild | 34 ++++++++++++++++++++++
20 1 file changed, 34 insertions(+)
21
22 diff --git a/dev-perl/File-RsyncP/File-RsyncP-0.740.0-r1.ebuild b/dev-perl/File-RsyncP/File-RsyncP-0.740.0-r1.ebuild
23 new file mode 100644
24 index 00000000000..8d726fc7981
25 --- /dev/null
26 +++ b/dev-perl/File-RsyncP/File-RsyncP-0.740.0-r1.ebuild
27 @@ -0,0 +1,34 @@
28 +# Copyright 1999-2020 Gentoo Authors
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=7
32 +
33 +DIST_AUTHOR=CBARRATT
34 +DIST_VERSION=0.74
35 +inherit perl-module toolchain-funcs
36 +
37 +DESCRIPTION="An rsync perl module"
38 +HOMEPAGE="http://perlrsync.sourceforge.net/ https://metacpan.org/release/File-RsyncP"
39 +# Bundled files make for some weirdness
40 +LICENSE="GPL-3+ GPL-2+ RSA"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
43 +
44 +RDEPEND="
45 + >=virtual/perl-Getopt-Long-2.240.0
46 + net-misc/rsync
47 +"
48 +BDEPEND="${RDEPEND}"
49 +
50 +PATCHES=( "${FILESDIR}/${PN}-0.700.0-make.patch" )
51 +
52 +src_prepare() {
53 + perl-module_src_prepare
54 + tc-export CC
55 +}
56 +src_compile() {
57 + mymake=(
58 + "OPTIMIZE=${CFLAGS}"
59 + )
60 + perl-module_src_compile
61 +}