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.
Merge github#942: dev-perl/Net-FreeDB: Version bump to version 0.100.0.
Pull-Request: gentoo#942 Reporter: Kent Fredric <[email protected]> Acked-by: Patrice Clement <[email protected]> Signed-off-by: Patrice Clement <[email protected]>
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 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 Net-FreeDB-0.08.tar.gz 19210 SHA256 f9774b85cd8edae72d3f90dcb2efb78d4fa759b0008e0c90e1c0254bec5c86b6 SHA512 64a33a4aac43580881302a35c204cc00f99dde80a5fb7154153fad32b93db48369739fc1b5631900243cd90882ac2308e1afdee12a0bd39b10e1770f4ee36625 WHIRLPOOL 3e9ce51fa5488892b3018ee71168a497c6deca1479d6c3c3fdd311e108c000ad23fe3e56ca344b8298ff8f77609bbc61a366e6c7a822bfc67e0458fcfacad7c7 | ||
DIST Net-FreeDB-0.10.tar.gz 23869 SHA256 f743e12238eb16c94804afb4b310b02548f70bcaf179164eae567f8b4988ae85 SHA512 b1b249dfb81128645e6e3481f93d914fc11ecf931b91f6a21a065fa2fde8674f9c8b5466b3112be4f4f28556c0ec899cf8723e60adaaf26b5165e61d61445368 WHIRLPOOL 296900d92624962112a333154ecc0a058c262c43d9d6b1ed357e4c1afa4d4c5506a34c94fd66f93909b4cca9a13fe3e9e3b980bcf5b9de68548d4fff8455760a |
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,38 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
DIST_AUTHOR=DSHULTZ | ||
DIST_VERSION=0.10 | ||
inherit perl-module | ||
|
||
DESCRIPTION="OOP interface to the FreeDB database" | ||
|
||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="test" | ||
|
||
RDEPEND=" | ||
>=dev-perl/CDDB-File-1.10.0 | ||
>=virtual/perl-File-Temp-0.50.0 | ||
virtual/perl-IO | ||
dev-perl/Moo | ||
>=virtual/perl-libnet-2.120.0 | ||
" | ||
DEPEND="${RDEPEND} | ||
virtual/perl-ExtUtils-MakeMaker | ||
test? ( | ||
dev-perl/Test-Most | ||
) | ||
" | ||
src_test() { | ||
local my_test_control; | ||
my_test_control=${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}} | ||
if has network ${my_test_control} ; then | ||
export HAVE_INTERNET=1 | ||
perl_rm_files "t/16-get_local_disc_id.t" "t/17-get_local_disc_data.t" | ||
fi | ||
perl-module_src_test | ||
} |