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 3C499158170 for ; Fri, 19 Jul 2024 11:18:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F6FBE2A68; Fri, 19 Jul 2024 11:18:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 5C9A4E2A68 for ; Fri, 19 Jul 2024 11:18:16 +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 492A6335D63 for ; Fri, 19 Jul 2024 11:18:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D9EC11B89 for ; Fri, 19 Jul 2024 11:18:13 +0000 (UTC) From: "Vitaly Zdanevich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vitaly Zdanevich" Message-ID: <1721387858.861b49693757dcabfdcaa67b8b05fd6235cfea69.zdanevich.vitaly@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-benchmarks/phoronix-test-suite/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-benchmarks/phoronix-test-suite/phoronix-test-suite-9999.ebuild X-VCS-Directories: app-benchmarks/phoronix-test-suite/ X-VCS-Committer: zdanevich.vitaly X-VCS-Committer-Name: Vitaly Zdanevich X-VCS-Revision: 861b49693757dcabfdcaa67b8b05fd6235cfea69 X-VCS-Branch: dev Date: Fri, 19 Jul 2024 11:18:13 +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: dc078f22-0aa4-4954-9726-83237f3344dc X-Archives-Hash: 2972552e2ae115745a487883d33b98d1 commit: 861b49693757dcabfdcaa67b8b05fd6235cfea69 Author: Vitaly Zdanevich ya ru> AuthorDate: Fri Jul 19 11:17:38 2024 +0000 Commit: Vitaly Zdanevich ya ru> CommitDate: Fri Jul 19 11:17:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=861b4969 app-benchmarks/phoronix-test-suite: Please make sure to call xdg_desktop_database_update fix Signed-off-by: Vitaly Zdanevich ya.ru> app-benchmarks/phoronix-test-suite/phoronix-test-suite-9999.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-benchmarks/phoronix-test-suite/phoronix-test-suite-9999.ebuild b/app-benchmarks/phoronix-test-suite/phoronix-test-suite-9999.ebuild index 31a304aa3..254dfad84 100644 --- a/app-benchmarks/phoronix-test-suite/phoronix-test-suite-9999.ebuild +++ b/app-benchmarks/phoronix-test-suite/phoronix-test-suite-9999.ebuild @@ -117,8 +117,13 @@ src_install() { pkg_postinst() { xdg_icon_cache_update xdg_mimeinfo_database_update + xdg_desktop_database_update ewarn "${PN} has the following optional package dependencies:" get_optional_dependencies "${GENTOO_OPTIONAL_PKGS_XML}" unset -v GENTOO_OPTIONAL_PKGS_XML } + +pkg_postrm() { + xdg_desktop_database_update +}