From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8EDFF138359 for ; Mon, 31 Aug 2020 07:10:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7BD4E093A; Mon, 31 Aug 2020 07:10:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9B849E093A for ; Mon, 31 Aug 2020 07:10:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 61555340B23 for ; Mon, 31 Aug 2020 07:10:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8A982EE for ; Mon, 31 Aug 2020 07:10:18 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1598857798.6bc5543f4cf2b0d0fc18a535b326bb62ae9d42f8.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/File-RsyncP/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/File-RsyncP/File-RsyncP-0.740.0-r1.ebuild X-VCS-Directories: dev-perl/File-RsyncP/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 6bc5543f4cf2b0d0fc18a535b326bb62ae9d42f8 X-VCS-Branch: master Date: Mon, 31 Aug 2020 07:10:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: aad16724-3b7b-4f1e-bc37-0afee1ffa64b X-Archives-Hash: 8ea9fee0748d2b0f1f4caf5448eef17f commit: 6bc5543f4cf2b0d0fc18a535b326bb62ae9d42f8 Author: Kent Fredric gentoo org> AuthorDate: Mon Aug 31 07:09:16 2020 +0000 Commit: Kent Fredric gentoo org> CommitDate: Mon Aug 31 07:09:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bc5543f dev-perl/File-RsyncP: -r bump for EAPI7 + Fixes - EAPI7 - Fix LICENSE - Ensure CFLAGS passed to make/compile - Minor dep improvement - Remove empty/unused variable assignments Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Kent Fredric gentoo.org> dev-perl/File-RsyncP/File-RsyncP-0.740.0-r1.ebuild | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) 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 new file mode 100644 index 00000000000..8d726fc7981 --- /dev/null +++ b/dev-perl/File-RsyncP/File-RsyncP-0.740.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=CBARRATT +DIST_VERSION=0.74 +inherit perl-module toolchain-funcs + +DESCRIPTION="An rsync perl module" +HOMEPAGE="http://perlrsync.sourceforge.net/ https://metacpan.org/release/File-RsyncP" +# Bundled files make for some weirdness +LICENSE="GPL-3+ GPL-2+ RSA" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=" + >=virtual/perl-Getopt-Long-2.240.0 + net-misc/rsync +" +BDEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}/${PN}-0.700.0-make.patch" ) + +src_prepare() { + perl-module_src_prepare + tc-export CC +} +src_compile() { + mymake=( + "OPTIMIZE=${CFLAGS}" + ) + perl-module_src_compile +}