Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/econnman/
Date: Wed, 02 Feb 2022 16:39:18
Message-Id: 1643819947.6792729024efc542847b584a7bbcadb2c7aaac9f.juippis@gentoo
1 commit: 6792729024efc542847b584a7bbcadb2c7aaac9f
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 2 16:38:08 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 2 16:39:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67927290
7
8 net-misc/econnman: add 1.1_p20160305
9
10 - grab upstream commits since last release into a snapshot release.
11
12 Bug: https://bugs.gentoo.org/818241
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 net-misc/econnman/Manifest | 1 +
16 net-misc/econnman/econnman-1.1_p20160305.ebuild | 36 +++++++++++++++++++++++++
17 2 files changed, 37 insertions(+)
18
19 diff --git a/net-misc/econnman/Manifest b/net-misc/econnman/Manifest
20 index f4811f08640d..b8298806a75e 100644
21 --- a/net-misc/econnman/Manifest
22 +++ b/net-misc/econnman/Manifest
23 @@ -1 +1,2 @@
24 DIST econnman-1.1.tar.xz 108100 BLAKE2B 85a0a38847955c5338f95ae8b1144231d4d2b05b10cc3056af798a7a49658b1e042acad2570d5d0fea181a6bacfc565ac974fd2af78a057c95939292a288c8ce SHA512 8a20d2d5387f9a2eae552178eb2c399ff0c0952c1591f63ca0865f016240ebec6608795c4a722b84c0d703434f70d97d561b95174ed9c08d3a855cd0e9d0929b
25 +DIST econnman-1.1_p20160305.tar.xz 240428 BLAKE2B 6417b30fd110416f6339b4dfad9edaff2888e9fb9562451ffb13661664c1e51d45f513a192f7850f8030caab13ebd914a138ff6cd596ed09c7210940c98ce748 SHA512 c50155a286e8a8d20deb4d5bf30ce91cc97e7323bc6dd209a16c767c3a1d6f30aab0d3b60c3a14df091d086fc10c2584d7bf56c59c95af684af3d2af7eff726c
26
27 diff --git a/net-misc/econnman/econnman-1.1_p20160305.ebuild b/net-misc/econnman/econnman-1.1_p20160305.ebuild
28 new file mode 100644
29 index 000000000000..4f5303c9c3ab
30 --- /dev/null
31 +++ b/net-misc/econnman/econnman-1.1_p20160305.ebuild
32 @@ -0,0 +1,36 @@
33 +# Copyright 1999-2022 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=8
37 +
38 +PYTHON_COMPAT=( python3_{8..10} )
39 +
40 +inherit autotools python-single-r1
41 +
42 +DESCRIPTION="ConnMan User Interface written with EFL & python"
43 +HOMEPAGE="https://phab.enlightenment.org/w/projects/econnman/ https://www.enlightenment.org/"
44 +SRC_URI="https://dev.gentoo.org/~juippis/distfiles/${P}.tar.xz"
45 +
46 +LICENSE="LGPL-3"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~riscv ~x86"
49 +
50 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
51 +
52 +DEPEND="${PYTHON_DEPS}"
53 +RDEPEND="${DEPEND}
54 + dev-libs/efl[X,connman]
55 + $(python_gen_cond_dep '
56 + dev-python/python-efl[${PYTHON_USEDEP}]
57 + ')"
58 +
59 +src_prepare() {
60 + default
61 + python_fix_shebang econnman-bin.in
62 + eautoreconf
63 +}
64 +
65 +src_install() {
66 + default
67 + rm -r "${ED}"/var/ || die
68 +}