Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/sage/features: Add more all_features functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Nov 16, 2021
1 parent 12f7c98 commit c9312db
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/sage/features/dvipng.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,7 @@ def __init__(self):
"""
Executable.__init__(self, "dvipng", executable="dvipng",
url="https://savannah.nongnu.org/projects/dvipng/")


def all_features():
return [dvipng()]
2 changes: 1 addition & 1 deletion src/sage/features/ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ def __init__(self):
url="https://www.ffmpeg.org/")


def all_packages():
def all_features():
return [FFmpeg()]
4 changes: 4 additions & 0 deletions src/sage/features/pdf2svg.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@ def __init__(self):
Executable.__init__(self, "pdf2svg", executable="pdf2svg",
spkg='pdf2svg',
url="http://www.cityinthesky.co.uk/opensource/pdf2svg/")


def all_features():
return [pdf2svg()]

0 comments on commit c9312db

Please sign in to comment.