This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author warthog9
Recipients warthog9
Date 2017-07-13.17:50:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1499968200.32.0.508510692032.issue30924@psf.upfronthosting.co.za>
In-reply-to
Content
doc-files should break files up into multiple lines, as per RPM expectation

when using %doc section of the RPM spec, it expects multiple files
to be listed each on their own line.  Currently what gets passed in
is:

%doc file1 file2 file3

which throws:
	error: More than one file on a line: file1
	error: More than one file on a line: file2
	error: More than one file on a line: file3

Expectation is to break the files up into separate lines:

%doc
file1
file2
file3

which then works as expected with multiple files.
History
Date User Action Args
2017-07-13 17:50:00warthog9setrecipients: + warthog9
2017-07-13 17:50:00warthog9setmessageid: <1499968200.32.0.508510692032.issue30924@psf.upfronthosting.co.za>
2017-07-13 17:50:00warthog9linkissue30924 messages
2017-07-13 17:50:00warthog9create