app-admin/oet: add 0.1.11

Signed-off-by: Thomas Scholz <thomas.scholz@protonmail.com>
This commit is contained in:
Thomas Scholz 2024-06-12 21:27:26 +02:00
parent 81489b9d5d
commit 9c2335a80e
No known key found for this signature in database
GPG Key ID: 9DD0C55A4E1D1F7F
2 changed files with 40 additions and 0 deletions

View File

@ -1,2 +1,3 @@
DIST oet-0.1.10.tar.gz 13939 BLAKE2B 6f1f45fe098e5fbdcd0c4c67fd9e41b2bcef49d7783864b6ba285e8f2757ab257135bb01b537d3cd8fb8d64aef97755d03212afe0d4c93402b06ef5eb44d09a1 SHA512 f841fe767414d853ba559066cf8e158a40a184060bcd48ec6c4784a135f44f2c8431e4518e6f94e8c1723bbc7d430b9c563a9ca69196ccce103e561940d03b20
DIST oet-0.1.11.tar.gz 14051 BLAKE2B 05cb10723533a8cb9d49f790b0425a932338deafa3626b4207a5406b4982a98df4eff2ca591f639392e6333cbd330beef089131c4661522a64450afb53b75277 SHA512 fcd507119d222eef03e1585849e06f8bdd4abe22f10f4c4787518892975c19429105f5581618d18130fb6c95829e04e7ecf60c0feec57f102a78f0750aef84cc
DIST oet-0.1.9.tar.gz 13841 BLAKE2B 59c2859387ece5253380594f671ea7526d8865995ad79360c6156352cdfaadb6f2bf7b2d355bee22e78e53190c8e8fc4f9c3e610025b2b78bc986c319306a873 SHA512 f140c232b0781c6a00ad22204cf68e226b9a26ac8329c31021f3d0bad7320c1a5323acddb5b348b28dc1bd914daba94c3a30bfd17341f7e0406ccc902daf8f1d

View File

@ -0,0 +1,39 @@
# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
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="main"
[[ "${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}/overlay-emerge-tool"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="LGPL-2"
SLOT="0"
DEPEND="
sys-apps/util-linux
"
RDEPEND="
${DEPEND}
"
src_prepare() {
if [[ "${PV}" == "9999" ]]; then
git describe --tags --abbrev=0 | sed -e "s/oet-//" >.version
else
echo ${PV} >.version
fi
default
eautoreconf -fi
}