Overview
Comment: | Added option to generate .deb package from local directory source. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
1a75bd73027f5b6198dbaec8974dfc47 |
User & Date: | geraint@users.sourceforge.net on 2002-09-21 14:02:55 |
Other Links: | branch diff | manifest | tags |
Context
2002-09-21
| ||
18:15:53 | Correctly installs info documentation. check-in: 0d2df20be8 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
14:02:55 | Added option to generate .deb package from local directory source. check-in: 1a75bd7302 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
00:30:48 | Script to automate the production of a .deb package from the cvs sources. check-in: b4b8cf85cc user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt_cvs2deb from [2b957fe7a8] to [5b212d2212].
1 2 3 4 5 6 7 8 | 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 | + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + - - - - + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + - - + + + + - + - + + + - - - + + + + + | #! /bin/sh # Script to create a .deb package from the current cvs sources. usage () { cat <<EOF usage: $0 [options] options: -d /path/to/mttroot Build package from local directory /path/to/mttroot instead of sourceforge CVS. -l changelog text Write changelog text to changelog file Note: this must be the last option given. -v #.# Use version #.# instead of the date to label the .deb EOF } error () { echo $0: error: ${1:-"unknown error"} - aborting. exit 1 } # should be root for some of these commands if [ ! `whoami` = "root" ]; then echo root password required exec su -p -c "$0 $*" |