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 F3F85138334 for ; Thu, 2 Jan 2020 22:36:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14517E0AB5; Thu, 2 Jan 2020 22:36:56 +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 E141DE0AAF for ; Thu, 2 Jan 2020 22:36:55 +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 8B9D434DE66 for ; Thu, 2 Jan 2020 22:36:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B32BA7 for ; Thu, 2 Jan 2020 22:36:52 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1578004598.7e952a24854aeee2311fd53672137d2c84fe540a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/liblangtag/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/liblangtag/liblangtag-0.6.3.ebuild X-VCS-Directories: app-text/liblangtag/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7e952a24854aeee2311fd53672137d2c84fe540a X-VCS-Branch: master Date: Thu, 2 Jan 2020 22:36:52 +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: 15a080c8-64d9-4bc1-b09c-4d2f577efd94 X-Archives-Hash: d1ed15f61f7a255fa2ebd223cc8ad462 commit: 7e952a24854aeee2311fd53672137d2c84fe540a Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jan 2 21:35:54 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jan 2 22:36:38 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e952a24 app-text/liblangtag: Move test dep to DEPEND where it belongs Thanks-to: Arfrever Frehtes Taifersar Arahesis Apache.Org> Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> app-text/liblangtag/liblangtag-0.6.3.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app-text/liblangtag/liblangtag-0.6.3.ebuild b/app-text/liblangtag/liblangtag-0.6.3.ebuild index b0db495d30f..eb55dea03ec 100644 --- a/app-text/liblangtag/liblangtag-0.6.3.ebuild +++ b/app-text/liblangtag/liblangtag-0.6.3.ebuild @@ -18,13 +18,14 @@ BDEPEND=" sys-devel/gettext doc? ( dev-util/gtk-doc ) introspection? ( dev-libs/gobject-introspection-common ) - test? ( dev-libs/check ) " RDEPEND=" dev-libs/libxml2 introspection? ( dev-libs/gobject-introspection ) " -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} + test? ( dev-libs/check ) +" # Upstream expect liblangtag to be installed when one runs tests... RESTRICT="test"