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 2926E1396D9 for ; Sat, 21 Oct 2017 08:38:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E49A52BC065; Sat, 21 Oct 2017 08:38:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 C79372BC065 for ; Sat, 21 Oct 2017 08:38:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 41BD433C4EE for ; Sat, 21 Oct 2017 08:38:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6AE01830 for ; Sat, 21 Oct 2017 08:38:30 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1508575080.4a7d8be51a40c1535d62abc8f122922de8e8334d.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Festival-Client-Async/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Festival-Client-Async/Festival-Client-Async-0.30.300-r2.ebuild X-VCS-Directories: dev-perl/Festival-Client-Async/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 4a7d8be51a40c1535d62abc8f122922de8e8334d X-VCS-Branch: master Date: Sat, 21 Oct 2017 08:38:30 +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: 1826b6fc-c05d-4327-8a05-e5f433c1647e X-Archives-Hash: dcd65df28b3f5cedc717ffa240033f2d commit: 4a7d8be51a40c1535d62abc8f122922de8e8334d Author: Kent Fredric gentoo org> AuthorDate: Sat Oct 21 08:09:00 2017 +0000 Commit: Kent Fredric gentoo org> CommitDate: Sat Oct 21 08:38:00 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a7d8be5 dev-perl/Festival-Client-Async: EAPI6 + Tests - EAPI6 - Basic compile tests - Document advanced testing Package-Manager: Portage-2.3.8, Repoman-2.3.3 .../Festival-Client-Async-0.30.300-r2.ebuild | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/dev-perl/Festival-Client-Async/Festival-Client-Async-0.30.300-r2.ebuild b/dev-perl/Festival-Client-Async/Festival-Client-Async-0.30.300-r2.ebuild new file mode 100644 index 00000000000..6427667e2db --- /dev/null +++ b/dev-perl/Festival-Client-Async/Festival-Client-Async-0.30.300-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_AUTHOR=DJHD +DIST_VERSION=0.0303 +inherit perl-module + +DESCRIPTION="Non-blocking interface to a Festival server" + +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~sparc ~x86" +IUSE="" + +src_test() { + local MODULES=( + "Festival::Client::Async ${DIST_VERSION}" + ) + local failed=() + for dep in "${MODULES[@]}"; do + ebegin "Compile testing ${dep}" + perl -Mblib="${S}" -M"${dep} ()" -e1 + eend $? || failed+=( "$dep" ) + done + if [[ ${failed[@]} ]]; then + echo + eerror "One or more modules failed compile:"; + for dep in "${failed[@]}"; do + eerror " ${dep}" + done + die "Failing due to module compilation errors"; + fi + ewarn "Comprehensive testing may require manual steps. For details, see:" + ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/Festival-Client-Async" + perl-module_src_test +}