File: wrap_cl.py

package info (click to toggle)
git-buildpackage 0.6.0~git20120601
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,000 kB
  • sloc: python: 5,379; sh: 381; makefile: 70
file content (14 lines) | stat: -rw-r--r-- 450 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Simple changelog entry formatter
#
# It simply uses the built in formatter and linewraps the text
#
# Use git-dch --customizations=/usr/share/doc/git-buildpackage/examples/wrap_cl.py
# or set it via gbp.conf

import textwrap
import gbp.dch

def format_changelog_entry(commit_info, options, last_commit=False):
    entry = gbp.dch.format_changelog_entry(commit_info, options, last_commit)
    if entry:
        return textwrap.wrap(" ".join(entry))