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 E2870138334 for ; Thu, 7 Jun 2018 00:36:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DEF8E0C35; Thu, 7 Jun 2018 00:36:53 +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 D4922E0C35 for ; Thu, 7 Jun 2018 00:36:52 +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 35F3C335C77 for ; Thu, 7 Jun 2018 00:36:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B18129E for ; Thu, 7 Jun 2018 00:36:49 +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: <1528331785.5a30e002942b56d509b58b13ba4066256b6f3f09.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.11.0.ebuild X-VCS-Directories: dev-libs/libinput/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 5a30e002942b56d509b58b13ba4066256b6f3f09 X-VCS-Branch: master Date: Thu, 7 Jun 2018 00:36:49 +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: 1b0c292e-e87c-4ef6-9937-f47f74a7af3d X-Archives-Hash: 5d4db175dd5a7f23305d66588e945713 commit: 5a30e002942b56d509b58b13ba4066256b6f3f09 Author: Alon Bar-Lev gentoo org> AuthorDate: Thu May 31 19:53:52 2018 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Jun 7 00:36:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a30e002 dev-libs/libinput: Refresh udev after installing libinput installs hwdb files, so we must refresh udev with udevadm hwdb --update Closes: https://bugs.gentoo.org/657000 dev-libs/libinput/libinput-1.11.0.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-libs/libinput/libinput-1.11.0.ebuild b/dev-libs/libinput/libinput-1.11.0.ebuild index 5364b191c2f..0635ed1b8fa 100644 --- a/dev-libs/libinput/libinput-1.11.0.ebuild +++ b/dev-libs/libinput/libinput-1.11.0.ebuild @@ -20,7 +20,8 @@ RDEPEND=" input_devices_wacom? ( >=dev-libs/libwacom-0.20 ) >=dev-libs/libevdev-1.3 >=sys-libs/mtdev-1.1 - virtual/libudev + virtual/libudev:= + virtual/udev " DEPEND="${RDEPEND} virtual/pkgconfig @@ -54,3 +55,7 @@ src_install() { fi find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die } + +pkg_postinst() { + udevadm hwdb --update --root="${ROOT%/}" +}