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 9F62F1396D9 for ; Wed, 1 Nov 2017 21:18:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 125752BC01D; Wed, 1 Nov 2017 21:18:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E60A92BC01D for ; Wed, 1 Nov 2017 21:18:43 +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 C0E3033C4EE for ; Wed, 1 Nov 2017 21:18:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 868C6828 for ; Wed, 1 Nov 2017 21:18:40 +0000 (UTC) From: "Andreas Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" Message-ID: <1509571110.1259579a303b3397efa95e9868c02d17d601d524.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Quota/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Quota/Quota-1.7.2.ebuild X-VCS-Directories: dev-perl/Quota/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 1259579a303b3397efa95e9868c02d17d601d524 X-VCS-Branch: master Date: Wed, 1 Nov 2017 21:18:40 +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-Archives-Salt: a6002e9c-a3ed-4e48-a0d3-06ea93d1fd70 X-Archives-Hash: b66e208744916a04321afcb8b1bd1ee6 commit: 1259579a303b3397efa95e9868c02d17d601d524 Author: Andreas K. Hüttel gentoo org> AuthorDate: Wed Nov 1 21:18:30 2017 +0000 Commit: Andreas Hüttel gentoo org> CommitDate: Wed Nov 1 21:18:30 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1259579a dev-perl/Quota: Fix build with glibc-2.26, bug 630568 Not sure if this is complete though... it compiles, but does it run? Closes: https://bugs.gentoo.org/630568 Package-Manager: Portage-2.3.13, Repoman-2.3.4 dev-perl/Quota/Quota-1.7.2.ebuild | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/dev-perl/Quota/Quota-1.7.2.ebuild b/dev-perl/Quota/Quota-1.7.2.ebuild index 9b1c897be01..7e107a67f8f 100644 --- a/dev-perl/Quota/Quota-1.7.2.ebuild +++ b/dev-perl/Quota/Quota-1.7.2.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 DIST_AUTHOR=TOMZO -inherit perl-module +inherit perl-module toolchain-funcs flag-o-matic DESCRIPTION="Perl interface to file system quotas" @@ -12,14 +12,19 @@ SLOT="0" KEYWORDS="~amd64" IUSE="" -RDEPEND="" -DEPEND="virtual/perl-ExtUtils-MakeMaker" +RDEPEND=" + sys-fs/quota[rpc] +" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker +" # Tests need real FS access/root permissions and are interactive DIST_TEST=skip src_prepare() { default + export mymake="OPTIMIZE=$($(tc-getPKG_CONFIG) --cflags libtirpc)" # disable AFS completely for now, need somebody who can really test it sed -i -e 's|-d "/afs"|0|' Makefile.PL || die "sed failed"