diff -Nru almanah-0.8.0/debian/changelog almanah-0.8.0/debian/changelog --- almanah-0.8.0/debian/changelog 2011-12-23 20:06:55.000000000 +0000 +++ almanah-0.8.0/debian/changelog 2012-01-04 15:17:49.000000000 +0000 @@ -1,3 +1,17 @@ +almanah (0.8.0-5) unstable; urgency=low + + * Update my email address -> angel@debian.org + * debian/control: Remove DM-Upload-Allowed + * Re-enable spell checking support + - debian/control: Build-Depends on libgtkspell-3-dev + - debian/rules: Add --enable-spell-checking + - debian/patches/02_gtkspell-3.0.patch: Add support for gtkspell-3.0 + in configure.ac + * debian/copyright: Update debian/* years + * debian/rules: Remove CFLAGS += -D_FILE_OFFSET_BITS=64 + + -- Angel Abad Wed, 04 Jan 2012 16:17:37 +0100 + almanah (0.8.0-4.1) unstable; urgency=low * Non-maintainer upload, for the evolution-data-server transition. diff -Nru almanah-0.8.0/debian/control almanah-0.8.0/debian/control --- almanah-0.8.0/debian/control 2011-12-23 19:53:26.000000000 +0000 +++ almanah-0.8.0/debian/control 2012-01-04 15:17:49.000000000 +0000 @@ -1,8 +1,7 @@ Source: almanah Section: gnome Priority: extra -Maintainer: Angel Abad -DM-Upload-Allowed: yes +Maintainer: Angel Abad Build-Depends: debhelper (>= 7.0.50), dh-autoreconf, intltool (>= 0.35.0), @@ -15,7 +14,8 @@ libdbus-glib-1-dev, libecal1.2-dev, libedataserver1.2-dev, - libedataserverui-3.0-dev + libedataserverui-3.0-dev, + libgtkspell-3-dev Standards-Version: 3.9.2 Vcs-Git: git://git.debian.org/git/collab-maint/almanah.git Vcs-Browser: http://git.debian.org/?p=collab-maint/almanah.git diff -Nru almanah-0.8.0/debian/copyright almanah-0.8.0/debian/copyright --- almanah-0.8.0/debian/copyright 2011-12-23 19:52:11.000000000 +0000 +++ almanah-0.8.0/debian/copyright 2012-01-04 15:17:49.000000000 +0000 @@ -12,7 +12,7 @@ License: GPL-3 Files: debian/* -Copyright: Copyright 2008-2011, Angel Abad +Copyright: Copyright 2008-2012, Angel Abad License: GPL-3 License: GPL-3 diff -Nru almanah-0.8.0/debian/patches/02_gtkspell-3.0.patch almanah-0.8.0/debian/patches/02_gtkspell-3.0.patch --- almanah-0.8.0/debian/patches/02_gtkspell-3.0.patch 1970-01-01 00:00:00.000000000 +0000 +++ almanah-0.8.0/debian/patches/02_gtkspell-3.0.patch 2012-01-04 15:17:49.000000000 +0000 @@ -0,0 +1,27 @@ +Description: Add support for gtkspell-3.0 in configure +Author: Angel Abad +Forwarded: https://bugzilla.gnome.org/show_bug.cgi?id=667263 + +--- a/configure.ac ++++ b/configure.ac +@@ -70,11 +70,6 @@ + *) AC_MSG_ERROR([bad value ${enableval} for --enable-spell-checking]) ;; + esac],[spell_checking=false]) + +-if test $spell_checking = "true"; then +- AC_ERROR([Building with spell checking enabled is not possible, as gtkspell-2.0 does not support GTK+ 3. Use --disable-spell-checking]) +- AC_DEFINE([ENABLE_SPELL_CHECKING],[1],[Define if you want spell checking support]) +-fi +- + AM_CONDITIONAL([SPELL_CHECKING], [test x$spell_checking = xtrue]) + + dnl *************************************************************************** +@@ -99,7 +94,7 @@ + + dnl Spell checking + if test $spell_checking = "true"; then +- PKG_CHECK_MODULES(SPELL_CHECKING, gtkspell-2.0) ++ PKG_CHECK_MODULES(SPELL_CHECKING, gtkspell-3.0) + AC_SUBST(SPELL_CHECKING_CFLAGS) + AC_SUBST(SPELL_CHECKING_LIBS) + fi diff -Nru almanah-0.8.0/debian/patches/series almanah-0.8.0/debian/patches/series --- almanah-0.8.0/debian/patches/series 2011-12-23 20:02:41.000000000 +0000 +++ almanah-0.8.0/debian/patches/series 2012-01-04 15:17:49.000000000 +0000 @@ -1 +1,2 @@ 01_largefile_support.patch +02_gtkspell-3.0.patch diff -Nru almanah-0.8.0/debian/rules almanah-0.8.0/debian/rules --- almanah-0.8.0/debian/rules 2011-12-23 20:05:46.000000000 +0000 +++ almanah-0.8.0/debian/rules 2012-01-04 15:17:49.000000000 +0000 @@ -1,6 +1,7 @@ #!/usr/bin/make -f -CFLAGS += -D_FILE_OFFSET_BITS=64 - %: dh $@ --with autoreconf + +override_dh_auto_configure: + dh_auto_configure -- --enable-spell-checking