Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qemacs for openSUSE:Factory checked 
in at 2021-07-16 22:13:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qemacs (Old)
 and      /work/SRC/openSUSE:Factory/.qemacs.new.2632 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qemacs"

Fri Jul 16 22:13:03 2021 rev:17 rq:906692 version:0.3.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/qemacs/qemacs.changes    2018-03-20 
21:59:01.552564197 +0100
+++ /work/SRC/openSUSE:Factory/.qemacs.new.2632/qemacs.changes  2021-07-16 
22:13:37.702454465 +0200
@@ -1,0 +2,9 @@
+Sat Jul  3 20:03:47 UTC 2021 - Ferdinand Thiessen <r...@fthiessen.de>
+
+- Update to 0.3.3
+  * fixed HTML mode in 64 bit mode
+  * added C-x s save-buffer mapping
+- Drop upstream fixed patches: gcc4.patch and includes.patch
+- Fix URL and SourceURL
+
+-------------------------------------------------------------------

Old:
----
  gcc4.patch
  includes.patch
  qemacs-0.3.1.tar.bz2

New:
----
  qemacs-0.3.3.tar.gz

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

Other differences:
------------------
++++++ qemacs.spec ++++++
--- /var/tmp/diff_new_pack.Izzs3m/_old  2021-07-16 22:13:38.282450366 +0200
+++ /var/tmp/diff_new_pack.Izzs3m/_new  2021-07-16 22:13:38.286450338 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package qemacs
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,32 +12,30 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:           qemacs
-BuildRequires:  pkgconfig(libpng)
-BuildRequires:  pkgconfig(x11)
-BuildRequires:  pkgconfig(xext)
-BuildRequires:  pkgconfig(xv)
-Version:        0.3.1
+Version:        0.3.3
 Release:        0
-Url:            http://fabrice.bellard.free.fr/qemacs/
-Source0:        http://fabrice.bellard.free.fr/qemacs/qemacs-0.3.1.tar.bz2
+Summary:        An editor similar to Emacs
+License:        LGPL-2.1-or-later
+Group:          Productivity/Editors/Other
+URL:            https://bellard.org/qemacs/
+Source0:        https://bellard.org/qemacs/qemacs-%{version}.tar.gz
 Patch0:         qemacs.patch
 Patch1:         qemacs-lib64.patch
-Patch2:         gcc4.patch
-Patch3:         includes.patch
-Patch4:         initcall.patch
-Patch5:         qemacs-libpng.patch
+Patch2:         initcall.patch
+Patch3:         qemacs-libpng.patch
 # PATCH-FIX-UPSTREAM pngtoico-libpng15.patch -- pgaj...@suse.com; build with 
libpng15; sent today to fabrice.bell...@free.fr
 # build against libpng14 should not be affected, otherwise please let me know
-Patch6:         qemacs-libpng15.patch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Summary:        An editor similar to Emacs
-License:        LGPL-2.1-or-later
-Group:          Productivity/Editors/Other
+Patch4:         qemacs-libpng15.patch
+BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(libpng)
+BuildRequires:  pkgconfig(x11)
+BuildRequires:  pkgconfig(xext)
+BuildRequires:  pkgconfig(xv)
 
 %description
 Full screen editor with an Emacs look and feel with common Emacs features
@@ -72,11 +70,9 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1 -b .lib64
-%patch2 -p1
+%patch2
 %patch3
-%patch4
-%patch5
-%patch6 -p1
+%patch4 -p1
 
 %build
 export CFLAGS="%{optflags}"
@@ -91,11 +87,11 @@
 chmod 644 %{buildroot}/%{_mandir}/man1/*
 
 %files
-%defattr(-,root,root)
-%doc COPYING Changelog README TODO qe-doc.html config.eg
+%license COPYING
+%doc Changelog README TODO qe-doc.html config.eg
 %doc tests/
-/usr/bin/*
-/usr/share/qe/
-%doc %{_mandir}/man1/*
+%{_bindir}/*
+%{_datadir}/qe/
+%{_mandir}/man1/*
 
 %changelog

++++++ initcall.patch ++++++
--- /var/tmp/diff_new_pack.Izzs3m/_old  2021-07-16 22:13:38.298450253 +0200
+++ /var/tmp/diff_new_pack.Izzs3m/_new  2021-07-16 22:13:38.302450225 +0200
@@ -30,4 +30,4 @@
 +#define __exit_call   __attribute__ ((used,__section__ (".exitcall.exit")))
  
  #define qe_module_init(fn) \
-       static int (*__initcall_##fn)(void) __init_call = fn
+       int (*__initcall_##fn)(void) __init_call = fn

++++++ qemacs.patch ++++++
--- /var/tmp/diff_new_pack.Izzs3m/_old  2021-07-16 22:13:38.318450112 +0200
+++ /var/tmp/diff_new_pack.Izzs3m/_new  2021-07-16 22:13:38.318450112 +0200
@@ -28,18 +28,6 @@
  TAGS: force
        etags *.[ch]
 diff -Nru qemacs-0.3.1.orig/configure qemacs-0.3.1/configure
---- qemacs-0.3.1.orig/configure        2003-04-30 18:20:45.000000000 +0200
-+++ qemacs-0.3.1/configure     2003-04-30 21:22:07.000000000 +0200
-@@ -311,7 +311,7 @@
- head $source_path/VERSION >>config.mak
- echo "" >>config.mak
- echo -n "#define QE_VERSION \"" >> $TMPH
--head $source_path/VERSION >> $TMPH
-+head $source_path/VERSION | tr --delete '\n' >> $TMPH
- echo "\"" >> $TMPH
- if test "$network" = "yes" ; then
-   echo "#define CONFIG_NETWORK 1" >> $TMPH
-diff -Nru qemacs-0.3.1.orig/qemacs.1 qemacs-0.3.1/qemacs.1
 --- qemacs-0.3.1.orig/qemacs.1 1970-01-01 01:00:00.000000000 +0100
 +++ qemacs-0.3.1/qemacs.1      2003-04-30 21:22:27.000000000 +0200
 @@ -0,0 +1 @@

Reply via email to