Gentoo Archives: gentoo-commits

From: Thomas Scholz <thomas.scholz@××××××××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-admin/oet/
Date: Tue, 28 Feb 2023 08:58:29
Message-Id: 1677574478.a8d53d354b746bf33387cfebfadf6754bebe5e7a.thomas.scholz@gentoo
1 commit: a8d53d354b746bf33387cfebfadf6754bebe5e7a
2 Author: Thomas Scholz <thomas.scholz <AT> protonmail <DOT> com>
3 AuthorDate: Tue Feb 28 08:53:10 2023 +0000
4 Commit: Thomas Scholz <thomas.scholz <AT> protonmail <DOT> com>
5 CommitDate: Tue Feb 28 08:54:38 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a8d53d35
7
8 app-admin/oet: Version bump to 0.0.0.3;
9
10 Changes in oet-0.0.0.3:
11 Renamed options -e|-E to -a|-A.
12 Added -e <script> option, to specify a user defined script.
13 Added directory structure to manpage.
14
15 Signed-off-by: Thomas Scholz <thomas.scholz <AT> protonmail.com>
16
17 app-admin/oet/Manifest | 1 +
18 app-admin/oet/oet-0.0.0.3.ebuild | 34 ++++++++++++++++++++++++++++++++++
19 2 files changed, 35 insertions(+)
20
21 diff --git a/app-admin/oet/Manifest b/app-admin/oet/Manifest
22 index 941470759..51964773d 100644
23 --- a/app-admin/oet/Manifest
24 +++ b/app-admin/oet/Manifest
25 @@ -1 +1,2 @@
26 DIST oet-0.0.0.2.tar.gz 18284 BLAKE2B 94db54554b62a2cf598d7c970de9fe4540635f9a877025dea89c2b4580ae9a2dbe784fb27e8cf57a9a5998acad0229356c30167777a6ac56b8b8b41ccc5bc3e2 SHA512 82e4a0b26d988b7c3286495d8d5747225aaecc7516979fb70723d3351858750eb32c09663f0238efa638732ce5c21be92b503a15f85b6d6ad6771dab4bdf0836
27 +DIST oet-0.0.0.3.tar.gz 18750 BLAKE2B 42931382d172b0fdbc3754898971975dc9a62f36e35a1d1f36d99c906d242072014280ef5c51381b8bb15dfe17ad2f882e213c9061f1fe6e82acaf93753e3316 SHA512 cb986b736cc2514808c9242f359c507360c647d64e3450d8c0f992b17d3648ee5385ae93960c21124c0cc77f4c02a0c6d2ad14f4b2f4422d677f41ff8f7292dd
28
29 diff --git a/app-admin/oet/oet-0.0.0.3.ebuild b/app-admin/oet/oet-0.0.0.3.ebuild
30 new file mode 100644
31 index 000000000..82a7cda93
32 --- /dev/null
33 +++ b/app-admin/oet/oet-0.0.0.3.ebuild
34 @@ -0,0 +1,34 @@
35 +# Copyright 2021-2022 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=8
39 +
40 +DESCRIPTION="Update your system into binpkgs in an overlay sandbox"
41 +HOMEPAGE="https://codeberg.org/bcsthsc/overlay-emerge-tool"
42 +if [[ "${PV}" == "9999" ]]; then
43 + inherit git-r3
44 + EGIT_REPO_URI="https://codeberg.org/bcsthsc/overlay-emerge-tool.git"
45 + EGIT_BRANCH="main"
46 + [[ "${EGIT_BRANCH}" == "" ]] && die "Please set a git branch"
47 +else
48 + SRC_URI="https://codeberg.org/bcsthsc/overlay-emerge-tool/archive/oet-${PV}.tar.gz"
49 + S="${WORKDIR}/overlay-emerge-tool"
50 + KEYWORDS="~amd64 ~x86"
51 +fi
52 +
53 +LICENSE="LGPL-3"
54 +SLOT="0"
55 +
56 +
57 +src_install() {
58 + dosbin src/oet
59 + dodir /usr/share/oet
60 + insinto /usr/share/oet
61 + doins src/oet_auto_emerge_update.source
62 + doins src/oet_interactive.source
63 + doman resources/oet.1
64 +}
65 +
66 +src_compile() {
67 + true
68 +}