From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 936BE158091 for ; Thu, 12 May 2022 06:14:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A64C2E08F6; Thu, 12 May 2022 06:13:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6D93BE08EC for ; Thu, 12 May 2022 06:13:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D570341522 for ; Thu, 12 May 2022 06:13:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64C62462 for ; Thu, 12 May 2022 06:13:56 +0000 (UTC) From: "Pascal Jäger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pascal Jäger" Message-ID: <1652335983.fb2ec3dc191be7147795e857b32b8d0511959b57.pascal.jaeger@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-emulation/waydroid/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-emulation/waydroid/Manifest app-emulation/waydroid/waydroid-1.2.1.ebuild X-VCS-Directories: app-emulation/waydroid/ X-VCS-Committer: pascal.jaeger X-VCS-Committer-Name: Pascal Jäger X-VCS-Revision: fb2ec3dc191be7147795e857b32b8d0511959b57 X-VCS-Branch: dev Date: Thu, 12 May 2022 06:13:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0dfba5bb-b51e-4afe-a6a3-e424ae997157 X-Archives-Hash: 7b79056821d5f48019dd67fa14d3d703 commit: fb2ec3dc191be7147795e857b32b8d0511959b57 Author: Pascal Jäger leimstift de> AuthorDate: Thu May 12 06:13:03 2022 +0000 Commit: Pascal Jäger leimstift de> CommitDate: Thu May 12 06:13:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fb2ec3dc app-emulation/waydroid: new package, add 1.2.1 Signed-off-by: Pascal Jäger leimstift.de> app-emulation/waydroid/Manifest | 1 + app-emulation/waydroid/waydroid-1.2.1.ebuild | 41 ++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/app-emulation/waydroid/Manifest b/app-emulation/waydroid/Manifest new file mode 100644 index 000000000..1514b8248 --- /dev/null +++ b/app-emulation/waydroid/Manifest @@ -0,0 +1 @@ +DIST waydroid-1.2.1.tar.gz 222939 BLAKE2B ce69cb5ded92653b9e3c02e89e8ddab1e34ef8d4b16d1863119346495829efe6baae4bf0171d284186e0042602bf351c3926a3a900bc884f2906c9f09b62b290 SHA512 4e4aa781b84501ccde444281ab93b6c45cf91d7cda2f04565bf43bc8cdcd529b987356278f9e369a71fbb249b3bcdbd0ea56d37d48d0fbf1bf8bf186b4383a43 diff --git a/app-emulation/waydroid/waydroid-1.2.1.ebuild b/app-emulation/waydroid/waydroid-1.2.1.ebuild new file mode 100644 index 000000000..1c9b31ce9 --- /dev/null +++ b/app-emulation/waydroid/waydroid-1.2.1.ebuild @@ -0,0 +1,41 @@ +#Relaismatrix/ Messung Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_9 ) +inherit python-single-r1 + +DESCRIPTION="A container-based approach to boot a full Android system on a regular Linux system" +HOMEPAGE="https://waydro.id" +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="" +RDEPEND=" + app-containers/lxc \ + dev-lang/python \ + dev-python/pygobject \ + dev-python/gbinder \ + net-firewall/nftables \ + net-dns/dnsmasq \ + ${PYTHON_DEPS} + " + +src_install() { + python_fix_shebang waydroid.py + mv waydroid.py waydroid || die + python_doscript waydroid + python_domodule tools + python_domodule data + insinto "/usr/share/applications" + doins "data/Waydroid.desktop" + insinto "/etc/gbinder.d" + doins "gbinder/anbox.conf" + insinto "/usr/lib/systemd/system" + doins "debian/waydroid-container.service" +}