Differences From Artifact [296effe228]:
- Executable file
mttroot/mtt/bin/mtt_cvs2deb
— part of check-in
[e6c98916c8]
at
2004-02-19 00:47:19
on branch origin/master
— 898897 Separate examples from main .deb
Created new .deb package for examples (mtt-examples).mtt-examples depends on mtt.
mtt recommends mtt-examples. (user: geraint@users.sourceforge.net, size: 4368) [annotate] [blame] [check-ins using] [more...]
To Artifact [a92f944d93]:
- Executable file mttroot/mtt/bin/mtt_cvs2deb — part of check-in [00cb23ca74] at 2004-08-04 19:51:14 on branch origin/master — Specifies maintainers address. (user: geraint@users.sourceforge.net, size: 4396) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
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 |