pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/audio/abcde
Module Name: pkgsrc
Committed By: wiz
Date: Sun Mar 11 17:31:44 UTC 2018
Modified Files:
pkgsrc/audio/abcde: Makefile distinfo
Log Message:
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@localhost> 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@localhost> 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@localhost; 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@localhost. 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
To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 pkgsrc/audio/abcde/Makefile
cvs rdiff -u -r1.47 -r1.48 pkgsrc/audio/abcde/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/audio/abcde/Makefile
diff -u pkgsrc/audio/abcde/Makefile:1.64 pkgsrc/audio/abcde/Makefile:1.65
--- pkgsrc/audio/abcde/Makefile:1.64 Fri Jul 28 21:16:37 2017
+++ pkgsrc/audio/abcde/Makefile Sun Mar 11 17:31:44 2018
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.64 2017/07/28 21:16:37 wiz Exp $
+# $NetBSD: Makefile,v 1.65 2018/03/11 17:31:44 wiz Exp $
-DISTNAME= abcde-2.8.1
-PKGREVISION= 1
+DISTNAME= abcde-2.9.1
CATEGORIES= audio
MASTER_SITES= http://abcde.einval.com/download/
@@ -15,7 +14,7 @@ DEPENDS+= eyeD3-[0-9]*:../../audio/eyeD3
DEPENDS+= id3-[0-9]*:../../audio/id3
DEPENDS+= cdparanoia>=3.0.9.7:../../audio/cdparanoia
DEPENDS+= p5-MusicBrainz-DiscID-[0-9]*:../../audio/p5-MusicBrainz-DiscID
-DEPENDS+= p5-WebService-MusicBrainz0-[0-9]*:../../net/p5-WebService-MusicBrainz0
+DEPENDS+= p5-WebService-MusicBrainz>=1.0.4:../../net/p5-WebService-MusicBrainz
# depend on cdrkit for icedax?
DEPENDS+= mkcue>=2.1:../../misc/mkcue
Index: pkgsrc/audio/abcde/distinfo
diff -u pkgsrc/audio/abcde/distinfo:1.47 pkgsrc/audio/abcde/distinfo:1.48
--- pkgsrc/audio/abcde/distinfo:1.47 Sun Jan 22 10:35:31 2017
+++ pkgsrc/audio/abcde/distinfo Sun Mar 11 17:31:44 2018
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.47 2017/01/22 10:35:31 wiz Exp $
+$NetBSD: distinfo,v 1.48 2018/03/11 17:31:44 wiz Exp $
-SHA1 (abcde-2.8.1.tar.gz) = 6b2d7d75a3b94304f4fea8c5a81fc12476141747
-RMD160 (abcde-2.8.1.tar.gz) = e98d53ec173ecec0386282f9249423af7f9190fe
-SHA512 (abcde-2.8.1.tar.gz) = 18e9e46ec69d0b99fc5e2b71ec549e3961e5f6d7f88cef1a6c8da154689554a70cc8bc748c1ef78f81583a510f8b03906b8a4fec454aa0b06f0169d0bc4a7b36
-Size (abcde-2.8.1.tar.gz) = 149238 bytes
+SHA1 (abcde-2.9.1.tar.gz) = a82e64563520590d698d46e775beda59e73236b0
+RMD160 (abcde-2.9.1.tar.gz) = f3a2d81e3d3454221cd88c4bbebb56dc0c7a260b
+SHA512 (abcde-2.9.1.tar.gz) = d2c64bacdc24c5917bf30a78e89720dc976206412507477d98976b6ad2c78c3837f11ca77c3c4d6d19a6172f2697cb6045b064aa09948471d87cad6cb92c1473
+Size (abcde-2.9.1.tar.gz) = 159563 bytes
SHA1 (patch-ab) = 04771bb4d0ace2886fe7612a06b4476696d0429d
Home |
Main Index |
Thread Index |
Old Index