public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dynolog/files/
@ 2023-12-26 13:14 Alfredo Tupone
  0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2023-12-26 13:14 UTC (permalink / raw
  To: gentoo-commits

commit:     962257c916927a03e932bb0c131a7dfa80c80e02
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 26 13:13:48 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue Dec 26 13:13:48 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=962257c9

dev-libs/dynolog: remove Werror option

Closes: https://bugs.gentoo.org/920638
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-libs/dynolog/files/dynolog-0.3.1_p20230126-noWerror.patch | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/dev-libs/dynolog/files/dynolog-0.3.1_p20230126-noWerror.patch b/dev-libs/dynolog/files/dynolog-0.3.1_p20230126-noWerror.patch
index 3d334ce96d5f..fb915902b4cd 100644
--- a/dev-libs/dynolog/files/dynolog-0.3.1_p20230126-noWerror.patch
+++ b/dev-libs/dynolog/files/dynolog-0.3.1_p20230126-noWerror.patch
@@ -9,3 +9,14 @@
  endif()
  
  # SSL
+--- a/third_party/pfs/CMakeLists.txt	2023-12-26 13:43:57.634865410 +0100
++++ b/third_party/pfs/CMakeLists.txt	2023-12-26 13:44:20.865488661 +0100
+@@ -12,7 +12,7 @@
+ endif ()
+ message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
+ 
+-add_compile_options (-std=c++11 -Wall -Wextra -pedantic -Werror)
++add_compile_options (-std=c++11 -Wall -Wextra -pedantic)
+ 
+ include_directories (include)
+ 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dynolog/files/
@ 2024-03-15 20:55 Alfredo Tupone
  0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2024-03-15 20:55 UTC (permalink / raw
  To: gentoo-commits

commit:     24963aa6b5d1313e0b66de80838c66ab92a2af21
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 15 20:41:16 2024 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Fri Mar 15 20:52:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24963aa6

dev-libs/dynolog: follows upstream on musl fix

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-libs/dynolog/files/dynolog-0.3.1_p20230126-musl.patch | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/dev-libs/dynolog/files/dynolog-0.3.1_p20230126-musl.patch b/dev-libs/dynolog/files/dynolog-0.3.1_p20230126-musl.patch
index 3890e68c4585..a3617bc3a2a7 100644
--- a/dev-libs/dynolog/files/dynolog-0.3.1_p20230126-musl.patch
+++ b/dev-libs/dynolog/files/dynolog-0.3.1_p20230126-musl.patch
@@ -23,3 +23,18 @@ index 0728cdc..844076d 100644
  std::unordered_map<std::string, std::string> getMetadataForPid(
      pid_t pid,
      const std::unordered_map<std::string, std::string>& keysMap);
+--- a/hbt/src/perf_event/BPerfEventsGroup.cpp
++++ b/hbt/src/perf_event/BPerfEventsGroup.cpp
+@@ -76,10 +76,10 @@
+   cpu_cnt_ = ::libbpf_num_possible_cpus();
+ }
+ 
+-inline auto mapFdWrapperPtrIntoInode(
++inline ino_t mapFdWrapperPtrIntoInode(
+     const std::shared_ptr<FdWrapper>& fd_wrapper) {
+   if (fd_wrapper == nullptr) {
+-    return 0ull;
++    return (ino_t)0;
+   }
+   return fd_wrapper->getInode();
+ }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/dynolog/files/
@ 2024-03-28 21:36 Alfredo Tupone
  0 siblings, 0 replies; 3+ messages in thread
From: Alfredo Tupone @ 2024-03-28 21:36 UTC (permalink / raw
  To: gentoo-commits

commit:     ae84dcc926bb15e5848146f402a6ab5fbc55225e
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 28 21:34:56 2024 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Mar 28 21:35:43 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae84dcc9

dev-libs/dynolog: malformed riscv patch

Closes: https://bugs.gentoo.org/928037
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-libs/dynolog/files/dynolog-0.3.1_p20230126-riscv.patch | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-libs/dynolog/files/dynolog-0.3.1_p20230126-riscv.patch b/dev-libs/dynolog/files/dynolog-0.3.1_p20230126-riscv.patch
index 7038dbfe7b12..de661f8ddecb 100644
--- a/dev-libs/dynolog/files/dynolog-0.3.1_p20230126-riscv.patch
+++ b/dev-libs/dynolog/files/dynolog-0.3.1_p20230126-riscv.patch
@@ -1,10 +1,10 @@
 diff -Naur a/hbt/src/common/System.h b/hbt/src/common/System.h
 --- a/hbt/src/common/System.h	2024-01-21 15:26:26.940486370 +0000
 +++ b/hbt/src/common/System.h	2024-01-21 22:22:36.713134358 +0000
-@@ -445,6 +445,14 @@
-   asm volatile("mrs %0, cntvct_el0" : "=r"(tstamp));
+@@ -446,6 +446,14 @@
    cpu = getCpu();
    return tstamp;
+ }
 +#elif defined(__riscv)
 +inline TimeStamp rdtscp(CpuId& cpu) {
 +  TimeStamp tstamp;
@@ -12,7 +12,7 @@ diff -Naur a/hbt/src/common/System.h b/hbt/src/common/System.h
 +  asm volatile("rdcycle %0" : "=r"(tstamp));
 +  cpu = getCpu();
 +  return tstamp;
-+
- }
++}
  #endif
  
+ inline std::pair<TimeStamp, CpuId> rdtscp() {


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

end of thread, other threads:[~2024-03-28 21:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-28 21:36 [gentoo-commits] repo/gentoo:master commit in: dev-libs/dynolog/files/ Alfredo Tupone
  -- strict thread matches above, loose matches on Subject: below --
2024-03-15 20:55 Alfredo Tupone
2023-12-26 13:14 Alfredo Tupone

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox