pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/audio



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Aug 26 09:29:13 UTC 2021

Modified Files:
        pkgsrc/audio/mpg123: Makefile.common distinfo
        pkgsrc/audio/mpg123-pulse: Makefile

Log Message:
mpg123: updated to 1.28.2

1.28.2
------
- libout123
-- Complete the fix for bug 314, reopening the device after format
   setup failure.

1.28.1
------
- build:
-- Explain --with-default-audio in configure help better.
-- Fix build of arm_fpu (regression of configure reorg).
-- Re-introduce AC_PROG_C_C99 macro for autoconf 2.69, it's only
   obsolete after that.
-- Un-break CMake build for botched move of CheckCPUArch.c.in (bug 315).
-- Avoid conflict of warning macro with MSVC pragmas in two places. Also
   fix UWP build with strerror check and move down inclusion of intsym.h
   (bug 316).
-- Disable libout123 (and mpg123, out123) on UWP with cmake to get at least
   the decoder lib built (317).
-- Hack around CMake bug(?) with QUERY_HAS_FPU to make ports/cmake also
   work in MinGW (bug 318).
- libmpg123:
-- Make mpg123.h.in usable again with MPG123_NO_CONFIGURE,
   for external uses (bug 313).
-- Use predefined MPG123_API_VERSION in mpg123.h.in for the same.
-- Better handle the ssize_t situation via typedef mpg123_ssize_t, less
   likely to be broken in future MSVC versions.
-- Fix an integer constant definition for the most negative 32 bit numnber to
   avoid justified compiler complaints.
- libsyn123:
-- More support for MPG123_NO_CONFIGURE.
-- Optionally use predefined SYN123_API_VERSION in syn123.h.in for the same.
-- Add a cast to silence integer sign warning for offset in muloffdiv64()
   (bug 317)
- libout123:
-- Pulse module advertises wider format support now, not
   just s16. This makes mpg123 -e s24 work with it, not just out123.
-- Optionally use predefined OUT123_API_VERSION in out123.h.in for
   non-configure use.
-- Fix sndio output to properly query device format support and get
   default fomat on FreeBSD (bug 314).


To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 pkgsrc/audio/mpg123/Makefile.common
cvs rdiff -u -r1.58 -r1.59 pkgsrc/audio/mpg123/distinfo
cvs rdiff -u -r1.32 -r1.33 pkgsrc/audio/mpg123-pulse/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/audio/mpg123/Makefile.common
diff -u pkgsrc/audio/mpg123/Makefile.common:1.60 pkgsrc/audio/mpg123/Makefile.common:1.61
--- pkgsrc/audio/mpg123/Makefile.common:1.60    Sat Jun  5 17:30:01 2021
+++ pkgsrc/audio/mpg123/Makefile.common Thu Aug 26 09:29:13 2021
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile.common,v 1.60 2021/06/05 17:30:01 thor Exp $
+# $NetBSD: Makefile.common,v 1.61 2021/08/26 09:29:13 adam Exp $
 #
 # used by audio/mpg123-jack/Makefile
 # used by audio/mpg123-nas/Makefile
 # used by audio/mpg123-pulse/Makefile
 
-DISTNAME=      mpg123-1.28.0
+DISTNAME=      mpg123-1.28.2
 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.58 pkgsrc/audio/mpg123/distinfo:1.59
--- pkgsrc/audio/mpg123/distinfo:1.58   Sat Jun  5 17:30:01 2021
+++ pkgsrc/audio/mpg123/distinfo        Thu Aug 26 09:29:13 2021
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.58 2021/06/05 17:30:01 thor Exp $
+$NetBSD: distinfo,v 1.59 2021/08/26 09:29:13 adam Exp $
 
-SHA1 (mpg123-1.28.0.tar.bz2) = ee3d6515c7ccf0b38f22c31bf4fca3a6c5f87dc3
-RMD160 (mpg123-1.28.0.tar.bz2) = d1df0d0c60559b3af23732219ff1dd0566de72e1
-SHA512 (mpg123-1.28.0.tar.bz2) = 4e333ee4f3bbebcfff280cf286265e969a8da93b9043d03c0189e22cd40918b07bf12181bd06141d4479c78bc0d0ed472e0d3bb61b2fdb96fe9f7cd48f9a6b77
-Size (mpg123-1.28.0.tar.bz2) = 1063321 bytes
+SHA1 (mpg123-1.28.2.tar.bz2) = 45d8dc173e7c12846a45f6c167080e030a46dc9c
+RMD160 (mpg123-1.28.2.tar.bz2) = 897ac191b394877fb6ce6d9b034eafc8e8f97d3c
+SHA512 (mpg123-1.28.2.tar.bz2) = 45ac11c5997d13f80917e135a40d2fb4448703dad56271dfe8ce7c8dea339cbac7727ec121779040bd7a07fc4ea79086860ea4a8ec879eda3bdcbf7d57348cda
+Size (mpg123-1.28.2.tar.bz2) = 1065867 bytes
 SHA1 (patch-ad) = f07b637c3fc1d3ea0426013fc25bca8e3aecba56

Index: pkgsrc/audio/mpg123-pulse/Makefile
diff -u pkgsrc/audio/mpg123-pulse/Makefile:1.32 pkgsrc/audio/mpg123-pulse/Makefile:1.33
--- pkgsrc/audio/mpg123-pulse/Makefile:1.32     Fri Jul 30 12:26:39 2021
+++ pkgsrc/audio/mpg123-pulse/Makefile  Thu Aug 26 09:29:13 2021
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.32 2021/07/30 12:26:39 ryoon Exp $
+# $NetBSD: Makefile,v 1.33 2021/08/26 09:29:13 adam Exp $
 
 MPG123_MODULE= pulse
 
-PKGREVISION= 1
 .include "../../audio/mpg123/Makefile.common"
 
 .include "../../audio/mpg123/buildlink3.mk"



Home | Main Index | Thread Index | Old Index