Re: UPDATE audio/jack 0.125.0

2016-11-13 Thread Jeremie Courreges-Anglas
Daniel Jakots  writes:

> On Fri, 23 Sep 2016 11:19:44 +0100, David CARLIER 
> wrote:
>
>> Hi all,
>> 
>> this is an update of jack to a newer release, dropping couple of
>> internal patches in the process.
>> 
>> Kindest regards.
>
> Symbols were added so bump minor. Updated diff. ok danj@ if someone
> wants to review and commit it.

Committed, however I made that a major bump. One function that used to
take a jack_uuid_t now takes a pointer to a jack_uuid_t, and jack_tmpdir
doesn't exist anymore, replaced by function jack_get_tmpdir().

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE



Re: UPDATE audio/jack 0.125.0

2016-11-03 Thread Daniel Jakots
On Fri, 23 Sep 2016 11:19:44 +0100, David CARLIER 
wrote:

> Hi all,
> 
> this is an update of jack to a newer release, dropping couple of
> internal patches in the process.
> 
> Kindest regards.

Symbols were added so bump minor. Updated diff. ok danj@ if someone
wants to review and commit it.

Cheers,
Daniel

Index: Makefile
===
RCS file: /cvs/ports/audio/jack/Makefile,v
retrieving revision 1.34
diff -u -p -r1.34 Makefile
--- Makefile	16 Mar 2016 21:19:37 -	1.34
+++ Makefile	3 Nov 2016 14:01:11 -
@@ -2,14 +2,13 @@
 
 COMMENT =		low latency sound server
 
-V =			0.124.1
+V =			0.125.0
 DISTNAME =		jack-audio-connection-kit-${V}
 PKGNAME =		jack-${V}
 CATEGORIES =		audio
-REVISION =		1
 
-SHARED_LIBS +=		jack		1.0	# 0.28
-SHARED_LIBS +=		jackserver	1.0	# 0.28
+SHARED_LIBS +=  jack 1.1  # 0.28
+SHARED_LIBS +=  jackserver   1.1  # 0.28
 
 HOMEPAGE =		http://jackaudio.org/
 
@@ -47,11 +46,6 @@ CONFIGURE_ENV =		CPPFLAGS="-I${LOCALBASE
 .ifdef DEBUG
 CONFIGURE_ARGS +=	--enable-debug
 .endif
-
-post-extract:
-	mkdir -p ${WRKSRC}/drivers/sndio
-	cp ${FILESDIR}/Makefile.am ${FILESDIR}/sndio_driver.{c,h} \
-		${WRKSRC}/drivers/sndio
 
 AUTO_ENV=	AUTOMAKE_VERSION=${AUTOMAKE_VERSION} \
 		AUTOCONF_VERSION=${AUTOCONF_VERSION}
Index: distinfo
===
RCS file: /cvs/ports/audio/jack/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo	5 May 2015 19:45:19 -	1.7
+++ distinfo	3 Nov 2016 14:01:11 -
@@ -1,2 +1,2 @@
-SHA256 (jack-audio-connection-kit-0.124.1.tar.gz) = 60LfYGVXbwj+7rYMuTVdzk61OHRTStcVNNeqMbrlYdY=
-SIZE (jack-audio-connection-kit-0.124.1.tar.gz) = 1113456
+SHA256 (jack-audio-connection-kit-0.125.0.tar.gz) = NRe1v/ghOadrK2b+L9mjs0tuWUwYT5WpiFJMV1sR1EQ=
+SIZE (jack-audio-connection-kit-0.125.0.tar.gz) = 1217977
Index: files/Makefile.am
===
RCS file: /cvs/ports/audio/jack/files/Makefile.am,v
retrieving revision 1.1
diff -u -p -r1.1 Makefile.am
--- files/Makefile.am	11 Jan 2009 10:51:46 -	1.1
+++ files/Makefile.am	3 Nov 2016 14:01:11 -
@@ -1,13 +0,0 @@
-MAINTAINCLEANFILES = Makefile.in
-
-AM_CFLAGS = $(JACK_CFLAGS)
-
-plugindir = $(ADDON_DIR)
-
-plugin_LTLIBRARIES = jack_sndio.la
-
-jack_sndio_la_LDFLAGS = -module -avoid-version
-jack_sndio_la_LIBADD = $(SNDIO_LIBS)
-jack_sndio_la_SOURCES = sndio_driver.c sndio_driver.h
-
-noinst_HEADERS = sndio_driver.h
Index: files/sndio_driver.c
===
RCS file: /cvs/ports/audio/jack/files/sndio_driver.c,v
retrieving revision 1.6
diff -u -p -r1.6 sndio_driver.c
--- files/sndio_driver.c	5 May 2015 19:45:19 -	1.6
+++ files/sndio_driver.c	3 Nov 2016 14:01:11 -
@@ -1,997 +0,0 @@
-/*
- * Copyright (c) 2009 Jacob Meuser 
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-#include 
-
-#ifndef _REENTRANT
-#define _REENTRANT
-#endif
-#ifndef _THREAD_SAFE
-#define _THREAD_SAFE
-#endif
-
-#include 
-
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-
-#include 
-#include 
-#include 
-#include 
-#include 
-
-#include "sndio_driver.h"
-
-
-#define SNDIO_DRIVER_N_PARAMS	10
-const static jack_driver_param_desc_t sndio_params[SNDIO_DRIVER_N_PARAMS] = {
-	{ "rate",
-	  'r',
-	  JackDriverParamUInt,
-	  { .ui = SNDIO_DRIVER_DEF_FS },
-	  NULL,
-	  "sample rate",
-	  "sample rate"
-	},
-	{ "period",
-	  'p',
-	  JackDriverParamUInt,
-	  { .ui = SNDIO_DRIVER_DEF_BLKSIZE },
-	  NULL,
-	  "period size",
-	  "period size"
-	},
-	{ "nperiods",
-	  'n',
-	  JackDriverParamUInt,
-	  { .ui = SNDIO_DRIVER_DEF_NPERIODS },
-	  NULL,
-	  "number of periods in buffer",
-	  "number of periods in buffer"
-	},
-	{ "wordlength",
-	  'w',
-	  JackDriverParamInt,
-	  { .i = SNDIO_DRIVER_DEF_BITS },
-	  NULL,
-	  "word length",
-	  "word length"
-	},
-	{ "inchannels",
-	  'i',
-	  JackDriverParamUInt,
-	  { .ui = SNDIO_DRIVER_DEF_INS },
-	  NULL,
-	  "capture channels",
-	  "capture channels"
-	},
-	{ "outchannels",
-	  'o',
-	  JackDriverParamUInt,
-	  { .ui = SNDIO_DRIVER_DEF_OUTS },
-	  NULL,
-	  "playback channels",

Re: UPDATE audio/jack 0.125.0

2016-11-03 Thread David CARLIER
ping ?

On 23 September 2016 at 11:19, David CARLIER  wrote:
> Hi all,
>
> this is an update of jack to a newer release, dropping couple of
> internal patches in the process.
>
> Kindest regards.



Re: UPDATE audio/jack 0.125.0

2016-10-12 Thread David CARLIER
ping ?

On 23 September 2016 at 11:19, David CARLIER  wrote:
> Hi all,
>
> this is an update of jack to a newer release, dropping couple of
> internal patches in the process.
>
> Kindest regards.



UPDATE audio/jack 0.125.0

2016-09-23 Thread David CARLIER
Hi all,

this is an update of jack to a newer release, dropping couple of
internal patches in the process.

Kindest regards.
Index: Makefile
===
RCS file: /cvs/ports/audio/jack/Makefile,v
retrieving revision 1.34
diff -u -p -r1.34 Makefile
--- Makefile16 Mar 2016 21:19:37 -  1.34
+++ Makefile23 Sep 2016 10:03:31 -
@@ -2,11 +2,10 @@
 
 COMMENT =  low latency sound server
 
-V =0.124.1
+V =0.125.0
 DISTNAME = jack-audio-connection-kit-${V}
 PKGNAME =  jack-${V}
 CATEGORIES =   audio
-REVISION = 1
 
 SHARED_LIBS += jack1.0 # 0.28
 SHARED_LIBS += jackserver  1.0 # 0.28
@@ -47,11 +46,6 @@ CONFIGURE_ENV =  CPPFLAGS="-I${LOCALBASE
 .ifdef DEBUG
 CONFIGURE_ARGS +=  --enable-debug
 .endif
-
-post-extract:
-   mkdir -p ${WRKSRC}/drivers/sndio
-   cp ${FILESDIR}/Makefile.am ${FILESDIR}/sndio_driver.{c,h} \
-   ${WRKSRC}/drivers/sndio
 
 AUTO_ENV=  AUTOMAKE_VERSION=${AUTOMAKE_VERSION} \
AUTOCONF_VERSION=${AUTOCONF_VERSION}
Index: distinfo
===
RCS file: /cvs/ports/audio/jack/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo5 May 2015 19:45:19 -   1.7
+++ distinfo23 Sep 2016 10:03:31 -
@@ -1,2 +1,2 @@
-SHA256 (jack-audio-connection-kit-0.124.1.tar.gz) = 
60LfYGVXbwj+7rYMuTVdzk61OHRTStcVNNeqMbrlYdY=
-SIZE (jack-audio-connection-kit-0.124.1.tar.gz) = 1113456
+SHA256 (jack-audio-connection-kit-0.125.0.tar.gz) = 
NRe1v/ghOadrK2b+L9mjs0tuWUwYT5WpiFJMV1sR1EQ=
+SIZE (jack-audio-connection-kit-0.125.0.tar.gz) = 1217977
Index: files/Makefile.am
===
RCS file: files/Makefile.am
diff -N files/Makefile.am
--- files/Makefile.am   11 Jan 2009 10:51:46 -  1.1
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,13 +0,0 @@
-MAINTAINCLEANFILES = Makefile.in
-
-AM_CFLAGS = $(JACK_CFLAGS)
-
-plugindir = $(ADDON_DIR)
-
-plugin_LTLIBRARIES = jack_sndio.la
-
-jack_sndio_la_LDFLAGS = -module -avoid-version
-jack_sndio_la_LIBADD = $(SNDIO_LIBS)
-jack_sndio_la_SOURCES = sndio_driver.c sndio_driver.h
-
-noinst_HEADERS = sndio_driver.h
Index: files/sndio_driver.c
===
RCS file: files/sndio_driver.c
diff -N files/sndio_driver.c
--- files/sndio_driver.c5 May 2015 19:45:19 -   1.6
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,997 +0,0 @@
-/*
- * Copyright (c) 2009 Jacob Meuser 
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-#include 
-
-#ifndef _REENTRANT
-#define _REENTRANT
-#endif
-#ifndef _THREAD_SAFE
-#define _THREAD_SAFE
-#endif
-
-#include 
-
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-#include 
-
-#include 
-#include 
-#include 
-#include 
-#include 
-
-#include "sndio_driver.h"
-
-
-#define SNDIO_DRIVER_N_PARAMS  10
-const static jack_driver_param_desc_t sndio_params[SNDIO_DRIVER_N_PARAMS] = {
-   { "rate",
- 'r',
- JackDriverParamUInt,
- { .ui = SNDIO_DRIVER_DEF_FS },
- NULL,
- "sample rate",
- "sample rate"
-   },
-   { "period",
- 'p',
- JackDriverParamUInt,
- { .ui = SNDIO_DRIVER_DEF_BLKSIZE },
- NULL,
- "period size",
- "period size"
-   },
-   { "nperiods",
- 'n',
- JackDriverParamUInt,
- { .ui = SNDIO_DRIVER_DEF_NPERIODS },
- NULL,
- "number of periods in buffer",
- "number of periods in buffer"
-   },
-   { "wordlength",
- 'w',
- JackDriverParamInt,
- { .i = SNDIO_DRIVER_DEF_BITS },
- NULL,
- "word length",
- "word length"
-   },
-   { "inchannels",
- 'i',
- JackDriverParamUInt,
- { .ui = SNDIO_DRIVER_DEF_INS },
- NULL,
- "capture channels",
- "capture channels"
-   },
-   { "outchannels",
- 'o',
- JackDriverParamUInt,
- { .ui = SNDIO_DRIVER_DEF_OUTS },
-