commit: 79c49d5068e64f091b5181558ac5a43290b8ff23
parent bc478157b57585892014050bf5088d828b0481c1
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Sun, 24 Sep 2023 17:23:43 +0200
sys-apps/utils-std: Move from sys-apps/lanodan-utils
Diffstat:
4 files changed, 41 insertions(+), 44 deletions(-)
diff --git a/profiles/updates/3Q-2023 b/profiles/updates/3Q-2023
@@ -0,0 +1 @@
+move sys-apps/lanodan-utils sys-apps/utils-std
diff --git a/sys-apps/lanodan-utils/lanodan-utils-9999.ebuild b/sys-apps/lanodan-utils/lanodan-utils-9999.ebuild
@@ -1,44 +0,0 @@
-# Copyright 2021-2023 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit git-r3
-
-DESCRIPTION="Collection of Unix tools, comparable to coreutils"
-HOMEPAGE="https://hacktivis.me/git/utils"
-EGIT_REPO_URI="https://hacktivis.me/git/utils.git"
-LICENSE="MPL-2.0"
-SLOT="0"
-IUSE="suspend test"
-
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- test? (
- dev-libs/atf
- dev-util/kyua
- dev-util/cram
- )
-"
-
-src_configure() {
- export NO_BWRAP=1
-
- ./configure PREFIX='/opt/lanodan'
-}
-
-src_install() {
- emake install DESTDIR="${D}"
-
- if use !suspend; then
- rm "${D}/opt/lanodan/bin/memsys" || die "Failed removing memsys"
- fi
-
- # before 50baselayout
- newenvd - 40lanodan <<-EOF
- PATH="/opt/lanodan/bin:/opt/lanodan/sbin"
- ROOTPATH="/opt/lanodan/bin:/opt/lanodan/sbin"
- MANPATH="/opt/lanodan/share/man"
- EOF
-}
diff --git a/sys-apps/lanodan-utils/metadata.xml b/sys-apps/utils-std/metadata.xml
diff --git a/sys-apps/utils-std/utils-std-9999.ebuild b/sys-apps/utils-std/utils-std-9999.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2021-2023 Haelwenn (lanodan) Monnier <contact@hacktivis.me>
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit git-r3
+
+DESCRIPTION="Collection of commonly available Unix tools"
+HOMEPAGE="https://hacktivis.me/git/utils-std"
+EGIT_REPO_URI="https://hacktivis.me/git/utils-std.git"
+LICENSE="MPL-2.0"
+SLOT="0"
+IUSE="test"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ test? (
+ dev-libs/atf
+ dev-util/kyua
+ dev-util/cram
+ )
+"
+
+src_configure() {
+ export NO_BWRAP=1
+
+ ./configure PREFIX='/opt/lanodan'
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+
+ # before 50baselayout
+ newenvd - 40lanodan <<-EOF
+ PATH="/opt/lanodan/bin:/opt/lanodan/sbin"
+ ROOTPATH="/opt/lanodan/bin:/opt/lanodan/sbin"
+ MANPATH="/opt/lanodan/share/man"
+ EOF
+}