app-admin/oet: Version bump to 0.0.0.3;

Changes in oet-0.0.0.3:
Renamed options -e|-E to -a|-A.
Added -e <script> option, to specify a user defined script.
Added directory structure to manpage.

Signed-off-by: Thomas Scholz <thomas.scholz@protonmail.com>
This commit is contained in:
Thomas Scholz
2023-02-28 09:53:10 +01:00
parent 9316dfc753
commit a8d53d354b
2 changed files with 35 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST oet-0.0.0.2.tar.gz 18284 BLAKE2B 94db54554b62a2cf598d7c970de9fe4540635f9a877025dea89c2b4580ae9a2dbe784fb27e8cf57a9a5998acad0229356c30167777a6ac56b8b8b41ccc5bc3e2 SHA512 82e4a0b26d988b7c3286495d8d5747225aaecc7516979fb70723d3351858750eb32c09663f0238efa638732ce5c21be92b503a15f85b6d6ad6771dab4bdf0836
DIST oet-0.0.0.3.tar.gz 18750 BLAKE2B 42931382d172b0fdbc3754898971975dc9a62f36e35a1d1f36d99c906d242072014280ef5c51381b8bb15dfe17ad2f882e213c9061f1fe6e82acaf93753e3316 SHA512 cb986b736cc2514808c9242f359c507360c647d64e3450d8c0f992b17d3648ee5385ae93960c21124c0cc77f4c02a0c6d2ad14f4b2f4422d677f41ff8f7292dd

View File

@@ -0,0 +1,34 @@
# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
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="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-3"
SLOT="0"
src_install() {
dosbin src/oet
dodir /usr/share/oet
insinto /usr/share/oet
doins src/oet_auto_emerge_update.source
doins src/oet_interactive.source
doman resources/oet.1
}
src_compile() {
true
}