Home | History | Annotate | Line # | Download | only in sets
maketars revision 1.84
      1   1.2       gwr #!/bin/sh
      2   1.2       gwr #
      3  1.84    martin # $NetBSD: maketars,v 1.84 2015/05/27 15:18:29 martin Exp $
      4   1.2       gwr #
      5   1.2       gwr # Make release tar files for some or all lists.  Usage:
      6  1.34     lukem # maketars [-b] [-x] [-i installdir] [-a arch] [-m machine] [-s setsdir]
      7  1.81    martin #	[-M metalog] [-N etcdir] [-F setlistsdir] [-d destdir]
      8  1.83    martin #	[-t tardir] [-U] [setname ...]
      9  1.35     lukem #
     10  1.75  christos # The default sets are "base comp debug etc games man misc tests text"
     11  1.76  christos # The X sets are "xbase xcomp xdebug xetc xfont xserver"
     12  1.70  uebayasi # The extsrc sets are "extbase extcomp extetc"
     13  1.35     lukem #
     14  1.35     lukem # If '-i installdir' is given, copy the given sets to installdir
     15  1.35     lukem # (using pax -rw ...) instead of creating tar files.
     16  1.70  uebayasi # In this case, remove "etc", "xetc", and "extetc" from the list of default sets.
     17   1.2       gwr #
     18   1.2       gwr 
     19  1.58       apb prog="${0##*/}"
     20  1.56       apb rundir="$(dirname "$0")" # ${0%/*} isn't good enough when there's no "/"
     21  1.56       apb . "${rundir}/sets.subr"
     22  1.41     lukem 
     23   1.2       gwr # set defaults
     24  1.72    cegger lists=
     25  1.58       apb tars="${RELEASEDIR}"
     26  1.58       apb dest="${DESTDIR}"
     27  1.18     lukem metalog=
     28  1.28     lukem installdir=
     29  1.30     lukem etcdir=
     30  1.81    martin setlistdir=
     31  1.50     lukem setfilesonly=false
     32  1.64     lukem quiet=false
     33  1.77  christos skipkeys=time,md5,sha1,sha384,sha512,rmd160,cksum
     34  1.83    martin preserve="-pe"
     35   1.2       gwr 
     36  1.47     lukem usage()
     37  1.47     lukem {
     38  1.47     lukem 	cat 1>&2 <<USAGE
     39  1.81    martin Usage: ${prog} [-L base,x,ext] [-b] [-x] [-y] [-i idir] [-a arch] [-m machine]
     40  1.81    martin 	    [-s setsdir] [-S] [-M metalog] [-N etcdir] [-F setlistdir]
     41  1.81    martin 	    [-d dest] [-t targetdir] [setname ...]
     42  1.70  uebayasi 	-L base,x,ext	Make specified lists
     43  1.50     lukem 	-b		Make both netbsd and x11 lists
     44  1.50     lukem 	-x		Only make x11 lists
     45  1.50     lukem 		[Default: make netbsd lists]
     46  1.70  uebayasi 	-y		Only make extsrc lists
     47  1.70  uebayasi 		[Default: make netbsd lists]
     48  1.50     lukem 	-i idir		Install sets to idir instead of creating tar files
     49  1.58       apb 	-a arch		Set arch (e.g, m68k, mipseb, mipsel, powerpc) [${MACHINE_ARCH}]
     50  1.58       apb 	-m machine	Set machine (e.g, amiga, i386, macppc) [${MACHINE}]
     51  1.64     lukem 	-q		Quiet operation
     52  1.58       apb 	-s setsdir	Directory to find sets [${setsdir}]
     53  1.81    martin 	-F setlistdir	output directory for generated set lists [${dest}/etc/mtree/]
     54  1.58       apb 	-S		Exit after creating set files ${dest}/etc/mtree/set.*
     55  1.18     lukem 	-M metalog	metalog file
     56  1.58       apb 	-N etcdir	etc dir for metalog use [${dest}/etc]
     57  1.83    martin 	-U		do not preserve file permissions (with -i ..)
     58  1.58       apb 	-d dest		\${DESTDIR}	[${dest}]
     59  1.58       apb 	-t targetdir	\${RELEASEDIR}	[${tars}]
     60  1.58       apb 	[setname ...]	Sets to build 	[${lists}]
     61   1.9     lukem USAGE
     62  1.47     lukem 	exit 1
     63  1.47     lukem }
     64  1.47     lukem 
     65  1.64     lukem msg()
     66  1.64     lukem {
     67  1.64     lukem 	$quiet || echo $*
     68  1.64     lukem }
     69  1.64     lukem 
     70  1.47     lukem # handle args
     71  1.83    martin while getopts L:bxyi:a:m:qs:F:SM:N:Ud:t: ch; do
     72  1.47     lukem 	case ${ch} in
     73  1.70  uebayasi 	L)
     74  1.72    cegger 		save_IFS="${IFS}"
     75  1.72    cegger 		IFS=,
     76  1.72    cegger 		for _list in ${OPTARG}; do
     77  1.72    cegger 			case $_list in
     78  1.72    cegger 			base)	lists="${lists} ${nlists}" ;;
     79  1.72    cegger 			x)	lists="${lists} ${xlists}" ;;
     80  1.72    cegger 			ext)	lists="${lists} ${extlists}" ;;
     81  1.72    cegger 			esac
     82  1.72    cegger 		done
     83  1.72    cegger 		IFS="${save_IFS}"
     84  1.70  uebayasi 		;;
     85  1.70  uebayasi 	# backward compat
     86  1.47     lukem 	b)
     87  1.58       apb 		lists="${nlists} ${xlists}"
     88  1.47     lukem 		;;
     89  1.47     lukem 	x)
     90  1.58       apb 		lists="${xlists}"
     91  1.47     lukem 		;;
     92  1.70  uebayasi 	y)
     93  1.70  uebayasi 		lists="${extlists}"
     94  1.70  uebayasi 		;;
     95  1.47     lukem 	i)
     96  1.58       apb 		installdir="${OPTARG}"
     97  1.47     lukem 		;;
     98  1.47     lukem 	a)
     99  1.58       apb 		MACHINE_ARCH="${OPTARG}"
    100  1.58       apb 		MACHINE_CPU="$(arch_to_cpu "${OPTARG}")"
    101  1.47     lukem 		;;
    102  1.47     lukem 	m)
    103  1.58       apb 		MACHINE="${OPTARG}"
    104  1.47     lukem 		;;
    105  1.64     lukem 	q)
    106  1.64     lukem 		quiet=true
    107  1.64     lukem 		;;
    108  1.47     lukem 	s)
    109  1.58       apb 		setsdir="${OPTARG}"
    110  1.47     lukem 		;;
    111  1.81    martin 	F)
    112  1.81    martin 		setlistdir="${OPTARG}"
    113  1.81    martin 		;;
    114  1.50     lukem 	S)
    115  1.50     lukem 		setfilesonly=true
    116  1.50     lukem 		;;
    117  1.47     lukem 	M)
    118  1.58       apb 		metalog="${OPTARG}"
    119  1.47     lukem 		;;
    120  1.47     lukem 	N)
    121  1.58       apb 		etcdir="${OPTARG}"
    122  1.47     lukem 		;;
    123  1.83    martin 	U)
    124  1.84    martin 		preserve=
    125  1.83    martin 		;;
    126  1.47     lukem 	d)
    127  1.58       apb 		dest="${OPTARG}"
    128  1.47     lukem 		;;
    129  1.47     lukem 	t)
    130  1.58       apb 		tars="${OPTARG}"
    131   1.9     lukem 		;;
    132   1.9     lukem 	*)
    133  1.47     lukem 		usage
    134   1.9     lukem 		;;
    135   1.2       gwr 	esac
    136   1.2       gwr done
    137  1.47     lukem shift $((${OPTIND} - 1))
    138  1.70  uebayasi if [ -n "${installdir}" ]; then	# if -i, remove etc + xetc + extetc from the default list
    139  1.70  uebayasi 	lists="$(echo ${lists} | ${SED} -e 's/ etc / /;s/ xetc / /;s/ extetc / /')"
    140  1.28     lukem fi
    141  1.10      ross if [ -n "$*" ]; then
    142  1.10      ross 	lists="$*"
    143   1.9     lukem fi
    144   1.1       cgd 
    145  1.58       apb if [ -z "${tars}" -a -z "${installdir}" ]; then
    146  1.60       apb 	echo >&2 "${prog}: \${RELEASEDIR} must be set, or -i must be used"
    147   1.1       cgd 	exit 1
    148   1.9     lukem fi
    149   1.1       cgd 
    150  1.58       apb if [ -z "${dest}" ]; then
    151  1.60       apb 	echo >&2 "${prog}: \${DESTDIR} must be set"
    152   1.1       cgd 	exit 1
    153   1.9     lukem fi
    154  1.58       apb : ${etcdir:="${dest}/etc"}
    155   1.1       cgd 
    156  1.58       apb SDIR="$(${MKTEMP} -d "/tmp/${prog}.XXXXXX")"
    157  1.63     lukem TMPFILES=
    158  1.20     bjh21 
    159  1.81    martin : ${setlistdir:="${dest}/etc/mtree"}
    160  1.50     lukem 
    161  1.38       erh cleanup()
    162  1.38       erh {
    163  1.44       dsl 	es=$?
    164  1.63     lukem 	/bin/rm -rf "${SDIR}" ${TMPFILES}
    165  1.63     lukem 	trap - 0
    166  1.58       apb 	exit ${es}
    167  1.38       erh }
    168  1.38       erh trap cleanup 0 2 3 13		# EXIT INT QUIT PIPE
    169  1.18     lukem 
    170  1.50     lukem #
    171  1.50     lukem # build the setfiles
    172  1.50     lukem #
    173  1.50     lukem 
    174  1.58       apb for setname in ${lists}; do
    175  1.58       apb 	${HOST_SH} "${setsdir}/makeflist" -a "${MACHINE_ARCH}" -m "${MACHINE}" \
    176  1.69       apb 	    -s "${setsdir}" "${setname}" > "${SDIR}/flist.${setname}" \
    177  1.69       apb 	    || exit 1
    178  1.73  uebayasi 	if [ ! -s "${SDIR}/flist.${setname}" ]; then
    179  1.71       apb 		echo >&2 "makeflist output is empty for ${setname}"
    180  1.71       apb 		exit 1
    181  1.71       apb 	fi
    182  1.77  christos 	${setfilesonly} && msg "Creating ${setlistdir}/set.${setname}"
    183  1.58       apb 	if [ -n "${metalog}" ]; then
    184  1.58       apb 		${AWK} -f "${rundir}/getdirs.awk" "${SDIR}/flist.${setname}" \
    185  1.69       apb 		    > "${SDIR}/flist.${setname}.full" \
    186  1.69       apb 		    || exit 1
    187  1.23     lukem 		(
    188  1.23     lukem 			echo "/set uname=root gname=wheel"
    189  1.58       apb 			${AWK} -f "${rundir}/join.awk" \
    190  1.68       apb 				"${SDIR}/flist.${setname}.full" "${metalog}"
    191  1.50     lukem 			echo "./etc/mtree/set.${setname} type=file mode=0444"
    192  1.77  christos 		) | ${MTREE} -CS -k all -R "${skipkeys}" -N "${etcdir}" \
    193  1.69       apb 		    > "${setlistdir}/set.${setname}" \
    194  1.69       apb 		    || exit 1
    195  1.59       apb 		# We deliberately do not add set.${setname} to ${metalog},
    196  1.59       apb 		# because we depend on it as an input.
    197  1.77  christos 	else
    198  1.78  christos 		${MTREE} -c -p "${dest}" -k all -R "${skipkeys}" \
    199  1.77  christos 		    -O "${SDIR}/flist.${setname}" | ${MTREE} -C -k all > \
    200  1.77  christos 		    "${setlistdir}/set.${setname}"
    201  1.18     lukem 	fi
    202  1.50     lukem done
    203  1.58       apb if ${setfilesonly}; then		# exit after creating the set lists
    204  1.50     lukem 	exit 0
    205  1.50     lukem fi
    206  1.18     lukem 
    207  1.78  christos runpax() {
    208  1.78  christos 	local s="$1"
    209  1.78  christos 	shift
    210  1.80  christos 	(cd "${dest}" && 
    211  1.80  christos 	    ${PAX} -dOw -N"${etcdir}" -M "$@" < "${setlistdir}/set.${s}")
    212  1.78  christos }
    213  1.78  christos 
    214  1.50     lukem #
    215  1.50     lukem # now build the tarfiles
    216  1.50     lukem #
    217  1.50     lukem 
    218  1.67     perry GZIP=-9n		# for pax -z
    219  1.50     lukem export GZIP
    220  1.50     lukem es=0
    221  1.82    martin 
    222  1.72    cegger for setname in ${lists:-${nlists}}; do
    223  1.58       apb 	out="${setname}.tgz"
    224  1.58       apb 	if [ -n "${installdir}" ]; then
    225  1.64     lukem 		msg "Copying set ${setname}"
    226  1.82    martin 		runpax "${setname}" -r ${preserve} "${installdir}"
    227  1.28     lukem 	else
    228  1.58       apb 		if [ -n "${metalog}" -a "${tars}/${out}" -nt "${metalog}" ]
    229  1.58       apb 		then
    230  1.64     lukem 			msg "${out} is up to date"
    231  1.50     lukem 			continue
    232  1.50     lukem 		fi
    233  1.64     lukem 		msg "Creating ${out}"
    234  1.58       apb 		rm -f "${tars}/${out}"
    235  1.63     lukem 		TMPFILES="${TMPFILES} ${tars}/${out}.tmp"
    236  1.79  christos 		runpax "${setname}" -z --use-compress-program \
    237  1.78  christos 		    ${COMPRESS_PROGRAM} > "${tars}/${out}.tmp" &&
    238  1.58       apb 		mv "${tars}/${out}.tmp" "${tars}/${out}"
    239  1.28     lukem 	fi
    240  1.58       apb 	es=$((${es} + $?))
    241   1.2       gwr done
    242  1.61       apb if [ ${es} -gt 255 ]; then
    243  1.38       erh 	es=255
    244  1.38       erh fi
    245  1.58       apb exit ${es}
    246