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-Sync/
Date: Mon, 07 Sep 2020 09:20:36
Message-Id: 1599470415.afd2e3f7537d527d0b4027cdd03aefe74a5f5b40.kentnl@gentoo
1 commit: afd2e3f7537d527d0b4027cdd03aefe74a5f5b40
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 7 09:18:18 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 7 09:20:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afd2e3f7
7
8 dev-perl/File-Sync: -r bump for EAPI7 + CFLAGS love
9
10 - EAPI7
11 - Remove unused/empty varialbe assignments
12 - Parallel tests
13 - Ensure CFLAGS passed to make/compiler
14
15 Package-Manager: Portage-3.0.4, Repoman-3.0.1
16 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
17
18 dev-perl/File-Sync/File-Sync-0.110.0-r1.ebuild | 23 +++++++++++++++++++++++
19 1 file changed, 23 insertions(+)
20
21 diff --git a/dev-perl/File-Sync/File-Sync-0.110.0-r1.ebuild b/dev-perl/File-Sync/File-Sync-0.110.0-r1.ebuild
22 new file mode 100644
23 index 00000000000..d78dc62a634
24 --- /dev/null
25 +++ b/dev-perl/File-Sync/File-Sync-0.110.0-r1.ebuild
26 @@ -0,0 +1,23 @@
27 +# Copyright 1999-2020 Gentoo Authors
28 +# Distributed under the terms of the GNU General Public License v2
29 +
30 +EAPI=7
31 +
32 +DIST_AUTHOR=BRIANSKI
33 +DIST_VERSION=0.11
34 +inherit perl-module
35 +
36 +DESCRIPTION="Perl access to fsync() and sync() function calls"
37 +
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
40 +
41 +BDEPEND="
42 + virtual/perl-ExtUtils-MakeMaker
43 +"
44 +src_compile() {
45 + mymake=(
46 + "OPTIMIZE=${CFLAGS}"
47 + )
48 + perl-module_src_compile
49 +}