summaryrefslogtreecommitdiff
path: root/x11-misc/yabar
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 /x11-misc/yabar
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'x11-misc/yabar')
-rw-r--r--x11-misc/yabar/Manifest1
-rw-r--r--x11-misc/yabar/metadata.xml21
-rw-r--r--x11-misc/yabar/yabar-0.4.0_p20190316-r1.ebuild61
3 files changed, 0 insertions, 83 deletions
diff --git a/x11-misc/yabar/Manifest b/x11-misc/yabar/Manifest
deleted file mode 100644
index 64629c004de6..000000000000
--- a/x11-misc/yabar/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST yabar-0.4.0_p20190316.tar.gz 892725 BLAKE2B eb14b06327533034756885c68ab03b1ff049c987d1dac6d083c553646cd178210429d9457c1067db3211fcb39e9814a260aed201dea4e6410544b9247c5dee93 SHA512 f93250605c5b56d64c7ec6a7e7faa6120cdc06191ddafb13822875fd98b1b7a1822d9b93b62c49c302b1d4bffb14a200feed937efb0b11711de7159ce83eb7c5
diff --git a/x11-misc/yabar/metadata.xml b/x11-misc/yabar/metadata.xml
deleted file mode 100644
index 48456c4a4174..000000000000
--- a/x11-misc/yabar/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person" proxied="yes">
- <email>lillyjsm@gmail.com</email>
- <name>Jake Lilly</name>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <use>
- <flag name="playerctl">
- Uses <pkg>media-sound/playerctl</pkg> to retrieve the name of the currently
- played song
- </flag>
- </use>
- <upstream>
- <remote-id type="github">geommer/yabar</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/x11-misc/yabar/yabar-0.4.0_p20190316-r1.ebuild b/x11-misc/yabar/yabar-0.4.0_p20190316-r1.ebuild
deleted file mode 100644
index 597f14ae7a61..000000000000
--- a/x11-misc/yabar/yabar-0.4.0_p20190316-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-COMMIT="a0d3fdfed992149b741eb8fcf53f02b5d1a6142e"
-DESCRIPTION="A modern and lightweight status bar for X window managers"
-HOMEPAGE="https://github.com/geommer/yabar"
-SRC_URI="https://github.com/geommer/yabar/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="playerctl"
-
-DEPEND="
- app-text/asciidoc
- dev-libs/libconfig:=
- media-libs/alsa-lib
- net-wireless/wireless-tools
- x11-libs/cairo[X,xcb(+)]
- x11-libs/gdk-pixbuf:2
- x11-libs/libxkbcommon[X]
- x11-libs/pango
- x11-libs/xcb-util-wm
- playerctl? ( media-sound/playerctl )
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-${COMMIT}"
-
-src_prepare() {
- default
- # Respect CFLAGS and LDFLAGS
- # Declare VERSION without relying on git
- # Replace playerctl dependency option with basename
- sed -i -e "s:-flto -O2::g" -e "s:-Wall::" \
- -e "s:\$(shell git describe):0.4.0-179-ga0d3fdf:" \
- -e "s:^DEPS += playerctl-1.0:DEPS += playerctl:" \
- Makefile || die "Failed to update Makefile"
-}
-
-src_compile() {
- if use playerctl; then
- emake PLAYERCTL=1
- else
- emake
- fi
-}
-
-src_install() {
- default
- docinto examples
- dodoc examples/example.config
- docompress -x "/usr/share/doc/${PF}/examples"
-}
-
-pkg_postinst() {
- elog "An example yabar configuration file can be found in"
- elog "the following path: /usr/share/doc/${PF}/examples"
-}