summaryrefslogtreecommitdiffstats
path: root/emacs-lisp
diff options
context:
space:
mode:
authorPavel Vinogradov2016-09-29 00:23:11 -0400
committerPavel Vinogradov2016-09-29 00:25:16 -0400
commit8de53fd65a08d45a38b78dc78ee9da2891089b0d (patch)
tree6e8fd4a1c68f1ad7b8671d5f156bb6eed5768c9d /emacs-lisp
parent698ea0c31a9011df2894464cea29abacff65f306 (diff)
emacs-lisp/popup-el: version 0.5.3
Diffstat (limited to 'emacs-lisp')
-rwxr-xr-xemacs-lisp/popup-el/DETAILS4
-rw-r--r--emacs-lisp/popup-el/HISTORY4
-rwxr-xr-xemacs-lisp/popup-el/INSTALL17
3 files changed, 6 insertions, 19 deletions
diff --git a/emacs-lisp/popup-el/DETAILS b/emacs-lisp/popup-el/DETAILS
index 919bcd7dac..558fc69cd8 100755
--- a/emacs-lisp/popup-el/DETAILS
+++ b/emacs-lisp/popup-el/DETAILS
@@ -1,8 +1,8 @@
SPELL=popup-el
- VERSION=0.5.2
+ VERSION=0.5.3
SOURCE="${SPELL}-${VERSION}.tar.gz"
SOURCE_URL[0]=https://github.com/auto-coomplete/${SPELL}/archive/v${VERSION}.tar.gz
- SOURCE_HASH=sha512:495918684b2c178b31953cf83310aab6bf77d6865a5b6b874b788efeebf6284d9b440581957b22c75c65b7544d24a36cc8fdd75940fe3650857e61dfada3a29e
+ SOURCE_HASH=sha512:ad67e5d1e4d969151359a54759ae74b2f1107b25b56e7bcedf15995ff6bc0188916fcf5af64ee6ee2b5046e831ebb49c521724e224d7ddb473d3229f3094f5d5
SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
WEB_SITE="https://github.com/auto-complete/popup-el"
LICENSE[0]=GPL3
diff --git a/emacs-lisp/popup-el/HISTORY b/emacs-lisp/popup-el/HISTORY
index 3c100037cd..6f8503bdbc 100644
--- a/emacs-lisp/popup-el/HISTORY
+++ b/emacs-lisp/popup-el/HISTORY
@@ -1,2 +1,6 @@
+2016-09-29 Pavel Vinogradov <public@sourcemage.org>
+ * DETAILS: version 0.5.3
+ * INSTALL: removed, uses section code now
+
2015-01-12 Pol Vinogradov <vin.public@gmail.com>
* DEPENDS, DETAILS, INSTALL: spell created
diff --git a/emacs-lisp/popup-el/INSTALL b/emacs-lisp/popup-el/INSTALL
deleted file mode 100755
index bea09e55e3..0000000000
--- a/emacs-lisp/popup-el/INSTALL
+++ /dev/null
@@ -1,17 +0,0 @@
-cd "$SOURCE_DIRECTORY" &&
-
-# We need popup.el.gz in $INSTALL_ROOT/usr/share/emacs/site-lisp
-# alongside with loaddefs.el
-local dir="$INSTALL_ROOT/usr/share/emacs/site-lisp" &&
-local info_dir="$INSTALL_ROOT/usr/share/info" &&
-
-install -d -m755 "$dir" &&
-find "$SOURCE_DIRECTORY" -maxdepth 1 \( -name \*.el.gz -o -name \*.elc \) \
- -exec install -m644 -t "$dir" {} + \
- -o -name \*.info.gz \
- -exec install -m644 -t "$info_dir" {} \; -print0 |
-sed -z "s@.*/@$info_dir/@" | xargs -r0 install-info --info-dir="$info_dir" &&
-emacs -Q --batch --eval '
- (let ((generated-autoload-file (car argv)))
- (update-directory-autoloads (elt argv 1)))
- ' "$dir/loaddefs.el" "$dir"