dev-debug/uscope: new package, add 9999

Signed-off-by: Eric Joldasov <bratishkaerik@landless-city.net>
This commit is contained in:
Eric Joldasov 2025-02-01 00:54:40 +05:00
parent 1879435c4a
commit 48b14a73ba
No known key found for this signature in database
GPG Key ID: 5C9C69060686B588
2 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>bratishkaerik@landless-city.net</email>
<name>Eric Joldasov</name>
</maintainer>
<longdescription lang="en">
uscope (pronounced "microscope") is a new graphical debugger for Linux.
Its goal is to enable you to understand what your system is
actually doing as quickly and effectively as possible.
All debugging-related code is written from scratch, i.e.
parsing ELF/DWARF, handling control of the subordinate process
(launch, kill, step, continue, etc.), reading data from the
subordinate's memory/registers and displaying it in a user-friendly
manner, stack unwinding, etc.
</longdescription>
<upstream>
<remote-id type="github">jcalabro/uscope</remote-id>
<bugs-to>https://github.com/jcalabro/uscope/issues</bugs-to>
<doc lang="en">https://calabro.io/uscope</doc>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
EGIT_REPO_URI="https://github.com/jcalabro/uscope"
ZIG_SLOT="9999"
inherit git-r3 zig
DESCRIPTION="Native code graphical debugger and introspection toolchain"
HOMEPAGE="https://calabro.io/uscope https://github.com/jcalabro/uscope"
LICENSE="MIT"
SLOT="0"
DOCS=( "README.md" )
# Workaround failures for out-of-source build, fix in progress
BUILD_DIR="${S}"
src_unpack() {
git-r3_src_unpack
zig_live_fetch
}
src_configure() {
local my_zbs_args=(
-Dci=false
)
zig_src_configure
}