#! /bin/sh
# $NetBSD: sort-packages,v 1.15 2010/04/10 21:44:44 wiz Exp $

# This program scans all binary packages in the current directory and
# creates two lists of files in OUTDIR:
#
# restricted_packages
#	contains all packages that must not be published on the FTP
#	server, for whatever reason
#
# regular_packages
#	contains all the other ("good") packages.
#

set -eu

: ${OUTDIR="/tmp"}
: ${PKG_SUFX=".tgz"}
: ${PKG_ADMIN="pkg_admin"}
: ${PKG_INFO="pkg_info"}

regular_packages="${OUTDIR}/regular_packages"
restricted_packages="${OUTDIR}/restricted_packages"
newline="
"

: > "${regular_packages}"
: > "${restricted_packages}"

for pkg in *${PKG_SUFX}; do
	build_info=`${PKG_INFO} -B "${pkg}"`

	# Note: this code needs to be that complicated because licensing
	# issues are critical to pkgsrc, and we really don't want
	# anything unexpected to happen here. The worst case would be
	# that some file is sorted wrongly because some change in the
	# output of pkg_info which had not been foreseen. Therefore it
	# is better to check as strictly as possible to make those
	# changes immediately visible.

	no_bin_on_ftp="unknown"
	case "${newline}${build_info}${newline}" in
	*"${newline}NO_BIN_ON_FTP=${newline}"*)
		no_bin_on_ftp="no"
		;;
	*"${newline}NO_BIN_ON_FTP="*)
		no_bin_on_ftp="yes"
		;;
	esac

	restricted="unknown"
	case "${newline}${build_info}${newline}" in
	*"${newline}RESTRICTED=${newline}"*)
		restricted="no"
		;;
	*"${newline}RESTRICTED="*)
		restricted="yes"
		;;
	esac

	category="unknown"
	if [ "${restricted}" = "no" ] && [ "${no_bin_on_ftp}" = "no" ]; then
		category="regular"
	else
		if [ "${restricted}" = "yes" ] || [ "${no_bin_on_ftp}" = "yes" ]; then
			category="restricted"
		fi
	fi

	: echo "upload> ${pkg} is ${category}."

	case "${category}" in
	"regular")
		echo "${pkg}" >> "${regular_packages}"
		;;
	"restricted")
		echo "${pkg}" >> "${restricted_packages}"
		;;
	*)
		echo "sort-packages> WARNING: Could not sort ${pkg} into a category." 1>&2
		;;
	esac
done
