Codebase list eyed3 / c24d222
release 0.8.10-3 Gaetano Guerriero 2 years ago
2 changed file(s) with 12 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 eyed3 (0.8.10-3) unstable; urgency=medium
1
2 * Fix autopkgtest generating sometimes output on stderr (Closes: #989356)
3
4 * Upload sponsored by Petter Reinholdtsen.
5
6 -- Gaetano Guerriero <x.guerriero@tin.it> Tue, 01 Jun 2021 18:04:57 +0200
7
08 eyed3 (0.8.10-2) unstable; urgency=medium
19
210 * Add patch to support pylast 3, backported from upstream
311 (Closes: #945371)
412 * Fix patch remove-display-plugin to really disable the plugin
513 (Closes: #988738)
6 * Add Restrictions: superficial to autopkgtest tests (Closes: #974444)
14 * Add more autopkgtests and flag the original ones
15 with Restrictions: superficial (Closes: #974444)
716
817 * Upload sponsored by Petter Reinholdtsen.
918
77 > "$id3file"
88
99 # write some ID3 tags into the file
10 eyeD3 >/dev/null -Q\
10 eyeD3 >/dev/null 2>&1 -Q\
1111 -a artist \
1212 -A album \
1313 -t title \
1515 -n 42 "$id3file"
1616
1717 # read back written tags
18 output=$(eyeD3 "$id3file")
18 output=$(eyeD3 2>/dev/null "$id3file")
1919
2020 # test tags are found inoutput
2121 test "${output#*artist: artist}" != "$output" || (echo 'ERROR: artist not found in written tags'; exit 1)