[issue30925] RPM build lacks ability to include other files similar to doc_files

2017-07-13 Thread John 'Warthog9' Hawley

New submission from John 'Warthog9' Hawley:

Duplicate doc-files functionality, to inject files into bdist_rpm

Enhancement to allow for files that are built outside of what's expected in 
setup.py to be injected into the bdist files_rpm listing so they are included 
in the resulting RPM.  This effectively duplicates the doc-files functionality, 
but adds it as additional files to be included.

--
messages: 298303
nosy: warthog9
priority: normal
pull_requests: 2762
severity: normal
status: open
title: RPM build lacks ability to include other files similar to doc_files
type: enhancement
versions: Python 2.7, Python 3.7

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue30925>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30924] RPM build doc_files needs files separated into separate lines

2017-07-13 Thread John 'Warthog9' Hawley

Changes by John 'Warthog9' Hawley <warth...@eaglescrag.net>:


--
type:  -> behavior

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue30924>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue30924] RPM build doc_files needs files separated into separate lines

2017-07-13 Thread John 'Warthog9' Hawley

New submission from John 'Warthog9' Hawley:

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.

--
messages: 298301
nosy: warthog9
priority: normal
pull_requests: 2761
severity: normal
status: open
title: RPM build doc_files needs files separated into separate lines
versions: Python 2.7, Python 3.7

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue30924>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com