* [gentoo-commits] repo/proj/guru:master commit in: app-admin/oet/
@ 2023-02-23 9:24 Viorel Munteanu
0 siblings, 0 replies; 9+ messages in thread
From: Viorel Munteanu @ 2023-02-23 9:24 UTC (permalink / raw
To: gentoo-commits
commit: 88f2c171c4df9c875fedb5c9e6cf66f8665a21bd
Author: Thomas Scholz <thomas.scholz <AT> protonmail <DOT> com>
AuthorDate: Mon Feb 20 22:19:32 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> 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 <thomas.scholz <AT> 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
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/oet/
@ 2023-02-27 15:06 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2023-02-27 15:06 UTC (permalink / raw
To: gentoo-commits
commit: 48687931d8e3dee597736acc9409fcd550cce43c
Author: Thomas Scholz <thomas.scholz <AT> protonmail <DOT> com>
AuthorDate: Mon Feb 27 07:58:39 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Feb 27 07:58:39 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=48687931
app-admin/oet: Added pkgd version 0.0.0.2
Added a manpage; it's scarce but functional
Learned how to create pkgd ebuilds
Signed-off-by: Thomas Scholz <thomas.scholz <AT> protonmail.com>
app-admin/oet/Manifest | 1 +
app-admin/oet/{oet-9999.ebuild => oet-0.0.0.2.ebuild} | 16 +++++++---------
app-admin/oet/oet-9999.ebuild | 16 +++++++---------
3 files changed, 15 insertions(+), 18 deletions(-)
diff --git a/app-admin/oet/Manifest b/app-admin/oet/Manifest
new file mode 100644
index 000000000..941470759
--- /dev/null
+++ b/app-admin/oet/Manifest
@@ -0,0 +1 @@
+DIST oet-0.0.0.2.tar.gz 18284 BLAKE2B 94db54554b62a2cf598d7c970de9fe4540635f9a877025dea89c2b4580ae9a2dbe784fb27e8cf57a9a5998acad0229356c30167777a6ac56b8b8b41ccc5bc3e2 SHA512 82e4a0b26d988b7c3286495d8d5747225aaecc7516979fb70723d3351858750eb32c09663f0238efa638732ce5c21be92b503a15f85b6d6ad6771dab4bdf0836
diff --git a/app-admin/oet/oet-9999.ebuild b/app-admin/oet/oet-0.0.0.2.ebuild
similarity index 75%
copy from app-admin/oet/oet-9999.ebuild
copy to app-admin/oet/oet-0.0.0.2.ebuild
index 7e5b1ead0..4aed57b5d 100644
--- a/app-admin/oet/oet-9999.ebuild
+++ b/app-admin/oet/oet-0.0.0.2.ebuild
@@ -1,3 +1,6 @@
+# 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"
@@ -5,22 +8,16 @@ 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="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}/oet-${PV/_rc/-rc.}"
- KEYWORDS="~amd64"
+ S="${WORKDIR}/overlay-emerge-tool"
+ KEYWORDS="~amd64 ~x86"
fi
LICENSE="LGPL-2"
SLOT="0"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-BDEPEND=""
src_install() {
@@ -29,6 +26,7 @@ src_install() {
insinto /usr/share/oet
doins src/oet_auto_emerge_update.source
doins src/oet_interactive.source
+ doman resources/oet.1
}
src_compile() {
diff --git a/app-admin/oet/oet-9999.ebuild b/app-admin/oet/oet-9999.ebuild
index 7e5b1ead0..4aed57b5d 100644
--- a/app-admin/oet/oet-9999.ebuild
+++ b/app-admin/oet/oet-9999.ebuild
@@ -1,3 +1,6 @@
+# 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"
@@ -5,22 +8,16 @@ 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="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}/oet-${PV/_rc/-rc.}"
- KEYWORDS="~amd64"
+ S="${WORKDIR}/overlay-emerge-tool"
+ KEYWORDS="~amd64 ~x86"
fi
LICENSE="LGPL-2"
SLOT="0"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-BDEPEND=""
src_install() {
@@ -29,6 +26,7 @@ src_install() {
insinto /usr/share/oet
doins src/oet_auto_emerge_update.source
doins src/oet_interactive.source
+ doman resources/oet.1
}
src_compile() {
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/oet/
@ 2023-02-27 15:06 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2023-02-27 15:06 UTC (permalink / raw
To: gentoo-commits
commit: 590b6fbe6468f4a61dc1dc58b37e5969039d73f1
Author: Thomas Scholz <thomas.scholz <AT> protonmail <DOT> com>
AuthorDate: Mon Feb 27 11:24:26 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Feb 27 11:26:22 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=590b6fbe
app-admin/oet: Removed obsolete .sh suffix from install script
Signed-off-by: Thomas Scholz <thomas.scholz <AT> protonmail.com>
app-admin/oet/oet-0.0.0.2.ebuild | 2 +-
app-admin/oet/oet-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/oet/oet-0.0.0.2.ebuild b/app-admin/oet/oet-0.0.0.2.ebuild
index 4aed57b5d..ee1ee9e40 100644
--- a/app-admin/oet/oet-0.0.0.2.ebuild
+++ b/app-admin/oet/oet-0.0.0.2.ebuild
@@ -21,7 +21,7 @@ SLOT="0"
src_install() {
- dosbin src/oet.sh
+ dosbin src/oet
dodir /usr/share/oet
insinto /usr/share/oet
doins src/oet_auto_emerge_update.source
diff --git a/app-admin/oet/oet-9999.ebuild b/app-admin/oet/oet-9999.ebuild
index 4aed57b5d..ee1ee9e40 100644
--- a/app-admin/oet/oet-9999.ebuild
+++ b/app-admin/oet/oet-9999.ebuild
@@ -21,7 +21,7 @@ SLOT="0"
src_install() {
- dosbin src/oet.sh
+ dosbin src/oet
dodir /usr/share/oet
insinto /usr/share/oet
doins src/oet_auto_emerge_update.source
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/oet/
@ 2023-03-06 13:38 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2023-03-06 13:38 UTC (permalink / raw
To: gentoo-commits
commit: 67e4b55f11cb27ca145dd9e74749ec65dc758a9e
Author: Thomas Scholz <thomas.scholz <AT> protonmail <DOT> com>
AuthorDate: Sun Mar 5 08:15:12 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Mar 5 08:19:28 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=67e4b55f
app-admin/oet: Version 0.0.0.8; add long options
Add long options
Split script into modules
Cleanup code
Signed-off-by: Thomas Scholz <thomas.scholz <AT> protonmail.com>
app-admin/oet/Manifest | 2 +-
app-admin/oet/{oet-0.0.0.7.ebuild => oet-0.0.0.8.ebuild} | 7 +++++++
app-admin/oet/oet-9999.ebuild | 7 +++++++
3 files changed, 15 insertions(+), 1 deletion(-)
diff --git a/app-admin/oet/Manifest b/app-admin/oet/Manifest
index 2241675cb..2f0c5424c 100644
--- a/app-admin/oet/Manifest
+++ b/app-admin/oet/Manifest
@@ -1,2 +1,2 @@
DIST oet-0.0.0.5.tar.gz 10266 BLAKE2B bf85f6e64b9bf17de51ab94629e786a521d2ae6d66ae51b1fd0c1e467f75b402670b912daf5ee4fb2bdb31f0af401ede09d742c9e391d31a007b021d89e40caf SHA512 de9ad98e6def8e2086c87e8d76433ee69cffe25b060775e5bf8764414d67eebd09fa65e76af88b566043b2422375763488023d1581595a6f0f96ecb6fbf58ba5
-DIST oet-0.0.0.7.tar.gz 10932 BLAKE2B 41630a075d0b3e292b27abe4b40bf326d2730400e8632fe27ff917765781f731bb0094c60c6f05f92238354ea3cccb5eef4a4838e0e7fdcb77ff24be170486fa SHA512 b041944bc5cf8231892b12bd4b40dce5f053996b5b4d712ff77c3ea4792fa374476053ab1ce1cf790f2537a4d1038b2aa445b329142fa2e3b955611d767b452a
+DIST oet-0.0.0.8.tar.gz 12032 BLAKE2B cceb5f13bbf0fa3dc212369cb6ce927b96453dcd6c4690793e3e8bfb69bb97df4177585265ef521bd7df0bc6dc9bfce2e08e1a828ef1fabba4a28e30c88739c6 SHA512 dbed1eb1d0df64d409f0f218586bef6de3e4b0415e7d0fb09b0a9b2c3ca64ff1f1427c7033230f01e61c1cc6bec6a2038148bf3114d54b59fac76530cfef9cfb
diff --git a/app-admin/oet/oet-0.0.0.7.ebuild b/app-admin/oet/oet-0.0.0.8.ebuild
similarity index 93%
rename from app-admin/oet/oet-0.0.0.7.ebuild
rename to app-admin/oet/oet-0.0.0.8.ebuild
index f3bf844b1..7b270b200 100644
--- a/app-admin/oet/oet-0.0.0.7.ebuild
+++ b/app-admin/oet/oet-0.0.0.8.ebuild
@@ -21,6 +21,13 @@ 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
diff --git a/app-admin/oet/oet-9999.ebuild b/app-admin/oet/oet-9999.ebuild
index f3bf844b1..7b270b200 100644
--- a/app-admin/oet/oet-9999.ebuild
+++ b/app-admin/oet/oet-9999.ebuild
@@ -21,6 +21,13 @@ 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
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/oet/
@ 2023-03-06 13:38 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2023-03-06 13:38 UTC (permalink / raw
To: gentoo-commits
commit: 070d0341830deed2899045123302c7962b283908
Author: Thomas Scholz <thomas.scholz <AT> protonmail <DOT> com>
AuthorDate: Mon Mar 6 05:55:29 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Mar 6 05:56:35 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=070d0341
app-admin/oet: Added metadata.xml
Signed-off-by: Thomas Scholz <thomas.scholz <AT> protonmail.com>
app-admin/oet/metadata.xml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/app-admin/oet/metadata.xml b/app-admin/oet/metadata.xml
new file mode 100644
index 000000000..297157b86
--- /dev/null
+++ b/app-admin/oet/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+ <maintainer type="person">
+ <email>thomas.scholz@protonmail.com</email>
+ <name>Thomas Scholz</name>
+ </maintainer>
+ <longdescription>
+ The Overlay Emerge Tool creates a sandboxed envronment for doing arbitrary
+ installation processess without changing your host system. Its primary use
+ is to make system updates with emerge. The updates will be put into binary
+ packages and transfered to the host package database and can then be
+ installed on the host, when all problems are fixed.
+ </longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/oet/
@ 2023-03-08 9:08 Florian Schmaus
0 siblings, 0 replies; 9+ messages in thread
From: Florian Schmaus @ 2023-03-08 9:08 UTC (permalink / raw
To: gentoo-commits
commit: 5f8eda8b61c782b213e644f9383f4385e5c33db5
Author: Thomas Scholz <thomas.scholz <AT> protonmail <DOT> com>
AuthorDate: Wed Mar 8 05:04:48 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Mar 8 05:11:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5f8eda8b
app-admin/oet: Version 0.1.9
Updates in oet 0.1.9:
Changed version number scheme
Updated manual and readme
Updated config parser
Removed root restriction
Signed-off-by: Thomas Scholz <thomas.scholz <AT> protonmail.com>
app-admin/oet/Manifest | 3 +-
app-admin/oet/oet-0.0.0.5.ebuild | 32 ----------------------
.../oet/{oet-0.0.0.8.ebuild => oet-0.1.9.ebuild} | 0
3 files changed, 1 insertion(+), 34 deletions(-)
diff --git a/app-admin/oet/Manifest b/app-admin/oet/Manifest
index 2f0c5424c..5492d496f 100644
--- a/app-admin/oet/Manifest
+++ b/app-admin/oet/Manifest
@@ -1,2 +1 @@
-DIST oet-0.0.0.5.tar.gz 10266 BLAKE2B bf85f6e64b9bf17de51ab94629e786a521d2ae6d66ae51b1fd0c1e467f75b402670b912daf5ee4fb2bdb31f0af401ede09d742c9e391d31a007b021d89e40caf SHA512 de9ad98e6def8e2086c87e8d76433ee69cffe25b060775e5bf8764414d67eebd09fa65e76af88b566043b2422375763488023d1581595a6f0f96ecb6fbf58ba5
-DIST oet-0.0.0.8.tar.gz 12032 BLAKE2B cceb5f13bbf0fa3dc212369cb6ce927b96453dcd6c4690793e3e8bfb69bb97df4177585265ef521bd7df0bc6dc9bfce2e08e1a828ef1fabba4a28e30c88739c6 SHA512 dbed1eb1d0df64d409f0f218586bef6de3e4b0415e7d0fb09b0a9b2c3ca64ff1f1427c7033230f01e61c1cc6bec6a2038148bf3114d54b59fac76530cfef9cfb
+DIST oet-0.1.9.tar.gz 13841 BLAKE2B 59c2859387ece5253380594f671ea7526d8865995ad79360c6156352cdfaadb6f2bf7b2d355bee22e78e53190c8e8fc4f9c3e610025b2b78bc986c319306a873 SHA512 f140c232b0781c6a00ad22204cf68e226b9a26ac8329c31021f3d0bad7320c1a5323acddb5b348b28dc1bd914daba94c3a30bfd17341f7e0406ccc902daf8f1d
diff --git a/app-admin/oet/oet-0.0.0.5.ebuild b/app-admin/oet/oet-0.0.0.5.ebuild
deleted file mode 100644
index f3bf844b1..000000000
--- a/app-admin/oet/oet-0.0.0.5.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# 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"
-
-src_prepare() {
- if [[ "${PV}" == "9999" ]]; then
- git describe --tags --abbrev=0 | sed -e "s/oet-//" >.version
- else
- echo ${PV} >.version
- fi
- default
- eautoreconf -fi
-}
diff --git a/app-admin/oet/oet-0.0.0.8.ebuild b/app-admin/oet/oet-0.1.9.ebuild
similarity index 100%
rename from app-admin/oet/oet-0.0.0.8.ebuild
rename to app-admin/oet/oet-0.1.9.ebuild
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/oet/
@ 2023-03-12 9:14 Viorel Munteanu
0 siblings, 0 replies; 9+ messages in thread
From: Viorel Munteanu @ 2023-03-12 9:14 UTC (permalink / raw
To: gentoo-commits
commit: c2e94c1bea834540405600289f64ca8c3785bfa1
Author: Thomas Scholz <thomas.scholz <AT> protonmail <DOT> com>
AuthorDate: Sat Mar 11 07:54:14 2023 +0000
Commit: Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Mar 11 07:54:14 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c2e94c1b
app-admin/oet: add 0.1.10
Signed-off-by: Thomas Scholz <thomas.scholz <AT> protonmail.com>
app-admin/oet/Manifest | 1 +
app-admin/oet/oet-0.1.10.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/app-admin/oet/Manifest b/app-admin/oet/Manifest
index 5492d496f..a87bdf3b7 100644
--- a/app-admin/oet/Manifest
+++ b/app-admin/oet/Manifest
@@ -1 +1,2 @@
+DIST oet-0.1.10.tar.gz 13939 BLAKE2B 6f1f45fe098e5fbdcd0c4c67fd9e41b2bcef49d7783864b6ba285e8f2757ab257135bb01b537d3cd8fb8d64aef97755d03212afe0d4c93402b06ef5eb44d09a1 SHA512 f841fe767414d853ba559066cf8e158a40a184060bcd48ec6c4784a135f44f2c8431e4518e6f94e8c1723bbc7d430b9c563a9ca69196ccce103e561940d03b20
DIST oet-0.1.9.tar.gz 13841 BLAKE2B 59c2859387ece5253380594f671ea7526d8865995ad79360c6156352cdfaadb6f2bf7b2d355bee22e78e53190c8e8fc4f9c3e610025b2b78bc986c319306a873 SHA512 f140c232b0781c6a00ad22204cf68e226b9a26ac8329c31021f3d0bad7320c1a5323acddb5b348b28dc1bd914daba94c3a30bfd17341f7e0406ccc902daf8f1d
diff --git a/app-admin/oet/oet-0.1.10.ebuild b/app-admin/oet/oet-0.1.10.ebuild
new file mode 100644
index 000000000..7b270b200
--- /dev/null
+++ b/app-admin/oet/oet-0.1.10.ebuild
@@ -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
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/oet/
@ 2024-05-15 12:36 Julien Roy
0 siblings, 0 replies; 9+ messages in thread
From: Julien Roy @ 2024-05-15 12:36 UTC (permalink / raw
To: gentoo-commits
commit: be47ec1ec7837e6a3e0c042c3cb126f1ef2f95a4
Author: Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Wed May 15 02:22:30 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed May 15 02:23:17 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=be47ec1e
app-admin/oet: add codeberg upstream metadata
Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>
app-admin/oet/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/app-admin/oet/metadata.xml b/app-admin/oet/metadata.xml
index 297157b86e..a0b41e2363 100644
--- a/app-admin/oet/metadata.xml
+++ b/app-admin/oet/metadata.xml
@@ -12,4 +12,7 @@
packages and transfered to the host package database and can then be
installed on the host, when all problems are fixed.
</longdescription>
+ <upstream>
+ <remote-id type="codeberg">bcsthsc/overlay-emerge-tool</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: app-admin/oet/
@ 2024-06-12 21:51 Haelwenn Monnier
0 siblings, 0 replies; 9+ messages in thread
From: Haelwenn Monnier @ 2024-06-12 21:51 UTC (permalink / raw
To: gentoo-commits
commit: 9c2335a80ec66fa940aa810cae0193c9d6de5454
Author: Thomas Scholz <thomas.scholz <AT> protonmail <DOT> com>
AuthorDate: Wed Jun 12 19:27:26 2024 +0000
Commit: Haelwenn Monnier <contact <AT> hacktivis <DOT> me>
CommitDate: Wed Jun 12 19:28:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9c2335a8
app-admin/oet: add 0.1.11
Signed-off-by: Thomas Scholz <thomas.scholz <AT> protonmail.com>
app-admin/oet/Manifest | 1 +
app-admin/oet/oet-0.1.11.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/app-admin/oet/Manifest b/app-admin/oet/Manifest
index a87bdf3b7..eaf132b65 100644
--- a/app-admin/oet/Manifest
+++ b/app-admin/oet/Manifest
@@ -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
diff --git a/app-admin/oet/oet-0.1.11.ebuild b/app-admin/oet/oet-0.1.11.ebuild
new file mode 100644
index 000000000..7b270b200
--- /dev/null
+++ b/app-admin/oet/oet-0.1.11.ebuild
@@ -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
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-06-12 21:52 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-27 15:06 [gentoo-commits] repo/proj/guru:master commit in: app-admin/oet/ Florian Schmaus
-- strict thread matches above, loose matches on Subject: below --
2024-06-12 21:51 Haelwenn Monnier
2024-05-15 12:36 Julien Roy
2023-03-12 9:14 Viorel Munteanu
2023-03-08 9:08 Florian Schmaus
2023-03-06 13:38 Florian Schmaus
2023-03-06 13:38 Florian Schmaus
2023-02-27 15:06 Florian Schmaus
2023-02-23 9:24 Viorel Munteanu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox