commit gmime for openSUSE:Factory

2020-03-24 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2020-03-24 22:29:37

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new.3160 (New)


Package is "gmime"

Tue Mar 24 22:29:37 2020 rev:70 rq:787535 version:3.2.7

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2020-02-22 
19:00:18.097623401 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new.3160/gmime.changes2020-03-24 
22:29:49.613013466 +0100
@@ -1,0 +2,16 @@
+Sat Mar 21 15:03:11 UTC 2020 - Bjørn Lie 
+
+- Update to version 3.2.7:
+  + Added some configure logic to auto-detect the system shift-jis
+charset alias.
+  + Fixed tests/Makefile.am to exit with a non-negative value.
+  + Fixed logic to skip expired or revoked gpg subkeys when looking
+for the correct subkey to use for signing or encrypting.
+  + Fixed a regression introduced into 3.2.6 as part of the header
+parser rewrite that lost the ability to warn about invalid
+headers for non-toplevel MIME parts.
+  + Fixed S/MIME to always set GPGME_KEYLIST_MODE_VALIDATE when
+looking up certificates as this is needed in order to correctly
+populate the GMimeCertificates.
+
+---

Old:

  gmime-3.2.6.tar.xz

New:

  gmime-3.2.7.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.6KFglX/_old  2020-03-24 22:29:50.237013780 +0100
+++ /var/tmp/diff_new_pack.6KFglX/_new  2020-03-24 22:29:50.237013780 +0100
@@ -22,7 +22,7 @@
 # NOTE - also update baselibs.conf when bumping this
 %define so_ver 3_0
 Name:   gmime
-Version:3.2.6
+Version:3.2.7
 Release:0
 Summary:MIME Parser and Utility Library
 License:LGPL-2.1-or-later

++ gmime-3.2.6.tar.xz -> gmime-3.2.7.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-3.2.6/NEWS new/gmime-3.2.7/NEWS
--- old/gmime-3.2.6/NEWS2020-02-15 16:07:49.0 +0100
+++ new/gmime-3.2.7/NEWS2020-03-20 23:56:15.0 +0100
@@ -1,3 +1,18 @@
+### GMime 3.2.7
+
+* Added some configure logic to auto-detect the system shift-jis charset 
alias. (issue #81)
+
+* Fixed tests/Makefile.am to exit with a non-negative value (issue #82)
+
+* Fixed logic to skip expired or revoked gpg subkeys when looking for the 
correct subkey to
+  use for signing or encrypting. (issue #88)
+
+* Fixed a regression introduced into 3.2.6 as part of the header parsder 
rewrite that lost
+  the ability to warn about invalid headers for non-toplevel MIME parts. 
(issue #89)
+
+* Fixed S/MIME to always set GPGME_KEYLIST_MODE_VALIDATE when looking up 
certificates
+  as this is needed in order to correctly populate the GMimeCertificates 
(issue #90)
+
 ### GMime 3.2.6
 
 * Added methods to get 64-bit timestamps for the creation-date and 
expiration-date of
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-3.2.6/README new/gmime-3.2.7/README
--- old/gmime-3.2.6/README  2020-02-15 16:49:27.0 +0100
+++ new/gmime-3.2.7/README  2020-03-03 16:19:07.0 +0100
@@ -736,6 +736,57 @@
 }
 ```
 
+## Understanding Memory Management in GMime
+
+- Functions that return `const char *` return a pointer to a string stored on 
the `GObject` that will be released
+when the object itself is finalized and therefore should *never* be fed to 
`g_free()` by the caller.
+
+- Functions that return `char *` are left up to the caller to `g_free()` when 
the caller is done with them.
+
+### For functions throughout the GMime API that return an object reference:
+
+- If the function that returned the object allocated the object, then you need 
to unref it, otherwise you don't.
+
+For example, the `stream` in the following code would need to be unreffed 
(using `g_object_unref()`) because it was
+freshly allocated by the function:
+
+```c
+GMimeStream *stream = g_mime_stream_mem_new ();
+```
+
+The next example shows a function that returns a reference to an *existing* 
`GMimeStream` object that is stored on
+(and therefor managed by) the `GMimeDataWrapper` object:
+
+```c
+GMimeStream *stream = g_mime_data_wrapper_get_stream (wrapper);
+```
+
+In the above example, the `stream` *should not* be unreffed because the 
`stream` object's memory is managed by the
+`wrapper` object. In other words, when the `wrapper` object is freed, the 
`stream` will be freed as well.
+
+Where many developers get confused is when they create a new object and then 
add it to another object.
+
+For example:
+
+```c
+GMimeStream *stream = g_mime_stream_mem_new ();
+GMimeDataWrapper *wrapper = 

commit gmime for openSUSE:Factory

2020-02-22 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2020-02-22 19:00:12

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new.26092 (New)


Package is "gmime"

Sat Feb 22 19:00:12 2020 rev:69 rq:775013 version:3.2.6

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2019-11-24 
00:08:32.267092220 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new.26092/gmime.changes   2020-02-22 
19:00:18.097623401 +0100
@@ -1,0 +2,9 @@
+Sat Feb 15 17:10:37 UTC 2020 - Bjørn Lie 
+
+- Update to version 3.2.6:
+  + Added methods to get 64-bit timestamps for the creation-date
+and expiration-date of GMimeCertificates and GMimeSignatures.
+  + Fixed the vala abstract public constructor for GMimeObject.
+  + Fixed a bug in GMimeParser's header parser.
+
+---

Old:

  gmime-3.2.5.tar.xz

New:

  gmime-3.2.6.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.jKX5in/_old  2020-02-22 19:00:19.817626732 +0100
+++ /var/tmp/diff_new_pack.jKX5in/_new  2020-02-22 19:00:19.817626732 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gmime
 #
-# Copyright (c) 2019 SUSE LLC.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,7 +22,7 @@
 # NOTE - also update baselibs.conf when bumping this
 %define so_ver 3_0
 Name:   gmime
-Version:3.2.5
+Version:3.2.6
 Release:0
 Summary:MIME Parser and Utility Library
 License:LGPL-2.1-or-later

++ gmime-3.2.5.tar.xz -> gmime-3.2.6.tar.xz ++
 7378 lines of diff (skipped)




commit gmime for openSUSE:Factory

2019-11-23 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2019-11-24 00:08:30

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new.26869 (New)


Package is "gmime"

Sun Nov 24 00:08:30 2019 rev:68 rq:749281 version:3.2.5

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2019-10-17 
12:59:10.993321355 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new.26869/gmime.changes   2019-11-24 
00:08:32.267092220 +0100
@@ -1,0 +2,19 @@
+Thu Nov 14 17:23:07 UTC 2019 - Bjørn Lie 
+
+- Update to version 3.2.5:
+  + Modified GMimeParser to prevent stack overflows when parsing
+deeply nested messages. GMimeParser now has a limit on how deep
+multipart and/or message/rfc822 MIME part nesting is allowed to
+go before the parser will take action to prevent a stack
+overflow. If the max level is reached at a message/rfc822 part,
+then that part will be consumed by the parser as a generic
+GMimePart rather than a GMimeMessagePart. Likewise, if the max
+level is reached at any type of multipart, then the content of
+said multipart will be packed into the GMimeMultipart's preface
+and not parsed any further.
+  + g_mime_multipart_foreach has been rewritten to avoid recursion,
+thereby avoiding potential stack overflows.
+  + The gmime-port-2-6-to-3-0.sh script has been fixed to use
+proper sed syntax.
+
+---

Old:

  gmime-3.2.4.tar.xz

New:

  gmime-3.2.5.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.9JeBNH/_old  2019-11-24 00:08:32.907092286 +0100
+++ /var/tmp/diff_new_pack.9JeBNH/_new  2019-11-24 00:08:32.907092286 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gmime
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,7 +22,7 @@
 # NOTE - also update baselibs.conf when bumping this
 %define so_ver 3_0
 Name:   gmime
-Version:3.2.4
+Version:3.2.5
 Release:0
 Summary:MIME Parser and Utility Library
 License:LGPL-2.1-or-later

++ gmime-3.2.4.tar.xz -> gmime-3.2.5.tar.xz ++
 2509 lines of diff (skipped)




commit gmime for openSUSE:Factory

2019-10-17 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2019-10-17 12:59:08

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new.2352 (New)


Package is "gmime"

Thu Oct 17 12:59:08 2019 rev:67 rq:736524 version:3.2.4

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2018-12-10 
12:25:23.598703426 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new.2352/gmime.changes2019-10-17 
12:59:10.993321355 +0200
@@ -1,0 +2,14 @@
+Thu Oct  3 17:06:17 UTC 2019 - Bjørn Lie 
+
+- Update to version 3.2.4:
+  + Replaced calls to g_memmove with memmove.
+  + Added a new GMIME_DECRYPT_NO_VERIFY flag that disables
+signature verification.
+  + Modified GMimeParser to not set the OpenPGP state for
+base64/uuencoded content.
+  + Added reporting of RFC 5322 addr-spec syntax violations to the
+GMimeParserWarning API.
+  + Fixed a stack underflow error in the uudecode.c sample.
+  + Improved Vala bindings.
+
+---

Old:

  gmime-3.2.3.tar.xz

New:

  gmime-3.2.4.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.K6ZBUg/_old  2019-10-17 12:59:11.589319845 +0200
+++ /var/tmp/diff_new_pack.K6ZBUg/_new  2019-10-17 12:59:11.593319835 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gmime
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,13 +22,13 @@
 # NOTE - also update baselibs.conf when bumping this
 %define so_ver 3_0
 Name:   gmime
-Version:3.2.3
+Version:3.2.4
 Release:0
 Summary:MIME Parser and Utility Library
 License:LGPL-2.1-or-later
 Group:  Productivity/Networking/Email/Utilities
 URL:http://spruce.sourceforge.net/gmime/
-Source: 
http://download.gnome.org/sources/gmime/3.2/%{name}-%{version}.tar.xz
+Source: 
https://download.gnome.org/sources/gmime/3.2/%{name}-%{version}.tar.xz
 Source99:   baselibs.conf
 BuildRequires:  gobject-introspection-devel >= 1.30.0
 BuildRequires:  gpgme-devel

++ gmime-3.2.3.tar.xz -> gmime-3.2.4.tar.xz ++
 7001 lines of diff (skipped)




commit gmime for openSUSE:Factory

2018-12-10 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2018-12-10 12:24:54

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new.19453 (New)


Package is "gmime"

Mon Dec 10 12:24:54 2018 rev:66 rq:653522 version:3.2.3

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2018-03-08 
10:43:32.779476974 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new.19453/gmime.changes   2018-12-10 
12:25:23.598703426 +0100
@@ -1,0 +2,36 @@
+Fri Nov 30 17:39:18 UTC 2018 - bjorn@gmail.com
+
+- Update to version 3.2.3:
+  + Fixed GMimeFilterBasic for uudecode.
+  + Fixed a bug in g_mime_uuencode_step().
+  + Modified GMimeParser to work around broken mailers that send
+base64 encoded message/rfc822 parts.
+  + Fixed a bug in g_mime_quoted_encode_close() where it would
+incorrectly end the quoted-printable output with a line
+containing only "=\n" even when it is not needed.
+  + Improved g_mime_content_encoding_from_string().
+  + Really, really fixed the packaging to include the Vala build
+files.
+- Changes from version 3.2.2:
+  + Fixed packaging to include Vala files.
+- Changes from version 3.2.1:
+  + Fixed GMimeParser to recognize the message/global mime-type.
+  + Updated GMime to use libidn2 instead of the older libidn
+library.
+  + Fixed address quoting logic and IDN2 encoding.
+  + Added GMIME_DECRYPT_ENABLE_ONLINE_CERTIFICATE_CHECKS and
+GMIME_DECRYPT_ENABLE_KEYSERVER_LOOKUPS as possible flags to
+pass to g_mime_crypto_context_decrypt(). Also added
+GMIME_VERIFY_ENABLE_ONLINE_CERTIFICATE_CHECKS and
+GMIME_VERIFY_ENABLE_KEYSERVER_LOOKUPS as possible flags to
+pass to g_mime_crypto_context_verify().
+  + Fixed g_mime_message_write_to_stream() to prioritize message
+headers over body headers.
+  + The GMimeParser can now warn about a number of RFC-compliance
+issues that it finds when parsing messages.
+  + Fixed GMimeTextPart to make sure that the GMimeFilterCharset is
+non-null before trying to use it. This can happen if the
+charset specified in the Content-Type header is unsupported by
+the iconv library.
+
+---

Old:

  gmime-3.2.0.tar.xz

New:

  gmime-3.2.3.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.dbWRKH/_old  2018-12-10 12:25:23.986703039 +0100
+++ /var/tmp/diff_new_pack.dbWRKH/_new  2018-12-10 12:25:23.990703034 +0100
@@ -12,7 +12,7 @@
 # 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/
 #
 
 
@@ -22,7 +22,7 @@
 # NOTE - also update baselibs.conf when bumping this
 %define so_ver 3_0
 Name:   gmime
-Version:3.2.0
+Version:3.2.3
 Release:0
 Summary:MIME Parser and Utility Library
 License:LGPL-2.1-or-later

++ gmime-3.2.0.tar.xz -> gmime-3.2.3.tar.xz ++
 19067 lines of diff (skipped)




commit gmime for openSUSE:Factory

2018-03-08 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2018-03-08 10:43:30

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is "gmime"

Thu Mar  8 10:43:30 2018 rev:65 rq:582719 version:3.2.0

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2018-02-03 
15:39:18.498322755 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2018-03-08 
10:43:32.779476974 +0100
@@ -1,0 +2,5 @@
+Wed Feb 28 16:26:55 UTC 2018 - dims...@opensuse.org
+
+- Modernize spec-file by calling spec-cleaner
+
+---



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.vFeta1/_old  2018-03-08 10:43:33.427453643 +0100
+++ /var/tmp/diff_new_pack.vFeta1/_new  2018-03-08 10:43:33.431453499 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gmime
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,28 +18,26 @@
 
 # Define a base version
 %define base_ver 3.0
-
 # Define a so version
 # NOTE - also update baselibs.conf when bumping this
 %define so_ver 3_0
-
 Name:   gmime
 Version:3.2.0
 Release:0
 Summary:MIME Parser and Utility Library
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  Productivity/Networking/Email/Utilities
-Url:http://spruce.sourceforge.net/gmime/
+URL:http://spruce.sourceforge.net/gmime/
 Source: 
http://download.gnome.org/sources/gmime/3.2/%{name}-%{version}.tar.xz
 Source99:   baselibs.conf
 BuildRequires:  gobject-introspection-devel >= 1.30.0
 BuildRequires:  gpgme-devel
 BuildRequires:  gtk-doc
+BuildRequires:  pkgconfig
 BuildRequires:  zlib-devel
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(libidn) >= 0.0.0
 BuildRequires:  pkgconfig(vapigen)
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 GMime is a C/C++ library for parsing and creating messages using
@@ -84,23 +82,19 @@
 
 %install
 %make_install
-find %{buildroot}%{_libdir} -type f -name "*.la" -delete -print
+find %{buildroot} -type f -name "*.la" -delete -print
 
 %post -n libgmime-%{so_ver}-0 -p /sbin/ldconfig
-
 %postun -n libgmime-%{so_ver}-0 -p /sbin/ldconfig
 
 %files -n libgmime-%{so_ver}-0
-%defattr (-, root, root)
-%doc COPYING
+%license COPYING
 %{_libdir}/*.so.*
 
 %files -n typelib-1_0-GMime-%{so_ver}
-%defattr(-,root,root)
 %{_libdir}/girepository-1.0/GMime-%{base_ver}.typelib
 
 %files devel
-%defattr (-, root, root)
 %doc AUTHORS PORTING README TODO
 %doc %{_datadir}/gtk-doc/html/gmime-3.2/
 %{_datadir}/gir-1.0/GMime-%{base_ver}.gir




commit gmime for openSUSE:Factory

2018-02-03 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2018-02-03 15:39:15

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is "gmime"

Sat Feb  3 15:39:15 2018 rev:64 rq:572087 version:3.2.0

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2017-12-06 
08:50:58.889694731 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2018-02-03 
15:39:18.498322755 +0100
@@ -1,0 +2,6 @@
+Thu Dec 21 01:35:40 UTC 2017 - luc1...@linuxmail.org
+
+- Update to version 3.2.0:
+  + No news available.
+
+---

Old:

  gmime-3.0.5.tar.xz

New:

  gmime-3.2.0.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.thu9ma/_old  2018-02-03 15:39:19.290285763 +0100
+++ /var/tmp/diff_new_pack.thu9ma/_new  2018-02-03 15:39:19.298285390 +0100
@@ -24,13 +24,13 @@
 %define so_ver 3_0
 
 Name:   gmime
-Version:3.0.5
+Version:3.2.0
 Release:0
 Summary:MIME Parser and Utility Library
 License:LGPL-2.1+
 Group:  Productivity/Networking/Email/Utilities
 Url:http://spruce.sourceforge.net/gmime/
-Source: 
http://download.gnome.org/sources/gmime/3.0/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gmime/3.2/%{name}-%{version}.tar.xz
 Source99:   baselibs.conf
 BuildRequires:  gobject-introspection-devel >= 1.30.0
 BuildRequires:  gpgme-devel
@@ -102,11 +102,11 @@
 %files devel
 %defattr (-, root, root)
 %doc AUTHORS PORTING README TODO
+%doc %{_datadir}/gtk-doc/html/gmime-3.2/
 %{_datadir}/gir-1.0/GMime-%{base_ver}.gir
 %{_includedir}/gmime-%{base_ver}
 %{_libdir}/*.so
 %{_libdir}/pkgconfig/gmime-%{base_ver}.pc
-%{_datadir}/gtk-doc/html/gmime-%{base_ver}/
 %dir %{_datadir}/vala/vapi
 %{_datadir}/vala/vapi/gmime-3.0.deps
 %{_datadir}/vala/vapi/gmime-3.0.vapi

++ gmime-3.0.5.tar.xz -> gmime-3.2.0.tar.xz ++
 28937 lines of diff (skipped)




commit gmime for openSUSE:Factory

2017-12-05 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2017-12-06 08:50:57

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is "gmime"

Wed Dec  6 08:50:57 2017 rev:63 rq:548617 version:3.0.5

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2017-11-30 
16:31:40.562599332 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2017-12-06 
08:50:58.889694731 +0100
@@ -1,0 +2,8 @@
+Mon Dec  4 21:18:24 UTC 2017 - luc1...@linuxmail.org
+
+- Update to version 3.0.5:
+  + No changes visible for the user.
+- Adopt the use of %make_build macro instead of raw make command,
+  following the best practices.
+
+---

Old:

  gmime-3.0.4.tar.xz

New:

  gmime-3.0.5.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.oifKwm/_old  2017-12-06 08:50:59.449674230 +0100
+++ /var/tmp/diff_new_pack.oifKwm/_new  2017-12-06 08:50:59.449674230 +0100
@@ -24,7 +24,7 @@
 %define so_ver 3_0
 
 Name:   gmime
-Version:3.0.4
+Version:3.0.5
 Release:0
 Summary:MIME Parser and Utility Library
 License:LGPL-2.1+
@@ -80,7 +80,7 @@
--enable-gtk-doc \
--enable-crypto \
 --with-gacdir=%{_prefix}/lib
-make %{?_smp_mflags}
+%make_build
 
 %install
 %make_install

++ gmime-3.0.4.tar.xz -> gmime-3.0.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-3.0.4/build/vs2008/config-win32.h 
new/gmime-3.0.5/build/vs2008/config-win32.h
--- old/gmime-3.0.4/build/vs2008/config-win32.h 2017-11-20 23:49:46.0 
+0100
+++ new/gmime-3.0.5/build/vs2008/config-win32.h 2017-12-03 22:33:32.0 
+0100
@@ -5,7 +5,7 @@
 /* #undef ENABLE_WARNINGS */
 
 /* Define to the GMime version */
-#define GMIME_VERSION "3.0.4"
+#define GMIME_VERSION "3.0.5"
 
 /* Define if libc defines an altzone variable */
 /* #undef HAVE_ALTZONE */
@@ -145,13 +145,13 @@
 #define PACKAGE_NAME "gmime"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "gmime 3.0.4"
+#define PACKAGE_STRING "gmime 3.0.5"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "gmime"
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "3.0.4"
+#define PACKAGE_VERSION "3.0.5"
 
 /* The size of `off_t', as computed by sizeof. */
 #define SIZEOF_OFF_T 4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-3.0.4/build/vs2010/config-win32.h 
new/gmime-3.0.5/build/vs2010/config-win32.h
--- old/gmime-3.0.4/build/vs2010/config-win32.h 2017-11-20 23:49:46.0 
+0100
+++ new/gmime-3.0.5/build/vs2010/config-win32.h 2017-12-03 22:33:32.0 
+0100
@@ -5,7 +5,7 @@
 /* #undef ENABLE_WARNINGS */
 
 /* Define to the GMime version */
-#define GMIME_VERSION "3.0.4"
+#define GMIME_VERSION "3.0.5"
 
 /* Define if libc defines an altzone variable */
 /* #undef HAVE_ALTZONE */
@@ -145,13 +145,13 @@
 #define PACKAGE_NAME "gmime"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "gmime 3.0.4"
+#define PACKAGE_STRING "gmime 3.0.5"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "gmime"
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "3.0.4"
+#define PACKAGE_VERSION "3.0.5"
 
 /* The size of `off_t', as computed by sizeof. */
 #define SIZEOF_OFF_T 4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-3.0.4/configure new/gmime-3.0.5/configure
--- old/gmime-3.0.4/configure   2017-11-20 23:49:43.0 +0100
+++ new/gmime-3.0.5/configure   2017-12-03 22:31:12.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for gmime 3.0.4.
+# Generated by GNU Autoconf 2.69 for gmime 3.0.5.
 #
 # Report bugs to .
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='gmime'
 PACKAGE_TARNAME='gmime'
-PACKAGE_VERSION='3.0.4'
-PACKAGE_STRING='gmime 3.0.4'
+PACKAGE_VERSION='3.0.5'
+PACKAGE_STRING='gmime 3.0.5'
 PACKAGE_BUGREPORT='https://github.com/jstedfast/gmime/issues'
 PACKAGE_URL=''
 
@@ -1444,7 +1444,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures gmime 3.0.4 to adapt to many kinds of systems.
+\`configure' configures gmime 3.0.5 to adapt to many kinds of 

commit gmime for openSUSE:Factory

2017-11-30 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2017-11-30 16:31:39

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is "gmime"

Thu Nov 30 16:31:39 2017 rev:62 rq:544550 version:3.0.4

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2017-11-04 
19:27:28.213108938 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2017-11-30 
16:31:40.562599332 +0100
@@ -1,0 +2,7 @@
+Tue Nov 21 02:28:21 UTC 2017 - luc1...@linuxmail.org
+
+- Update to version 3.0.4:
+  + No changes visible for the user.
+- Drop gmime-fix-build-failure.patch: fixed upstream.
+
+---

Old:

  gmime-3.0.3.tar.xz
  gmime-fix-build-failure.patch

New:

  gmime-3.0.4.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.sHtMxc/_old  2017-11-30 16:31:41.334571247 +0100
+++ /var/tmp/diff_new_pack.sHtMxc/_new  2017-11-30 16:31:41.334571247 +0100
@@ -24,16 +24,14 @@
 %define so_ver 3_0
 
 Name:   gmime
-Version:3.0.3
+Version:3.0.4
 Release:0
-Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library
 License:LGPL-2.1+
 Group:  Productivity/Networking/Email/Utilities
+Url:http://spruce.sourceforge.net/gmime/
 Source: 
http://download.gnome.org/sources/gmime/3.0/%{name}-%{version}.tar.xz
 Source99:   baselibs.conf
-# PATCH-FIX-UPSTREAM gmime-fix-build-failure.patch bgo#789799 fezh...@suse.com 
-- Fix a build failure
-Patch0: gmime-fix-build-failure.patch
 BuildRequires:  gobject-introspection-devel >= 1.30.0
 BuildRequires:  gpgme-devel
 BuildRequires:  gtk-doc
@@ -74,7 +72,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %configure\
@@ -86,7 +83,7 @@
 make %{?_smp_mflags}
 
 %install
-%makeinstall
+%make_install
 find %{buildroot}%{_libdir} -type f -name "*.la" -delete -print
 
 %post -n libgmime-%{so_ver}-0 -p /sbin/ldconfig

++ gmime-3.0.3.tar.xz -> gmime-3.0.4.tar.xz ++
 6646 lines of diff (skipped)




commit gmime for openSUSE:Factory

2017-11-04 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2017-11-04 19:27:24

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is "gmime"

Sat Nov  4 19:27:24 2017 rev:61 rq:538273 version:3.0.3

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2017-09-13 
21:42:13.793779310 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2017-11-04 
19:27:28.213108938 +0100
@@ -1,0 +2,12 @@
+Thu Nov  2 04:20:41 UTC 2017 - fezh...@suse.com
+
+- Add gmime-fix-build-failure.patch: Fix a build failure
+  (bgo#789799).
+
+---
+Thu Nov  2 02:50:05 UTC 2017 - fezh...@suse.com
+
+- Update to version 3.0.3:
+  + Misc. fixes.
+
+---

Old:

  gmime-3.0.2.tar.xz

New:

  gmime-3.0.3.tar.xz
  gmime-fix-build-failure.patch



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.61VPXk/_old  2017-11-04 19:27:28.977081023 +0100
+++ /var/tmp/diff_new_pack.61VPXk/_new  2017-11-04 19:27:28.981080876 +0100
@@ -24,7 +24,7 @@
 %define so_ver 3_0
 
 Name:   gmime
-Version:3.0.2
+Version:3.0.3
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library
@@ -32,6 +32,8 @@
 Group:  Productivity/Networking/Email/Utilities
 Source: 
http://download.gnome.org/sources/gmime/3.0/%{name}-%{version}.tar.xz
 Source99:   baselibs.conf
+# PATCH-FIX-UPSTREAM gmime-fix-build-failure.patch bgo#789799 fezh...@suse.com 
-- Fix a build failure
+Patch0: gmime-fix-build-failure.patch
 BuildRequires:  gobject-introspection-devel >= 1.30.0
 BuildRequires:  gpgme-devel
 BuildRequires:  gtk-doc
@@ -72,6 +74,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure\

++ gmime-3.0.2.tar.xz -> gmime-3.0.3.tar.xz ++
 3313 lines of diff (skipped)

++ gmime-fix-build-failure.patch ++
>From c1518690d15dcb1022882b92c63f7eacb9960f15 Mon Sep 17 00:00:00 2001
From: Felix Zhang 
Date: Thu, 2 Nov 2017 12:03:23 +0800
Subject: [PATCH] Autocrypt: fix missing return in non-void function

https://bugzilla.gnome.org/show_bug.cgi?id=789799
---
 gmime/gmime-autocrypt.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gmime/gmime-autocrypt.c b/gmime/gmime-autocrypt.c
index 7b1fcd33..5fdd3c54 100644
--- a/gmime/gmime-autocrypt.c
+++ b/gmime/gmime-autocrypt.c
@@ -780,6 +780,7 @@ g_mime_autocrypt_header_list_get_header_at 
(GMimeAutocryptHeaderList *acheaders,
 
if (n < acheaders->array->len)
return (GMimeAutocryptHeader*)(acheaders->array->pdata[n]);
+   return NULL;
 }
 
 /**
-- 
2.12.3




commit gmime for openSUSE:Factory

2017-09-13 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2017-09-13 21:42:11

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is "gmime"

Wed Sep 13 21:42:11 2017 rev:60 rq:520895 version:3.0.2

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2017-09-04 
12:23:12.978075265 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2017-09-13 
21:42:13.793779310 +0200
@@ -1,0 +2,6 @@
+Sat Sep  2 19:03:46 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.0.2:
+  + Misc. fixes.
+
+---

Old:

  gmime-3.0.1.tar.xz

New:

  gmime-3.0.2.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.ArN8AP/_old  2017-09-13 21:42:15.805496280 +0200
+++ /var/tmp/diff_new_pack.ArN8AP/_new  2017-09-13 21:42:15.809495718 +0200
@@ -24,7 +24,7 @@
 %define so_ver 3_0
 
 Name:   gmime
-Version:3.0.1
+Version:3.0.2
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library

++ gmime-3.0.1.tar.xz -> gmime-3.0.2.tar.xz ++
 3057 lines of diff (skipped)




commit gmime for openSUSE:Factory

2017-09-04 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2017-09-04 12:23:07

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is "gmime"

Mon Sep  4 12:23:07 2017 rev:59 rq:519078 version:3.0.1

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2017-02-03 
17:40:56.489182635 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2017-09-04 
12:23:12.978075265 +0200
@@ -1,0 +2,23 @@
+Mon May 29 16:57:00 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.0.1:
+  + Misc. fixes.
+  + Updated and improved documentation.
+
+---
+Sat May 20 20:36:55 UTC 2017 - zai...@opensuse.org
+
+- Update to version 3.0.0:
+  + No upstream changes provided. Please check git log.
+- Add define base_ver and define so_ver, ease future upstream
+  version updates, and rename sub-packages to new 3.0 version.
+- Drop gmime-tools Obsolete, no longer needed.
+- Drop disabled conditional mono subpackage, BuildRequires and
+  configure call, no longer supported by upstream.
+- Add pkgconfig(vapigen) BuildRequires: Build vala support.
+- Pass --enable-crypto to configure, build new crypto support.
+- Drop obsolete MD5SUM fix of COPYING, no longer needed.
+- Drop obsolete CFLAGS hack, fixed upstream.
+- Stop running custom find_requires, no longer needed.
+
+---

Old:

  gmime-2.6.23.tar.xz

New:

  gmime-3.0.1.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.kCsCBP/_old  2017-09-04 12:23:14.297889715 +0200
+++ /var/tmp/diff_new_pack.kCsCBP/_new  2017-09-04 12:23:14.309888028 +0200
@@ -16,144 +16,99 @@
 #
 
 
-%bcond_without mono
+# Define a base version
+%define base_ver 3.0
+
+# Define a so version
+# NOTE - also update baselibs.conf when bumping this
+%define so_ver 3_0
 
 Name:   gmime
-Version:2.6.23
+Version:3.0.1
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library
 License:LGPL-2.1+
 Group:  Productivity/Networking/Email/Utilities
-Source: 
http://download.gnome.org/sources/gmime/2.6/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gmime/3.0/%{name}-%{version}.tar.xz
 Source99:   baselibs.conf
 BuildRequires:  gobject-introspection-devel >= 1.30.0
 BuildRequires:  gpgme-devel
 BuildRequires:  gtk-doc
-%if %{with mono}
-BuildRequires:  mono-devel
-BuildRequires:  pkgconfig(gapi-2.0)
-BuildRequires:  pkgconfig(glib-sharp-2.0)
-%endif
 BuildRequires:  zlib-devel
 BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(libidn) >= 0.0.0
+BuildRequires:  pkgconfig(vapigen)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 GMime is a C/C++ library for parsing and creating messages using
 the Multipurpose Internet Mail Extension (MIME).
 
-%package -n libgmime-2_6-0
+%package -n libgmime-%{so_ver}-0
 Summary:MIME Parser and Utility Library
-# The tools package was only for some sample applications, which are no longer 
installed since 2.6.5
 Group:  System/Libraries
-Obsoletes:  %{name}-tools < %{version}
 
-%description -n libgmime-2_6-0
+%description -n libgmime-%{so_ver}-0
 GMime is a C/C++ library for parsing and creating messages using
 the Multipurpose Internet Mail Extension (MIME).
 
-%package -n typelib-1_0-GMime-2_6
+%package -n typelib-1_0-GMime-%{so_ver}
 Summary:MIME Parser and Utility Library -- Introspection bindings
 Group:  System/Libraries
 
-%description -n typelib-1_0-GMime-2_6
-GMime is a C/C++ library for parsing and creating messages using
-the Multipurpose Internet Mail Extension (MIME).
-
-%if %{with mono}
-%package sharp
-Summary:MIME Parser and Utility Library -- Mono Bindings
-Group:  Development/Libraries/Other
-Requires:   glib-sharp2
-Requires:   libgmime-2_6-0 = %{version}
-# Obsoletes without Provides: gmime-2_4-sharp was an old name
-# during 2.4.x days, and even though API is different, we need to
-# get rid of it since some files are common.
-Obsoletes:  gmime-2_4-sharp < %{version}
-
-%description sharp
+%description -n typelib-1_0-GMime-%{so_ver}
 GMime is a C/C++ library for parsing and creating messages using
 the Multipurpose Internet Mail Extension (MIME).
-%endif
 
 %package devel
 Summary:MIME Parser and Utility Library -- Development Files
 Group:  Development/Libraries/C and C++
-Requires:   libgmime-2_6-0 = %{version}
+Requires:   libgmime-%{so_ver}-0 = %{version}
 
 %description devel
 

commit gmime for openSUSE:Factory

2017-02-03 Thread root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2017-01-27 10:43:19

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is "gmime"

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2016-12-26 
21:43:25.492400910 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2017-02-03 
17:40:56.489182635 +0100
@@ -1,0 +2,6 @@
+Sat Jan 21 22:49:33 UTC 2017 - zai...@opensuse.org
+
+- Update to version 2.6.23:
+  + gmime-crypto-context: Fixed naming.
+
+---

Old:

  gmime-2.6.22.tar.xz

New:

  gmime-2.6.23.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.RH4f1h/_old  2017-02-03 17:40:57.009109044 +0100
+++ /var/tmp/diff_new_pack.RH4f1h/_new  2017-02-03 17:40:57.013108478 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gmime
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %bcond_without mono
 
 Name:   gmime
-Version:2.6.22
+Version:2.6.23
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library

++ gmime-2.6.22.tar.xz -> gmime-2.6.23.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.22/ChangeLog new/gmime-2.6.23/ChangeLog
--- old/gmime-2.6.22/ChangeLog  2016-12-17 22:48:26.0 +0100
+++ new/gmime-2.6.23/ChangeLog  2017-01-21 23:27:20.0 +0100
@@ -1,3 +1,13 @@
+2017-01-21  Jeffrey Stedfast  
+
+   * README: Bumped version
+
+   * configure.ac: Bumped version to 2.6.23
+
+2017-01-17  Jeffrey Stedfast  
+
+   * gmime/gmime-crypto-context.c (g_mime_decryption_*): Fixed naming.
+
 2016-12-17  Jeffrey Stedfast  
 
* README: Bumped version
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.22/README new/gmime-2.6.23/README
--- old/gmime-2.6.22/README 2016-12-17 22:48:39.0 +0100
+++ new/gmime-2.6.23/README 2017-01-21 23:27:20.0 +0100
@@ -1,4 +1,4 @@
-GMime, version 2.6.22
+GMime, version 2.6.23
by Jeffrey Stedfast 
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.22/build/vs2008/config-win32.h 
new/gmime-2.6.23/build/vs2008/config-win32.h
--- old/gmime-2.6.22/build/vs2008/config-win32.h2016-12-17 
22:44:51.0 +0100
+++ new/gmime-2.6.23/build/vs2008/config-win32.h2017-01-21 
23:27:54.0 +0100
@@ -5,7 +5,7 @@
 /* #undef ENABLE_WARNINGS */
 
 /* Define to the GMime version */
-#define GMIME_VERSION "2.6.22"
+#define GMIME_VERSION "2.6.23"
 
 /* Define if libc defines an altzone variable */
 /* #undef HAVE_ALTZONE */
@@ -145,13 +145,13 @@
 #define PACKAGE_NAME "gmime"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "gmime 2.6.22"
+#define PACKAGE_STRING "gmime 2.6.23"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "gmime"
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "2.6.22"
+#define PACKAGE_VERSION "2.6.23"
 
 /* The size of `off_t', as computed by sizeof. */
 #define SIZEOF_OFF_T 4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.22/build/vs2010/config-win32.h 
new/gmime-2.6.23/build/vs2010/config-win32.h
--- old/gmime-2.6.22/build/vs2010/config-win32.h2016-12-17 
22:44:51.0 +0100
+++ new/gmime-2.6.23/build/vs2010/config-win32.h2017-01-21 
23:27:54.0 +0100
@@ -5,7 +5,7 @@
 /* #undef ENABLE_WARNINGS */
 
 /* Define to the GMime version */
-#define GMIME_VERSION "2.6.22"
+#define GMIME_VERSION "2.6.23"
 
 /* Define if libc defines an altzone variable */
 /* #undef HAVE_ALTZONE */
@@ -145,13 +145,13 @@
 #define PACKAGE_NAME "gmime"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "gmime 2.6.22"
+#define PACKAGE_STRING "gmime 2.6.23"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "gmime"
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "2.6.22"
+#define PACKAGE_VERSION "2.6.23"
 
 /* The size of `off_t', as computed by sizeof. */

commit gmime for openSUSE:Factory

2016-10-06 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2016-10-06 12:27:45

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is "gmime"

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2016-08-05 
18:12:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2016-10-06 
12:27:46.0 +0200
@@ -1,0 +2,7 @@
+Mon Oct  3 13:03:29 UTC 2016 - dims...@opensuse.org
+
+- Add baselibs.conf:
+  + produce libgmime-2_6-0-32bit package, needed by
+libxplayer-plparser18-32bit.
+
+---

New:

  baselibs.conf



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.ldOan5/_old  2016-10-06 12:27:47.0 +0200
+++ /var/tmp/diff_new_pack.ldOan5/_new  2016-10-06 12:27:47.0 +0200
@@ -26,6 +26,7 @@
 License:LGPL-2.1+
 Group:  Productivity/Networking/Email/Utilities
 Source: 
http://download.gnome.org/sources/gmime/2.6/%{name}-%{version}.tar.xz
+Source99:   baselibs.conf
 BuildRequires:  gobject-introspection-devel >= 1.30.0
 BuildRequires:  gpgme-devel
 BuildRequires:  gtk-doc

++ baselibs.conf ++
libgmime-2_6-0



commit gmime for openSUSE:Factory

2016-08-05 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2016-08-05 18:12:17

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is "gmime"

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2015-04-05 
02:03:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2016-08-05 
18:12:18.0 +0200
@@ -1,0 +2,5 @@
+Fri Jul 15 13:02:12 UTC 2016 - alarr...@suse.com
+
+- Update to GNOME 3.20.2  Fate#318572
+
+---



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.Z1CYde/_old  2016-08-05 18:12:19.0 +0200
+++ /var/tmp/diff_new_pack.Z1CYde/_new  2016-08-05 18:12:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gmime
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed




commit gmime for openSUSE:Factory

2015-04-04 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2015-04-05 02:03:03

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2014-03-10 
12:31:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2015-04-05 
02:03:04.0 +0200
@@ -1,0 +2,7 @@
+Tue Mar 31 09:39:25 UTC 2015 - dims...@opensuse.org
+
+- Add --enable-mono/--disable-mono to configure call, based on the
+  build condition. This avoids random rebuild failures (outside
+  OBS) if mono happens to be installed on the building system.
+
+---



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.oYXAJZ/_old  2015-04-05 02:03:04.0 +0200
+++ /var/tmp/diff_new_pack.oYXAJZ/_new  2015-04-05 02:03:04.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gmime
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -100,6 +100,11 @@
--enable-largefile\
--disable-static\
--enable-gtk-doc \
+%if %{with mono}
+--enable-mono \
+%else
+--disable-mono \
+%endif
 --with-gacdir=%{_prefix}/lib
 make %{?_smp_mflags}
 




commit gmime for openSUSE:Factory

2014-03-10 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2014-03-10 12:31:35

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2013-10-21 
12:29:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2014-03-10 
12:31:35.0 +0100
@@ -1,0 +2,14 @@
+Wed Feb 19 19:28:00 UTC 2014 - zai...@opensuse.org
+
+- Update to version 2.6.20:
+  + Improved performance by using a SIMD hack when scanning for the
+end of a line.
+  + Don't clear the mime_part header stream unless we actually
+remove a header.
+  + Only add nwritten to the total if we've written a MIME-Version
+header.
+  + Unref the disposition.
+  + Don't write out 2 spaces between the ':' and the first
+message-id (bgo#711305).
+
+---

Old:

  gmime-2.6.19.tar.xz

New:

  gmime-2.6.20.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.5lMVT3/_old  2014-03-10 12:31:36.0 +0100
+++ /var/tmp/diff_new_pack.5lMVT3/_new  2014-03-10 12:31:36.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gmime
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %bcond_without mono
 
 Name:   gmime
-Version:2.6.19
+Version:2.6.20
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library

++ gmime-2.6.19.tar.xz - gmime-2.6.20.tar.xz ++
 2231 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gmime for openSUSE:Factory

2013-10-21 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2013-10-21 12:29:06

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2013-09-23 
12:20:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2013-10-21 
12:29:08.0 +0200
@@ -1,0 +2,10 @@
+Sun Oct 20 13:48:42 UTC 2013 - zai...@opensuse.org
+
+- Update to version 2.6.19:
+  + Custom writer for References headers so that individual msgid
+tokens do not get folded (bgo#709031).
+  + Initialize the mutexes earlier (bgo#708818).
+  + Fixed warnings for glib = 2.35.1.
+  + Minor code/comment cleanup.
+
+---

Old:

  gmime-2.6.18.tar.xz

New:

  gmime-2.6.19.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.tXi8xg/_old  2013-10-21 12:29:09.0 +0200
+++ /var/tmp/diff_new_pack.tXi8xg/_new  2013-10-21 12:29:09.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without mono
 
 Name:   gmime
-Version:2.6.18
+Version:2.6.19
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library

++ gmime-2.6.18.tar.xz - gmime-2.6.19.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.18/ChangeLog new/gmime-2.6.19/ChangeLog
--- old/gmime-2.6.18/ChangeLog  2013-09-16 01:07:22.0 +0200
+++ new/gmime-2.6.19/ChangeLog  2013-10-19 15:33:20.0 +0200
@@ -1,3 +1,20 @@
+2013-10-19  Jeffrey Stedfast  f...@gnome.org
+
+   * README: Bumped version
+
+   * configure.ac: Bumped version to 2.6.19
+
+2013-09-29  Jeffrey Stedfast  f...@gnome.org
+
+   * gmime/gmime-message.c (write_references): Custom writer for
+   References headers so that individual msgid tokens do not get
+   folded. Fixes bug #709031.
+
+2013-09-26  Jeffrey Stedfast  f...@gnome.org
+
+   * gmime/gmime.c (g_mime_init): Initialize the mutexes
+   earlier. Fixes bug #708818.
+
 2013-09-15  Jeffrey Stedfast  f...@gnome.org
 
* README: Bumped version
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.18/README new/gmime-2.6.19/README
--- old/gmime-2.6.18/README 2013-09-16 01:07:34.0 +0200
+++ new/gmime-2.6.19/README 2013-10-19 15:33:25.0 +0200
@@ -1,4 +1,4 @@
-GMime, version 2.6.18
+GMime, version 2.6.19
by Jeffrey Stedfast f...@gnome.org
 
 
@@ -65,7 +65,7 @@
 LICENSE INFORMATION
 ---
 
-The GMime library is Copyright (C) 2000-2011 Jeffrey Stedfast.
+The GMime library is Copyright (C) 2000-2013 Jeffrey Stedfast.
 
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.18/build/vs2008/config-win32.h 
new/gmime-2.6.19/build/vs2008/config-win32.h
--- old/gmime-2.6.18/build/vs2008/config-win32.h2013-09-16 
01:14:24.0 +0200
+++ new/gmime-2.6.19/build/vs2008/config-win32.h2013-10-19 
16:02:17.0 +0200
@@ -5,7 +5,7 @@
 /* #undef ENABLE_WARNINGS */
 
 /* Define to the GMime version */
-#define GMIME_VERSION 2.6.18
+#define GMIME_VERSION 2.6.19
 
 /* Define if libc defines an altzone variable */
 /* #undef HAVE_ALTZONE */
@@ -145,13 +145,13 @@
 #define PACKAGE_NAME gmime
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING gmime 2.6.18
+#define PACKAGE_STRING gmime 2.6.19
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME gmime
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION 2.6.18
+#define PACKAGE_VERSION 2.6.19
 
 /* The size of `off_t', as computed by sizeof. */
 #define SIZEOF_OFF_T 4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.18/build/vs2010/config-win32.h 
new/gmime-2.6.19/build/vs2010/config-win32.h
--- old/gmime-2.6.18/build/vs2010/config-win32.h2013-09-16 
01:14:24.0 +0200
+++ new/gmime-2.6.19/build/vs2010/config-win32.h2013-10-19 
16:02:17.0 +0200
@@ -5,7 +5,7 @@
 /* #undef ENABLE_WARNINGS */
 
 /* Define to the GMime version */
-#define GMIME_VERSION 2.6.18
+#define GMIME_VERSION 2.6.19
 
 /* Define if libc defines an altzone variable */
 /* #undef HAVE_ALTZONE */
@@ -145,13 +145,13 @@
 #define PACKAGE_NAME gmime
 
 /* 

commit gmime for openSUSE:Factory

2013-09-23 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2013-09-23 12:20:43

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2013-08-10 
11:42:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2013-09-23 
12:20:45.0 +0200
@@ -1,0 +2,17 @@
+Mon Sep 16 09:24:11 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.6.18:
+  + Reset the content stream after writing it.
+  + Fixed an ABR by passing in an inend parameter.
+  + New convenience function that handles opening the file for you.
+  + Fixed g_mime_message_set_reply_to to parse the reply_to string
+just like g_mime_message_set_sender() does so that the reply_to
+field can be guaranteed to be in UTF-8.
+  + Updated API documentation for functions taking or returning
+strings to clarify whether the strings should be in
+UTF-8 or not.
+  + Various fixups to get rid of warnings in mono/GMime.metadata.
+  + Don't call g_type_init() if glib = 2.35.1.
+  + Properly deal with obsolete routing information.
+
+---

Old:

  gmime-2.6.17.tar.xz

New:

  gmime-2.6.18.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.Vgtv0R/_old  2013-09-23 12:20:46.0 +0200
+++ /var/tmp/diff_new_pack.Vgtv0R/_new  2013-09-23 12:20:46.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without mono
 
 Name:   gmime
-Version:2.6.17
+Version:2.6.18
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library

++ gmime-2.6.17.tar.xz - gmime-2.6.18.tar.xz ++
 2855 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gmime for openSUSE:Factory

2013-08-10 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2013-08-10 11:42:03

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2013-07-05 
15:03:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2013-08-10 
11:42:06.0 +0200
@@ -1,0 +2,14 @@
+Thu Aug  8 14:55:57 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.6.17:
+  + If no Content-Type header exists and the parent is a
+multipart/digest, default to message/rfc822 instead of
+text/plain.
+  + If the Content-Type header didn't exist, use the default
+content-type values instead of assuming text/plain.
+  + According to Rfc2046 Section 5.1.1, boundary markers may
+optionally be followed by lwsp (bgo#705612).
+  + Fixed to properly handle a 0-byte substream at the end of the
+very last source stream (bgo#701572).
+
+---

Old:

  gmime-2.6.16.tar.xz

New:

  gmime-2.6.17.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.bY6DDe/_old  2013-08-10 11:42:08.0 +0200
+++ /var/tmp/diff_new_pack.bY6DDe/_new  2013-08-10 11:42:08.0 +0200
@@ -19,7 +19,7 @@
 %bcond_without mono
 
 Name:   gmime
-Version:2.6.16
+Version:2.6.17
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library

++ gmime-2.6.16.tar.xz - gmime-2.6.17.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.16/ChangeLog new/gmime-2.6.17/ChangeLog
--- old/gmime-2.6.16/ChangeLog  2013-06-30 19:35:03.0 +0200
+++ new/gmime-2.6.17/ChangeLog  2013-08-08 14:22:30.0 +0200
@@ -1,3 +1,36 @@
+2013-08-08  Jeffrey Stedfast  f...@gnome.org
+
+   * README: Bumped version
+
+   * configure.ac: Bumped version to 2.6.17
+
+2013-08-08  Jeffrey Stedfast  f...@gnome.org
+
+   * gmime/gmime-parser.c (parser_content_type): If no Content-Type
+   header exists and the parent is a multipart/digest, default to
+   message/rfc822 instead of text/plain.
+   (parser_construct_leaf_part): If the Content-Type header didn't
+   exist, use the default content-type values instead of assuming
+   text/plain.
+
+2013-08-07  Jeffrey Stedfast  f...@gnome.org
+
+   According to Rfc2046 Section 5.1.1, boundary markers may optionally
+   be followed by lwsp.
+
+   * gmime/gmime-parser.c (is_boundary): New convenience function to
+   check that the text matches a boundary, possibly followed by lwsp.
+   (check_boundary): Use is_boundary().
+   (found_immediate_boundary): Use is_boundary().
+
+   Fixes bug #705612
+
+2013-07-02  Jeffrey Stedfast  f...@gnome.org
+
+   * gmime/gmime-stream-cat.c (stream_substream): Fixed to properly
+   handle a 0-byte substream at the end of the very last source
+   stream. Fixes bug #701572.
+
 2013-06-30  Jeffrey Stedfast  f...@gnome.org
 
* README: Bumped version
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.16/README new/gmime-2.6.17/README
--- old/gmime-2.6.16/README 2013-06-30 18:53:42.0 +0200
+++ new/gmime-2.6.17/README 2013-08-08 14:22:38.0 +0200
@@ -1,4 +1,4 @@
-GMime, version 2.6.16
+GMime, version 2.6.17
by Jeffrey Stedfast f...@gnome.org
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.16/build/vs2008/config-win32.h 
new/gmime-2.6.17/build/vs2008/config-win32.h
--- old/gmime-2.6.16/build/vs2008/config-win32.h2013-06-30 
18:56:58.0 +0200
+++ new/gmime-2.6.17/build/vs2008/config-win32.h2013-08-08 
15:14:47.0 +0200
@@ -5,7 +5,7 @@
 /* #undef ENABLE_WARNINGS */
 
 /* Define to the GMime version */
-#define GMIME_VERSION 2.6.16
+#define GMIME_VERSION 2.6.17
 
 /* Define if libc defines an altzone variable */
 /* #undef HAVE_ALTZONE */
@@ -145,13 +145,13 @@
 #define PACKAGE_NAME gmime
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING gmime 2.6.16
+#define PACKAGE_STRING gmime 2.6.17
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME gmime
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION 2.6.16
+#define PACKAGE_VERSION 2.6.17
 
 /* The size of `off_t', as computed by sizeof. */
 #define SIZEOF_OFF_T 4
diff -urN 

commit gmime for openSUSE:Factory

2013-07-05 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2013-07-05 15:03:56

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2013-04-02 
11:44:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2013-07-05 
15:03:57.0 +0200
@@ -1,0 +2,15 @@
+Wed Jul  3 07:02:25 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.6.16:
+  + rfc2047_encode: Respect the new
+GMIME_ENABLE_USE_ONLY_USER_CHARSETS initialization flag.
+  + New internal function that replaces the older header_fold()
+function. This new one uses the rfc2047 tokenizer so that we
+share the same rfc2047 workaround logic in the tokenizer
+(bgo#697407).
+  + Disable g_warnings unless warnings are enabled in the build.
+- Add gobject-introspection-devel BuildRequires in order to build
+  the introspected bindings.
+- Split typelib in typelib-1_0-GMime-2_6 subpackage.
+
+---

Old:

  gmime-2.6.15.tar.xz

New:

  gmime-2.6.16.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.ArZqIJ/_old  2013-07-05 15:03:58.0 +0200
+++ /var/tmp/diff_new_pack.ArZqIJ/_new  2013-07-05 15:03:58.0 +0200
@@ -15,16 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %bcond_without mono
 
 Name:   gmime
-Version:2.6.15
+Version:2.6.16
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library
 License:LGPL-2.1+
 Group:  Productivity/Networking/Email/Utilities
 Source: 
http://download.gnome.org/sources/gmime/2.6/%{name}-%{version}.tar.xz
+BuildRequires:  gobject-introspection-devel = 1.30.0
 BuildRequires:  gpgme-devel
 BuildRequires:  gtk-doc
 %if %{with mono}
@@ -50,6 +52,13 @@
 GMime is a C/C++ library for parsing and creating messages using
 the Multipurpose Internet Mail Extension (MIME).
 
+%package -n typelib-1_0-GMime-2_6
+Summary:MIME Parser and Utility Library -- Introspection bindings
+Group:  System/Libraries
+
+%description -n typelib-1_0-GMime-2_6
+GMime is a C/C++ library for parsing and creating messages using
+the Multipurpose Internet Mail Extension (MIME).
 
 %if %{with mono}
 %package sharp
@@ -114,6 +123,10 @@
 %doc AUTHORS COPYING ChangeLog README TODO
 %{_libdir}/*.so.*
 
+%files -n typelib-1_0-GMime-2_6
+%defattr(-,root,root)
+%{_libdir}/girepository-1.0/GMime-2.6.typelib
+
 %if %{with mono}
 %files sharp
 %defattr (-, root, root)
@@ -131,6 +144,7 @@
 %files devel
 %defattr (-, root, root)
 %doc PORTING
+%{_datadir}/gir-1.0/GMime-2.6.gir
 %{_includedir}/gmime-2.6
 %{_libdir}/*.so
 %{_libdir}/pkgconfig/gmime-2.6.pc

++ gmime-2.6.15.tar.xz - gmime-2.6.16.tar.xz ++
 19160 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gmime for openSUSE:Factory

2013-04-02 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2013-04-02 11:44:57

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2012-12-14 
07:04:16.0 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2013-04-02 
11:44:59.0 +0200
@@ -1,0 +2,19 @@
+Sat Mar 16 22:29:08 UTC 2013 - dmuel...@suse.com
+
+- add buildconditional for being able to build without mono
+
+---
+Tue Feb 19 15:37:25 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.6.15:
+  + gmime/gmime-filter-html.c (html_convert): Fixed to convert the
+last line of input even if it doesn't end with a \n.
+
+---
+Tue Feb 19 09:35:39 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.6.14:
+  + Fixed the logic to actually scan for the beginning of the
+mailbox.
+
+---

Old:

  gmime-2.6.13.tar.xz

New:

  gmime-2.6.15.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.GN7mli/_old  2013-04-02 11:45:00.0 +0200
+++ /var/tmp/diff_new_pack.GN7mli/_new  2013-04-02 11:45:00.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gmime
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,9 +15,10 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+%bcond_without mono
 
 Name:   gmime
-Version:2.6.13
+Version:2.6.15
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library
@@ -26,11 +27,13 @@
 Source: 
http://download.gnome.org/sources/gmime/2.6/%{name}-%{version}.tar.xz
 BuildRequires:  gpgme-devel
 BuildRequires:  gtk-doc
+%if %{with mono}
 BuildRequires:  mono-devel
-BuildRequires:  zlib-devel
 BuildRequires:  pkgconfig(gapi-2.0)
-BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(glib-sharp-2.0)
+%endif
+BuildRequires:  zlib-devel
+BuildRequires:  pkgconfig(glib-2.0)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -47,6 +50,8 @@
 GMime is a C/C++ library for parsing and creating messages using
 the Multipurpose Internet Mail Extension (MIME).
 
+
+%if %{with mono}
 %package sharp
 Summary:MIME Parser and Utility Library -- Mono Bindings
 Group:  Development/Libraries/Other
@@ -60,6 +65,7 @@
 %description sharp
 GMime is a C/C++ library for parsing and creating messages using
 the Multipurpose Internet Mail Extension (MIME).
+%endif
 
 %package devel
 Summary:MIME Parser and Utility Library -- Development Files
@@ -108,6 +114,7 @@
 %doc AUTHORS COPYING ChangeLog README TODO
 %{_libdir}/*.so.*
 
+%if %{with mono}
 %files sharp
 %defattr (-, root, root)
 %dir %{_prefix}/lib/mono/gmime-sharp-2.6
@@ -119,6 +126,7 @@
 %{_datadir}/gapi-2.0/gmime-api.xml
 # devel file:
 %{_libdir}/pkgconfig/gmime-sharp-2.6.pc
+%endif
 
 %files devel
 %defattr (-, root, root)

++ gmime-2.6.13.tar.xz - gmime-2.6.15.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.13/ChangeLog new/gmime-2.6.15/ChangeLog
--- old/gmime-2.6.13/ChangeLog  2012-12-09 21:22:48.0 +0100
+++ new/gmime-2.6.15/ChangeLog  2013-02-19 15:43:25.0 +0100
@@ -1,3 +1,25 @@
+2013-02-19  Jeffrey Stedfast  f...@gnome.org
+
+   * README: Bumped version
+
+   * configure.ac: Bumped version to 2.6.15
+
+2013-02-19  Jeffrey Stedfast  f...@gnome.org
+
+   * gmime/gmime-filter-html.c (html_convert): Fixed to convert the
+   last line of input even if it doesn't end with a \n.
+
+2013-02-18  Jeffrey Stedfast  f...@gnome.org
+
+   * README: Bumped version
+
+   * configure.ac: Bumped version to 2.6.14
+
+2013-02-18  Jeffrey Stedfast  f...@gnome.org
+
+   * util/url-scanner.c (url_addrspec_start): Fixed the logic to
+   actually scan for the beginning of the mailbox.
+
 2012-12-09  Jeffrey Stedfast  f...@gnome.org
 
* README: Bumped version
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gmime-2.6.13/README new/gmime-2.6.15/README
--- old/gmime-2.6.13/README 2012-12-09 21:22:24.0 +0100
+++ 

commit gmime for openSUSE:Factory

2012-12-13 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2012-12-14 07:04:14

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2012-11-12 
12:35:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2012-12-14 
07:04:16.0 +0100
@@ -1,0 +2,11 @@
+Mon Dec 10 08:31:54 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.6.13:
+  + g_mime_header_iter_{first,last}: Make sure the list isn't
+empty.
+  + g_mime_header_list_prepend: Prepend the header to the list,
+don't *append* it. Oops.
+  + g_mime_header_list_clear: Don't forget to reset the linked list
+so that it doesn't contained free'd nodes.
+
+---

Old:

  gmime-2.6.12.tar.xz

New:

  gmime-2.6.13.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.45SDns/_old  2012-12-14 07:04:18.0 +0100
+++ /var/tmp/diff_new_pack.45SDns/_new  2012-12-14 07:04:18.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gmime
-Version:2.6.12
+Version:2.6.13
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gmime for openSUSE:Factory

2012-11-12 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2012-11-12 12:35:52

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2012-10-22 
22:04:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2012-11-12 
12:35:54.0 +0100
@@ -1,0 +2,16 @@
+Mon Nov  5 08:52:04 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.6.12:
+  + stream_read): Initialize presize to READ_PAD instead of
+READ_SIZE to prevent potential buffer underruns.
+  + unzip_filter: Apparently Z_BUF_ERROR isn't actually an error
+unless there is input available.
+  + parser_push_boundary: Don't use strcmp to check if the boundary
+is an mbox boundary, use a direct pointer comparison so that we
+can handle Content-Type boundary parameters with a value of
+From 
+  + parser_step_headers: Don't assume that the first non-header
+line we find indicates the start of the content unless we've
+already gotten some basic headers (bgo#686223). 
+
+---

Old:

  gmime-2.6.11.tar.xz

New:

  gmime-2.6.12.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.ZkQmVO/_old  2012-11-12 12:35:55.0 +0100
+++ /var/tmp/diff_new_pack.ZkQmVO/_new  2012-11-12 12:35:55.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gmime
-Version:2.6.11
+Version:2.6.12
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gmime for openSUSE:Factory

2012-10-22 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2012-10-22 22:04:13

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2012-06-25 
12:28:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2012-10-22 
22:04:15.0 +0200
@@ -1,0 +2,7 @@
+Fri Oct 19 09:48:55 UTC 2012 - zai...@opensuse.org
+
+- Update to version 2.6.11:
+  + Misc fixes.
+  + Bugs fixed: bgo#679388, bgo#674032.
+
+---

Old:

  gmime-2.6.10.tar.xz

New:

  gmime-2.6.11.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.ISs5Cf/_old  2012-10-22 22:04:17.0 +0200
+++ /var/tmp/diff_new_pack.ISs5Cf/_new  2012-10-22 22:04:17.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gmime
-Version:2.6.10
+Version:2.6.11
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gmime for openSUSE:Factory

2012-06-25 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2012-06-25 12:27:58

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2012-05-03 
10:56:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2012-06-25 
12:28:00.0 +0200
@@ -1,0 +2,7 @@
+Mon Jun 18 13:12:12 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.6.10:
+  + Build fixes.
+  + Bugs fixed: bgo#676692, bgo#677088, bgo#676341.
+
+---

Old:

  gmime-2.6.9.tar.xz

New:

  gmime-2.6.10.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.ATfn9X/_old  2012-06-25 12:28:02.0 +0200
+++ /var/tmp/diff_new_pack.ATfn9X/_new  2012-06-25 12:28:02.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gmime
-Version:2.6.9
+Version:2.6.10
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gmime for openSUSE:Factory

2012-05-03 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2012-05-03 10:56:01

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2012-03-19 
09:56:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2012-05-03 
10:56:08.0 +0200
@@ -1,0 +2,8 @@
+Mon Apr 23 12:30:08 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.6.9:
+  + Properly handle application/x-pkcs7-signature (bgo#674032)
+- Changes from version 2.6.8:
+  + Bugs fixed: bgo#671785, bgo#673493.
+
+---

Old:

  gmime-2.6.7.tar.xz

New:

  gmime-2.6.9.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.7Nsu63/_old  2012-05-03 10:56:11.0 +0200
+++ /var/tmp/diff_new_pack.7Nsu63/_new  2012-05-03 10:56:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gmime
-Version:2.6.7
+Version:2.6.9
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gmime for openSUSE:Factory

2012-03-19 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2012-03-19 09:56:42

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2012-03-02 
13:47:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2012-03-19 
09:56:44.0 +0100
@@ -1,0 +2,9 @@
+Sat Mar 10 08:55:45 UTC 2012 - zai...@opensuse.org
+
+- Update to version 2.6.7:
+  + Remove the trailing comma from the last enum item to silence
+gcc -pedantic warnings.
+  + Be lenient from From  lines found in message headers.
+(bgo#671680). 
+
+---

Old:

  gmime-2.6.6.tar.xz

New:

  gmime-2.6.7.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.chOnVq/_old  2012-03-19 09:56:45.0 +0100
+++ /var/tmp/diff_new_pack.chOnVq/_new  2012-03-19 09:56:45.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gmime
-Version:2.6.6
+Version:2.6.7
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gmime for openSUSE:Factory

2012-03-02 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2012-03-02 13:47:56

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2012-01-17 
16:05:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2012-03-02 
13:47:58.0 +0100
@@ -1,0 +2,40 @@
+Thu Mar  1 13:26:28 UTC 2012 - cfarr...@suse.com
+
+- license update: LGPL-2.1+
+  Reduced to applicable license in SPDX format
+
+---
+Tue Feb 21 20:10:12 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.6.6:
+  + configure.ac: Add a --enable-smime flag which defaults to no.
+  + Fixed multipart/signed logic.
+  + Handle non-standard Content-Transfer-Encodings names: 7-bit,
+8-bit, and x-uue (the standard names for these are 7bit, 8bit,
+and x-uuencode).
+  + Various other code changes.
+  + Several optimizations.
+
+---
+Sat Feb 18 16:10:50 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.6.5:
+  + Stop installing uuencode/uudecode.
+  + configure.ac: Added --with-gacdir to fix bgo#667072
+  + Several other build fixes.
+  + Bug fixes, including: bgo#667684, bgo#668085.
+- Drop tools subpackage: those are not really usable programs, but
+  are meant as examples (they moved to the examples folder in the
+  source code). Add a gmime-tools Obsoletes to libgmime-2_6-0 for
+  smooth upgrades.
+- Pass --with-gacdir=%{_prefix}/lib to configure.
+- Drop patches:
+  + gmime-mono-arch-indep.patch: fixed upstream by introducing
+--with-gacdir option to configure
+  + gmime-compiler-warnings.patch: fixed upstream
+- Remove libtool BuildRequires and call to autoreconf, as they were
+  only needed by the patches,
+- Remove xz BuildRequires now that it comes for free in the build
+  system.
+
+---

Old:

  gmime-2.6.4.tar.xz
  gmime-compiler-warnings.patch
  gmime-mono-arch-indep.patch

New:

  gmime-2.6.6.tar.xz



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.gAep91/_old  2012-03-02 13:48:00.0 +0100
+++ /var/tmp/diff_new_pack.gAep91/_new  2012-03-02 13:48:00.0 +0100
@@ -15,25 +15,18 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   gmime
-Version:2.6.4
+Version:2.6.6
 Release:0
 Url:http://spruce.sourceforge.net/gmime/
 Summary:MIME Parser and Utility Library
-License:LGPL-2.1+ ; SUSE-Public-Domain ; MIT
+License:LGPL-2.1+
 Group:  Productivity/Networking/Email/Utilities
 Source: 
http://download.gnome.org/sources/gmime/2.6/%{name}-%{version}.tar.xz
-# PATCH-FIX-OPENSUSE gmime-mono-arch-indep.patch bgo#667072 
dims...@opensuse.org -- Do not install mono libs to libdir
-Patch0: gmime-mono-arch-indep.patch
-# PATCH-FIX-UPSTREAM gmime-compiler-warnings.patch bgo#667684 
dims...@opensuse.org -- Fix compiler warnings, taken from upstream git, commit 
3d1a969
-Patch1: gmime-compiler-warnings.patch
 BuildRequires:  gpgme-devel
 BuildRequires:  gtk-doc
-# Needed for patch0
-BuildRequires:  libtool
 BuildRequires:  mono-devel
-# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
-BuildRequires:  xz
 BuildRequires:  zlib-devel
 BuildRequires:  pkgconfig(gapi-2.0)
 BuildRequires:  pkgconfig(glib-2.0)
@@ -44,21 +37,11 @@
 GMime is a C/C++ library for parsing and creating messages using
 the Multipurpose Internet Mail Extension (MIME).
 
-%package tools
-Summary:MIME Parser and Utility Library -- Tools
-License:GPL-2.0+
-Group:  Productivity/Networking/Email/Utilities
-Provides:   gmime-2_4 = %{version}
-Obsoletes:  gmime-2_4  %{version}
-
-%description tools
-GMime is a C/C++ library for parsing and creating messages using
-the Multipurpose Internet Mail Extension (MIME).
-
 %package -n libgmime-2_6-0
 Summary:MIME Parser and Utility Library
-License:LGPL-2.1+ ; SUSE-Public-Domain ; MIT
 Group:  System/Libraries
+# The tools package was only for some sample applications, which are no longer 
installed since 2.6.5
+Obsoletes:  %{name}-tools  %{version}
 
 %description -n libgmime-2_6-0
 GMime is a C/C++ library for parsing and creating messages using
@@ -66,9 +49,9 @@
 
 %package sharp
 Summary:MIME Parser and Utility Library -- Mono Bindings
-License:LGPL-2.1+ ; SUSE-Public-Domain ; 

commit gmime for openSUSE:Factory

2012-01-17 Thread h_root
Hello community,

here is the log from the commit of package gmime for openSUSE:Factory checked 
in at 2012-01-17 11:32:56

Comparing /work/SRC/openSUSE:Factory/gmime (Old)
 and  /work/SRC/openSUSE:Factory/.gmime.new (New)


Package is gmime, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/gmime/gmime.changes  2012-01-06 
11:44:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.gmime.new/gmime.changes 2012-01-17 
16:05:48.0 +0100
@@ -1,0 +2,39 @@
+Thu Jan 12 16:44:26 UTC 2012 - vu...@opensuse.org
+
+- The binaries shipped in the tools subpackage are GPL-2.0+, so fix
+  the license of this subpackage. Fix bnc#741054.
+
+---
+Wed Jan 11 11:53:16 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.6.4:
+  + GMime 2.6.x is ABI/API incompatible to GMime 2.4.x.
+  + Most notable is the lack of GMimeSession which has been
+dropped in favor of a much simpler callback mechanism.
+GMimeCipherContexts constructors now take a password_request
+callback function rather than forcing you to subclass
+GMimeSession to get this functionality.
+  + Several other API changes, see documentation.
+  + See ChangeLog for full details since 2.4.x.
+- Add xz BuildRequires because we can't build a package for a
+  xz-compressed tarball without explicitly specifying that... See
+  bnc#697467 for more details.
+- Add gpgme-devel BuildRequires: new upstream dependency.
+- Add gmime-compiler-warnings.patch: Fix compiler warnings and brp
+  checks about function reach end of statement without return
+  value.
+- Add gmime-mono-arch-indep.patch: Revert commit bce1443e321a2: we
+  do not install mono libraries to %{_libdir}, but %{_prefix}/lib/
+- Add libtool BuildRequires and call to autoreconf, as the above
+  patch touches the build system.
+- Rename libgmime-2_4-2 subpackage to libgmime-2_6-0, following the
+  upstream soname bump.
+- Remove gmime-2_4-devel and gmime-2_4-doc Provides/Obsoletes from
+  devel subpackage: with 2.6, all files are now different in this
+  package.
+- Remove gmime-2_4-sharp Provides from sharp subpackage: since 2.6
+  has a different API, a Provides is wrong. We keep the Obsoletes,
+  though, as there are some common files and the gmime-2_4-sharp
+  packages should get removed anyway.
+
+---

Old:

  gmime-2.4.28.tar.bz2

New:

  gmime-2.6.4.tar.xz
  gmime-compiler-warnings.patch
  gmime-mono-arch-indep.patch



Other differences:
--
++ gmime.spec ++
--- /var/tmp/diff_new_pack.eQcY78/_old  2012-01-17 16:05:49.0 +0100
+++ /var/tmp/diff_new_pack.eQcY78/_new  2012-01-17 16:05:49.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gmime
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,23 +15,29 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   gmime
-Version:2.4.28
-Release:1
+Version:2.6.4
+Release:0
 Url:http://spruce.sourceforge.net/gmime/
-Group:  Productivity/Networking/Email/Utilities
-License:LGPLv2.1+ ; Public Domain, Freeware ; MIT License (or similar)
 Summary:MIME Parser and Utility Library
-Source: 
http://download.gnome.org/sources/gmime/2.4/%{name}-%{version}.tar.bz2
+License:LGPL-2.1+ ; SUSE-Public-Domain ; MIT
+Group:  Productivity/Networking/Email/Utilities
+Source: 
http://download.gnome.org/sources/gmime/2.6/%{name}-%{version}.tar.xz
+# PATCH-FIX-OPENSUSE gmime-mono-arch-indep.patch bgo#667072 
dims...@opensuse.org -- Do not install mono libs to libdir
+Patch0: gmime-mono-arch-indep.patch
+# PATCH-FIX-UPSTREAM gmime-compiler-warnings.patch bgo#667684 
dims...@opensuse.org -- Fix compiler warnings, taken from upstream git, commit 
3d1a969
+Patch1: gmime-compiler-warnings.patch
+BuildRequires:  gpgme-devel
 BuildRequires:  gtk-doc
+# Needed for patch0
+BuildRequires:  libtool
 BuildRequires:  mono-devel
+# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
+BuildRequires:  xz
 BuildRequires:  zlib-devel
+BuildRequires:  pkgconfig(gapi-2.0)
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(glib-sharp-2.0)
-BuildRequires:  pkgconfig(gapi-2.0)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -39,9 +45,9 @@
 the Multipurpose Internet