108 lines
3.6 KiB
RPMSpec
108 lines
3.6 KiB
RPMSpec
# Run tests in check section
|
|
%bcond_without check
|
|
|
|
%ifarch ppc64le
|
|
%global exp "-tags=exp.linuxppc64le"
|
|
%endif
|
|
|
|
|
|
# https://github.com/go-delve/delve
|
|
%global goipath github.com/go-delve/delve
|
|
Version: 1.26.1
|
|
|
|
%global common_description %{expand:
|
|
Delve is a debugger for the Go programming language. The goal of the project
|
|
is to provide a simple, full featured debugging tool for Go. Delve should be
|
|
easy to invoke and easy to use. Chances are if you're using a debugger, things
|
|
aren't going your way. With that in mind, Delve should stay out of your way as
|
|
much as possible.}
|
|
|
|
# Currently Delve only supports x86_64, aarch64, and ppc64le
|
|
%global golang_arches x86_64 aarch64 ppc64le
|
|
|
|
%gometa
|
|
|
|
Name: delve
|
|
Release: %autorelease
|
|
Summary: A debugger for the Go programming language
|
|
# Detected licences
|
|
# - Expat License at 'LICENSE'
|
|
# It is a SPDX license already
|
|
License: MIT
|
|
URL: %{gourl}
|
|
Source0: %{gosource}
|
|
|
|
BuildRequires: lsof
|
|
BuildRequires: git
|
|
|
|
# Bundled/Vendored provides generated by bundled-deps.sh based on the in tree module data
|
|
# - in version filed substituted with . per versioning guidelines
|
|
Provides: bundled(golang(github.com/cilium/ebpf)) = 0.11.0
|
|
Provides: bundled(golang(github.com/cosiner/argv)) = 0.1.0
|
|
Provides: bundled(golang(github.com/cpuguy83/go.md2man/v2)) = 2.0.6
|
|
Provides: bundled(golang(github.com/creack/pty)) = 1.1.20
|
|
Provides: bundled(golang(github.com/derekparker/trie/v3)) = 3.2.0
|
|
Provides: bundled(golang(github.com/go.delve/liner)) = 1.2.3.0.20231231155935.4726ab1d7f62
|
|
Provides: bundled(golang(github.com/google/go.dap)) = 0.12.0
|
|
Provides: bundled(golang(github.com/inconshreveable/mousetrap)) = 1.1.0
|
|
Provides: bundled(golang(github.com/mattn/go.colorable)) = 0.1.13
|
|
Provides: bundled(golang(github.com/mattn/go.isatty)) = 0.0.20
|
|
Provides: bundled(golang(github.com/mattn/go.runewidth)) = 0.0.13
|
|
Provides: bundled(golang(github.com/rivo/uniseg)) = 0.2.0
|
|
Provides: bundled(golang(github.com/russross/blackfriday/v2)) = 2.1.0
|
|
Provides: bundled(golang(github.com/spf13/cobra)) = 1.10.2
|
|
Provides: bundled(golang(github.com/spf13/pflag)) = 1.0.9
|
|
Provides: bundled(golang(golang.org/x/arch)) = 0.11.0
|
|
Provides: bundled(golang(golang.org/x/exp)) = 0.0.0.20230224173230.c95f2b4c22f2
|
|
Provides: bundled(golang(golang.org/x/sync)) = 0.8.0
|
|
Provides: bundled(golang(golang.org/x/sys)) = 0.26.0
|
|
Provides: bundled(golang(golang.org/x/telemetry)) = 0.0.0.20241106142447.58a1122356f5
|
|
Provides: bundled(golang(go.starlark.net)) = 0.0.0.20231101134539.556fd59b42f6
|
|
Provides: bundled(golang(go.yaml.in/yaml/v3)) = 3.0.4
|
|
|
|
%description
|
|
%{common_description}
|
|
|
|
%prep
|
|
echo "=== Start prep ==="
|
|
%goprep -k
|
|
# unpack vendored dependencies to GOPATH
|
|
tar c -C vendor/ . | tar x -C %{gobuilddir}/src
|
|
|
|
%build
|
|
%gobuild %{?exp} -o %{gobuilddir}/bin/dlv %{goipath}/cmd/dlv
|
|
|
|
%install
|
|
install -m 0755 -vd %{buildroot}%{_bindir}
|
|
install -m 0755 -vp %{gobuilddir}/bin/* %{buildroot}%{_bindir}/
|
|
|
|
%if %{with check}
|
|
%check
|
|
export GO111MODULE=off
|
|
export GOPATH=%{buildroot}/%{gopath}:%{gobuilddir}:%{gopath}
|
|
delvepath=%{buildroot}/%{gopath}/src/%{goipath}
|
|
mkdir -p $delvepath
|
|
mkdir -p $delvepath/pkg/dwarf/line
|
|
mkdir -p $delvepath/pkg/proc/internal
|
|
cp -r _fixtures $delvepath
|
|
cp -r pkg/dwarf $delvepath/pkg/
|
|
cp -r pkg/dwarf/line/_testdata $delvepath/pkg/dwarf/line
|
|
cp -r pkg/proc/internal/ebpf $delvepath/pkg/proc/internal/
|
|
|
|
pushd $delvepath
|
|
for d in $(go list %{?exp} ./... | grep -v cmd | grep -v scripts); do
|
|
go test %{?exp} ${d} -skip TestGuessSubstitutePath
|
|
done
|
|
rm -rf $delvepath
|
|
popd
|
|
%endif
|
|
|
|
%files
|
|
%license LICENSE vendor/modules.txt
|
|
%doc CONTRIBUTING.md CHANGELOG.md
|
|
%doc Documentation/*
|
|
%{_bindir}/dlv
|
|
|
|
%changelog
|
|
%autochangelog
|