Skip to Content.
Sympa Menu

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

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (bce12f887813831f0a9a7c35024d434ed3752366)
  • Date: Sat, 5 Nov 2016 22:09:45 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

emacs-lisp/auctex/BUILD | 16 ++++++++++++++++
emacs-lisp/auctex/DEPENDS | 2 +-
emacs-lisp/auctex/HISTORY | 3 +++
emacs-lisp/auctex/INSTALL | 1 +
emacs-lisp/auctex/PRE_BUILD | 3 +++
emacs-lisp/auctex/subfigure.el.patch | 14 ++++++++++++++
6 files changed, 38 insertions(+), 1 deletion(-)

New commits:
commit bce12f887813831f0a9a7c35024d434ed3752366
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

emacs-lisp/auctex: converted to ./configure && make... build system +
some codestyling

diff --git a/emacs-lisp/auctex/BUILD b/emacs-lisp/auctex/BUILD
new file mode 100755
index 0000000..c3cc3fb
--- /dev/null
+++ b/emacs-lisp/auctex/BUILD
@@ -0,0 +1,16 @@
+OPTS="$OPTS --build=${BUILD}" &&
+[[ $CROSS_INSTALL == on ]] && OPTS="$OPTS --host=${HOST}"
+./configure --prefix="${INSTALL_ROOT}/usr" \
+ --sysconfdir="${INSTALL_ROOT}/etc" \
+ --localstatedir="${INSTALL_ROOT}/var" \
+ --mandir="${INSTALL_ROOT}/usr/share/man" \
+ --infodir="${INSTALL_ROOT}/usr/share/info" \
+ --with-auto-dir="${INSTALL_ROOT}/var/lib/auctex" \
+ --disable-build-dir-test \
+ $OPTS \
+make &&
+make tex-site.el &&
+cp tex.el style/tex.el &&
+cp tex-site.el style/tex-site.el &&
+emacs -Q -batch -l lpath.el -f batch-byte-compile \
+ tex-jp.el prv-emacs.el preview.el
diff --git a/emacs-lisp/auctex/DEPENDS b/emacs-lisp/auctex/DEPENDS
index f5eb87b..92cd00d 100755
--- a/emacs-lisp/auctex/DEPENDS
+++ b/emacs-lisp/auctex/DEPENDS
@@ -1,3 +1,3 @@
depends EMACS &&
depends texlive &&
-depends texlive-texmf --with-texmf-dir=/usr/share/texmf
+depends texlive-texmf "--with-texmf-dir=${INSTALL_ROOT}/usr/share/texmf"
diff --git a/emacs-lisp/auctex/HISTORY b/emacs-lisp/auctex/HISTORY
index 52c520f..700f895 100644
--- a/emacs-lisp/auctex/HISTORY
+++ b/emacs-lisp/auctex/HISTORY
@@ -1,5 +1,8 @@
2016-11-05 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: updated spell to 11.89
+ * BUILD, INSTALL, PRE_BUILD, subfigure.el.patch: added for
+ building with regular ./configure && make...
+ * DEPENDS: quoting++

2014-06-24 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 11.87
diff --git a/emacs-lisp/auctex/INSTALL b/emacs-lisp/auctex/INSTALL
new file mode 100755
index 0000000..e6fe4f7
--- /dev/null
+++ b/emacs-lisp/auctex/INSTALL
@@ -0,0 +1 @@
+make install
diff --git a/emacs-lisp/auctex/PRE_BUILD b/emacs-lisp/auctex/PRE_BUILD
new file mode 100755
index 0000000..badf8e9
--- /dev/null
+++ b/emacs-lisp/auctex/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd ${SOURCE_DIRECTORY} &&
+patch -p1 < ${SPELL_DIRECTORY}/subfigure.el.patch
diff --git a/emacs-lisp/auctex/subfigure.el.patch
b/emacs-lisp/auctex/subfigure.el.patch
new file mode 100644
index 0000000..f029c61
--- /dev/null
+++ b/emacs-lisp/auctex/subfigure.el.patch
@@ -0,0 +1,14 @@
+--- a/style/subfigure.el
++++ b/style/subfigure.el
+@@ -47,8 +47,9 @@
+ ;; Install completion for labels:
+ (setq TeX-complete-list
+ (append
+- '(("\\\\[Ss]ubref{\\([^{}\n\r\\%,]*\\)" 1 LaTeX-label-list "}")))
+- TeX-complete-list)
++ '(("\\\\subref{\\([^{}\n\r\\%,]*\\)" 1 LaTeX-label-list "}")
++ ("\\\\Subref{\\([^{}\n\r\\%,]*\\)" 1 LaTeX-label-list "}"))
++ TeX-complete-list))
+
+ ;; Fontification
+ (when (and (featurep 'font-latex)



  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (bce12f887813831f0a9a7c35024d434ed3752366), Pavel Vinogradov, 11/05/2016

Archive powered by MHonArc 2.6.24.

Top of Page