branch: externals-release/gpr-mode commit 9ca25ec5ca871f04b4704b39fb3ba129694e02ac Author: Stephen Leake <stephen_le...@stephe-leake.org> Commit: Stephen Leake <stephen_le...@stephe-leake.org>
Release version 1.0.5; packaging fix * NEWS: Version. * README: * build.sh: * gpr-mode.el: --- NEWS | 5 +++++ README | 2 +- build.sh | 12 ++++++++---- gpr-mode.el | 4 ++-- 4 files changed, 16 insertions(+), 7 deletions(-) diff --git a/NEWS b/NEWS index 3d66dd122a..5a83acda4f 100644 --- a/NEWS +++ b/NEWS @@ -6,6 +6,11 @@ Please send gpr-mode bug reports to bug-gnu-em...@gnu.org, with 'gpr-mode' in the subject. If possible, use M-x report-emacs-bug. +* gpr mode 1.0.5 +10 Nov 2023 + +** Fix alire.toml wisitoken version. + * gpr mode 1.0.4 20 Sep 2023 diff --git a/README b/README index d7bbfe68eb..33154adba0 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Emacs gpr mode version 1.0.4 +Emacs gpr mode version 1.0.5 gpr mode provides auto-casing, fontification, navigation, and indentation for gpr source code files. diff --git a/build.sh b/build.sh index ef62145bdd..21409016b0 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,6 @@ #!/bin/sh # Build executables for gpr mode. -# build.sh <other gprbuild options> +# build.sh options when not using Alire; <other gprbuild options> # e.g. 'build.sh -j0' : use all available processors to compile # 'build.sh -wn' : treat warnings as warnings. # 'build.sh -vh' : Verbose output (high verbosity) @@ -8,15 +8,17 @@ # See install.sh for install if type alr; then + # alr can be installed from https://alire.ada.dev/ echo "building gpr-mode executables via Alire" - alr get emacs_gpr_mode~1.0.4 + + alr get emacs_gpr_mode~1.0.5 cd emacs_gpr_mode_*; alr build --release elif type gprbuild; then echo "building gpr-mode executables via gnat compiler" - if [ -d ../wisi-4.3.? ]; then - WISI_DIR=`ls -d ../wisi-4.3.?` + if [ -d ../wisi-4.3.0 ]; then + WISI_DIR=`ls -d ../wisi-4.3.*` fi args=`echo -DELPA="yes" $WISI_DIR/wisi.gpr.gp $WISI_DIR/wisi.gpr` @@ -31,6 +33,8 @@ elif type gprbuild; then gprclean -r -P gpr_mode_wisi_parse.gpr -aP$WISI_DIR + # We don't generate the parser code here (unlike ada-mode), + # because it is small enough to keep in ELPA gprbuild -p -j8 -P gpr_mode_wisi_parse.gpr -aP $WISI_DIR "$@" else diff --git a/gpr-mode.el b/gpr-mode.el index e58ad88bc0..0a33d4320b 100644 --- a/gpr-mode.el +++ b/gpr-mode.el @@ -4,8 +4,8 @@ ;; Author: Stephen Leake <stephen_le...@member.fsf.org> ;; Maintainer: Stephen Leake <stephen_le...@member.fsf.org> -;; Version: 1.0.4 -;; package-requires: ((emacs "25.3") (wisi "4.3.0") (gnat-compiler "1.0.3")) +;; Version: 1.0.5 +;; package-requires: ((emacs "25.3") (wisi "4.3.2") (gnat-compiler "1.0.3")) ;; URL: https://stephe-leake.org/ada/wisitoken.html ;; This file is part of GNU Emacs.