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: Tue, 13 Jul 2021 15:44:35
Message-Id: 1626191065.60a991c0e74c9213bfdd17af9b41730735d0a1c4.bkohler@gentoo
1 commit: 60a991c0e74c9213bfdd17af9b41730735d0a1c4
2 Author: Ben Kohler <bkohler <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 13 15:44:14 2021 +0000
4 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 13 15:44:25 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60a991c0
7
8 net-misc/connman-notify: bump to EAPI=8
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>
12
13 .../connman-notify-0_pre20191003-r3.ebuild | 40 ++++++++++++++++++++++
14 1 file changed, 40 insertions(+)
15
16 diff --git a/net-misc/connman-notify/connman-notify-0_pre20191003-r3.ebuild b/net-misc/connman-notify/connman-notify-0_pre20191003-r3.ebuild
17 new file mode 100644
18 index 00000000000..e9555e6bfa2
19 --- /dev/null
20 +++ b/net-misc/connman-notify/connman-notify-0_pre20191003-r3.ebuild
21 @@ -0,0 +1,40 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +PYTHON_COMPAT=( python3_{7..10} )
28 +
29 +inherit desktop python-single-r1
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_USEDEP}]
48 + dev-python/pygobject:3[${PYTHON_USEDEP}]
49 + ')
50 + net-misc/connman
51 + virtual/notification-daemon"
52 +
53 +S=${WORKDIR}/${PN}-${MY_COMMIT}-${MY_COMMIT}
54 +
55 +src_install() {
56 + python_fix_shebang ${PN}
57 + dobin ${PN}
58 + dodoc README.rst
59 +
60 + make_desktop_entry ${PN} ${PN} ${PN} Network
61 +}