Skip to content

Commit

Permalink
Only allow .deb Description to be multiline.
Browse files Browse the repository at this point in the history
bazelbuild#572 - Debian policy only allows the Description field to be multiline.
  • Loading branch information
smu-ggl authored Apr 7, 2022
1 parent 776fcc0 commit 70cd6c3
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pkg/private/deb/make_deb.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@
('Section', False, False, 'contrib/devel'),
('Priority', False, False, 'optional'),
('Architecture', False, False, 'all'),
('Depends', False, True, []),
('Recommends', False, True, []),
('Replaces', False, True, []),
('Suggests', False, True, []),
('Enhances', False, True, []),
('Conflicts', False, True, []),
('Breaks', False, True, []),
('Pre-Depends', False, True, []),
('Provides', False, True, []),
('Depends', False, False, []),
('Recommends', False, False, []),
('Replaces', False, False, []),
('Suggests', False, False, []),
('Enhances', False, False, []),
('Conflicts', False, False, []),
('Breaks', False, False, []),
('Pre-Depends', False, False, []),
('Provides', False, False, []),
('Installed-Size', False, False),
('Maintainer', True, False),
('Description', True, True),
Expand Down

0 comments on commit 70cd6c3

Please sign in to comment.