#!/bin/sh
# Copyright 2025 Simon McVittie
# SPDX-License-Identifier: CC0-1.0

sed -E -n -e '
/^# Broken Depends:/,/^$/ {
	/^#/ d
	s/^([^/]*)[:/].*/\1/p
}
/^# Broken Build-Depends:/,/^$/ {
	/^#/ d
	s/^([^/]*)[:/].*/\1/p
}
' "$@" | sort -u
