diff options
| author | rocky <rocky@gnu.org> | 2023-03-22 18:49:29 -0400 |
|---|---|---|
| committer | rocky <rocky@gnu.org> | 2023-03-22 18:49:29 -0400 |
| commit | bc38792cac80029e7a2d8366181fdc54705ec098 (patch) | |
| tree | a4dd80259e982f4edc5c109bbd80cddcf16302d4 | |
| parent | 483b4b8e211c783ea977c10317e815b54a3b3eaa (diff) | |
Get ready for release 1.0.0externals/realgud-pdbpp
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Makefile.am | 2 | ||||
| -rw-r--r-- | README.md | 19 | ||||
| -rw-r--r-- | THANKS | 0 | ||||
| -rw-r--r-- | configure.ac | 5 |
5 files changed, 24 insertions, 4 deletions
@@ -5,6 +5,7 @@ /.byebug_history /.python-version /.ruby-version +/ChangeLog /README /aclocal.m4 /autom4te.cache @@ -13,6 +14,7 @@ /config.status /configure /configure.lineno +/dist /elpa /install-sh /missing diff --git a/Makefile.am b/Makefile.am index 30bb24e..4a37334 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,7 +15,7 @@ include common.mk PHONY=check clean dist distclean test check-short check-terse install-short -EXTRA_DIST = common.mk.in INSTALL.md README.md THANKS $(lisp_files) +EXTRA_DIST = common.mk.in README.md THANKS $(lisp_files) if MAINTAINER_MODE @@ -1 +1,20 @@ +Introduction +============ + Emacs Lisp Module to add [pdb++](https://github.com/pdbpp/pdbpp/) support to [realgud](https://github.com/realgud/realgud). + + +Installation +============= + +From github source +------------------ + +* Have `realgud` and `test-simple` installed. +* From inside GNU Emacs, evaluate: +```lisp + (compile (format "EMACSLOADPATH=:%s:%s ./autogen.sh" (file-name-directory (locate-library "test-simple.elc")) (file-name-directory (locate-library "realgud.elc")))) +``` + +[gnu-elpa-image]: https://elpa.gnu.org/packages/realgud-pdbpp.svg +[gnu-elpa]: https://elpa.gnu.org/packages/realgud-pdbpp.html diff --git a/configure.ac b/configure.ac index dc01bc9..d9b63de 100644 --- a/configure.ac +++ b/configure.ac @@ -1,12 +1,11 @@ dnl FIXME: pick up from realgud.el -AC_INIT(realgud-pdbpp, 1.0.0,) +AC_INIT([realgud-pdbpp],[1.0.0],[]) AC_CONFIG_SRCDIR(pdbpp/pdbpp.el) AM_INIT_AUTOMAKE([foreign]) AM_MAINTAINER_MODE AC_PATH_PROG([EMACS], [emacs], [emacs]) -AC_ARG_WITH(emacs, AC_HELP_STRING([--with-emacs], - [location of emacs program]), EMACS=$withval) +AC_ARG_WITH(emacs, AS_HELP_STRING([--with-emacs],[location of emacs program]), EMACS=$withval) AC_MSG_NOTICE("Checking emacs version") $EMACS -batch -q --no-site-file -eval \ |
