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 13E6A15ACFB for ; Sat, 22 Apr 2023 08:25:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E710DE0960; Sat, 22 Apr 2023 08:25:12 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 B0EC5E0960 for ; Sat, 22 Apr 2023 08:25:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BA11B341047 for ; Sat, 22 Apr 2023 08:25:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41B9B7DE for ; Sat, 22 Apr 2023 08:25:10 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1682151903.29ff71f16c89a6c24e4a6ba5d908da29e594d961.ceamac@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/ponyprog/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/ponyprog/ponyprog-3.1.3.ebuild X-VCS-Directories: dev-embedded/ponyprog/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 29ff71f16c89a6c24e4a6ba5d908da29e594d961 X-VCS-Branch: master Date: Sat, 22 Apr 2023 08:25:10 +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: 515c48bb-e64d-4d60-86e8-f1cdc0d314f4 X-Archives-Hash: 5fe30731a6c25757c6738c3d528c77c8 commit: 29ff71f16c89a6c24e4a6ba5d908da29e594d961 Author: Viorel Munteanu gentoo org> AuthorDate: Sat Apr 22 08:20:19 2023 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Sat Apr 22 08:25:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29ff71f1 dev-embedded/ponyprog: call udev_reload in 3.1.3 Closes: https://bugs.gentoo.org/842099 Closes: https://bugs.gentoo.org/866476 Signed-off-by: Viorel Munteanu gentoo.org> dev-embedded/ponyprog/ponyprog-3.1.3.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-embedded/ponyprog/ponyprog-3.1.3.ebuild b/dev-embedded/ponyprog/ponyprog-3.1.3.ebuild index ae75c85ebf41..290db29480f8 100644 --- a/dev-embedded/ponyprog/ponyprog-3.1.3.ebuild +++ b/dev-embedded/ponyprog/ponyprog-3.1.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -41,3 +41,7 @@ pkg_postinst() { elog "ppdev, parport and parport_pc compiled in or as modules. You need the" elog "rights to write to /dev/parport? devices." } + +pkg_postrm() { + udev_reload +}