Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 0F15E1A923B for ; Sun, 24 Jan 2021 16:12:54 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4585084D47; Sun, 24 Jan 2021 16:12:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 773C585199 for ; Sun, 24 Jan 2021 16:12:52 +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 KjnlrLEp27CU for ; Sun, 24 Jan 2021 16:12:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 8CD5C84D47 for ; Sun, 24 Jan 2021 16:12:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 89C4DFA9D; Sun, 24 Jan 2021 16:12:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1611504771110050" MIME-Version: 1.0 Date: Sun, 24 Jan 2021 16:12:51 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/audio/libsamplerate To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210124161251.89C4DFA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1611504771110050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jan 24 16:12:51 UTC 2021 Modified Files: pkgsrc/audio/libsamplerate: Makefile PLIST distinfo Removed Files: pkgsrc/audio/libsamplerate/patches: patch-examples_audio__out.h patch-examples_audio_out.c Log Message: libsndfile: Update to 0.2.1 Version 0.2.1 (2021-01-23) * Fix incorrect passing of -version-info to libtool, causing a regression on versioned file name of the shared library (#140). * Fix time resolution on GNU/Hurd for throughput_test * Update AUTHORS and release manager details Version 0.2.0 (2021-01-21) * API: * Add `src_clone()` function to clone a SRC_STATE* handle * Cleanup Autotools build system. * Require C99 compiler * Move `sndfile-resample` to sndfile-tools package * Add missing `src_get_channels`() export to windows def file * Fix macOS compile errors and modernize audio api on that platform * Add Octave scripts to generate filter coefficients * Fix two potential undefined behaviours * Fix a buffer out-of-bounds read error in src/src_sinc.c * Improve multichan_throughput_test * Replace buggy implementationg of Duffs device by regular loop * CMake: * Fix CMake generated shared library ABI compliance with Autotools build * Documentation: * Move site to new URL: http://libsndfile.github.io/libsamplerate/ * Convert documentation pages from HTML to Markdown * Use GitHub's Jekyll static site generator to generate static HTML pages for site To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/audio/libsamplerate/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/audio/libsamplerate/PLIST cvs rdiff -u -r1.12 -r1.13 pkgsrc/audio/libsamplerate/distinfo cvs rdiff -u -r1.1 -r0 \ pkgsrc/audio/libsamplerate/patches/patch-examples_audio__out.h cvs rdiff -u -r1.2 -r0 \ pkgsrc/audio/libsamplerate/patches/patch-examples_audio_out.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1611504771110050 Content-Disposition: inline Content-Length: 3949 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/libsamplerate/Makefile diff -u pkgsrc/audio/libsamplerate/Makefile:1.27 pkgsrc/audio/libsamplerate/Makefile:1.28 --- pkgsrc/audio/libsamplerate/Makefile:1.27 Tue Aug 18 17:57:25 2020 +++ pkgsrc/audio/libsamplerate/Makefile Sun Jan 24 16:12:51 2021 @@ -1,12 +1,13 @@ -# $NetBSD: Makefile,v 1.27 2020/08/18 17:57:25 leot Exp $ +# $NetBSD: Makefile,v 1.28 2021/01/24 16:12:51 nia Exp $ -DISTNAME= libsamplerate-0.1.9 -PKGREVISION= 1 +DISTNAME= libsamplerate-0.2.1 CATEGORIES= audio -MASTER_SITES= http://www.mega-nerd.com/SRC/ +MASTER_SITES= ${MASTER_SITE_GITHUB:=libsndfile/} +GITHUB_RELEASE= ${PKGVERSION_NOREV} +EXTRACT_SUFX= .tar.bz2 MAINTAINER= pkgsrc-users@NetBSD.org -HOMEPAGE= http://www.mega-nerd.com/SRC/ +HOMEPAGE= https://libsndfile.github.io/libsamplerate/ COMMENT= Sample rate converter library LICENSE= 2-clause-bsd Index: pkgsrc/audio/libsamplerate/PLIST diff -u pkgsrc/audio/libsamplerate/PLIST:1.6 pkgsrc/audio/libsamplerate/PLIST:1.7 --- pkgsrc/audio/libsamplerate/PLIST:1.6 Wed Jul 4 08:58:09 2012 +++ pkgsrc/audio/libsamplerate/PLIST Sun Jan 24 16:12:51 2021 @@ -1,20 +1,20 @@ -@comment $NetBSD: PLIST,v 1.6 2012/07/04 08:58:09 adam Exp $ -bin/sndfile-resample +@comment $NetBSD: PLIST,v 1.7 2021/01/24 16:12:51 nia Exp $ include/samplerate.h lib/libsamplerate.la lib/pkgconfig/samplerate.pc -share/doc/libsamplerate0-dev/html/SRC.css -share/doc/libsamplerate0-dev/html/SRC.png -share/doc/libsamplerate0-dev/html/api.html -share/doc/libsamplerate0-dev/html/api_callback.html -share/doc/libsamplerate0-dev/html/api_full.html -share/doc/libsamplerate0-dev/html/api_misc.html -share/doc/libsamplerate0-dev/html/api_simple.html -share/doc/libsamplerate0-dev/html/download.html -share/doc/libsamplerate0-dev/html/faq.html -share/doc/libsamplerate0-dev/html/history.html -share/doc/libsamplerate0-dev/html/index.html -share/doc/libsamplerate0-dev/html/license.html -share/doc/libsamplerate0-dev/html/lists.html -share/doc/libsamplerate0-dev/html/quality.html -share/doc/libsamplerate0-dev/html/win32.html +share/doc/libsamplerate/SRC.css +share/doc/libsamplerate/SRC.png +share/doc/libsamplerate/api.md +share/doc/libsamplerate/api_callback.md +share/doc/libsamplerate/api_full.md +share/doc/libsamplerate/api_misc.md +share/doc/libsamplerate/api_simple.md +share/doc/libsamplerate/bugs.md +share/doc/libsamplerate/download.md +share/doc/libsamplerate/faq.md +share/doc/libsamplerate/history.md +share/doc/libsamplerate/index.md +share/doc/libsamplerate/license.md +share/doc/libsamplerate/lists.md +share/doc/libsamplerate/quality.md +share/doc/libsamplerate/win32.md Index: pkgsrc/audio/libsamplerate/distinfo diff -u pkgsrc/audio/libsamplerate/distinfo:1.12 pkgsrc/audio/libsamplerate/distinfo:1.13 --- pkgsrc/audio/libsamplerate/distinfo:1.12 Mon Apr 24 10:08:40 2017 +++ pkgsrc/audio/libsamplerate/distinfo Sun Jan 24 16:12:51 2021 @@ -1,8 +1,6 @@ -$NetBSD: distinfo,v 1.12 2017/04/24 10:08:40 maya Exp $ +$NetBSD: distinfo,v 1.13 2021/01/24 16:12:51 nia Exp $ -SHA1 (libsamplerate-0.1.9.tar.gz) = ed60f957a4ff87aa15cbb1f3dbd886fa7e5e9566 -RMD160 (libsamplerate-0.1.9.tar.gz) = ec6f3542b5e43f398ad7e5dfd9dc35902b06d762 -SHA512 (libsamplerate-0.1.9.tar.gz) = 78596657963cbf06785e3e6e1190b093df71da52ca340e75bd8246a962cd79dd1c90fa5527c607cebcb296e2c1ee605015278b274e3b768f2f3fbeb0eadfb728 -Size (libsamplerate-0.1.9.tar.gz) = 4336641 bytes -SHA1 (patch-examples_audio__out.h) = 52d0f7666d4ff5b1463e7242f3ff2befc0d35606 -SHA1 (patch-examples_audio_out.c) = 4fb964da017372431dde99b71b5aa96cbb66a64c +SHA1 (libsamplerate-0.2.1.tar.bz2) = 075ffa9d53171db4356ed8f6419d0b8e3a1e8394 +RMD160 (libsamplerate-0.2.1.tar.bz2) = 2ab41928588d9aee60369e5ed678d99d1b1bab15 +SHA512 (libsamplerate-0.2.1.tar.bz2) = f54f7f12c9536868d7a11fc9cbb86857505e7b75fe34cedaf0b9bfc864da6037296b3eae303a33d4c87b7fd20d96933b91ef59c8cc3d1313b9fc21654e5daa2d +Size (libsamplerate-0.2.1.tar.bz2) = 3747188 bytes --_----------=_1611504771110050--