diff options
author | Joonas Niilola <juippis@gentoo.org> | 2022-02-02 18:38:08 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-02-02 18:39:07 +0200 |
commit | 6792729024efc542847b584a7bbcadb2c7aaac9f (patch) | |
tree | 411ee4f6da0ec95960588f6a82e1602d6d9c3191 /net-misc/econnman/econnman-1.1_p20160305.ebuild | |
parent | media-libs/gstreamer-editing-services: Python 3.10 compatibility (diff) | |
download | gentoo-6792729024efc542847b584a7bbcadb2c7aaac9f.tar.gz gentoo-6792729024efc542847b584a7bbcadb2c7aaac9f.tar.bz2 gentoo-6792729024efc542847b584a7bbcadb2c7aaac9f.zip |
net-misc/econnman: add 1.1_p20160305
- grab upstream commits since last release into a snapshot release.
Bug: https://bugs.gentoo.org/818241
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-misc/econnman/econnman-1.1_p20160305.ebuild')
-rw-r--r-- | net-misc/econnman/econnman-1.1_p20160305.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net-misc/econnman/econnman-1.1_p20160305.ebuild b/net-misc/econnman/econnman-1.1_p20160305.ebuild new file mode 100644 index 000000000000..4f5303c9c3ab --- /dev/null +++ b/net-misc/econnman/econnman-1.1_p20160305.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +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 +} |