summaryrefslogtreecommitdiff
path: root/sys-apps/dool
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /sys-apps/dool
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'sys-apps/dool')
-rw-r--r--sys-apps/dool/Manifest3
-rw-r--r--sys-apps/dool/dool-1.3.1-r1.ebuild59
-rw-r--r--sys-apps/dool/dool-1.3.2-r2.ebuild70
-rw-r--r--sys-apps/dool/dool-9999.ebuild70
-rw-r--r--sys-apps/dool/metadata.xml11
5 files changed, 0 insertions, 213 deletions
diff --git a/sys-apps/dool/Manifest b/sys-apps/dool/Manifest
deleted file mode 100644
index e10f56930617..000000000000
--- a/sys-apps/dool/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST dool-1.3.1.tar.gz 150933 BLAKE2B 9aadd4e196cfb7c57fc5fd539f1211b3249b0da955aa2869c43c66b2c2a63816f5cb3e5bcffefada47269f8bd4e3f4b0ace8512f6b0de07e66e0e830ae50c0c2 SHA512 20cabbcbe09152c1ebcaed08bd182586e20d0bae297b61031f1cc52bfce3b9827cc84843e5e5a3dc0d3e790ef2d6da5eb5925d287647f80023925611eb9b04ee
-DIST dool-1.3.2-add-site-packages-dir-to-plugin-path.patch 1014 BLAKE2B 41aa9a29e4d45ac3971ab2248dc69ec5e0a0bade7925bf2b729cc0e538a9dc7afebff3f244c0753c40a22262d258f07b7d7164927851b76674b6d37843a27fc7 SHA512 05960aef68560eff30dd0957196b44cca5d3fa0aa015a2bf4f5bee4792eae5e3e3f60673d99adeb50f30d12e1c93fe1246162aa328ba9bfa9f3d00e9458c7076
-DIST dool-1.3.2.tar.gz 152959 BLAKE2B cd0cc6f82b89ba80cd7934d609aedaeb28bdcb10b332a70b7b706bf153668645b1a042c2da7f7e4c399e5119935b2db602ee651dc2ea85c900e254e27fd89d07 SHA512 792bec7c777746e68737b1c95dac02575262fe341a75da62fcd0ef1e09185779ac376389daa45e6407be06befb003b53f2ca16982302f6e24230bd0bed70ab06
diff --git a/sys-apps/dool/dool-1.3.1-r1.ebuild b/sys-apps/dool/dool-1.3.1-r1.ebuild
deleted file mode 100644
index c03839e2629c..000000000000
--- a/sys-apps/dool/dool-1.3.1-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit python-r1
-
-DESCRIPTION="Versatile replacement for vmstat, iostat and ifstat (clone of dstat)"
-HOMEPAGE="https://github.com/scottchiefbaker/dool"
-
-if [[ "${PV}" == "9999" ]]; then
- EGIT_REPO_URI="https://github.com/scottchiefbaker/dool.git"
- inherit git-r3
-else
- SRC_URI="
- https://github.com/scottchiefbaker/dool/archive/refs/tags/v${PV}.tar.gz
- -> ${P}.tar.gz
- "
- KEYWORDS="~amd64 ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86 "
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc examples"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}"
-DEPEND="${RDEPEND}"
-
-src_compile() {
- :
-}
-
-python_install() {
- python_doscript "${PN}"
- python_domodule plugins/${PN}_*.py
-}
-
-src_install() {
- python_foreach_impl python_install
-
- doman "docs/${PN}.1"
-
- einstalldocs
-
- if use examples; then
- dodoc examples/{mstat,read}.py
- fi
-
- if use doc; then
- dodoc docs/*.html
- fi
-}
-
-src_test() {
- python_foreach_impl emake test
-}
diff --git a/sys-apps/dool/dool-1.3.2-r2.ebuild b/sys-apps/dool/dool-1.3.2-r2.ebuild
deleted file mode 100644
index 631c3cbbf2d4..000000000000
--- a/sys-apps/dool/dool-1.3.2-r2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1
-
-DESCRIPTION="Versatile replacement for vmstat, iostat and ifstat (clone of dstat)"
-HOMEPAGE="https://github.com/scottchiefbaker/dool"
-
-if [[ "${PV}" == "9999" ]]; then
- EGIT_REPO_URI="https://github.com/scottchiefbaker/dool.git"
- inherit git-r3
-else
- SRC_URI="
- https://github.com/scottchiefbaker/dool/archive/refs/tags/v${PV}.tar.gz
- -> ${P}.tar.gz
- "
- KEYWORDS="~amd64 ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86 "
-fi
-
-SRC_URI+="
- https://github.com/scottchiefbaker/dool/pull/80/commits/5c538542a5bf2b16c496ab9d0a15f439f1ba1e49.patch
- -> dool-1.3.2-add-site-packages-dir-to-plugin-path.patch
-"
-
-LICENSE="GPL-2"
-SLOT="0"
-
-PATCHES=(
- "${DISTDIR}"/dool-1.3.2-add-site-packages-dir-to-plugin-path.patch
-)
-
-src_prepare() {
- # https://github.com/scottchiefbaker/dool/pull/80
- mv dool dool.py || die
-
- mkdir dool || die
- mv plugins dool || die
- mv dool.py dool || die
-
- cat <<-EOF > dool/__init__.py || die
- """Versatile replacement for vmstat, iostat and ifstat (clone of dstat)"""
- __version__ = "${PV}"
- EOF
-
- sed -i 's/dool:__main/dool.dool:__main/' pyproject.toml || die
-
- default
-}
-
-src_install() {
- distutils-r1_src_install
-
- doman "docs/${PN}.1"
-
- einstalldocs
-
- dodoc examples/{mstat,read}.py
-
- docinto html
- dodoc docs/*.html
-}
-
-src_test() {
- python_foreach_impl emake test
-}
diff --git a/sys-apps/dool/dool-9999.ebuild b/sys-apps/dool/dool-9999.ebuild
deleted file mode 100644
index 631c3cbbf2d4..000000000000
--- a/sys-apps/dool/dool-9999.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1
-
-DESCRIPTION="Versatile replacement for vmstat, iostat and ifstat (clone of dstat)"
-HOMEPAGE="https://github.com/scottchiefbaker/dool"
-
-if [[ "${PV}" == "9999" ]]; then
- EGIT_REPO_URI="https://github.com/scottchiefbaker/dool.git"
- inherit git-r3
-else
- SRC_URI="
- https://github.com/scottchiefbaker/dool/archive/refs/tags/v${PV}.tar.gz
- -> ${P}.tar.gz
- "
- KEYWORDS="~amd64 ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86 "
-fi
-
-SRC_URI+="
- https://github.com/scottchiefbaker/dool/pull/80/commits/5c538542a5bf2b16c496ab9d0a15f439f1ba1e49.patch
- -> dool-1.3.2-add-site-packages-dir-to-plugin-path.patch
-"
-
-LICENSE="GPL-2"
-SLOT="0"
-
-PATCHES=(
- "${DISTDIR}"/dool-1.3.2-add-site-packages-dir-to-plugin-path.patch
-)
-
-src_prepare() {
- # https://github.com/scottchiefbaker/dool/pull/80
- mv dool dool.py || die
-
- mkdir dool || die
- mv plugins dool || die
- mv dool.py dool || die
-
- cat <<-EOF > dool/__init__.py || die
- """Versatile replacement for vmstat, iostat and ifstat (clone of dstat)"""
- __version__ = "${PV}"
- EOF
-
- sed -i 's/dool:__main/dool.dool:__main/' pyproject.toml || die
-
- default
-}
-
-src_install() {
- distutils-r1_src_install
-
- doman "docs/${PN}.1"
-
- einstalldocs
-
- dodoc examples/{mstat,read}.py
-
- docinto html
- dodoc docs/*.html
-}
-
-src_test() {
- python_foreach_impl emake test
-}
diff --git a/sys-apps/dool/metadata.xml b/sys-apps/dool/metadata.xml
deleted file mode 100644
index 9f3302d8abfb..000000000000
--- a/sys-apps/dool/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type='person'>
- <email>flow@gentoo.org</email>
- <name>Florian Schmaus</name>
- </maintainer>
- <upstream>
- <remote-id type='github'>scottchiefbaker/dool</remote-id>
- </upstream>
-</pkgmetadata>