Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Mar 2024 16:06:15 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 07c8eaff2b4e - main - audio/ladish: update 1.1 =?utf-8?Q?=E2=86=92?= 1.2
Message-ID:  <202403291606.42TG6FDw063409@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=07c8eaff2b4ecefedffe098df8e52f8a8bd71d1d

commit 07c8eaff2b4ecefedffe098df8e52f8a8bd71d1d
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2024-03-29 16:05:15 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2024-03-29 16:06:09 +0000

    audio/ladish: update 1.1 → 1.2
---
 audio/ladish/Makefile                             |  4 ++--
 audio/ladish/distinfo                             |  6 +++---
 audio/ladish/files/patch-alsapid_alsapid.h        | 11 -----------
 audio/ladish/files/patch-alsapid_helper.c         | 11 -----------
 audio/ladish/files/patch-daemon_app__supervisor.c | 10 ----------
 audio/ladish/files/patch-daemon_loader.c          | 22 ----------------------
 audio/ladish/files/patch-proxies_graph__proxy.h   | 10 ----------
 7 files changed, 5 insertions(+), 69 deletions(-)

diff --git a/audio/ladish/Makefile b/audio/ladish/Makefile
index 2d49f7168a1d..d727b10be669 100644
--- a/audio/ladish/Makefile
+++ b/audio/ladish/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	ladish
-DISTVERSION=	1.1
-DISTVERSIONSUFFIX=	-g36c489e4
+DISTVERSION=	1.2
+DISTVERSIONSUFFIX=	-g4dcd67d7
 CATEGORIES=	audio
 MASTER_SITES=	https://dl.ladish.org/ladish/
 
diff --git a/audio/ladish/distinfo b/audio/ladish/distinfo
index cae0e55d6e5d..590d358a6285 100644
--- a/audio/ladish/distinfo
+++ b/audio/ladish/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1702937580
-SHA256 (ladish-1.1-g36c489e4.tar.bz2) = 37a11899ce472d6cefa5a53d7de47a410f15120983b6255e82f5110573310b16
-SIZE (ladish-1.1-g36c489e4.tar.bz2) = 656723
+TIMESTAMP = 1711726210
+SHA256 (ladish-1.2-g4dcd67d7.tar.bz2) = 387c195b2efe4912b48b3e6c9a3feefcc420ef6f457462c0a87a11f8e33b000a
+SIZE (ladish-1.2-g4dcd67d7.tar.bz2) = 659040
diff --git a/audio/ladish/files/patch-alsapid_alsapid.h b/audio/ladish/files/patch-alsapid_alsapid.h
deleted file mode 100644
index 566ef453e6ad..000000000000
--- a/audio/ladish/files/patch-alsapid_alsapid.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- alsapid/alsapid.h.orig	2023-12-18 22:37:53 UTC
-+++ alsapid/alsapid.h
-@@ -29,6 +29,8 @@
- 
- #include "../common.h"
- 
-+#include <unistd.h> // for pid_t
-+
- void alsapid_compose_src_link(int alsa_client_id, char * buffer);
- void alsapid_compose_dst_link(char * buffer);
- bool alsapid_get_pid(int alsa_client_id, pid_t * pid_ptr);
diff --git a/audio/ladish/files/patch-alsapid_helper.c b/audio/ladish/files/patch-alsapid_helper.c
deleted file mode 100644
index edbcc3ea5a65..000000000000
--- a/audio/ladish/files/patch-alsapid_helper.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- alsapid/helper.c.orig	2023-12-18 22:35:47 UTC
-+++ alsapid/helper.c
-@@ -33,6 +33,8 @@
- #include <unistd.h>
- #include <sys/types.h>
- 
-+#include <libgen.h>
-+
- void alsapid_compose_src_link(int alsa_client_id, char * buffer)
- {
-   sprintf(buffer, "/tmp/alsapid-%lld-%d", (long long)getuid(), alsa_client_id);
diff --git a/audio/ladish/files/patch-daemon_app__supervisor.c b/audio/ladish/files/patch-daemon_app__supervisor.c
deleted file mode 100644
index 391de6a73328..000000000000
--- a/audio/ladish/files/patch-daemon_app__supervisor.c
+++ /dev/null
@@ -1,10 +0,0 @@
---- daemon/app_supervisor.c.orig	2023-12-18 22:40:21 UTC
-+++ daemon/app_supervisor.c
-@@ -30,6 +30,7 @@
- #include <sys/stat.h>
- #include <signal.h>
- #include <unistd.h>
-+#include <sys/wait.h>
- 
- #include "app_supervisor.h"
- #include "../dbus_constants.h"
diff --git a/audio/ladish/files/patch-daemon_loader.c b/audio/ladish/files/patch-daemon_loader.c
deleted file mode 100644
index 13312c9c7a0b..000000000000
--- a/audio/ladish/files/patch-daemon_loader.c
+++ /dev/null
@@ -1,22 +0,0 @@
---- daemon/loader.c.orig	2023-12-18 22:30:22 UTC
-+++ daemon/loader.c
-@@ -30,10 +30,18 @@
- 
- #include <unistd.h>
- #include <fcntl.h>
--#include <pty.h>                /* forkpty() */
-+#if !defined(__FreeBSD__)
-+#  include <pty.h>                /* forkpty() */
-+#else
-+#  include <sys/types.h>
-+#  include <sys/ioctl.h>
-+#  include <termios.h>
-+#  include <libutil.h>
-+#endif
- #include <sys/wait.h>
- #include <sys/time.h>
- #include <sys/resource.h>
-+#include <signal.h>
- 
- #include "loader.h"
- #include "../proxies/conf_proxy.h"
diff --git a/audio/ladish/files/patch-proxies_graph__proxy.h b/audio/ladish/files/patch-proxies_graph__proxy.h
deleted file mode 100644
index 56ee5572c35a..000000000000
--- a/audio/ladish/files/patch-proxies_graph__proxy.h
+++ /dev/null
@@ -1,10 +0,0 @@
---- proxies/graph_proxy.h.orig	2023-12-18 22:32:12 UTC
-+++ proxies/graph_proxy.h
-@@ -28,6 +28,7 @@
- #define GRAPH_PROXY_H__61D1ED56_E33B_4F50_B45B_F520979E8AA7__INCLUDED
- 
- #include "common.h"
-+#include <unistd.h>
- 
- typedef struct graph_proxy_tag { int unused; } * graph_proxy_handle;
- 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202403291606.42TG6FDw063409>