Subversion Repositories pub

Compare Revisions

Ignore whitespace Rev 336 → Rev 335

/video-contact-sheet/branches/1.0.11/debian-package/Makefile
File deleted
Property changes:
Deleted: svn:keywords
-Rev Id Date
\ No newline at end of property
/video-contact-sheet/branches/1.0.11/debian-package/debian/copyright
File deleted
/video-contact-sheet/branches/1.0.11/debian-package/debian/rules
File deleted
Property changes:
Deleted: svn:executable
-*
\ No newline at end of property
/video-contact-sheet/branches/1.0.11/debian-package/debian/control
File deleted
/video-contact-sheet/branches/1.0.11/debian-package/debian/dirs
File deleted
/video-contact-sheet/branches/1.0.11/debian-package/debian/compat
File deleted
/video-contact-sheet/branches/1.0.11/debian-package/debian/changelog
File deleted
/video-contact-sheet/branches/1.0.11/vcs
5,9 → 5,7
# vcs
# Video Contact Sheet *NIX: Generates contact sheets (previews) of videos
#
# Copyright (C) 2007-2008 Toni Corvera
# with patches from Phil Grundig and suggestions/corrections from
# many others (see homepage)
# Copyright (C) 2007 Toni Corvera
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
42,14 → 40,20
# <http://webcvs.freedesktop.org/clipart/experimental/rejon/getid3/getid3/module.audio-video.riff.php>
#
 
declare -r VERSION="1.0.11"
declare -r VERSION="1.0.10"
# {{{ # CHANGELOG
# History (The full changelog was moved to a separate file and can be found
# at <http://p.outlyer.net/vcs/files/CHANGELOG>).
#
# 1.0.11: (?)
# * RETROCOMPATIBILITY: Older bash syntax for appending and initialising arrays
# (contributed by Phil Grundig)
# 1.0.10: (2007-11-08)
# * BUGFIX: Corrected aspect guessing bug: would fail if width
# was standard but height not
# * FEATURE: Allow explicitly disabling timestamps (-dt or
# --disable timestamps)
# * FEATURE: Allow explicitly disabling shadows (-ds or --disable shadows)
# * Added HD resolution guessed aspect ratio (defaults to 16/9)
# * OTHER: Changed e-mail address in the comments to gmail's, would probably
# get a quicker response.
# }}} # CHANGELOG
 
set -e
409,6 → 413,7
tr '[A-Z]' '[a-z]' <<<"$1"
}
 
 
# Rounded product
# multiplies parameters and prints the result, rounded to the closest int
# parameters can be separated by commas or spaces
/video-contact-sheet/branches/1.0.11/Makefile
5,33 → 5,15
all:
@echo "Use $(MAKE) dist"
 
check-no-svn:
dist:
if [ -d .svn ]; then echo "Don't release from SVN working copy" ; false ; fi
 
prep:
chmod -x vcs
 
dist: check-no-svn prep gz bz2 plaintext changelog cleanup
 
gz:
cp vcs vcs-$(VER)
gzip -9 vcs-$(VER)
 
bz2:
cp vcs vcs-$(VER)
bzip2 -9 vcs-$(VER)
 
plaintext:
mv vcs vcs-$(VER)
 
changelog:
gzip -9 CHANGELOG
gzip -dc CHANGELOG.gz > CHANGELOG
 
cleanup:
rm -i Makefile
 
deb:
 
 
.PHONY: dist