Refactor: rename tezos-client-environment into tezos-protocol-environment-client

This commit is contained in:
Grégoire Henry 2018-01-30 11:53:49 +01:00
parent ca29c92442
commit 657e214e83
12 changed files with 11 additions and 10 deletions

View File

@ -307,10 +307,10 @@ opam:24:tezos-client-alpha:
variables: variables:
package: tezos-client-alpha package: tezos-client-alpha
opam:25:tezos-client-environment: opam:25:tezos-protocol-environment-client:
<<: *opam_definition <<: *opam_definition
variables: variables:
package: tezos-client-environment package: tezos-protocol-environment-client
opam:26:tezos-protocol-genesis: opam:26:tezos-protocol-genesis:
<<: *opam_definition <<: *opam_definition

View File

@ -1,8 +1,8 @@
(jbuild_version 1) (jbuild_version 1)
(library (library
((name tezos_client_environment) ((name tezos_protocol_environment_client)
(public_name tezos-client-environment) (public_name tezos-protocol-environment-client)
(libraries (tezos-base (libraries (tezos-base
tezos-protocol-environment-sigs tezos-protocol-environment-sigs
tezos-micheline)) tezos-micheline))

View File

@ -5,7 +5,7 @@
(public_name tezos-client-alpha) (public_name tezos-client-alpha)
(libraries (tezos-base (libraries (tezos-base
tezos-protocol-alpha tezos-protocol-alpha
tezos-client-environment tezos-protocol-environment-client
tezos-shell-services tezos-shell-services
tezos-client-base)) tezos-client-base))
(library_flags (:standard -linkall)) (library_flags (:standard -linkall))

View File

@ -8,5 +8,5 @@
(**************************************************************************) (**************************************************************************)
module Name = struct let name = "alpha" end module Name = struct let name = "alpha" end
module Environment = Tezos_client_environment.Environment.Make(Name)() module Environment = Tezos_protocol_environment_client.Fake.Make(Name)()
include Tezos_protocol_alpha.Functor.Make(Environment) include Tezos_protocol_alpha.Functor.Make(Environment)

View File

@ -10,7 +10,8 @@ depends: [
"ocamlfind" { build } "ocamlfind" { build }
"jbuilder" { build & >= "1.0+beta15" } "jbuilder" { build & >= "1.0+beta15" }
"tezos-base" "tezos-base"
"tezos-embedded-protocol-alpha" "tezos-protocol-environment-client"
"tezos-protocol-alpha"
"tezos-shell-services" "tezos-shell-services"
"tezos-client-base" "tezos-client-base"
] ]

View File

@ -6,7 +6,7 @@
(libraries (tezos-base (libraries (tezos-base
tezos-shell-services tezos-shell-services
tezos-client-base tezos-client-base
tezos-client-environment tezos-protocol-environment-client
tezos-client-alpha tezos-client-alpha
tezos-protocol-genesis)) tezos-protocol-genesis))
(library_flags (:standard -linkall)) (library_flags (:standard -linkall))

View File

@ -8,5 +8,5 @@
(**************************************************************************) (**************************************************************************)
module Name = struct let name = "genesis" end module Name = struct let name = "genesis" end
module Environment = Tezos_client_environment.Environment.Make(Name)() module Environment = Tezos_protocol_environment_client.Fake.Make(Name)()
include Tezos_protocol_genesis.Functor.Make(Environment) include Tezos_protocol_genesis.Functor.Make(Environment)

View File

@ -12,7 +12,7 @@ depends: [
"tezos-base" "tezos-base"
"tezos-shell-services" "tezos-shell-services"
"tezos-client-base" "tezos-client-base"
"tezos-client-environment" "tezos-protocol-environment-client"
"tezos-client-alpha" "tezos-client-alpha"
"tezos-protocol-genesis" "tezos-protocol-genesis"
] ]