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 0D3BB158020 for ; Mon, 19 Dec 2022 10:57:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8415E0B29; Mon, 19 Dec 2022 10:57:01 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B393DE0B33 for ; Mon, 19 Dec 2022 10:57:01 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D44DD340948 for ; Mon, 19 Dec 2022 10:57:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66AD27FA for ; Mon, 19 Dec 2022 10:56:57 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1671445432.45e3f0d43aca5d6fd08e4a0059c51af1a906e2f8.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-emulation/waydroid/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-emulation/waydroid/waydroid-1.3.4-r1.ebuild app-emulation/waydroid/waydroid-1.3.4-r2.ebuild X-VCS-Directories: app-emulation/waydroid/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 45e3f0d43aca5d6fd08e4a0059c51af1a906e2f8 X-VCS-Branch: master Date: Mon, 19 Dec 2022 10:56:57 +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: a40be148-6d8a-42c7-8f38-1275acf4fb2a X-Archives-Hash: f3c62954989f6947ef99680500ee9990 commit: 45e3f0d43aca5d6fd08e4a0059c51af1a906e2f8 Author: Denis Reva gmail com> AuthorDate: Mon Dec 19 10:23:36 2022 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Mon Dec 19 10:23:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=45e3f0d4 app-emulation/waydroid: Small changes: Fix systemd dep, clarify dependencies Signed-off-by: Denis Reva gmail.com> .../{waydroid-1.3.4-r1.ebuild => waydroid-1.3.4-r2.ebuild} | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/app-emulation/waydroid/waydroid-1.3.4-r1.ebuild b/app-emulation/waydroid/waydroid-1.3.4-r2.ebuild similarity index 82% rename from app-emulation/waydroid/waydroid-1.3.4-r1.ebuild rename to app-emulation/waydroid/waydroid-1.3.4-r2.ebuild index f2cc64a06..dfecb4019 100644 --- a/app-emulation/waydroid/waydroid-1.3.4-r1.ebuild +++ b/app-emulation/waydroid/waydroid-1.3.4-r2.ebuild @@ -12,20 +12,22 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" REQUIRED_USE="${PYTHON_REQUIRED_USE}" IUSE="systemd" -DEPEND="|| ( virtual/linux-sources virtual/dist-kernel ) - sys-kernel/linux-headers" +DEPEND="|| ( virtual/linux-sources virtual/dist-kernel )" RDEPEND=" + systemd? ( sys-apps/systemd ) app-containers/lxc[systemd?] $(python_gen_cond_dep ' dev-python/pygobject[${PYTHON_USEDEP}] - dev-python/gbinder[${PYTHON_USEDEP}] + >=dev-python/gbinder-1.1.1[${PYTHON_USEDEP}] + >=dev-libs/gbinder-1.1.21 ') net-firewall/nftables[modern-kernel] - net-dns/dnsmasq \ + net-dns/dnsmasq + >=dev-libs/libglibutil-1.0.67 ${PYTHON_DEPS} " @@ -37,6 +39,7 @@ CONFIG_CHECK=" ERROR_ANDROID_BINDERFS="CONFIG_ANDROID_BINDERFS: need for creating Android-specific binder IPC channels" ERROR_ANDROID_BINDER_IPC="CONFIG_ANDROID_BINDER_IPC: need for creating Android-specific binder IPC channels" 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 emake install DESTDIR="${D}" USE_NFTABLES=1 USE_SYSTEMD=$(usex systemd 1 0)