Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/evolution-data-server/files: evolution-data-server-2.28.3.1-version-number.patch
Date: Thu, 29 Apr 2010 20:54:05
Message-Id: 20100429205402.91C972C056@corvid.gentoo.org
1 pacho 10/04/29 20:54:02
2
3 Added: evolution-data-server-2.28.3.1-version-number.patch
4 Log:
5 Apply a patch to set version properly and, then, allow us to use a more future proof e-d-s patch for mail-client/mail-notification
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 gnome-extra/evolution-data-server/files/evolution-data-server-2.28.3.1-version-number.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/evolution-data-server/files/evolution-data-server-2.28.3.1-version-number.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnome-extra/evolution-data-server/files/evolution-data-server-2.28.3.1-version-number.patch?rev=1.1&content-type=text/plain
13
14 Index: evolution-data-server-2.28.3.1-version-number.patch
15 ===================================================================
16 # As talked with Matthew Barnes (from upstream) this way to set version causes
17 # problems as results in a "3.1" slipping into the EDS_CHECK_VERSION preprocessor
18 # macro, and preprocessor macros don't like floating point numbers, causing problems
19 # like mail-notification e-d-s patch not working when building against this e-d-s version.
20 # This patch appends .1 to the version number properly.
21 --- configure.ac~ 2010-03-02 07:29:38.000000000 +0100
22 +++ configure.ac 2010-04-29 22:13:24.000000000 +0200
23 @@ -1,7 +1,7 @@
24 dnl Evolution-Data-Server version
25 m4_define([eds_major_version], [2])
26 m4_define([eds_minor_version], [28])
27 -m4_define([eds_micro_version], [3.1])
28 +m4_define([eds_micro_version], [3])
29
30 m4_define([eds_version],
31 [eds_major_version.eds_minor_version.eds_micro_version])
32 @@ -19,7 +19,7 @@
33
34 dnl Autoconf / Automake Initialization
35 AC_PREREQ(2.58)
36 -AC_INIT([evolution-data-server],[eds_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution-Data-Server])
37 +AC_INIT([evolution-data-server],[eds_version].1,[http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution-Data-Server])
38 AM_INIT_AUTOMAKE([gnu 1.9])
39 AC_CONFIG_MACRO_DIR([m4])
40 AC_CONFIG_SRCDIR(README)