Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package emacs-auctex for openSUSE:Factory 
checked in at 2024-05-16 17:16:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/emacs-auctex (Old)
 and      /work/SRC/openSUSE:Factory/.emacs-auctex.new.1880 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "emacs-auctex"

Thu May 16 17:16:38 2024 rev:48 rq:1174575 version:13.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/emacs-auctex/emacs-auctex.changes        
2024-05-07 18:05:10.750380362 +0200
+++ /work/SRC/openSUSE:Factory/.emacs-auctex.new.1880/emacs-auctex.changes      
2024-05-16 17:19:09.392579897 +0200
@@ -1,0 +2,20 @@
+Thu May 16 13:27:12 UTC 2024 - Dr. Werner Fink <wer...@suse.de>
+
+- Merge changes from upstream for patch dinbrief.patch 
+
+-------------------------------------------------------------------
+Thu May 16 11:13:22 UTC 2024 - Dr. Werner Fink <wer...@suse.de>
+
+- Update dinbrief.patch
+  * Use babel style direct for ngerman
+  * Reintroduce enforced T1 font encoding
+
+-------------------------------------------------------------------
+Thu May 16 09:27:02 UTC 2024 - Dr. Werner Fink <wer...@suse.de>
+
+- Remove patch ignore-errors.patch
+  * After discussion with AUCTeX upstream avoid now those errors
+    by ignoring font-lock TeX macros as well as lwarp.sty
+- Refresh auctex-13.3-auto-TL-2024.tar.xz with that above
+
+-------------------------------------------------------------------

Old:
----
  ignore-errors.patch

BETA DEBUG BEGIN:
  Old:
- Remove patch ignore-errors.patch
  * After discussion with AUCTeX upstream avoid now those errors
BETA DEBUG END:

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

Other differences:
------------------
++++++ emacs-auctex.spec ++++++
--- /var/tmp/diff_new_pack.fZfdQE/_old  2024-05-16 17:19:09.936599614 +0200
+++ /var/tmp/diff_new_pack.fZfdQE/_new  2024-05-16 17:19:09.940599759 +0200
@@ -56,7 +56,6 @@
 # PATCH-FEATURE-UPSTREAM dvips.patch
 Patch0:         dvips.patch
 Patch1:         auctex-13.1-expand.patch
-Patch2:         ignore-errors.patch
 Patch3:         initial-reset.patch
 Patch4:         dinbrief.patch
 BuildArch:      noarch
@@ -83,7 +82,6 @@
 %setup -n auctex-%{version}
 %patch -P0
 %patch -P1
-%patch -P2
 %patch -P3
 %patch -P4
 
@@ -118,8 +116,11 @@
 %if %{with tex4auto}
        pwd
        echo "Run the command TeX-auto-generate-global in mini buffer"
+       ignore="$(sed -rn '/^\(defcustom TeX-ignore-file/,+1{ 
s@^\s+@@;s@(\\\\)(\)\$)@\1|lwarp\\.sty\\\\\2@p }' < ../tex.el)"
        emacs-gtk -batch -Q -L %{buildroot}%{_sitedir}/auctex                   
\
            --eval '(setq TeX-lisp-directory "%{buildroot}%{_aucdir}")'         
\
+           --eval "(setq TeX-install-font-lock #'ignore)"                      
\
+           --eval "(setq TeX-ignore-file ${ignore})"                           
\
            --eval '(setq TeX-auto-global "%{buildroot}%{_aucdir}/auto")'       
\
            -l %{buildroot}%{_sitedir}/tex-site.el -f TeX-auto-generate-global
        exit 1

++++++ auctex-13.3-auto-TL-2024.tar.xz ++++++
++++ 4504 lines of diff (skipped)



++++++ dinbrief.patch ++++++
--- /var/tmp/diff_new_pack.fZfdQE/_old  2024-05-16 17:19:11.812667610 +0200
+++ /var/tmp/diff_new_pack.fZfdQE/_new  2024-05-16 17:19:11.816667755 +0200
@@ -1,14 +1,13 @@
-Update dinbrief class
-
 Nowadays UTF-8 is standard, also port the features of the letter class
 to dinbrief class.
 
+Signed-off-by: Werner Fink <wer...@suse.de>
 ---
- style/dinbrief.el |   45 ++++++++++++++++++++++++++++++++-------------
- 1 file changed, 32 insertions(+), 13 deletions(-)
+ style/dinbrief.el |   67 
+++++++++++++++++++++++++++++++++++++++---------------
+ 1 file changed, 49 insertions(+), 18 deletions(-)
 
 --- style/dinbrief.el
-+++ style/dinbrief.el  2024-05-07 07:10:38.580274545 +0000
++++ style/dinbrief.el
 @@ -32,14 +32,26 @@
  (require 'tex)
  (require 'latex)
@@ -22,7 +21,7 @@
 +  '("10pt" "11pt" "12pt" "norm" "a4paper" "a5paper" "b5paper"
 +    "letterpaper" "legalpaper" "executivepaper" "twoside"
 +    "addresshigh" "addressstd" "onecolumn" "twocolumn")
-+  "Package options for the letter class.")
++  "Class options for the dinbrief class.")
 +
  (TeX-add-style-hook
   "dinbrief"
@@ -38,7 +37,7 @@
     (TeX-add-symbols
      '("address" "Absender")
      '("postremark" "Postvermerk")
-@@ -61,7 +73,22 @@
+@@ -61,12 +73,28 @@
      '("backaddress" "Retouradresse")
      '("signature" "Unterschrift")
      '("opening" "Anrede")
@@ -62,25 +61,71 @@
   TeX-dialect)
  
  (defmacro LaTeX-dinbrief-insert (&rest args)
-@@ -78,16 +105,8 @@
+   "Insert text ignoring active markers."
+-  `(progn (if mark-active (deactivate-mark))
++  `(progn
++     (if (TeX-active-mark) (deactivate-mark))
+      (insert ,@args)))
+ 
+ (defun LaTeX-dinbrief-style ()
+@@ -77,17 +105,14 @@
+         (beginning-of-line 1))
      (open-line 2)
      (indent-relative-first-indent-point)
-     (LaTeX-dinbrief-insert TeX-esc "usepackage"
+-    (LaTeX-dinbrief-insert TeX-esc "usepackage"
 -                           LaTeX-optop "latin1,utf8" LaTeX-optcl
 -                           TeX-grop "inputenc" TeX-grcl)
 -    (newline-and-indent)
--    (LaTeX-dinbrief-insert TeX-esc "usepackage"
--                           LaTeX-optop "T1" LaTeX-optcl
--                           TeX-grop "fontenc" TeX-grcl)
+     (LaTeX-dinbrief-insert TeX-esc "usepackage"
+                            LaTeX-optop "T1" LaTeX-optcl
+                            TeX-grop "fontenc" TeX-grcl)
 -    (indent-relative-first-indent-point)
--    (LaTeX-dinbrief-insert TeX-esc "usepackage"
-                            TeX-grop "ngerman" TeX-grcl))
++    (newline-and-indent)
+     (LaTeX-dinbrief-insert TeX-esc "usepackage"
+-                           TeX-grop "ngerman" TeX-grcl))
 -  (TeX-run-style-hooks "inputenc" "fontenc" "ngerman"))
-+  (TeX-run-style-hooks "ngerman"))
++                           LaTeX-optop "ngerman" LaTeX-optcl
++                           TeX-grop "babel" TeX-grcl))
++  (TeX-run-style-hooks "fontenc" "babel"))
  
  (defun LaTeX-dinbrief-env-recipient (environment)
    "Insert ENVIRONMENT and prompt for recipient and address."
-@@ -246,7 +265,7 @@
+@@ -118,8 +143,10 @@
+             (newline-and-indent)
+             (if (not (zerop (length retouradr)))
+                 (progn
+-                  (if mark-active (deactivate-mark))
+-                  (LaTeX-dinbrief-insert TeX-esc "backaddress" TeX-grop 
retouradr TeX-grcl)
++                  (if (TeX-active-mark) (deactivate-mark))
++                  (LaTeX-dinbrief-insert TeX-esc
++                                         "backaddress"
++                                         TeX-grop retouradr TeX-grcl)
+                   (newline-and-indent)))))
+       (LaTeX-dinbrief-insert TeX-esc "enabledraftstandard")
+       (newline-and-indent)
+@@ -205,8 +232,8 @@
+   "Read and write the senders address."
+   (interactive)
+   (let ((name (TeX-read-string "Absender: " (user-full-name)))
+-        (str  (TeX-read-string "Meine Strasse:  "))
+-        (ort  (TeX-read-string "Mein Wohnort:  ")))
++        (str  (TeX-read-string "Meine Strasse: "))
++        (ort  (TeX-read-string "Mein Wohnort: ")))
+     (if (not (zerop (length name)))
+         (progn
+           (goto-char (point-min)) ; insert before \end{document}
+@@ -231,8 +258,8 @@
+ (defun LaTeX-dinbrief-recipient ()
+   "Read and return the recipient address."
+   (interactive)
+-  (let ((str  (TeX-read-string "Wohnhaft in Strasse:  "))
+-        (ort  (TeX-read-string "Aus der Ortschaft:  ")))
++  (let ((str  (TeX-read-string "Wohnhaft in Strasse: "))
++        (ort  (TeX-read-string "Aus der Ortschaft: ")))
+     (if (not (zerop (length str)))
+         (if (not (zerop (length ort)))
+             (concat str " " TeX-esc TeX-esc " " ort)
+@@ -246,7 +273,7 @@
    (let ((ctime-string (current-time-string))
          (month-alist '(("Jan" . "Januar")
                         ("Feb" . "Februar")
@@ -89,4 +134,13 @@
                         ("Apr" . "April")
                         ("May" . "Mai")
                         ("Jun" . "Juni")
+@@ -270,4 +297,8 @@
+                 (setq day (concat "0" day)))))
+       (format "%s, den %s. %s %s" place day month year))))
+ 
++;; Local Variables:
++;; coding: utf-8-unix
++;; End:
++
+ ;;; dinbrief.el ends here
 

Reply via email to