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 D02E8138350 for ; Mon, 9 Mar 2020 02:06:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3999E08FF; Mon, 9 Mar 2020 02:06:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 C4A4AE08FF for ; Mon, 9 Mar 2020 02:06:07 +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 C150434F295 for ; Mon, 9 Mar 2020 02:06:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C6E3171 for ; Mon, 9 Mar 2020 02:06:03 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1583719541.7cd132b7f4b0b6fd53cea357458f0afd6d2ce306.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libinput/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libinput/libinput-1.15.3.ebuild X-VCS-Directories: dev-libs/libinput/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 7cd132b7f4b0b6fd53cea357458f0afd6d2ce306 X-VCS-Branch: master Date: Mon, 9 Mar 2020 02:06:03 +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: 4741bbf7-8d50-444a-a86d-c41741ec9e5c X-Archives-Hash: 5eab585df6157c4f23b87fcbd144e49a commit: 7cd132b7f4b0b6fd53cea357458f0afd6d2ce306 Author: Matt Turner gentoo org> AuthorDate: Mon Mar 9 01:41:45 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon Mar 9 02:05:41 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cd132b7 dev-libs/libinput: Unrestrict tests Signed-off-by: Matt Turner gentoo.org> dev-libs/libinput/libinput-1.15.3.ebuild | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/dev-libs/libinput/libinput-1.15.3.ebuild b/dev-libs/libinput/libinput-1.15.3.ebuild index 313a4e3d067..43de3f8241a 100644 --- a/dev-libs/libinput/libinput-1.15.3.ebuild +++ b/dev-libs/libinput/libinput-1.15.3.ebuild @@ -14,10 +14,8 @@ LICENSE="MIT" SLOT="0/10" [[ "$(ver_cut 3)" -gt 900 ]] || \ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" -IUSE="doc input_devices_wacom" -# Tests require write access to udev rules directory which is a no-no for live system. -# Other tests are just about logs, exported symbols and autotest of the test library. -RESTRICT="test" +IUSE="doc input_devices_wacom test" +RESTRICT="!test? ( test )" BDEPEND=" virtual/pkgconfig @@ -40,8 +38,8 @@ RDEPEND=" virtual/libudev:= virtual/udev " -DEPEND="${RDEPEND}" -# test? ( >=dev-libs/check-0.9.10 ) +DEPEND="${RDEPEND} + test? ( >=dev-libs/check-0.9.10 )" python_check_deps() { has_version "dev-python/commonmark[${PYTHON_USEDEP}]" && \ @@ -60,7 +58,7 @@ src_configure() { -Ddebug-gui=false $(meson_use doc documentation) $(meson_use input_devices_wacom libwacom) - -Dtests=false # tests are restricted + $(meson_use test tests) -Dudev-dir="${EPREFIX}$(get_udevdir)" ) meson_src_configure