Compare commits
No commits in common. "c9-beta" and "imports/c9-beta/python-drgn-0.0.24-4.el9" have entirely different histories.
c9-beta
...
imports/c9
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/drgn-0.0.31.tar.gz
|
SOURCES/drgn-0.0.24.tar.gz
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
40a36081b89d0d3228cbc6fe2f0b25b0afe9a5ab SOURCES/drgn-0.0.31.tar.gz
|
2df91fcb5b2a5d84be1096b4a46239152e707ccb SOURCES/drgn-0.0.24.tar.gz
|
||||||
|
|||||||
@ -14,7 +14,7 @@ drgn exposes the types and variables in a program for easy, expressive
|
|||||||
scripting in Python.}
|
scripting in Python.}
|
||||||
|
|
||||||
Name: python-%{pypi_name}
|
Name: python-%{pypi_name}
|
||||||
Version: 0.0.31
|
Version: 0.0.24
|
||||||
Release: 4%{?dist}
|
Release: 4%{?dist}
|
||||||
Summary: Programmable debugger
|
Summary: Programmable debugger
|
||||||
|
|
||||||
@ -24,11 +24,10 @@ Source0: %{pypi_source}
|
|||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3dist(setuptools)
|
BuildRequires: python3dist(setuptools)
|
||||||
BuildRequires: python3dist(sphinx)
|
|
||||||
%if %{with docs}
|
%if %{with docs}
|
||||||
BuildRequires: sed
|
BuildRequires: sed
|
||||||
|
BuildRequires: python3dist(sphinx)
|
||||||
BuildRequires: python3-docs
|
BuildRequires: python3-docs
|
||||||
BuildRequires: graphviz
|
|
||||||
%endif
|
%endif
|
||||||
%if %{with tests}
|
%if %{with tests}
|
||||||
BuildRequires: python3dist(pytest)
|
BuildRequires: python3dist(pytest)
|
||||||
@ -37,7 +36,6 @@ BuildRequires: gcc-c++
|
|||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: bzip2-devel
|
BuildRequires: bzip2-devel
|
||||||
BuildRequires: elfutils-devel
|
BuildRequires: elfutils-devel
|
||||||
BuildRequires: elfutils-debuginfod-client-devel
|
|
||||||
BuildRequires: libkdumpfile-devel
|
BuildRequires: libkdumpfile-devel
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
BuildRequires: xz-devel
|
BuildRequires: xz-devel
|
||||||
@ -50,7 +48,6 @@ BuildRequires: libtool
|
|||||||
|
|
||||||
%package -n %{pypi_name}
|
%package -n %{pypi_name}
|
||||||
Summary: %{summary}
|
Summary: %{summary}
|
||||||
Recommends: elfutils-debuginfod-client
|
|
||||||
|
|
||||||
%description -n %{pypi_name} %{_description}
|
%description -n %{pypi_name} %{_description}
|
||||||
|
|
||||||
@ -83,7 +80,6 @@ fi
|
|||||||
%build
|
%build
|
||||||
# verbose build
|
# verbose build
|
||||||
V=1 %py3_build
|
V=1 %py3_build
|
||||||
PYTHONPATH=${PWD} sphinx-build-3 -b man docs man docs/man/*
|
|
||||||
|
|
||||||
%if %{with docs}
|
%if %{with docs}
|
||||||
# generate html docs
|
# generate html docs
|
||||||
@ -96,8 +92,6 @@ rm -rf html/.{doctrees,buildinfo}
|
|||||||
%py3_install
|
%py3_install
|
||||||
mkdir -p %{buildroot}%{_datadir}/drgn
|
mkdir -p %{buildroot}%{_datadir}/drgn
|
||||||
cp -PR contrib tools %{buildroot}%{_datadir}/drgn
|
cp -PR contrib tools %{buildroot}%{_datadir}/drgn
|
||||||
mkdir -p %{buildroot}%{_mandir}/man1
|
|
||||||
cp -PR man/drgn.1* %{buildroot}%{_mandir}/man1
|
|
||||||
|
|
||||||
%if %{with tests}
|
%if %{with tests}
|
||||||
%check
|
%check
|
||||||
@ -110,11 +104,9 @@ cp -PR man/drgn.1* %{buildroot}%{_mandir}/man1
|
|||||||
%doc README.rst
|
%doc README.rst
|
||||||
%{_bindir}/drgn
|
%{_bindir}/drgn
|
||||||
%{_datadir}/drgn
|
%{_datadir}/drgn
|
||||||
%{_mandir}/man1/drgn.1*
|
|
||||||
%{python3_sitearch}/_%{pypi_name}.pyi
|
%{python3_sitearch}/_%{pypi_name}.pyi
|
||||||
%{python3_sitearch}/_%{pypi_name}.cpython*.so
|
%{python3_sitearch}/_%{pypi_name}.cpython*.so
|
||||||
%{python3_sitearch}/%{pypi_name}
|
%{python3_sitearch}/%{pypi_name}
|
||||||
%{python3_sitearch}/_%{pypi_name}_util
|
|
||||||
%{python3_sitearch}/%{pypi_name}-%{version}-py%{python3_version}.egg-info
|
%{python3_sitearch}/%{pypi_name}-%{version}-py%{python3_version}.egg-info
|
||||||
|
|
||||||
%if %{with docs}
|
%if %{with docs}
|
||||||
@ -125,25 +117,6 @@ cp -PR man/drgn.1* %{buildroot}%{_mandir}/man1
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Jul 16 2025 Philipp Rudo <prudo@redhat.com> - 0.0.31-4
|
|
||||||
- Fix regression in selftest introduced in 0.0.31-3
|
|
||||||
|
|
||||||
* Thu Jul 3 2025 Philipp Rudo <prudo@redhat.com> - 0.0.31-3
|
|
||||||
- Add man page for drgn
|
|
||||||
Resolves: RHEL-100318
|
|
||||||
|
|
||||||
* Wed May 28 2025 Philipp Rudo <prudo@redhat.com> - 0.0.31-2
|
|
||||||
- Rebuild for libkdumpfile 0.5.5
|
|
||||||
Resolves: RHEL-86262
|
|
||||||
|
|
||||||
* Fri May 16 2025 Philipp Rudo <prudo@redhat.com> - 0.0.31-1
|
|
||||||
- Rebase to upstream v0.0.31
|
|
||||||
Resolves: RHEL-86264
|
|
||||||
|
|
||||||
* Mon Nov 11 2024 Philipp Rudo <prudo@redhat.com> - 0.0.29-1
|
|
||||||
- Rebase to upstream v0.0.29
|
|
||||||
Resolves: RHEL-61658
|
|
||||||
|
|
||||||
* Thu Aug 8 2024 Tao Liu <ltao@redhat.com> - 0.0.24-4
|
* Thu Aug 8 2024 Tao Liu <ltao@redhat.com> - 0.0.24-4
|
||||||
- Enable brew-build.tier0.functional test
|
- Enable brew-build.tier0.functional test
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user