From 929b8f9d5f03aeacb5b98677cbf3d511e26764ec Mon Sep 17 00:00:00 2001 From: John Date: Wed, 27 Sep 2023 23:27:16 +0200 Subject: [PATCH] MangoHud: update to 0.7.0. --- srcpkgs/MangoHud/files/musl.patch | 21 ++-- ...lback-to-project_version-without-git.patch | 41 +++++++ ...ptr-is-relative-on-non-glibc-systems.patch | 106 ++++++++++++++++++ srcpkgs/MangoHud/template | 10 +- 4 files changed, 159 insertions(+), 19 deletions(-) create mode 100644 srcpkgs/MangoHud/patches/0001-meson-fallback-to-project_version-without-git.patch create mode 100644 srcpkgs/MangoHud/patches/0002-elfhacks-d_un.d_ptr-is-relative-on-non-glibc-systems.patch diff --git a/srcpkgs/MangoHud/files/musl.patch b/srcpkgs/MangoHud/files/musl.patch index c11ac1b414c2d..18538610707af 100644 --- a/srcpkgs/MangoHud/files/musl.patch +++ b/srcpkgs/MangoHud/files/musl.patch @@ -1,22 +1,15 @@ ---- src/meson.build 2021-06-11 22:12:53.000000000 +0200 -+++ - 2021-06-14 23:32:49.677413454 +0200 -@@ -3,16 +3,16 @@ +--- src/meson.build 2023-09-26 08:29:47.000000000 +0200 ++++ - 2023-09-28 14:06:04.988958823 +0200 +@@ -3,10 +3,10 @@ # Needs prefix for configure_file() if get_option('append_libdir_mangohud') - libdir_mangohud = join_paths(get_option('libdir'), 'mangohud') + libdir_mangohud = join_paths(get_option('prefix'), get_option('libdir'), 'mangohud') - ld_libdir_mangohud = get_option('prefix') + '/\$LIB/mangohud/' -+ ld_libdir_mangohud = join_paths(get_option('prefix') ,get_option('libdir'), 'mangohud') ++ ld_libdir_mangohud = join_paths(get_option('prefix') ,get_option('libdir'), 'mangohud') + '/' else - libdir_mangohud = get_option('libdir') + libdir_mangohud = join_paths(get_option('prefix'), get_option('libdir')) - ld_libdir_mangohud = get_option('prefix') + '/\$LIB/' -+ ld_libdir_mangohud = join_paths(get_option('prefix') ,get_option('libdir')) - endif - - # For build.sh - if get_option('ld_libdir_prefix') - # FIXME derive from libdir -- ld_libdir_mangohud = get_option('prefix') + '/lib/mangohud/\$LIB/' -+ ld_libdir_mangohud = get_option('prefix') + '/lib/mangohud/lib' ++ ld_libdir_mangohud = join_paths(get_option('prefix') ,get_option('libdir')) + '/' endif conf_data = configuration_data() diff --git a/srcpkgs/MangoHud/patches/0001-meson-fallback-to-project_version-without-git.patch b/srcpkgs/MangoHud/patches/0001-meson-fallback-to-project_version-without-git.patch new file mode 100644 index 0000000000000..d999df1bb0098 --- /dev/null +++ b/srcpkgs/MangoHud/patches/0001-meson-fallback-to-project_version-without-git.patch @@ -0,0 +1,41 @@ +From c6e7c2da873cf2ada7cac9cc8953c3afda7f4cd1 Mon Sep 17 00:00:00 2001 +From: John Zimmermann +Date: Thu, 28 Sep 2023 13:56:04 +0200 +Subject: [PATCH 1/2] meson: fallback to project_version() without git + +resolves #1131 +--- + src/meson.build | 12 +++++++++++- + 1 file changed, 11 insertions(+), 1 deletion(-) + +diff --git a/src/meson.build b/src/meson.build +index 537ce63..0729596 100644 +--- a/src/meson.build ++++ b/src/meson.build +@@ -9,12 +9,22 @@ else + ld_libdir_mangohud = get_option('prefix') + '/\$LIB/' + endif + ++git = find_program('git', required: false) ++if git.found() ++ git_describe = run_command([git, 'describe', '--tags', '--dirty=+'], check: false) ++endif ++if git.found() and git_describe.returncode() == 0 ++ describe_ver = git_describe.stdout().strip() ++else ++ describe_ver = meson.project_version() ++endif ++ + conf_data = configuration_data() + + conf_data.set('ld_libdir_mangohud_abs', libdir_mangohud) + conf_data.set('ld_libdir_mangohud', ld_libdir_mangohud) + conf_data.set('cpu_family', host_machine.cpu_family()) +-conf_data.set('version', run_command(['git', 'describe', '--tags', '--dirty=+']).stdout().strip()) ++conf_data.set('version', describe_ver) + + overlay_shaders = [ + 'overlay.frag', +-- +2.42.0 + diff --git a/srcpkgs/MangoHud/patches/0002-elfhacks-d_un.d_ptr-is-relative-on-non-glibc-systems.patch b/srcpkgs/MangoHud/patches/0002-elfhacks-d_un.d_ptr-is-relative-on-non-glibc-systems.patch new file mode 100644 index 0000000000000..76f21a4629bc0 --- /dev/null +++ b/srcpkgs/MangoHud/patches/0002-elfhacks-d_un.d_ptr-is-relative-on-non-glibc-systems.patch @@ -0,0 +1,106 @@ +From 8d289a44590d2fe614c8cb3ccb13620b306292ba Mon Sep 17 00:00:00 2001 +From: John Zimmermann +Date: Thu, 28 Sep 2023 16:42:21 +0200 +Subject: [PATCH 2/2] elfhacks: d_un.d_ptr is relative on non glibc systems + +elf(5) documents it this way, GLIBC diverts from this documentation +--- + src/elfhacks.cpp | 22 ++++++++++++++-------- + src/real_dlsym.cpp | 1 + + 2 files changed, 15 insertions(+), 8 deletions(-) + +diff --git a/src/elfhacks.cpp b/src/elfhacks.cpp +index 7cfc310..810a19d 100644 +--- a/src/elfhacks.cpp ++++ b/src/elfhacks.cpp +@@ -29,6 +29,12 @@ + * \{ + */ + ++#ifdef __GLIBC__ ++# define ABS_ADDR(obj, ptr) (ptr) ++#else ++# define ABS_ADDR(obj, ptr) ((obj->addr) + (ptr)) ++#endif ++ + struct eh_iterate_callback_args { + eh_iterate_obj_callback_func callback; + void *arg; +@@ -196,22 +202,22 @@ int eh_init_obj(eh_obj_t *obj) + if (obj->strtab) + return ENOTSUP; + +- obj->strtab = (const char *) obj->dynamic[p].d_un.d_ptr; ++ obj->strtab = (const char *) ABS_ADDR(obj, obj->dynamic[p].d_un.d_ptr); + } else if (obj->dynamic[p].d_tag == DT_HASH) { + if (obj->hash) + return ENOTSUP; + +- obj->hash = (ElfW(Word) *) obj->dynamic[p].d_un.d_ptr; ++ obj->hash = (ElfW(Word) *) ABS_ADDR(obj, obj->dynamic[p].d_un.d_ptr); + } else if (obj->dynamic[p].d_tag == DT_GNU_HASH) { + if (obj->gnu_hash) + return ENOTSUP; + +- obj->gnu_hash = (Elf32_Word *) obj->dynamic[p].d_un.d_ptr; ++ obj->gnu_hash = (Elf32_Word *) ABS_ADDR(obj, obj->dynamic[p].d_un.d_ptr); + } else if (obj->dynamic[p].d_tag == DT_SYMTAB) { + if (obj->symtab) + return ENOTSUP; + +- obj->symtab = (ElfW(Sym) *) obj->dynamic[p].d_un.d_ptr; ++ obj->symtab = (ElfW(Sym) *) ABS_ADDR(obj, obj->dynamic[p].d_un.d_ptr); + } + p++; + } +@@ -449,7 +455,7 @@ int eh_find_next_dyn(eh_obj_t *obj, ElfW_Sword tag, int i, ElfW(Dyn) **next) + + int eh_set_rela_plt(eh_obj_t *obj, int p, const char *sym, void *val) + { +- ElfW(Rela) *rela = (ElfW(Rela) *) obj->dynamic[p].d_un.d_ptr; ++ ElfW(Rela) *rela = (ElfW(Rela) *) ABS_ADDR(obj, obj->dynamic[p].d_un.d_ptr); + ElfW(Dyn) *relasize; + unsigned int i; + +@@ -470,7 +476,7 @@ int eh_set_rela_plt(eh_obj_t *obj, int p, const char *sym, void *val) + + int eh_set_rel_plt(eh_obj_t *obj, int p, const char *sym, void *val) + { +- ElfW(Rel) *rel = (ElfW(Rel) *) obj->dynamic[p].d_un.d_ptr; ++ ElfW(Rel) *rel = (ElfW(Rel) *) ABS_ADDR(obj, obj->dynamic[p].d_un.d_ptr); + ElfW(Dyn) *relsize; + unsigned int i; + +@@ -520,7 +526,7 @@ int eh_set_rel(eh_obj_t *obj, const char *sym, void *val) + + int eh_iterate_rela_plt(eh_obj_t *obj, int p, eh_iterate_rel_callback_func callback, void *arg) + { +- ElfW(Rela) *rela = (ElfW(Rela) *) obj->dynamic[p].d_un.d_ptr; ++ ElfW(Rela) *rela = (ElfW(Rela) *) ABS_ADDR(obj, obj->dynamic[p].d_un.d_ptr); + ElfW(Dyn) *relasize; + eh_rel_t rel; + eh_sym_t sym; +@@ -550,7 +556,7 @@ int eh_iterate_rela_plt(eh_obj_t *obj, int p, eh_iterate_rel_callback_func callb + + int eh_iterate_rel_plt(eh_obj_t *obj, int p, eh_iterate_rel_callback_func callback, void *arg) + { +- ElfW(Rel) *relp = (ElfW(Rel) *) obj->dynamic[p].d_un.d_ptr; ++ ElfW(Rel) *relp = (ElfW(Rel) *) ABS_ADDR(obj, obj->dynamic[p].d_un.d_ptr); + ElfW(Dyn) *relsize; + eh_rel_t rel; + eh_sym_t sym; +diff --git a/src/real_dlsym.cpp b/src/real_dlsym.cpp +index 173dc1b..3e5a77c 100644 +--- a/src/real_dlsym.cpp ++++ b/src/real_dlsym.cpp +@@ -26,6 +26,7 @@ static void get_real_functions() + #endif + "*libc.so*", + "*libc.*.so*", ++ "*ld-musl-*.so*", + }; + + for (size_t i = 0; i < sizeof(libs) / sizeof(*libs); i++) +-- +2.42.0 + diff --git a/srcpkgs/MangoHud/template b/srcpkgs/MangoHud/template index 4e2a01ca1ce90..ff3ea44ed8961 100644 --- a/srcpkgs/MangoHud/template +++ b/srcpkgs/MangoHud/template @@ -1,19 +1,19 @@ # Template file for 'MangoHud' pkgname=MangoHud -version=0.6.8 +version=0.7.0 revision=1 build_style=meson -configure_args="-Duse_system_vulkan=enabled -Dwith_xnvctrl=disabled +configure_args="-Dwith_xnvctrl=disabled -Dwith_nvml=disabled -Duse_system_spdlog=enabled" hostmakedepends="Vulkan-Headers python3-Mako glslang pkg-config" -makedepends="libglvnd-devel dbus-devel vulkan-loader Vulkan-Headers - spdlog" +makedepends="libglvnd-devel dbus-devel vulkan-loader spdlog json-c++" short_desc="Vulkan and OpenGL overlay for monitoring FPS, temperatures and more" maintainer="John " license="MIT" homepage="https://github.com/flightlessmango/MangoHud" distfiles="https://github.com/flightlessmango/MangoHud/releases/download/v${version}/MangoHud-v${version}-Source-DFSG.tar.xz" -checksum=0c4358428e6ae48d13282dec4bf4e78015b4f5e46d080a7e7588786cef63c09f +checksum=222e15d4f3e679937f7594e2e5615aaae41b97d487eb7938b96b26eeb1fbcf35 +python_version=3 post_patch() { if [ "$XBPS_TARGET_LIBC" = "musl" ]; then