Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0797A85966 for ; Mon, 30 Oct 2023 09:43:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 3MAjIVGGCCak for ; Mon, 30 Oct 2023 09:43:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1265285959 for ; Mon, 30 Oct 2023 09:43:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0BEE7FADC; Mon, 30 Oct 2023 09:43:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169865902189180" MIME-Version: 1.0 Date: Mon, 30 Oct 2023 09:43:41 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/audio To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231030094341.0BEE7FADC@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169865902189180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Oct 30 09:43:40 UTC 2023 Modified Files: pkgsrc/audio/mpg123: Makefile.common distinfo pkgsrc/audio/mpg123-jack: Makefile pkgsrc/audio/mpg123-pulse: Makefile Log Message: mpg123: updated to 1.32.3 1.32.3: ports/cmake: Only enable modules with GetThreadErrorMode() on Windows. compat: Define EOVERFLOW for ancient Windows toolchains. libmpg123, libsyn123: always ifdef LFS_LARGEFILE_64 (not just if) libsyn123: re-introduce _32 wrappers in addition to suffix-less ones (regression from 1.31, bug 363) 1.32.2: libmpg123: Re-introduce _64 symbols on native 64 bit offset platforms. This was a regression since 1.31 series. Sorry, too much cleanup, not enough testing. build: Better O_LARGEFILE logic, avoiding redefintion. ports/cmake: Require C99 (bug 360, among other points, thanks to Ozkan Sezer). Fix broken O_LARGEFILE logic (bug 360). Typo fix and cleanup, also manual SSE switch for Android on old x86 (bug 359). 1.32.1: Include man pages again in tarball and install. We cannot avoid the empty man directory when disabling programs with autoconf. Fix signal handler prototype, avoiding some justified warnings. ports/cmake: Include CheckTypeSize, which seems to be needed sometimes (bug 357). Avoid O_LARGEFILE redefinition, logic closer to autoconf. 1.32.0: build: Move version handling out of configure.ac to ease other build systems. Include "fmt123.h" instead of in main API headers to make it more likely the correct one is included (at least gcc picks the one in the same directory as the including header first). All headers are build-independent now. Fix build for picky linkers by avoiding definition of wrap_getcpuflags() where it is not used (spurious linker error to non-exitent getcpuflags(), bug 353). Handle deprecation of C99 detection macro in autoconf 2.70. No use of AC_SYS_LARGEFILE anymore for explicit handling and differing choice for the libraries and frontend programs. Added --enable-portable and --disable-largefile to configure, removing the other largefile-related options. Added --disable-components --enable-libmpg123 to only build libmpg123 (and likewise --enable-libout123, --enable-libout123-modules, --enable-libsyn123) to autoconf build. CMake build has something similar with BUILD_PROGRAMS and BUILD_LIBOUT123, which leave only libmpg123 and libsyn123 if disabled). (bug 351) Consistent formatting of ./configure --help with AS_HELP_STRING(). ports/Sony_PSP: removed mpg123: Added --libversion. Added proper A-B looping with terminal control key 'o', renamed --pauseloop to --presetloop. Really get rid of mpg123_position() usage. (It was all lies before!) Fix terminal progress info when seeking in stopped mode (1.31 regression). Patch up interaction of output buffer with generic remote control, adding non-interruptible drain after P 3, and dropping buffer on QUIT. Uppercase some generic control replies for consinstency: SILENCE, PROGRESS, MUTE, UNMUTE libmpg123, libout123, libsyn123: Bumped API version for version query functions. Replaced nearly all symbol renames with explicit INT123_ prefix declarations (intsym.h close to empty now). libout123: Add sleep builtin output module (silent, but proper timing). libsyn123: Introduced SYN123_PORTABLE_API for an API without off_t and ssize_t (see NEWS.libsyn123). libmpg123: Internal I/O using explicit largefile support via off64_t, lseek64, fallback to plain 32 bit off_t. Added explicit 64 bit API with 64 suffix (mpg123_tell64(), not mpg123_tell_64()). This allows full avoidance of ambiguus off_t. The API is always using 64 bit integers, regardless of internal implementation. (bug 344) Introduced MPG123_PORTABLE_API for an API subset without off_t and ssize_t. Made mpg123_seek() and friends ignore offset sign for SEEK_END (always seeking towards beginning, assuming negative offset) to make lseek()-conforming usage possible. Seeking beyond the end never made sense, so no loss of valid functionality. Overall use of INT123_strerror(), trying to use thread-safe strerror_l() if possible. To generate a diff of this commit: cvs rdiff -u -r1.70 -r1.71 pkgsrc/audio/mpg123/Makefile.common cvs rdiff -u -r1.71 -r1.72 pkgsrc/audio/mpg123/distinfo cvs rdiff -u -r1.8 -r1.9 pkgsrc/audio/mpg123-jack/Makefile cvs rdiff -u -r1.41 -r1.42 pkgsrc/audio/mpg123-pulse/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169865902189180 Content-Disposition: inline Content-Length: 2921 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/mpg123/Makefile.common diff -u pkgsrc/audio/mpg123/Makefile.common:1.70 pkgsrc/audio/mpg123/Makefile.common:1.71 --- pkgsrc/audio/mpg123/Makefile.common:1.70 Sun Mar 19 22:15:37 2023 +++ pkgsrc/audio/mpg123/Makefile.common Mon Oct 30 09:43:40 2023 @@ -1,10 +1,10 @@ -# $NetBSD: Makefile.common,v 1.70 2023/03/19 22:15:37 thor Exp $ +# $NetBSD: Makefile.common,v 1.71 2023/10/30 09:43:40 adam Exp $ # # used by audio/mpg123-jack/Makefile # used by audio/mpg123-nas/Makefile # used by audio/mpg123-pulse/Makefile -DISTNAME= mpg123-1.31.3 +DISTNAME= mpg123-1.32.3 PKGNAME?= ${DISTNAME:C/[[:alnum:]]*/&-${MPG123_MODULE}/} CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mpg123/} Index: pkgsrc/audio/mpg123/distinfo diff -u pkgsrc/audio/mpg123/distinfo:1.71 pkgsrc/audio/mpg123/distinfo:1.72 --- pkgsrc/audio/mpg123/distinfo:1.71 Sun Mar 19 22:15:37 2023 +++ pkgsrc/audio/mpg123/distinfo Mon Oct 30 09:43:40 2023 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.71 2023/03/19 22:15:37 thor Exp $ +$NetBSD: distinfo,v 1.72 2023/10/30 09:43:40 adam Exp $ -BLAKE2s (mpg123-1.31.3.tar.bz2) = 09dc4d21ef494558636f3f60122b32fac30ec621bfecd99893a8533c7f0636cd -SHA512 (mpg123-1.31.3.tar.bz2) = 5dd550e06f5d0d432cac1b7e546215e56378b44588c1a98031498473211e08bc4228de45be41f7ba764f7f6c0eb752a6501235bcc3712c9a8d8852ae3c607d98 -Size (mpg123-1.31.3.tar.bz2) = 1094474 bytes +BLAKE2s (mpg123-1.32.3.tar.bz2) = c234804f367fdcebe92fbf87893cd266dd85a4db625ec9ba91621b7c2e9ccd7d +SHA512 (mpg123-1.32.3.tar.bz2) = 946c1073b6eebfd65333ec543df1caeea25864479e9c8e153fb53d8b636cc756d8d81947f7b5cbedbbfb1ea664d3fb27562ed36e7726d95e80591bd2ad622afc +Size (mpg123-1.32.3.tar.bz2) = 1111054 bytes SHA1 (patch-ad) = f07b637c3fc1d3ea0426013fc25bca8e3aecba56 SHA1 (patch-src_libout123_modules_sun.c) = aa11e1420fd07f2e1c4a0d911d1642f0fd50b916 Index: pkgsrc/audio/mpg123-jack/Makefile diff -u pkgsrc/audio/mpg123-jack/Makefile:1.8 pkgsrc/audio/mpg123-jack/Makefile:1.9 --- pkgsrc/audio/mpg123-jack/Makefile:1.8 Sat May 6 19:09:02 2023 +++ pkgsrc/audio/mpg123-jack/Makefile Mon Oct 30 09:43:40 2023 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.8 2023/05/06 19:09:02 ryoon Exp $ +# $NetBSD: Makefile,v 1.9 2023/10/30 09:43:40 adam Exp $ MPG123_MODULE= jack -PKGREVISION= 1 .include "../../audio/mpg123/Makefile.common" .include "../../audio/mpg123/buildlink3.mk" Index: pkgsrc/audio/mpg123-pulse/Makefile diff -u pkgsrc/audio/mpg123-pulse/Makefile:1.41 pkgsrc/audio/mpg123-pulse/Makefile:1.42 --- pkgsrc/audio/mpg123-pulse/Makefile:1.41 Sat May 6 19:09:02 2023 +++ pkgsrc/audio/mpg123-pulse/Makefile Mon Oct 30 09:43:40 2023 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.41 2023/05/06 19:09:02 ryoon Exp $ +# $NetBSD: Makefile,v 1.42 2023/10/30 09:43:40 adam Exp $ MPG123_MODULE= pulse -PKGREVISION= 1 .include "../../audio/mpg123/Makefile.common" .include "../../audio/mpg123/buildlink3.mk" --_----------=_169865902189180--