Lines Matching refs:TAR
282 # gcc-"${RELEASE}".tar.xz tarball.
301 # other arguments to tar.
304 # Get the name of the destination tar file.
305 TARFILE="$1.tar.xz"
308 # Build the tar file itself.
309 (${TAR} cf - "$@" | ${XZ} > ${TARFILE}) || \
314 # Build the various tar files for the release.
344 *.tar.xz) old_vers=${old_file%.tar.xz};;
345 *) old_vers=${old_file%.tar.bz2};;
350 if [ -e ${old_dir}/${f}-${old_vers}.tar.xz ]; then
351 old_tar=${old_dir}/${f}-${old_vers}.tar.xz
353 old_tar=${old_dir}/${f}-${old_vers}.tar.bz2
355 new_tar=${WORKING_DIRECTORY}/${f}-${RELEASE}.tar.xz
374 *.tar.bz2)
375 (${BZIP2} -d -c $1 | ${TAR} xf - ) || error "Could not unpack $1 for diffs"
377 *.tar.xz)
378 (${XZ} -d -c $1 | ${TAR} xf - ) || error "Could not unpack $1 for diffs"
381 (${XZ} -d -c $3 | ${TAR} xf - ) || error "Could not unpack $3 for diffs"
485 snapshot_print gcc-${RELEASE}.tar.xz "Complete GCC"
619 TAR="${TAR:-tar}"
719 OLD_TARS=${SNAPSHOTS_DIR}/${BRANCH}-${LAST_DATE}/gcc-${BRANCH}-${LAST_DATE}.tar.bz2
721 OLD_TARS=${SNAPSHOTS_DIR}/${BRANCH}-${LAST_DATE}/gcc-${BRANCH}-${LAST_DATE}.tar.xz
752 # Build the tar files.