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 CACBC138206 for ; Wed, 3 Jan 2018 11:06:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2290CE089C; Wed, 3 Jan 2018 11:06:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 F271AE089C for ; Wed, 3 Jan 2018 11:06:49 +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 0D544335C30 for ; Wed, 3 Jan 2018 11:06:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 877D3193 for ; Wed, 3 Jan 2018 11:06:47 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1514977599.71ebde04f264ef5e49f04701791ef415e65e361e.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/bleachbit/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/bleachbit/bleachbit-1.19-r1.ebuild sys-apps/bleachbit/bleachbit-1.19.ebuild X-VCS-Directories: sys-apps/bleachbit/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 71ebde04f264ef5e49f04701791ef415e65e361e X-VCS-Branch: master Date: Wed, 3 Jan 2018 11:06:47 +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-Archives-Salt: 686f10e5-3cb2-42e9-ac7c-5d5c86151340 X-Archives-Hash: 3f097db6184f4f6d80210e66598589ba commit: 71ebde04f264ef5e49f04701791ef415e65e361e Author: Christian Tietz mailbox org> AuthorDate: Mon Jan 1 20:49:25 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Wed Jan 3 11:06:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71ebde04 sys-apps/bleachbit: drop dev-pythonnotify-python from RDEPEND and add elog message. dev-python/notify-python is optional and not necessary in many if not most use cases. Hence, just like in e.g. Debian, it should not be a hard dependency. Moreover, it unconditionally pulls in dev-python/pygtk, rendering the gtk USE flag pointless. Package-Manager: Portage-2.3.13, Repoman-2.3.3 Closes: https://github.com/gentoo/gentoo/pull/6682 .../{bleachbit-1.19.ebuild => bleachbit-1.19-r1.ebuild} | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/sys-apps/bleachbit/bleachbit-1.19.ebuild b/sys-apps/bleachbit/bleachbit-1.19-r1.ebuild similarity index 85% rename from sys-apps/bleachbit/bleachbit-1.19.ebuild rename to sys-apps/bleachbit/bleachbit-1.19-r1.ebuild index f6f51d04867..6e967412811 100644 --- a/sys-apps/bleachbit/bleachbit-1.19.ebuild +++ b/sys-apps/bleachbit/bleachbit-1.19-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -21,9 +21,7 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="+gtk nls" -RDEPEND=" - dev-python/notify-python[$PYTHON_USEDEP] - gtk? ( dev-python/pygtk:2[$PYTHON_USEDEP] )" +RDEPEND="gtk? ( dev-python/pygtk:2[$PYTHON_USEDEP] )" DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" @@ -64,3 +62,9 @@ python_install_all() { doicon ${PN}.png domenu ${PN}.desktop } + +pkg_postinst() { + elog "Bleachbit has optional notification support. To enable, please install:" + elog "" + elog " dev-python/notify-python" +}