Skip to content

Commit

Permalink
No longer needed stdlib-shims dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mattam82 committed Jul 9, 2024
1 parent 52fda99 commit fc72216
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 13 deletions.
1 change: 0 additions & 1 deletion coq-metacoq-utils.opam
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ install: [
[make "-C" "utils" "install"]
]
depends: [
"stdlib-shims"
"coq" { = "dev" }
"coq-equations" { = "dev" }
]
Expand Down
2 changes: 1 addition & 1 deletion erasure-plugin/Makefile.plugin.local
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CAMLFLAGS+=-w -32 # Unused values
CAMLFLAGS+=-w -34 # Unused types
CAMLFLAGS+=-w -39 # Unused rec flags
CAMLFLAGS+=-w -60 # Unused module in functor
CAMLPKGS+=-package coq-metacoq-template-ocaml.plugin,stdlib-shims
CAMLPKGS+=-package coq-metacoq-template-ocaml.plugin

-include ../Makefile.conf

Expand Down
2 changes: 1 addition & 1 deletion erasure-plugin/src/META.coq-metacoq-erasure
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

package "plugin" (
directory = "."
requires = "coq-core.plugins.ltac coq-metacoq-template-ocaml.plugin stdlib-shims"
requires = "coq-core.plugins.ltac coq-metacoq-template-ocaml.plugin"
archive(byte) = "metacoq_erasure_plugin.cma"
archive(native) = "metacoq_erasure_plugin.cmxa"
plugin(byte) = "metacoq_erasure_plugin.cma"
Expand Down
2 changes: 1 addition & 1 deletion safechecker-plugin/Makefile.plugin.local
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CAMLFLAGS+=-w -32 # Unused values
CAMLFLAGS+=-w -34 # Unused types
CAMLFLAGS+=-w -39 # Unused rec flags
CAMLFLAGS+=-w -60 # Unused module in functor
CAMLPKGS+=-package coq-metacoq-template-ocaml.plugin,stdlib-shims
CAMLPKGS+=-package coq-metacoq-template-ocaml.plugin

-include ../Makefile.conf

Expand Down
2 changes: 1 addition & 1 deletion safechecker-plugin/src/META.coq-metacoq-safechecker
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

package "plugin" (
directory = "."
requires = "coq-core.plugins.ltac coq-metacoq-template-ocaml.plugin stdlib-shims"
requires = "coq-core.plugins.ltac coq-metacoq-template-ocaml.plugin"
archive(byte) = "metacoq_safechecker_plugin.cma"
archive(native) = "metacoq_safechecker_plugin.cmxa"
plugin(byte) = "metacoq_safechecker_plugin.cma"
Expand Down
4 changes: 2 additions & 2 deletions template-coq/META.coq-metacoq-template-coq
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

package "plugin" (
description = "The MetaCoq Coq Template Plugin"
version = "8.8"
version = "8.20"
directory = "src"
requires = "coq-core.plugins.ltac stdlib-shims"
requires = "coq-core.plugins.ltac"
archive(byte) = "template_coq.cma"
archive(native) = "template_coq.cmxa"
plugin(byte) = "template_coq.cma"
Expand Down
3 changes: 1 addition & 2 deletions template-coq/META.coq-metacoq-template-ocaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

package "plugin" (
description = "The MetaCoq Template Library"
version = "8.8"
version = "8.20"
directory = "gen-src"
requires = "stdlib-shims"
archive(byte) = "metacoq_template_plugin.cma"
archive(native) = "metacoq_template_plugin.cmxa"
plugin(byte) = "metacoq_template_plugin.cma"
Expand Down
1 change: 0 additions & 1 deletion template-coq/Makefile.plugin.local
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
CAMLPKGS+=-package stdlib-shims
INSTALLDEFAULTROOT=MetaCoq/Template

CAMLFLAGS :=-thread -bin-annot -strict-sequence -w -a+1..3-4+5..8-9+10..26-27+28..39-40-41-42+43-44-45+46..47-48+49..57-58+59..66-67-68+69-70
Expand Down
2 changes: 0 additions & 2 deletions template-coq/Makefile.template.local
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
CAMLPKGS+=-package stdlib-shims

.PHONY: META
2 changes: 1 addition & 1 deletion test-suite/plugin-demo/Makefile.plugin.local
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CAMLFLAGS+=-w -34 # Unused type
CAMLFLAGS+=-w -60 # Unused module
CAMLFLAGS+=-bin-annot # For merlin
CAMLFLAGS+=-open Metacoq_template_plugin
CAMLPKGS+=-package coq-metacoq-template-ocaml.plugin,stdlib-shims
CAMLPKGS+=-package coq-metacoq-template-ocaml.plugin

-include ../../Makefile.conf

Expand Down

0 comments on commit fc72216

Please sign in to comment.