public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Takuya Wakazono" <pastalian46@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/mission-center/
Date: Tue, 10 Sep 2024 16:10:11 +0000 (UTC)	[thread overview]
Message-ID: <1725984407.2365eed640552091a0dd16ee1f01b90f440c3021.pastalian46@gentoo> (raw)

commit:     2365eed640552091a0dd16ee1f01b90f440c3021
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Tue Sep 10 16:06:47 2024 +0000
Commit:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
CommitDate: Tue Sep 10 16:06:47 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2365eed6

sys-apps/mission-center: drop 9999

It's not maintained very well and the upstream frequently updates the
dependency requirements.

Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 sys-apps/mission-center/mission-center-9999.ebuild | 115 ---------------------
 1 file changed, 115 deletions(-)

diff --git a/sys-apps/mission-center/mission-center-9999.ebuild b/sys-apps/mission-center/mission-center-9999.ebuild
deleted file mode 100644
index 0455f5f57..000000000
--- a/sys-apps/mission-center/mission-center-9999.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..13} )
-
-PATHFINDER_COMMIT=ec56924f660e6faa83c81c6b62b3c69b9a9fa00e
-NVTOP_COMMIT=45a1796375cd617d16167869bb88e5e69c809468
-
-inherit git-r3 gnome2-utils meson python-any-r1 xdg
-
-DESCRIPTION="Monitor your CPU, Memory, Disk, Network and GPU usage."
-HOMEPAGE="https://missioncenter.io/"
-
-EGIT_REPO_URI="https://gitlab.com/mission-center-devs/mission-center.git"
-EGIT_CHECKOUT_DIR="${WORKDIR}/${PN}-v${PV}"
-SRC_URI="
-	https://github.com/Syllo/nvtop/archive/${NVTOP_COMMIT}.tar.gz -> nvtop-${NVTOP_COMMIT}.tar.gz
-"
-
-S="${WORKDIR}/${PN}-v${PV}"
-BUILD_DIR="${S}-build"
-LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD BSD-2 Boost-1.0 CC0-1.0 CeCILL-2 MIT Unicode-DFS-2016 Unlicense ZLIB"
-SLOT="0"
-IUSE="debug test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	>=dev-libs/appstream-0.16.4
-	>=dev-libs/glib-2.80:2
-	dev-libs/wayland
-	gui-libs/egl-gbm
-	>=dev-util/gdbus-codegen-2.80
-	>=gui-libs/gtk-4.14:4
-	>=gui-libs/libadwaita-1.5.0:1
-	media-libs/graphene
-	media-libs/libglvnd
-	media-libs/mesa
-	sys-apps/dbus
-	virtual/rust
-	virtual/udev
-	x11-libs/cairo
-	x11-libs/gdk-pixbuf:2
-	x11-libs/libdrm
-	>=x11-libs/pango-1.51.0
-"
-RDEPEND="
-	${DEPEND}
-	sys-apps/dmidecode
-"
-BDEPEND="
-	${PYTHON_DEPS}
-	dev-libs/gobject-introspection
-	dev-util/blueprint-compiler
-	test? (
-		dev-libs/appstream-glib
-		dev-util/desktop-file-utils
-	)
-"
-
-PATCHES=(
-	# bug 939377
-	"${FILESDIR}/${P}-skip-test.patch"
-)
-
-# rust does not use *FLAGS from make.conf, silence portage warning
-# update with proper path to binaries this crate installs, omit leading /
-QA_FLAGS_IGNORED="
-	usr/bin/missioncenter
-	usr/bin/missioncenter-gatherer
-"
-
-src_unpack() {
-	git-r3_fetch
-	git-r3_checkout
-	unpack nvtop-${NVTOP_COMMIT}.tar.gz
-	GATHERER_BUILD_DIR=$(usex debug debug release)
-	mkdir -p "${BUILD_DIR}/src/sys_info_v2/gatherer/src/${GATHERER_BUILD_DIR}/build/native" || die
-	mv nvtop-${NVTOP_COMMIT} "${BUILD_DIR}/src/sys_info_v2/gatherer/src/${GATHERER_BUILD_DIR}/build/native" || die
-}
-
-src_prepare() {
-	default
-	GATHERER_BUILD_DIR=$(usex debug debug release)
-	cd "${BUILD_DIR}/src/sys_info_v2/gatherer/src/${GATHERER_BUILD_DIR}/build/native/nvtop-${NVTOP_COMMIT}" || die
-	find "${S}/src/sys_info_v2/gatherer/3rdparty/nvtop/patches" \
-		-type f \
-		-name 'nvtop-*' \
-		-exec sh -c 'patch -p1 < {}' \; || die
-}
-
-src_configure() {
-	local emesonargs=(
-		--buildtype $(usex debug debug release)
-		--prefix=/usr
-	)
-	meson_src_configure
-}
-
-src_test() {
-	# patch the appstream-util validate command to use --nonet when validating the urls
-	sed -i "s/args: \['validate',/args: \['validate', '--nonet',/g" "${S}/data/meson.build" || die
-	meson_src_test
-}
-
-pkg_postinst() {
-	gnome2_schemas_update
-	xdg_pkg_postinst
-}
-
-pkg_postrm() {
-	gnome2_schemas_update
-	xdg_pkg_postrm
-}


             reply	other threads:[~2024-09-10 16:10 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-10 16:10 Takuya Wakazono [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-12-03 15:48 [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/mission-center/ Brett Alcox
2024-09-08 14:29 Takuya Wakazono
2024-09-08 14:29 Takuya Wakazono
2024-09-07 21:42 Blake Batson
2024-05-11  0:46 Brett Alcox
2024-02-11 14:15 Brett Alcox
2023-12-09 16:10 Brett Alcox
2023-12-08 15:15 Brett Alcox
2023-10-18 15:50 Brett Alcox
2023-10-18 13:22 Brett Alcox
2023-10-17 22:56 Brett Alcox
2023-10-17  2:43 Brett Alcox
2023-10-14 15:02 Brett Alcox
2023-10-11 12:57 Brett Alcox
2023-10-11  2:14 Brett Alcox
2023-10-05 15:15 Brett Alcox
2023-10-04 17:05 Brett Alcox

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1725984407.2365eed640552091a0dd16ee1f01b90f440c3021.pastalian46@gentoo \
    --to=pastalian46@gmail.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox