Commit graph

8024 commits

Author SHA1 Message Date
adam
97e3fe97b5 Revbump after updating textproc/oniguruma 2018-03-22 08:14:51 +00:00
maya
0b10168abd tremor: add missing patch.
(Got into cvs problems, sorry.)
2018-03-16 23:02:09 +00:00
maya
07005017dc tremor: update to latest git commit.
This fixes an out of bound write, but possibly many other changes.
Unfortunately upstream doesn't do releases for tremor, so I manually
fetch the tarball and uploaded it.
2018-03-16 21:54:13 +00:00
maya
108f499e29 libvorbis: add test target. 2018-03-16 20:37:10 +00:00
maya
256af02bf5 libvorbis: update to 1.3.6. security fix.
libvorbis 1.3.6 (2018-03-16) -- "Xiph.Org libVorbis I 20180316 (Now 100% fewer shells)"

* Fix CVE-2018-5146 - out-of-bounds write on codebook decoding.
* Fix CVE-2017-14632 - free() on unitialized data
* Fix CVE-2017-14633 - out-of-bounds read
* Fix bitrate metadata parsing.
* Fix out-of-bounds read in codebook parsing.
* Fix residue vector size in Vorbis I spec.
* Appveyor support
* Travis CI support
* Add secondary CMake build system.
* Build system fixes
2018-03-16 20:23:53 +00:00
wiz
c57215a7b2 Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
wiz
26208b76cc abcde: update to 2.9.1.
abcde 2.9.1

 * Merged Debian packaging files updates
 * Fixups in the new Musicbrainz code:
   + Cope with not finding an entry for a CD!
   + Fix (again!) dealing with CDs with no release events

 -- Steve McIntyre <93sam@debian.org>  Fri, 09 Mar 2018 23:01:04 +0000

abcde 2.9

 * Add some documentation for the aged CD ripper dagrab. Thanks to
   Teika Kazura for the notification and suggested documentation. This
   closes Issue 50: https://abcde.einval.com/bugzilla/show_bug.cgi?id=50
 * Work by Matthias Andree <matthias.andree@gmx.de> to address the issue
   where abcde fails with accented characters from CD-TEXT. The issue and
   partial fix applied here documented in Issue 53:
   https://abcde.einval.com/bugzilla/show_bug.cgi?id=53
   and also in the abcde mailing list:
   https://lists.einval.com/pipermail/abcde-users/2017-January/000232.html
 * Allow for embedding of  album art downloaded by the getalbumart function.
   Currently this is available for flac (using metaflac), mp3 (using eyed3),
    m4a (using AtomicParsley) and WavPack aka wv (using wvtag).
    This can be invoked in 3 ways:

     1. Use the commandline '-B' option (this will also call getalbumart)
     2. Use the commandline '-a embedalbumart' option to add to list of actions
     3. Use 'embedalbumart' in the 'ACTIONS' list in ~/.abcde.conf

   Still needs more development but it is perfectly usable at the moment!
 * Use md5 rather than md5sum under macOS. Thanks to JCount for the bug
   report and also the fix. This solves Issue 59:
   https://abcde.einval.com/bugzilla/show_bug.cgi?id=59
 * Support added for encoding with Audio Interchange File Format (AIFF).
   Thanks to Massimo Villa for the feature request. FFmpeg is required
   for the encoding, the container and suffix are 'aiff'.
 * Allow selection of either cddb or musicbrainz from the command line:

  -Q   Select CDDBMETHOD from the command line. Choice is cddb or musicbrainz.

   Command line letters are fast running out but the 'Q' option quite neatly
   stands for 'Query'!
 * Allow for embedding with do_embedalbumart() for single track encodes when
   OUTPUTFORMAT and ONETRACKOUTPUTFORMAT are different. Thanks to Ashley Gittins
   for the bug report. This closes Issue 63:
   https://abcde.einval.com/bugzilla/show_bug.cgi?id=63
 * Experimental support for embedding albumart with ogg files. The slightly
   tortuous technique drawn from 2 sources:

   1. https://github.com/biapy/howto.biapy.com/blob/master/various/mussync-tools
   2. https://github.com/acabal/scripts/blob/master/ogg-cover-art

   Testing is strongly encouraged, perhaps the simplest way to test is with:

       abcde -o ogg -B

    Or the appropriate settings in an ~/.abcde.conf file.
 * Massive rework of CD lookup code so support multiple sources
   better. Thanks to Gabriel Rosenkoetter for his initial idea in this
   area, and to Tomasz Goliński on irc for initial inspiration on how
   this should work better.
   There are now 3 different options for CD lookup: cddb, musicbrainz and
   cdtext. They can all be listed in a comma-separated list for
   CDDBMETHOD and the code will now call all of them in the sequence
   listed. All the results will be combined into one list at the end for
   the user to select, just like would have previously worked for one
   source only. Closes Issue 42:
   https://abcde.einval.com/bugzilla/show_bug.cgi?id=42
 * Fix Musicbrainz ID calculation in makeids()
   Apply fix suggested by petecollins24@gmail.com; add PREGAP to
   LEADOUT to correct Musicbrainz ID calculation. Hopefully closes
   Issue 54: https://abcde.einval.com/bugzilla/show_bug.cgi?id=54
 * Fix abcde.mkcue() when handling the --wholedisk option. Thanks to
   Nino Burini for the patch. Closes Issue 47 and maybe also 45:
   https://abcde.einval.com/bugzilla/show_bug.cgi?id=47
   https://abcde.einval.com/bugzilla/show_bug.cgi?id=45
 * Add more comprehensive examples for filename munging in the example
   config file. Closes Issue 49:
   https://abcde.einval.com/bugzilla/show_bug.cgi?id=49
 * Add a more better fix for the year lookup problem in abcde-musicbrainz-tool
   Thanks to Tom Samstag for the patch. Closes Issue 57:
   https://abcde.einval.com/bugzilla/show_bug.cgi?id=57
 * Redirect stderr on "which" calls to clear up error noise on some
   systems. Closes Issue 56:
   https://abcde.einval.com/bugzilla/show_bug.cgi?id=56
 * Add Irix support, based on a patch by abcde@canavan.de. Closes Issue 29:
   https://abcde.einval.com/bugzilla/show_bug.cgi?id=29
 * Rework abcde-musicbrainz-tool to work with WebService::MusicBrainz 1.x
   Thanks to Nicolas Guillaumin for the patch. Closes Issue 60:
   https://abcde.einval.com/bugzilla/show_bug.cgi?id=60
   Also added a specific dependency on version 1.0.4 or newer, so
   abcde-musicbrainz-tool will abort if the version found is too old.
   Since tweaked to deal with multi-artist albums and tracks more
   completely.
 * Add resume support in do_getalbumart()
 * Fix getopts setup for "P". Thanks to Alan W. Kerr for reporting this.
 * Major set of code cleanups to fix up lots of warnings found with
   shellcheck, and a few other style issues:
   + Lots of quoting fixes
   + Use $( instead of `
   + Stop using -o and -a syntax with if [ - use || or && instead
   + Wrap and shorten some very long lines
 * Wrap some output messages so they fit on a standard width console
 * Factor out repeated code and make page() more useful
 * Add version check before resuming from an old ripping run
2018-03-11 17:31:44 +00:00
wiz
380b6ec244 xorgproto: use xorgproto instead of separate *proto packages
Remove now obsolete packages.
2018-03-07 11:57:28 +00:00
kamil
f842c2761f libshout: Support OpenSSL 1.1
Keep backwards-compatible support for OpenSSL 1.0.

Patch inspired by ArchLinux AUR: libshout-idjc-git.
2018-03-05 09:16:28 +00:00
rillig
9291922416 audio/libsbsms: fix typo in BROKEN_EXCEPT_ON_PLATFORM 2018-03-04 18:26:42 +00:00
wiz
a39a63e5c8 aeneas: fix CATEGORIES 2018-02-28 22:14:37 +00:00
wiz
00d411e4b2 audio/Makefile: + aeneas 2018-02-28 22:10:39 +00:00
wiz
bf5af3fc6a audio/aeneas: import aeneas-1.7.3
aeneas is a Python/C library and a set of tools to automagically
synchronize audio and text.

aeneas automatically generates a synchronization map between a list
of text fragments and an audio file containing the narration of
the text. In computer science this task is known as (automatically
computing a) forced alignment.
2018-02-28 22:10:13 +00:00
wiz
8d56446cb5 espeak: honor LDFLAGS. Fixes RELRO build.
Bump PKGREVISION.
2018-02-28 21:49:55 +00:00
wiz
48c2f68cf6 portaudio: honor LDFLAGS. Fixes RELRO build.
Bump PKGREVISION.
2018-02-28 21:46:51 +00:00
khorben
506fbe992e Revbump for packages depending on devel/libusb{,compat} 2018-02-27 23:56:07 +00:00
adam
3662185f5b revbump after x264-devel update 2018-02-26 08:19:25 +00:00
wiz
d7b172fe52 libmpdclient: update to 2.14.
libmpdclient 2.14 (2018/02/11)
* support MPD protocol 0.21
  - command "outputset"
  - mpd_output_get_plugin()
  - receive output attributes
* MSVC compatibility
* improved local and abstract socket support
2018-02-25 20:56:05 +00:00
wiz
227c93189e musicpd: update to 0.20.18.
ver 0.20.18 (2018/02/24)
* input
  - curl: allow authentication methods other than "Basic"
* decoder
  - flac: improve seeking precision
* fix gapless CUE song transitions
* Android, Windows
  - enable the NFS storage plugin

ver 0.20.17 (2018/02/11)
* output
  - alsa: fix crash bug with 8 channels
* mixer
  - alsa: fix rounding error at volume 0
* fix real-time and idle scheduling with Musl
* Android
  - fix compatibility with Android 4.0
2018-02-25 20:48:14 +00:00
wiz
607fca7f8f mpc: update to 0.29.
0.29 (2018/02/11)
* implement %prio% for --format
* the default --format falls back to "performer" if there is no "artist"
* add command "prio"
* command "outputs" prints attributes
* fix build failure with gcc 7.0 and clang 4.0
* build with Meson instead of autotools
2018-02-25 20:30:21 +00:00
dholland
3b1569ed36 Adjust seddery for paths in manpage. Avoids inserting /usr/pkg/usr/pkg/etc.
Ride previous version bump.
2018-02-20 08:43:42 +00:00
dholland
56e230b028 Fix some build warnings likely indicating LP64 problems. PKGREVISION -> 9.
While here clean out pkglint and add a bunch of patch comments.
2018-02-20 08:35:52 +00:00
kamil
6fd33c9ef4 libgroove: Upgrade to 4.3.0
pkgsrc changes:
 - reuse the github framework
 - disable -Werror
 - set -D_NETBSD_SOURCE for NetBSD, this is required for obtaining
   pthread_condattr_setclock(3) and pthread_condattr_getclock(3) on NetBSD
   compiled on version <8.0 (bug in a header)
 - switch from ffmpeg2 to ffmpeg3
 - add a workaround for a detector of ffmpeg in a homegrown dependency
   detector, this hardcodes paths to headers and libraries of ffmpeg3

upstream changelog
==================

Version 4.3.0 (2015-05-25)

    player: Add support for "exact mode" - re-opens the audio device when a buffer is encountered that does not match the open audio device's sound parameters.
    build: Simplify cmake find modules.
    Add const qualifier to some fields and functions.
    metadata example: print the number of channels.
    Add documentation.
    Add more channel layouts.
    build: Compile in Debug mode by default.

Version 4.2.1 (2014-10-07)

    updating metadata: set time_base on stream not the codec
    libav lockmgr: set mutex pointer to NULL on destroy
    fix build on GNU/hurd

Version 4.2.0 (2014-09-25)

    build: remove bundled dependencies
    build: simpler cmake find modules, both code and license
    player: add shim to fix build failure on OSX

Version 4.1.1 (2014-06-20)

    playlist: fix race condition which can cause decoder to hang
    dummy player: fix timing issues

Version 4.1.0 (2014-06-13)

    playlist: added groove_playlist_set_fill_mode. Allows you to choose between buffering until all sinks are full and buffering until any sinks are full.

Version 4.0.4 (2014-06-03)

    Fixed a race condition where seeking to a different playlist item and then back would have a window of time where it could report the wrong position.
    Properly play and pause network streams.

Version 4.0.3 (2014-05-31)

    build: update bundled libav to latest stable 10 release
    build: link player with -lrt for clock_gettime. closes #67
    playlist: fix case where filter graph was not being rebuilt. closes #65
    playlist: fix race condition segfault when attaching a sink
    encoder: properly reset encoding when flush or playlist end is encountered. closes #66

Version 4.0.2 (2014-05-20)

    player: thread cleanup only if thread was initialized - fixes potential crash on player detach
    build: look for includes in the current source tree. Fixes an issue when a previous version of the library is installed.
    build: on unix link with -lm

Version 4.0.1 (2014-05-13)

    groove_playlist_get_position: always set seconds even when item is NULL
    playlist: correct generation of the sink map
        fixes potential error when adding multiple sinks
        optimizes some cases where sinks can share filter graph chain
        dummy player now uses disable_resample optimization
    dummy player: avoid floating point error accumulation

Version 4.0.0 (2014-05-12)

    GrooveBuffer struct contains the presentation time stamp
    move include statements to outside of extern C
    ability to set true peak on playlist items. closes #50
    support per-sink gain adjustment. closes #41
    GroovePlaylist: volume renamed to gain
        groove_playlist_set_gain renamed to groove_playlist_set_item_gain
        groove_playlist_set_volume renamed to groove_playlist_set_gain
    player: specify device by index rather than name. closes #44
    player: ability to attach a dummy player device. closes #60
    fingerprinter: encode/decode return 0 on success, < 0 on error
    fingerprinter: info struct contains raw fingerprint instead of compressed string. closes #61
2018-02-20 05:17:31 +00:00
kamil
df399bf16f pianobar: Upgrade to 2017.08.30
pkgsrc changes:
 - switch to GitHub as the release source
 - set CFLAGS for NetBSD: _NETBSD_SOURCE, this works around a bug that
   strdup(3) was not included in the POSIX source namespace (fixed in
   NetBSD 8.0)
 - switch to ffmpeg 3.x

upstream changelog
==================
Release 2017.08.30

- Support binding to specific network interface, see config option bind_to
- New config option gain_mul softens effect of replay gain
- Replaced deprecated ffmpeg and json-c functions, bumps ffmpeg/libav version
  requirement
- Fix use-after-free
- Minor improvements to code and documentation

Release 2016.06.02

- Quit pianobar upon reception of two SIGINT
- Minor bugfixes
2018-02-20 02:59:38 +00:00
wiz
72d640c77f ocp: allow building with gcc-6 and higher. 2018-02-16 12:47:55 +00:00
wiz
315a6b57ff musicpd: update to 0.20.16.
ver 0.20.16 (2018/02/03)
* output
  - pulse: fix crash during auto-detection
* database
  - simple: fix search within mount points
  - upnp: enable IPv6
* archive
  - iso9660: libcdio 2.0 compatibility
* fix crash in debug build on Haiku and other operating systems
2018-02-11 16:33:28 +00:00
wiz
b7c523ebcf audacious-plugins: follow redirect 2018-02-11 15:37:18 +00:00
wiz
2748b69937 audacious: follow redirect 2018-02-11 15:36:48 +00:00
khorben
b69741eca1 Import global switch for libusb's implementation [2/2]
This switch is meant to be used by packages requiring an implementation of the
former libusb (as in devel/libusb). The original implementation can be
chosen by setting LIBUSB_TYPE to "native".

The alternative implementation libusb-compat (as in devel/libusb-compat) wraps
libusb1 (in devel/libusb1). This implementation can be chosen by setting
LIBUSB_TYPE to "compat". On NetBSD, it has the advantage of not requiring root
privileges to locate and use USB devices without a kernel driver.

This second part switches packages using libusb to this framework. It does not
change compilation options or dependencies at this point.

Compile-tested on most packages affected and available on NetBSD/amd64.
2018-02-10 13:53:46 +00:00
mrg
d460fcd72c port these packages to GCC 6:
- audacity: GCC 6 wants std namespace, found via <cmath>.
- smpeg2: don't initialise unsigned with "0-1".
- libclucene/strigi: match GCC 6 (and 7, and 8, and 9.)
2018-02-08 07:28:57 +00:00
jperkin
ee5c449841 libsidplay: Specify C++03, not C++11 clean. 2018-02-05 16:10:25 +00:00
jperkin
84ac0065b4 libmusicbrainz: Specify C++03, not C++11 clean. 2018-02-02 17:55:39 +00:00
jperkin
45c6fab52c ezstream: Leave pkgsrc to handle security features. 2018-02-02 10:40:12 +00:00
jperkin
953041cf2d akode: Fix SunOS/clang. 2018-02-01 10:25:13 +00:00
jperkin
7243bd9bb4 musicbrainz: Specify C++03, not C++11 clean. 2018-02-01 10:04:38 +00:00
adam
3452c450fc py-beets: updated to 1.4.6
1.4.6:
The highlight of this release is "album merging," an oft-requested option in
the importer to add new tracks to an existing album you already have in your
library. This way, you no longer need to resort to removing the partial album
from your library, combining the files manually, and importing again.

Here are the larger new features in this release:

* When the importer finds duplicate albums, you can now merge all the
  tracks---old and new---together and try importing them as a single, combined
  album.
* :doc:/plugins/lyrics: The plugin can now produce reStructuredText files
  for beautiful, readable books of lyrics.
* A new :ref:from_scratch configuration option makes the importer remove old
  metadata before applying new metadata. This new feature complements the
  :doc:zero </plugins/zero> and :doc:scrub </plugins/scrub> plugins but is
  slightly different: beets clears out all the old tags it knows about and
  only keeps the new data it gets from the remote metadata source.
2018-01-30 14:10:11 +00:00
jperkin
2867c45d01 festival: Specify C++03, not C++11 clean. 2018-01-29 18:51:58 +00:00
wiz
bff4597ffc Bump PKGREVISION for gdbm shlib major bump 2018-01-28 20:10:34 +00:00
wiz
af0505de0b id3: update to 1.0.1.
1.0.1
-----

- Do not explicitly pass "-o 0" to the installation command;
  if running as root, it is not needed, and if not running as root,
  it will only break.
2018-01-28 15:52:16 +00:00
wiz
c70349f2fe chromaprint: update to 1.4.3.
Version 1.4.3 -- January 21, 2017
==================================

 - Allow one packet to have decoding error
 - Print output even if there is a decoding error, exit with error code 3 instead of 2 in such case
 - Add new option -ignore-errors to change the error code 3 to 0
 - Add new option -algorithm NUM
 - Periotically flush output when working on a stream
2018-01-28 15:43:03 +00:00
wen
0d148620fd Update to 1.40.0
Upstream changes:
1.40.0 - 2018-01-25
-------------------

* APEv2: Ensures tags are saved in a deterministic way :pr:`329`
  (:user:`cushy007`)
* Restore WinXP support for the CLI tools 🐛`332`
* easymp4: Fix EasyMP4.add_tags() when no tags exist 🐛`334`
* id3: Fix PyCharm not being able to resolve id3 frame class references
  🐛`336`
* Support pathlib.Path objects for paths (PEP 519) 🐛`337` :pr:`338`
  (:user:`Andrew Rabert <nvllsvm>`)
* Use semver for versioning
2018-01-27 08:15:05 +00:00
he
b9edee3963 Add a patch / build fix for NetBSD 8.0:
Avoid problems resulting from the SIZE macro expanding to "two
arguments", but the argument list already having been scanned,
leading to build failure with SSP on NetBSD 8.0.

Thanks for hint from joerg@
PKGREVISION bumped.
2018-01-26 12:45:27 +00:00
jperkin
6886f73fcf id3lib: Requires libiconv. 2018-01-26 10:32:36 +00:00
markd
8937f06d34 kid3: restore accidentally zeroed PLIST 2018-01-21 04:22:58 +00:00
markd
ad59b0ed31 kid3: update to 3.5.1
* Release 3.5.1

* Improved:
  + Compatibility of imported and exported CSV files with cells
    containing new line characters.
  + Do not show unknown frames for ID3v2.3 TDAT, TIME, TYER, TRDA
    frames.
  + Enable high-DPI scaling for Qt >= 5.6.
  + Change AppStream directory from appdata to metainfo.

* Fixed:
  + Crash with DSF files having sample rates other than 2822400 or
    5644800.

* Release 3.5.0

* New:
  + Tags which violate the ID3v2 standard are marked.
  + Filter for marked files.
  + Configurable keyboard shortcuts for user actions.
  + Set and get frame fields from scripts and CLI.
  + Select a subset of frames for copy, paste, remove from scripts
    and CLI.
  + Set and get multiple frames of the same kind from scripts and CLI.
  + Support field names in export and filter expressions.
  + Support xid and ownr atoms in M4A files.
  + Danish translation.

* Improved:
  + Better performance when files are added to selection.
  + The script actions in the file list context menu only operate on
    selected files.
  + Only jump to tagged files with previous/next in GUI.
  + Show passed/total after "filtered" in title bar.
  + kid3-cli can run from a console without GUI/X11.

* Fixed:
  + Adding and deleting tag 3 frames from CLI.
  + Deletion of multiple METADATA_BLOCK_PICTURE picture frames.
  + Wrong depth 32 instead of 24 stored in METADATA_BLOCK_PICTURE.
  + Use Ogg/Vorbis Comment field name setting also for Opus files.

* Release 3.4.5

* New:
  + Settings to include and exclude folders in the file list.

* Improved:
  + Use HTTPS for imports where possible.
  + Much faster expanding of the file list by avoiding GUI
    updates during the operation.
  + Faster filtering by avoiding GUI updates during the
    operation.
  + Reduced memory usage when filtering.
  + Updated Czech and Dutch translations.

* Fixed:
  + Import from MusicBrainz.
  + Rate limit for import from Discogs.
  + Do not display multiple frames of same type as different.
  + Application not responsive when using a new filter after
    filtering a huge number of files.
  + Application not responsive when loading the tags after
    selecting a lot of files, is now abortable.
  + Terminate kid3-cli if EOF is received.

* Release 3.4.4

* New:
  + If the first command line argument is "--portable", the
    configuration is stored in a file kid3.ini in the program folder.
  + Image data can be copied to clipboard.
  + MPRIS2 D-Bus interface for the audio player.

* Improved:
  + "Import CSV" can import to different files if no matching
    file paths found.

* Fixed:
  + Importing of durations from text formats (file/clipboard).
  + Building with Chromaprint 1.4.
2018-01-21 04:10:44 +00:00
wiz
20e2dfadc8 gsm: honor LDFLAGS. Fixes RELRO build. 2018-01-17 12:03:01 +00:00
wiz
6ee048c106 xmms-crossfade: follow redirect 2018-01-14 10:42:23 +00:00
wiz
e6e437af23 bmp-crossfade: follow redirect. 2018-01-14 10:04:24 +00:00
wiz
2e097bfb6b musicpd: update to 0.20.15.
ver 0.20.15 (2018/01/05)
* queue: fix crash after seek failure
* resampler
  - soxr: clear internal state after manual song change
* state file
  - make mount point restore errors non-fatal
  - fix crash when restoring mounts with incompatible database plugin
* Android
  - build without Ant
  - fix for SIGSYS crash

ver 0.20.14 (2018/01/01)
* database
  - simple: fix file corruption in the presence of mount points
* archive
  - bz2: fix deadlock
  - reduce lock contention, fixing lots of xrun problems
* fix Solaris build failure

ver 0.20.13 (2017/12/18)
* output
  - osx: set up ring buffer to hold at least 100ms
* mixer
  - alsa: fix rounding errors
* database
  - simple: don't purge mount points on update/rescan
  - simple: fix "mount" bug caused by bad compiler optimization
  - simple: fix "lsinfo" into mount points
  - upnp: work around libupnp 1.6.24 API breakage
* queue: fix spuriously misplaced prioritized songs
* save and restore mountpoints within the state file
* include Windows cross-build script in source tarball
* fix Windows build failures
2018-01-10 10:36:39 +00:00
rillig
b5125cac37 Moved the documentation where it belongs. Bumped PKGREVISION.
While here, fixed the remaining pkglint warnings.
2018-01-07 19:53:16 +00:00
rillig
17e39f419d Fix indentation in buildlink3.mk files.
The actual fix as been done by "pkglint -F */*/buildlink3.mk", and was
reviewed manually.

There are some .include lines that still are indented with zero spaces
although the surrounding .if is indented. This is existing practice.
2018-01-07 13:03:53 +00:00
rillig
0e7661124a Added missing LICENSE declaration. 2018-01-07 11:42:47 +00:00
rillig
5c6493ca12 Added missing LICENSE variable. 2018-01-02 22:54:26 +00:00
rillig
b381c6e2f3 Sort PLIST files.
Unsorted entries in PLIST files have generated a pkglint warning for at
least 12 years. Somewhat more recently, pkglint has learned to sort
PLIST files automatically. Since pkglint 5.4.23, the sorting is only
done in obvious, simple cases. These have been applied by running:

  pkglint -Cnone,PLIST -Wnone,plist-sort -r -F
2018-01-01 22:29:15 +00:00
adam
983847f667 Revbump after boost update 2018-01-01 21:18:06 +00:00
rillig
4760eca917 Replaced $(ROUND) with ${CURLY} variable references.
This has been a pkglint warning for several years now, and pkglint can even
fix it automatically. And it did for this commit.

Only in lang/mercury, two passes of autofixing were necessary because there
were nested variables.
2018-01-01 18:16:35 +00:00
wiz
9b5e5d5519 rplay: comment out dead sites 2017-12-24 10:15:53 +00:00
wiz
5be8ded354 mserv-devel: comment out dead sites 2017-12-24 10:02:59 +00:00
wiz
c6a6fa7e3f mserv: comment out dead sites 2017-12-24 10:02:34 +00:00
jperkin
eaee8e0de6 musepack: Don't overwrite user CFLAGS with bogus ones. 2017-12-18 13:01:17 +00:00
jperkin
de38a479cb libreplaygain: Support user CFLAGS. 2017-12-15 16:00:19 +00:00
adam
2171b77cf2 mpg123: updated to 1.25.8
1.25.8
------
- mpg123:
-- Also disable cursor/video games for empty TERM (not just unset and dumb).
- libmpg123:
-- Accept changing mode extension bits when looking for next header for
   detecting free-format streams (bug 257).
-- Fix compute_bpf() for free format streams (needed to estimate track
   length and working fuzzy seeking in absence of an Info tag).
2017-12-14 11:42:05 +00:00
adam
9e4f29a79b libcanberra: Fix for GTK compiled with Quartz support. (PR 52570) 2017-12-10 17:57:42 +00:00
he
5a20fb2cda Add patch to check against invalid input sample rate.
Should fix CVE-2015-9099.  Ref.
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=775959
Bump PKGREVISION.
2017-12-04 08:20:37 +00:00
adam
0a2c4e4b53 xmms-faad: updated to 2.8.6 2017-12-01 11:26:31 +00:00
adam
d8b87595f0 faad2: updated to 2.8.6
2.8.6:
2.8.5:
        - another package fix
2.8.4:
        - minor fix to released packages
2.8.3
        - better autotools support
2.8.2
        - PNS bug fixed
        - New MP4 input module
        - NeAACDecGetVersion:
                new api function to get version and copyright strings
2017-12-01 11:17:51 +00:00
adam
7b6dd9458d Remove unused patch 2017-12-01 11:10:29 +00:00
adam
f059e0132a faac: updated to 1.29.9.2
1.29.9.2:
* fixed max MP4 bitrate calculation

1.29.9:
* initial version of PNS coding
* Intensity Stereo coding
* more speed improvements
* finer bandwidth/cutoff setting (doesn't work with PNS)
* fixed more bugs
* rewritten mid/side coding
* fixed bug in blockswitch
2017-12-01 11:00:03 +00:00
adam
8977d31a36 Revbump after textproc/icu update 2017-11-30 16:45:00 +00:00
wiz
e95ab22e6e SDL_sound: fix build with physfs-3.0.1 2017-11-29 12:42:54 +00:00
wiz
6cf4acab55 musicpd: update to 0.20.12.
ver 0.20.12 (2017/11/25)
* database
  - upnp: adapt to libupnp 1.8 API changes
* input
  - cdio_paranoia, ffmpeg, file, smbclient: reduce lock contention,
    fixing lots of xrun problems
  - curl: fix seeking
* decoder
  - ffmpeg: fix GCC 8 warning
  - vorbis: fix Tremor support
* player
  - log message when decoder is too slow
* encoder
  - vorbis: default to quality 3
* output
  - fix hanging playback with soxr resampler
  - httpd: flush encoder after tag; fixes corrupt Vorbis stream
2017-11-28 13:53:16 +00:00
wiz
0434e846fe p5-CDDB_get: switch to metacpan
Homepage is dead
2017-11-26 10:52:28 +00:00
wiz
4da014e97e gst-buzztard: update HOMEPAGE 2017-11-26 10:39:20 +00:00
wiz
52b979cd4a buzztard: update HOMEPAGE 2017-11-26 10:38:57 +00:00
wiz
f5b2e1e094 bsl: update HOMEPAGE 2017-11-26 10:38:41 +00:00
wiz
ef0e0c15b1 bml: update HOMEPAGE 2017-11-26 10:38:20 +00:00
wiz
0d3f3d0e20 p5-Audio-Scan: update to 0.99.
0.99    2017-11-24
        - Fixed a bug where an incorrect audio offset was returned when using
          NO_ARTWORK and reading a file with an ID3v2.2 or v2.3 unsynchronization bit
          set. The artwork in this type of file is only available when scanning in
          normal mode (without NO_ARTWORK).
        - Added id3_was_unsynced => 1 to the info section for v2.2/v2.3 files with the
          whole-tag unsync bit set. This type of tag is generally harmful to parser performance,
          so this flag might be useful if you want to find and upgrade this type of tag to v2.4.
        - DSF: WAV_BLOCK_SIZE was being used instead of DSF_BLOCK_SIZE. (Kimmo Taskinen)
        - ID3: Support for reading ID3 tags located >4GB into a file, such as in very large
          DSF files. (Kimmo Taskinen)
        - WavPack: Read correct samplerate and bits_per_sample for DSD files. (Kimmo Taskinen)
        - DSF/DFF: added bitrate to info hash.
2017-11-26 09:59:22 +00:00
wiz
bb3f46c5d7 playitslowly: does not need versioned dependency
Variable was there but unused, and it was better that way
2017-11-26 09:31:48 +00:00
kamil
c2ed108fd9 ladspa: Correct injection of CFLAGS, CXXFLAGS, LDFLAGS
Patch the upstream makefile to rename CFLAGS, CXXFLAGS, LDFLAGS to
LOCAL_*. Retrieve  CFLAGS, CXXFLAGS, LDFLAGS from pkgsrc.

This package uses homegrown hardcoded macros for libraries (-fPIC), this
is not portable and should be adjusted in future.

This unbreaks build on NetBSD/amd64 8.99.7 as of today.
2017-11-25 11:57:28 +00:00
wiz
37ff97a3da *: depend on py-cairo now it supports all python versions 2017-11-24 22:15:58 +00:00
wiz
20f7c989fe recursive bump for libxkbcommon removal from at-spi2-core 2017-11-23 17:19:40 +00:00
wiz
9ffcacd517 musicpd: update to 0.20.11.
ver 0.20.11 (2017/10/18)
* storage
  - curl: support Content-Type application/xml
* decoder
  - ffmpeg: more reliable song duration
  - gme: fix track numbering
* improve random song order when switching songs manually
* fix case insensitive search without libicu
* fix Unicode file names in playlists on Windows
* fix endless loop when accessing malformed file names in ZIP files
2017-11-23 14:38:41 +00:00
khorben
1154938e9a More generic fix for CFLAGS and LDFLAGS for audio/ladspa
In the C plug-ins, mark the constructor and destructor functions as
such. While there, comment out a new target to run the tests; they are
broken, but not because of this modification. This allows us to use
cc(1) to link the plug-ins, thus working around a bug in the cwrappers
for ld(1).

Bump PKGREVISION, since this generates a different binary now that SSP
and FORTIFY are enabled.
2017-11-16 15:05:31 +00:00
khorben
72169a3d50 Add support for LDFLAGS when building audio/nas
This helps pass the RELRO check for this package.
2017-11-13 12:23:36 +00:00
maya
796106724c libaudiofile: add test target 2017-11-11 13:13:15 +00:00
adam
a7a14c06d5 py-mutagen: updated to 1.39
1.39:
* Tests:
  * Require `hypothesis <https://hypothesis.readthedocs.io>`__
  * Run pycodestyle/pyflakes tests by default. Skip with ``--no-quality`` or
    ``-m no quality`` when using pytest directly.
* Python 3.3 is no longer supported
* MP3: Improved bitrate accuracy for files with XING header
* ASF: Fix case where some tags resulted in broken ASFUnicodeAttribute
  instances
* Add support for filesystems which don't support opening files read/write
  (gvfs over fuse for example)
* mid3v2: Add support for USLT
* Minor improvements
2017-11-07 12:54:06 +00:00
wiz
da06dc496a malint: follow redirect 2017-11-06 13:28:18 +00:00
khorben
06f67b3ba7 Add support for CFLAGS and LDFLAGS
This notably fixes building with RELRO enabled.

Bump PKGREVISION, since this generates a different binary now that SSP and
FORTIFY are enabled.
2017-10-25 22:04:30 +00:00
khorben
2ecbd1fe72 Add support for CFLAGS and LDFLAGS
This notably fixes building with RELRO enabled.

Bump PKGREVISION, since this generates a different binary now that SSP and
FORTIFY are enabled.
2017-10-25 21:17:13 +00:00
adam
df334f53e3 mpg123: updated to 1.25.7
1.25.7
------
- mpg123:
-- Do not play with cursor and inverse video for progress bar
   when TERM=dumb.
-- Fix parsing of host port for numerical IPv6 addresses (just did
   not work before, only for textual host names).
- libmpg123:
-- Proper fix for the xrpnt overflow problems by correctly
   initialising certain tables for MPEG 2.x layer III. The checks that
   catch the resulting overflow are still in place, but likely superfluous
   now. Note that this means certain valid files would have been misdecoded
   before, if anyone actually produced them. Thanks to Robert Hegemann for
   the fix!
-- Silently handle granules with part2_3_length == 0, but
   scalefac_compress != 0 (ignore the latter).
2017-10-24 18:02:50 +00:00
tron
ad37f46b7c Fix build under macOS 2017-10-22 09:30:41 +00:00
triaxx
73d6fad56a Add workaround for fixing build on Linux
See https://github.com/westes/flex/issues/241
The problem is fixed in master branch and the workaround could be removed
in the next version update.
2017-10-22 07:55:24 +00:00
triaxx
1aeb209212 Update to 3.6.1
* -Werror does not work properly since id3lib makes warnings

Changes:
v3.6.1 2017-10-04 Johnny A. Solbu <johnny@solbu.net>

  * Patch from Adrian Reber: fix compiler warning
    and enable -Werror and -Wall by default
  * Translation update: Norwegian

v3.6.0 2017-09-14 Johnny A. Solbu <johnny@solbu.net>

  * Patch from Mike Gilbode: Select DiscDB entry from multiple results
  * Translation updates.
2017-10-22 07:55:23 +00:00
wiz
6a5049af05 lame: update to 3.100.
Many bug fixes and security fixes.
2017-10-21 22:51:00 +00:00
prlw1
c7d3d5b5d2 Put gdbus-codgen back into operation
- Revert "Move gdbus-codegen users to py-glib2-tools by including
  glib2/buildtools.mk" 1f764df
- while here change to TOOL_DEPENDS
- switch from py-glib2-tools to glib2-tools
2017-10-15 22:31:01 +00:00
prlw1
ee6cf974ac Move gdbus-codegen users to py-glib2-tools by including glib2/buildtools.mk 2017-10-13 16:36:03 +00:00
adam
b2f379fefd libmodplug: update to 0.8.9.0
Version 0.8.9.0:
  OOB Write and Read fixes + a number of divide by zero fixes.
         (ABC, PAT, AMF, MDL, PSM, XM, IT, MMCMP, MID)
 There were some patches 2010-2016 which were recorded here.
2017-10-13 16:00:59 +00:00
wiz
069c7da097 p5-MP3-Info: update to 1.26.
Changes not documented.
2017-10-11 07:06:18 +00:00
wiz
51fab6f079 audacious-plugins: add gdbus-codegen as build dependency
When it is found, the mpris2 plugin is built, which lead to "random"
PLIST problems. Depend on it to always build it.

Bump PKGREVISION.
2017-10-04 11:29:37 +00:00
ryoon
c8eb5f218b Update to 11.1
Changelog:
 * Fix a crash in filter modules related to flat volumes and volume
   sharing
 * Fix a crash when the bluetooth adapter reports weird MTU size
 * Disable bluetooth MTU autodetection by default
 * Add mixer handling back for hardware that doesn't have any alsa-lib
   configuration
 * Prioritize USB devices over built-in sound cards (11.0 was supposed
   to have this feature, but the implementation turned out to be
   incomplete)
2017-10-02 19:21:15 +00:00