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 1759B13835A for ; Mon, 3 Aug 2020 00:49:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 42621E0999; Mon, 3 Aug 2020 00:49:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 2A6BAE0999 for ; Mon, 3 Aug 2020 00:49:47 +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 67CF134F32F for ; Mon, 3 Aug 2020 00:49:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8D1F2E7 for ; Mon, 3 Aug 2020 00:49:41 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1596415771.590971fb341fa294a785f61762520b4eedc68eaa.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmp4v2/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libmp4v2/libmp4v2-2.0.0-r2.ebuild X-VCS-Directories: media-libs/libmp4v2/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 590971fb341fa294a785f61762520b4eedc68eaa X-VCS-Branch: master Date: Mon, 3 Aug 2020 00:49:41 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fed628ac-2269-46db-b1ca-4c74a0b8f8c7 X-Archives-Hash: 979f30b1cffbc3284af66d3c0c859ce6 commit: 590971fb341fa294a785f61762520b4eedc68eaa Author: Sam James gentoo org> AuthorDate: Mon Aug 3 00:49:31 2020 +0000 Commit: Sam James gentoo org> CommitDate: Mon Aug 3 00:49:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=590971fb media-libs/libmp4v2: drop useless test deps We can't run tests because they don't exist, however the repo has a bunch of DejaGnu skeleton framework files, so we restrict tests. Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Sam James gentoo.org> media-libs/libmp4v2/libmp4v2-2.0.0-r2.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/media-libs/libmp4v2/libmp4v2-2.0.0-r2.ebuild b/media-libs/libmp4v2/libmp4v2-2.0.0-r2.ebuild index 55a53112dd4..9602704da8a 100644 --- a/media-libs/libmp4v2/libmp4v2-2.0.0-r2.ebuild +++ b/media-libs/libmp4v2/libmp4v2-2.0.0-r2.ebuild @@ -14,13 +14,11 @@ SRC_URI="https://mp4v2.googlecode.com/files/${MY_P}.tar.bz2" LICENSE="MPL-1.1" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" -IUSE="static-libs test utils" -RESTRICT="!test? ( test )" +IUSE="static-libs utils" +# Tests need DejaGnu but are non-existent (just an empty framework) +RESTRICT="test" -BDEPEND=" - test? ( dev-util/dejagnu ) - utils? ( sys-apps/help2man ) -" +BDEPEND="utils? ( sys-apps/help2man )" DOCS=( doc/{Authors,BuildSource,Documentation,ReleaseNotes,ToolGuide}.txt README )