summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrocky <rocky@gnu.org>2023-03-22 18:49:29 -0400
committerrocky <rocky@gnu.org>2023-03-22 18:49:29 -0400
commitbc38792cac80029e7a2d8366181fdc54705ec098 (patch)
treea4dd80259e982f4edc5c109bbd80cddcf16302d4
parent483b4b8e211c783ea977c10317e815b54a3b3eaa (diff)
Get ready for release 1.0.0externals/realgud-pdbpp
-rw-r--r--.gitignore2
-rw-r--r--Makefile.am2
-rw-r--r--README.md19
-rw-r--r--THANKS0
-rw-r--r--configure.ac5
5 files changed, 24 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index 98b94eb..14a45ea 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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
diff --git a/README.md b/README.md
index eeb260f..bf0177d 100644
--- a/README.md
+++ b/README.md
@@ -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/THANKS b/THANKS
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/THANKS
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 \