summaryrefslogtreecommitdiff
path: root/app-portage
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-29 19:11:26 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-29 19:11:26 +0000
commit6ae4a3f8c51706364b85936f7b001abdc3768db5 (patch)
treeb89224014bcba19c7de30c36e297768a56030255 /app-portage
parenteed7dfb67ddc9539647a5abd95ee0aa4efc861ee (diff)
downloadbaldeagleos-repo-6ae4a3f8c51706364b85936f7b001abdc3768db5.tar.gz
baldeagleos-repo-6ae4a3f8c51706364b85936f7b001abdc3768db5.tar.xz
baldeagleos-repo-6ae4a3f8c51706364b85936f7b001abdc3768db5.zip
Adding metadata
Diffstat (limited to 'app-portage')
-rw-r--r--app-portage/carnage/Manifest1
-rw-r--r--app-portage/carnage/carnage-1.4b.ebuild48
2 files changed, 49 insertions, 0 deletions
diff --git a/app-portage/carnage/Manifest b/app-portage/carnage/Manifest
index 23a80a690511..07ece8969912 100644
--- a/app-portage/carnage/Manifest
+++ b/app-portage/carnage/Manifest
@@ -1 +1,2 @@
DIST carnage-1.4.tar.gz 150583 BLAKE2B 99b1bb5f09534af13ce2d5bbb32c8d3275bfe1dd1635c71ace87546b84798dfa0b26f49b3d1555d83f94205ccf45a0e3aa2e2f771cd67dc9206ce7982acdc805 SHA512 8a3f41270250d471467859282997284baa7be15c2846214f1928f32c13ea390d4470b015a16e6abbb7eed81d57fb52ccdeb38550a6606d814f96c831823b8cb7
+DIST carnage-1.4b.tar.gz 151315 BLAKE2B 34c35a40a2691ef8c5c13fe3c5fdd4277297abe7f2ff3ac213351557ae28d29350179338b0202664a11121ea71ab4bec453f015ba75c81bae81dc5ba26aa9847 SHA512 d2cf73cb8c3133672dd5dc1be9056b9ac1747dbe5398b7eadc00344af2a2a9bb9971109f59097cc4ca795543584320ccb4405d689066fcdc209c31002d1227bb
diff --git a/app-portage/carnage/carnage-1.4b.ebuild b/app-portage/carnage/carnage-1.4b.ebuild
new file mode 100644
index 000000000000..36f63c9331db
--- /dev/null
+++ b/app-portage/carnage/carnage-1.4b.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{10..14} )
+
+inherit distutils-r1 optfeature desktop xdg
+
+DESCRIPTION="TUI front-end for Portage and eix"
+HOMEPAGE="https://github.com/dsafxP/carnage"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/dsafxP/carnage.git"
+else
+ SRC_URI="https://github.com/dsafxP/carnage/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="
+ >=dev-python/lxml-6.0.2[${PYTHON_USEDEP}]
+ >=dev-python/msgpack-1.1.2[${PYTHON_USEDEP}]
+ >=sys-apps/portage-3.0.77[${PYTHON_USEDEP}]
+ >=dev-python/textual-8.0.0[${PYTHON_USEDEP}]
+ >=dev-python/tomlkit-0.14.0[${PYTHON_USEDEP}]
+ >=app-portage/gentoolkit-0.7.1[${PYTHON_USEDEP}]
+ >=dev-python/platformdirs-4.9.6[${PYTHON_USEDEP}]
+"
+
+src_install() {
+ distutils-r1_src_install
+
+ domenu assets/carnage.desktop
+
+ doicon -s scalable assets/carnage.svg
+
+ doman man/carnage.1
+}
+
+pkg_postinst() {
+ optfeature "package & use flag browsing" app-portage/eix
+ optfeature "desktop notifications" dev-python/desktop-notifier
+}