Compare commits

...

No commits in common. "c9-beta" and "c8" have entirely different histories.
c9-beta ... c8

4 changed files with 88 additions and 33 deletions

View File

@ -1 +1 @@
7f08b8e2a5d74f83fae8805e1b49e89e49d2f836 SOURCES/auctex-12.3.tar.gz
7744738f59fbb0862edb89eb2d47920b0f94c18b SOURCES/auctex-12.1.tar.gz

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/auctex-12.3.tar.gz
SOURCES/auctex-12.1.tar.gz

View File

@ -0,0 +1,62 @@
diff -up auctex-12.1/multi-prompt.el.orig auctex-12.1/multi-prompt.el
--- auctex-12.1/multi-prompt.el.orig 2017-12-10 20:49:45.000000000 +0000
+++ auctex-12.1/multi-prompt.el 2018-02-25 20:18:00.089207976 +0000
@@ -11,15 +11,16 @@
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
-;;
+;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
-;;
+;;
;; You should have received a copy of the GNU General Public License
-;; along with this program; if not, write to the Free Software
-;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+;; along with AUCTeX; see the file COPYING. If not, write to the Free
+;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+;; MA 02110-1301 USA.
;;; Commentary:
diff -up auctex-12.1/style/comment.el.orig auctex-12.1/style/comment.el
--- auctex-12.1/style/comment.el.orig 2017-12-10 20:49:45.000000000 +0000
+++ auctex-12.1/style/comment.el 2018-02-25 19:46:37.977791016 +0000
@@ -21,8 +21,8 @@
;; You should have received a copy of the GNU General Public License
;; along with AUCTeX; see the file COPYING. If not, write to the Free
-;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-;; 02111-1307, USA.
+;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+;; MA 02110-1301 USA.
;;; Commentary:
diff -up auctex-12.1/style/latexinfo.el.orig auctex-12.1/style/latexinfo.el
--- auctex-12.1/style/latexinfo.el.orig 2017-12-10 20:49:45.000000000 +0000
+++ auctex-12.1/style/latexinfo.el 2018-02-25 20:16:49.776341548 +0000
@@ -8,15 +8,16 @@
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
-;;
+;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
-;;
+;;
;; You should have received a copy of the GNU General Public License
-;; along with this program; if not, write to the Free Software
-;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+;; along with AUCTeX; see the file COPYING. If not, write to the Free
+;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+;; MA 02110-1301 USA.
;;; Code:

View File

@ -11,13 +11,16 @@
Summary: Enhanced TeX modes for Emacs
Name: emacs-auctex
Version: 12.3
Release: 2%{?dist}
Version: 12.1
Release: 3%{?dist}
License: GPLv3+ and GFDL
Group: Applications/Editors
URL: http://www.gnu.org/software/auctex/
Requires: emacs(bin) >= %{_emacs_version}
Requires: ghostscript dvipng
Requires: tex(latex) tex(dvips)
Requires(pre): /sbin/install-info
Requires(post): /sbin/install-info
Obsoletes: emacs-auctex-el <= 11.86-9
Provides: emacs-auctex-el = %{version}-%{release}
%if %{separate_preview}
@ -26,6 +29,10 @@ Requires: tex-preview = %{version}-%{release}
Source0: http://ftp.gnu.org/pub/gnu/auctex/auctex-%{version}.tar.gz
# Patch to fix FSF address in some files. Sent upstream 25th Feb 2018.
# Should not be needed after version 12.1
Patch0: fix_fsf_address_and_whitespace.patch
BuildArch: noarch
BuildRequires: emacs tex(latex) texinfo-tex ghostscript
@ -49,6 +56,7 @@ This package is for GNU Emacs.
%package doc
Summary: Documentation in various formats for AUCTeX
Group: Documentation
License: GFDL
%description doc
@ -58,11 +66,11 @@ including HTML and PDF.
%if %{separate_preview}
%package -n tex-preview
Summary: Preview style files for LaTeX
Group: Applications/Publishing
Requires: tex(latex)
Provides: tex(preview.sty)
# This is the latest build we accidentally provided from texlive
Obsoletes: texlive-preview <= 7:svn44883
Provides: texlive-preview
Obsoletes: tetex-preview
Provides: tetex-preview
%description -n tex-preview
The preview package for LaTeX allows for the processing of selected
@ -87,6 +95,7 @@ Emacs.
%prep
%setup -q -n auctex-%{version}
%patch0 -p1
%build
%if %{separate_preview}
@ -120,6 +129,16 @@ rm -rf %{buildroot}%{_docdir}/auctex
touch %{buildroot}%{_emacs_sitelispdir}/auctex/.nosearch
touch %{buildroot}%{_emacs_sitelispdir}/auctex/style/.nosearch
%post
/sbin/install-info %{_infodir}/auctex.info %{_infodir}/dir 2>/dev/null || :
/sbin/install-info %{_infodir}/preview-latex.info %{_infodir}/dir 2>/dev/null || :
%preun
if [ $1 -eq 0 ]; then
/sbin/install-info --delete %{_infodir}/auctex.info %{_infodir}/dir 2>/dev/null || :
/sbin/install-info --delete %{_infodir}/preview-latex.info %{_infodir}/dir 2>/dev/null || :
fi
%if %{separate_preview}
%post -n tex-preview
/usr/bin/texhash > /dev/null 2>&1 || :
@ -160,32 +179,6 @@ touch %{buildroot}%{_emacs_sitelispdir}/auctex/style/.nosearch
%doc doc/html
%changelog
* Fri Aug 6 2021 Jacek Migacz <jmigacz@redhat.com> - 12.3-1
- Fix build failure on CentOS Stream. Related: rhbz#1951306
- Revert patch for FSF addresses (it became obsolete with 12.2)
- Remove Obsoletes and Provides tetex-preview
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 12.1-10
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 12.1-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Thu May 24 2018 Tom Callaway <spot@fedoraproject.org> - 12.1-4
- Provide/Obsolete texlive-preview in tex-preview subpackage
* Sun Feb 25 2018 Jonathan Underwood <jonathan.underwood@gmail.com> - 12.1-3
- Add patch to fix FSF address in some files