Compare commits
No commits in common. "fdd562c360d6b4c126b3d1a4c87d9cd54e8ba3f4" and "62b4135be7ac6f5cd25e9b18898832d1a5fe6654" have entirely different histories.
fdd562c360
...
62b4135be7
2 changed files with 14 additions and 14 deletions
|
@ -8,12 +8,12 @@ bug-reports: "dummy"
|
|||
dev-repo: "git://dummy"
|
||||
synopsis: "A DNS stub resolver"
|
||||
|
||||
build: [make "build"]
|
||||
build: [make "-Cdns-only/" "build"]
|
||||
|
||||
install: [
|
||||
[ "cp" "dist/dns-stub.hvt" "%{bin}%/dns-stub.hvt" ]
|
||||
[ "cp" "dns-only/dist/dns-stub.hvt" "%{bin}%/dns-stub.hvt" ]
|
||||
[ "strip" "%{bin}%/dns-stub.hvt" ]
|
||||
[ "cp" "dist/dns-stub.hvt" "%{prefix}%/dns-stub.hvt.debug" ]
|
||||
[ "cp" "dns-only/dist/dns-stub.hvt" "%{prefix}%/dns-stub.hvt.debug" ]
|
||||
[ "cp" "README.md" "%{prefix}%/README.md" ]
|
||||
]
|
||||
|
||||
|
@ -46,11 +46,11 @@ depends: [
|
|||
"tcpip" { ?monorepo & >= "8.2.0" & < "9.0.0" }
|
||||
]
|
||||
|
||||
x-mirage-opam-lock-location: "mirage/dns-stub-hvt.opam.locked"
|
||||
x-mirage-opam-lock-location: "dns-only/mirage/dns-stub-hvt.opam.locked"
|
||||
|
||||
x-mirage-configure: ["sh" "-exc" "mirage configure -t hvt --context ./mirage/context --no-extra-repo"]
|
||||
x-mirage-configure: ["sh" "-exc" "cd dns-only/ && mirage configure -t hvt --context ./mirage/context --no-extra-repo"]
|
||||
|
||||
x-mirage-pre-build: [make "lock" "depext-lockfile" "pull"]
|
||||
x-mirage-pre-build: [make "-Cdns-only/" "lock" "depext-lockfile" "pull"]
|
||||
|
||||
x-mirage-extra-repo: [
|
||||
["opam-overlays" "https://github.com/dune-universe/opam-overlays.git"]
|
||||
|
@ -59,4 +59,4 @@ x-mirage-extra-repo: [
|
|||
|
||||
x-opam-monorepo-opam-provided: ["mirage" "ocaml-solo5" "opam-monorepo" "solo5"]
|
||||
|
||||
url { src: "git+https://github.com/robur-coop/dns-stub.git" }
|
||||
url { src: "git+https://github.com/robur-coop/dnsvizor.git" }
|
||||
|
|
|
@ -8,12 +8,12 @@ bug-reports: "dummy"
|
|||
dev-repo: "git://dummy"
|
||||
synopsis: "A DNS resolver and DHCP server"
|
||||
|
||||
build: [make "build"]
|
||||
build: [make "-Cdns-and-dhcp/" "build"]
|
||||
|
||||
install: [
|
||||
[ "cp" "dist/dnsvizor.hvt" "%{bin}%/dnsvizor.hvt" ]
|
||||
[ "cp" "dns-and-dhcp/dist/dnsvizor.hvt" "%{bin}%/dnsvizor.hvt" ]
|
||||
[ "strip" "%{bin}%/dnsvizor.hvt" ]
|
||||
[ "cp" "dist/dnsvizor.hvt" "%{prefix}%/dnsvizor.hvt.debug" ]
|
||||
[ "cp" "dns-and-dhcp/dist/dnsvizor.hvt" "%{prefix}%/dnsvizor.hvt.debug" ]
|
||||
[ "cp" "README.md" "%{prefix}%/README.md" ]
|
||||
]
|
||||
|
||||
|
@ -26,7 +26,7 @@ depends: [
|
|||
"dns-mirage" { ?monorepo }
|
||||
"dns-resolver" { ?monorepo }
|
||||
"dns-server" { ?monorepo }
|
||||
"dns-stub" { ?monorepo }
|
||||
"dns-stub" { ?monorepo & >= "6.4.0" }
|
||||
"dns-tsig" { ?monorepo }
|
||||
"duration" { ?monorepo & < "1.0.0" }
|
||||
"ethernet" { ?monorepo & >= "3.0.0" }
|
||||
|
@ -48,11 +48,11 @@ depends: [
|
|||
"tcpip" { ?monorepo & >= "7.0.0" }
|
||||
]
|
||||
|
||||
x-mirage-opam-lock-location: "mirage/dnsvizor-hvt.opam.locked"
|
||||
x-mirage-opam-lock-location: "dns-and-dhcp/mirage/dnsvizor-hvt.opam.locked"
|
||||
|
||||
x-mirage-configure: ["sh" "-exc" "mirage configure -t hvt --context ./mirage/context --no-extra-repo"]
|
||||
x-mirage-configure: ["sh" "-exc" "cd dns-and-dhcp/ && mirage configure -t hvt --context ./mirage/context --no-extra-repo"]
|
||||
|
||||
x-mirage-pre-build: [make "lock" "depext-lockfile" "pull"]
|
||||
x-mirage-pre-build: [make "-Cdns-and-dhcp/" "lock" "depext-lockfile" "pull"]
|
||||
|
||||
x-mirage-extra-repo: [
|
||||
["opam-overlays" "https://github.com/dune-universe/opam-overlays.git"]
|
||||
|
|
Loading…
Reference in a new issue