Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (607c7b4049f4c9ac67ac78f12a3e777462d16a38)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (607c7b4049f4c9ac67ac78f12a3e777462d16a38)
  • Date: Fri, 26 Dec 2014 16:43:57 -0600

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

ChangeLog | 6 ++++++
emacs-lisp/FUNCTIONS | 8 ++++++--
2 files changed, 12 insertions(+), 2 deletions(-)

New commits:
commit 607c7b4049f4c9ac67ac78f12a3e777462d16a38
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

Update ChangeLog regrading emacs-lisp/FUNCTIONS

commit 313bd47ba16507f7b2bd188925bac5a3d4549b4c
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

emacs-lisp/FUNCTIONS: Fix production of info files

Failed when the file uses @setfilename.

diff --git a/ChangeLog b/ChangeLog
index beec242..fd32476 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-12-26 Ismael Luceno <ismael AT sourcemage.org>
+ * emacs-lisp/FUNCTIONS: Replaced loops
+ * emacs-lisp/FUNCTIONS: Update site-lisp's loaddefs.el
+ * emacs-lisp/FUNCTIONS: Install gzipped emacs-lisp files
+ * emacs-lisp/FUNCTIONS: Fixed production of info files
+
2014-12-25 Ismael Luceno <ismael AT sourcemage.org>
* emacs-lisp/haskell-mode: new spell, Emacs mode for Haskell

diff --git a/emacs-lisp/FUNCTIONS b/emacs-lisp/FUNCTIONS
index 66513d1..6d51acc 100755
--- a/emacs-lisp/FUNCTIONS
+++ b/emacs-lisp/FUNCTIONS
@@ -15,8 +15,12 @@ function default_build_emacs_lisp() {
find "$@" -maxdepth 1 -name \*.el \
-execdir emacs -Q -L . --batch -f batch-byte-compile {} + \
-execdir gzip -9 {} + \
- -o -name \*.texi -execdir makeinfo {} \; -print0 |
- sed -z 's@texi$@info@' | xargs -r0 gzip -9
+ -o -name \*.texi -print |
+ while read file; do
+ local t=$(mktemp -p "$SOURCE_DIRECTORY")
+ makeinfo -o - "$file" | gzip -9 > "$t" &&
+ mv "$t" "${file%.texi}.info.gz"
+ done
}

#-------------------------------------------------------------------------



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (607c7b4049f4c9ac67ac78f12a3e777462d16a38), Ismael Luceno, 12/26/2014

Archive powered by MHonArc 2.6.24.

Top of Page