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 9382F1382C5 for ; Fri, 19 Feb 2021 08:07:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47000E0C07; Fri, 19 Feb 2021 08:06:59 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 3139FE0C07 for ; Fri, 19 Feb 2021 08:06:59 +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 BFCB8340ED3 for ; Fri, 19 Feb 2021 08:06:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F152C4C2 for ; Fri, 19 Feb 2021 08:06:55 +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: <1613722008.9b32beed6ee33d7e9d558c4c7d41917f00356e63.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/econnman/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/econnman/econnman-1.1-r1.ebuild net-misc/econnman/econnman-1.1-r2.ebuild X-VCS-Directories: net-misc/econnman/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 9b32beed6ee33d7e9d558c4c7d41917f00356e63 X-VCS-Branch: master Date: Fri, 19 Feb 2021 08:06:55 +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: 4b4c48e0-5c28-4853-8eff-5c510669ccf4 X-Archives-Hash: fd8e7d38e1910a843226080cd59a19d4 commit: 9b32beed6ee33d7e9d558c4c7d41917f00356e63 Author: Joonas Niilola gentoo org> AuthorDate: Fri Feb 19 08:06:22 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Fri Feb 19 08:06:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b32beed net-misc/econnman: add python-3.9 compatibility, fix .desktop files Closes: https://bugs.gentoo.org/740776 Signed-off-by: Joonas Niilola gentoo.org> net-misc/econnman/{econnman-1.1-r1.ebuild => econnman-1.1-r2.ebuild} | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/net-misc/econnman/econnman-1.1-r1.ebuild b/net-misc/econnman/econnman-1.1-r2.ebuild similarity index 76% rename from net-misc/econnman/econnman-1.1-r1.ebuild rename to net-misc/econnman/econnman-1.1-r2.ebuild index 6bf5c1d6b71..7ccef1ed188 100644 --- a/net-misc/econnman/econnman-1.1-r1.ebuild +++ b/net-misc/econnman/econnman-1.1-r2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..8} ) +PYTHON_COMPAT=( python3_{7..9} ) inherit python-single-r1 @@ -27,4 +27,7 @@ RDEPEND="${DEPEND} src_prepare() { default python_fix_shebang econnman-bin.in + sed -e \ + 's/Categories=Network;Settings;Enlightenment;/Categories=Network;Settings;Dialup;Monitor;/g' \ + -i data/desktop/econnman{.desktop,-agent.desktop} || die }