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/Filesys-Statvfs/
Date: Thu, 10 Sep 2020 15:18:40
Message-Id: 1599751085.b6b10804c82853f5b95b46095ea8a47eceb3c519.kentnl@gentoo
1 commit: b6b10804c82853f5b95b46095ea8a47eceb3c519
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 10 15:17:30 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 10 15:18:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6b10804
7
8 dev-perl/Filesys-Statvfs: -r bump for CFLAGS love & fixes
9
10 - Fix DESCRIPTION
11 - Remove unused/empty variable assignments
12 - Ensure CFLAGS passed to make/compiler
13
14 Package-Manager: Portage-3.0.4, Repoman-3.0.1
15 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
16
17 .../Filesys-Statvfs-0.820.0-r1.ebuild | 22 ++++++++++++++++++++++
18 1 file changed, 22 insertions(+)
19
20 diff --git a/dev-perl/Filesys-Statvfs/Filesys-Statvfs-0.820.0-r1.ebuild b/dev-perl/Filesys-Statvfs/Filesys-Statvfs-0.820.0-r1.ebuild
21 new file mode 100644
22 index 00000000000..e91241c15f5
23 --- /dev/null
24 +++ b/dev-perl/Filesys-Statvfs/Filesys-Statvfs-0.820.0-r1.ebuild
25 @@ -0,0 +1,22 @@
26 +# Copyright 1999-2020 Gentoo Authors
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=7
30 +
31 +DIST_AUTHOR=IGUTHRIE
32 +DIST_VERSION=0.82
33 +inherit perl-module
34 +
35 +DESCRIPTION="Perl extension for statvfs() and fstatvfs()"
36 +
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86"
39 +
40 +BDEPEND="virtual/perl-ExtUtils-MakeMaker"
41 +
42 +src_compile() {
43 + mymake=(
44 + "OPTIMIZE=${CFLAGS}"
45 + )
46 + perl-module_src_compile
47 +}