Skip to content

Commit

Permalink
Cherry-picking a commit to fix CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
sp1ff committed Jan 5, 2024
1 parent 89c8262 commit 5d9e03a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
- name: Get boost (Ubuntu, oldest)
if: matrix.os == 'ubuntu-22.04' && matrix.boost == 'oldest' && steps.cache-boost-ubuntu.outputs.cache-hit != 'true'
run: |
set -x
set -ex
pwd
curl -L -o boost_${{ matrix.boost-ver }}.tar.bz2 ${{ matrix.boost-dl }}
md5sum boost_${{ matrix.boost-ver }}.tar.bz2
Expand All @@ -151,11 +151,12 @@ jobs:
- name: Get boost (MacOS)
if: matrix.os == 'macos-12' && steps.cache-boost-macos.outputs.cache-hit != 'true'
run: |
set -x
set -ex
pwd
curl -L -o boost_${{ matrix.boost-ver }}.tar.bz2 ${{ matrix.boost-dl }}
ls -l boost_${{ matrix.boost-ver }}.tar.bz2
md5 boost_${{ matrix.boost-ver }}.tar.bz2
# Apple clang version 14.0.0 (clang-1400.0.29.202)
cc --version
tar xf boost_${{ matrix.boost-ver }}.tar.bz2
mkdir boost_${{ matrix.boost-ver }}/installdir
Expand Down Expand Up @@ -206,7 +207,8 @@ jobs:
pwd
ls
export CFLAGS="-Wno-error=implicit-function-declaration"
./bootstrap.sh --prefix=./installdir || { cat bootstrap.log; exit 1; }
# python failed for boost 1.63; I don't use it, so didn't bother debugging
./bootstrap.sh --prefix=./installdir --without-libraries=python || { cat bootstrap.log; exit 1; }
./b2
./b2 install
Expand Down
2 changes: 1 addition & 1 deletion doc/scribbu-text.1
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Display more detailed help.
Display this sub-command's node in the user's Info viewer.
.RE
.PP
\-A,\-\-always\-create\-v1
\-C,\-\-always\-create\-v1
.RS 4
Always create an ID3v1 tag with the genre field set appropriately for
any file that does not possess one.
Expand Down
7 changes: 3 additions & 4 deletions scribbu/scheme.cc
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ namespace {
scm_error(sym_for_utf8("unexpected-type"), "scm_to_id3v2_tag",
"expected exact integer for ID3v2 version, got ~A", scm,
SCM_BOOL_F);

}

int version = scm_to_int(scm_ver);
Expand Down Expand Up @@ -542,7 +542,7 @@ extern "C" {
* \param scm_tag [in] the ID3v1 tag to be written
*
* \param scm_pth [in] the text (as a Scheme string) giving a path (relative
* or absolute) to the file of interest)
* or absolute) to the file of interest
*
*
*/
Expand Down Expand Up @@ -767,7 +767,7 @@ extern "C" {
/// Define our types & functions at the top level of the current module
void
init_scribbu()
init_scribbu()
{
scribbu::init_symbols();
Expand Down Expand Up @@ -893,4 +893,3 @@ extern "C" {
}

} // End extern "C".

0 comments on commit 5d9e03a

Please sign in to comment.