lsst-sconsUtils 30.0.9rc1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. lsst_sconsutils-30.0.9rc1/COPYRIGHT +2 -0
  2. lsst_sconsutils-30.0.9rc1/LICENSE +3 -0
  3. lsst_sconsutils-30.0.9rc1/PKG-INFO +53 -0
  4. lsst_sconsutils-30.0.9rc1/README.md +21 -0
  5. lsst_sconsutils-30.0.9rc1/bsd_license.txt +27 -0
  6. lsst_sconsutils-30.0.9rc1/gpl-v3.0.txt +674 -0
  7. lsst_sconsutils-30.0.9rc1/pyproject.toml +108 -0
  8. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/__init__.py +29 -0
  9. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/builders.py +886 -0
  10. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/dependencies.py +765 -0
  11. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/eupsForScons.py +84 -0
  12. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/installation.py +551 -0
  13. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/scripts.py +806 -0
  14. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/state.py +705 -0
  15. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/tests.py +628 -0
  16. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/tools/cuda.py +86 -0
  17. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/utils.py +322 -0
  18. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/vcs/__init__.py +1 -0
  19. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/vcs/git.py +70 -0
  20. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/vcs/hg.py +94 -0
  21. lsst_sconsutils-30.0.9rc1/python/lsst/sconsUtils/vcs/svn.py +177 -0
  22. lsst_sconsutils-30.0.9rc1/python/lsst_sconsUtils.egg-info/PKG-INFO +53 -0
  23. lsst_sconsutils-30.0.9rc1/python/lsst_sconsUtils.egg-info/SOURCES.txt +30 -0
  24. lsst_sconsutils-30.0.9rc1/python/lsst_sconsUtils.egg-info/dependency_links.txt +1 -0
  25. lsst_sconsutils-30.0.9rc1/python/lsst_sconsUtils.egg-info/requires.txt +8 -0
  26. lsst_sconsutils-30.0.9rc1/python/lsst_sconsUtils.egg-info/top_level.txt +1 -0
  27. lsst_sconsutils-30.0.9rc1/python/lsst_sconsUtils.egg-info/zip-safe +1 -0
  28. lsst_sconsutils-30.0.9rc1/setup.cfg +15 -0
  29. lsst_sconsutils-30.0.9rc1/tests/test_all.py +59 -0
  30. lsst_sconsutils-30.0.9rc1/tests/test_run_by_scons.py +65 -0
  31. lsst_sconsutils-30.0.9rc1/tests/test_single.py +39 -0
@@ -0,0 +1,2 @@
1
+ Copyright 2024 Association of Universities for Research in Astronomy, Inc. (AURA)
2
+ Copyright 2024 The Trustees of Princeton University
@@ -0,0 +1,3 @@
1
+ This software is dual licensed under the GNU General Public License and also
2
+ under a 3-clause BSD license. Recipients may choose which of these licenses
3
+ to use; please see the files gpl-3.0.txt and/or bsd_license.txt, respectively.
@@ -0,0 +1,53 @@
1
+ Metadata-Version: 2.4
2
+ Name: lsst-sconsUtils
3
+ Version: 30.0.9rc1
4
+ Summary: Utilities for build LSST packages with SCons.
5
+ Author-email: Rubin Observatory Data Management <dm-admin@lists.lsst.org>
6
+ License-Expression: BSD-3-Clause OR GPL-3.0-or-later
7
+ Project-URL: Homepage, https://github.com/lsst/sconsUtils
8
+ Project-URL: Source, https://github.com/lsst/sconsUtils
9
+ Keywords: lsst
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.14
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Topic :: Scientific/Engineering :: Astronomy
18
+ Requires-Python: >=3.11.0
19
+ Description-Content-Type: text/markdown
20
+ License-File: COPYRIGHT
21
+ License-File: LICENSE
22
+ License-File: bsd_license.txt
23
+ License-File: gpl-v3.0.txt
24
+ Requires-Dist: flake8
25
+ Requires-Dist: pytest>=3.2
26
+ Requires-Dist: pytest-cov
27
+ Requires-Dist: pytest-session2file
28
+ Requires-Dist: ruff
29
+ Requires-Dist: scons
30
+ Provides-Extra: test
31
+ Dynamic: license-file
32
+
33
+ # lsst-sconsUtils
34
+
35
+ [![codecov](https://codecov.io/gh/lsst/sconsUtils/branch/main/graph/badge.svg?token=2BUBL8R9RH)](https://codecov.io/gh/lsst/sconsUtils)
36
+
37
+ sconsUtils is a package in the [LSST Science Pipelines](https://pipelines.lsst.io/).
38
+
39
+ This package contains utility scripts for building pipelines packages with
40
+ [SCons](https://scons.org/), and is required to build most pipelines packages.
41
+ SCons can be used to build C++ and Python (with pybind11 bindings) packages;
42
+ see the [stack package templates](https://github.com/lsst/templates/tree/main/project_templates/stack_package)
43
+ if this is of interest.
44
+
45
+ This is a **Python 3 only** package.
46
+
47
+ This software is dual licensed under the GNU General Public License
48
+ (version 3 of the License, or (at your option) any later version),
49
+ and also under a 3-clause BSD license. Recipients may choose which of these
50
+ licenses to use; please see the files gpl-3.0.txt and/or bsd_license.txt,
51
+ respectively.
52
+
53
+ This package can only be imported through a SCons script.
@@ -0,0 +1,21 @@
1
+ # lsst-sconsUtils
2
+
3
+ [![codecov](https://codecov.io/gh/lsst/sconsUtils/branch/main/graph/badge.svg?token=2BUBL8R9RH)](https://codecov.io/gh/lsst/sconsUtils)
4
+
5
+ sconsUtils is a package in the [LSST Science Pipelines](https://pipelines.lsst.io/).
6
+
7
+ This package contains utility scripts for building pipelines packages with
8
+ [SCons](https://scons.org/), and is required to build most pipelines packages.
9
+ SCons can be used to build C++ and Python (with pybind11 bindings) packages;
10
+ see the [stack package templates](https://github.com/lsst/templates/tree/main/project_templates/stack_package)
11
+ if this is of interest.
12
+
13
+ This is a **Python 3 only** package.
14
+
15
+ This software is dual licensed under the GNU General Public License
16
+ (version 3 of the License, or (at your option) any later version),
17
+ and also under a 3-clause BSD license. Recipients may choose which of these
18
+ licenses to use; please see the files gpl-3.0.txt and/or bsd_license.txt,
19
+ respectively.
20
+
21
+ This package can only be imported through a SCons script.
@@ -0,0 +1,27 @@
1
+ For copyright information see the COPYRIGHT file included in the top-level
2
+ directory of this distribution.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification,
5
+ are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice,
8
+ this list of conditions and the following disclaimer.
9
+
10
+ 2. Redistributions in binary form must reproduce the above copyright
11
+ notice, this list of conditions and the following disclaimer in the
12
+ documentation and/or other materials provided with the distribution.
13
+
14
+ 3. Neither the names of the copyright holders nor the names of their
15
+ contributors may be used to endorse or promote products derived from
16
+ this software without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
22
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.