File: mkogdidist.sh

package info (click to toggle)
ogdi-dfsg 3.2.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,672 kB
  • ctags: 7,037
  • sloc: ansic: 61,779; makefile: 418; sh: 199; perl: 162; tcl: 38
file content (81 lines) | stat: -rwxr-xr-x 2,104 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/sh
#
# Copyright (C) 2001 Her Majesty the Queen in Right of Canada.
# Permission to use, copy, modify and distribute this software and
# its documentation for any purpose and without fee is hereby granted,
# provided that the above copyright notice appear in all copies, that
# both the copyright notice and this permission notice appear in
# supporting documentation, and that the name of Her Majesty the Queen
# in Right  of Canada not be used in advertising or publicity pertaining
# to distribution of the software without specific, written prior
# permission.  Her Majesty the Queen in Right of Canada makes no
# representations about the suitability of this software for any purpose.
# It is provided "as is" without express or implied warranty.
#

TARGETDIR=ogdi.sourceforge.net:ftp-ogdi/.

if [ $# -lt 1 ] ; then
  echo "Usage: mkogdidist version [-install]"
  echo
  echo "Example: mkogdidist 3.1alpha"
  exit
fi

OGDI_VERSION=$1
DIST_NAME=ogdi-$OGDI_VERSION


rm -rf dist_wrk  
mkdir dist_wrk
cd dist_wrk

export CVSROOT=:pserver:anonymous@ogdi.cvs.sourceforge.net:/cvsroot/ogdi

echo "Please hit enter when prompted for a password."
cvs login

cvs checkout -P devdir

if [ \! -d devdir ] ; then
  echo "cvs checkout reported an error ... abandoning mkogdidist"
  exit
fi

# remove junks
find devdir -name CVS -exec rm -rf {} \;
find devdir -name ".cvsignore" -exec rm -rf '{}' \;
# fix wrongly encoded files from tarball
set +x
for f in `find . -type f` ; do
   if file $f | grep -q ISO-8859 ; then
      set -x
      iconv -f ISO-8859-1 -t UTF-8 $f > ${f}.tmp && \
         mv -f ${f}.tmp $f
      set +x
   fi
   if file $f | grep -q CRLF ; then
      set -x
      sed -i -e 's|\r||g' $f
      set +x
   fi
done
set -x

mv devdir $DIST_NAME

echo "${OGDI_VERSION}: `date`" > $DIST_NAME/VERSION

rm -f ../${DIST_NAME}.tar.gz ../${DIST_NAME}.zip

tar cf ../${DIST_NAME}.tar ${DIST_NAME}
gzip -9 ../${DIST_NAME}.tar
zip -r ../${DIST_NAME}.zip ${DIST_NAME}

cd ..
rm -rf dist_wrk

if test "$2" = "-install" ; then
  scp ${DIST_NAME}.tar.gz $TARGETDIR
  scp ${DIST_NAME}.zip $TARGETDIR
fi