Skip to content

Commit

Permalink
Remove STATUS file from release
Browse files Browse the repository at this point in the history
Stop building STATUS in gen_release and stop listing it as a file to include.

Remove STATUS from README.devel, README.files, QUICKSTART.rst, chpl man page,
and chpldoc man page.

Point some compiler warning messages at a GitHub issue instead of the
STATUS file.

Change bugs.rst to point at STATUS.devel on GitHub instead of STATUS for
issues pre-dating the move to GitHub issues.

Point to the GitHub Issues list instead of STATUS in GOALS.md
  • Loading branch information
David Iten committed Mar 21, 2017
1 parent d974e46 commit 6d0e89d
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 16 deletions.
2 changes: 1 addition & 1 deletion GOALS.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ The goals of this release are as follows:
domains and arrays using some standard distributions.

For more detailed notes on what is or is not supported in this
release, refer to the STATUS file in this directory.
release, refer to the Issues list on GitHub.
1 change: 0 additions & 1 deletion README.devel
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ description:
QUICKSTART.rst
README.files
README.rst
STATUS
Makefile
bin/
compiler/
Expand Down
1 change: 0 additions & 1 deletion README.files
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ further information about the files and directories that they contain.
PERFORMANCE.md : notes about Chapel performance
QUICKSTART.rst : quick-start instructions
README.files : this file
STATUS : a list of unimplemented features and known bugs
Makefile : top-level Makefile for building things
bin/ : location of the compiler (chpl) once it's been built
compiler/ : source code for the compiler
Expand Down
2 changes: 1 addition & 1 deletion compiler/AST/build.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2130,7 +2130,7 @@ CallExpr* buildScanExpr(Expr* opExpr, Expr* dataExpr, bool zippered) {
buildReduceScanPreface1(fn, data, eltType, opExpr, dataExpr, zippered);
buildReduceScanPreface2(fn, eltType, globalOp, opExpr);

fn->insertAtTail("compilerWarning('scan has been serialized (see note in $CHPL_HOME/STATUS)')");
fn->insertAtTail("compilerWarning('scan has been serialized (see issue #5760)')");

if( !zippered ) {
fn->insertAtTail("'return'(chpl__scanIterator(%S, %S))", globalOp, data);
Expand Down
1 change: 0 additions & 1 deletion doc/usingchapel/QUICKSTART.rst
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ What's next?
executing Chapel programs `doc/executing.rst`_
debugging Chapel programs `doc/debugging.rst`_
reporting bugs `doc/bugs.rst`_
implementation status ``STATUS``
performance status ``PERFORMANCE.md``
Chapel modes for emacs and vim ``highlight/README.md``
Chapel's file and directory structure ``README.files``
Expand Down
4 changes: 2 additions & 2 deletions doc/usingchapel/bugs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ feature request, or other issue to report, please use the "New Issue"
button on that page to file it.

Public issues that predate our issue tracker can be found in the
``$CHPL_HOME/STATUS`` file and the (retired)
(retired) `STATUS.devel file`_ and the (retired)
`chapel-bugs mailing list archives`_.

Private Issues
Expand All @@ -22,7 +22,7 @@ Chapel accepts private issue reports :any:`by email <privatebugs>`.

.. _GitHub Issues: https://github.com/chapel-lang/chapel/issues
.. _chapel-bugs mailing list archives: https://sourceforge.net/p/chapel/mailman/chapel-bugs/

.. _STATUS.devel file: https://github.com/chapel-lang/chapel/blob/master/STATUS.devel

.. toctree::
:hidden:
Expand Down
1 change: 0 additions & 1 deletion man/chpl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,6 @@ effect as passing that option once.
BUGS
----

See $CHPL\_HOME/STATUS for a list of known bugs and
$CHPL\_HOME/doc/bugs.rst for instructions on reporting bugs.

SEE ALSO
Expand Down
1 change: 0 additions & 1 deletion man/chpldoc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ effect as passing that option once.
BUGS
----

See $CHPL\_HOME/STATUS for a list of known bugs and
$CHPL\_HOME/doc/bugs.rst for instructions on reporting bugs.

SEE ALSO
Expand Down
4 changes: 2 additions & 2 deletions modules/internal/ChapelArray.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -3232,7 +3232,7 @@ module ChapelArray {

// disabled for testing for the same reason
// as the array version: it can be called from autoCopy/initCopy.
// compilerWarning("whole-domain assignment has been serialized (see note in $CHPL_HOME/STATUS)");
// compilerWarning("whole-domain assignment has been serialized (see issue #5760)");
for i in a._value.dsiIndsIterSafeForRemoving() {
if !b.member(i) {
a.remove(i);
Expand Down Expand Up @@ -3481,7 +3481,7 @@ module ChapelArray {
// commenting this out to remove testing noise.
// this is always printed out if it's on, because chpl__transferArray
// is now called from array auto-copy.
// compilerWarning("whole array assignment has been serialized (see note in $CHPL_HOME/STATUS)");
// compilerWarning("whole array assignment has been serialized (see issue #5760)");
for (aa,bb) in zip(a,b) do
aa = bb;
} else if chpl__tryToken { // try to parallelize using leader and follower iterators
Expand Down
5 changes: 0 additions & 5 deletions util/buildRelease/gen_release
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ if (exists($ENV{"CHPL_GEN_RELEASE_NO_CLONE"})) {
"PERFORMANCE.md",
"README.rst",
"README.files",
"STATUS",
"compiler/codegen/reservedSymbolNames",
"highlight/README.md",
"util/README",
Expand Down Expand Up @@ -180,10 +179,6 @@ SystemOrDie("cp -r test/release/examples .");
SystemOrDie("cd util && cp start_test ../examples/");
SystemOrDie("./util/devel/test/extract_tests --no-futures -o ./examples/spec spec/*.tex");

print "Building the STATUS file...\n";
SystemOrDie("make STATUS");


print "Removing Makefiles that are not intended for release...\n";
SystemOrDie("cd make/platform && rm Makefile.sunos_old");

Expand Down

0 comments on commit 6d0e89d

Please sign in to comment.