Skip to content

Commit 873df89

Browse files
committed
Code for release 6.80
Primarily use rcskwcmp to avoid problems with archaic Bash (no process substitution). Add chksumtool.pl ad hoc (separate from main release) to allow checksums to be verified. No changes in C source code.
1 parent 2c12c21 commit 873df89

37 files changed

+597
-95
lines changed

NOTES-TO-SELF.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Notes to Self
2+
3+
To create a new snapshot, for better or worse:
4+
5+
* Create the release using normal JLSS mechanism.
6+
* Extract scc-x.yz.tgz into scc-x.yz parallel to this directory.
7+
* Copy changed files (most source files because they're version stamped;
8+
often not the data files) into the scc-snapshot repository.
9+
For example:
10+
11+
cd scc-x.yz
12+
cp -fpr . ../scc-snapshots
13+
14+
* Update the README.md file with the new release information.
15+
* Add the changed files.
16+
* Remove the old checksum files.
17+
* Add the new checksum files.
18+
* Commit the changes.
19+
* Push the changes to GitHub.
20+
* Create a release on GitHub.
21+

Output/scc-test.example2-c++98-c-n.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@(#)Purpose: Test SCC on core functionality
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 1997,2003,2007,2013-15
8-
@(#)Product: SCC Version 6.70 (2017-10-17)
8+
@(#)Product: SCC Version 6.80 (2017-10-26)
99
*/
1010

1111
/* Mainly for testing */

Output/scc-test.example2-c++98-c.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@(#)Purpose: Test SCC on core functionality
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 1997,2003,2007,2013-15
8-
@(#)Product: SCC Version 6.70 (2017-10-17)
8+
@(#)Product: SCC Version 6.80 (2017-10-26)
99
*/
1010
/* Mainly for testing */
1111
/* Retained comments */

Output/scc-test.example2-c90-c-n.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@(#)Purpose: Test SCC on core functionality
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 1997,2003,2007,2013-15
8-
@(#)Product: SCC Version 6.70 (2017-10-17)
8+
@(#)Product: SCC Version 6.80 (2017-10-26)
99
*/
1010

1111
/* Mainly for testing */

Output/scc-test.example2-c90-c.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@(#)Purpose: Test SCC on core functionality
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 1997,2003,2007,2013-15
8-
@(#)Product: SCC Version 6.70 (2017-10-17)
8+
@(#)Product: SCC Version 6.80 (2017-10-26)
99
*/
1010
/* Mainly for testing */
1111
/* Retained comments */

Output/scc-test.example2-c99-c-n.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@(#)Purpose: Test SCC on core functionality
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 1997,2003,2007,2013-15
8-
@(#)Product: SCC Version 6.70 (2017-10-17)
8+
@(#)Product: SCC Version 6.80 (2017-10-26)
99
*/
1010

1111
/* Mainly for testing */

Output/scc-test.example2-c99-c.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@(#)Purpose: Test SCC on core functionality
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 1997,2003,2007,2013-15
8-
@(#)Product: SCC Version 6.70 (2017-10-17)
8+
@(#)Product: SCC Version 6.80 (2017-10-26)
99
*/
1010
/* Mainly for testing */
1111
/* Retained comments */

Output/scc.test-08.example2-ec.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@(#)Purpose: Test SCC on core functionality
66
@(#)Author: J Leffler
77
@(#)Copyright: (C) JLSS 1997,2003,2007,2013-15
8-
@(#)Product: SCC Version 6.70 (2017-10-17)
8+
@(#)Product: SCC Version 6.80 (2017-10-26)
99
*/
1010
/* Mainly for testing */
1111
/* Retained comments */

README.md

+41-19
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# scc-snapshots
22
SCC: Strip C Comments — Snapshots
33

4-
This repository contains the code for the SCC (Strip C Comments) program described in
5-
[Remove Comments from C/C++ Code](http://stackoverflow.com/questions/2394017/) on Stack Overflow.
4+
This repository contains the code for the SCC (Strip C Comments) program
5+
described in [Remove Comments from C/C++
6+
Code](http://stackoverflow.com/questions/2394017/) on Stack Overflow.
67

78
There are currently 7 releases:
9+
* 6.80 (2017-10-26) - stable release
810
* 6.70 (2017-10-17) - stable release
911
* 6.60 (2016-06-12) - stable release
1012
* 6.50 (2016-06-12) — pre-release
@@ -15,25 +17,15 @@ There are currently 7 releases:
1517

1618
These are tagged release/x.yz. The code is all on branch master.
1719

18-
Versions 4.03 and 4.04 are preliminary versions, possibly of historical
19-
interest.
20-
Functionally, they're almost identical, with minor code cleanups between
21-
the two versions.
22-
The meaning of the `-C` option was the opposite of the more modern
23-
versions; it enabled the removal of C++ style comments.
20+
### Version 6.80 - 2017-10-26
2421

25-
Version 5.05 handles C and older C++ code.
26-
It does not understand raw strings, or some of the other new features in
27-
C++ (binary constants, punctuation in numbers, etc.).
28-
Compared to the earlier versions, it adds the `-s str` and `-q rep`
29-
options to replace the bodies of strings or character literals; it adds
30-
the `-c` option to print the comments instead of the code; it adds the
31-
`-n` option to preserve newlines in comments, to make it easier to
32-
back-track from stripped source to the original code.
22+
Version 6.80 changes some of the testing technology because RHEL 5.3
23+
(sigh!) has a version of Bash that does not recognize process
24+
substitution (`<(cmd args)` notation).
25+
Three test scripts failed.
26+
The product source was unchanged.
3327

34-
Version 6.60 handles C and newer C++ code.
35-
It understands raw strings, binary constants and punctuation in numbers.
36-
It has a different, slightly more complex interface compared with version 5.05.
28+
### Version 6.70 - 2017-10-17
3729

3830
Version 6.70 provides some occasionally useful new functionality.
3931
The `-e` option emits empty comments `/* */` or `//` (followed by a
@@ -44,7 +36,37 @@ of comments.
4436
This makes the output (much) easier to read.
4537
The flags (`-f`) option has more systematic names for the features.
4638

39+
### Version 6.60 - 2016-06-12
40+
41+
Version 6.60 handles C and newer C++ code.
42+
It understands raw strings, binary constants and punctuation in numbers.
43+
It has a different, slightly more complex interface compared with version 5.05.
44+
45+
### Version 5.05 - 2012-01-23
46+
47+
Version 5.05 handles C and older C++ code.
48+
It does not understand raw strings, or some of the other new features in
49+
C++ (binary constants, punctuation in numbers, etc.).
50+
Compared to the earlier versions, it adds the `-s str` and `-q rep`
51+
options to replace the bodies of strings or character literals; it adds
52+
the `-c` option to print the comments instead of the code; it adds the
53+
`-n` option to preserve newlines in comments, to make it easier to
54+
back-track from stripped source to the original code.
55+
56+
### Version 4.04 - 2008-11-27
57+
### Version 4.03 - 2008-06-07
58+
59+
Versions 4.03 and 4.04 are preliminary versions, possibly of historical
60+
interest.
61+
Functionally, they're almost identical, with minor code cleanups between
62+
the two versions.
63+
The meaning of the `-C` option was the opposite of the more modern
64+
versions; it enabled the removal of C++ style comments.
65+
66+
## Digraphs and trigraphs
67+
4768
No version of SCC handles trigraphs (and no version needs to handle
4869
digraphs).
4970
There are separate programs for adding or removing trigraphs and
5071
digraphs (called, unimaginatively, `trigraphs` and `digraphs`).
72+

0 commit comments

Comments
 (0)