summaryrefslogtreecommitdiff
path: root/Help/cpack_gen/rpm.rst
Commit message (Collapse)AuthorAgeFilesLines
* Help: CPack RPM Generator page use field listsAlex Turbov2023-02-071-201/+244
|
* Help: Fix some redirects reported with sphinx linkcheckAlex Turbov2022-11-071-1/+1
| | | | Mostly it's about replace `http:` with `https:` protocol.
* Help: Replace mentions of ``-G`` option with :option:`-G` roleAlex Turbov2022-08-041-1/+1
|
* Help: Add `versionadded` for `CPACK_RPM_REQUIRES_EXCLUDE_FROM` variableAlex Turbov2021-11-011-0/+2
|
* Help: Use lower-case names of sphinx directivesBrad King2021-11-011-2/+2
|
* CPack/DEB+RPM: Update documentation on debug symbol package creationRussell Greene2021-07-291-0/+4
| | | | | | | Update documentation to elaborate on the behavior between `.ddeb` creation, CPACK_STRIP_FILES, and if the files are actually stripped. Closes: #22438
* CPack/RPM: Add option to set %global __requires_exclude_fromLisa Welsch2021-07-091-0/+11
|
* CPack/RPM: Fix weak dep supportAlex Sweet2021-06-291-2/+4
| | | | | | | | | | RPM 4.11.3 for el7 contains backported support for the RPM weak dep tags. It only supports querying those tags, but rpmbuild can not make use of them. Since CPack relies on rpmbuild --querytags to check for support, this commit switches to rpm --suggests to check for support of weak dependencies. Fixes: #22350
* Help: Fix grammar in `.. versionadded` directivesNikita Nemkin2020-12-021-3/+3
| | | | Issue: #19715
* Help: Add `.. versionadded` directives to CPack generator docsNikita Nemkin2020-11-121-5/+81
| | | | Issue: #19715
* Update links to gitlab.kitware.com repos to add `-/`Brad King2020-05-261-2/+2
| | | | | | GitLab now uses a `/-/` component between the `group/project` part of the URL and the `{issues,merge_requests,tree}` part so that it can support `group/subgroup/project` with arbitrary depth.
* CPackRPM: Add PRE_/POST_TRANS scriptsSarang Joshi2020-02-241-10/+14
| | | | | | Add variables for PRE_TRANS and POST_TRANS scripts. Fixes: #18917
* Help: Improve documentation formatingBartosz Kosiorek2019-04-041-20/+20
|
* Help: Replace use of :code:`` with plain reST syntaxBrad King2018-11-281-2/+2
| | | | | This appeared in a few CPack generator documents but is not used elsewhere.
* Help: Fix typoAndrew Fuller2018-09-181-3/+3
|
* Help: Add new section for CPack generatorsKyle Edwards2018-06-211-0/+955
The documentation for CPack generators previously lived in their respective internal CMake modules. This setup was misleading, because it implied that you should include the modules in your own code, which is not the case. Moving the documentation into a separate section does a better job of hiding the internal modules, which are just an implementation detail. The generator documentation has also been modified to remove any references to the module name. The CPackIFW module is a special exception: since it has user-facing macros, the documentation for these macros has been kept in the module page, while all other documentation related to the IFW generator has been moved into the new section. To make it easier to find the new documentation, the old help pages for the CPack*.cmake modules have not been deleted, but have been replaced with a link to their respective help page in the new documentation section.