Add debuginfo patch to produce good debuginfo again
This commit is contained in:
parent
2d82b286c5
commit
7995f539ab
11
ocaml-dune-debuginfo.patch
Normal file
11
ocaml-dune-debuginfo.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- dune-3.7.0/src/dune_engine/dune_project.ml.orig 2023-02-17 07:44:16.000000000 -0700
|
||||||
|
+++ dune-3.7.0/src/dune_engine/dune_project.ml 2023-03-21 10:01:16.334828478 -0600
|
||||||
|
@@ -457,7 +457,7 @@ let implicit_transitive_deps_default ~la
|
||||||
|
let wrapped_executables_default ~(lang : Lang.Instance.t) =
|
||||||
|
lang.version >= (2, 0)
|
||||||
|
|
||||||
|
-let map_workspace_root_default ~(lang : Lang.Instance.t) = lang.version >= (3, 0)
|
||||||
|
+let map_workspace_root_default ~(lang : Lang.Instance.t) = false
|
||||||
|
|
||||||
|
let executables_implicit_empty_intf_default ~(lang : Lang.Instance.t) =
|
||||||
|
lang.version >= (3, 0)
|
@ -31,6 +31,9 @@ URL: https://dune.build
|
|||||||
Source0: https://github.com/ocaml/dune/archive/%{version}/dune-%{version}.tar.gz
|
Source0: https://github.com/ocaml/dune/archive/%{version}/dune-%{version}.tar.gz
|
||||||
# When building without lwt, remove libraries that need it
|
# When building without lwt, remove libraries that need it
|
||||||
Patch0: %{name}-no-lwt.patch
|
Patch0: %{name}-no-lwt.patch
|
||||||
|
# Temporary workaround for broken debuginfo (rhbz#2168932)
|
||||||
|
# See https://github.com/ocaml/dune/issues/6929
|
||||||
|
Patch1: %{name}-debuginfo.patch
|
||||||
|
|
||||||
BuildRequires: emacs-nox
|
BuildRequires: emacs-nox
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
@ -426,9 +429,10 @@ developing applications that use ocaml-xdg.
|
|||||||
%prep
|
%prep
|
||||||
%autosetup -N -n dune-%{version}
|
%autosetup -N -n dune-%{version}
|
||||||
%if %{without lwt}
|
%if %{without lwt}
|
||||||
%patch0 -p1
|
%patch 0 -p1
|
||||||
rm -fr otherlibs/dune-rpc-lwt dune-rpc-lwt.opam
|
rm -fr otherlibs/dune-rpc-lwt dune-rpc-lwt.opam
|
||||||
%endif
|
%endif
|
||||||
|
%autopatch -m1 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
./configure \
|
./configure \
|
||||||
@ -541,9 +545,10 @@ cd -
|
|||||||
%files -n ocaml-xdg-devel -f .ofiles-xdg-devel
|
%files -n ocaml-xdg-devel -f .ofiles-xdg-devel
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Sat Feb 18 2023 Jerry James <loganjerry@gmail.com> - 3.7.0-1
|
* Tue Mar 21 2023 Jerry James <loganjerry@gmail.com> - 3.7.0-1
|
||||||
- Version 3.7.0
|
- Version 3.7.0
|
||||||
- The fiber subpackage has been removed
|
- The fiber subpackage has been removed
|
||||||
|
- Add debuginfo patch to produce good debuginfo again
|
||||||
|
|
||||||
* Tue Jan 24 2023 Richard W.M. Jones <rjones@redhat.com> - 3.6.1-3
|
* Tue Jan 24 2023 Richard W.M. Jones <rjones@redhat.com> - 3.6.1-3
|
||||||
- Rebuild OCaml packages for F38
|
- Rebuild OCaml packages for F38
|
||||||
|
Loading…
Reference in New Issue
Block a user