Update audio/picard to 0.15.1

Upstream changelog:

  Version 0.15.1 - 2011-07-31
   * "Other versions" menu now displays release labels and catalog numbers.
   * Added CD-R, 8cm CD to the format mapping.
   * Picard no longer fails to load releases with new or unknown media formats.
   * Fixed album metadata processor plugins not working (#5960)
   * Fixed requests stopping at midnight (#5963)
   * Stopped using QDateTime for timing requests (for Qt 4.6 compatibility) (#5967)
   * Fixed display of ampersands in the "other versions" menu. (#5969)
   * Fixed use of numerical functions in advanced scripting.

  Version 0.15 - 2011-07-17
   * Added options for using standardized track, release, and artist metadata.
   * Added preferred release format support.
   * Expanded preferred release country support to allow multiple countries.
   * Added support for tagging non-album tracks (standalone recordings).
   * Added several new tags: %_originaldate%, %_recordingcomment%, and
 %_releasecomment%
   * Changes to request queuing: added separate high and low priority queues for
each host.
   * Tagger scripts now run after metadata plugins finish (#5850)
   * The "compilation" tag can now be $unset or modified via tagger script.
   * Added a shortcut (Ctrl+I) for Edit->Details.
   * Miscellaneous bug fixes.

  Version 0.15beta1 - 2011-05-29
   * Support for the NGS web service
This commit is contained in:
gls 2011-08-06 19:29:37 +00:00
parent 9d6335d416
commit 5b6b378b97
3 changed files with 24 additions and 7 deletions

View file

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.9 2011/05/28 16:21:41 gls Exp $
# $NetBSD: Makefile,v 1.10 2011/08/06 19:29:37 gls Exp $
#
DISTNAME= picard-0.14
DISTNAME= picard-0.15.1
CATEGORIES= audio
MASTER_SITES= ftp://ftp.musicbrainz.org/pub/musicbrainz/picard/

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.3 2009/11/15 13:19:02 drochner Exp $
@comment $NetBSD: PLIST,v 1.4 2011/08/06 19:29:37 gls Exp $
bin/picard
${PYSITELIB}/picard/__init__.py
${PYSITELIB}/picard/__init__.pyc
@ -182,6 +182,9 @@ ${PYSITELIB}/picard/ui/options/proxy.pyo
${PYSITELIB}/picard/ui/options/ratings.py
${PYSITELIB}/picard/ui/options/ratings.pyc
${PYSITELIB}/picard/ui/options/ratings.pyo
${PYSITELIB}/picard/ui/options/releases.py
${PYSITELIB}/picard/ui/options/releases.pyc
${PYSITELIB}/picard/ui/options/releases.pyo
${PYSITELIB}/picard/ui/options/renaming.py
${PYSITELIB}/picard/ui/options/renaming.pyc
${PYSITELIB}/picard/ui/options/renaming.pyo
@ -257,6 +260,9 @@ ${PYSITELIB}/picard/ui/ui_options_proxy.pyo
${PYSITELIB}/picard/ui/ui_options_ratings.py
${PYSITELIB}/picard/ui/ui_options_ratings.pyc
${PYSITELIB}/picard/ui/ui_options_ratings.pyo
${PYSITELIB}/picard/ui/ui_options_releases.py
${PYSITELIB}/picard/ui/ui_options_releases.pyc
${PYSITELIB}/picard/ui/ui_options_releases.pyo
${PYSITELIB}/picard/ui/ui_options_renaming.py
${PYSITELIB}/picard/ui/ui_options_renaming.pyc
${PYSITELIB}/picard/ui/ui_options_renaming.pyo
@ -318,32 +324,41 @@ share/icons/hicolor/32x32/apps/picard.png
share/icons/hicolor/48x48/apps/picard.png
share/locale/af/LC_MESSAGES/picard.mo
share/locale/ar/LC_MESSAGES/picard.mo
share/locale/ast/LC_MESSAGES/picard.mo
share/locale/bg/LC_MESSAGES/picard.mo
share/locale/ca/LC_MESSAGES/picard.mo
share/locale/cs/LC_MESSAGES/picard.mo
share/locale/cy/LC_MESSAGES/picard.mo
share/locale/da/LC_MESSAGES/picard.mo
share/locale/de/LC_MESSAGES/picard.mo
share/locale/el/LC_MESSAGES/picard.mo
share/locale/en/LC_MESSAGES/picard.mo
share/locale/en_CA/LC_MESSAGES/picard.mo
share/locale/en_GB/LC_MESSAGES/picard.mo
share/locale/eo/LC_MESSAGES/picard.mo
share/locale/es/LC_MESSAGES/picard.mo
share/locale/et/LC_MESSAGES/picard.mo
share/locale/fa/LC_MESSAGES/picard.mo
share/locale/fi/LC_MESSAGES/picard.mo
share/locale/fo/LC_MESSAGES/picard.mo
share/locale/fr/LC_MESSAGES/picard.mo
share/locale/fr_CA/LC_MESSAGES/picard.mo
share/locale/fy/LC_MESSAGES/picard.mo
share/locale/gl/LC_MESSAGES/picard.mo
share/locale/he/LC_MESSAGES/picard.mo
share/locale/hi/LC_MESSAGES/picard.mo
share/locale/hu/LC_MESSAGES/picard.mo
share/locale/id/LC_MESSAGES/picard.mo
share/locale/is/LC_MESSAGES/picard.mo
share/locale/it/LC_MESSAGES/picard.mo
share/locale/ja/LC_MESSAGES/picard.mo
share/locale/kn/LC_MESSAGES/picard.mo
share/locale/ko/LC_MESSAGES/picard.mo
share/locale/lt/LC_MESSAGES/picard.mo
share/locale/nb/LC_MESSAGES/picard.mo
share/locale/nds/LC_MESSAGES/picard.mo
share/locale/nl/LC_MESSAGES/picard.mo
share/locale/oc/LC_MESSAGES/picard.mo
share/locale/pl/LC_MESSAGES/picard.mo
share/locale/pt/LC_MESSAGES/picard.mo
share/locale/pt_BR/LC_MESSAGES/picard.mo
@ -354,5 +369,7 @@ share/locale/sk/LC_MESSAGES/picard.mo
share/locale/sl/LC_MESSAGES/picard.mo
share/locale/sr/LC_MESSAGES/picard.mo
share/locale/sv/LC_MESSAGES/picard.mo
share/locale/ta/LC_MESSAGES/picard.mo
share/locale/tr/LC_MESSAGES/picard.mo
share/locale/uk/LC_MESSAGES/picard.mo
share/locale/zh_CN/LC_MESSAGES/picard.mo

View file

@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.4 2011/05/28 16:21:41 gls Exp $
$NetBSD: distinfo,v 1.5 2011/08/06 19:29:37 gls Exp $
SHA1 (picard-0.14.tar.gz) = e8d2b7098bca8124459c636cbb20a62f767a7756
RMD160 (picard-0.14.tar.gz) = 4e52f726ff07358573ad2f495541e7c1679111bf
Size (picard-0.14.tar.gz) = 1375876 bytes
SHA1 (picard-0.15.1.tar.gz) = 91b461430add978f0b07ae738ce1b9de616998f4
RMD160 (picard-0.15.1.tar.gz) = 195902699349d27af268180f45312a4d3ce1ac80
Size (picard-0.15.1.tar.gz) = 1549887 bytes
SHA1 (patch-aa) = b045a8e14f88bb242974a31d9390fd48351fd452