summaryrefslogtreecommitdiff
path: root/support/dktools/scripts/create-distribution.sh
blob: f47b8e9735e3c880e660b98c12e2a9d71384ff83 (plain)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#! /bin/sh

# Copyright (c) 2002-2016, Dirk Krause
# All rights reserved.
# 
# Redistribution and use in source and binary forms,
# with or without modification, are permitted provided
# that the following conditions are met:
# 
# * Redistributions of source code must retain the above
#   copyright notice, this list of conditions and the
#   following disclaimer.
# * Redistributions in binary form must reproduce the above 
#    opyright notice, this list of conditions and the following
#   disclaimer in the documentation and/or other materials
#   provided with the distribution.
# * Neither the name of the Dirk Krause nor the names of
#   contributors may be used to endorse or promote
#   products derived from this software without specific
#   prior written permission.
# 
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
# CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED.
# IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
# DAMAGE.

echo `date '+%Y-%m-%d %H:%M:%S'` Start scripts/create-distribution.sh

umask 0

D1=`date`
echo $D1

VERSION=`cat version.txt`

SRCDIR=/home/krause/work/dklib-4

DOWNLOADS=/home/krause/Downloads

# Ensure the Downloads directory is available
[ -d $DOWNLOADS ] || mkdir -p $DOWNLOADS

# Remove artifacts
A="dktools-${VERSION} dktools-doc-${VERSION} dktools-devdoc-${VERSION}"
A="$A dktools-full-${VERSION} dktools-sf-doc-${VERSION}"
for i in $A
do
  echo Removing old files for $i
  if [ -d ${DOWNLOADS}/$i ]
  then
    echo "rm -fr ${DOWNLOADS}/$i"
    rm -fr ${DOWNLOADS}/$i
  fi
  if [ -f ${DOWNLOADS}/${i}.tar ]
  then
    echo "rm -f ${DOWNLOADS}/${i}.tar"
    rm -f ${DOWNLOADS}/${i}.tar
  fi
  if [ -f ${DOWNLOADS}/${i}.tar.gz ]
  then
    echo "rm -f ${DOWNLOADS}/${i}.tar.gz"
    rm -f ${DOWNLOADS}/${i}.tar.gz
  fi
  if [ -f /home/krause/SW-DEV/archives/${i}.tar.gz ]
  then
    echo "rm -f /home/krause/SW-DEV/archives/${i}.tar.gz"
    rm -f /home/krause/SW-DEV/archives/${i}.tar.gz
  fi
  # if [ -f /home/krause/rpmbuild/SOURCES/${i}.tar.gz ]
  # then
  #   echo "rm -f /home/krause/rpmbuild/SOURCES/${i}.tar.gz"
  #   rm -f /home/krause/rpmbuild/SOURCES/${i}.tar.gz
  # fi
done

# Update version number in debian/changelog
# sed -e "s/@VERSION@/$VERSION/" < debian/changelog.in > debian/changelog
echo 'Changing @VERSION@ to' "$VERSION" in doc/debian/changelog and devdoc/debian/changelog

sed -e "s/@VERSION@/$VERSION/" < doc/debian/changelog.in > doc/debian/changelog
sed -e "s/@VERSION@/$VERSION/" < devdoc/debian/changelog.in > devdoc/debian/changelog

# dktools-${VERSION}
mkdir -p ${DOWNLOADS}/dktools-${VERSION}
cd ${DOWNLOADS}/dktools-${VERSION}
echo Copying files to ${DOWNLOADS}/dktools-${VERSION}
(cd ${SRCDIR} ; tar cf - * --exclude .git --exclude doc/doxygen --exclude dk4wx-v1) | tar xf -
rm -fr ${DOWNLOADS}/dktools-${VERSION}/doc
rm -fr ${DOWNLOADS}/dktools-${VERSION}/devdoc
rm -fr ${DOWNLOADS}/dktools-${VERSION}/debian/*.ex
rm -fr ${DOWNLOADS}/dktools-${VERSION}/debian/*.EX
[ ! -f configure.out ] || rm -f configure.out
tar cf help-src.tar help-src
gzip -9 help-src.tar
rm -fr "${DOWNLOADS}/dktools-${VERSION}/help-src"
tar cf help-html.tar help-html
gzip -9 help-html.tar
rm -fr "${DOWNLOADS}/dktools-${VERSION}/help-html"
tar cf man-src.tar man-src
gzip -9 man-src.tar
rm -fr "${DOWNLOADS}/dktools-${VERSION}/man-src"

find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod ugo+r {} \;
find . -name '*.sh' -exec chmod ugo+x {} \;
find . -name '*.pl' -exec chmod ugo+x {} \;

# dktools-doc-${VERSION}
mkdir -p ${DOWNLOADS}/dktools-doc-${VERSION}
cd ${DOWNLOADS}/dktools-doc-${VERSION}
echo Copying files to ${DOWNLOADS}/dktools-doc-${VERSION}
(cd ${SRCDIR}/doc ; tar cf - *) | tar xf -
cp ${SRCDIR}/version.txt .
rm -fr ${DOWNLOADS}/dktools-doc-${VERSION}/doxygen
rm -fr ${DOWNLOADS}/dktools-doc-${VERSION}/html/devdoc
# rm -fr ${DOWNLOADS}/dktools-doc-${VERSION}/src
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod ugo+r {} \;
find . -name '*.sh' -exec chmod ugo+x {} \;
find . -name '*.pl' -exec chmod ugo+x {} \;

# dktools-devdoc-${VERSION}
mkdir -p ${DOWNLOADS}/dktools-devdoc-${VERSION}
cd ${DOWNLOADS}/dktools-devdoc-${VERSION}
echo Copying files to ${DOWNLOADS}/dktools-devdoc-${VERSION}
(cd ${SRCDIR}/devdoc ; tar cf - *) | tar xf -
(cd ${SRCDIR}/doc/doxygen; tar cf - html) | tar xf -
cp ${SRCDIR}/version.txt .
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod ugo+r {} \;
find . -name '*.sh' -exec chmod ugo+x {} \;
find . -name '*.pl' -exec chmod ugo+x {} \;

# dktools-full-${VERSION}
mkdir -p ${DOWNLOADS}/dktools-full-${VERSION}
cd ${DOWNLOADS}/dktools-full-${VERSION}
echo Copying files to ${DOWNLOADS}/dktools-full-${VERSION}
(cd ${SRCDIR} ; tar cf - * --exclude .git) | tar xf -
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod ugo+r {} \;
find . -name '*.sh' -exec chmod ugo+x {} \;
find . -name '*.pl' -exec chmod ugo+x {} \;

# dktools-sf-doc-${VERSION}
mkdir -p ${DOWNLOADS}/dktools-sf-doc-${VERSION}
cd ${SRCDIR}/doc/src
touch index.prj
make webinstall
cd ${DOWNLOADS}/dktools-sf-doc-${VERSION}
echo Copying files to ${DOWNLOADS}/dktools-sf-doc-${VERSION}
(cd ${SRCDIR}/doc ; tar cf - *) | tar xf -
cp ${SRCDIR}/version.txt .
[ -d html ] || mkdir -p html
mkdir html/devdoc
cd html/devdoc
(cd ${SRCDIR}/doc/doxygen/html ; tar cf - *) | tar xf -
cd ../..
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod ugo+r {} \;
find . -name '*.sh' -exec chmod ugo+x {} \;
find . -name '*.pl' -exec chmod ugo+x {} \;
find . -type f -exec chmod go-w {} \;
rm -fr ${DOWNLOADS}/dktools-doc-${VERSION}/doxygen
# rm -fr ${DOWNLOADS}/dktools-doc-${VERSION}/src
cd ${SRCDIR}/doc/src
touch index.prj
make install
cd ..
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod ugo+r {} \;
find . -name '*.sh' -exec chmod ugo+x {} \;
find . -name '*.pl' -exec chmod ugo+x {} \;

# Copy files
echo "cd ${DOWNLOADS}"
cd ${DOWNLOADS}

for i in $A
do
  echo "tar cf ${i}.tar ${i}"
  tar cf ${i}.tar ${i}
  echo "gzip -9 ${i}.tar"
  gzip -9 ${i}.tar
  echo "cp ${i}.tar.gz ~/SW-DEV/archives"
  cp ${i}.tar.gz ~/SW-DEV/archives
  # echo "cp ${i}.tar.gz ~/rpmbuild/SOURCES"
  # cp ${i}.tar.gz ~/rpmbuild/SOURCES
done

# echo "cp dktools-${VERSION}/*.spec ~/rpmbuild/SPECS"
# cp dktools-${VERSION}/*.spec ~/rpmbuild/SPECS
# echo "cp dktools-doc-${VERSION}/*.spec ~/rpmbuild/SPECS"
# cp dktools-doc-${VERSION}/*.spec ~/rpmbuild/SPECS
# echo "cp dktools-devdoc-${VERSION}/*.spec ~/rpmbuild/SPECS"
# cp dktools-devdoc-${VERSION}/*.spec ~/rpmbuild/SPECS

# Clean up
for i in $A
do
  if [ -d ${DOWNLOADS}/$i ]
  then
    echo "rm -fr ${DOWNLOADS}/$i"
    rm -fr ${DOWNLOADS}/$i
  fi
  if [ -f ${DOWNLOADS}/${i}.tar ]
  then
    echo "rm -f ${DOWNLOADS}/${i}.tar"
    rm -f ${DOWNLOADS}/${i}.tar
  fi
  if [ -f ${DOWNLOADS}/${i}.tar.gz ]
  then
    echo "rm -f ${DOWNLOADS}/${i}.tar.gz"
    rm -f ${DOWNLOADS}/${i}.tar.gz
  fi
done

echo `date '+%Y-%m-%d %H:%M:%S'` Finished scripts/create-distribution.sh