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 21BD413835A for ; Mon, 28 Dec 2020 18:50:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DB81E0980; Mon, 28 Dec 2020 18:50:22 +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 15225E0980 for ; Mon, 28 Dec 2020 18:50:22 +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 DBD7F34142C for ; Mon, 28 Dec 2020 18:50:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 468E9476 for ; Mon, 28 Dec 2020 18:50:19 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1609181411.69853abfc258867e17e7e02f39d7ed1cbec201fa.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/connman-notify/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/connman-notify/connman-notify-0_pre20191003-r2.ebuild X-VCS-Directories: net-misc/connman-notify/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 69853abfc258867e17e7e02f39d7ed1cbec201fa X-VCS-Branch: master Date: Mon, 28 Dec 2020 18:50:19 +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: 406f91a9-69ce-4e91-898d-9c6cb7d3aa03 X-Archives-Hash: f926b07b8873299eed4fd09aebe9b4cb commit: 69853abfc258867e17e7e02f39d7ed1cbec201fa Author: Ben Kohler gentoo org> AuthorDate: Mon Dec 28 18:23:46 2020 +0000 Commit: Ben Kohler gentoo org> CommitDate: Mon Dec 28 18:50:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69853abf net-misc/connman-notify: EAPI=7, add python3_9 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Ben Kohler gentoo.org> .../connman-notify-0_pre20191003-r2.ebuild | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/net-misc/connman-notify/connman-notify-0_pre20191003-r2.ebuild b/net-misc/connman-notify/connman-notify-0_pre20191003-r2.ebuild new file mode 100644 index 00000000000..7111e0e57bb --- /dev/null +++ b/net-misc/connman-notify/connman-notify-0_pre20191003-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit desktop python-single-r1 vcs-snapshot + +MY_COMMIT="4f1e0a6b27ebf5d9b7508594188fe0f86c34ec52" + +DESCRIPTION="Desktop notification integration for connman" +HOMEPAGE="https://gitlab.com/wavexx/connman-notify/" +SRC_URI="https://gitlab.com/wavexx/connman-notify/repository/${MY_COMMIT}/archive.tar.bz2 -> ${P}.tar.bz2" + +EGIT_REPO_URI="https://gitlab.com/wavexx/connman-notify.git" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/dbus-python[${PYTHON_MULTI_USEDEP}] + dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}] + ') + net-misc/connman + virtual/notification-daemon" + +src_install() { + python_fix_shebang ${PN} + dobin ${PN} + dodoc README.rst + + make_desktop_entry ${PN} ${PN} ${PN} Network +}