Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Conner Clere (5196508abeae36350c4248f4d6e7229ad9b73b47)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Conner Clere <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Conner Clere (5196508abeae36350c4248f4d6e7229ad9b73b47)
  • Date: Wed, 29 Mar 2023 23:42:22 +0000

GIT changes to master grimoire by Conner Clere <xenanthropy AT sourcemage.org>:

ChangeLog | 1
audio-libs/libbs2b/DEPENDS | 2 +
audio-libs/libbs2b/DETAILS | 14
++++++++++
audio-libs/libbs2b/HISTORY | 4 ++
audio-libs/libbs2b/PRE_BUILD | 3 ++
audio-libs/libbs2b/patches/3.1.0-configure-ac-use-dist-xz.patch | 13
+++++++++
audio-libs/libbs2b/patches/3.1.0-format-security.patch | 11
+++++++
7 files changed, 48 insertions(+)

New commits:
commit 5196508abeae36350c4248f4d6e7229ad9b73b47
Author: Conner Clere <xenanthropy AT sourcemage.org>
Commit: Conner Clere <xenanthropy AT sourcemage.org>

libbs2b: new spell, bauer stereophonic-to-binaural DSP library

diff --git a/ChangeLog b/ChangeLog
index bc5bf51..1667374 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
2023-03-29 Conner Clere <xenanthropy AT sourcemage.org>
* gnome4-apps/dconf-editor: new spell, gsettings editor for gnome
+ * audio-libs/libbs2b: new spell, bauer stereophonic-to-binaural DSP
library

2023-03-29 Treeve Jelbert <treeve AT sourcemage.org>
* utils/strig: deleted, obsolete unmaintained
diff --git a/audio-libs/libbs2b/DEPENDS b/audio-libs/libbs2b/DEPENDS
new file mode 100755
index 0000000..56bd5ac
--- /dev/null
+++ b/audio-libs/libbs2b/DEPENDS
@@ -0,0 +1,2 @@
+depends PKG-CONFIG &&
+depends libsndfile
diff --git a/audio-libs/libbs2b/DETAILS b/audio-libs/libbs2b/DETAILS
new file mode 100755
index 0000000..e1b4181
--- /dev/null
+++ b/audio-libs/libbs2b/DETAILS
@@ -0,0 +1,14 @@
+ SPELL=libbs2b
+ VERSION=3.1.0
+
SOURCE_HASH=sha256:4799974becdeeedf0db00115bc63f60ea3fe4b25f1dfdb6903505839a720e46f
+ SOURCE=${SPELL}-${VERSION}.tar.bz2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+
SOURCE_URL[0]=https://sourceforge.net/projects/bs2b/files/${SPELL}/${VERSION}/${SOURCE}/download
+ WEB_SITE=https://sourceforge.net/projects/bs2b/
+ LICENSE[0]=MIT
+ ENTERED=20230329
+ KEYWORDS="dsp audio library"
+ SHORT="bauer stereophonic-to-binaural DSP library"
+cat << EOF
+bauer stereophonic-to-binaural DSP library
+EOF
diff --git a/audio-libs/libbs2b/HISTORY b/audio-libs/libbs2b/HISTORY
new file mode 100644
index 0000000..d90e19b
--- /dev/null
+++ b/audio-libs/libbs2b/HISTORY
@@ -0,0 +1,4 @@
+2023-03-29 Conner Clere <xenanthropy AT sourcemage.org>
+ * PRE_BUILD, DEPENDS, DETAILS: version 3.1.0, new spell
+ * patches/*: add patches for current version
+
diff --git a/audio-libs/libbs2b/PRE_BUILD b/audio-libs/libbs2b/PRE_BUILD
new file mode 100755
index 0000000..559fe24
--- /dev/null
+++ b/audio-libs/libbs2b/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd "${SOURCE_DIRECTORY}" &&
+apply_patch_dir patches
diff --git a/audio-libs/libbs2b/patches/3.1.0-configure-ac-use-dist-xz.patch
b/audio-libs/libbs2b/patches/3.1.0-configure-ac-use-dist-xz.patch
new file mode 100644
index 0000000..a2f26a6
--- /dev/null
+++ b/audio-libs/libbs2b/patches/3.1.0-configure-ac-use-dist-xz.patch
@@ -0,0 +1,13 @@
+--- a/configure.ac 2009-06-04 18:17:02.000000000 +0000
++++ b/configure.ac 2021-01-08 00:54:42.622907620 +0000
+@@ -4,8 +4,8 @@
+ AC_PREREQ([2.63])
+ AC_INIT([libbs2b], [3.1.0], [boris_mikhaylov AT users.sourceforge.net])
+ AC_CONFIG_AUX_DIR([build-aux])
+-AM_INIT_AUTOMAKE([1.10.1 -Wall foreign subdir-objects
+- dist-zip dist-bzip2 dist-lzma])
++AM_INIT_AUTOMAKE([1.11.2 -Wall foreign subdir-objects
++ dist-zip dist-bzip2 dist-xz])
+ AC_CONFIG_SRCDIR([src/bs2b.h])
+
+ # Checks for programs.
diff --git a/audio-libs/libbs2b/patches/3.1.0-format-security.patch
b/audio-libs/libbs2b/patches/3.1.0-format-security.patch
new file mode 100644
index 0000000..d5600a5
--- /dev/null
+++ b/audio-libs/libbs2b/patches/3.1.0-format-security.patch
@@ -0,0 +1,11 @@
+--- a/src/bs2bconvert.c 2015-03-06 12:24:00.168451618 +0000
++++ b/src/bs2bconvert.c 2015-03-06 12:22:20.504446655 +0000
+@@ -153,7 +153,7 @@
+ if( ( infile = sf_open( infilename, SFM_READ, &sfinfo ) ) == NULL )
+ {
+ printf( "Not able to open input file %s.\n", infilename );
+- printf( sf_strerror( NULL ) );
++ printf( "%s", sf_strerror( NULL ) );
+ return 1;
+ }
+



  • [SM-Commit] GIT changes to master grimoire by Conner Clere (5196508abeae36350c4248f4d6e7229ad9b73b47), Conner Clere, 03/29/2023

Archive powered by MHonArc 2.6.24.

Top of Page