forked from pool/emacs-auctex
This commit is contained in:
parent
c1adf41add
commit
c9254d36eb
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b15c293987a1fc300339265b989254e746514e9450232851ab57fc5da583012d
|
||||
size 680216
|
@ -1,6 +1,6 @@
|
||||
--- latex.el
|
||||
+++ latex.el 2006-06-29 18:40:59.000000000 +0200
|
||||
@@ -1552,6 +1552,7 @@ ELSE as an argument list."
|
||||
@@ -1557,6 +1557,7 @@ ELSE as an argument list."
|
||||
",")))))
|
||||
(if (zerop (length style))
|
||||
(setq style LaTeX-default-style))
|
3
auctex-11.85.tar.bz2
Normal file
3
auctex-11.85.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7377600bc0f937858b17d73fbae16d46dc74331d8716c5af630c0f79cfe53bc7
|
||||
size 841343
|
@ -1,3 +1,26 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 10 17:46:37 CET 2008 - werner@suse.de
|
||||
|
||||
- Make it work with texlive and texlive-latex
|
||||
- Update to auctec 11.85
|
||||
+ News in 11.85
|
||||
* Font locking has been improved significantly.
|
||||
* The license was updated to GPLv3.
|
||||
* Support for the nomencl, flashcards and comment LaTeX packages
|
||||
as well as the Icelandic language option of babel were added.
|
||||
* Support for folding of math macros was added.
|
||||
* Lots of minor bugs in features and documentation fixed.
|
||||
+ News in 11.84
|
||||
* AUCTeX has been changed in order to accommodate file names
|
||||
containing spaces.
|
||||
* Support for folding of comments was added.
|
||||
* The TeX tool bar is now available and enabled by default in
|
||||
plain TeX mode.
|
||||
* Bug fix in the display of math subscripts and superscripts.
|
||||
* Bug fix `TeX-doc' for Emacs 21.
|
||||
* There has been quite a number of other bug fixes to various
|
||||
features and documentation across the board.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 29 11:47:53 CEST 2007 - aj@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package emacs-auctex (Version 11.83)
|
||||
# spec file for package emacs-auctex (Version 11.85)
|
||||
#
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
@ -10,16 +10,17 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
|
||||
Name: emacs-auctex
|
||||
BuildRequires: emacs-x11 ghostscript_any giflib-devel libpng-devel libtiff-devel texlive texlive-latex xorg-x11 xorg-x11-devel
|
||||
License: GNU General Public License (GPL)
|
||||
License: GPL v2 or later
|
||||
Group: Productivity/Editors/Emacs
|
||||
Obsoletes: ge_auc
|
||||
Provides: auc-tex auctex ge_auc
|
||||
Requires: emacs lacheck texlive-latex
|
||||
Autoreqprov: on
|
||||
Version: 11.83
|
||||
Release: 49
|
||||
AutoReqProv: on
|
||||
Version: 11.85
|
||||
Release: 1
|
||||
Summary: AUC TeX: An Emacs Extension
|
||||
Source: ftp://ftp.gnu.org/pub/gnu/auctex/auctex-%{version}.tar.bz2
|
||||
Url: http://www.gnu.org/software/auctex
|
||||
@ -50,34 +51,43 @@ Authors:
|
||||
|
||||
%define _sitedir %{_datadir}/emacs/site-lisp
|
||||
%define _aucdir %{_sitedir}/auctex
|
||||
|
||||
%prep
|
||||
%setup -n auctex-%{version}
|
||||
%patch
|
||||
|
||||
%build
|
||||
export LC_CTYPE=ISO-8859-1
|
||||
./configure --prefix=/usr \
|
||||
--exec-prefix=/usr \
|
||||
--infodir=%{_infodir} \
|
||||
--mandir=%{_mandir} \
|
||||
--with-emacs \
|
||||
--with-lispdir=%{_sitedir} \
|
||||
--with-auto-dir=%{_aucdir}/auto \
|
||||
--with-texmf-dir=%{_datadir}/texmf \
|
||||
--with-doc-dir=%{_datadir}/texmf/doc/latex/preview \
|
||||
--with-tex-dir=%{_datadir}/texmf/tex/latex/preview
|
||||
unset ${!LC_*}
|
||||
LANG=en_US.UTF-8
|
||||
export LANG
|
||||
rm -rf /tmp/auctex
|
||||
mkdir /tmp/auctex
|
||||
mkdir -p /tmp/auctex/doc/preview
|
||||
mkdir -p /tmp/auctex/latex/preview
|
||||
./configure --prefix=%{_prefix} \
|
||||
--exec-prefix=%{_prefix} \
|
||||
--infodir=%{_infodir} \
|
||||
--mandir=%{_mandir} \
|
||||
--docdir=%{_defaultdocdir}/%name \
|
||||
--with-emacs \
|
||||
--with-lispdir=%{_sitedir} \
|
||||
--with-auto-dir=%{_aucdir}/auto \
|
||||
--with-texmf-dir=%{_datadir}/texmf \
|
||||
--with-doc-dir=/tmp/auctex/doc/preview \
|
||||
--with-tex-dir=/tmp/auctex/latex/preview
|
||||
rm -rf `find . -name '*.elc'`
|
||||
make
|
||||
make -C doc clean
|
||||
make -C doc
|
||||
make -C doc extradist
|
||||
rm -rf /tmp/auctex
|
||||
|
||||
%install
|
||||
export LC_CTYPE=ISO-8859-1
|
||||
make install DESTDIR=%{buildroot}
|
||||
rm -rf %{buildroot}%{_aucdir}/auto
|
||||
pushd %{buildroot}%{_aucdir}/
|
||||
emacs --no-site -batch -L ${RPM_BUILD_ROOT}%{_sitedir}/auctex \
|
||||
emacs --no-site -batch -L %{buildroot}%{_sitedir}/auctex \
|
||||
--eval '(setq TeX-lisp-directory "%{buildroot}%{_aucdir}")' \
|
||||
--eval '(setq TeX-auto-global "%{buildroot}%{_aucdir}/auto")' \
|
||||
-l %{buildroot}%{_sitedir}/tex-site.el -f TeX-auto-generate-global
|
||||
@ -100,11 +110,10 @@ Authors:
|
||||
;;
|
||||
(load "preview-latex.el" nil t t)
|
||||
EOF
|
||||
#
|
||||
# Preview is part of te_latex
|
||||
#
|
||||
rm -rf %{buildroot}%{_datadir}/texmf
|
||||
|
||||
#
|
||||
# Preview is part of te_latex
|
||||
#
|
||||
rm -rf %{buildroot}/tmp/auctex
|
||||
%define info_files auctex.info preview-latex.info
|
||||
|
||||
%post
|
||||
@ -142,72 +151,92 @@ done
|
||||
%config %{_sitedir}/tex-site.el
|
||||
|
||||
%changelog
|
||||
* Sun Apr 29 2007 - aj@suse.de
|
||||
* Mon Mar 10 2008 werner@suse.de
|
||||
- Make it work with texlive and texlive-latex
|
||||
- Update to auctec 11.85
|
||||
+ News in 11.85
|
||||
* Font locking has been improved significantly.
|
||||
* The license was updated to GPLv3.
|
||||
* Support for the nomencl, flashcards and comment LaTeX packages
|
||||
as well as the Icelandic language option of babel were added.
|
||||
* Support for folding of math macros was added.
|
||||
* Lots of minor bugs in features and documentation fixed.
|
||||
+ News in 11.84
|
||||
* AUCTeX has been changed in order to accommodate file names
|
||||
containing spaces.
|
||||
* Support for folding of comments was added.
|
||||
* The TeX tool bar is now available and enabled by default in
|
||||
plain TeX mode.
|
||||
* Bug fix in the display of math subscripts and superscripts.
|
||||
* Bug fix `TeX-doc' for Emacs 21.
|
||||
* There has been quite a number of other bug fixes to various
|
||||
features and documentation across the board.
|
||||
* Sun Apr 29 2007 aj@suse.de
|
||||
- Fix Requires for texlive.
|
||||
* Fri Apr 27 2007 - werner@suse.de
|
||||
* Fri Apr 27 2007 werner@suse.de
|
||||
- Make it build with texlive
|
||||
* Fri Mar 02 2007 - werner@suse.de
|
||||
* Fri Mar 02 2007 werner@suse.de
|
||||
- No binary anymore is no architecture
|
||||
* Thu Jun 29 2006 - werner@suse.de
|
||||
* Thu Jun 29 2006 werner@suse.de
|
||||
- Update to 11.83
|
||||
* Wed Jan 25 2006 - mls@suse.de
|
||||
* Wed Jan 25 2006 mls@suse.de
|
||||
- converted neededforbuild to BuildRequires
|
||||
* Thu Sep 22 2005 - werner@suse.de
|
||||
* Thu Sep 22 2005 werner@suse.de
|
||||
- Update to 11.55
|
||||
- Use newer dinbrief.el
|
||||
- Build as non root user
|
||||
* Tue Sep 21 2004 - werner@suse.de
|
||||
* Tue Sep 21 2004 werner@suse.de
|
||||
- encl, cc ... should be included within letter environment
|
||||
* Fri Jan 09 2004 - werner@suse.de
|
||||
* Fri Jan 09 2004 werner@suse.de
|
||||
- Update to 11.14
|
||||
* Tue Jul 02 2002 - werner@suse.de
|
||||
* Tue Jul 02 2002 werner@suse.de
|
||||
- Update to auc-tex 11.11 (bug #16605)
|
||||
* Fri Feb 22 2002 - werner@suse.de
|
||||
* Fri Feb 22 2002 werner@suse.de
|
||||
- Make conditionals in font-lock work with emacs 21.1
|
||||
* Sat Feb 09 2002 - ro@suse.de
|
||||
* Sun Feb 10 2002 ro@suse.de
|
||||
- removed te_fr from neededforbuild
|
||||
* Fri Feb 01 2002 - ro@suse.de
|
||||
* Fri Feb 01 2002 ro@suse.de
|
||||
- changed neededforbuild <libpng> to <libpng-devel-packages>
|
||||
* Thu Nov 08 2001 - werner@suse.de
|
||||
* Thu Nov 08 2001 werner@suse.de
|
||||
- Add all libs reqired by emacs to neededforbuild
|
||||
* Fri Mar 16 2001 - werner@suse.de
|
||||
* Fri Mar 16 2001 werner@suse.de
|
||||
- Mark tex-site.el as config file
|
||||
* Tue Mar 13 2001 - ro@suse.de
|
||||
* Tue Mar 13 2001 ro@suse.de
|
||||
- added emacs-x11 to neededforbuild
|
||||
* Wed Mar 07 2001 - werner@suse.de
|
||||
* Wed Mar 07 2001 werner@suse.de
|
||||
- Rename package to emacs-auctex
|
||||
* Fri Nov 17 2000 - ro@suse.de
|
||||
* Fri Nov 17 2000 ro@suse.de
|
||||
- ge_exec -> emacs
|
||||
* Tue Jun 06 2000 - ro@suse.de
|
||||
* Tue Jun 06 2000 ro@suse.de
|
||||
- doc relocation
|
||||
* Fri Feb 25 2000 - werner@suse.de
|
||||
* Fri Feb 25 2000 werner@suse.de
|
||||
- Change dvips print command to be able to avoid config.lp
|
||||
within teTeX package
|
||||
* Thu Feb 24 2000 - werner@suse.de
|
||||
* Thu Feb 24 2000 werner@suse.de
|
||||
- Make it work for all teTeX versions
|
||||
- /usr/info -> /usr/share/info
|
||||
* Mon Sep 13 1999 - bs@suse.de
|
||||
* Mon Sep 13 1999 bs@suse.de
|
||||
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
||||
* Sat Aug 14 1999 - werner@suse.de
|
||||
* Sat Aug 14 1999 werner@suse.de
|
||||
- Make dinbrief.sty comaptible to xemacs
|
||||
* Thu Jul 08 1999 - werner@suse.de
|
||||
* Thu Jul 08 1999 werner@suse.de
|
||||
- New version 9.9p
|
||||
- A few changes to my dinbrief.sty
|
||||
* Thu Apr 15 1999 - werner@suse.de
|
||||
* Thu Apr 15 1999 werner@suse.de
|
||||
- added export LC_CTYPE=ISO-8859-1 to install section
|
||||
* Wed Nov 18 1998 - werner@suse.de
|
||||
* Wed Nov 18 1998 werner@suse.de
|
||||
- Change file list because of the new tetex version
|
||||
* Mon Jul 27 1998 - bs@suse.de
|
||||
* Mon Jul 27 1998 bs@suse.de
|
||||
- added export LC_CTYPE=ISO-8859-1 to build section - emacs needs it.
|
||||
* Fri Jul 10 1998 - bs@suse.de
|
||||
* Fri Jul 10 1998 bs@suse.de
|
||||
- added xaw3d to neededforbuild (ge_exec needs it)
|
||||
* Mon Jun 02 1997 - werner@suse.de
|
||||
* Mon Jun 02 1997 werner@suse.de
|
||||
- removed /usr/info/latex*.gz ... because it's included in tetex
|
||||
* Wed May 28 1997 - werner@suse.de
|
||||
* Wed May 28 1997 werner@suse.de
|
||||
- New version 9.7p
|
||||
- Skip X-emacs: xemacs-19.15 has an integrated
|
||||
auctex version 9.7l
|
||||
- Added ltx-help.el, latex(2e).info due
|
||||
the auctex-9.7p does not has it anymore
|
||||
* Thu Jan 02 1997 - werner@suse.de
|
||||
* Thu Jan 02 1997 werner@suse.de
|
||||
- auctex: Version 9.5a für GNU-emacs und X-emacs
|
||||
|
Loading…
Reference in New Issue
Block a user