Issue 30924: RPM build doc_files needs files separated into separate lines (original) (raw)

Issue30924

Created on 2017-07-13 17:50 by warthog9, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 591 closed warthog9,2017-07-13 17:50
Messages (3)
msg298301 - (view) Author: John 'Warthog9' Hawley (warthog9) * Date: 2017-07-13 17:50
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 which throws: error: More than one file on a line: error: More than one file on a line: error: More than one file on a line: Expectation is to break the files up into separate lines: %doc which then works as expected with multiple files.
msg399810 - (view) Author: Ryan Mast (nightlark) (rmast) * Date: 2021-08-18 00:37
Should this be closed? It looks like the PR is only changing a file in distutils, and according to https://bugs.python.org/issue30925#msg386350 distutils is deprecated and only release blocking issues will be considered.
msg400048 - (view) Author: Hai Shi (shihai1991) * (Python triager) Date: 2021-08-22 02:40
> Should this be closed? Copy from PEP-632: In Python 3.10 and 3.11, distutils will be formally marked as deprecated. All known issues will be closed at this time. I close this bpo. If there have some block issues to discuss, we can reopen it again:)
History
Date User Action Args
2022-04-11 14:58:49 admin set github: 75107
2021-08-22 02:40:47 shihai1991 set status: open -> closednosy: + shihai1991messages: + resolution: out of datestage: resolved
2021-08-18 00:37:40 rmast set nosy: + rmastmessages: +
2017-07-14 03:54:34 ncoghlan set nosy: + ncoghlan, kushal.das
2017-07-13 17:50:23 warthog9 set type: behavior
2017-07-13 17:50:00 warthog9 create