diff options
author | Kent Fredric <kentnl@gentoo.org> | 2018-01-24 17:43:41 +1300 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2018-01-24 17:43:41 +1300 |
commit | bc5f9c41bdf10594cba2edb7da5aa47b0f3a281a (patch) | |
tree | 4c50c9f3847e3e3defee5002ccb16069dd89afcf /dev-perl/Quota/Quota-1.7.2.ebuild | |
parent | dev-perl/DBD-mysql: Bump to version 4.44.0 (diff) | |
download | gentoo-bc5f9c41bdf10594cba2edb7da5aa47b0f3a281a.tar.gz gentoo-bc5f9c41bdf10594cba2edb7da5aa47b0f3a281a.tar.bz2 gentoo-bc5f9c41bdf10594cba2edb7da5aa47b0f3a281a.zip |
dev-perl/Quota: -r1 bump for RDEPEND propagation
Package-Manager: Portage-2.3.18, Repoman-2.3.6
Diffstat (limited to 'dev-perl/Quota/Quota-1.7.2.ebuild')
-rw-r--r-- | dev-perl/Quota/Quota-1.7.2.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-perl/Quota/Quota-1.7.2.ebuild b/dev-perl/Quota/Quota-1.7.2.ebuild deleted file mode 100644 index 74a17df08e44..000000000000 --- a/dev-perl/Quota/Quota-1.7.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DIST_AUTHOR=TOMZO -inherit perl-module toolchain-funcs flag-o-matic - -DESCRIPTION="Perl interface to file system quotas" - -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RDEPEND=" - sys-fs/quota[rpc] - net-libs/libtirpc -" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker -" - -# Tests need real FS access/root permissions and are interactive -DIST_TEST=skip - -src_prepare() { - default - export mymake="INC=$($(tc-getPKG_CONFIG) --cflags libtirpc) OTHERLDFLAGS=$($(tc-getPKG_CONFIG) --libs 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" -} - -src_test() { - ebegin "Compile testing Quota ${PV}" - perl -Mblib="${S}" -M"Quota ${PV} ()" -e1 - if ! eend $?; then - echo - eerror "One or more modules failed compile:"; - eerror " Quota ${PV}" - die "Failing due to module compilation errors"; - fi - perl-module_src_test -} |