summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Bremner <bremner@debian.org>2015-10-23 07:48:29 -0300
committerDavid Bremner <bremner@debian.org>2015-10-23 07:48:29 -0300
commit356e6fbb3102db2e8a5a552862e6206fe6afcd27 (patch)
treeb8d44ff251b64e370f81f3de0a69494eac95b132
parentfbb06dad086043283f4430b5129af0c886aec263 (diff)
add emacs20 to list of obsolete emacs flavours.
I'm not sure if it's really possible to have emacs20 installed on a wheezy or later system, but what the heck.
-rw-r--r--debian/changelog6
-rwxr-xr-xemacsen-common/install2
-rwxr-xr-xemacsen-common/remove2
3 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 0321f9e..743aa01 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dh-elpa (0.0.15) UNRELEASED; urgency=medium
+
+ * Also ignore emacs20
+
+ -- David Bremner <bremner@debian.org> Fri, 23 Oct 2015 07:47:13 -0300
+
dh-elpa (0.0.14) unstable; urgency=medium
* Also ignore emacs21 and emacs22 in emacsen-common helper scripts
diff --git a/emacsen-common/install b/emacsen-common/install
index 9acc3d9..2e11984 100755
--- a/emacsen-common/install
+++ b/emacsen-common/install
@@ -10,7 +10,7 @@ case $FLAVOR in
emacs)
exit 0
;;
- emacs2[123]*)
+ emacs2[0123]*)
echo install/${ELPA_DIR}: Skipping obsolete emacs ${FLAVOR}
exit 0
;;
diff --git a/emacsen-common/remove b/emacsen-common/remove
index 391f21e..ff3c9ea 100755
--- a/emacsen-common/remove
+++ b/emacsen-common/remove
@@ -13,7 +13,7 @@ case $FLAVOR in
emacs)
exit 0
;;
- emacs2[123]*)
+ emacs2[0123]*)
echo remove/${ELPA_DIR}: Skipping obsolete emacs ${FLAVOUR}
exit 0
;;