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 08A6915802F for ; Thu, 23 Feb 2023 09:25:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 070A1E07F9; Thu, 23 Feb 2023 09:24:57 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E80E3E07F9 for ; Thu, 23 Feb 2023 09:24:56 +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 37D23340CB4 for ; Thu, 23 Feb 2023 09:24:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D35C8D3 for ; Thu, 23 Feb 2023 09:24:52 +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: <1677012728.88f2c171c4df9c875fedb5c9e6cf66f8665a21bd.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-admin/oet/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-admin/oet/oet-9999.ebuild X-VCS-Directories: app-admin/oet/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 88f2c171c4df9c875fedb5c9e6cf66f8665a21bd X-VCS-Branch: master Date: Thu, 23 Feb 2023 09:24:52 +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: 8651d47e-8195-4e8c-b7af-d53b7c5219ab X-Archives-Hash: ffe7e6059cb07742d51874db331a097f commit: 88f2c171c4df9c875fedb5c9e6cf66f8665a21bd Author: Thomas Scholz protonmail com> AuthorDate: Mon Feb 20 22:19:32 2023 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Tue Feb 21 20:52:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=88f2c171 app-admin/oet: Initial commit of v9999 Signed-off-by: Thomas Scholz protonmail.com> app-admin/oet/oet-9999.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/app-admin/oet/oet-9999.ebuild b/app-admin/oet/oet-9999.ebuild new file mode 100644 index 000000000..7e5b1ead0 --- /dev/null +++ b/app-admin/oet/oet-9999.ebuild @@ -0,0 +1,36 @@ +EAPI=8 + +DESCRIPTION="Update your system into binpkgs in an overlay sandbox" +HOMEPAGE="https://codeberg.org/bcsthsc/overlay-emerge-tool" +if [[ "${PV}" == "9999" ]]; then + inherit git-r3 + EGIT_REPO_URI="https://codeberg.org/bcsthsc/overlay-emerge-tool.git" + EGIT_BRANCH="0.0.0.1" + [[ "${PV}" == "9999" ]] && EGIT_BRANCH=0.0.0.1 + [[ "${EGIT_BRANCH}" == "" ]] && die "Please set a git branch" +else + SRC_URI="https://codeberg.org/bcsthsc/overlay-emerge-tool/archive/oet-${PV}.tar.gz" + S="${WORKDIR}/oet-${PV/_rc/-rc.}" + KEYWORDS="~amd64" +fi + +LICENSE="LGPL-2" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + + +src_install() { + dosbin src/oet.sh + dodir /usr/share/oet + insinto /usr/share/oet + doins src/oet_auto_emerge_update.source + doins src/oet_interactive.source +} + +src_compile() { + true +}