Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] heaptrack: update to 1.4.0.
@ 2022-06-21 21:07 Piraty
  2022-06-21 21:33 ` [PR PATCH] [Closed]: " Piraty
  0 siblings, 1 reply; 2+ messages in thread
From: Piraty @ 2022-06-21 21:07 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1157 bytes --]

There is a new pull request by Piraty against master on the void-packages repository

https://github.com/Piraty/void-packages heaptrack-1.4.0
https://github.com/void-linux/void-packages/pull/37634

heaptrack: update to 1.4.0.
#### Testing the changes
- I tested the changes in this PR: **briefly**
<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/37634.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-heaptrack-1.4.0-37634.patch --]
[-- Type: text/x-diff, Size: 2791 bytes --]

From de82a8f72ce81db2a3028b8c1927268af09394bb Mon Sep 17 00:00:00 2001
From: Piraty <piraty1@inbox.ru>
Date: Tue, 21 Jun 2022 22:58:34 +0200
Subject: [PATCH] heaptrack: update to 1.4.0.

---
 srcpkgs/heaptrack/patches/musl-fixes.patch | 51 ----------------------
 srcpkgs/heaptrack/template                 |  4 +-
 2 files changed, 2 insertions(+), 53 deletions(-)
 delete mode 100644 srcpkgs/heaptrack/patches/musl-fixes.patch

diff --git a/srcpkgs/heaptrack/patches/musl-fixes.patch b/srcpkgs/heaptrack/patches/musl-fixes.patch
deleted file mode 100644
index 2cfb9a13db02..000000000000
--- a/srcpkgs/heaptrack/patches/musl-fixes.patch
+++ /dev/null
@@ -1,51 +0,0 @@
---- a/src/track/heaptrack_inject.cpp
-+++ b/src/track/heaptrack_inject.cpp
-@@ -26,6 +26,15 @@
-  * @brief Experimental support for symbol overloading after runtime injection.
-  */
- 
-+#ifndef __WORDSIZE
-+#include <limits.h>
-+#if ULONG_MAX == 0xffffffffffffffff
-+#define __WORDSIZE 64
-+#elif ULONG_MAX == 0xffffffff
-+#define __WORDSIZE 32
-+#endif
-+#endif
-+
- #ifndef ELF_R_SYM
- #if __WORDSIZE == 64
- #define ELF_R_SYM(i) ELF64_R_SYM(i)
-
---- a/src/track/libheaptrack.cpp
-+++ b/src/track/libheaptrack.cpp
-@@ -80,7 +80,7 @@ chrono::milliseconds elapsedTime()
-     return chrono::duration_cast<chrono::milliseconds>(clock::now() - startTime());
- }
- 
--__pid_t gettid()
-+pid_t gettid()
- {
- #ifdef __linux__
-     return syscall(SYS_gettid);
-
---- a/tests/manual/dlopen.cpp
-+++ b/tests/manual/dlopen.cpp
-@@ -9,6 +9,9 @@ __attribute__((weak)) extern void allocFromLib(bool leak);
- 
- int main()
- {
-+#ifndef RTLD_DEEPBIND
-+    printf("SKIP (RTLD_DEEPBIND undefined)\n");
-+#else
-     fprintf(stderr, "malloc address: %p\n", dlsym(RTLD_NEXT, "malloc"));
-     fprintf(stderr, "free address: %p\n", dlsym(RTLD_NEXT, "free"));
- 
-@@ -27,6 +30,7 @@ int main()
- 
-     fprintf(stderr, "malloc address: %p\n", dlsym(RTLD_NEXT, "malloc"));
-     fprintf(stderr, "free address: %p\n", dlsym(RTLD_NEXT, "free"));
-+#endif
- 
-     return 0;
- }
diff --git a/srcpkgs/heaptrack/template b/srcpkgs/heaptrack/template
index 8d8859611b4c..ed98a952dfdc 100644
--- a/srcpkgs/heaptrack/template
+++ b/srcpkgs/heaptrack/template
@@ -1,6 +1,6 @@
 # Template file for 'heaptrack'
 pkgname=heaptrack
-version=1.3.0
+version=1.4.0
 revision=1
 build_style=cmake
 configure_args="-DHEAPTRACK_BUILD_GUI=ON"
@@ -15,7 +15,7 @@ maintainer="Piraty <piraty1@inbox.ru>"
 license="LGPL-2.1-or-later"
 homepage="https://github.com/KDE/heaptrack"
 distfiles="https://github.com/KDE/heaptrack/archive/v${version}.tar.gz"
-checksum=794b067772f4e4219bb7b6ff1bc1b2134b1b242e748a2cc5c47626040c631956
+checksum=3aeea57e040d863a1ef95c3208ff0f163474a8bd8e10d4ece5e5f2137ab6436c
 
 #../tests/auto/tst_inject.cpp:78: SIGSEGV
 make_check=no

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PR PATCH] [Closed]: heaptrack: update to 1.4.0.
  2022-06-21 21:07 [PR PATCH] heaptrack: update to 1.4.0 Piraty
@ 2022-06-21 21:33 ` Piraty
  0 siblings, 0 replies; 2+ messages in thread
From: Piraty @ 2022-06-21 21:33 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1000 bytes --]

There's a closed pull request on the void-packages repository

heaptrack: update to 1.4.0.
https://github.com/void-linux/void-packages/pull/37634

Description:
#### Testing the changes
- I tested the changes in this PR: **briefly**
<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-06-21 21:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-21 21:07 [PR PATCH] heaptrack: update to 1.4.0 Piraty
2022-06-21 21:33 ` [PR PATCH] [Closed]: " Piraty

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).