Introduce a new format for the automatically generated version field.

By extending it to a mandatory 8 digits and padding it with zeroes on the
right side it should be possible to avoid problems with version numbers
changing format.
This means  1.19.5->1.20 should be handled correctly now.

Add support for the new subsys.conf keyword (defalt/nodefault).

Flesh out the auto_rel function to help with release notes maintenance.
Added a relnotes.template.irix and make newpkg install a copy
into new sandboxes.
Also clean up newpkg a bit.

Fix a problem with the fix_man function and how to locate the man pages.
The problem was discoved when building gcc-3.4.1 into
$prefix=/usr/local/gcc-3.4.1 and still needing $topinstalldir
to be /usr/local. We now attempt to find any extra subdirs
needed by comparing $prefix and $topinstalldir.
This commit is contained in:
Tom G. Christensen
2004-07-19 20:38:22 +00:00
parent 08d497ad37
commit 410760a6d3
3 changed files with 78 additions and 14 deletions

12
newpkg
View File

@@ -16,23 +16,21 @@ else
fi
echo "Creating sandbox for $arg1"
mkdir "$arg1"
$MKDIR "$arg1"
for i in $REQ_DIRS
do
mkdir $arg1/$i
done
cp scripts/build.sh.generic $arg1/build.sh
$CP scripts/build.sh.generic $arg1/build.sh
chmod 755 $arg1/build.sh
if [ "$($UNAME -s)" == "IRIX" ]; then
$SED -e 's/bin\/bash/usr\/local\/bin\/bash/g' $arg1/build.sh > $arg1/build.sh.tmp
$MV $arg1/build.sh.tmp $arg1/build.sh
$CP scripts/pkgdef.template.irix $arg1/meta/pkgdef
$CP scripts/relnotes.template.irix $arg1/meta/relnotes
fi
if [ "$($UNAME -s)" == "SunOS" ]; then
cp scripts/pkgdef.template $arg1/meta/pkgdef
fi
if [ "$($UNAME -s)" == "IRIX" ]; then
cp scripts/pkgdef.template.irix $arg1/meta/pkgdef
$CP scripts/pkgdef.template $arg1/meta/pkgdef
fi