Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: bashdb-5.0+1.1.2
@ 2024-12-09 20:25 zackattackz
  2025-03-10  1:52 ` github-actions
  2025-03-24  2:07 ` [PR PATCH] [Closed]: " github-actions
  0 siblings, 2 replies; 3+ messages in thread
From: zackattackz @ 2024-12-09 20:25 UTC (permalink / raw)
  To: ml

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

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

https://github.com/zackattackz/void-packages bashdb
https://github.com/void-linux/void-packages/pull/53436

New package: bashdb-5.0+1.1.2
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- 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

#### Notes

- The upstream version is "5.0-1.1.2", but due to void's version naming rules not allowing for dashes, I changed the "-" to a "+"
- It is worth noting that the upstream is currently only released to support up to bash version 5.0, not including the current void-packages bash 5.2. However, bashdb still works just fine in bash 5.2, and this has not stopped other repos from packaging bashdb with patches applied to allow building for 5.2 (see `configure-bash-version.patch`). For instance, nixpkgs and gentoo are both on bash 5.2 and both package bashdb.
- Several other patches had to be made to get certain tests to pass, these seem benign and are likely due to version differences.
- There is a missing test in the packaged distribution (`test-file-with-spaces`), see https://sourceforge.net/p/bashdb/bugs/52. Gentoo deals with this by hosting the missing test files, and copying them in, see here: https://gitweb.gentoo.org/repo/gentoo.git/tree/app-shells/bashdb/bashdb-5.0.1.1.2.ebuild#n24. Personally I think it is fine to just skip this test, but I would be willing to add a similar fix to the gentoo one if it is deemed valuable. I'm unsure where to put the missing files exactly if I were to, add them via patches??
- A few unit tests are marked as failing, specifically `test_alias`, `test_cmd_info_variables`, and `test_get_source_line` Check still exits successfully without needing to disable these tests. I had spent some time trying to fix these but I gave up after some time. It is strange though because I can get them to pass if I run them individually (except `test_alias`), but some tests seem to depend on other tests running prior. That is, the results of each test are not idempotent of each other. I understand if this is unacceptable, but I'm reaching the extent of my ability to debug these.

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

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

From c2273cdab7af820afc15203ae227bcb3ad5abf67 Mon Sep 17 00:00:00 2001
From: Zachary Hanham <z@zmhanham.com>
Date: Mon, 9 Dec 2024 14:53:25 -0500
Subject: [PATCH] New package: bashdb-5.0+1.1.2

---
 .../patches/configure-bash-version.patch      | 12 +++++
 .../bashdb/patches/test-bash-rematch.patch    | 13 ++++++
 .../patches/test-bug-loc-pygments.patch       | 44 +++++++++++++++++++
 ...st-cmd-info-variables-abs_top_srcdir.patch | 17 +++++++
 .../patches/test-settrace-pygments.patch      | 10 +++++
 srcpkgs/bashdb/template                       | 14 ++++++
 6 files changed, 110 insertions(+)
 create mode 100644 srcpkgs/bashdb/patches/configure-bash-version.patch
 create mode 100644 srcpkgs/bashdb/patches/test-bash-rematch.patch
 create mode 100644 srcpkgs/bashdb/patches/test-bug-loc-pygments.patch
 create mode 100644 srcpkgs/bashdb/patches/test-cmd-info-variables-abs_top_srcdir.patch
 create mode 100644 srcpkgs/bashdb/patches/test-settrace-pygments.patch
 create mode 100644 srcpkgs/bashdb/template

diff --git a/srcpkgs/bashdb/patches/configure-bash-version.patch b/srcpkgs/bashdb/patches/configure-bash-version.patch
new file mode 100644
index 00000000000000..6a5bc124529a24
--- /dev/null
+++ b/srcpkgs/bashdb/patches/configure-bash-version.patch
@@ -0,0 +1,12 @@
+Enable building with bash 5.1/5.2 - Remove with upstream release
+--- a/configure
++++ b/configure
+@@ -2790,7 +2790,7 @@ bash_major=`$SH_PROG -c 'echo ${BASH_VERSINFO[0]}'`
+ bash_minor=`$SH_PROG -c 'echo ${BASH_VERSINFO[1]}'`
+ bash_5_or_greater=no
+ case "${bash_major}.${bash_minor}" in
+-  '5.0' | '5.0')
++  '5.0' | '5.0' | '5.1' | '5.2')
+     bash_5_or_greater=yes
+     ;;
+   *)
diff --git a/srcpkgs/bashdb/patches/test-bash-rematch.patch b/srcpkgs/bashdb/patches/test-bash-rematch.patch
new file mode 100644
index 00000000000000..b1798927602818
--- /dev/null
+++ b/srcpkgs/bashdb/patches/test-bash-rematch.patch
@@ -0,0 +1,13 @@
+Removes -r from expected "declare" result in bash-rematch test. Makes result consistent with current void-packages bash version.
+--- a/test/data/bash-rematch.right
++++ b/test/data/bash-rematch.right
+@@ -31,7 +31,7 @@
+ 8:	    echo "${!i} matches"
+  0: $BASH_REMATCH = 456
+ +eval typeset -p BASH_REMATCH
+-declare -ar BASH_REMATCH=([0]="456")
++declare -a BASH_REMATCH=([0]="456")
+ $? is 0
+ +c 
+ 456 matches
+
diff --git a/srcpkgs/bashdb/patches/test-bug-loc-pygments.patch b/srcpkgs/bashdb/patches/test-bug-loc-pygments.patch
new file mode 100644
index 00000000000000..dda20341005f17
--- /dev/null
+++ b/srcpkgs/bashdb/patches/test-bug-loc-pygments.patch
@@ -0,0 +1,44 @@
+Makes expected color codes of bug-loc test results consistent with current void-packages python3-Pygments version.
+--- a/test/data/bug-loc.right
++++ b/test/data/bug-loc.right
+@@ -1,26 +1,26 @@
+ (bug-loc.sh:5):
+-5:	^[[31mdirname^[[39;49;00m=^[[33m${^[[39;49;00m^[[31mBASH_SOURCE^[[39;49;00m%/*^[[33m}^[[39;49;00m   ^[[37m# equivalent to dirname($0)^[[39;49;00m
++5:	^[[31mdirname^[[39;49;00m=^[[33m${^[[39;49;00m^[[31mBASH_SOURCE^[[39;49;00m%/*^[[33m}^[[39;49;00m^[[37m   ^[[39;49;00m^[[37m# equivalent to dirname($0)^[[39;49;00m
+ +# Test to see that we read in files that mentioned in breakpoints
+ +# but we don't step into.
+-+step
+++step 
+ (bug-loc.sh:6):
+-6:	^[[36msource^[[39;49;00m ^[[33m${^[[39;49;00m^[[31mdirname^[[39;49;00m^[[33m}^[[39;49;00m/library.sh
+-+step
++6:	^[[36msource^[[39;49;00m^[[37m ^[[39;49;00m^[[33m${^[[39;49;00m^[[31mdirname^[[39;49;00m^[[33m}^[[39;49;00m/library.sh^[[37m^[[39;49;00m
+++step 
+ (bug-loc.sh:7):
+-7:	^[[36mecho^[[39;49;00m ^[[33m'script line 7'^[[39;49;00m
+-+step
++7:	^[[36mecho^[[39;49;00m^[[37m ^[[39;49;00m^[[33m'script line 7'^[[39;49;00m^[[37m^[[39;49;00m
+++step 
+ script line 7
+ (bug-loc.sh:8):
+-8:	library-function
+-+step
++8:	library-function^[[37m^[[39;49;00m
+++step 
+ (library.sh:1):
+-1:	library-function() {
+-+step
++1:	library-function()^[[37m ^[[39;49;00m{^[[37m^[[39;49;00m
+++step 
+ (library.sh:2):
+-2:	  ^[[36mecho^[[39;49;00m ^[[33m'library line 2 in library-function'^[[39;49;00m
+-+step
++2:	^[[37m  ^[[39;49;00m^[[36mecho^[[39;49;00m^[[37m ^[[39;49;00m^[[33m'library line 2 in library-function'^[[39;49;00m^[[37m^[[39;49;00m
+++step 
+ library line 2 in library-function
+ (bug-loc.sh:11):
+-11:	^[[36mecho^[[39;49;00m ^[[33m'script line 11'^[[39;49;00m
+-+quit
++11:	^[[36mecho^[[39;49;00m^[[37m ^[[39;49;00m^[[33m'script line 11'^[[39;49;00m^[[37m^[[39;49;00m
+++quit 
+ bashdb: That's all, folks...
diff --git a/srcpkgs/bashdb/patches/test-cmd-info-variables-abs_top_srcdir.patch b/srcpkgs/bashdb/patches/test-cmd-info-variables-abs_top_srcdir.patch
new file mode 100644
index 00000000000000..79607808d72b79
--- /dev/null
+++ b/srcpkgs/bashdb/patches/test-cmd-info-variables-abs_top_srcdir.patch
@@ -0,0 +1,17 @@
+Adds missing @abs_top_srcdir@ to test-cmd-info-variables.sh.in
+--- a/test/unit/test-cmd-info-variables.sh.in
++++ b/test/unit/test-cmd-info-variables.sh.in
+@@ -32,11 +32,11 @@
+     # FIXME try -x -i, and no options. try invalid opts
+ }
+ 
+-if [ '/src/external-vcs/sourceforge/bashdb' = '' ] ; then
++if [ '@abs_top_srcdir@' = '' ] ; then
+   echo "Something is wrong: abs_top_srcdir is not set."
+  exit 1
+ fi
+-abs_top_srcdir=/src/external-vcs/sourceforge/bashdb
++abs_top_srcdir=@abs_top_srcdir@
+ # Make sure $abs_top_src has a trailing slash
+ abs_top_srcdir=${abs_top_srcdir%%/}/
+ . ${abs_top_srcdir}test/unit/helper.sh
diff --git a/srcpkgs/bashdb/patches/test-settrace-pygments.patch b/srcpkgs/bashdb/patches/test-settrace-pygments.patch
new file mode 100644
index 00000000000000..ab7c2bda803662
--- /dev/null
+++ b/srcpkgs/bashdb/patches/test-settrace-pygments.patch
@@ -0,0 +1,10 @@
+Makes expected color codes of settrace test results consistent with current void-packages python3-Pygments version.
+--- a/test/data/settrace.right
++++ b/test/data/settrace.right
+@@ -1,5 +1,5 @@
+ (settrace.sh:6):
+-6:	  _Dbg_debugger; :
++6:	^[[37m  ^[[39;49;00m_Dbg_debugger;^[[37m ^[[39;49;00m:^[[37m^[[39;49;00m
+ +# Test set_trace call.
+ +where
+ ->0 in file `settrace.sh' at line 6
diff --git a/srcpkgs/bashdb/template b/srcpkgs/bashdb/template
new file mode 100644
index 00000000000000..f0c812f9d73197
--- /dev/null
+++ b/srcpkgs/bashdb/template
@@ -0,0 +1,14 @@
+# Template file for 'bashdb'
+pkgname=bashdb
+version=5.0+1.1.2
+revision=1
+build_style=gnu-configure
+depends="python3-Pygments"
+checkdepends="python3-Pygments"
+short_desc="Gdb-like debugger for bash"
+maintainer="Zachary Hanham <z@zmhanham.com>"
+license="GPL-2.0-only"
+homepage="https://bashdb.sourceforge.net/"
+distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version//+/-}.tar.gz"
+checksum=1cd5508007bb6b377977010de8c8aea9208e1417c56b30d102ffffd9d8afb0ca
+python_version=3

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

* Re: New package: bashdb-5.0+1.1.2
  2024-12-09 20:25 [PR PATCH] New package: bashdb-5.0+1.1.2 zackattackz
@ 2025-03-10  1:52 ` github-actions
  2025-03-24  2:07 ` [PR PATCH] [Closed]: " github-actions
  1 sibling, 0 replies; 3+ messages in thread
From: github-actions @ 2025-03-10  1:52 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/53436#issuecomment-2709240237

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Closed]: New package: bashdb-5.0+1.1.2
  2024-12-09 20:25 [PR PATCH] New package: bashdb-5.0+1.1.2 zackattackz
  2025-03-10  1:52 ` github-actions
@ 2025-03-24  2:07 ` github-actions
  1 sibling, 0 replies; 3+ messages in thread
From: github-actions @ 2025-03-24  2:07 UTC (permalink / raw)
  To: ml

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

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

New package: bashdb-5.0+1.1.2
https://github.com/void-linux/void-packages/pull/53436

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

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

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- 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

#### Notes

- The upstream version is "5.0-1.1.2", but due to void's version naming rules not allowing for dashes, I changed the "-" to a "+"
- It is worth noting that the upstream is currently only released to support up to bash version 5.0, not including the current void-packages bash 5.2. However, bashdb still works just fine in bash 5.2, and this has not stopped other repos from packaging bashdb with patches applied to allow building for 5.2 (see `configure-bash-version.patch`). For instance, nixpkgs and gentoo are both on bash 5.2 and both package bashdb.
- Several other patches had to be made to get certain tests to pass, these seem benign and are likely due to version differences.
- There is a missing test in the packaged distribution (`test-file-with-spaces`), see https://sourceforge.net/p/bashdb/bugs/52. Gentoo deals with this by hosting the missing test files, and copying them in, see here: https://gitweb.gentoo.org/repo/gentoo.git/tree/app-shells/bashdb/bashdb-5.0.1.1.2.ebuild#n24. Personally I think it is fine to just skip this test, but I would be willing to add a similar fix to the gentoo one if it is deemed valuable. I'm unsure where to put the missing files exactly if I were to, add them via patches??
- A few unit tests are marked as failing, specifically `test_alias`, `test_cmd_info_variables`, and `test_get_source_line` Check still exits successfully without needing to disable these tests. I had spent some time trying to fix these but I gave up after some time. It is strange though because I can get them to pass if I run them individually (except `test_alias`), but some tests seem to depend on other tests running prior. That is, the results of each test are not idempotent of each other. I understand if this is unacceptable, but I'm reaching the extent of my ability to debug these.

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

end of thread, other threads:[~2025-03-24  2:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-12-09 20:25 [PR PATCH] New package: bashdb-5.0+1.1.2 zackattackz
2025-03-10  1:52 ` github-actions
2025-03-24  2:07 ` [PR PATCH] [Closed]: " github-actions

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