summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Move {dev-util → dev-build}/sconsMichał Górny2024-01-171-4/+4
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* python-single-r1.eclass: drop EAPI 6 supportDavid Seifert2022-12-271-2/+2
| | | | Signed-off-by: David Seifert <soap@gentoo.org>
* python-r1.eclass: drop EAPI 6 supportDavid Seifert2022-12-271-1/+1
| | | | Signed-off-by: David Seifert <soap@gentoo.org>
* python-any-r1.eclass: drop EAPI 6 supportDavid Seifert2022-12-271-2/+2
| | | | Signed-off-by: David Seifert <soap@gentoo.org>
* scons-utils.eclass: Reuse makeopts_jobsMichał Górny2022-11-151-98/+4
| | | | | Closes: https://github.com/gentoo/gentoo/pull/27999 Signed-off-by: Michał Górny <mgorny@gentoo.org>
* scons-utils.eclass: Default SCONS_MIN_VERSION to current stableMichał Górny2022-11-151-5/+2
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* scons-utils.eclass: Update documentationMichał Górny2022-11-151-3/+4
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* scons-utils.eclass: Enable EAPI 8 supportMichał Górny2022-11-151-4/+4
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* scons-utils.eclass: Use python_has_versionMichał Górny2022-11-151-1/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* scons-utils.eclass: Remove support for EAPI 0..6Michał Górny2022-11-151-109/+17
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* *.eclass: @ECLASS-VARIABLE renamed to @ECLASS_VARIABLEUlrich Müller2022-03-241-5/+5
| | | | | Bug: https://bugs.gentoo.org/835396 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
* scons-utils.eclass: Replace deprecated PYTHON_MULTI_USEDEPMichał Górny2022-02-041-3/+3
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* scons-utils.eclass: mark SCONSOPTS, EXTRA_ESCONS as @USER_VARIABLESam James2021-04-121-1/+3
| | | | Signed-off-by: Sam James <sam@gentoo.org>
* scons-utils.eclass: Fix eclassdoc tag orderMichał Górny2020-07-041-1/+1
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* scons-utils.eclass: Migrate to PYTHON_MULTI_USEDEPMichał Górny2020-02-091-3/+4
| | | | Signed-off-by: Michał Górny <mgorny@gentoo.org>
* scons-utils.eclass: add @SUPPORTED_EAPISMichał Górny2018-08-151-0/+1
|
* scons-utils.eclass: Provide proper Python API for EAPI 7Michał Górny2018-06-131-4/+60
| | | | | | | | | | | | | | | | Provide a proper multi-impl Python support for scons-utils in EAPI 7, to account for new versions of dev-util/scons (3.0.1-r100+, to be committed) that support Python 3 and break SConstruct files using Python 2 constructs. Combining scons-utils with python-any-r1 and python-single-r1 is added retroactively for older EAPIs as well, with fallback to Python 2.7. The new (hard-to-use) API for python-r1 is specific to EAPI 7 since it requires adding explicit BDEPEND. The new use of the eclass is described on the wiki page, along with series of examples covering different use cases: https://wiki.gentoo.org/wiki/Project:Python/scons-utils_integration
* scons-utils.eclass: Revert EAPI 7 pending further changesMichał Górny2018-05-101-1/+1
| | | | | | Revert EAPI 7 support since it is not used by any ebuild yet. New set of patches will be published with Python checks that will be fatal in EAPI 7 already.
* scons-utils.eclass: Force pass-through of envvars (in 3.0.1-r1+)Michał Górny2018-05-091-0/+3
| | | | | | Use GENTOO_SCONS_ENV_PASSTHROUGH variable introduced by scons-3.0.1-r1 patch to force passing through of all environment variables when building ebuilds.
* scons-utils.eclass: Support EAPI 7Michał Górny2018-05-071-4/+9
| | | | | Enable EAPI 7 support. Move dev-util/scons to BDEPEND in EAPI 7 since it needs to run on the build host.
* Drop $Id$ per council decision in bug #611234.Robin H. Johnson2017-02-281-1/+0
| | | | Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
* scons-utils.eclass: Switch to get_nproc from multiprocessing.eclassMichał Górny2016-12-181-29/+5
|
* scons-utils.eclass: Enable EAPI 6Michał Górny2016-01-081-1/+1
|
* scons-utils.eclass: Use nproc when --jobs is used without an argumentMichał Górny2016-01-081-2/+28
| | | | | | | Try to guess the number of processors when --jobs is passed without an argument. We can't use a high number equivalent to GNU make behavior (no limit) since SCons does not have an equivalent of --load-avg option. Still, this is better than assuming some random, fixed number.
* scons-utils.eclass: _scons_clean_makeopts, clean up and simplifyMichał Górny2016-01-081-13/+12
|
* scons-utils.eclass: _scons_clean_makeopts, stop exporting cache varsMichał Górny2016-01-081-2/+2
| | | | | Cache vars need only to be global to be preserved across calls. Exporting them is undesired.
* scons-utils.eclass: _scons_clean_makeopts, fix result cachingMichał Górny2016-01-081-6/+9
| | | | | | Stop calling _scons_clean_makeopts in a subshell in order to make it possible for the cache to be preserved. Pass the result through SCONSOPTS variable.
* scons-utils.eclass: scons_clean_makeopts, mark internalMichał Górny2016-01-081-3/+4
|
* scons-utils.eclass: Deprecate use_scons, ban it in EAPI 6Michał Górny2016-01-081-0/+9
|
* scons-utils.eclass: Deprecate myesconsargs, and kill it in EAPI 6Michał Górny2016-01-081-6/+11
|
* scons-utils.eclass: escons, respect nonfatal in EAPI 6Michał Górny2016-01-081-2/+12
|
* scons-utils.eclass: escons, invert EAPI check to cover future EAPIsMichał Górny2016-01-081-1/+3
|
* scons-utils.eclass: escons doc, 'die' does not respect nonfatalMichał Górny2016-01-081-1/+1
|
* scons-utils.eclass: Describe common issues with sconsMichał Górny2016-01-081-1/+16
|
* scons-utils.eclass: Modernize the example to use usexMichał Górny2016-01-081-2/+2
|
* scons-utils.eclass: Modernize the example not to rely on myescons...Michał Górny2016-01-081-4/+4
|
* proj/gentoo: Initial commitRobin H. Johnson2015-08-081-0/+235
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed