Subversion Repositories pub

Compare Revisions

No changes between revisions

Ignore whitespace Rev 419 → Rev 420

/video-contact-sheet/trunk/pkg/debian/changelog
1,3 → 1,9
vcs (1.12.1-upstream.1) experimental; urgency=medium
 
* New version.
 
-- Toni Corvera <outlyer@gmail.com> Fri, 23 Apr 2010 13:56:58 +0200
 
vcs (1.12-upstream.1) experimental; urgency=low
 
* New version.
/video-contact-sheet/trunk/pkg/CHANGELOG
1,3 → 1,9
1.12.1:
* BUGFIXES:
- Workaround for cases in which GAWK uses comma as decimal separator.
Any OS with GAWK 3.1.3 to 3.1.5 was affected (e.g. Debian Lenny)
- Don't try to go on in DVD mode with unreadable ISOs
 
1.12: (2010-04-10)
* New features/tweaks:
- Loading of random configuration files (--config / -C)
/video-contact-sheet/trunk/pkg/vcs
31,11 → 31,20
# The full changelog can be found at <http://p.outlyer.net/vcs/files/CHANGELOG>
 
 
declare -r VERSION="1.12"
declare -r VERSION="1.12.1"
declare -r RELEASE=1
 
set -e
 
# GAWK 3.1.3 to 3.1.5 print decimals (with printf) according to locale (i.e.
#+decimal comma separator in some locales, which is apparently POSIX correct).
#+Older and newer versions, though, need either POSIXLY_CORRECT=1, --posix or
#+ --use-lc-numeric to honour locale.
# MAWK appears to always use dots.
# Info: <http://www.gnu.org/manual/gawk/html_node/Conversion.html>
#export POSIXLY_CORRECT=1 # Immitate behaviour in newer gawk
export LC_NUMERIC=C
 
# Fail soon if this version of bash is too old for the syntax, don't expose bash to the newer
# syntax
# See the "Bash syntax notes" section for details
3050,9 → 3059,6
warn "Mount DVD image to get better video properties detection"
fi
fi
elif [ ! -r "$dvdn" ]; then # Not an ISO, is it readable?
error "Can't access DVD ($f)"
return $EX_NOINPUT
else
# It's a device. Note BSD has no concept of block devices.
# It MUST be mounted to continue. This is required to allow ffmpeg detection
3064,6 → 3070,10
DVD_MOUNTP=$(mount | grep -o "^$dvdn *on [^ ]*" | cut -d' ' -f3)
dvdn="DVD $f"
fi
if [ ! -r "$f" ]; then
error "Can't access DVD ($f)"
return $EX_NOINPUT
fi
 
inf "Processing $dvdn..."
unset dvdn
/video-contact-sheet/trunk/.
Property changes:
Modified: svn:mergeinfo
Merged /video-contact-sheet/branches/1.12.1:r416-419