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 6A32B138334 for ; Fri, 3 Jan 2020 09:15:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A40EAE091C; Fri, 3 Jan 2020 09:15:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 88D63E091C for ; Fri, 3 Jan 2020 09:15:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 863E534DE6B for ; Fri, 3 Jan 2020 09:15:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7011475 for ; Fri, 3 Jan 2020 09:15:18 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1578042866.ac3158ef82f8d6d80e87a1cb9bfe6b5d2633c669.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/qutebrowser/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/qutebrowser/qutebrowser-9999.ebuild X-VCS-Directories: www-client/qutebrowser/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: ac3158ef82f8d6d80e87a1cb9bfe6b5d2633c669 X-VCS-Branch: master Date: Fri, 3 Jan 2020 09:15:18 +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: 823a3e11-e96b-405b-8ca5-71393e1153a6 X-Archives-Hash: 81773ffaf8c685367411ec2051656b9a commit: ac3158ef82f8d6d80e87a1cb9bfe6b5d2633c669 Author: DarkDefender gmail com> AuthorDate: Sun Dec 29 14:30:43 2019 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Jan 3 09:14:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac3158ef www-client/qutebrowser: Fix live ebuild .desktop generation The live ebuild recently stopped producing `.desktop` files. Therefore qutebrowser did have any start menu entries. I've just synced the code that is responsible for this with the non live ebuild. It seems to work fine. Signed-off-by: Sebastian Parborg gmail.com> Closes: https://github.com/gentoo/gentoo/pull/14168 Signed-off-by: Joonas Niilola gentoo.org> www-client/qutebrowser/qutebrowser-9999.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www-client/qutebrowser/qutebrowser-9999.ebuild b/www-client/qutebrowser/qutebrowser-9999.ebuild index 4786a63c56f..2243e4e7da9 100644 --- a/www-client/qutebrowser/qutebrowser-9999.ebuild +++ b/www-client/qutebrowser/qutebrowser-9999.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python{3_5,3_6,3_7} ) -inherit distutils-r1 eutils xdg-utils +inherit desktop distutils-r1 eutils xdg-utils if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" @@ -77,12 +77,12 @@ python_install_all() { pkg_postinst() { optfeature "PDF display support" www-plugins/pdfjs xdg_desktop_database_update + xdg_icon_cache_update xdg_mimeinfo_database_update - gnome2_icon_cache_update } pkg_postrm() { xdg_desktop_database_update + xdg_icon_cache_update xdg_mimeinfo_database_update - gnome2_icon_cache_update }