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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6E277158091 for ; Tue, 14 Jun 2022 10:20:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A733DE0875; Tue, 14 Jun 2022 10:20:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 84D80E0875 for ; Tue, 14 Jun 2022 10:20:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8F9F4341368 for ; Tue, 14 Jun 2022 10:20:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED5B2105 for ; Tue, 14 Jun 2022 10:20:04 +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: <1655201993.9d055a5b62d9ada151b5e44e194e6d866096aa83.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/bluez-qt/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/bluez-qt/bluez-qt-9999.ebuild X-VCS-Directories: kde-frameworks/bluez-qt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9d055a5b62d9ada151b5e44e194e6d866096aa83 X-VCS-Branch: master Date: Tue, 14 Jun 2022 10:20:04 +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: e8549e92-6205-4667-8036-a20fa194ae2f X-Archives-Hash: 16102a6f57dfb3da1a536f9aa7f0ab4b commit: 9d055a5b62d9ada151b5e44e194e6d866096aa83 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Jun 14 10:19:53 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jun 14 10:19:53 2022 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=9d055a5b kde-frameworks/bluez-qt: Use udev_reload Bug: https://bugs.gentoo.org/850703 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/bluez-qt/bluez-qt-9999.ebuild | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/kde-frameworks/bluez-qt/bluez-qt-9999.ebuild b/kde-frameworks/bluez-qt/bluez-qt-9999.ebuild index 7a2b487485..79ce7806a6 100644 --- a/kde-frameworks/bluez-qt/bluez-qt-9999.ebuild +++ b/kde-frameworks/bluez-qt/bluez-qt-9999.ebuild @@ -8,6 +8,7 @@ VIRTUALX_REQUIRED="test" inherit ecm kde.org udev DESCRIPTION="Qt wrapper for Bluez 5 DBus API" + LICENSE="LGPL-2" KEYWORDS="" IUSE="" @@ -36,3 +37,13 @@ src_test() { ecm_src_test } + +pkg_postinst() { + ecm_pkg_postinst + udev_reload +} + +pkg_postrm() { + ecm_pkg_postrm + udev_reload +}