#!/usr/bin/env bash # Download patches from debian project # Usage $0 debian-patches.txt debian-patches.nix # An example input and output files can be found in tools/graphics/plotutils DEB_URL=https://sources.debian.org/data/main declare -a deb_patches mapfile -t deb_patches < $1 pkgname="${deb_patches[0]}" # See https://sources.debian.org/data/main/ for patterns of prefixes if [[ $pkgname == lib* ]]; then sub_prefix="${pkgname:3:1}" deb_prefix="lib${sub_prefix}" else deb_prefix="${pkgname:0:1}" fi prefix="${DEB_URL}/${deb_prefix}/${pkgname}/debian/patches" if [[ -n "$2" ]]; then exec 1> $2 fi cat <