Changes between Initial Version and Version 10 of Ticket #21785
- Timestamp:
- 01/21/20 15:19:00 (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21785
- Property Cc fbissey slelievre saraedum isuruf dimpase added
-
Property
Summary
changed from
Installation of SAGE_SRC/ext/ in SAGE_LOCAL/share/sage/ext/ should be done by setup.py, not build/make/Makefile
toInstall SAGE_SRC/ext/ in package data of sage package by setup.py, not SAGE_LOCAL/share/sage/ext/ by build/make/Makefile
-
Property
Milestone
changed from
sage-7.5
tosage-9.1
-
Ticket #21785 – Description
initial v10 1 A lot of the stuff (not necessarily all) in `$SAGE_SRC/ext` belongs directly in the sage Python package--in particular any files that are needed for the package itself to function properly. 2 3 A model for that is `sage.gaprc`, a file required for the `libgap` module to work, which is installed in `sage.libs.gap` as "package data" as of #22626. 4 5 In this ticket, we install all of `ext` as package data of `sage`. 6 7 - In a follow up ticket, if we identify any files in `$SAGE_SRC/ext` that aren't explicitly required from the package, we will move them to a more appropriate place. 8