Overview
| Comment: | More explicit options instead of single letters. Added -name and -email options to alter packager details. Now asks for password for key associated with email instead of root. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
153b3251b4f4ab59cbf2fae0d1fd534f |
| User & Date: | geraint@users.sourceforge.net on 2003-08-07 23:31:00.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2003-08-09
| ||
| 00:29:52 | Fixed grep error when lbl file doesn't exist. check-in: d0b2be3b3b user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2003-08-07
| ||
| 23:31:00 |
More explicit options instead of single letters. Added -name and -email options to alter packager details. Now asks for password for key associated with email instead of root. check-in: 153b3251b4 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 23:28:40 | Added reference to documentation sources. check-in: db656c8c8c user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt_cvs2deb
from [f0ecf165ca]
to [de05b28930].
1 2 3 4 5 6 7 8 9 10 11 | 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 | - + + + - + - + + + - + + + + + - + + + + - + + - + + - + + + + + - + |
#! /bin/sh
# Script to create a .deb package from the current cvs sources.
usage ()
{
cat <<EOF
usage: $0 [options]
options:
|
| ︙ | |||
106 107 108 109 110 111 112 | 123 124 125 126 127 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 ..
|