~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/util/tag

  • Committer: Bazaar Package Importer
  • Author(s): Albin Tonnerre
  • Date: 2008-06-20 18:00:19 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080620180019-7fbz1ln5444vtkkr
Tags: 0.9j-20080306-2ubuntu1
* Enabled unicode support. (Closes: LP #123530)
* Modify Maintainer value to match the DebianMaintainerField specification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
k="CVS `date +"%Y-%m-%d %H:%M"`"
 
3
file="src/lsp/config.lsp.in"
 
4
if [ -f $file  ]; then
 
5
  echo "Tagging ECL with date $k"
 
6
  sed "s,@PACKAGE_VERSION@.*\",@PACKAGE_VERSION@ ($k)\",g" < $file > foo && \
 
7
    mv foo $file && grep PACKAGE_VERSION $file
 
8
else
 
9
  echo "Cannot find file to tag"
 
10
  exit 1
 
11
fi