#!/bin/bash -eu # # Generate an Ubuntu-style changelog entry # function lp_title() { curl -s -S --get "https://api.launchpad.net/devel/bugs/${1}" | \ python3 -c "\ import json,sys try: obj = json.load(sys.stdin) print(obj['title']) except: pass " } function usage() { cat <