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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 98EC7158020 for ; Sun, 18 Dec 2022 15:43:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7AF76E088B; Sun, 18 Dec 2022 15:43:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 60C88E088B for ; Sun, 18 Dec 2022 15:43:16 +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 9620E340D67 for ; Sun, 18 Dec 2022 15:43:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB10B477 for ; Sun, 18 Dec 2022 15:43:13 +0000 (UTC) From: "Denis Reva" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Denis Reva" Message-ID: <1671378033.e2bdd9ebd6c38f1abb20ca0e6e4cb25f1c75ebcc.RarogCmex@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/metadata.xml app-emulation/waydroid/waydroid-1.3.4-r1.ebuild app-emulation/waydroid/waydroid-1.3.4.ebuild X-VCS-Directories: app-emulation/waydroid/ X-VCS-Committer: RarogCmex X-VCS-Committer-Name: Denis Reva X-VCS-Revision: e2bdd9ebd6c38f1abb20ca0e6e4cb25f1c75ebcc X-VCS-Branch: dev Date: Sun, 18 Dec 2022 15:43:13 +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: f0e79bd8-5c53-48e8-881f-3f8b63ef4ed3 X-Archives-Hash: 306d520096a5b837f83ad86c6c05fe42 commit: e2bdd9ebd6c38f1abb20ca0e6e4cb25f1c75ebcc Author: Denis Reva gmail com> AuthorDate: Sun Dec 18 15:40:33 2022 +0000 Commit: Denis Reva gmail com> CommitDate: Sun Dec 18 15:40:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e2bdd9eb app-emulation/waydroid: Changed waydroid installation. Added metadata.xml, I'm now maintainer Bug: https://bugs.gentoo.org/834025 Signed-off-by: Denis Reva gmail.com> app-emulation/waydroid/metadata.xml | 19 +++++++++++++++++++ ...waydroid-1.3.4.ebuild => waydroid-1.3.4-r1.ebuild} | 13 +------------ 2 files changed, 20 insertions(+), 12 deletions(-) diff --git a/app-emulation/waydroid/metadata.xml b/app-emulation/waydroid/metadata.xml new file mode 100644 index 000000000..07f40006d --- /dev/null +++ b/app-emulation/waydroid/metadata.xml @@ -0,0 +1,19 @@ + + + + + denis7774@gmail.com + Denis Reva + rarogcmex + + + Waydroid uses Linux namespaces (user, pid, uts, net, mount, ipc) to run a full Android system in a container and provide Android applications on any GNU/Linux-based platform. + + The Android system inside the container has direct access to any needed hardware. + + The Android runtime environment ships with a minimal customized Android system image based on LineageOS. The image is currently based on Android 11. + + + waydroid/waydroid + + diff --git a/app-emulation/waydroid/waydroid-1.3.4.ebuild b/app-emulation/waydroid/waydroid-1.3.4-r1.ebuild similarity index 79% rename from app-emulation/waydroid/waydroid-1.3.4.ebuild rename to app-emulation/waydroid/waydroid-1.3.4-r1.ebuild index 15651371e..f2cc64a06 100644 --- a/app-emulation/waydroid/waydroid-1.3.4.ebuild +++ b/app-emulation/waydroid/waydroid-1.3.4-r1.ebuild @@ -39,16 +39,5 @@ ERROR_ANDROID_BINDER_IPC="CONFIG_ANDROID_BINDER_IPC: need for creating Android-s ERROR_MEMFD_CREATE="CONFIG_MEMFD_CREATE: it completely replaced deprecated ISHMEM drivers, therefore it's vital for android-specific memory management" 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" - if use systemd; then - insinto "/usr/lib/systemd/system" - doins "debian/waydroid-container.service" - fi + emake install DESTDIR="${D}" USE_NFTABLES=1 USE_SYSTEMD=$(usex systemd 1 0) }