Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] kcov: update to 41.
@ 2024-01-27 23:07 oreo639
  2024-01-28  0:13 ` [PR PATCH] [Merged]: " oreo639
  0 siblings, 1 reply; 2+ messages in thread
From: oreo639 @ 2024-01-27 23:07 UTC (permalink / raw)
  To: ml

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

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

https://github.com/oreo639/void-packages kcov
https://github.com/void-linux/void-packages/pull/48397

kcov: update to 41.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-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/48397.patch is attached

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

From 8cf0afc0e79695a88a9e018114dd8280fefaf2a3 Mon Sep 17 00:00:00 2001
From: oreo639 <oreo6391@gmail.com>
Date: Sat, 27 Jan 2024 15:01:36 -0800
Subject: [PATCH] kcov: update to 41.

---
 .../0001-Fix-build-with-binutils-2.39.patch   | 97 -------------------
 srcpkgs/kcov/template                         |  5 +-
 2 files changed, 3 insertions(+), 99 deletions(-)
 delete mode 100644 srcpkgs/kcov/patches/0001-Fix-build-with-binutils-2.39.patch

diff --git a/srcpkgs/kcov/patches/0001-Fix-build-with-binutils-2.39.patch b/srcpkgs/kcov/patches/0001-Fix-build-with-binutils-2.39.patch
deleted file mode 100644
index 5e666aacefc93..0000000000000
--- a/srcpkgs/kcov/patches/0001-Fix-build-with-binutils-2.39.patch
+++ /dev/null
@@ -1,97 +0,0 @@
-From fd1a4fd2f02cee49afd74e427e38c61b89154582 Mon Sep 17 00:00:00 2001
-From: oreo639 <oreo6391@gmail.com>
-Date: Wed, 14 Sep 2022 16:02:17 -0700
-Subject: [PATCH] Fix build with binutils 2.39
-
----
- src/CMakeLists.txt              | 20 +++++++++++++++++++-
- src/parsers/bfd-disassembler.cc | 23 +++++++++++++++++++++++
- 2 files changed, 42 insertions(+), 1 deletion(-)
-
-diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
-index 3b751852..fc396827 100644
---- a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -94,6 +94,7 @@ set (DISASSEMBLER_SRCS
- )
- 
- set (HAS_LIBBFD "0")
-+set (HAS_LIBBFD_DISASM_STYLED "0")
- 
- if (CMAKE_TARGET_ARCHITECTURES STREQUAL "i386" OR CMAKE_TARGET_ARCHITECTURES STREQUAL "x86_64")
- 	if (LIBBFD_FOUND)
-@@ -106,6 +107,23 @@ if (CMAKE_TARGET_ARCHITECTURES STREQUAL "i386" OR CMAKE_TARGET_ARCHITECTURES STR
- 			${LIBBFD_BFD_LIBRARY}
- 			${LIBBFD_IBERTY_LIBRARY}
- 		)
-+		include(CheckCSourceCompiles)
-+		set(CMAKE_REQUIRED_LIBRARIES ${DISASSEMBLER_LIBRARIES})
-+		check_c_source_compiles("
-+		#define PACKAGE
-+		#define PACKAGE_VERSION
-+		#include <stdio.h>
-+		#include <dis-asm.h>
-+
-+		int main(int argc, char **argv){
-+			struct disassemble_info info;
-+			init_disassemble_info(&info, stdout, NULL, NULL);
-+			return 0;
-+		}
-+		" TEST_LIBBFD_DISASM_STYLED)
-+		if (TEST_LIBBFD_DISASM_STYLED)
-+			set (HAS_LIBBFD_DISASM_STYLED "1")
-+		endif (TEST_LIBBFD_DISASM_STYLED)
- 	endif (LIBBFD_FOUND)
- endif (CMAKE_TARGET_ARCHITECTURES STREQUAL "i386" OR CMAKE_TARGET_ARCHITECTURES STREQUAL "x86_64")
- 
-@@ -284,7 +302,7 @@ set (KCOV_SYSTEM_MODE_SRCS
- 
- set (KCOV_LIBRARY_PREFIX "/tmp")
- 
--set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -g -Wall -D_GLIBCXX_USE_NANOSLEEP -DKCOV_LIBRARY_PREFIX=${KCOV_LIBRARY_PREFIX} -DKCOV_HAS_LIBBFD=${HAS_LIBBFD}")
-+set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -g -Wall -D_GLIBCXX_USE_NANOSLEEP -DKCOV_LIBRARY_PREFIX=${KCOV_LIBRARY_PREFIX} -DKCOV_HAS_LIBBFD=${HAS_LIBBFD} -DKCOV_LIBFD_DISASM_STYLED=${HAS_LIBBFD_DISASM_STYLED}")
- 
- include_directories(
- 	include/
-diff --git a/src/parsers/bfd-disassembler.cc b/src/parsers/bfd-disassembler.cc
-index 43653ee0..28815961 100644
---- a/src/parsers/bfd-disassembler.cc
-+++ b/src/parsers/bfd-disassembler.cc
-@@ -75,7 +75,11 @@ class BfdDisassembler : public IDisassembler
- 	BfdDisassembler()
- 	{
- 		memset(&m_info, 0, sizeof(m_info));
-+#if KCOV_LIBFD_DISASM_STYLED
-+		init_disassemble_info(&m_info, (void *)this, BfdDisassembler::opcodesFprintFuncStatic, BfdDisassembler::opcodesFprintStyledFuncStatic);
-+#else
- 		init_disassemble_info(&m_info, (void *)this, BfdDisassembler::opcodesFprintFuncStatic);
-+#endif
- 		m_disassembler = print_insn_i386;
- 
- 		m_info.arch = bfd_arch_i386;
-@@ -407,6 +411,25 @@ class BfdDisassembler : public IDisassembler
- 		return out;
- 	}
- 
-+#if KCOV_LIBFD_DISASM_STYLED
-+	static int opcodesFprintStyledFuncStatic(void *info, enum disassembler_style style, const char *fmt, ...)
-+	{
-+		(void)style;
-+		BfdDisassembler *pThis = (BfdDisassembler *)info;
-+		char str[64];
-+		int out;
-+
-+		va_list args;
-+		va_start (args, fmt);
-+		out = vsnprintf( str, sizeof(str) - 1, fmt, args );
-+		va_end (args);
-+
-+		pThis->opcodesFprintFunc(str);
-+
-+		return out;
-+	}
-+#endif
-+
- 	typedef std::map<uint64_t, Section *> SectionCache_t;
- 	typedef std::unordered_map<uint64_t, Instruction> InstructionAddressMap_t;
- 	typedef std::map<uint64_t, Instruction *> InstructionOrderedMap_t;
diff --git a/srcpkgs/kcov/template b/srcpkgs/kcov/template
index cb361bd65b1a0..f7b116deff531 100644
--- a/srcpkgs/kcov/template
+++ b/srcpkgs/kcov/template
@@ -1,6 +1,6 @@
 # Template file for 'kcov'
 pkgname=kcov
-version=38
+version=41
 revision=1
 build_style=cmake
 hostmakedepends="python3 pkg-config"
@@ -9,5 +9,6 @@ short_desc="Code coverage tester for compiled programs, Python and shell"
 maintainer="Felix Van der Jeugt <felix.vanderjeugt@gmail.com>"
 license="GPL-2.0-only"
 homepage="https://simonkagstrom.github.io/kcov/index.html"
+changelog="https://raw.githubusercontent.com/SimonKagstrom/kcov/master/ChangeLog"
 distfiles="https://github.com/SimonKagstrom/kcov/archive/v${version}.tar.gz"
-checksum=b37af60d81a9b1e3b140f9473bdcb7975af12040feb24cc666f9bb2bb0be68b4
+checksum=13cddde0c6c97dc78ece23f7adcad7a8f2b5ae3c84193020e7edd9bf44e5997c

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

* Re: [PR PATCH] [Merged]: kcov: update to 41.
  2024-01-27 23:07 [PR PATCH] kcov: update to 41 oreo639
@ 2024-01-28  0:13 ` oreo639
  0 siblings, 0 replies; 2+ messages in thread
From: oreo639 @ 2024-01-28  0:13 UTC (permalink / raw)
  To: ml

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

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

kcov: update to 41.
https://github.com/void-linux/void-packages/pull/48397

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-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:[~2024-01-28  0:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-27 23:07 [PR PATCH] kcov: update to 41 oreo639
2024-01-28  0:13 ` [PR PATCH] [Merged]: " oreo639

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).