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 0EAA6158089 for ; Sun, 8 Oct 2023 08:20:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C8D82BC02C; Sun, 8 Oct 2023 08:20:05 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 08F8D2BC0C3 for ; Sun, 8 Oct 2023 08:20:05 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 514A4335D2E for ; Sun, 8 Oct 2023 08:20:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A436DBCA for ; Sun, 8 Oct 2023 08:20:02 +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: <1696753196.dc4a23a4d9fcbfd030b325ae42fd8309c2003dcd.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_p20160305-r1.ebuild X-VCS-Directories: net-misc/econnman/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: dc4a23a4d9fcbfd030b325ae42fd8309c2003dcd X-VCS-Branch: master Date: Sun, 8 Oct 2023 08:20:02 +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: 81319bb2-5bb2-4743-9851-61d4d4526937 X-Archives-Hash: 0fa4c69c93a34406639be2cb5ca27469 commit: dc4a23a4d9fcbfd030b325ae42fd8309c2003dcd Author: Joonas Niilola gentoo org> AuthorDate: Sun Oct 8 08:16:18 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sun Oct 8 08:19:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc4a23a4 net-misc/econnman: add python-3.11, python-3.12 compatibility Signed-off-by: Joonas Niilola gentoo.org> net-misc/econnman/econnman-1.1_p20160305-r1.ebuild | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/net-misc/econnman/econnman-1.1_p20160305-r1.ebuild b/net-misc/econnman/econnman-1.1_p20160305-r1.ebuild new file mode 100644 index 000000000000..699902201f36 --- /dev/null +++ b/net-misc/econnman/econnman-1.1_p20160305-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} ) + +inherit autotools python-single-r1 + +DESCRIPTION="ConnMan User Interface written with EFL & python" +HOMEPAGE="https://phab.enlightenment.org/w/projects/econnman/ https://www.enlightenment.org/" +SRC_URI="https://dev.gentoo.org/~juippis/distfiles/${P}.tar.xz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~riscv ~x86" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND} + dev-libs/efl[X,connman] + $(python_gen_cond_dep ' + dev-python/python-efl[${PYTHON_USEDEP}] + ')" + +src_prepare() { + default + python_fix_shebang econnman-bin.in + eautoreconf +} + +src_install() { + default + rm -r "${ED}"/var/ || die +}