forked from pyodide/pyodide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for completions based on jedi (pyodide#504)
- Loading branch information
Showing
7 changed files
with
139 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
PYODIDE_ROOT=$(abspath ..) | ||
include ../Makefile.envs | ||
|
||
JEDIVERSION=0.15.1 | ||
|
||
ROOT=$(abspath .) | ||
|
||
SRC=$(ROOT)/jedi-$(JEDIVERSION) | ||
BUILD=$(SRC)/build/lib/jedi | ||
TARBALL=$(ROOT)/downloads/jedi-$(JEDIVERSION).tar.gz | ||
URL=https://files.pythonhosted.org/packages/85/03/cd5a6e44a5753b4d539288d9d1f9645caac889c17dd2950292a8818f86b2/jedi-$(JEDIVERSION).tar.gz | ||
|
||
|
||
all: $(SRC)/setup.py | ||
|
||
|
||
clean: | ||
-rm -fr downloads | ||
-rm -fr $(SRC) | ||
|
||
|
||
$(TARBALL): | ||
[ -d $(ROOT)/downloads ] || mkdir $(ROOT)/downloads | ||
wget -q -O $@ $(URL) | ||
sha256sum --quiet --check checksums || (rm $@; false) | ||
|
||
|
||
$(SRC)/setup.py: $(TARBALL) | ||
tar -C . -xf $(TARBALL) | ||
touch $(SRC)/setup.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ba859c74fa3c966a22f2aeebe1b74ee27e2a462f56d3f5f7ca4a59af61bfe42e downloads/jedi-0.15.1.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
PYODIDE_ROOT=$(abspath ..) | ||
include ../Makefile.envs | ||
|
||
PARSOVERSION=0.5.1 | ||
|
||
ROOT=$(abspath .) | ||
|
||
SRC=$(ROOT)/parso-$(PARSOVERSION) | ||
BUILD=$(SRC)/build/lib/parso | ||
TARBALL=$(ROOT)/downloads/parso-$(PARSOVERSION).tar.gz | ||
URL=https://files.pythonhosted.org/packages/21/40/615957db4d178b7504c87b1a5b85fa5945b0b4fa5f5a845e31fc7aad6018/parso-$(PARSOVERSION).tar.gz | ||
|
||
|
||
all: $(SRC)/setup.py | ||
|
||
|
||
clean: | ||
-rm -fr downloads | ||
-rm -fr $(SRC) | ||
|
||
|
||
$(TARBALL): | ||
[ -d $(ROOT)/downloads ] || mkdir $(ROOT)/downloads | ||
wget -q -O $@ $(URL) | ||
sha256sum --quiet --check checksums || (rm $@; false) | ||
|
||
|
||
$(SRC)/setup.py: $(TARBALL) | ||
tar -C . -xf $(TARBALL) | ||
touch $(SRC)/setup.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
666b0ee4a7a1220f65d367617f2cd3ffddff3e205f3f16a0284df30e774c2a9c downloads/parso-0.5.1.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters