audio/soundtracker: Update 1.0.2 -> 1.0.2.1

This commit is contained in:
Yuri Victorovich 2021-06-16 12:25:18 -07:00
parent f6fd603eaf
commit 1a82275437
5 changed files with 5 additions and 53 deletions

View file

@ -1,6 +1,5 @@
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

View file

@ -1,3 +1,3 @@
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

View file

@ -1,22 +0,0 @@
- 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;

View file

@ -1,13 +0,0 @@
- 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);

View file

@ -1,13 +0,0 @@
- 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;
}