Gentoo Archives: gentoo-commits

From: "Pascal Jäger" <pascal.jaeger@×××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-emulation/waydroid/
Date: Thu, 12 May 2022 06:14:02
Message-Id: 1652335983.fb2ec3dc191be7147795e857b32b8d0511959b57.pascal.jaeger@gentoo
1 commit: fb2ec3dc191be7147795e857b32b8d0511959b57
2 Author: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
3 AuthorDate: Thu May 12 06:13:03 2022 +0000
4 Commit: Pascal Jäger <pascal.jaeger <AT> leimstift <DOT> de>
5 CommitDate: Thu May 12 06:13:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fb2ec3dc
7
8 app-emulation/waydroid: new package, add 1.2.1
9
10 Signed-off-by: Pascal Jäger <pascal.jaeger <AT> leimstift.de>
11
12 app-emulation/waydroid/Manifest | 1 +
13 app-emulation/waydroid/waydroid-1.2.1.ebuild | 41 ++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/app-emulation/waydroid/Manifest b/app-emulation/waydroid/Manifest
17 new file mode 100644
18 index 000000000..1514b8248
19 --- /dev/null
20 +++ b/app-emulation/waydroid/Manifest
21 @@ -0,0 +1 @@
22 +DIST waydroid-1.2.1.tar.gz 222939 BLAKE2B ce69cb5ded92653b9e3c02e89e8ddab1e34ef8d4b16d1863119346495829efe6baae4bf0171d284186e0042602bf351c3926a3a900bc884f2906c9f09b62b290 SHA512 4e4aa781b84501ccde444281ab93b6c45cf91d7cda2f04565bf43bc8cdcd529b987356278f9e369a71fbb249b3bcdbd0ea56d37d48d0fbf1bf8bf186b4383a43
23
24 diff --git a/app-emulation/waydroid/waydroid-1.2.1.ebuild b/app-emulation/waydroid/waydroid-1.2.1.ebuild
25 new file mode 100644
26 index 000000000..1c9b31ce9
27 --- /dev/null
28 +++ b/app-emulation/waydroid/waydroid-1.2.1.ebuild
29 @@ -0,0 +1,41 @@
30 +#Relaismatrix/ Messung Copyright 2020-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_9 )
36 +inherit python-single-r1
37 +
38 +DESCRIPTION="A container-based approach to boot a full Android system on a regular Linux system"
39 +HOMEPAGE="https://waydro.id"
40 +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-3"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
46 +
47 +DEPEND=""
48 +RDEPEND="
49 + app-containers/lxc \
50 + dev-lang/python \
51 + dev-python/pygobject \
52 + dev-python/gbinder \
53 + net-firewall/nftables \
54 + net-dns/dnsmasq \
55 + ${PYTHON_DEPS}
56 + "
57 +
58 +src_install() {
59 + python_fix_shebang waydroid.py
60 + mv waydroid.py waydroid || die
61 + python_doscript waydroid
62 + python_domodule tools
63 + python_domodule data
64 + insinto "/usr/share/applications"
65 + doins "data/Waydroid.desktop"
66 + insinto "/etc/gbinder.d"
67 + doins "gbinder/anbox.conf"
68 + insinto "/usr/lib/systemd/system"
69 + doins "debian/waydroid-container.service"
70 +}