Skip to content
Snippets Groups Projects
Commit 1a822754 authored by Yuri Victorovich's avatar Yuri Victorovich
Browse files

audio/soundtracker: Update 1.0.2 -> 1.0.2.1

parent f6fd603e
No related branches found
No related tags found
No related merge requests found
PORTNAME= soundtracker
DISTVERSION= 1.0.2
PORTREVISION= 1
DISTVERSION= 1.0.2.1
CATEGORIES= audio
MASTER_SITES= SF/${PORTNAME}/
......@@ -12,6 +11,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libharfbuzz.so:print/harfbuzz \
libsndfile.so:audio/libsndfile
RUN_DEPENDS= bash:shells/bash
......
TIMESTAMP = 1621198694
SHA256 (soundtracker-1.0.2.tar.xz) = 9dd09efd06f9794ca52b00d778e885124b73e343dfac87d7ba3e62b059878fcb
SIZE (soundtracker-1.0.2.tar.xz) = 754884
TIMESTAMP = 1623870946
SHA256 (soundtracker-1.0.2.1.tar.xz) = 0275b7f38243e2cc2474ae892c88ae486bf815dd0658830101ac518b3e6f005a
SIZE (soundtracker-1.0.2.1.tar.xz) = 754976
- bugfix, patch reported to the author via e-mail.
--- app/audio-subs.c.orig 2021-05-18 15:20:58 UTC
+++ app/audio-subs.c
@@ -138,7 +138,7 @@ union audio_backpipe_args {
struct _cmderrno {
audio_backpipe_id cmd;
- gint errno;
+ gint errno_;
gint length;
gchar text[1];
} __attribute__((packed)) cmderrno;
@@ -293,7 +293,7 @@ void audio_backpipe_write(audio_backpipe_id cmd, ...)
arg_size = l + sizeof(args->cmderrno);
args = arg_pointer = alloca(arg_size);
args->cmderrno.cmd = cmd;
- args->cmderrno.errno = va_arg(arg_list, gint);
+ args->cmderrno.errno_ = va_arg(arg_list, gint);
args->cmderrno.length = l;
strncpy(args->cmderrno.text, line, l + 1);
break;
- bugfix patch from the upstream
--- app/gui-subs.h.orig 2021-05-18 18:36:26 UTC
+++ app/gui-subs.h
@@ -151,7 +151,7 @@ gui_subs_create_slider(const gchar* title,
GtkAdjustment** adj,
gboolean in_mainwindow)
{
- return gui_subs_create_slider(title, min, max, changedfunc, adj, in_mainwindow);
+ return gui_subs_create_slider_full(title, min, max, changedfunc, adj, in_mainwindow, NULL);
}
GtkWidget* gui_combo_new(GtkListStore* ls);
- bugfix, patch reported to the author via e-mail.
--- app/keys.c.orig 2021-02-01 20:01:20 UTC
+++ app/keys.c
@@ -893,7 +893,7 @@ keys_make_xkeys(void)
keyname[k++] = xkeymap[i].xname;
}
- qsort(keyname, k, sizeof(char*), keys_qsort_compare_func);
+ qsort(keyname+1, k-1, sizeof(char*), keys_qsort_compare_func);
keyname[0] = NONE_TEXT;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment