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 21D66138351 for ; Wed, 8 Apr 2020 06:35:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57FAFE0974; Wed, 8 Apr 2020 06:35:18 +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 3F192E0974 for ; Wed, 8 Apr 2020 06:35:18 +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 5D06334F0D2 for ; Wed, 8 Apr 2020 06:35:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9AF649D for ; Wed, 8 Apr 2020 06:35:15 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1586327699.8132de135d13fba13c6679f98ec49ae18d000f49.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/codeblocks/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/codeblocks/codeblocks-9999.ebuild X-VCS-Directories: dev-util/codeblocks/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 8132de135d13fba13c6679f98ec49ae18d000f49 X-VCS-Branch: master Date: Wed, 8 Apr 2020 06:35:15 +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: e17eba7b-a978-4106-92f1-5c6df90a8577 X-Archives-Hash: bf20c2ea41e4dfaad7c317846148ec4e commit: 8132de135d13fba13c6679f98ec49ae18d000f49 Author: Sergey Torokhov yandex ru> AuthorDate: Tue Mar 31 01:53:02 2020 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Wed Apr 8 06:34:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8132de13 dev-util/codeblocks: update live ebuild - fix HOMEPAGE to use https - replace xdg-utils eclass with xdg eclass Signed-off-by: Sergey Torokhov yandex.ru> Signed-off-by: Mart Raudsepp gentoo.org> dev-util/codeblocks/codeblocks-9999.ebuild | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/dev-util/codeblocks/codeblocks-9999.ebuild b/dev-util/codeblocks/codeblocks-9999.ebuild index 5350bd29d7c..580a1b03b54 100644 --- a/dev-util/codeblocks/codeblocks-9999.ebuild +++ b/dev-util/codeblocks/codeblocks-9999.ebuild @@ -5,10 +5,10 @@ EAPI=7 WX_GTK_VER="3.0-gtk3" -inherit autotools subversion wxwidgets xdg-utils +inherit autotools subversion wxwidgets xdg DESCRIPTION="The open source, cross platform, free C, C++ and Fortran IDE" -HOMEPAGE="http://www.codeblocks.org/" +HOMEPAGE="https://codeblocks.org/" LICENSE="GPL-3" SLOT="0" KEYWORDS="" @@ -58,13 +58,9 @@ pkg_postinst() { elog "The Symbols Browser is disabled due to it causing crashes." elog "For more information see https://sourceforge.net/p/codeblocks/tickets/225/" - xdg_desktop_database_update - xdg_icon_cache_update - xdg_mimeinfo_database_update + xdg_pkg_postinst } pkg_postrm() { - xdg_desktop_database_update - xdg_icon_cache_update - xdg_mimeinfo_database_update + xdg_pkg_postrm }