The NetBSD Project

CVS log for pkgsrc/audio/libsndfile/PLIST

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / audio / libsndfile

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.23 / (download) - annotate - [select for diffs], Sun Jan 24 14:50:25 2021 UTC (2 years, 8 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2, pkgsrc-2021Q1-base, pkgsrc-2021Q1, HEAD
Changes since 1.22: +13 -13 lines
Diff to previous 1.22 (colored)

libsndfile: Update to 1.0.31

Version 1.0.31 (2021-01-24)

  * The releaser of libsndfile starting from this version is the libsndfile team
    member @SoapGentoo, see AUTHORS for details.
  * Implement fast SSE2 optimized psf_lrintf() and psf_lrintf() functions to
    improve perfomance when libsndfile is built using Visual C++ (especially)
    and other compilers on x86 and AMD64 platforms. See also description of
    ENABLE_SSE2 CMake option in README.md.
  * Documentation:
    * Move site to new URL: http://libsndfile.github.io/libsndfile/
    * Convert documentation pages from HTML to Markdown
    * Use GitHub's Jekyll static site generator to generate static HTML pages
      for site
    * Fix api.md table error, thanks to @zodf0055980
    * Other docuemntation fixes and updates
  * Change CMake's project name from sndfile to libsndfile as it should be.
  * Change behaviour of ENABLE_STATIC_RUNTIME option. In short:
    * You can use ENABLE_STATIC_RUNTIME for CMake >= 3.15 without error.
    * You can use your our method to set MSVC runtime library flags if none of
      ENABLE_STATIC_RUNTIME and CMAKE_MSVC_RUNTIME_LIBRARY were set.
    Advanced information:
    * If this option is defined (set to ON or OFF), set CMP0091 policy to OLD
      (we handle MSVC runtime library flags using compiler flags), set
      corresponding compiler flags for user.
    * NEW: If this option is not defined, set CMP0091 policy to OLD (we handle
      MSVC runtime library flags using compiler flags), don't touch compiler
      options, allow user to set it manually.
    * NEW: If new CMake option CMAKE_MSVC_RUNTIME_LIBRARY is set, change
      CMP0091 policy to NEW (we handle MSVC runtime library flags using that
      option), don't touch compiler flags.
    * NEW: If both ENABLE_STATIC_RUNTIME and CMAKE_MSVC_RUNTIME_LIBRARY are set,
      terminate configuration with fatal error.
    * For MinGW toolchain this option is experimental. If you enabled it and
      then disabled again, you need to clear CMake cache (delete
      CMakeCache.txt).
  * Make CMake clip test faster.
  * Fix CMake bug with sndio library dependency, thanks to @drhenault.
  * Fix memory leak in wav_read_smpl_chunk() function, credit to OSS-Fuzz.
  * Fix aiff_read_header() memory leak(), credit to OSS-Fuzz.
  * Fix leak in wav_read_header(), credit to OSS-Fuzz.
  * Fix leak in wavlike_read_cart_chunk(), credit to OSS-Fuzz.
  * Fix memory leak in wav_read_acid_chunk(), credit to OSS-Fuzz.
  * Fix memory leak in aiff_read_basc_chunk(), credit to OSS-Fuzz.
  * Fix memory leak in wavlike_read_peak_chunk(), credit to OSS-Fuzz.
  * Fix memory leak in aiff_read_header(), credit to OSS-Fuzz.
  * Fix use of uninitialized value in exif_subchunk_parse(), credit to OSS-Fuzz.
  * Fix use of uninitialized value in endswap_int64_t_array(), credit to
    OSS-Fuzz.
  * Fix up the fuzzer so that it can't under or overseek,
    thanks to Max Dymond <cmeister2@gmail.com>.
  * Fix Autotools configure on macOS, thanks to @tmcguire and @nwh.
  * Exclude repository-configuration from git-archive, thanks to @umlaeute.
  * Use version-script when compiling with clang on Unix with Autotools, thanks
    to @tstellar.
  * Improve handling of SMPL chunks in WAV files, thanks to @zodf0055980.

Revision 1.22 / (download) - annotate - [select for diffs], Sun Sep 20 08:30:16 2020 UTC (3 years ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2020Q4-base, pkgsrc-2020Q4, pkgsrc-2020Q3-base, pkgsrc-2020Q3
Changes since 1.21: +2 -1 lines
Diff to previous 1.21 (colored)

libsndfile: update to 1.0.30.

Version 1.0.30 (2020-09-18)

  * Fix critical CMake bug with broken ABI of shared libsndfile library.
  * CMake build system considered to be stable.
  * Move sndfile.h.in from src/ to include/ directory. To avoid problems,
    delete old generated sndfile.h from $(top_builddir)/src.
  * Huge documentation update.
  * Fix opus test failures on BE platforms, thanks to
    Arthur Taylor <art@ified.ca>.
  * Fix bug when sf_open_fd() function sometimes leaves filehandle open, even
    if `close_desc` parameter is TRUE, thanks to @umläute.
  * Fix infinite loops on some pathological SD2 files, thanks to
    Jeremy Friesner <jaf@meyersound.com>.
  * Switch to GitHub Actions for continuous integration.
  * Add OSS-Fuzz tests to GitHub Actions workflow, thanks to
    Max Dymond <cmeister2@gmail.com>.
  * Fix memory leak in wavlike_read_bext_chunk() function, credit to OSS-Fuzz.
  * Fix undefined behavior in avr-read_header() function, credit to OSS-Fuzz.
  * Add INSTALL_PKGCONFIG_MODULE CMake option to control sndfile.pc file
    installation, see README.md for details.
  * Add INSTALL_MANPAGES CMake option, see README.md for details.
  * Fix ENABLE_COMPATIBLE_LIBSNDFILE_NAME CMake option, now it works on MinGW
    platform too.
  * Fix ENABLE_CPACK CMake option, see README.md for details.
  * Fix ENABLE_STATIC_RUNTIME and CMAKE_MSVC_RUNTIME_LIBRARY behavior, see
    README.md for details.
  * Fix CMake man pages installation bug when sndfile-deinterleave.1 and
    sndfile-metadata-set.1 were not installed.
  * Fix sndfile-regtest paths handling on Windows platform, thanks to
    Gisle Vanem <gvanem@yahoo.no>.

Revision 1.21 / (download) - annotate - [select for diffs], Sat Aug 15 23:36:38 2020 UTC (3 years, 1 month ago) by nia
Branch: MAIN
Changes since 1.20: +2 -1 lines
Diff to previous 1.20 (colored)

libsndfile: Update to 1.0.29

Version 1.0.29 (2020-08-15)
  * Add support for Opus files.
  * Autotool build system improvements.
  * CMake build system improvements.
  * Fixes for: CVE-2017-12562, CVE-2017-17456, CVE-2017-17457, CVE-2018-19661,
    CVE-2018-19662, CVE-2018-19758 and CVE-2019-3832.
  * Add BWF v2 loudness parameters.
  * Wave64: Permit and skip arbitrary chunks prior to the data chunk.
  * Fix ASAN crash in wavlike_ima_seek().
  * Fix IMA-ADPCM encoding for AIFF files.
  * sndfile-convert: Handle gsm, vox and opus extensions the same way.
  * Add SFC_SET_OGG_PAGE_LATENCY_MS command to get Ogg page latency for Ogg Opus
    files.
  * Fix parsing of some SD2 files.
  * Documentation updates.
  * Minor bug fixes and improvements.

Revision 1.20 / (download) - annotate - [select for diffs], Wed Apr 19 13:32:12 2017 UTC (6 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1, pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3, pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1, pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2
Changes since 1.19: +0 -2 lines
Diff to previous 1.19 (colored)

Updated libsndfile to 1.0.28.

Version 1.0.28 (2017-04-02)
  * Fix buffer overruns in FLAC and ID3 handling code.
  * Move to variable length header storage.
  * Fix detection of Large File Support for 32 bit systems.
  * Remove large stack allocations in ALAC handling code.
  * Remove all use of Variable Length Arrays.
  * Minor bug fixes and improvements.

Revision 1.19 / (download) - annotate - [select for diffs], Fri Dec 4 20:39:05 2015 UTC (7 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4
Changes since 1.18: +17 -17 lines
Diff to previous 1.18 (colored)

Update libsndfile to 1.0.26:

Version 1.0.26 (2015-11-22)
  * Fix for CVE-2014-9496, SD2 buffer read overflow.
  * Fix for CVE-2014-9756, file_io.c divide by zero.
  * Fix for CVE-2015-7805, AIIF heap write overflow.
  * Add support for ALAC encoder in a CAF container.
  * Add support for Cart chunks in WAV files.
  * Minor bug fixes and improvements.

Revision 1.18 / (download) - annotate - [select for diffs], Sat Oct 16 08:23:04 2010 UTC (12 years, 11 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2, pkgsrc-2015Q1-base, pkgsrc-2015Q1, pkgsrc-2014Q4-base, pkgsrc-2014Q4, pkgsrc-2014Q3-base, pkgsrc-2014Q3, pkgsrc-2014Q2-base, pkgsrc-2014Q2, pkgsrc-2014Q1-base, pkgsrc-2014Q1, pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2, pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4, pkgsrc-2012Q3-base, pkgsrc-2012Q3, pkgsrc-2012Q2-base, pkgsrc-2012Q2, pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4
Changes since 1.17: +4 -1 lines
Diff to previous 1.17 (colored)

Changes 1.0.23:
* Minor bug fixes.

Revision 1.17 / (download) - annotate - [select for diffs], Tue Dec 15 11:08:38 2009 UTC (13 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4
Changes since 1.16: +8 -2 lines
Diff to previous 1.16 (colored)

Update to 1.0.21:

Version 1.0.21 (2009-12-13)
  * Add a couple of new binary programs to programs/ dir.
  * Remove sndfile-jackplay (now in sndfile-tools package).
  * Add windows only function sf_wchar_open().
  * Bunch of minor bug fixes.

(The last entry sums up at least the DOS patches we had in pkgsrc.)

Revision 1.16 / (download) - annotate - [select for diffs], Sun Jun 14 17:32:15 2009 UTC (14 years, 3 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2
Changes since 1.15: +1 -3 lines
Diff to previous 1.15 (colored)

Remove @dirrm entries from PLISTs

Revision 1.15 / (download) - annotate - [select for diffs], Sat Feb 21 13:20:45 2009 UTC (14 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2009Q1-base, pkgsrc-2009Q1
Changes since 1.14: +6 -7 lines
Diff to previous 1.14 (colored)

Update to 1.0.18:

Version 1.0.18 (2009-02-07)
  * Add Ogg/Vorbis support (thanks to John ffitch).
  * Remove captive FLAC library.
  * Many new features and bug fixes.
  * Generate Win32 and Win64 pre-compiled binaries.

Add ogg and vorbis dependencies to bl3.mk and increase ABI depends.

Revision 1.14 / (download) - annotate - [select for diffs], Fri Sep 1 06:02:23 2006 UTC (17 years, 1 month ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, pkgsrc-2008Q2-base, pkgsrc-2008Q2, pkgsrc-2008Q1-base, pkgsrc-2008Q1, pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2, pkgsrc-2007Q1-base, pkgsrc-2007Q1, pkgsrc-2006Q4-base, pkgsrc-2006Q4, pkgsrc-2006Q3-base, pkgsrc-2006Q3, cwrapper, cube-native-xorg-base, cube-native-xorg
Changes since 1.13: +2 -1 lines
Diff to previous 1.13 (colored)

Changes 1.0.17:
* Add sndfile.hh C++ wrapper.
* Update Win32 MinGW build instructions.
* Minor bug fixes and cleanups.

Revision 1.13 / (download) - annotate - [select for diffs], Fri Sep 30 13:26:02 2005 UTC (18 years ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2006Q2-base, pkgsrc-2006Q2, pkgsrc-2006Q1-base, pkgsrc-2006Q1, pkgsrc-2005Q4-base, pkgsrc-2005Q4
Changes since 1.12: +2 -1 lines
Diff to previous 1.12 (colored)

Changes 1.0.12:
* Add support for FLAC and Apple's Core Audio Format (CAF).
* Add virtual I/O interface (still needs docs).
* Cygwin and other Win32 fixes.
* Minor bug fixes and cleanups.

Revision 1.12 / (download) - annotate - [select for diffs], Wed Sep 22 08:09:16 2004 UTC (19 years ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base, pkgsrc-2005Q3, pkgsrc-2005Q2-base, pkgsrc-2005Q2, pkgsrc-2005Q1-base, pkgsrc-2005Q1, pkgsrc-2004Q4-base, pkgsrc-2004Q4
Changes since 1.11: +1 -5 lines
Diff to previous 1.11 (colored)

Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:

	lib/libfoo.a
	lib/libfoo.la
	lib/libfoo.so
	lib/libfoo.so.0
	lib/libfoo.so.0.1

one simply needs:

	lib/libfoo.la

and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.

Also make LIBTOOLIZE_PLIST default to "yes".

Revision 1.11 / (download) - annotate - [select for diffs], Mon Jun 28 08:14:03 2004 UTC (19 years, 3 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base, pkgsrc-2004Q3
Changes since 1.10: +19 -2 lines
Diff to previous 1.10 (colored)

Changes 1.0.10:
* Minor bug fixes
* Fix support for Win32 MinGW compiler

Revision 1.10 / (download) - annotate - [select for diffs], Fri Apr 2 10:13:43 2004 UTC (19 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2004Q2-base, pkgsrc-2004Q2
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

Changes 1.0.9:
* Add AVR format
* Improve handling of some WAV files

Revision 1.9 / (download) - annotate - [select for diffs], Mon Mar 29 08:08:13 2004 UTC (19 years, 6 months ago) by adam
Branch: MAIN
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored)

Changes 1.0.8:
* Minor bug fixes

Revision 1.8 / (download) - annotate - [select for diffs], Thu Feb 26 15:41:50 2004 UTC (19 years, 7 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2004Q1-base, pkgsrc-2004Q1
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored)

Changes 1.0.7: Fix build problems on MacOSX and fix ia64/MIPS etc clip mode detection

Revision 1.7 / (download) - annotate - [select for diffs], Fri Feb 13 14:57:20 2004 UTC (19 years, 7 months ago) by adam
Branch: MAIN
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored)

Changes 1.0.6:
Large file fix for Linux/Solaris
New functionality and Win32 improvements

Revision 1.6 / (download) - annotate - [select for diffs], Fri May 23 09:30:10 2003 UTC (20 years, 4 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base, pkgsrc-2003Q4
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored)

Update to 1.0.5:
  * Added support for HTK files.
  * Added new function sf_open_fd() to allow for secure opening of temporary
    files as well as reading/writing sound files embedded within larger
    container files.
  * Added string support for AIFF files.
  * Minor bug fixes and code cleanups.

Revision 1.5 / (download) - annotate - [select for diffs], Sun Mar 2 22:26:37 2003 UTC (20 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

Update to 1.0.4, requested by adam.
Changes since 1.0.3:
  * Added suport of PVF and XI files.
  * Added functionality for setting and retrieving strings from sound files.
  * Minor code cleanups and bug fixes.

Revision 1.4 / (download) - annotate - [select for diffs], Thu Jan 2 22:44:44 2003 UTC (20 years, 9 months ago) by jmmv
Branch: MAIN
CVS Tags: netbsd-1-6-1-base, netbsd-1-6-1
Changes since 1.3: +1 -2 lines
Diff to previous 1.3 (colored)

The lib/pkgconfig has been added to the list of standard directories, so do
not try to remove it, even if empty.

Revision 1.3 / (download) - annotate - [select for diffs], Sat Dec 14 17:30:31 2002 UTC (20 years, 9 months ago) by jmmv
Branch: MAIN
Changes since 1.2: +6 -4 lines
Diff to previous 1.2 (colored)

Update libsndfile to 1.0.3.

There have been several changes since 1.0.1, but the most important ones
are (according to the homepage):
- Version 1.0.2 (Nov 24 2002) Added VOX ADPCM format.
- Version 1.0.3 (Dec 09 2002) Fixes for Linux on ia64 CPUs.

Revision 1.2 / (download) - annotate - [select for diffs], Sat Sep 28 01:28:25 2002 UTC (21 years ago) by wiz
Branch: MAIN
Changes since 1.1: +8 -2 lines
Diff to previous 1.1 (colored)

Update to 1.0.1.
Changes:
Version 1.0.1 (2002-09-14)
  * Added MAT and MAT5 file formats.
  * Minor bug fixes.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Aug 23 11:39:27 2002 UTC (21 years, 1 month ago) by dillo
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

add libsndfile 1.0.0

Libsndfile is a C library for reading and writing files containing
sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format)
through one standard library interface.

Revision 1.1 / (download) - annotate - [select for diffs], Fri Aug 23 11:39:27 2002 UTC (21 years, 1 month ago) by dillo
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>