Gentoo Archives: gentoo-commits

From: Ben Kohler <bkohler@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/connman-notify/
Date: Mon, 28 Dec 2020 18:50:23
Message-Id: 1609181411.69853abfc258867e17e7e02f39d7ed1cbec201fa.bkohler@gentoo
1 commit: 69853abfc258867e17e7e02f39d7ed1cbec201fa
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 28 18:23:46 2020 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 28 18:50:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69853abf
7
8 net-misc/connman-notify: EAPI=7, add python3_9
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 .../connman-notify-0_pre20191003-r2.ebuild | 38 ++++++++++++++++++++++
14 1 file changed, 38 insertions(+)
15
16 diff --git a/net-misc/connman-notify/connman-notify-0_pre20191003-r2.ebuild b/net-misc/connman-notify/connman-notify-0_pre20191003-r2.ebuild
17 new file mode 100644
18 index 00000000000..7111e0e57bb
19 --- /dev/null
20 +++ b/net-misc/connman-notify/connman-notify-0_pre20191003-r2.ebuild
21 @@ -0,0 +1,38 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python3_{7..9} )
28 +
29 +inherit desktop python-single-r1 vcs-snapshot
30 +
31 +MY_COMMIT="4f1e0a6b27ebf5d9b7508594188fe0f86c34ec52"
32 +
33 +DESCRIPTION="Desktop notification integration for connman"
34 +HOMEPAGE="https://gitlab.com/wavexx/connman-notify/"
35 +SRC_URI="https://gitlab.com/wavexx/connman-notify/repository/${MY_COMMIT}/archive.tar.bz2 -> ${P}.tar.bz2"
36 +
37 +EGIT_REPO_URI="https://gitlab.com/wavexx/connman-notify.git"
38 +
39 +LICENSE="GPL-2"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~x86"
42 +IUSE=""
43 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
44 +
45 +RDEPEND="${PYTHON_DEPS}
46 + $(python_gen_cond_dep '
47 + dev-python/dbus-python[${PYTHON_MULTI_USEDEP}]
48 + dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
49 + ')
50 + net-misc/connman
51 + virtual/notification-daemon"
52 +
53 +src_install() {
54 + python_fix_shebang ${PN}
55 + dobin ${PN}
56 + dodoc README.rst
57 +
58 + make_desktop_entry ${PN} ${PN} ${PN} Network
59 +}