Skip to content

Commit 686cc1f

Browse files
SkySkimmerproux01
authored andcommitted
Rename coqide -> rocqide
1 parent 097d531 commit 686cc1f

File tree

203 files changed

+596
-609
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+596
-609
lines changed

.github/workflows/ci-macos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ jobs:
3636
eval $(opam env)
3737
./configure -prefix "$(pwd)/_install_ci" -native-compiler no
3838
make dunestrap
39-
dune build -p rocq-runtime,coq-core,rocq-core,coqide-server,coqide
39+
dune build -p rocq-runtime,coq-core,rocq-core,coqide-server,rocqide
4040
env:
4141
MACOSX_DEPLOYMENT_TARGET: "10.11"
4242
NJOBS: "2"
4343

4444
- name: Install Coq
4545
run: |
4646
eval $(opam env)
47-
dune install --prefix="$(pwd)/_install_ci" rocq-runtime coq-core rocq-core coqide-server coqide
47+
dune install --prefix="$(pwd)/_install_ci" rocq-runtime coq-core rocq-core coqide-server rocqide
4848
4949
- name: Run Coq Test Suite
5050
run: |

.gitlab-ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ before_script:
7070
interruptible: true
7171
extends: .auto-use-tags
7272
variables:
73-
COQIDE: "opt"
73+
ROCQIDE: "opt"
7474
artifacts:
7575
name: "$CI_JOB_NAME"
7676
paths:
@@ -86,7 +86,7 @@ before_script:
8686
- cp dev/ci/dune-workspace.ci dune-workspace
8787

8888
- PKGS=rocq-runtime,coq-core,rocq-core,coqide-server
89-
- if [ "$COQIDE" != "no" ]; then PKGS=${PKGS},coqide; fi
89+
- if [ "$ROCQIDE" != "no" ]; then PKGS=${PKGS},rocqide; fi
9090
- dev/ci/gitlab-section.sh start coq.clean coq.clean
9191
- make clean # ensure that `make clean` works on a fresh clone
9292
- dev/ci/gitlab-section.sh end coq.clean
@@ -115,7 +115,7 @@ before_script:
115115
- make $DUNE_TARGET
116116
- tar cfj _build.tar.bz2 _build
117117
variables:
118-
DUNE_TARGET: "world coqide"
118+
DUNE_TARGET: "world rocqide"
119119
artifacts:
120120
name: "$CI_JOB_NAME"
121121
when: always
@@ -249,7 +249,7 @@ before_script:
249249
- if command -v coqc; then exit 1; fi # coq-core didn't get autoinstalled
250250
- opam pin add --kind=path coq-core.dev .
251251
- opam pin add --kind=path coqide-server.dev .
252-
- opam pin add --kind=path coqide.dev .
252+
- opam pin add --kind=path rocqide.dev .
253253
after_script:
254254
- eval $(opam env)
255255
- du -ha "$(coqc -where)" > files.listing
@@ -315,13 +315,13 @@ build:base:
315315
COQ_EXTRA_CONF: "-native-compiler yes"
316316
only: *full-ci
317317

318-
# no coqide for 32bit: libgtk installation problems
318+
# no rocqide for 32bit: libgtk installation problems
319319
build:base+32bit:
320320
extends: .build-template
321321
variables:
322322
OPAM_VARIANT: "+32bit"
323323
COQ_EXTRA_CONF: "-native-compiler yes"
324-
COQIDE: "no"
324+
ROCQIDE: "no"
325325
only: *full-ci
326326

327327
build:edge+flambda:

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ manifesto's README][coq-community-manifesto].
232232

233233
### Contributing to the editor support packages ###
234234

235-
Besides CoqIDE, whose sources are available in this repository, and to
235+
Besides Rocqide, whose sources are available in this repository, and to
236236
which you are welcome to contribute, there are a number of alternative
237237
user interfaces for Rocq, more often as an editor support package.
238238

@@ -294,7 +294,7 @@ GitHub account). You can file a bug for any of the following:
294294
find or don't understand some bit of documentation.
295295
- An error message that wasn't as helpful as you'd like. Bonus points
296296
for suggesting what information would have helped you.
297-
- Bugs in CoqIDE should also be filed in the [Rocq issue
297+
- Bugs in Rocqide should also be filed in the [Rocq issue
298298
tracker][Rocq-issue-tracker]. Bugs in the Emacs plugin should be
299299
filed against [ProofGeneral][ProofGeneral-issues], or against
300300
[company-coq][company-coq-issues] if they are specific to

INSTALL.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To compile Rocq yourself, you need:
3434
ties to even as default rounding mode (most architectures
3535
should work nowadays)
3636

37-
- for CoqIDE, the
37+
- for RocqIDE, the
3838
[lablgtk3-sourceview3](https://github.com/garrigue/lablgtk) library
3939
(version >= 3.1.2), and the corresponding GTK 3.x libraries, as
4040
of today (gtk+3 >= 3.18 and gtksourceview3 >= 3.18)
@@ -55,7 +55,7 @@ this moment) must be properly registered with `findlib/ocamlfind`
5555
since Rocq's build system uses `findlib` to locate them.
5656

5757
Debian / Ubuntu users can get the necessary system packages for
58-
CoqIDE with:
58+
RocqIDE with:
5959

6060
$ sudo apt-get install libgtksourceview-3.0-dev
6161

@@ -87,14 +87,14 @@ but final users must always use the release build. See
8787
[dev/doc/build-system.dune.md](dev/doc/build-system.dune.md)
8888
for more details.
8989

90-
To build and install Rocq (and CoqIDE if desired) do:
90+
To build and install Rocq (and RocqIDE if desired) do:
9191

9292
$ ./configure -prefix <install_prefix> $options
9393
$ make dunestrap
94-
$ dune build -p rocq-runtime,coq-core,rocq-core,coq,coqide-server,coqide
95-
$ dune install --prefix=<install_prefix> rocq-runtime coq-core rocq-core coq coqide-server coqide
94+
$ dune build -p rocq-runtime,coq-core,rocq-core,coq,coqide-server,rocqide
95+
$ dune install --prefix=<install_prefix> rocq-runtime coq-core rocq-core coq coqide-server rocqide
9696

97-
You can drop the `coqide` packages if not needed.
97+
You can drop the `rocqide` packages if not needed.
9898

9999
Packagers may want to play with `dune install` options as to tweak
100100
installation path, the `-prefix` argument in `./configure` tells Rocq

Makefile

+9-9
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# Dune Makefile for Rocq
1212

13-
.PHONY: help help-install states world coqide watch check # Main developer targets
13+
.PHONY: help help-install states world rocqide watch check # Main developer targets
1414
.PHONY: refman-html refman-pdf corelib-html apidoc # Documentation targets
1515
.PHONY: test-suite dev-targets
1616
.PHONY: fmt ocheck obuild ireport clean # Maintenance targets
@@ -39,9 +39,9 @@ help:
3939
@echo "make help-install for installation instructions. Common developer targets are:"
4040
@echo ""
4141
@echo " - states: build a minimal functional rocq repl"
42-
@echo " - world: build main public binaries and libraries in developer mode (no coqide)"
42+
@echo " - world: build main public binaries and libraries in developer mode (no rocqide)"
4343
@echo " - watch: build main public binaries and libraries [continuous build]"
44-
@echo " - coqide: build coqide binary in developer mode"
44+
@echo " - rocqide: build rocqide binary in developer mode"
4545
@echo " - check: build all ML files as fast as possible"
4646
@echo " - test-suite: run Rocq's test suite [env NJOBS=N to set job parallelism]"
4747
@echo " - dunestrap: Generate the dune rules for vo files"
@@ -51,7 +51,7 @@ help:
5151
@echo " Note: these targets produce a developer build, not suitable"
5252
@echo " for distribution to end-users or install"
5353
@echo ""
54-
@echo " To run an \$$app \\in {coqc,coqtop,coqtop.byte,coqide}:"
54+
@echo " To run an \$$app \\in {coqc,coqtop,coqtop.byte,rocqide}:"
5555
@echo ""
5656
@echo " - use 'dune exec -- dev/shim/\$$app args'"
5757
@echo " Example: 'dune exec -- dev/shim/coqc file.v'"
@@ -100,7 +100,7 @@ help-install:
100100
@echo " - coq-core: compat binaries (coqc instead of rocq compile, etc)"
101101
@echo " - rocq-core: Rocq's prelude and corelib"
102102
@echo " - coqide-server: XML protocol language server"
103-
@echo " - coqide: CoqIDE gtk application"
103+
@echo " - rocqide: RocqIDE gtk application"
104104
@echo " - rocq: meta package depending on rocq-runtime rocq-core rocq-stdlib"
105105
@echo " (also calls the test suite when using --with-test)"
106106
@echo " - coq: meta package depending on rocq coq-core coq-stdlib"
@@ -167,8 +167,8 @@ MAIN_TARGETS:=rocq-runtime.install coq-core.install rocq-core.install coqide-ser
167167
world: dunestrap
168168
dune build $(DUNEOPT) $(MAIN_TARGETS)
169169

170-
coqide:
171-
dune build $(DUNEOPT) coqide.install
170+
rocqide:
171+
dune build $(DUNEOPT) rocqide.install
172172

173173
watch:
174174
dune build $(DUNEOPT) $(MAIN_TARGETS) -w
@@ -282,9 +282,9 @@ $(foreach subdir,$(wildcard theories/*/),$(eval $(call subtarget,$(subdir),$(she
282282
#
283283
# dune build rocq-runtime.install
284284
# dune build coq.install
285-
# dune build coqide.install
285+
# dune build rocqide.install
286286
#
287287
# Packaging / OPAM targets:
288288
#
289289
# dune -p coq @install
290-
# dune -p coqide @install
290+
# dune -p rocqide @install

config/coq_config.mli

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ val ocamlfind : string
2828
(* used in envars for coq_makefile *)
2929
val caml_flags : string (* arguments passed to ocamlc (ie. CAMLFLAGS) *)
3030

31-
(* Used in coqide *)
31+
(* Used in rocqide *)
3232
val arch : string (* architecture *)
3333

3434
(* dubious use in envars, use in coqmakefile *)
@@ -45,7 +45,7 @@ val all_src_dirs : string list
4545
(* Used in micromega *)
4646
val exec_extension : string (* "" under Unix, ".exe" under MS-windows *)
4747

48-
(* Used in coqide *)
48+
(* Used in rocqide *)
4949
val browser : string
5050
(** default web browser to use, may be overridden by environment
5151
variable COQREMOTEBROWSER *)
@@ -57,7 +57,7 @@ val has_natdynlink : bool
5757
val wwwcoq : string
5858
val wwwstdlib : string
5959

60-
(* used in coqide *)
60+
(* used in rocqide *)
6161
val wwwrefman : string
6262

6363
(* for error reporting *)

coqide-server.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ semi-interactive development of machine-checked proofs.
1010

1111
This package provides the `coqidetop` language server, an
1212
implementation of Coq's [XML protocol](https://github.com/coq/coq/blob/master/dev/doc/xml-protocol.md)
13-
which allows clients, such as CoqIDE, to interact with Coq in a
13+
which allows clients, such as RocqIDE, to interact with Coq in a
1414
structured way."""
1515
maintainer: ["The Rocq development team <coqdev@inria.fr>"]
1616
authors: ["The Rocq development team, INRIA, CNRS, and contributors"]

default.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# How to use?
22

33
# If you have Nix installed, you can get in an environment with everything
4-
# needed to compile Rocq and CoqIDE by running:
4+
# needed to compile Rocq and RocqIDE by running:
55
# $ nix-shell
66
# at the root of the Rocq repository.
77

@@ -111,7 +111,7 @@ stdenv.mkDerivation rec {
111111

112112
enableParallelBuilding = true;
113113

114-
buildFlags = [ "world" ] ++ optional buildIde "coqide";
114+
buildFlags = [ "world" ] ++ optional buildIde "rocqide";
115115

116116
# TODO, building of documentation package when not in dev mode
117117
# https://github.com/coq/coq/issues/16198
@@ -120,7 +120,7 @@ stdenv.mkDerivation rec {
120120
# From https://github.com/NixOS/nixpkgs/blob/master/pkgs/build-support/ocaml/dune.nix
121121
installPhase = ''
122122
runHook preInstall
123-
dune install --prefix $out --libdir $OCAMLFIND_DESTDIR rocq-runtime coq-core rocq-core coqide-server ${optionalString buildIde "coqide"}
123+
dune install --prefix $out --libdir $OCAMLFIND_DESTDIR rocq-runtime coq-core rocq-core coqide-server ${optionalString buildIde "rocqide"}
124124
runHook postInstall
125125
'';
126126

dev/ci/README-developers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ unless these tests pass.
88
We are currently running tests on the following platforms:
99

1010
- GitLab CI is the main CI platform. It tests the compilation of Rocq,
11-
of the documentation, and of CoqIDE on Linux with several versions
11+
of the documentation, and of RocqIDE on Linux with several versions
1212
of OCaml and with warnings as errors; it runs the test-suite and
1313
tests the compilation of several external developments. It also runs
1414
a linter that checks whitespace discipline. A [pre-commit

dev/ci/platform/coq-pf-03-build.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ call coq_platform_make_windows.bat ^
2727
-override-dev-pkg="coq-core=%GITHUB_SERVER_URL%/%GITHUB_REPOSITORY%/archive/%GITHUB_SHA%.tar.gz" ^
2828
-override-dev-pkg="coq=%GITHUB_SERVER_URL%/%GITHUB_REPOSITORY%/archive/%GITHUB_SHA%.tar.gz" ^
2929
-override-dev-pkg="coqide-server=%GITHUB_SERVER_URL%/%GITHUB_REPOSITORY%/archive/%GITHUB_SHA%.tar.gz" ^
30-
-override-dev-pkg="coqide=%GITHUB_SERVER_URL%/%GITHUB_REPOSITORY%/archive/%GITHUB_SHA%.tar.gz" ^
30+
-override-dev-pkg="rocqide=%GITHUB_SERVER_URL%/%GITHUB_REPOSITORY%/archive/%GITHUB_SHA%.tar.gz" ^
3131
|| GOTO ErrorExit
3232

3333
GOTO :EOF

dev/doc/build-system.dune.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -106,21 +106,21 @@ Dune will read the file `~/.config/dune/config`; see `man
106106
dune-config`. Among others, you can set in this file the custom number
107107
of build threads `(jobs N)` and display options `(display _mode_)`.
108108

109-
## Running binaries [coqtop / coqide]
109+
## Running binaries [coqtop / rocqide]
110110

111111
Running `coqtop` directly with `dune exec -- coqtop` won't in general
112112
work well unless you are using `dune exec -- coqtop -noinit`. The
113113
`coqtop` binary doesn't depend itself on Rocq's prelude, so plugins /
114114
vo files may go stale if you rebuild only `coqtop`.
115115

116116
Instead, you should use the provided "shims" for running `coqtop` and
117-
`coqide` in a fast build. In order to use them, do:
117+
`rocqide` in a fast build. In order to use them, do:
118118

119119
```
120120
$ dune exec -- dev/shim/coqtop
121121
```
122122

123-
or `quickide` / `dev/shim/coqide` for CoqIDE, etc.... See `dev/shim/dune` for a
123+
or `quickide` / `dev/shim/rocqide` for RocqIDE, etc.... See `dev/shim/dune` for a
124124
complete list of targets. These targets enjoy quick incremental compilation
125125
thanks to `-opaque` so they tend to be very fast while developing.
126126

@@ -207,7 +207,7 @@ dune exec -- dev/dune-dbg coqc foo.v
207207
(ocd) source db
208208
```
209209

210-
to start `coqc.byte foo.v`, other targets are `{checker,coqide,coqtop}`:
210+
to start `coqc.byte foo.v`, other targets are `{checker,rocqide,coqtop}`:
211211

212212
```
213213
dune exec -- dev/dune-dbg checker foo.vo
@@ -257,10 +257,10 @@ plugin will correctly track dependencies and rebuild incrementally as
257257
needed.
258258

259259
However, it is not always desirable to go this way. For example, the
260-
current Rocq source tree contains two packages [Rocq and CoqIDE], and in
261-
the OPAM CoqIDE package we don't want to build CoqIDE against the
260+
current Rocq source tree contains two packages [Rocq and RocqIDE], and in
261+
the OPAM RocqIDE package we don't want to build RocqIDE against the
262262
local copy of Rocq. For this purpose, Dune supports the `-p` option, so
263-
`dune build -p coqide` will build CoqIDE against the system-installed
263+
`dune build -p rocqide` will build RocqIDE against the system-installed
264264
version of Rocq libs, and use a "release" profile that for example
265265
enables stronger compiler optimizations.
266266

@@ -316,7 +316,7 @@ useful to Rocq, some examples are:
316316

317317
You are likely running a partial build which doesn't include
318318
implicitly loaded plugins / vo files. See the "Running binaries
319-
[coqtop / coqide]" section above as to how to correctly call Rocq's
319+
[coqtop / rocqide]" section above as to how to correctly call Rocq's
320320
binaries.
321321

322322
## Dune cheat sheet

dev/doc/xml-protocol.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ for his [vscoq](https://github.com/coq-community/vscoq/) project.
55

66
Here, the aim is to provide a "hands on" description of the XML
77
protocol that coqtop and IDEs use to communicate. The protocol first appeared
8-
with Coq 8.5, and is used by CoqIDE, [vscoq](https://github.com/coq-community/vscoq/), and other user interfaces.
8+
with Coq 8.5, and is used by RocqDE, [vscoq legacy](https://github.com/coq-community/vscoq-legacy/), and other user interfaces.
99

1010
A somewhat out-of-date description of the async state machine is
1111
[documented here](https://github.com/ejgallego/jscoq/blob/v8.16/etc/notes/coq-notes.md).
@@ -331,7 +331,7 @@ many there are.
331331
-------------------------------
332332

333333
### <a name="command-status">**Status(force: bool)**</a>
334-
Returns information about the current proofs. CoqIDE typically sends this
334+
Returns information about the current proofs. RocqIDE typically sends this
335335
message with `force = false` after each sentence, and with `force = true` if
336336
the user wants to force the checking of all proofs (wheels button). In terms of
337337
the STM API, `force` triggers a `Join`.
@@ -544,7 +544,7 @@ Sends a list of option settings, where each setting roughly looks like:
544544
</list>
545545
</call>
546546
```
547-
CoqIDE sends the following settings (defaults in parentheses):
547+
RocqIDE sends the following settings (defaults in parentheses):
548548
```
549549
Printing Width : (<option_value val="intvalue"><int>60</int></option_value>),
550550
Printing Coercions : (<option_value val="boolvalue"><bool val="false"/></option_value>),
@@ -705,7 +705,7 @@ processed when Coq is no longer busy or execution stops in the debugger.
705705
<list>
706706
<pair>
707707
<pair>
708-
<string>/home/proj/coq/ide/coqide/debug.v</string>
708+
<string>/home/proj/coq/ide/rocqide/debug.v</string>
709709
<int>22</int>
710710
</pair>
711711
<bool val="true"/>
@@ -957,7 +957,7 @@ Currently these tags are used:
957957
* **goal** - the current goal for the debugger, for display in the Messages panel
958958
or elsewhere
959959
* **prompt** - output for display in the Messages panel prompting the user to
960-
enter a debug command, allowing CoqIDE to display it without
960+
enter a debug command, allowing RocqIDE to display it without
961961
appending a newline. It also signals that coqidetop is waiting to receive
962962
a debugger-specific message such as [Db_cmd](#command-db_cmd).
963963
@@ -984,8 +984,8 @@ There are 4 tags that indicate how the enclosed text should be highlighted:
984984
- diff.added.bg - unchanged text in a line that has additions ("bg" for "background")
985985
- diff.removed.bg - unchanged text in a line that has removals
986986
987-
CoqIDE, Proof General and coqtop currently use 2 shades of green and 2 shades of red
988-
as the background color for highlights. Coqtop and CoqIDE also apply underlining and/or
987+
RocqIDE, Proof General and coqtop currently use 2 shades of green and 2 shades of red
988+
as the background color for highlights. Coqtop and RocqIDE also apply underlining and/or
989989
strikeout highlighting for the sake of the color blind.
990990
991991
For example, `<diff.added>ABC</diff.added>` indicates that "ABC" should be highlighted

dev/dune

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
../checker/coqchk.bc
2525
../topbin/rocqworker.bc
2626
../topbin/rocqnative.bc
27-
../ide/coqide/rocqide_main.bc
27+
../ide/rocqide/rocqide_main.bc
2828
; We require all the OCaml libs to be in place and searchable
2929
; by OCamlfind, this is a bit of a hack but until Dune gets
3030
; proper ocamldebug support we have to live with that.

0 commit comments

Comments
 (0)