| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-01-01 | cmake-utils.eclass: Set CMAKE_MIN_VERSION to 3.5.2 | Johannes Huber | |
| 2017-01-01 | Welcome to 2017 | Johannes Huber | |
| Happy new year. | |||
| 2016-12-23 | cmake-utils.eclass: Set CMAKE_MIN_VERSION to 3.2.2 | Johannes Huber | |
| 2016-12-23 | cmake-utils.eclass: Sync with gentoo main tree | Johannes Huber | |
| 2016-09-09 | Revert "cmake-utils.eclass: print feature summary" | Michael Palimaka | |
| A package can include a custom FeatureSummary module which does not export FEATURE_SUMMARY() resulting in a configure failure. This reverts commit 549ade03b47bb0b22801001921cdc31111c5ea31. Gentoo-bug: 593230 | |||
| 2016-09-09 | cmake-utils.eclass: print feature summary | Christoph Junghans | |
| Closes: https://github.com/gentoo/gentoo/pull/2139 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org> | |||
| 2016-08-31 | cmake-utils.eclass: typo | Michael Palimaka | |
| 2016-08-21 | cmake-utils.eclass: Let cmake_comment_add_subdirectory take n arguments | Andreas Sturmlechner | |
| 2016-08-05 | cmake-utils.eclass: Expand suggestion related to functions banned EAPI 6 | Maciej Mrozowski | |
| 2016-06-16 | cmake-utils.eclass: echo ctest arguments | Michael Palimaka | |
| This mirrors the behaviour during src_configure where cmake and its arguments are printed for clarity. | |||
| 2016-06-10 | cmake-utils.eclass: do not pass CMAKE_INSTALL_DO_STRIP in EAPI 6 and later | Michael Palimaka | |
| CMAKE_INSTALL_DO_STRIP does not appear to be widely used, so this is a good opportunity to get rid of it. | |||
| 2016-05-26 | cmake-utils.eclass: _ninjaopts_from_makeopts, fix plain '-j' and '-l' | Michał Górny | |
| Fix the _ninjaopts_from_makeopts to handle no-parameter '-j' and '-l' options correctly and convert them to appropriate parametrized ninja options. | |||
| 2016-05-26 | cmake-utils.eclass: _ninjaopts_from_makeopts, fix handling of -k | Michał Górny | |
| Fix _ninjaopts_from_makeopts to handle -k correctly. Make does not support parameters to -k, while ninja requires one. Therefore, handle only a single '-k' and convert it into '-k 0' (no limit of failing tasks). | |||
| 2016-05-21 | cmake-utils.eclass: Remove incorrect suggestions related to eclass functions ↵ | Maciej Mrozowski | |
| removed since EAPI 6 | |||
| 2016-05-18 | cmake-utils.eclass: enable CMAKE_WARN_UNUSED_CLI for EAPI 6 | Maciej Mrozowski | |
| 2016-03-23 | kde5.eclass: check for ninja with ROOT=/ | Michael Palimaka | |
| Gentoo-bug: 577244 | |||
| 2016-03-18 | cmake-utils.eclass: replace spaces with tabs | Michael Palimaka | |
| 2016-02-24 | cmake-utils.eclass: Fix typo | Andreas Sturmlechner | |
| 2016-02-12 | cmake-utils.eclass: drop findutils dep #262965 | Mike Frysinger | |
| The forced upgrade has been moved to @system now. | |||
| 2016-01-29 | cmake-utils.eclass: Merge consecutive [[ ]] into single [[ ]] | Justin Lecher | |
| 2016-01-29 | cmake-utils.eclass: Drop empty line | Justin Lecher | |
| 2016-01-29 | cmake-utils.eclass: Use bash internal testing instead of has() | Justin Lecher | |
| 2016-01-18 | cmake-utils.eclass: fix function call | Michael Palimaka | |
| 2016-01-17 | cmake-utils.eclass: namespace some functions | Michael Palimaka | |
| 2016-01-17 | cmake-utils.eclass: replace replace comment_add_subdirectory with a ↵ | Michael Palimaka | |
| namespaced version | |||
| 2016-01-17 | cmake-utils.eclass: ban helper functions in EAPI 6 and later | Michael Palimaka | |
| 2016-01-17 | cmake-utils.eclass: remove duplicate CMAKE_REMOVE_MODULES | Michael Palimaka | |
| 2016-01-17 | cmake-utils.eclass: require two arguments for cmake-utils_use_find_package ↵ | Michael Palimaka | |
| in EAPI 6 and later This will allow us to remove the capitalisation variants code later. | |||
| 2016-01-17 | cmake-utils.eclass: simplify | Michael Palimaka | |
| 2016-01-17 | cmake-utils.eclass: simplify | Michael Palimaka | |
| 2016-01-17 | cmake-utils.eclass: reverse EAPI logic | Michael Palimaka | |
| Otherwise it will need updating for any new EAPI. | |||
| 2016-01-17 | cmake-utils.eclass: cleanup after applying patches | Michael Palimaka | |
| This avoids issues with patches not applying cleanly to vanilla sources when backporting or upstreaming. | |||
| 2016-01-17 | cmake-utils.eclass: use a proper if statement | Michael Palimaka | |
| 2016-01-17 | cmake-utils.eclass: update docs wrt WANT_CMAKE being banned in EAPI 6 and later | Michael Palimaka | |
| 2016-01-05 | Update copyright year | Andreas Sturmlechner | |
| 2015-12-09 | cmake-utils.eclass: Case insensitive comment_add_subdirectory | Andreas Sturmlechner | |
| 2015-12-10 | cmake-utils.eclass: Fix cross-compiling with cmake-3.4 | Daniel Scharrer | |
| We are interested in the CMake version on the host system, the sysroot might not even have CMake installed at all. | |||
| 2015-11-19 | cmake-utils.eclass: ban non-array usage of mycmakeargs in EAPI 6 and later | Michael Palimaka | |
| 2015-11-19 | cmake-utils.eclass: don't warn about deprecated usage when not defined | Michael Palimaka | |
| 2015-11-18 | cmake-utils.eclass: check exit codes of executed commands | Nikoli | |
| 2015-11-18 | cmake-utils.eclass: use default_src_prepare in EAPI 6 and later | Michael Palimaka | |
| 2015-11-18 | cmake-utils.eclass: declare some variables local | Michael Palimaka | |
| Prevents them from spanning multilibs. Gentoo-bug: 513170 | |||
| 2015-11-18 | cmake-utils.eclass: move $S modifications to src_prepare in EAPI 6 and later | Michael Palimaka | |
| This is the correct phase for source modifications, and additionally avoids a multilib race condition. Gentoo-bug: 513170 | |||
| 2015-11-18 | cmake-utils.eclass: ban WANT_CMAKE in EAPI 6 and later | Michael Palimaka | |
| It is basically unused across the tree and complicates the eclass. If it were needed, it might be better to write custom ebuild phase functions instead. | |||
| 2015-11-18 | cmake-utils.eclass: reorder a bit | Michael Palimaka | |
| 2015-11-18 | cmake-utils.eclass: add intial EAPI 6 support | Michael Palimaka | |
| 2015-11-04 | cmake-utils.eclass: Prepare for cmake-3.4 | Lars Wendler | |
| 2015-10-27 | cmake-utils.eclass: die if ninja is enabled but not installed | Michael Palimaka | |
| This could happen if ninja is manually enabled (eg. make.conf) but not installed Gentoo-bug: 561570 | |||
| 2015-10-27 | cmake-utils.eclass: add missing '|| die' on pushd/popd | Julian Ospald | |
| 2015-10-24 | cmake-utils.eclass: warn when using mycmakeargs as a string | Michael Palimaka | |
