Blame SPECS/emacs-auctex.spec

3fb065
# AucTeX includes preview-latex which allows previeweing directly in the Emacs
3fb065
# buffer. This makes use of preview.sty, a LaTeX class, which is also included
3fb065
# with AucTex. preview-latex can either use a privately installed copy of
3fb065
# preview.sty, or it can use one installed in the system texmf tree. If the
3fb065
# following is set to 1, an add-on LaTeX package will be created which installs
3fb065
# into the system texmf tree, and preview-latex will use that. However, TeXLive
3fb065
# already includes preview.sty and so this may not be desireable -- setting the
3fb065
# following value to 0 means that preview-latex/AucTeX will use a privately
3fb065
# installed copy of preview.sty.
3fb065
%global separate_preview 1
3fb065
3fb065
Summary:        Enhanced TeX modes for Emacs
3fb065
Name:           emacs-auctex
3fb065
Version:        12.3
3fb065
Release:        2%{?dist}
3fb065
License:        GPLv3+ and GFDL
3fb065
URL:            http://www.gnu.org/software/auctex/
3fb065
Requires:       emacs(bin) >= %{_emacs_version}
3fb065
Requires:       ghostscript dvipng
3fb065
Requires:       tex(latex) tex(dvips)
3fb065
Obsoletes:      emacs-auctex-el <= 11.86-9
3fb065
Provides:       emacs-auctex-el = %{version}-%{release}
3fb065
%if %{separate_preview}
3fb065
Requires:       tex-preview = %{version}-%{release}
3fb065
%endif
3fb065
3fb065
Source0:        http://ftp.gnu.org/pub/gnu/auctex/auctex-%{version}.tar.gz
3fb065
3fb065
BuildArch:      noarch
3fb065
BuildRequires:  emacs tex(latex) texinfo-tex ghostscript
3fb065
3fb065
%description
3fb065
AUCTeX is an extensible package that supports writing and formatting
3fb065
TeX files for most variants of Emacs.
3fb065
3fb065
AUCTeX supports many different TeX macro packages, including AMS-TeX,
3fb065
LaTeX, Texinfo and basic support for ConTeXt.  Documentation can be
3fb065
found under /usr/share/doc, e.g. the reference card (tex-ref.pdf) and
3fb065
the FAQ. The AUCTeX manual is available in Emacs info (C-h i d m
3fb065
AUCTeX RET). On the AUCTeX home page, we provide manuals in various
3fb065
formats.
3fb065
3fb065
AUCTeX includes preview-latex support which makes LaTeX a tightly
3fb065
integrated component of your editing workflow by visualizing selected
3fb065
source chunks (such as single formulas or graphics) directly as images
3fb065
in the source buffer.
3fb065
3fb065
This package is for GNU Emacs.
3fb065
3fb065
%package doc
3fb065
Summary:        Documentation in various formats for AUCTeX
3fb065
License:        GFDL
3fb065
3fb065
%description doc
3fb065
Documentation for the AUCTeX package for emacs in various formats,
3fb065
including HTML and PDF.
3fb065
3fb065
%if %{separate_preview}
3fb065
%package -n tex-preview
3fb065
Summary:        Preview style files for LaTeX
3fb065
Requires:       tex(latex)
3fb065
Provides:       tex(preview.sty)
3fb065
# This is the latest build we accidentally provided from texlive
3fb065
Obsoletes:      texlive-preview <= 7:svn44883
3fb065
Provides:       texlive-preview
3fb065
3fb065
%description -n tex-preview
3fb065
The preview package for LaTeX allows for the processing of selected
3fb065
parts of a LaTeX input file.  This package extracts indicated pieces
3fb065
from a source file (typically displayed equations, figures and
3fb065
graphics) and typesets with their base point at the (1in,1in) magic
3fb065
location, shipping out the individual pieces on separate pages without
3fb065
any page markup.  You can produce either DVI or PDF files, and options
3fb065
exist that will set the page size separately for each page.  In that
3fb065
manner, further processing (as with Ghostscript or dvipng) will be
3fb065
able to work in a single pass.
3fb065
3fb065
The main purpose of this package is the extraction of certain
3fb065
environments (most notably displayed formulas) from LaTeX sources as
3fb065
graphics. This works with DVI files postprocessed by either Dvips and
3fb065
Ghostscript or dvipng, but it also works when you are using PDFTeX for
3fb065
generating PDF files (usually also postprocessed by Ghostscript).
3fb065
3fb065
The tex-preview package is generated from the AUCTeX package for
3fb065
Emacs.
3fb065
%endif
3fb065
3fb065
%prep
3fb065
%setup -q -n auctex-%{version}
3fb065
3fb065
%build
3fb065
%if %{separate_preview}
3fb065
%configure --with-emacs \
3fb065
           --with-texmf-dir=%{_datadir}/texlive/texmf-dist \
3fb065
%else
3fb065
%configure --with-emacs \
3fb065
           --without-texmf-dir
3fb065
%endif
3fb065
3fb065
make
3fb065
3fb065
# Build documentation in various formats
3fb065
pushd doc
3fb065
make extradist
3fb065
popd
3fb065
3fb065
# Fix some encodings
3fb065
iconv -f ISO-8859-1 -t UTF8 RELEASE > RELEASE.utf8 && touch -r RELEASE RELEASE.utf8 && mv RELEASE.utf8 RELEASE
3fb065
3fb065
%install
3fb065
mkdir -p %{buildroot}%{_emacs_sitestartdir}
3fb065
make DESTDIR=%{buildroot} install
3fb065
rm -rf %{buildroot}%{_var}
3fb065
3fb065
# Remove /usr/share/doc/auctex directory from buildroot since we don't want doc
3fb065
# files installed here
3fb065
rm -rf %{buildroot}%{_docdir}/auctex
3fb065
3fb065
# Create these ,nosearch files to keep the directories from the elisp search path
3fb065
touch %{buildroot}%{_emacs_sitelispdir}/auctex/.nosearch
3fb065
touch %{buildroot}%{_emacs_sitelispdir}/auctex/style/.nosearch
3fb065
3fb065
%if %{separate_preview}
3fb065
%post -n tex-preview
3fb065
/usr/bin/texhash > /dev/null 2>&1 || :
3fb065
3fb065
%postun -n tex-preview
3fb065
/usr/bin/texhash > /dev/null 2>&1 || :
3fb065
%endif
3fb065
3fb065
%files
3fb065
%doc RELEASE COPYING README TODO FAQ CHANGES
3fb065
%doc %{_infodir}/*.info*
3fb065
%exclude %{_infodir}/dir
3fb065
%{_emacs_sitestartdir}/*
3fb065
%dir %{_emacs_sitelispdir}/auctex
3fb065
%dir %{_emacs_sitelispdir}/auctex/style
3fb065
%{_emacs_sitelispdir}/auctex/*.el
3fb065
%{_emacs_sitelispdir}/auctex/*.elc
3fb065
%{_emacs_sitelispdir}/auctex/style/*.el
3fb065
%{_emacs_sitelispdir}/auctex/style/*.elc
3fb065
%{_emacs_sitelispdir}/auctex/.nosearch
3fb065
%{_emacs_sitelispdir}/auctex/style/.nosearch
3fb065
%{_emacs_sitelispdir}/auctex/images
3fb065
%{_emacs_sitelispdir}/tex-site.el
3fb065
%if !%{separate_preview}
3fb065
%{_emacs_sitelispdir}/auctex/latex
3fb065
%{_emacs_sitelispdir}/auctex/doc
3fb065
%endif
3fb065
3fb065
%if %{separate_preview}
3fb065
%files -n tex-preview
3fb065
%doc COPYING
3fb065
%{_datadir}/texlive/texmf-dist/tex/latex/preview
3fb065
%{_datadir}/texlive/texmf-dist/doc/latex/styles
3fb065
%endif
3fb065
3fb065
%files doc
3fb065
%doc doc/*.{dvi,ps,pdf}
3fb065
%doc doc/html
3fb065
3fb065
%changelog
3fb065
* Fri Aug 6 2021 Jacek Migacz <jmigacz@redhat.com> - 12.3-1
3fb065
- Fix build failure on CentOS Stream. Related: rhbz#1951306
3fb065
- Revert patch for FSF addresses (it became obsolete with 12.2)
3fb065
- Remove Obsoletes and Provides tetex-preview
3fb065
3fb065
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 12.1-10
3fb065
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
3fb065
3fb065
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-9
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
3fb065
3fb065
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-8
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
3fb065
3fb065
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-7
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
3fb065
3fb065
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-6
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
3fb065
3fb065
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-5
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
3fb065
3fb065
* Thu May 24 2018 Tom Callaway <spot@fedoraproject.org> - 12.1-4
3fb065
- Provide/Obsolete texlive-preview in tex-preview subpackage
3fb065
3fb065
* Sun Feb 25 2018 Jonathan Underwood <jonathan.underwood@gmail.com> - 12.1-3
3fb065
- Add patch to fix FSF address in some files
3fb065
3fb065
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-2
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3fb065
3fb065
* Mon Jan 29 2018 Than Ngo <than@redhat.com> - 12.1-1
3fb065
- update to 12.1
3fb065
3fb065
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 11.89-5
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
3fb065
3fb065
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 11.89-4
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
3fb065
3fb065
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 11.89-3
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
3fb065
3fb065
* Mon Dec 28 2015 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.89-2
3fb065
- Add Provides tex(preview.sty) to preview sub-package
3fb065
3fb065
* Sat Nov 14 2015 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.89-1
3fb065
- Update to 11.89
3fb065
- Use http for Source location
3fb065
- Create the .nosearch files with touch, as Makefile no longer does
3fb065
3fb065
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.88-2
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
3fb065
3fb065
* Wed Feb 18 2015 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.88-1
3fb065
- Update to 11.88
3fb065
3fb065
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.87-9
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3fb065
3fb065
* Fri Feb 28 2014 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.87-8
3fb065
- Add patch to fix BZ 995245
3fb065
3fb065
* Wed Feb 12 2014 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.87-7
3fb065
- Really Fix up installation location of doc files
3fb065
3fb065
* Thu Feb  6 2014 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.87-6
3fb065
- Fix up installation location of doc files
3fb065
3fb065
* Thu Feb  6 2014 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.87-5
3fb065
- Move preview files to be installed under %%{_datadir}/texlive/texmf-dist (BZ 995544)
3fb065
3fb065
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.87-4
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
3fb065
3fb065
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.87-3
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
3fb065
3fb065
* Tue Dec  4 2012 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.87-2
3fb065
- Fix the install location of the preview tex files
3fb065
- Fix the BuildRequires for latex
3fb065
3fb065
* Mon Dec  3 2012 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.87-1
3fb065
- Update to new upstream version 11.87
3fb065
3fb065
* Wed Oct  3 2012 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.86-10
3fb065
- Fix the Obsoletes and Provides to allow package updating (BZ 862398)
3fb065
3fb065
* Wed Sep 19 2012 Karel Klíč <kklic@redhat.com> - 11.86-9
3fb065
- ELisp source code is no longer distributed in a separate package
3fb065
- License filed includes GFDL for the documentation
3fb065
3fb065
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.86-8
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3fb065
3fb065
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.86-7
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
3fb065
3fb065
* Tue Mar  8 2011 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.86-6
3fb065
- Replace define with global in macro definitions
3fb065
- Add patch to fix previewing of equations courtesy of Sato Ichi (BZ 646632)
3fb065
- Add defattr to doc sub-package
3fb065
3fb065
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.86-5
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3fb065
3fb065
* Fri Jul 16 2010 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.86-4
3fb065
- Duplicate only the COPYING file and not the other docs in the tex-preview
3fb065
  subpackage
3fb065
3fb065
* Fri Jul 16 2010 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.86-3
3fb065
- Add COPYING file and other docs to the tex-preview subpackage to comply with
3fb065
  updated licensing guidelines
3fb065
- Remove the no longer needed BuildRoot, %%clean and cleaning of Buildroot
3fb065
  inside %%install
3fb065
3fb065
* Sun May 23 2010 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.86-2
3fb065
- Drop Requires for evince (rhbz 595104)
3fb065
3fb065
* Sat Mar  6 2010 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.86-1
3fb065
- Update to 11.86
3fb065
- Drop unneeded patch for PDF and HTML viewing
3fb065
3fb065
* Thu Jan 28 2010 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-11
3fb065
- Add patch to use evince for PDF file viewing and xdg-open for html file
3fb065
  viewing
3fb065
- Add Requires for evince
3fb065
3fb065
* Sat Nov  7 2009 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-10
3fb065
- Update spec file to use macros defined in /etc/rpm/macros.emacs
3fb065
- Fix typo in spec comments
3fb065
3fb065
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.85-9
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3fb065
3fb065
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 11.85-8
3fb065
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
3fb065
3fb065
* Sun Feb 24 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-7
3fb065
- Add Requires for dvipng
3fb065
3fb065
* Sat Feb 16 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-6
3fb065
- Preserve timestamp of RELEASE when converting to UTF8
3fb065
3fb065
* Wed Feb 13 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-5
3fb065
- Re-add creation of emacs_startdir
3fb065
3fb065
* Tue Feb 12 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-4
3fb065
- Remove BuildRequires for pkgconfig - not needed
3fb065
- Clean out uneeded creation of site start directory
3fb065
- Remove /usr/share/doc/auctex directory from buildroot
3fb065
3fb065
* Tue Feb 12 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-3
3fb065
- Bump release and rebuild - had forgotten to upload the new sources
3fb065
3fb065
* Tue Feb 12 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-2
3fb065
- Add BuilddRequires for pkgconfig
3fb065
3fb065
* Tue Feb 12 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.85-1
3fb065
- Update to version 11.85
3fb065
- Change license to GPLv3+ accordingly
3fb065
3fb065
* Wed Jan 23 2008 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-7
3fb065
- tex-preview no longer Requires ghostscript (#429811)
3fb065
- Use virtual provides for tex(latex) etc.
3fb065
3fb065
* Tue Dec 25 2007 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-6
3fb065
- Add Obsolotes and Provides for tetex-preview to tex-preview (#426758)
3fb065
3fb065
* Sun Dec 23 2007 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-5
3fb065
- Enable building of separate tex-preview package
3fb065
- Remove a few residual tetex references
3fb065
3fb065
* Sun Dec 16 2007 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-4
3fb065
- Add macros for automatic detection of Emacs version, site-lisp directory etc
3fb065
- Make building of tex-preview subpackage optional, and disable for now
3fb065
- Adjust Requires and BuildRequires for texlive
3fb065
- Remove auctex-init.el since not needed
3fb065
- Make RELEASE utf8
3fb065
3fb065
* Sat Aug  4 2007 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-3
3fb065
- Clarify license version
3fb065
- Correct version and release requirement for the el package
3fb065
3fb065
* Sat Jan 13 2007 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-2
3fb065
- Update BuildRequires for texinfo-tex package
3fb065
3fb065
* Sat Jan 13 2007 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.84-1
3fb065
- Update to version 11.84
3fb065
- Build all documentation and package in a -doc package
3fb065
3fb065
* Mon Aug 28 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-7
3fb065
- Bump release for FC-6 mass rebuild
3fb065
3fb065
* Sun Jun 18 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-6
3fb065
- Remove debug patch entry
3fb065
3fb065
* Sun Jun 18 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-5
3fb065
- Bump release
3fb065
3fb065
* Sun Jun 18 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-4
3fb065
- Bump release
3fb065
3fb065
* Sun Jun 18 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-3
3fb065
- Sync with FC-5 spec file which includes the following changes
3fb065
- No longer use makeinstall macro
3fb065
- No longer specify texmf-dir, tex-dir for configure
3fb065
- Main package now owns the site-lisp auctex and styles directories
3fb065
- Place preview.dvi in correct directory, and have tetex-preview own
3fb065
  it
3fb065
- General cleanups
3fb065
3fb065
* Sat Jun 10 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-4
3fb065
- Bump release
3fb065
3fb065
* Sat Jun 10 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-3
3fb065
- Bump release. Wrap descriptions at column 70.
3fb065
3fb065
* Sat Jun 10 2006 Jonathan G. Underwood <jonathan.underwood@gmail.com> - 11.83-1
3fb065
- Update to 11.83
3fb065
- Add specific release requirement to tetex-preview Requires of main package
3fb065
3fb065
* Wed May 24 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-12
3fb065
- Bump version number.
3fb065
3fb065
* Wed May 24 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-11
3fb065
- Fix up whitespace for Ed. Bump version number.
3fb065
3fb065
* Thu May 18 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-9
3fb065
- Split out tetex-preview subpackage
3fb065
- Split out source elisp files
3fb065
- Update package descriptions
3fb065
3fb065
* Mon May  1 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-8
3fb065
- Add tetex-latex to BuildRequires
3fb065
3fb065
* Mon May  1 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-7
3fb065
- Add ghostscript to Requires and BuildRequires
3fb065
3fb065
* Mon May  1 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-6
3fb065
- Leave .nosearch file in styles directory - this directory shouldn't be in the load-path
3fb065
3fb065
* Mon May  1 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-5
3fb065
- Move installation of the preview style files out of the texmf tree for now
3fb065
3fb065
* Mon Apr 24 2006 Jonathan Underwood <jonathan.underwood@gmail.com> - 11.82-4
3fb065
- Added preview-latex
3fb065
- Removed INSTALL document from package (not necessary)
3fb065
- Clean up generation of startup files from spec file
3fb065
3fb065
* Thu Apr 20 2006 Ed Hill <ed@eh3.com> - 11.82-3
3fb065
- fix startup file per bug# 189488
3fb065
3fb065
* Sun Apr  9 2006 Ed Hill <ed@eh3.com> - 11.82-2
3fb065
- rebuild
3fb065
3fb065
* Sun Apr  9 2006 Ed Hill <ed@eh3.com> - 11.82-1
3fb065
- update to 11.82
3fb065
3fb065
* Fri Sep 30 2005 Ed Hill <ed@eh3.com> - 11.81-2
3fb065
- fix stupid tagging mistake
3fb065
3fb065
* Fri Sep 30 2005 Ed Hill <ed@eh3.com> - 11.81-1
3fb065
- update to 11.81
3fb065
- disable preview for now since it needs some packaging work
3fb065
3fb065
* Tue Sep  6 2005 Ed Hill <ed@eh3.com> - 11.55-5
3fb065
- bugzilla 167439
3fb065
3fb065
* Tue Aug  9 2005 Ed Hill <ed@eh3.com> - 11.55-4
3fb065
- call it BuildArch
3fb065
3fb065
* Tue Aug  9 2005 Ed Hill <ed@eh3.com> - 11.55-3
3fb065
- add Requires and BuildRequires
3fb065
3fb065
* Mon Aug  8 2005 Ed Hill <ed@eh3.com> - 11.55-2
3fb065
- modify for acceptance into Fedora Extras
3fb065
3fb065
* Fri Jan 21 2005 David Kastrup <dak@gnu.org>
3fb065
- Conflict with outdated Emacspeak versions
3fb065
3fb065
* Fri Jan 14 2005 David Kastrup <dak@gnu.org>
3fb065
- Install and remove auctex.info, not auctex
3fb065
3fb065
* Thu Aug 19 2004 David Kastrup <dak@gnu.org>
3fb065
- Change tex-site.el to overwriting config file mode.  New naming scheme.
3fb065
3fb065
* Mon Aug 16 2004 David Kastrup <dak@gnu.org>
3fb065
- Attempt a bit of SuSEism.  Might work if we are lucky.
3fb065
3fb065
* Sat Dec  7 2002 David Kastrup <David.Kastrup@t-online.de>
3fb065
- Change addresses to fit move to Savannah.
3fb065
3fb065
* Mon Apr 15 2002 Jan-Ake Larsson <jalar@imf.au.dk>
3fb065
- Adjusted TeX-macro-global and put autoactivation in preinstall
3fb065
  script so that it can be chosen at install time.
3fb065
3fb065
* Tue Feb 19 2002 Jan-Ake Larsson <jalar@imf.au.dk>
3fb065
- Added site-start.el support
3fb065
3fb065
* Sat Feb 16 2002 Jan-Ake Larsson <jalar@imf.au.dk>
3fb065
- Prerelease 11.11