Skip to content

Commit

Permalink
Trac #15808: Remove genus2reduction
Browse files Browse the repository at this point in the history
genus2reduction has been ported to the PARI library and is available as
the PARI function `genus2red()`. We should remove the package and use
the new PARI function instead.

URL: http://trac.sagemath.org/15808
Reported by: jdemeyer
Ticket author(s): Jeroen Demeyer
Reviewer(s): Peter Bruin
  • Loading branch information
Release Manager authored and vbraun committed Oct 9, 2014
2 parents 90ff3ae + f35c944 commit ec97e8c
Show file tree
Hide file tree
Showing 8 changed files with 194 additions and 180 deletions.
4 changes: 0 additions & 4 deletions build/deps
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ all-sage: \
$(INST)/$(FLINTQS) \
$(INST)/$(FPLLL) \
$(INST)/$(FREETYPE) \
$(INST)/$(GENUS2REDUCTION) \
$(INST)/$(GAP) \
$(INST)/$(GD) \
$(INST)/$(GDMODULE) \
Expand Down Expand Up @@ -282,9 +281,6 @@ $(INST)/$(LINBOX): $(INST)/$(MPIR) $(INST)/$(NTL) $(INST)/$(GIVARO) \
$(INST)/$(IML): $(INST)/$(MPIR) $(INST)/$(GSL) $(INST)/$(ATLAS)
+$(PIPE) "$(SAGE_SPKG) $(IML) 2>&1" "tee -a $(SAGE_LOGS)/$(IML).log"

$(INST)/$(GENUS2REDUCTION): $(INST)/$(PARI)
+$(PIPE) "$(SAGE_SPKG) $(GENUS2REDUCTION) 2>&1" "tee -a $(SAGE_LOGS)/$(GENUS2REDUCTION).log"

$(INST)/$(PALP):
+$(PIPE) "$(SAGE_SPKG) $(PALP) 2>&1" "tee -a $(SAGE_LOGS)/$(PALP).log"

Expand Down
1 change: 0 additions & 1 deletion build/install
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,6 @@ GAP=`newest_version gap`
GCC=`newest_version gcc`
GD=`newest_version gd`
GDMODULE=`newest_version gdmodule`
GENUS2REDUCTION=`newest_version genus2reduction`
GFAN=`newest_version gfan`
GF2X=`newest_version gf2x`
GIT=`newest_version git`
Expand Down
33 changes: 0 additions & 33 deletions build/pkgs/genus2reduction/SPKG.txt

This file was deleted.

4 changes: 0 additions & 4 deletions build/pkgs/genus2reduction/checksums.ini

This file was deleted.

1 change: 0 additions & 1 deletion build/pkgs/genus2reduction/package-version.txt

This file was deleted.

32 changes: 0 additions & 32 deletions build/pkgs/genus2reduction/spkg-install

This file was deleted.

3 changes: 2 additions & 1 deletion src/sage/interfaces/all.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# interfaces to other interpreters
from sage.misc.lazy_import import lazy_import

from frobby import frobby
from four_ti_2 import four_ti_2
Expand All @@ -7,7 +8,7 @@

from gap import gap, gap_reset_workspace, gap_console, set_gap_memory_pool_size, Gap
from gap3 import gap3, gap3_console, gap3_version, Gap3
from genus2reduction import genus2reduction, Genus2reduction
lazy_import('sage.interfaces.genus2reduction', ['genus2reduction', 'Genus2reduction'])
from gfan import gfan, Gfan
from giac import giac, giac_console, Giac
from gp import gp, gp_console, gp_version, Gp
Expand Down
Loading

0 comments on commit ec97e8c

Please sign in to comment.