Your message dated Mon, 12 Mar 2012 22:10:01 +0000
with message-id <[email protected]>
and subject line Bug#663216: fixed in tomboy 1.9.9-2
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.9.9-2
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.9.9-2.debian.tar.gz
to main/t/tomboy/tomboy_1.9.9-2.debian.tar.gz
tomboy_1.9.9-2.dsc
to main/t/tomboy/tomboy_1.9.9-2.dsc
tomboy_1.9.9-2_amd64.deb
to main/t/tomboy/tomboy_1.9.9-2_amd64.deb
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: Mon, 12 Mar 2012 21:44:18 +0000
Source: tomboy
Binary: tomboy
Architecture: source amd64
Version: 1.9.9-2
Distribution: experimental
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: 663216
Changes:
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
Checksums-Sha1:
05d1ffb46879e04421ca402e1d7f1e142006f8b5 2431 tomboy_1.9.9-2.dsc
ca9cfcb32ff808709c0838dbb2f7800df44ec5d9 18713 tomboy_1.9.9-2.debian.tar.gz
0cafc4400d12b6ec5bbfa460d0656f7430c0e1fd 4832300 tomboy_1.9.9-2_amd64.deb
Checksums-Sha256:
215f768a455df093293f95f6669fda037e9db91a11e39affde9d1b8967e059f6 2431
tomboy_1.9.9-2.dsc
a5c2cdd58a7213fe7abeb4f87f78d7a4ac842082b90ca3ebae8681339ea182fb 18713
tomboy_1.9.9-2.debian.tar.gz
c76091bec1f34247ff626412385321e429f0916dc378aff883196991f584829e 4832300
tomboy_1.9.9-2_amd64.deb
Files:
900deb81bc84ae49585d10e5fd6e4435 2431 gnome optional tomboy_1.9.9-2.dsc
6a6aab229944c8cf675b5470453c2df7 18713 gnome optional
tomboy_1.9.9-2.debian.tar.gz
c93e0d6e55dc111f3061892335bab5f1 4832300 gnome optional
tomboy_1.9.9-2_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iQIcBAEBCAAGBQJPXm/nAAoJEONS1cUcUEHU2YQQAJSnWckcDadDlBd0rOBzZq+k
wEfjDZ769pYgBdIzv0GzeCBzo/SqSDvR1ebeGjjrrmXXKSy4UjMv3GcNYIvMMw8m
0NZQHx3aSnQ5BLIISFhQI88h2GrjEYcN3nVBe8Zq28Zgi/TFukm0AnagegJF7n0t
grXEk87BDzkPYRTkyNNZ2SHS3fuEzXOCTEzmSEPDZ4ZkKB/WsMmLzkI7D9byvJOB
H+olUt5OuB2A1HMF+zvSyKV6P7NqgEsiyoaFZaDGPWlOJTr11ooIoA4KSkR/qo95
iSO1tKWgzULsuIVo28hzRclRv7zZFfPgmdpwK7YZv3WgtXoNFFETJ1h9n82dotHm
TS9/7o2gXDjigYyaGtFbwryHEX1mQPzDRvSrfDxStItnyxVH3qU8HvDsO9pCy9qb
bcQGBmUWsrM5FrxcFBtaFhLrGlB1sHeuSuDh0OiRu+N2VOxyTr5J8DcNtfyykAcl
ex40aDCOuVyGg/ol48l/Wgpyf2QX3gaB5XWbC++dpDn0LSh8TCisfXH3wn0ykAFg
bEgk+fmZXkkimYINzhhKD/fEgJLXxvN5CNOJtXKU/sljSoFTab6baz/1k0sUgQq+
8QMeXuzsYnve+KiXq1mcMQ4TEfG+DBdarmcNzRYo5GfsZnjlHdlrmbnevOublWi4
R3pkz8TuqOIr5nrspAce
=vRb8
-----END PGP SIGNATURE-----
--- End Message ---