Overview
| Comment: | Specifies maintainers address. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
00cb23ca743dae6409f485aabdfdb699 |
| User & Date: | geraint@users.sourceforge.net on 2004-08-04 19:51:14.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2004-08-04
| ||
| 21:34:17 | Writes junctions to component list. check-in: 5720b32915 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 19:51:14 | Specifies maintainers address. check-in: 00cb23ca74 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 19:46:42 |
Sorts components alphabetically (type:name) within the categories: internal ports, components, 0 junctions and 1 junctions. Standardising the order in which components are listed allows models | |
Changes
Modified mttroot/mtt/bin/mtt_cvs2deb
from [296effe228]
to [a92f944d93].
| ︙ | ︙ | |||
128 129 130 131 132 133 134 |
# create .deb
echo "$0: information: a \"Could not find diffs\" error in the next few lines is probably harmless"
uupdate -u mtt-${version}.tar.gz
cd ../mtt-${version}/debian
dch -v ${version} ${logtext}
cd ..
| | | 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
# create .deb
echo "$0: information: a \"Could not find diffs\" error in the next few lines is probably harmless"
uupdate -u mtt-${version}.tar.gz
cd ../mtt-${version}/debian
dch -v ${version} ${logtext}
cd ..
dpkg-buildpackage -rfakeroot -k${DEBEMAIL} -m${DEBEMAIL}
cd ..
# clean up
cp mtt*.deb ${topdir}/
cd ${topdir}
if [ "${keeptmp}" = "remove" ]; then
rm -r ${tmpdir}
|
| ︙ | ︙ | |||
170 171 172 173 174 175 176 |
# create .deb
echo "$0: information: a \"Could not find diffs\" error in the next few lines is probably harmless"
uupdate -u mtt-examples-${version}.tar.gz
cd ../mtt-examples-${version}/debian
dch -v ${version} ${logtext}
cd ..
| | | 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
# create .deb
echo "$0: information: a \"Could not find diffs\" error in the next few lines is probably harmless"
uupdate -u mtt-examples-${version}.tar.gz
cd ../mtt-examples-${version}/debian
dch -v ${version} ${logtext}
cd ..
dpkg-buildpackage -rfakeroot -k${DEBEMAIL} -m${DEBEMAIL}
cd ..
# clean up
cp mtt-examples*.deb ${topdir}/
cd ${topdir}
if [ "${keeptmp}" = "remove" ]; then
rm -r ${tmpdir}
else
echo Keeping temporary directory: ${tmpdir}
fi
exit 0
|