Skip to content

Commit

Permalink
2.3.3 minor (#353)
Browse files Browse the repository at this point in the history
* Replace bash by sh in configure script

* Bump package version to 2.3.3

* Add conflicts instruction with the alt-ergo free package

* Use mandir in installaiton directives (#355)

* Bump version and update changes

Co-authored-by: Guillaume Bury <guillaume.bury@gmail.com>
  • Loading branch information
ACoquereau and Gbury authored Aug 19, 2020
1 parent c8a6918 commit e0b89ab
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 8 deletions.
8 changes: 8 additions & 0 deletions sources/CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
dev version
===========

version 2.3.3, August 19, 2020
================================

* Minor release:

- Fix configure use of bash
- Add conflict instructions with the Alt-ergo-free package

version 2.3.2, March 23, 2020
================================

Expand Down
14 changes: 12 additions & 2 deletions sources/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -159,26 +159,30 @@ non-regression: all
install: all
$(DUNE) install $(DUNE_FLAGS) \
--prefix $(prefix) \
--libdir $(libdir)
--libdir $(libdir) \
--mandir $(mandir)

# Use dune to uninstall the lib, bin, and gui
uninstall:
$(DUNE) uninstall $(DUNE_FLAGS) \
--prefix $(prefix) \
--libdir $(libdir)
--libdir $(libdir) \
--mandir $(mandir)

# Install only the lib
install-lib:
$(DUNE) install $(DUNE_FLAGS) \
--prefix $(prefix) \
--libdir $(libdir) \
--mandir $(mandir) \
-p alt-ergo-lib alt-ergo-lib

# Uninstall the lib
uninstall-lib:
$(DUNE) uninstall $(DUNE_FLAGS) \
--prefix $(prefix) \
--libdir $(libdir) \
--mandir $(mandir) \
-p alt-ergo-lib alt-ergo-lib


Expand All @@ -187,41 +191,47 @@ install-parsers:
$(DUNE) install $(DUNE_FLAGS) \
--prefix $(prefix) \
--libdir $(libdir) \
--mandir $(mandir) \
-p alt-ergo-parsers alt-ergo-parsers

# Uninstall the parsers
uninstall-parsers:
$(DUNE) uninstall $(DUNE_FLAGS) \
--prefix $(prefix) \
--libdir $(libdir) \
--mandir $(mandir) \
-p alt-ergo-parsers alt-ergo-parsers

# Install only the binary
install-bin:
$(DUNE) install $(DUNE_FLAGS) \
--prefix $(prefix) \
--libdir $(libdir) \
--mandir $(mandir) \
-p alt-ergo alt-ergo

# Uninstall the binary
uninstall-bin:
$(DUNE) uninstall $(DUNE_FLAGS) \
--prefix $(prefix) \
--libdir $(libdir) \
--mandir $(mandir) \
-p alt-ergo alt-ergo

# Install only the binary
install-gui:
$(DUNE) install $(DUNE_FLAGS) \
--prefix $(prefix) \
--libdir $(libdir) \
--mandir $(mandir) \
-p altgr-ergo altgr-ergo

# Uninstall the lib
uninstall-gui:
$(DUNE) uninstall $(DUNE_FLAGS) \
--prefix $(prefix) \
--libdir $(libdir) \
--mandir $(mandir) \
-p altgr-ergo altgr-ergo

.PHONY: install uninstall
Expand Down
6 changes: 5 additions & 1 deletion sources/alt-ergo-lib.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "alt-ergo-lib"
version: "2.3.2"
version: "2.3.3"
authors: "Alt-Ergo developers"
maintainer: "OCamlPro <alt-ergo@ocamlpro.com>"
license: "OCamlPro Non-Commercial Purpose License, version 1"
Expand All @@ -18,6 +18,10 @@ depends: [
"seq"
"stdlib-shims"
]
conflicts: [
"alt-ergo-free"
"alt-ergo-lib-free"
]
homepage: "http://alt-ergo.ocamlpro.com/"
dev-repo: "git+https://github.com/OCamlPro/alt-ergo.git"
bug-reports: "https://github.com/OCamlPro/alt-ergo/issues"
Expand Down
2 changes: 1 addition & 1 deletion sources/alt-ergo-parsers.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "alt-ergo-parsers"
version: "2.3.2"
version: "2.3.3"
authors: "Alt-Ergo developers"
maintainer: "OCamlPro <alt-ergo@ocamlpro.com>"
license: "OCamlPro Non-Commercial Purpose License, version 1"
Expand Down
2 changes: 1 addition & 1 deletion sources/alt-ergo.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "alt-ergo"
version: "2.3.2"
version: "2.3.3"
authors: "Alt-Ergo developers"
maintainer: "OCamlPro <alt-ergo@ocamlpro.com>"
license: "OCamlPro Non-Commercial Purpose License, version 1"
Expand Down
2 changes: 1 addition & 1 deletion sources/altgr-ergo.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "altgr-ergo"
version: "2.3.2"
version: "2.3.3"
authors: "Alt-Ergo developers"
maintainer: "OCamlPro <alt-ergo@ocamlpro.com>"
license: "OCamlPro Non-Commercial Purpose License, version 1"
Expand Down
2 changes: 1 addition & 1 deletion sources/configure
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash -e
#!/bin/sh -ue

ocaml unix.cma configure.ml "$@"
1 change: 1 addition & 0 deletions sources/configure.ml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ let () =
let () = Format.fprintf fmt "prefix=%s@." !prefix in
let () = Format.fprintf fmt "libdir=%s@." !libdir in
let () = Format.fprintf fmt "sharedir=%s@." !sharedir in
let () = Format.fprintf fmt "mandir=%s@." !mandir in
let () = close_out ch in
let () = Format.printf "done.@." in
()
Expand Down
2 changes: 1 addition & 1 deletion sources/lib/util/version.ml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
(* WARNING: a "cut" is performed on the following file in the Makefile.
DO NOT CHANGE its format *)

let _version="2.3.2"
let _version="2.3.3"

let _release_commit = "(not released)"

Expand Down

0 comments on commit e0b89ab

Please sign in to comment.