Skip to content

Commit 83fff3a

Browse files
committed
Remove more CVS stuff
Remove the CVS information in the documentation and the remaining tgt-* directories.
1 parent 2989ceb commit 83fff3a

22 files changed

+9
-549
lines changed

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ on a UNIX-like system:
6464
- termcap
6565
The readline library in turn uses termcap.
6666

67-
If you are building from CVS, you will also need software to generate
67+
If you are building from git, you will also need software to generate
6868
the configure scripts.
6969

7070
- autoconf 2.53

autoconf.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
#
44
# This shell script exists to run autoconf on source distributions
5-
# that are pulled from CVS. The configure scripts are not included
6-
# in CVS, and there are several configure.in files, so it is easiest
7-
# to just run this script to autoconf wherever needed.
5+
# that are pulled from git The configure script is not included
6+
# in git, so it is easiest to just run this script whenever needed
7+
# to generate the configure script.
88
#
99
echo "Autoconf in root..."
1010
autoconf -f

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ then
3636
echo ""
3737
echo "*** Warning: No suitable gperf found. ***"
3838
echo " The gperf package is essential for building ivl from"
39-
echo " CVS sources, or modifying the parse engine of ivl itself."
39+
echo " git sources, or modifying the parse engine of ivl itself."
4040
echo " You can get away without it when simply building from"
4141
echo " snapshots or major releases."
4242
echo ""

examples/hello_vpi.c

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* along with this program; if not, write to the Free Software
1717
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
1818
*/
19-
#ifdef HAVE_CVS_IDENT
20-
#ident "$Id: hello_vpi.c,v 1.5 2007/01/17 05:35:48 steve Exp $"
21-
#endif
2219

2320
/*
2421
* This file contains an example VPI module to demonstrate the tools
@@ -60,22 +57,3 @@ void (*vlog_startup_routines[])() = {
6057
my_hello_register,
6158
0
6259
};
63-
/*
64-
* $Log: hello_vpi.c,v $
65-
* Revision 1.5 2007/01/17 05:35:48 steve
66-
* Fix typo is hello_vpi.c example.
67-
*
68-
* Revision 1.4 2006/10/30 22:46:25 steve
69-
* Updates for Cygwin portability (pr1585922)
70-
*
71-
* Revision 1.3 2002/08/12 01:35:01 steve
72-
* conditional ident string using autoconfig.
73-
*
74-
* Revision 1.2 2002/08/11 23:47:04 steve
75-
* Add missing Log and Ident strings.
76-
*
77-
* Revision 1.1 2002/04/18 03:25:16 steve
78-
* More examples.
79-
*
80-
*/
81-

macosx.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ quite similar.
3737
then just make sure the distributed lexor_keyword.cc is newer than
3838
lexor_keyword.gperf, and use that.
3939

40-
3) If working with a CVS snapshot, you must run autoconf in several
41-
directories. This is aided by the 'autoconf.sh' script at the
40+
3) If working with source from git, you must run autoconf in the top
41+
directory. This is simplified by the 'autoconf.sh' script at the
4242
top of the source tree:
4343

4444
sh ./autoconf.sh
4545

46-
This will also run the gperf command, so make sure you'd completed
46+
This will also run the gperf command, so make sure you've completed
4747
step #2 first.
4848

4949
4) Configure, build and install the Icarus Verilog sources as normal.

mingw.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ where we will work from now on.
173173

174174
Under certain cases, you may need to "preconfigure" the Icarus Verilog
175175
source tree. You should only need to do this if you are getting the
176-
Icarus Verilog source tree from CVS, or you are using an existing
176+
Icarus Verilog source tree from git, or you are using an existing
177177
source tree that you've patched to cause configure.in files to change.
178178

179179
NOTE: If you are building from a fresh, bundled source tree that

tgt-fpga/d-generic.c

Lines changed: 0 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* along with this program; if not, write to the Free Software
1717
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
1818
*/
19-
#ifdef HAVE_CVS_IDENT
20-
#ident "$Id: d-generic.c,v 1.14 2003/11/12 03:20:14 steve Exp $"
21-
#endif
2219

2320
# include "device.h"
2421
# include "fpga_priv.h"
@@ -512,55 +509,3 @@ const struct device_s d_generic = {
512509
0,
513510
0
514511
};
515-
516-
517-
/*
518-
* $Log: d-generic.c,v $
519-
* Revision 1.14 2003/11/12 03:20:14 steve
520-
* devices need show_cmp_gt
521-
*
522-
* Revision 1.13 2003/06/24 03:55:00 steve
523-
* Add ivl_synthesis_cell support for virtex2.
524-
*
525-
* Revision 1.12 2002/10/28 02:05:56 steve
526-
* Add Virtex code generators for left shift,
527-
* subtraction, and GE comparators.
528-
*
529-
* Revision 1.11 2002/08/12 01:35:02 steve
530-
* conditional ident string using autoconfig.
531-
*
532-
* Revision 1.10 2002/08/11 23:47:04 steve
533-
* Add missing Log and Ident strings.
534-
*
535-
* Revision 1.9 2001/09/16 01:48:16 steve
536-
* Suppor the PAD attribute on signals.
537-
*
538-
* Revision 1.8 2001/09/02 21:33:07 steve
539-
* Rearrange the XNF code generator to be generic-xnf
540-
* so that non-XNF code generation is also possible.
541-
*
542-
* Start into the virtex EDIF output driver.
543-
*
544-
* Revision 1.7 2001/09/01 04:30:44 steve
545-
* Generic ADD code.
546-
*
547-
* Revision 1.6 2001/09/01 02:28:42 steve
548-
* Generate code for MUX devices.
549-
*
550-
* Revision 1.5 2001/09/01 02:01:30 steve
551-
* identity compare, and PWR records for constants.
552-
*
553-
* Revision 1.4 2001/08/31 23:02:13 steve
554-
* Relax pin count restriction on logic gates.
555-
*
556-
* Revision 1.3 2001/08/31 04:17:56 steve
557-
* Many more logic gate types.
558-
*
559-
* Revision 1.2 2001/08/31 02:59:06 steve
560-
* Add root port SIG records.
561-
*
562-
* Revision 1.1 2001/08/28 04:14:20 steve
563-
* Add the fpga target.
564-
*
565-
*/
566-

tgt-fpga/d-lpm.c

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* along with this program; if not, write to the Free Software
1717
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
1818
*/
19-
#ifdef HAVE_CVS_IDENT
20-
#ident "$Id: d-lpm.c,v 1.12 2004/10/04 01:10:56 steve Exp $"
21-
#endif
2219

2320
/*
2421
* This is the driver for a purely generic LPM module writer. This
@@ -873,44 +870,3 @@ const struct device_s d_lpm_edif = {
873870
lpm_show_mult, /* show_mult */
874871
lpm_show_constant /* show_constant */
875872
};
876-
877-
/*
878-
* $Log: d-lpm.c,v $
879-
* Revision 1.12 2004/10/04 01:10:56 steve
880-
* Clean up spurious trailing white space.
881-
*
882-
* Revision 1.11 2003/11/12 03:20:14 steve
883-
* devices need show_cmp_gt
884-
*
885-
* Revision 1.10 2003/10/31 03:45:50 steve
886-
* Handle adders that use Cout for the top bit.
887-
*
888-
* Revision 1.9 2003/10/27 02:18:27 steve
889-
* Emit constants for LPM device.
890-
*
891-
* Revision 1.8 2003/09/03 23:34:09 steve
892-
* Support synchronous set of LPM_FF devices.
893-
*
894-
* Revision 1.7 2003/08/26 04:45:47 steve
895-
* iverilog-vpi support --cflags a la gtk.
896-
*
897-
* Revision 1.6 2003/08/15 02:23:53 steve
898-
* Add synthesis support for synchronous reset.
899-
*
900-
* Revision 1.5 2003/08/10 16:42:23 steve
901-
* Add async clear to LPM_FF devices.
902-
*
903-
* Revision 1.4 2003/08/09 03:23:03 steve
904-
* Add support for IVL_LPM_MULT device.
905-
*
906-
* Revision 1.3 2003/08/09 02:40:50 steve
907-
* Generate LPM_FF devices.
908-
*
909-
* Revision 1.2 2003/08/07 05:18:04 steve
910-
* Add support for OR/NOR/bufif0/bufif1.
911-
*
912-
* Revision 1.1 2003/08/07 04:04:01 steve
913-
* Add an LPM device type.
914-
*
915-
*/
916-

tgt-fpga/device.h

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
* along with this program; if not, write to the Free Software
1919
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
2020
*/
21-
#ifdef HAVE_CVS_IDENT
22-
#ident "$Id: device.h,v 1.15 2007/02/26 19:49:49 steve Exp $"
23-
#endif
2421

2522
# include <ivl_target.h>
2623

@@ -77,57 +74,4 @@ struct device_s {
7774
*/
7875
extern device_t device_from_arch(const char*arch);
7976

80-
81-
/*
82-
* $Log: device.h,v $
83-
* Revision 1.15 2007/02/26 19:49:49 steve
84-
* Spelling fixes (larry doolittle)
85-
*
86-
* Revision 1.14 2003/11/12 03:20:14 steve
87-
* devices need show_cmp_gt
88-
*
89-
* Revision 1.13 2003/10/27 02:18:27 steve
90-
* Emit constants for LPM device.
91-
*
92-
* Revision 1.12 2003/08/09 03:23:03 steve
93-
* Add support for IVL_LPM_MULT device.
94-
*
95-
* Revision 1.11 2003/06/24 03:55:00 steve
96-
* Add ivl_synthesis_cell support for virtex2.
97-
*
98-
* Revision 1.10 2002/10/28 02:05:56 steve
99-
* Add Virtex code generators for left shift,
100-
* subtraction, and GE comparators.
101-
*
102-
* Revision 1.9 2002/08/12 01:35:02 steve
103-
* conditional ident string using autoconfig.
104-
*
105-
* Revision 1.8 2002/08/11 23:47:04 steve
106-
* Add missing Log and Ident strings.
107-
*
108-
* Revision 1.7 2001/09/16 01:48:16 steve
109-
* Suppor the PAD attribute on signals.
110-
*
111-
* Revision 1.6 2001/09/02 21:33:07 steve
112-
* Rearrange the XNF code generator to be generic-xnf
113-
* so that non-XNF code generation is also possible.
114-
*
115-
* Start into the virtex EDIF output driver.
116-
*
117-
* Revision 1.5 2001/09/01 04:30:44 steve
118-
* Generic ADD code.
119-
*
120-
* Revision 1.4 2001/09/01 02:28:42 steve
121-
* Generate code for MUX devices.
122-
*
123-
* Revision 1.3 2001/09/01 02:01:30 steve
124-
* identity compare, and PWR records for constants.
125-
*
126-
* Revision 1.2 2001/08/31 02:59:06 steve
127-
* Add root port SIG records.
128-
*
129-
* Revision 1.1 2001/08/28 04:14:20 steve
130-
* Add the fpga target.
131-
*
132-
*/
13377
#endif

tgt-fpga/fpga.c

Lines changed: 0 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* along with this program; if not, write to the Free Software
1717
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
1818
*/
19-
#ifdef HAVE_CVS_IDENT
20-
#ident "$Id: fpga.c,v 1.10 2003/10/27 02:18:28 steve Exp $"
21-
#endif
2219

2320
# include "config.h"
2421

@@ -157,41 +154,3 @@ int target_design(ivl_design_t des)
157154
xnf = 0;
158155
return 0;
159156
}
160-
161-
/*
162-
* $Log: fpga.c,v $
163-
* Revision 1.10 2003/10/27 02:18:28 steve
164-
* Emit constants for LPM device.
165-
*
166-
* Revision 1.9 2003/08/07 04:04:01 steve
167-
* Add an LPM device type.
168-
*
169-
* Revision 1.8 2003/06/25 01:49:06 steve
170-
* Spelling fixes.
171-
*
172-
* Revision 1.7 2003/06/24 03:55:00 steve
173-
* Add ivl_synthesis_cell support for virtex2.
174-
*
175-
* Revision 1.6 2002/08/12 01:35:02 steve
176-
* conditional ident string using autoconfig.
177-
*
178-
* Revision 1.5 2001/09/16 01:48:16 steve
179-
* Suppor the PAD attribute on signals.
180-
*
181-
* Revision 1.4 2001/09/02 21:33:07 steve
182-
* Rearrange the XNF code generator to be generic-xnf
183-
* so that non-XNF code generation is also possible.
184-
*
185-
* Start into the virtex EDIF output driver.
186-
*
187-
* Revision 1.3 2001/09/01 02:01:30 steve
188-
* identity compare, and PWR records for constants.
189-
*
190-
* Revision 1.2 2001/08/31 02:59:06 steve
191-
* Add root port SIG records.
192-
*
193-
* Revision 1.1 2001/08/28 04:14:20 steve
194-
* Add the fpga target.
195-
*
196-
*/
197-

tgt-fpga/fpga_priv.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,4 @@ extern void xnf_mangle_lpm_name(ivl_lpm_t net, char*buf, size_t nbuf);
4747

4848
extern const char*xnf_mangle_nexus_name(ivl_nexus_t net);
4949

50-
5150
#endif

tgt-fpga/gates.c

Lines changed: 0 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* along with this program; if not, write to the Free Software
1717
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
1818
*/
19-
#ifdef HAVE_CVS_IDENT
20-
#ident "$Id: gates.c,v 1.14 2003/11/12 03:20:14 steve Exp $"
21-
#endif
2219

2320
# include <ivl_target.h>
2421
# include "fpga_priv.h"
@@ -174,40 +171,3 @@ int show_scope_gates(ivl_scope_t net, void*x)
174171

175172
return ivl_scope_children(net, show_scope_gates, 0);
176173
}
177-
178-
/*
179-
* $Log: gates.c,v $
180-
* Revision 1.14 2003/11/12 03:20:14 steve
181-
* devices need show_cmp_gt
182-
*
183-
* Revision 1.13 2003/08/09 03:23:03 steve
184-
* Add support for IVL_LPM_MULT device.
185-
*
186-
* Revision 1.12 2003/08/07 04:04:01 steve
187-
* Add an LPM device type.
188-
*
189-
* Revision 1.11 2003/06/24 03:55:01 steve
190-
* Add ivl_synthesis_cell support for virtex2.
191-
*
192-
* Revision 1.10 2002/10/28 02:05:56 steve
193-
* Add Virtex code generators for left shift,
194-
* subtraction, and GE comparators.
195-
*
196-
* Revision 1.9 2002/08/12 01:35:03 steve
197-
* conditional ident string using autoconfig.
198-
*
199-
* Revision 1.8 2002/08/11 23:47:04 steve
200-
* Add missing Log and Ident strings.
201-
*
202-
* Revision 1.7 2001/09/09 22:23:28 steve
203-
* Virtex support for mux devices and adders
204-
* with carry chains. Also, make Virtex specific
205-
* implementations of primitive logic.
206-
*
207-
* Revision 1.6 2001/09/02 21:33:07 steve
208-
* Rearrange the XNF code generator to be generic-xnf
209-
* so that non-XNF code generation is also possible.
210-
*
211-
* Start into the virtex EDIF output driver.
212-
*/
213-

0 commit comments

Comments
 (0)