forked from chapel-lang/chapel
-
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.
Create new chplspell-venv Makefile rules, and update documentation
chplspell-venv is based on (copied directly from) the test-venv and chpldoc-venv. Except those are user-facing venvs, and chplspell-venv is developer-only. So it's set up and described in .devel versions of the Makefiles and READMEs, where appropriate. chplspell-requirements.txt drives the venv creation. Update the LICENSE and third-party/chpl-venv/README.devel.md with licensing information about the scspell program installed into the chplspell-venv. Update gen_release to remove the new developer-only files.
- Loading branch information
Showing
9 changed files
with
83 additions
and
2 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
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
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
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,23 @@ | ||
chpl-venv devel files | ||
===================== | ||
|
||
As the Makefile installs end-user Python packages into the virutalenv | ||
(described in [README.md](README.md)), the Makefile.devel installs | ||
Python packages required by the developer tool `chplspell`. | ||
|
||
|
||
The primary packages required by `chplspell` are: `scspell`, | ||
`argparse`, and `virtualenv` (for installation). `argparse` and | ||
`virtualenv` are described in [README.md](README.md) as they are also | ||
required by end-user tools. | ||
|
||
|
||
### scspell | ||
|
||
A spell checker for source code | ||
|
||
**program License**: GPL 2 | ||
|
||
**word list License**: public domain, assorted (See https://github.com/myint/scspell/blob/master/SCOWL-LICENSE.txt) | ||
|
||
**Website**: https://pypi.python.org/pypi/scspell3k |
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,2 @@ | ||
argparse==1.3.0 | ||
scspell3k>=2 |
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