forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-perl/Quota: Fix version normalization; version bump
Package-Manager: portage-2.2.28
- Loading branch information
Showing
3 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST Quota-1.7.0.tar.gz 50342 SHA256 960057167b7e15c998771142e8d0cce8069760edd86d77da26e0907f27e65cac SHA512 3b99dda17f6f578cf469962ff4c6b662ba9a1a955356ee90a7b749f0ea7df1234356ef77c5c3091389749ef4b4f82df90b20886bae365af27828760c16125ded WHIRLPOOL ef7aae289ca773df25905d3cd1cd4a6d40d189ae4d8778a7e4923af69f871788d1dc9f73e34358d0db62fcec25635f4e82c267a44248fd2f84ac313fc4cbe730 | ||
DIST Quota-1.7.2.tar.gz 50436 SHA256 1001eb006cfe8f49b195145e04b0c37c2b09d1023c78ccda1871b30f551c312b SHA512 55ea9fbf027676b0e6f7a6f97fd3e75749860ebefe0127791a0d8cd8a427676eb1f6bf1ddf1a3687666752430faef877eedd12ccce39b7b76466fc7bfc628433 WHIRLPOOL 2a88a4eed16ea553bbacee7d19af3e1a6e0c751c144c3bac4ab89a788ed3fcce044da5f044cd1db4fae4f7426312f00ca4c6c81a86ca6a8e8b0461cb23a6e0a8 |
3 changes: 1 addition & 2 deletions
3
dev-perl/Quota/Quota-1.700.0-r1.ebuild → dev-perl/Quota/Quota-1.7.0.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
DIST_AUTHOR=TOMZO | ||
inherit perl-module | ||
|
||
DESCRIPTION="Perl interface to file system quotas" | ||
|
||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
RDEPEND="" | ||
DEPEND="virtual/perl-ExtUtils-MakeMaker" | ||
|
||
# Tests need real FS access/root permissions and are interactive | ||
DIST_TEST=skip | ||
|
||
src_prepare() { | ||
default | ||
|
||
# disable AFS completely for now, need somebody who can really test it | ||
sed -i -e 's|-d "/afs"|0|' Makefile.PL || die "sed failed" | ||
} |