Hello community,

here is the log from the commit of package emacs-auctex for openSUSE:Factory 
checked in at 2013-06-07 06:58:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/emacs-auctex (Old)
 and      /work/SRC/openSUSE:Factory/.emacs-auctex.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "emacs-auctex"

Changes:
--------
--- /work/SRC/openSUSE:Factory/emacs-auctex/emacs-auctex.changes        
2013-03-01 07:17:18.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.emacs-auctex.new/emacs-auctex.changes   
2013-06-07 06:58:03.000000000 +0200
@@ -1,0 +2,15 @@
+Thu Jun  6 10:50:17 UTC 2013 - [email protected]
+
+- Update to auctex 11.87
+  * Includes the preview fix for ghostscript
+  * Includes the changes for font-late.elc
+- Remove auctex-11.86-font-latex.5.194.patch
+
+-------------------------------------------------------------------
+Thu Jun  6 10:27:26 UTC 2013 - [email protected]
+
+- Add patch auctex-11.86-font-latex.5.194.patch from upstream to
+  make GNU emacs 24.3 silent about font-late.elc (reported by
+  Johannes Roth)
+
+-------------------------------------------------------------------
@@ -255 +270 @@
-- auctex: Version 9.5a f�r GNU-emacs und X-emacs
+- auctex: Version 9.5a für GNU-emacs und X-emacs

Old:
----
  auctex-11.85-preview.dif
  auctex-11.86.dif
  auctex-11.86.tar.bz2

New:
----
  auctex-11.87.dif
  auctex-11.87.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ emacs-auctex.spec ++++++
--- /var/tmp/diff_new_pack.04Nkox/_old  2013-06-07 06:58:04.000000000 +0200
+++ /var/tmp/diff_new_pack.04Nkox/_new  2013-06-07 06:58:04.000000000 +0200
@@ -40,15 +40,14 @@
 BuildRequires:  texlive-tex
 BuildRequires:  texlive-texinfo
 %endif
-Version:        11.86
+Version:        11.87
 Release:        0
 Summary:        AUC TeX: An Emacs Extension
 License:        GPL-2.0+
 Group:          Productivity/Editors/Emacs
-Source:         ftp://ftp.gnu.org/pub/gnu/auctex/auctex-%{version}.tar.bz2
+Source:         ftp://ftp.gnu.org/pub/gnu/auctex/auctex-%{version}.tar.gz
 Url:            http://www.gnu.org/software/auctex
-Patch:          auctex-11.86.dif
-Patch1:         auctex-11.85-preview.dif
+Patch:          auctex-11.87.dif
 Patch2:         auctex-11.86-dinbrief.dif
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildArch:      noarch
@@ -73,7 +72,6 @@
 %prep
 %setup -n auctex-%{version}
 %patch
-%patch1
 %patch2
 
 %build

++++++ auctex-11.85-preview.dif -> auctex-11.87.dif ++++++
--- /work/SRC/openSUSE:Factory/emacs-auctex/auctex-11.85-preview.dif    
2011-09-23 01:56:27.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.emacs-auctex.new/auctex-11.87.dif       
2013-06-07 06:58:02.000000000 +0200
@@ -1,44 +1,32 @@
---- preview/preview.el
-+++ preview/preview.el 2010-10-13 10:01:38.999927331 +0000
-@@ -369,6 +369,10 @@ See also `preview-gs-command'."
- Buffer-local to the appropriate TeX process buffer.")
- (make-variable-buffer-local 'preview-gs-queue)
+--- latex.el
++++ latex.el   2006-06-29 18:40:59.000000000 +0200
+@@ -1557,6 +1557,7 @@ ELSE as an argument list."
+                                          ",")))))
+     (if (zerop (length style))
+       (setq style LaTeX-default-style))
++    (TeX-run-style-hooks style)
+     (if (not (zerop (length options)))
+       (insert LaTeX-optop options LaTeX-optcl))
+     (insert TeX-grop style TeX-grcl))
+--- tex-site.el.in
++++ tex-site.el.in     2006-06-29 18:44:29.000000000 +0200
+@@ -64,6 +64,8 @@ shared by all users of a site."
+   :group 'TeX-file
+   :type 'directory)
  
-+(defvar preview-pdf-filename ""
-+  "Name of the PDF file used for preview.")
-+(make-variable-buffer-local 'preview-pdf-filename)
++(setq-default TeX-macro-global '("/usr/share/texmf/tex/"))
 +
- (defvar preview-gs-outstanding nil
-   "Overlays currently processed.")
- (make-variable-buffer-local 'preview-gs-outstanding)
-@@ -704,7 +708,7 @@ Gets the usual PROCESS and STRING parame
-                                        preview-gs-command-line)
-                                       " ") "''\n")
-       (setq preview-gs-answer "")
--      (process-kill-without-query process)
-+      (set-process-query-on-exit-flag process nil)
-       (set-process-sentinel process #'preview-gs-sentinel)
-       (set-process-filter process #'preview-gs-filter)
-       (process-send-string process preview-gs-init-string)
-@@ -1072,6 +1076,13 @@ NONREL is not NIL."
-                   (caar preview-ps-file))
-               (car preview-ps-file))))
-     (setq preview-gs-dsc (preview-dsc-parse file))
-+    (setq preview-gs-command-line
-+        (append (list "-dDELAYSAFER")
-+         (remove "-dSAFER" preview-gs-command-line)
-+         (list "-c"
-+          (format "<</PermitFileReading[%s %s]>> setuserparams .locksafe"
-+                   (preview-ps-quote-filename file)
-+                   (preview-ps-quote-filename preview-pdf-filename)))))
-     (setq preview-gs-init-string
-         (concat preview-gs-init-string
-                 (format "[%s(r)file]aload exch %s .runandhide aload pop "
-@@ -3100,6 +3111,7 @@ If FAST is set, do a fast conversion."
-                     (setq tempdir TeX-active-tempdir
-                           pdfsource (funcall `,(car file) "pdf")))))
-        (name "Preview-PDF2DSC"))
-+    (setq preview-pdf-filename pdfsource)
-     (setq TeX-active-tempdir tempdir)
-     (setq preview-ps-file (preview-attach-filename
-                          pdfsource
+ (defconst TeX-mode-alist
+   '((tex-mode . tex-mode)
+     (plain-tex-mode . tex-mode)
+--- tex.el
++++ tex.el     2013-06-06 10:47:43.941439046 +0000
+@@ -326,7 +326,7 @@ string."
+ ;; TeX-print-command.
+ 
+ (defcustom TeX-print-command
+-  "{ test -e %s.dvi && %(o?)dvips -P%p %r %s; } || lpr -P%p %o"
++  "{ test -e %s.dvi && %(o?)dvips %r -f %s | lpr -P%p; } || lpr -P%p %o"
+   "Command used to print a file.
+ 
+ First `%p' is expanded to the printer name, then ordinary expansion is

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to