Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 0C4907A1FA for ; Sun, 16 Apr 2017 08:12:29 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id AD27D84DB9; Sun, 16 Apr 2017 08:12:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3E90C84DA0 for ; Sun, 16 Apr 2017 08:12:28 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id rHxwHoPSYBif for ; Sun, 16 Apr 2017 08:12:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6E61684CDE for ; Sun, 16 Apr 2017 08:12:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6C3AEFBE4; Sun, 16 Apr 2017 08:12:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149233034790360" MIME-Version: 1.0 Date: Sun, 16 Apr 2017 08:12:27 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/audio To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170416081227.6C3AEFBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_149233034790360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Apr 16 08:12:27 UTC 2017 Modified Files: pkgsrc/audio/mpg123: Makefile.common distinfo pkgsrc/audio/mpg123-pulse: Makefile Added Files: pkgsrc/audio/mpg123/patches: patch-Makefile.in Log Message: 1.24.0 ------ - Avoid repeating genre in metadata printout for specifications like (144)Thrash Metal. - In remote control mode, only enforce --quiet if no verbosity was required. - Prevent --loop and --shuffle or --random from messing with the remote control LOADLIST command (printout of the list would loop without reason). - Fix the mpg123 command (esp. our provided binaries on Windows) to now find modules again relative to the executable directory, not the current working directory. This was a regression in 1.23 and might be security-relevant if you called mpg123 in working directories with untrusted content. Note that mpg123 1.23 looked for modules relative to the current working directory only if the installation prefix for modules did not exist. So, usage on an intact installation (with /usr/lib/mpg123 or the like) was safe. Nevertheless this new version fixes the search to be relative to the binary path as it was with 1.22 and before. - At least consistent behaviour of playlist code in the face of looping. Looping is about individual tracks, always. They are looped also in random mode. Jumping (prev/next keys) is between tracks and resets the loop counter. The display of currently playing track in the playlist is fixed for random and looped play now (bug 198). - Looping is now mentioned for a to-be-repeated track with --verbose. - Move some compiler nagging from --enable-debug to --enable-nagging, fix up some new build failures by adding some pesky feature test macros. - Try not to pollute the terminal buffer with old progress bars in inverse video. Only the currently live one shall be seen. That one is pretty. The others are not. - Using plain dlopen()/LoadLibrary() for opening modules instead of libltdl. This also means that --with-module-suffix is gone in configure. - Windows builds only work when Unicode support is there (older than Windows 2000/XP will definitely not work anymore). - The out123 tool now features tone generation, with a mix of differing wave patterns. Makes sense to be able to test the audio output by itself, and it's fun. See --wave-freq and related parameters. - libmpg123 version 43: -- Add flags MPG123_NO_PEEK_END and MPG123_FORCE_SEEKABLE, as suggested by Bent Bisballe Nyeng. -- Build fix for MSVC (consistent definition of ssize_t, spotted by manx, bug 243). -- Build fix for --with-cpu=ppc_nofpu (thanks to Michael Kostylev, bug 244). -- Add asm optimized MSVC++ Win32|x64 and UWP|x64 builds -- Remove old, broken MSVC++ builds - libout123 version 2: -- Added OUT123_BINDIR. -- New search order for output plugin directory: MPG123_MODDIR, or (relative to executable directory OUT123_BINDIR) ../lib/mpg123, plugins libout123/modules/.libs, libout123/modules, ../libout123/modules/.libs, ../libout123/modules, and at last the installation prefix $libdir/mpg213/. This shall ensure that a build inside a source tree does not try to use old modules from the system prefix. The normal libtool wrapper deals with the shared libout123 or libmpg123 only, not modules. Note that if you set MPG123_MODDIR to a non-existing directory, no modules will be found (earlier versions fell back to other choices). -- The OUT123_NAME parameter is now copied by out123_param_from(), as is the newly added OUT123_BINDIR. -- Coreaudio: Use AudioComponents API on OSX >= 10.6 (thanks to Michael Weiser). -- Coreaudio: Fix behaviour of out123_drop(), not killing the output anymore without re-opening the device (bug 236, thanks to Taihei for the fix). To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 pkgsrc/audio/mpg123/Makefile.common \ pkgsrc/audio/mpg123/distinfo cvs rdiff -u -r1.17 -r1.18 pkgsrc/audio/mpg123-pulse/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/audio/mpg123/patches/patch-Makefile.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149233034790360 Content-Disposition: inline Content-Length: 4386 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.42 pkgsrc/audio/mpg123/Makefile.common:1.43 --- pkgsrc/audio/mpg123/Makefile.common:1.42 Fri Dec 23 13:50:03 2016 +++ pkgsrc/audio/mpg123/Makefile.common Sun Apr 16 08:12:27 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.42 2016/12/23 13:50:03 wiedi Exp $ +# $NetBSD: Makefile.common,v 1.43 2017/04/16 08:12:27 adam Exp $ # # used by audio/mpg123-arts/Makefile # used by audio/mpg123-esound/Makefile @@ -7,7 +7,7 @@ # used by audio/mpg123-pulse/Makefile # used by audio/mpg123-sun/Makefile -DISTNAME= mpg123-1.23.8 +DISTNAME= mpg123-1.24.0 PKGNAME?= ${DISTNAME:C/[[:alnum:]]*/&-${MPG123_MODULE}/} CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mpg123/} @@ -23,6 +23,7 @@ USE_LIBTOOL?= yes USE_TOOLS+= pkg-config gmake GNU_CONFIGURE?= yes CONFIGURE_ARGS+= --enable-modules=yes +CONFIGURE_ARGS+= --with-optimization=0 # our CFLAGS are good enough CONFIGURE_ENV+= BUILD_${MPG123_MODULE:tu}=yes CONFIGURE_ENV+= MPG123_MODULE=${MPG123_MODULE:Q} @@ -41,6 +42,5 @@ do-install: ${DESTDIR}${PREFIX}/lib/mpg123 .endif -#.include "../../devel/libltdl/convenience.mk" -.include "../../devel/libltdl/buildlink3.mk" +#.include "../../devel/libltdl/buildlink3.mk" .include "../../mk/dlopen.buildlink3.mk" Index: pkgsrc/audio/mpg123/distinfo diff -u pkgsrc/audio/mpg123/distinfo:1.42 pkgsrc/audio/mpg123/distinfo:1.43 --- pkgsrc/audio/mpg123/distinfo:1.42 Sun Dec 18 22:58:34 2016 +++ pkgsrc/audio/mpg123/distinfo Sun Apr 16 08:12:27 2017 @@ -1,9 +1,10 @@ -$NetBSD: distinfo,v 1.42 2016/12/18 22:58:34 adam Exp $ +$NetBSD: distinfo,v 1.43 2017/04/16 08:12:27 adam Exp $ -SHA1 (mpg123-1.23.8.tar.bz2) = 799b9fe2beb5ae1c1769b10d011c0904f8e5273e -RMD160 (mpg123-1.23.8.tar.bz2) = 9e6bf8351b2c5fe7423607719ca969e61f29b20d -SHA512 (mpg123-1.23.8.tar.bz2) = 7b77b543bd6a127095c6a6a2e7f9b5933f5a391734cc6dcbc160f786008afcd74646a7c304e1be682042221648b0fcae7efafda4bbe66ba30a7021740abddc34 -Size (mpg123-1.23.8.tar.bz2) = 893728 bytes +SHA1 (mpg123-1.24.0.tar.bz2) = 49028ec5907966ad66ee673d38ef8771895c1f9b +RMD160 (mpg123-1.24.0.tar.bz2) = bb1ccf072748bbdaa9b5a2e91731449c79ae7df5 +SHA512 (mpg123-1.24.0.tar.bz2) = e7c0d7a103daf496e75a6aa6aca861cfc0ad391f242335990c2360305e567039d24ca3b37a35f79b75749055e255f4692b8b43d2fec332b119223b00e12b0cb7 +Size (mpg123-1.24.0.tar.bz2) = 912049 bytes +SHA1 (patch-Makefile.in) = 0fb183cf29d700d12d45b4cdfef2449668ef18cd SHA1 (patch-aa) = 4b2761219dd8fb92079d7f96872e56beb702696a SHA1 (patch-ad) = f07b637c3fc1d3ea0426013fc25bca8e3aecba56 SHA1 (patch-af) = ba9ccddda15f0e711675b1bbad72b082b34b15f5 Index: pkgsrc/audio/mpg123-pulse/Makefile diff -u pkgsrc/audio/mpg123-pulse/Makefile:1.17 pkgsrc/audio/mpg123-pulse/Makefile:1.18 --- pkgsrc/audio/mpg123-pulse/Makefile:1.17 Sat Jan 21 20:06:47 2017 +++ pkgsrc/audio/mpg123-pulse/Makefile Sun Apr 16 08:12:27 2017 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.17 2017/01/21 20:06:47 ryoon Exp $ +# $NetBSD: Makefile,v 1.18 2017/04/16 08:12:27 adam Exp $ MPG123_MODULE= pulse -PKGREVISION= 1 .include "../../audio/mpg123/Makefile.common" .include "../../audio/mpg123/buildlink3.mk" Added files: Index: pkgsrc/audio/mpg123/patches/patch-Makefile.in diff -u /dev/null pkgsrc/audio/mpg123/patches/patch-Makefile.in:1.1 --- /dev/null Sun Apr 16 08:12:27 2017 +++ pkgsrc/audio/mpg123/patches/patch-Makefile.in Sun Apr 16 08:12:27 2017 @@ -0,0 +1,19 @@ +$NetBSD: patch-Makefile.in,v 1.1 2017/04/16 08:12:27 adam Exp $ + +Keep .la files for PLISTs. + +--- Makefile.in.orig 2017-04-16 06:26:06.000000000 +0000 ++++ Makefile.in +@@ -4072,12 +4072,6 @@ uninstall-man: uninstall-man1 + @USE_YASM_FOR_AVX_TRUE@ @echo "pic_object='`basename $<`'" >>$@ + @USE_YASM_FOR_AVX_TRUE@ @echo "non_pic_object='`basename $<`'" >>$@ + +-# Get rid of .la files, at least _after_ install. +-@HAVE_MODULES_TRUE@install-exec-hook: +-@HAVE_MODULES_TRUE@ cd $(DESTDIR)$(pkglibdir) && $(RM) @output_modules_la@ +-# The above breaks uninstall of module .so files? +-@HAVE_MODULES_TRUE@uninstall-hook: +-@HAVE_MODULES_TRUE@ for m in @output_modules_la@; do eval $$(grep dlname= src/libout123/modules/$$m) && $(RM) $(DESTDIR)$(pkglibdir)/$$dlname; done + + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. --_----------=_149233034790360--