Your message dated Mon, 28 Jan 2013 17:03:14 -0600
with message-id <[email protected]>
and subject line podget: playlists are always empty
has caused the Debian Bug report #641803,
regarding podget: playlists are always empty
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
641803: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=641803
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: podget
Version: 0.5.8-1
Severity: normal
Playlists created by podget are always empty. The problem is in the buggy pipe
which takes data from the same file that it uses to put data back. Patch is
available:
--- /usr/bin/podget.old 2011-09-16 14:29:17.000000000 +0400
+++ /usr/bin/podget 2011-09-16 14:32:46.000000000 +0400
@@ -623,7 +623,10 @@
# Sort new playlist
if [ -e "$dir_library/$playlist_name" ] ; then
- cat "$dir_library/$playlist_name" | sort >
"$dir_library/$playlist_name"
+ PL_TMP=`tempfile`
+ cat "$dir_library/$playlist_name" | sort > $PL_TMP
+ cat $PL_TMP > "$dir_library/$playlist_name"
+ rm $PL_TMP
# Create ASX Playlist
if [ ${asx_playlist} -gt 0 ] ; then
-- System Information:
Debian Release: 6.0.2
APT prefers stable
APT policy: (500, 'stable')
Architecture: i386 (i686)
Kernel: Linux 2.6.32-5-486
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8) (ignored: LC_ALL
set to ru_RU.UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages podget depends on:
ii bash 4.1-3 The GNU Bourne Again SHell
ii coreutils 8.5-1 GNU core utilities
ii grep 2.6.3-3 GNU grep, egrep and fgrep
ii sed 4.2.1-7 The GNU sed stream editor
ii tofrodos 1.7.8.debian.1-2 Converts DOS <-> Unix text files,
ii wget 1.12-2.1 retrieves files from the web
podget recommends no packages.
Versions of packages podget suggests:
ii libc6 2.11.2-10 Embedded GNU C Library: Shared lib
-- no debconf information
--- End Message ---
--- Begin Message ---
Version 0.6.9 of podget has been accepted for the Debian Sid repositories!
So I'm marking this bug as done.
Thanks for the report and please don't hesitate to let me know if you
find anything else!
Dave Vehrs
--- End Message ---