From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1328846-garchives=archives.gentoo.org@lists.gentoo.org> 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 0F498158086 for <garchives@archives.gentoo.org>; Sun, 10 Oct 2021 11:02:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 561D0E0896; Sun, 10 Oct 2021 11:02:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 41829E0896 for <gentoo-commits@lists.gentoo.org>; Sun, 10 Oct 2021 11:02:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4DBBE342C68 for <gentoo-commits@lists.gentoo.org>; Sun, 10 Oct 2021 11:02:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 079078F for <gentoo-commits@lists.gentoo.org>; Sun, 10 Oct 2021 11:02:25 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org> Message-ID: <1633863728.8257b81f6bb1651e71059d5146c53683e03ad50d.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/devmanual/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-doc/devmanual/devmanual-9999.ebuild X-VCS-Directories: app-doc/devmanual/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 8257b81f6bb1651e71059d5146c53683e03ad50d X-VCS-Branch: master Date: Sun, 10 Oct 2021 11:02:25 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6dc6a258-b3ad-442e-be07-8e1c7b122aac X-Archives-Hash: 0c52a3600364918b832601cf497a5084 commit: 8257b81f6bb1651e71059d5146c53683e03ad50d Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sun Oct 10 11:01:39 2021 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sun Oct 10 11:02:08 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8257b81f app-doc/devmanual: Depend on htmltidy for tests Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> app-doc/devmanual/devmanual-9999.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app-doc/devmanual/devmanual-9999.ebuild b/app-doc/devmanual/devmanual-9999.ebuild index 1170493b93e..d5af3bf8fd7 100644 --- a/app-doc/devmanual/devmanual-9999.ebuild +++ b/app-doc/devmanual/devmanual-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 PYTHON_COMPAT=(python3_{7,8,9}) inherit python-any-r1 readme.gentoo-r1 @@ -21,13 +21,15 @@ fi LICENSE="CC-BY-SA-4.0" SLOT="0" -IUSE="+offline" +IUSE="+offline test" +RESTRICT="!test? ( test )" BDEPEND="dev-libs/libxml2 dev-libs/libxslt gnome-base/librsvg media-fonts/open-sans - ${PYTHON_DEPS}" + ${PYTHON_DEPS} + test? ( >=app-text/htmltidy-5.8.0 )" PATCHES=( "${FILESDIR}"/${PN}-eclasses.patch )