Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (de561b329d71596e3c695252e8aac7ee16878b5e)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pol Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (de561b329d71596e3c695252e8aac7ee16878b5e)
  • Date: Mon, 12 Jan 2015 01:46:40 -0600

GIT changes to master grimoire by Pol Vinogradov <vin.public AT gmail.com>:

ChangeLog | 4 ++++
emacs-lisp/auto-complete/DEPENDS | 3 ++-
emacs-lisp/auto-complete/HISTORY | 1 +
emacs-lisp/popup-el/DEPENDS | 1 +
emacs-lisp/popup-el/DETAILS | 16 ++++++++++++++++
emacs-lisp/popup-el/HISTORY | 2 ++
emacs-lisp/popup-el/INSTALL | 17 +++++++++++++++++
7 files changed, 43 insertions(+), 1 deletion(-)

New commits:
commit de561b329d71596e3c695252e8aac7ee16878b5e
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

emacs-lisp/auto-complete: needs popup-el

commit 2ef4e8ad924b161ec4181f238073e2ebe6559404
Author: Pol Vinogradov <vin.public AT gmail.com>
Commit: Pol Vinogradov <vin.public AT gmail.com>

emacs-lisp/popup-el: new spell, Visual Popup Interface Library for Emacs

diff --git a/ChangeLog b/ChangeLog
index 7bf7c6ac..32705f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-12 Pol Vinogradov <vin.public AT gmail.com>
+ * emacs-lisp/popup-el: new spell, Visual Popup Interface
+ Library for Emacs
+
2015-01-11 Ismael Luceno <ismael AT sourcemage.org>
* chat-irc/ii: new spell, Minimalist filesystem-based IRC client
* utils/lsw: new spell, List windows titles
diff --git a/emacs-lisp/auto-complete/DEPENDS
b/emacs-lisp/auto-complete/DEPENDS
index 3e19255..143a547 100755
--- a/emacs-lisp/auto-complete/DEPENDS
+++ b/emacs-lisp/auto-complete/DEPENDS
@@ -1 +1,2 @@
-depends EMACS
+depends EMACS &&
+depends popup-el
diff --git a/emacs-lisp/auto-complete/HISTORY
b/emacs-lisp/auto-complete/HISTORY
index 452e560..b6df687 100644
--- a/emacs-lisp/auto-complete/HISTORY
+++ b/emacs-lisp/auto-complete/HISTORY
@@ -1,5 +1,6 @@
2015-01-12 Pol Vinogradov <vin.public AT gmail.com>
* DETAILS: version 1.4.0, switched to Github
+ * DEPENDS: added popup-el

2011-05-20 Peng Chang (Charles) <chp AT sourcemage.org>
* DEPENDS, DETAILS, INSTALL: spell created
diff --git a/emacs-lisp/popup-el/DEPENDS b/emacs-lisp/popup-el/DEPENDS
new file mode 100755
index 0000000..3e19255
--- /dev/null
+++ b/emacs-lisp/popup-el/DEPENDS
@@ -0,0 +1 @@
+depends EMACS
diff --git a/emacs-lisp/popup-el/DETAILS b/emacs-lisp/popup-el/DETAILS
new file mode 100755
index 0000000..919bcd7
--- /dev/null
+++ b/emacs-lisp/popup-el/DETAILS
@@ -0,0 +1,16 @@
+ SPELL=popup-el
+ VERSION=0.5.2
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+
SOURCE_URL[0]=https://github.com/auto-coomplete/${SPELL}/archive/v${VERSION}.tar.gz
+
SOURCE_HASH=sha512:495918684b2c178b31953cf83310aab6bf77d6865a5b6b874b788efeebf6284d9b440581957b22c75c65b7544d24a36cc8fdd75940fe3650857e61dfada3a29e
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="https://github.com/auto-complete/popup-el";
+ LICENSE[0]=GPL3
+ ENTERED=20150112
+ DOCS="README.md tests/* ${DOCS}"
+ SHORT="Visual Popup Interface Library for Emacs"
+cat << EOF
+popup.el is a visual popup user interface library for Emacs. This
+provides a basic API and common UI widgets such as popup tooltips
+and popup menus.
+EOF
diff --git a/emacs-lisp/popup-el/HISTORY b/emacs-lisp/popup-el/HISTORY
new file mode 100644
index 0000000..3c10003
--- /dev/null
+++ b/emacs-lisp/popup-el/HISTORY
@@ -0,0 +1,2 @@
+2015-01-12 Pol Vinogradov <vin.public AT gmail.com>
+ * DEPENDS, DETAILS, INSTALL: spell created
diff --git a/emacs-lisp/popup-el/INSTALL b/emacs-lisp/popup-el/INSTALL
new file mode 100755
index 0000000..bea09e5
--- /dev/null
+++ b/emacs-lisp/popup-el/INSTALL
@@ -0,0 +1,17 @@
+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"



  • [SM-Commit] GIT changes to master grimoire by Pol Vinogradov (de561b329d71596e3c695252e8aac7ee16878b5e), Pol Vinogradov, 01/12/2015

Archive powered by MHonArc 2.6.24.

Top of Page