Your message dated Wed, 28 Mar 2012 12:20:22 +0000
with message-id <[email protected]>
and subject line Bug#663216: fixed in tomboy 1.10.0-1
has caused the Debian Bug report #663216,
regarding Please build against gmime 2.6
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
663216: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=663216
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: tomboy
Version: 1.8.3-1
Severity: normal
Tags: patch
Hi,
I'll be switching totem-pl-parser over to gmime 2.6.
totem and tomboy are both installed via the gnome meta-packages,
so it would be great if tomboy is switched over to gmime 2.6,
too so we don't require both gmime 2.4. and 2.6.
The attached patch should do the trick.
Cheers,
Michael
-- System Information:
Debian Release: wheezy/sid
APT prefers unstable
APT policy: (500, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 3.2.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
-- no debconf information
diff --git a/debian/control b/debian/control
index 56d41af..4201b6d 100644
--- a/debian/control
+++ b/debian/control
@@ -14,7 +14,7 @@ Build-Depends: debhelper (>= 7.0.50),
imagemagick,
libgtk2.0-dev (>= 2.14.0),
libatk1.0-dev (>= 1.2.4),
- libgmime2.4-cil-dev,
+ libgmime2.6-cil-dev,
gnome-doc-utils (>= 0.3.2),
scrollkeeper,
libdbus1.0-cil-dev (>= 0.4),
diff --git a/debian/patches/40_gmime2.6.patch b/debian/patches/40_gmime2.6.patch
new file mode 100644
index 0000000..20e015f
--- /dev/null
+++ b/debian/patches/40_gmime2.6.patch
@@ -0,0 +1,100 @@
+diff --git a/configure b/configure
+index 12c19f7..b809ac6 100755
+--- a/configure
++++ b/configure
+@@ -14977,7 +14977,79 @@ done
+ # Evolution.dll needs GMime#
+ #
+ if test "x$ENABLE_GNOME" != "xno"; then
+- if pkg-config --exists gmime-sharp-2.4; then
++ if pkg-config --exists gmime-sharp-2.6; then
++
++pkg_failed=no
++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for EVOLUTION" >&5
++$as_echo_n "checking for EVOLUTION... " >&6; }
++
++if test -n "$EVOLUTION_CFLAGS"; then
++ pkg_cv_EVOLUTION_CFLAGS="$EVOLUTION_CFLAGS"
++ elif test -n "$PKG_CONFIG"; then
++ if test -n "$PKG_CONFIG" && \
++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gmime-sharp-2.6\""; } >&5
++ ($PKG_CONFIG --exists --print-errors "gmime-sharp-2.6") 2>&5
++ ac_status=$?
++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
++ test $ac_status = 0; }; then
++ pkg_cv_EVOLUTION_CFLAGS=`$PKG_CONFIG --cflags "gmime-sharp-2.6" 2>/dev/null`
++ test "x$?" != "x0" && pkg_failed=yes
++else
++ pkg_failed=yes
++fi
++ else
++ pkg_failed=untried
++fi
++if test -n "$EVOLUTION_LIBS"; then
++ pkg_cv_EVOLUTION_LIBS="$EVOLUTION_LIBS"
++ elif test -n "$PKG_CONFIG"; then
++ if test -n "$PKG_CONFIG" && \
++ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gmime-sharp-2.6\""; } >&5
++ ($PKG_CONFIG --exists --print-errors "gmime-sharp-2.6") 2>&5
++ ac_status=$?
++ $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
++ test $ac_status = 0; }; then
++ pkg_cv_EVOLUTION_LIBS=`$PKG_CONFIG --libs "gmime-sharp-2.6" 2>/dev/null`
++ test "x$?" != "x0" && pkg_failed=yes
++else
++ pkg_failed=yes
++fi
++ else
++ pkg_failed=untried
++fi
++
++
++
++if test $pkg_failed = yes; then
++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
++$as_echo "no" >&6; }
++
++if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
++ _pkg_short_errors_supported=yes
++else
++ _pkg_short_errors_supported=no
++fi
++ if test $_pkg_short_errors_supported = yes; then
++ EVOLUTION_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gmime-sharp-2.6" 2>&1`
++ else
++ EVOLUTION_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gmime-sharp-2.6" 2>&1`
++ fi
++ # Put the nasty error message in config.log where it belongs
++ echo "$EVOLUTION_PKG_ERRORS" >&5
++
++ ENABLE_EVOLUTION="no"
++elif test $pkg_failed = untried; then
++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
++$as_echo "no" >&6; }
++ ENABLE_EVOLUTION="no"
++else
++ EVOLUTION_CFLAGS=$pkg_cv_EVOLUTION_CFLAGS
++ EVOLUTION_LIBS=$pkg_cv_EVOLUTION_LIBS
++ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
++$as_echo "yes" >&6; }
++ ENABLE_EVOLUTION="yes"
++fi
++ elif pkg-config --exists gmime-sharp-2.4; then
+
+ pkg_failed=no
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EVOLUTION" >&5
+diff --git a/configure.in b/configure.in
+index d03c34d..42ce4fc 100644
+--- a/configure.in
++++ b/configure.in
+@@ -232,7 +232,9 @@ done
+ # Evolution.dll needs GMime#
+ #
+ if test "x$ENABLE_GNOME" != "xno"; then
+- if pkg-config --exists gmime-sharp-2.4; then
++ if pkg-config --exists gmime-sharp-2.6; then
++ PKG_CHECK_MODULES(EVOLUTION, gmime-sharp-2.6, ENABLE_EVOLUTION="yes", ENABLE_EVOLUTION="no")
++ elif pkg-config --exists gmime-sharp-2.4; then
+ PKG_CHECK_MODULES(EVOLUTION, gmime-sharp-2.4, ENABLE_EVOLUTION="yes", ENABLE_EVOLUTION="no")
+ else
+ PKG_CHECK_MODULES(EVOLUTION, gmime-sharp >= 2.2.7, ENABLE_EVOLUTION="yes", ENABLE_EVOLUTION="no")
diff --git a/debian/patches/series b/debian/patches/series
index 7d7ba76..db492f9 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
01_dllmaps.patch
20_remove_pcfile_requires
30_fix_manpage_syntax
+40_gmime2.6.patch
--- End Message ---
--- Begin Message ---
Source: tomboy
Source-Version: 1.10.0-1
We believe that the bug you reported is fixed in the latest version of
tomboy, which is due to be installed in the Debian FTP archive:
tomboy_1.10.0-1.debian.tar.gz
to main/t/tomboy/tomboy_1.10.0-1.debian.tar.gz
tomboy_1.10.0-1.dsc
to main/t/tomboy/tomboy_1.10.0-1.dsc
tomboy_1.10.0-1_amd64.deb
to main/t/tomboy/tomboy_1.10.0-1_amd64.deb
tomboy_1.10.0.orig.tar.xz
to main/t/tomboy/tomboy_1.10.0.orig.tar.xz
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Iain Lane <[email protected]> (supplier of updated tomboy package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Wed, 28 Mar 2012 11:32:48 +0100
Source: tomboy
Binary: tomboy
Architecture: source amd64
Version: 1.10.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian CLI Applications Team
<[email protected]>
Changed-By: Iain Lane <[email protected]>
Description:
tomboy - desktop note taking program using Wiki style links
Closes: 645990 663216
Changes:
tomboy (1.10.0-1) unstable; urgency=low
.
* [277fd7f] Imported Upstream version 1.10.0
- Remember last open notes on hard shutdown
* [b863565] Stable release; update gbp.conf branches
.
tomboy (1.9.10-1) unstable; urgency=low
.
* [91a0237] Imported Upstream version 1.9.10
- Fix doc errors for sync
- New and updated (doc) translations
.
tomboy (1.9.9-2) experimental; urgency=low
.
* Merge from unstable
* [b6e36a3] Use GMime 2.6 instead of 2.4; the latter is being dropped.
(Closes: #663216)
* [934f580] Use dh sequence explicitly instead of via deprecated cli.make
include
* [7cb46e3] Standards-Version → 3.9.3, no changes required
.
tomboy (1.9.9-1) experimental; urgency=low
.
* New upstream release 1.9.9 (still no pristine-tar)
- Fix link names after HTML export
- fix Export All to HTML
.
tomboy (1.9.5-1) experimental; urgency=low
.
* [ceb1079] Update watchfile to look for xz tarballs
* [ef866ec] Imported Upstream version 1.9.5 (note: no pristine-tar data for
this yet, due to missing pristine-xz)
* Fix validation errors in docs
* Fix delayed logouts with GnomeSession (Closes: #645990)
* Sync thread improvements
* Add missing commandline options to man pages (#665532)
* Add 256x256 icon for GNOME 3
* [fcde26a] Drop deprecated cli.make and use --with cli directly
.
tomboy (1.9.3-1) experimental; urgency=low
.
* [7e76896] Imported Upstream version 1.9.3
+ Translation updates
.
tomboy (1.9.2-1) experimental; urgency=low
.
* [72d7885] Update gbp.conf for experimental
* [fca59c6] Imported Upstream version 1.9.2
+ Add support for latest versions of Firefox
+ Translation updates
Checksums-Sha1:
4600131b484c67856a488d01a780889db68fd315 2438 tomboy_1.10.0-1.dsc
88e61a6e38a8d839561e75e0be2a763cc1eadc6b 6614172 tomboy_1.10.0.orig.tar.xz
ac09e5959b04d3cbb38ff23e1e0eed0f451858e3 18813 tomboy_1.10.0-1.debian.tar.gz
33f5261a93d6e452531d55982e8a06c8f814b1b9 4844120 tomboy_1.10.0-1_amd64.deb
Checksums-Sha256:
982e51482cdcd8c403059ec9340be0185ba1c426ee823e9d77a47085f813461e 2438
tomboy_1.10.0-1.dsc
a0f6550560c03aabb311584694bc2a729e688ad94c5d9999137081edaba0c714 6614172
tomboy_1.10.0.orig.tar.xz
2ac4029ba248cca740d9c53881f78a305fda61982e7694123d21e3ee365e0989 18813
tomboy_1.10.0-1.debian.tar.gz
aeb12d9870da6a17e0319b20b978a44388daca3a6147092e4f92e7448ad93dc4 4844120
tomboy_1.10.0-1_amd64.deb
Files:
1e263e3ede56f5b15a08c7c7a9954ba8 2438 gnome optional tomboy_1.10.0-1.dsc
5cd6bd94c8e9231368f830c7d0e32da1 6614172 gnome optional
tomboy_1.10.0.orig.tar.xz
56831e8814bfa51085fd3157ec796dde 18813 gnome optional
tomboy_1.10.0-1.debian.tar.gz
ad59794711bd3d90b5415e639fa23156 4844120 gnome optional
tomboy_1.10.0-1_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iQIcBAEBCAAGBQJPcuqYAAoJEONS1cUcUEHUbC4QAJhKvzWlgWV5+sQzfdp5NLLG
FbzAVTR5Aww3MfbDwwndxkg+vzzq3sgiA4FsGO/9A+kDyZcblkNsVeRDJvQi8tvn
z9m+EF8v8BV8Z/KtbUFBcMI7xG8Env6SSHzXMBd+eKlykOPGTaXViyp8TQMbB4by
WB08e3SDT1Za+lALuuWGQ8LpvVTnVuH2TPtrsa5CL/KQA/dN08lXDa5LHQwiKQt7
UXZYuPjVEH4MlOGPPpqK4SW2KEF7uSUG/oK6647bfF0GCZeVa2lc52nPw8t2YCM6
Qj3UOsWYW18FJSNnSBXqW1BlMbNLbTf8f46fu8BcT2/dbATrHJXdgdhOXLOda+pG
xT28duPlGtjOu4JD5+O+BXr7Veh0ooQbQfXTSBh7+pu/CMclguN8KIT8n9mCmMS/
52fD3e/gX3MRfNZoWg2Xu3jI41iI33uTDy9w0FZ8e3XXLuf/sgZvQ3t6VzGvM489
3zSZ1ztT/wmLKL6bvlV8EnQ6PNtWsd30vM86f1UkFE3Bpky87DkFxQiwSUWLNdf+
mM4cYOtt/inKiep7oiJ8DtH8zSLK6J34TUwfUC1Ccy3nWTP0giyywlsGakVt8BvI
Mod2RoWV/BDuOs56HWGRkTIWgIGojI7sh9y+o9vsPjCQHuecFgzhuXt2/5CsCD5z
I9PJkf2wzDCRAtOq1ZXG
=ozv2
-----END PGP SIGNATURE-----
--- End Message ---