blob: 746bc20a29809f86e11a0199ee78ed7c2350a0a5 (
plain) (
blame)
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
|
#!/bin/sh
#
# This script generates the disk layout for the CD images built by the FreeBSD
# release engineers as dictated by a specified master INDEX file. Each disc
# contains the master INDEX, it's assigned list of packages, and the
# appropriate tree of category symlinks.
#
# Usage: package-tress.sh <copy method> <INDEX> <package tree> <destination>
#
# $FreeBSD: src/release/scripts/package-trees.sh,v 1.2.20.1 2009/04/15 03:14:26 kensmith Exp $
# Verify the command line
if [ $# -ne 4 ]; then
echo "Invalid number of arguments"
echo "Usage: package-trees.sh <copy method> <INDEX> <tree> <destination>"
exit 1
fi
COPY=$1 ; shift
INDEX=$1 ; shift
TREE=$1 ; shift
DESTDIR=$1 ; shift
# First, determine the highest disc number.
high_disc=`cut -d '|' -f 14 ${INDEX} | sort -n | tail -1`
echo "Generating trees for ${high_disc} discs"
# Second, initialize the trees for each disc
for disc in `jot $high_disc`; do
rm -rf ${DESTDIR}/disc${disc}/packages
mkdir -p ${DESTDIR}/disc${disc}/packages/All
cp ${INDEX} ${DESTDIR}/disc${disc}/packages/INDEX
done
# Third, run through the INDEX copying each package to its appropriate CD and
# making the appropriate category symlinks
while read line; do
disc=`echo $line | cut -d '|' -f 14`
package=`echo $line | cut -d '|' -f 1`
categories=`echo $line | cut -d '|' -f 7`
discdir=${DESTDIR}/disc${disc}
if [ -n "$PKG_VERBOSE" ]; then
echo "--> Copying $package to Disc $disc"
fi
${COPY} ${TREE}/All/${package}.tbz ${discdir}/packages/All
for cat in ${categories}; do
catdir=${discdir}/packages/${cat}
mkdir -p ${catdir}
ln -s ../All/${package}.tbz ${catdir}
done
done < ${INDEX}
# Fourth, output du info for the relative size of the trees.
discs=""
for disc in `jot $high_disc`; do
discs="${discs} disc${disc}"
done
(cd ${DESTDIR}; du -sh ${discs})
|