Github messages for voidlinux
 help / color / mirror / Atom feed
From: classabbyamp <classabbyamp@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] gdb: enable multiarch by default and split
Date: Mon, 10 Jun 2024 20:31:36 +0200	[thread overview]
Message-ID: <20240610183136.CACC12702B@inbox.vuxu.org> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-50763@inbox.vuxu.org>

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

There is an updated pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages temp
https://github.com/void-linux/void-packages/pull/50763

gdb: enable multiarch by default and split
#### Testing the changes
- I tested the changes in this PR: **briefly**

split to prevent `gdb` from being massive

cc @duncaen


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

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

From 3c28e026ecf39a77e23a6ed740936eb8d76b09a5 Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Mon, 10 Jun 2024 13:02:27 -0400
Subject: [PATCH] gdb: enable multiarch by default and split

---
 srcpkgs/gdb-multiarch |  1 +
 srcpkgs/gdb/template  | 28 ++++++++++++++++++++++++++--
 2 files changed, 27 insertions(+), 2 deletions(-)
 create mode 120000 srcpkgs/gdb-multiarch

diff --git a/srcpkgs/gdb-multiarch b/srcpkgs/gdb-multiarch
new file mode 120000
index 00000000000000..f3e03e3f1a44b4
--- /dev/null
+++ b/srcpkgs/gdb-multiarch
@@ -0,0 +1 @@
+gdb
\ No newline at end of file
diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template
index ccaed58523796f..20903342e55e42 100644
--- a/srcpkgs/gdb/template
+++ b/srcpkgs/gdb/template
@@ -1,7 +1,7 @@
 # Template file for 'gdb'
 pkgname=gdb
 version=14.2
-revision=2
+revision=3
 build_style=gnu-configure
 pycompile_dirs="/usr/share/gdb/python"
 configure_args="--disable-werror --disable-nls --with-system-readline
@@ -19,8 +19,8 @@ checkdepends="dejagnu"
 short_desc="GNU Debugger"
 maintainer="Duncaen <duncaen@voidlinux.org>"
 license="GPL-3.0-or-later"
-changelog="https://sourceware.org/git/?p=binutils-gdb.git;a=blob_plain;f=gdb/NEWS;hb=HEAD"
 homepage="https://www.gnu.org/software/gdb"
+changelog="https://sourceware.org/git/?p=binutils-gdb.git;a=blob_plain;f=gdb/NEWS;hb=HEAD"
 distfiles="${GNU_SITE}/gdb/gdb-${version}.tar.xz"
 checksum=2d4dd8061d8ded12b6c63f55e45344881e8226105f4d2a9b234040efa5ce7772
 make_check=extended  # Tests take too long, not all of them pass.
@@ -48,10 +48,24 @@ build_options_default="debuginfod gdbserver python"
 vopt_conflict gdbserver static
 vopt_conflict debuginfod static
 
+if [ "$XBPS_TARGET_WORDSIZE" -eq 64 ]; then
+	build_options_default+=" multiarch"
+fi
+
+if [ "$build_option_multiarch" ]; then
+	if [ "$XBPS_TARGET_WORDSIZE" -eq 32 ]; then
+		broken="run-cris link fails: undefined reference to bpf_match_insn etc"
+	fi
+	subpackages="gdb-multiarch"
+fi
+subpackages+=" gdb-common"
+
 post_install() {
 	# resolve conflicts with binutils
 	rm -rf ${DESTDIR}/usr/{include,lib}
 	rm -rf ${DESTDIR}/usr/share/info/{bfd,ctf-spec,sframe-spec}.info*
+	# resolve conflict with cross-arm-non-eabi-gdb
+	rm -rf ${DESTDIR}/usr/share/doc/{arm,erc32,frv,or1k,ppc,rx}
 }
 
 gdb-common_package() {
@@ -60,3 +74,13 @@ gdb-common_package() {
 		vmove usr/share
 	}
 }
+
+gdb-multiarch_package() {
+	short_desc+=" - all architectures"
+	depends="${sourcepkg}>=${version}_${revision}"
+	pkg_install() {
+		vmove "usr/bin/run-*"
+		vmove usr/bin/sis
+		vmove usr/share/gdb/dtb
+	}
+}

  parent reply	other threads:[~2024-06-10 18:31 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-10 17:05 [PR PATCH] " classabbyamp
2024-06-10 17:12 ` [PR REVIEW] " Duncaen
2024-06-10 17:12 ` Duncaen
2024-06-10 18:14 ` [PR PATCH] [Updated] " classabbyamp
2024-06-10 18:31 ` classabbyamp [this message]
2024-06-10 18:33 ` shaohme
2024-06-11 10:44 ` classabbyamp
2024-06-11 10:44 ` classabbyamp
2024-06-12 18:01 ` shaohme
2024-06-12 20:41 ` classabbyamp
2024-06-14  3:45 ` [PR PATCH] [Merged]: " classabbyamp

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240610183136.CACC12702B@inbox.vuxu.org \
    --to=classabbyamp@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).