Skip to content

Commit

Permalink
Remove dkml-runtime-common-native
Browse files Browse the repository at this point in the history
Now only dkml-runtime-common exists.

https://gitlab.com/dkml/distributions/dkml/-/issues/22
  • Loading branch information
jonahbeckford committed Aug 21, 2024
1 parent 3d0c5b4 commit 78edd98
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 41 deletions.
1 change: 0 additions & 1 deletion bump-version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ DkMLBumpVersionParticipant_PlainReplace(README.md)
DkMLBumpVersionParticipant_PlainReplace(unix/crossplatform-functions.sh)
DkMLBumpVersionParticipant_MetaReplace(META)
DkMLBumpVersionParticipant_OpamReplace(dkml-runtime-common.opam)
DkMLBumpVersionParticipant_OpamReplace(dkml-runtime-common-native.opam)
DkMLBumpVersionParticipant_GitAddAndCommit()
35 changes: 0 additions & 35 deletions dkml-runtime-common-native.opam

This file was deleted.

9 changes: 6 additions & 3 deletions dkml-runtime-common.opam
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
opam-version: "2.0"
version: "2.1.2"
synopsis: "Common runtime code used in DKML"
synopsis: "Common runtime code used in DkML"
description: "Common runtime code used in DKML.

The runtime code will be available in the 'lib/dkml-runtime-common' folder
of your Opam switch or findlib installation."
maintainer: ["opensource+diskuv-ocaml@support.diskuv.com"]
authors: ["Diskuv, Inc. <opensource+diskuv-ocaml@support.diskuv.com>"]
maintainer: ["opensource+dkml@support.diskuv.com"]
authors: ["Diskuv, Inc. <opensource+dkml@support.diskuv.com>"]
license: "Apache-2.0"
homepage: "https://github.com/diskuv/dkml-runtime-common"
bug-reports: "https://github.com/diskuv/dkml-runtime-common/issues"
dev-repo: "git+https://github.com/diskuv/dkml-runtime-common.git"
# Must not rely on OCaml (ex. diskuvbox or dune) because this
# package is a dependency of OCaml compilers like dkml-base-compiler!
depends: []
build: [
["sh" "tests/crossplatform-tests.sh"] { with-test & !(os = "win32") }
]
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ install template.dkmlroot "$targetdir/"
#
# shellcheck disable=SC2043
for i in brewbundle.sh; do
tr -d '\r' macos/$i > "$targetdir/macos/$i"
tr -d '\r' < macos/$i > "$targetdir/macos/$i"
chmod +x "$targetdir/macos/$i"
done
for i in _common_tool.sh _within_dev.sh crossplatform-functions.sh; do
tr -d '\r' unix/$i > "$targetdir/unix/$i"
tr -d '\r' < unix/$i > "$targetdir/unix/$i"
chmod +x "$targetdir/unix/$i"
done

0 comments on commit 78edd98

Please sign in to comment.