diff -Nru sylfilter-0.7/ChangeLog sylfilter-0.8/ChangeLog --- sylfilter-0.7/ChangeLog 2012-01-13 05:15:55.000000000 +0000 +++ sylfilter-0.8/ChangeLog 2013-03-15 06:39:23.000000000 +0000 @@ -1,3 +1,27 @@ +commit 5dc96a4e498800a18033f11496553c70ef1d7c4f +Author: Hiroyuki Yamamoto +Date: Fri Mar 15 15:38:04 2013 +0900 + + updated version to 0.8. Updated documents. + +commit 3620c738f02e10dbc50d642eb376d7bc3d2aa729 +Author: Hiroyuki Yamamoto +Date: Thu Mar 14 16:07:43 2013 +0900 + + removed direct inclusion of and (fixes compilation with newer GLib). + +commit 90da63ddf4ac3e79118ad1d006928cb61f2a8cc3 +Author: Hiroyuki Yamamoto +Date: Mon Jan 16 16:34:29 2012 +0900 + + fixed compilation error because of missing config.h inclusion. + +commit 2d9cf61ca2a382d8989f0cb67d6e31e9b8815037 +Author: Hiroyuki Yamamoto +Date: Fri Jan 13 15:48:42 2012 +0900 + + updated documents. + commit ec5ed0b6df5b6b4e2a53b95a63cea1402b12d8f0 Author: Hiroyuki Yamamoto Date: Tue Jan 10 18:17:43 2012 +0900 diff -Nru sylfilter-0.7/NEWS sylfilter-0.8/NEWS --- sylfilter-0.7/NEWS 2012-01-13 05:17:34.000000000 +0000 +++ sylfilter-0.8/NEWS 2013-03-15 06:39:23.000000000 +0000 @@ -1,6 +1,11 @@ Overview of Changes =================== +* 0.8 (2013/03/15) + + * Compilation error because of missing config.h inclusion was fixed. + * Compilation error with newer GLib was fixed. + * 0.7 (2012/01/13) * External LibSylph (standalone or Sylpheed) can be used instead of diff -Nru sylfilter-0.7/README sylfilter-0.8/README --- sylfilter-0.7/README 2012-01-13 05:09:54.000000000 +0000 +++ sylfilter-0.8/README 2013-03-15 06:39:23.000000000 +0000 @@ -1,7 +1,7 @@ SylFilter - a message filter - Copyright (C) 2011-2012 Hiroyuki Yamamoto - Copyright (C) 2011-2012 Sylpheed Development Team + Copyright (C) 2011-2013 Hiroyuki Yamamoto + Copyright (C) 2011-2013 Sylpheed Development Team About This Program diff -Nru sylfilter-0.7/configure sylfilter-0.8/configure --- sylfilter-0.7/configure 2012-01-10 09:19:08.000000000 +0000 +++ sylfilter-0.8/configure 2013-03-15 06:40:54.000000000 +0000 @@ -2376,7 +2376,7 @@ # Define the identity of the package. PACKAGE=sylfilter - VERSION=0.7 + VERSION=0.8 cat >>confdefs.h <<_ACEOF diff -Nru sylfilter-0.7/configure.ac sylfilter-0.8/configure.ac --- sylfilter-0.7/configure.ac 2012-01-10 09:18:29.000000000 +0000 +++ sylfilter-0.8/configure.ac 2013-03-15 06:39:23.000000000 +0000 @@ -7,7 +7,7 @@ dnl set $target AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE(sylfilter, 0.7) +AM_INIT_AUTOMAKE(sylfilter, 0.8) AC_CONFIG_SRCDIR([src/sylfilter.c]) AC_CONFIG_HEADER([config.h]) diff -Nru sylfilter-0.7/debian/changelog sylfilter-0.8/debian/changelog --- sylfilter-0.7/debian/changelog 2013-01-14 04:04:24.000000000 +0000 +++ sylfilter-0.8/debian/changelog 2013-07-12 01:43:39.000000000 +0000 @@ -1,3 +1,17 @@ +sylfilter (0.8-2) unstable; urgency=low + + * Upload to unstable + * debian/control + - add Vcs-* field + + -- Hideki Yamane Fri, 12 Jul 2013 10:42:55 +0900 + +sylfilter (0.8-1) experimental; urgency=low + + * New upstream release + + -- Hideki Yamane Fri, 15 Mar 2013 16:50:46 +0900 + sylfilter (0.7-3) unstable; urgency=low * debian/rules diff -Nru sylfilter-0.7/debian/control sylfilter-0.8/debian/control --- sylfilter-0.7/debian/control 2013-01-14 03:43:39.000000000 +0000 +++ sylfilter-0.8/debian/control 2013-07-12 01:43:39.000000000 +0000 @@ -5,8 +5,8 @@ Build-Depends: debhelper (>= 9), autotools-dev, libglib2.0-dev, libsqlite3-dev, libqdbm-dev, libsylph-dev, dh-autoreconf, gnulib Standards-Version: 3.9.4 Homepage: http://sylpheed.sraoss.jp/sylfilter/ -#Vcs-Git: git://git.debian.org/collab-maint/sylfilter.git -#Vcs-Browser: http://git.debian.org/?p=collab-maint/sylfilter.git;a=summary +Vcs-Git: git://anonscm.debian.org/pkg-sylpheed/sylfilter/ +Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-sylpheed/sylfilter.git;a=summary Package: sylfilter Architecture: any diff -Nru sylfilter-0.7/lib/filter-utils.c sylfilter-0.8/lib/filter-utils.c --- sylfilter-0.7/lib/filter-utils.c 2012-01-13 05:12:10.000000000 +0000 +++ sylfilter-0.8/lib/filter-utils.c 2012-01-16 07:27:49.000000000 +0000 @@ -4,6 +4,8 @@ * Copyright (C) 2011-2012 Sylpheed Development Team */ +#include "config.h" + #include #ifdef BUILTIN_LIBSYLPH diff -Nru sylfilter-0.7/lib/filters/bayes-filter.c sylfilter-0.8/lib/filters/bayes-filter.c --- sylfilter-0.7/lib/filters/bayes-filter.c 2012-01-13 05:13:15.000000000 +0000 +++ sylfilter-0.8/lib/filters/bayes-filter.c 2012-01-16 07:28:31.000000000 +0000 @@ -4,6 +4,8 @@ * Copyright (C) 2011-2012 Sylpheed Development Team */ +#include "config.h" + #include #include #include diff -Nru sylfilter-0.7/lib/filters/textcontent-filter.c sylfilter-0.8/lib/filters/textcontent-filter.c --- sylfilter-0.7/lib/filters/textcontent-filter.c 2012-01-13 05:13:28.000000000 +0000 +++ sylfilter-0.8/lib/filters/textcontent-filter.c 2012-01-16 07:28:20.000000000 +0000 @@ -4,6 +4,8 @@ * Copyright (C) 2011-2012 Sylpheed Development Team */ +#include "config.h" + #include #include #include diff -Nru sylfilter-0.7/libsylph/defs.h sylfilter-0.8/libsylph/defs.h --- sylfilter-0.7/libsylph/defs.h 2011-08-31 04:49:56.000000000 +0000 +++ sylfilter-0.8/libsylph/defs.h 2013-03-15 06:24:45.000000000 +0000 @@ -10,11 +10,7 @@ # include "config.h" #endif -#include - -#ifdef G_OS_WIN32 -# include -#endif +#include #if HAVE_PATHS_H # include