evolution-data-server-vl.spec 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728
  1. %define use_nss 1
  2. %define ldap_support 1
  3. %define static_ldap 1
  4. %define krb5_support 1
  5. %define nntp_support 1
  6. %define glib2_version 2.26.1
  7. %define gtk2_version 2.22.1
  8. %define gtk_doc_version 1.14
  9. %define intltool_version 0.35.5
  10. %define orbit2_version 2.14.19
  11. %define soup_version 2.32.0
  12. %define libgweather_version 2.30.3
  13. %define libical_version 0.44
  14. %define libgdata_version 0.6.5
  15. %define eds_base_version 2.32
  16. %define eds_api_version 1.2
  17. %define use_gnome_keyring 1
  18. %define support_imap4_provider 0
  19. %define camel_provider_dir %{_libdir}/evolution-data-server-%{eds_api_version}/camel-providers
  20. %define eds_extensions_dir %{_libdir}/evolution-data-server-%{eds_api_version}/extensions
  21. # Use stricter build settings than required by upstream.
  22. %define strict_build_settings 1
  23. ### Abstract ###
  24. Summary: Backend data server for evolution
  25. Summary(ja): Evolution バックエンドデータサーバ
  26. Name: evolution-data-server
  27. Version: 2.32.1
  28. Release: 2%{?_dist_release}
  29. License: LGPL
  30. Group: System Environment/Libraries
  31. URL: http://www.gnome.org/projects/evolution/
  32. Source0: http://ftp.gnome.org/pub/GNOME/sources/evolution-data-server/2.32/%{name}-%{version}.tar.bz2
  33. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  34. ### Patches ###
  35. # RH bug #215702 / GNOME bug #487988
  36. Patch10: evolution-data-server-1.8.0-fix-ldap-query.patch
  37. # GNOME bug #373146
  38. Patch11: evolution-data-server-1.10.1-camel-folder-summary-crash.patch
  39. # RH bug #243296
  40. Patch12: evolution-data-server-1.11.5-fix-64bit-acinclude.patch
  41. ### Dependencies ###
  42. Requires: GConf2
  43. Requires: ORBit2 >= %{orbit2_version}
  44. Requires: libsoup >= %{soup_version}
  45. ### Build Dependencies ###
  46. BuildRequires: GConf2-devel
  47. BuildRequires: ORBit2-devel >= %{orbit2_version}
  48. BuildRequires: bison
  49. BuildRequires: db4-devel
  50. BuildRequires: flex
  51. BuildRequires: gettext
  52. BuildRequires: glib2-devel
  53. BuildRequires: gnutls-devel
  54. BuildRequires: intltool >= %{intltool_version}
  55. BuildRequires: libsoup-devel >= %{soup_version}
  56. BuildRequires: libtool
  57. BuildRequires: libgnome-keyring-devel
  58. BuildRequires: gtk-doc >= 1.14
  59. BuildRequires: sqlite3-devel
  60. BuildRequires: libgweather-devel >= %{libgweather_version}
  61. BuildRequires: libical-devel >= %{libical_version}
  62. BuildRequires: gperf
  63. BuildRequires: krb5-devel
  64. BuildRequires: libgdata-devel >= %{libgdata_version}
  65. %if %{use_nss}
  66. BuildRequires: nspr-devel
  67. BuildRequires: nss-devel
  68. %else
  69. BuildRequires: openssl-devel
  70. %endif
  71. %if %{ldap_support}
  72. %if %{static_ldap}
  73. BuildRequires: openldap-evolution-devel
  74. BuildRequires: openssl-devel
  75. %else
  76. BuildRequires: openldap-devel >= 2.0.11
  77. %endif
  78. %endif
  79. %if %{krb5_support}
  80. BuildRequires: krb5-devel
  81. # tweak for krb5 1.2 vs 1.3
  82. %define krb5dir /usr/kerberos
  83. #define krb5dir `pwd`/krb5-fakeprefix
  84. %endif
  85. %description
  86. The evolution-data-server package provides a unified backend for
  87. programs that work with contacts, tasks, and calendar information.
  88. It was originally developed for Evolution (hence the name), but
  89. is now used by other packages.
  90. %package devel
  91. Summary: Development files for building against evolution-data-server
  92. Group: Development/Libraries
  93. Requires: %{name} = %{version}-%{release}
  94. Requires: libgnome-devel
  95. Requires: libgweather-devel
  96. Requires: libsoup-devel
  97. Requires: libical-devel >= %{libical_version}
  98. Requires: sqlite3-devel
  99. %if %{use_nss}
  100. Requires: nspr-devel
  101. Requires: nss-devel
  102. %endif
  103. %description devel
  104. Development files needed for building things which link against
  105. evolution-data-server.
  106. %package doc
  107. Summary: Documentation files for %{name}
  108. Group: Applications/Documentation
  109. %description doc
  110. This package contains developer documentation for %{name}.
  111. %prep
  112. %setup -q
  113. ## %patch10 -p1 -b .fix-ldap-query
  114. ##%patch11 -p1 -b .camel-folder-summary-crash
  115. %patch12 -p1 -b .fix-64bit-acinclude
  116. mkdir -p krb5-fakeprefix/include
  117. mkdir -p krb5-fakeprefix/lib
  118. mkdir -p krb5-fakeprefix/%{_lib}
  119. %build
  120. %if %{ldap_support}
  121. %if %{static_ldap}
  122. %define ldap_flags --with-openldap=%{_libdir}/evolution-openldap --with-static-ldap
  123. # Set LIBS so that configure will be able to link with static LDAP libraries,
  124. # which depend on Cyrus SASL and OpenSSL. XXX Is the "else" clause necessary?
  125. if pkg-config libssl ; then
  126. export LIBS="-lsasl2 `pkg-config --libs libssl`"
  127. else
  128. export LIBS="-lsasl2 -lssl -lcrypto"
  129. fi
  130. %else
  131. %define ldap_flags --with-openldap=yes
  132. %endif
  133. %else
  134. %define ldap_flags --without-openldap
  135. %endif
  136. %if %{krb5_support}
  137. %define krb5_flags --with-krb5=%{krb5dir} --with-krb5-libs=%{_libdir} --with-krb5-includes=%{_includedir}
  138. %else
  139. %define krb5_flags --without-krb5
  140. %endif
  141. %if %{nntp_support}
  142. %define nntp_flags --enable-nntp=yes
  143. %else
  144. %define nntp_flags --enable-nntp=no
  145. %endif
  146. %if %{use_nss}
  147. %define ssl_flags --enable-nss=yes --enable-smime=yes
  148. %else
  149. %define ssl_flags --enable-openssl=yes
  150. %endif
  151. %if %{use_nss}
  152. if ! pkg-config --exists nss; then
  153. echo "Unable to find suitable version of nss to use!"
  154. exit 1
  155. fi
  156. %endif
  157. %if %{use_gnome_keyring}
  158. %define keyring_flags --enable-gnome-keyring
  159. %else
  160. %define keyring flags --disable-gnome-keyring
  161. %endif
  162. %if %{support_imap4_provider}
  163. %define imap4_flags --enable-imap4=yes
  164. %else
  165. %define imap4_flags --enable-imap4=no
  166. %endif
  167. export CPPFLAGS="-I%{_includedir}/et"
  168. export CFLAGS="$RPM_OPT_FLAGS -DLDAP_DEPRECATED -fPIC -I%{_includedir}/et"
  169. %if ! %{use_nss}
  170. if pkg-config openssl ; then
  171. CFLAGS="$CFLAGS `pkg-config --cflags openssl`"
  172. LDFLAGS="$LDFLAGS `pkg-config --libs-only-L openssl`"
  173. fi
  174. %endif
  175. # Add stricter build settings here as the source code gets cleaned up.
  176. # We want to make sure things like compiler warnings and avoiding deprecated
  177. # functions in the GNOME/GTK+ libraries stay fixed.
  178. #
  179. # Please file a bug report at bugzilla.gnome.org if these settings break
  180. # compilation, and encourage the upstream developers to use them.
  181. %if %{strict_build_settings}
  182. CFLAGS="$CFLAGS \
  183. -DG_DISABLE_DEPRECATED=1 \
  184. -DPANGO_DISABLE_DEPRECATED=1 \
  185. -DGDK_PIXBUF_DISABLE_DEPRECATED=1 \
  186. -DGDK_DISABLE_DEPRECATED=1 \
  187. -Wdeclaration-after-statement \
  188. -Werror-implicit-function-declaration"
  189. %endif
  190. # Regenerate configure to pick up configure.in and acinclude.m4 changes.
  191. aclocal -I m4
  192. autoheader
  193. automake
  194. libtoolize
  195. intltoolize --force
  196. autoconf
  197. # See Ross Burton's blog entry for why we want --with-libdb.
  198. # http://www.burtonini.com/blog//computers/eds-libdb-2006-07-18-10-40
  199. %configure \
  200. --with-libdb=/usr \
  201. --enable-file-locking=fcntl \
  202. --enable-dot-locking=no \
  203. --enable-gtk-doc \
  204. %ldap_flags %krb5_flags %nntp_flags %ssl_flags %imap4_flags \
  205. %keyring_flags
  206. export tagname=CC
  207. make %{?_smp_mflags} LIBTOOL=/usr/bin/libtool
  208. %install
  209. rm -rf $RPM_BUILD_ROOT
  210. export tagname=CC
  211. make DESTDIR=$RPM_BUILD_ROOT LIBTOOL=/usr/bin/libtool install
  212. # remove libtool archives for importers and the like
  213. find $RPM_BUILD_ROOT/%{_libdir} -name '*.la' -exec rm {} \;
  214. rm -f $RPM_BUILD_ROOT/%{_libdir}/*.a
  215. rm -f $RPM_BUILD_ROOT/%{_libdir}/evolution-data-server-%{eds_api_version}/camel-providers/*.a
  216. rm -f $RPM_BUILD_ROOT/%{_libdir}/evolution-data-server-%{eds_api_version}/extensions/*.a
  217. # give the libraries some executable bits
  218. find $RPM_BUILD_ROOT -name '*.so.*' -exec chmod +x {} \;
  219. %find_lang %{name}-%{eds_base_version}
  220. %clean
  221. rm -rf $RPM_BUILD_ROOT
  222. %post -p /sbin/ldconfig
  223. %postun -p /sbin/ldconfig
  224. %files -f %{name}-%{eds_base_version}.lang
  225. %defattr(-,root,root,-)
  226. %doc README COPYING ChangeLog NEWS AUTHORS
  227. %{_libdir}/*.so.*
  228. %{_libexecdir}/e-addressbook-factory
  229. %{_libexecdir}/e-calendar-factory
  230. %{_libexecdir}/camel-index-control-%{eds_api_version}
  231. %{_libexecdir}/camel-lock-helper-%{eds_api_version}
  232. %{_datadir}/evolution-data-server-%{eds_base_version}
  233. ## %{_datadir}/idl/evolution-data-server-%{eds_api_version}
  234. %{_datadir}/pixmaps/evolution-data-server
  235. #{_libdir}/evolution-data-server-%{eds_api_version}
  236. %{_datadir}/dbus-1/services/*
  237. %dir %{_libdir}/evolution-data-server-%{eds_api_version}
  238. %dir %{camel_provider_dir}
  239. %dir %{eds_extensions_dir}
  240. # Camel providers:
  241. %{camel_provider_dir}/libcamelgroupwise.so
  242. %{camel_provider_dir}/libcamelgroupwise.urls
  243. %{camel_provider_dir}/libcamelimap.so
  244. %{camel_provider_dir}/libcamelimap.urls
  245. %if %{support_imap4_provider}
  246. %{camel_provider_dir}/libcamelimap4.so
  247. %{camel_provider_dir}/libcamelimap4.urls
  248. %endif
  249. %{camel_provider_dir}/libcamellocal.so
  250. %{camel_provider_dir}/libcamellocal.urls
  251. %{camel_provider_dir}/libcamelnntp.so
  252. %{camel_provider_dir}/libcamelnntp.urls
  253. %{camel_provider_dir}/libcamelpop3.so
  254. %{camel_provider_dir}/libcamelpop3.urls
  255. %{camel_provider_dir}/libcamelsendmail.so
  256. %{camel_provider_dir}/libcamelsendmail.urls
  257. %{camel_provider_dir}/libcamelsmtp.so
  258. %{camel_provider_dir}/libcamelsmtp.urls
  259. %{camel_provider_dir}/libcamelimapx.so
  260. %{camel_provider_dir}/libcamelimapx.urls
  261. # e-d-s extensions:
  262. %{eds_extensions_dir}/libebookbackendfile.so
  263. %{eds_extensions_dir}/libebookbackendgoogle.so
  264. %{eds_extensions_dir}/libebookbackendgroupwise.so
  265. %{eds_extensions_dir}/libebookbackendldap.so
  266. %{eds_extensions_dir}/libebookbackendvcf.so
  267. %{eds_extensions_dir}/libebookbackendwebdav.so
  268. %{eds_extensions_dir}/libecalbackendcontacts.so
  269. %{eds_extensions_dir}/libecalbackendfile.so
  270. %{eds_extensions_dir}/libecalbackendgroupwise.so
  271. %{eds_extensions_dir}/libecalbackendhttp.so
  272. %{eds_extensions_dir}/libecalbackendweather.so
  273. %{eds_extensions_dir}/libecalbackendcaldav.so
  274. ## %{eds_extensions_dir}/libecalbackendgoogle.so
  275. %files devel
  276. %defattr(-,root,root,-)
  277. %{_includedir}/evolution-data-server-%{eds_base_version}
  278. %{_libdir}/*.so
  279. %{_libdir}/pkgconfig/*.pc
  280. %files doc
  281. %defattr(-,root,root,-)
  282. %{_datadir}/gtk-doc/html/camel
  283. %{_datadir}/gtk-doc/html/libebackend
  284. %{_datadir}/gtk-doc/html/libebook
  285. %{_datadir}/gtk-doc/html/libecal
  286. %{_datadir}/gtk-doc/html/libedata-book
  287. %{_datadir}/gtk-doc/html/libedata-cal
  288. %{_datadir}/gtk-doc/html/libedataserver
  289. %{_datadir}/gtk-doc/html/libedataserverui
  290. %changelog
  291. * Mon Jan 10 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.1-2
  292. - rebuild with openssl-1.0.0c
  293. * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
  294. - new upstream release
  295. - remove Requires: gnome-vfs2, libglade2, libgnomeui
  296. - remove BuildRequires: gnome-vfs2-devel, libglade2-devel, libgnomeui-devel
  297. - add BuildRequires: libgdata
  298. - add Requires: nspr-devel, nss-devel (devel package)
  299. - drop Patch11
  300. * Thu Sep 23 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-2
  301. - rebuild with rpm-4.8.1 for pkg-config file
  302. * Mon Jun 21 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-1
  303. - new upstream release
  304. * Sat May 01 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.1-1
  305. - new upstream release
  306. * Fri Apr 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
  307. - new upstream release
  308. - remove BuildRequires: libbonobo-devel
  309. - remove Requires: libbonobo
  310. - drop Patch10
  311. - add configure option (--with-krb5-libs, --with-krb5-includes)
  312. * Thu Feb 11 2010 NAKAMURA Kenta <kenta@vinelinux.org> 2.28.1-2
  313. - rebuilt with db4-4.8
  314. * Sat Oct 31 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.1-1
  315. - new upstream release
  316. * Sat Jul 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.3-1
  317. - new upstream release
  318. * Thu May 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.2-1
  319. - new upstream release
  320. * Sat Apr 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.1.1-1
  321. - new upstream release
  322. * Sat Apr 4 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.26.0-2
  323. - added Requires: libical-devel >= 0.43 to devel package
  324. * Sat Mar 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
  325. - new upstream release
  326. - add BR: libgweather-devel >= 2.26.0
  327. - add BR: libical-devel >= 0.43
  328. * Sat Mar 7 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.24.5-1
  329. - new upstream release
  330. - added BuildRequires: sqlite3-devel
  331. * Mon Jan 19 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.24.2-2
  332. - enabled krb5 support
  333. * Sun Dec 14 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.24.2-1
  334. - new upstream release
  335. * Wed Oct 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.1-1
  336. - new upstream release
  337. * Wed Sep 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-1
  338. - new upstream release
  339. * Mon Jun 30 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.3-1
  340. - new upstream release
  341. * Fri Jun 20 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.2-2
  342. - rebuilt with db4-4.6.21
  343. * Sat May 31 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.2-1
  344. - new upstream release
  345. * Sun May 4 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.1.1-1vl5
  346. - new upstream release
  347. * Wed Apr 9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.1-1vl5
  348. - new upstream release
  349. * Mon Mar 31 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.0-1vl5
  350. - new upstream release based on Fedora package 2.20.0-3.fc9
  351. * Mon Mar 24 2008 Matthew Barnes <mbarnes@redhat.com> - 2.22.0-3.fc9
  352. - Add patch for GNOME bug #523023 (EFolder leak in evo-ex-storage).
  353. * Tue Mar 11 2008 Matthew Barnes <mbarnes@redhat.com> - 2.22.0-2.fc9
  354. - Add patch for RH bug #296671 (GC servers may not support NTLM).
  355. * Thu Feb 14 2008 Matthew Barnes <mbarnes@redhat.com> - 2.21.91-3.fc9
  356. - Try removing the ancient "ldap-x86_64-hack" patch.
  357. * Mon Feb 11 2008 Matthew Barnes <mbarnes@redhat.com> - 2.21.91-1.fc9
  358. - Add patch for GNOME bug #516074 (latest glibc breaks Camel).
  359. - split doc subpackage
  360. * Sat Jul 28 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.10.1-1vl2
  361. - fixed dependancy
  362. * Sat Jul 14 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.10.1-1vl1
  363. - updated to 1.10.3.1 based on Fedora package 1.10.1-1.fc7
  364. * Wed Apr 04 2007 Matthew Barnes <mbarnes@redhat.com> - 1.10.0-6.fc7
  365. - Revise patch for GNOME bug #417999 (another ESourceComboBox goof).
  366. * Mon Apr 02 2007 Matthew Barnes <mbarnes@redhat.com> - 1.10.0-5.fc7
  367. - Make the new ESourceComboBox widget work properly (RH bug #234760).
  368. * Tue Mar 27 2007 Matthew Barnes <mbarnes@redhat.com> - 1.10.0-4.fc7
  369. - Link to static evolution-openldap library (RH bug #210126).
  370. - Require openssl-devel when statically linking against openldap.
  371. - Add -Wdeclaration-after-statement to strict build settings.
  372. * Wed Mar 14 2007 Matthew Barnes <mbarnes@redhat.com> - 1.10.0-2.fc7
  373. - Modify patch for GNOME bug #376991 to fix RH bug #231994.
  374. - Add patch for GNOME bug #417999 (avoid deprecated GTK+ symbols).
  375. * Mon Mar 12 2007 Matthew Barnes <mbarnes@redhat.com> - 1.10.0-1.fc7
  376. - Update to 1.10.0
  377. * Fri Mar 09 2007 Matthew Barnes <mbarnes@redhat.com> - 1.9.92-4.fc7
  378. - Add patch for GNOME bug #415922 (support MS ISA Server 2004).
  379. - Patch by Kenny Root.
  380. - rebuilt with nss-devel and nspr-devel
  381. * Fri May 11 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.8.2-0vl2
  382. - rebuilt with new toolchain and db4-4.3.x
  383. * Sun Nov 26 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.2-0vl1
  384. - new upstream release
  385. * Sat Nov 11 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.1-0vl1
  386. - new upstream release
  387. - dropped Patch16, 17, 19, 20 and 21 (merged into upstream)
  388. * Sat Oct 7 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.8.0-11vl1
  389. - new upstream release
  390. - rebuilt with openssl instead of mozilla-nss
  391. * Mon Aug 28 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.2.1-0vl2
  392. - rebuilt with openldap-2.3.24-0vl4
  393. * Thu Dec 1 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.2.1-0vl1
  394. - new upstream release
  395. - build with libsoap-2.2.7
  396. * Tue Nov 8 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.1.1-0vl1
  397. - new upstream release
  398. * Sun Sep 25 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.0-2vl1
  399. - new upstream release
  400. - added/removed Patches based on Fedora packages
  401. * Tue Aug 23 2005 David Malcolm <dmalcolm@redhat.com> - 1.3.8-3
  402. - Updated patch 102 to fix further implicit function declarations
  403. * Mon Jul 25 2005 David Malcolm <dmalcolm@redhat.com> - 1.3.5-2
  404. - Added patch to use nspr rather than mozilla-nspr when doing pkg-config
  405. tests (Patch5: evolution-data-server-1.3.5-nspr_fix.patch)
  406. * Mon Jul 25 2005 David Malcolm <dmalcolm@redhat.com> - 1.3.5-1
  407. - Removed upstreamed patch:
  408. evolution-data-server-1.2.0-cope-with-a-macro-called-read.patch
  409. * Mon Apr 11 2005 David Malcolm <dmalcolm@redhat.com> - 1.2.2-2
  410. - added patch to calendar/libecal/e-cal.c to fix missing declaration
  411. of open_calendar
  412. - rebuilt with mozilla-1.7.12
  413. * Thu May 04 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.2.1-0vl2
  414. - rebuilt with mozilla-1.7.7
  415. * Tue Apr 12 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.1-0vl1
  416. - initial build for Vine Linux based on FC package
  417. - disable krb5 support
  418. * Thu Mar 17 2005 David Malcolm <dmalcolm@redhat.com> - 1.2.1-1
  419. - 1.2.1
  420. * Thu Mar 10 2005 David Malcolm <dmalcolm@redhat.com> - 1.2.0-3
  421. - Removed explicit run-time spec-file requirement on mozilla.
  422. The Mozilla NSS API/ABI stabilised by version 1.7.3
  423. The libraries are always located in the libdir
  424. However, the headers are in /usr/include/mozilla-%{mozilla_build_version}
  425. and so they move each time the mozilla version changes.
  426. So we no longer have an explicit mozilla run-time requirement in the specfile;
  427. a requirement on the appropriate NSS and NSPR .so files is automagically generated on build.
  428. We have an explicit, exact build-time version, so that we can find the headers (without
  429. invoking an RPM query from the spec file; to do so is considered bad practice)
  430. - Introduced mozilla_build_version, to replace mozilla_version
  431. - Set mozilla_build_version to 1.7.6 to reflect current state of tree
  432. * Tue Mar 8 2005 David Malcolm <dmalcolm@redhat.com> - 1.2.0-2
  433. - Added a patch to deal with glibc defining a macro called "read"
  434. * Tue Mar 8 2005 David Malcolm <dmalcolm@redhat.com> - 1.2.0-1
  435. - 1.2.0
  436. - Removed patch for GCC 4 as this is now in upstream tarball
  437. * Wed Mar 2 2005 Jeremy Katz <katzj@redhat.com> - 1.1.6-6
  438. - rebuild to fix library linking silliness
  439. * Tue Mar 1 2005 David Malcolm <dmalcolm@redhat.com> - 1.1.6-5
  440. - disabling gtk-doc on ia64 and s390x
  441. * Tue Mar 1 2005 David Malcolm <dmalcolm@redhat.com> - 1.1.6-4
  442. - added macro use_gtk_doc; added missing BuildRequires on gtk-doc; enabled gtk-doc generation on all platforms (had been disabled on ia64)
  443. * Tue Mar 1 2005 David Malcolm <dmalcolm@redhat.com> - 1.1.6-3
  444. - extended patch to deal with camel-groupwise-store-summary.c
  445. * Tue Mar 1 2005 David Malcolm <dmalcolm@redhat.com> - 1.1.6-2
  446. - added patch to fix badly-scoped declaration of "namespace_clear" in camel-imap-store-summary.c
  447. * Tue Mar 1 2005 David Malcolm <dmalcolm@redhat.com> - 1.1.6-1
  448. - 1.1.6
  449. * Tue Feb 8 2005 David Malcolm <dmalcolm@redhat.com> - 1.1.5-3
  450. - rebuild
  451. * Tue Feb 8 2005 David Malcolm <dmalcolm@redhat.com> - 1.1.5-2
  452. - forgot to fix sources
  453. * Tue Feb 8 2005 David Malcolm <dmalcolm@redhat.com> - 1.1.5-1
  454. - 1.1.5
  455. * Thu Jan 27 2005 David Malcolm <dmalcolm@redhat.com> - 1.1.4.2-1
  456. - Update from unstable 1.1.4.1 to unstable 1.1.1.4.2
  457. * Wed Jan 26 2005 David Malcolm <dmalcolm@redhat.com> - 1.1.4.1-3
  458. - disable gtk-doc generation on ia64 for now
  459. * Wed Jan 26 2005 David Malcolm <dmalcolm@redhat.com> - 1.1.4.1-2
  460. - Exclude ppc64 due to missing mozilla dependency
  461. * Wed Jan 26 2005 David Malcolm <dmalcolm@redhat.com> - 1.1.4.1-1
  462. - Update from 1.0.3 to 1.1.4.1
  463. - Updated eds_major from 1.0 to 1.2; fixed translation search path.
  464. - Removed 64-bit patch for calendar backend hash table; upstream now stores pointers to ECalBackendFactory, rather than GType
  465. - Removed calendar optimisation patch for part of part of bug #141283 as this is now in the upstream tarball
  466. - Added /usr/lib/evolution-data-server-%{eds_major} to cover the extensions, plus the camel code now in e-d-s, rather than evolution
  467. - Added /usr/share/pixmaps/evolution-data-server-%{eds_major} to cover the category pixmaps
  468. - Camel code from evolution is now in evolution-data-server:
  469. - Added camel-index-control and camel-lock-helper to packaged files
  470. - Added mozilla dependency code from the evolution package
  471. - Ditto for LDAP
  472. - Ditto for krb5
  473. - Ditto for NNTP support handling
  474. - Ditto for --enable-file-locking and --enable-dot-locking
  475. - Added requirements on libbonobo, libgnomeui, gnome-vfs2, GConf2, libglade2
  476. - Updated libsoup requirement from 2.2.1 to 2.2.2
  477. - Enabled gtk-doc
  478. * Wed Dec 15 2004 David Malcolm <dmalcolm@redhat.com> - 1.0.3-2
  479. - fixed packaging of translation files to reflect upstream change to GETTEXT_PACKAGE being evolution-data-server-1.0 rather than -1.5
  480. * Wed Dec 15 2004 David Malcolm <dmalcolm@redhat.com> - 1.0.3-1
  481. - update from upstream 1.0.2 to 1.0.3:
  482. * Address Book
  483. - prevent e_book_commit_contact from crashing on multiple calls (Diego Gonzalez)
  484. - prevent file backend from crashing if uid of vcard is NULL (Diego Gonzalez)
  485. * Calendar
  486. #XB59904 - Speed up calendar queries (Rodrigo)
  487. #XB69624 - make changes in evo corresponding to soap schema changes (Siva)
  488. - fix libical build for automake 1.9 (Rodney)
  489. - fix putenv usage for portability (Julio M. Merino Vidal)
  490. * Updated Translations:
  491. - sv (Christian Rose)
  492. - Removed patches to fix build on x86_64 and calendar optimisation for XB59004 as these are in the upstream tarball
  493. * Tue Dec 7 2004 David Malcolm <dmalcolm@redhat.com> - 1.0.2-6
  494. - Amortize writes to a local cache of a webcal calendar, fixing further aspect of #141283 (upstream bugzilla #70267), as posted to mailing list here:
  495. http://lists.ximian.com/archives/public/evolution-patches/2004-December/008338.html
  496. (The groupwise part of that patch did not cleanly apply, so I removed it).
  497. * Thu Dec 2 2004 David Malcolm <dmalcolm@redhat.com> - 1.0.2-5
  498. - Added fix for #141283 (upstream bugzilla XB 59904), a backported calendar
  499. optimisation patch posted to upstream development mailing list here:
  500. http://lists.ximian.com/archives/public/evolution-patches/2004-November/008139.html
  501. * Wed Nov 3 2004 David Malcolm <dmalcolm@redhat.com> - 1.0.2-4
  502. - Added patch to fix usage of GINT_TO_POINTER/GPOINTER_TO_INT for calendar backend GType hash table, breaking on ia64 (#136914)
  503. * Wed Oct 20 2004 David Malcolm <dmalcolm@redhat.com> - 1.0.2-3
  504. - added workaround for a backend leak that causes the "contacts" calendar
  505. backend to hold open an EBook for the local contacts (filed upstream at:
  506. http://bugzilla.ximian.com/show_bug.cgi?id=68533 ); this was causing e-d-s to
  507. never lose its last addressbook, and hence never quit. We workaround this by
  508. detecting this condition and exiting when it occurs, fixing bug #134851 and #134849.
  509. * Tue Oct 12 2004 David Malcolm <dmalcolm@redhat.com> - 1.0.2-2
  510. - added patch to fix build on x86_64 (had multiple definitions of mutex code in libdb/dbinc.mutex.h)
  511. * Tue Oct 12 2004 David Malcolm <dmalcolm@redhat.com> - 1.0.2-1
  512. - update from 1.0.1 to 1.0.2
  513. - increased libsoup requirement to 2.2.1 to match configuration script
  514. * Tue Sep 28 2004 David Malcolm <dmalcolm@redhat.com> - 1.0.1-1
  515. - update from 1.0.0 to 1.0.1
  516. - removed patch that fixed warnings in calendar code (now in upstream tarball)
  517. * Mon Sep 20 2004 David Malcolm <dmalcolm@redhat.com> - 1.0.0-2
  518. - fixed various warnings in the calendar code
  519. (filed upstream here: http://bugzilla.ximian.com/show_bug.cgi?id=66383)
  520. * Tue Sep 14 2004 David Malcolm <dmalcolm@redhat.com> - 1.0.0-1
  521. - update from 0.0.99 to 1.0.0
  522. - changed path in FTP source location from 0.0 to 1.0
  523. * Tue Aug 31 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.99-1
  524. - update from 0.0.98 to 0.0.99
  525. - increased libsoup requirement to 2.2.0 to match configuration script
  526. * Mon Aug 16 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.98-1
  527. - updated tarball from 0.0.97 to 0.0.98; updated required libsoup version to 2.1.13
  528. * Thu Aug 5 2004 Warren Togami <wtogami@redhat.com> - 0.0.97-2
  529. - pkgconfig -devel Requires libbonobo-devel, libgnome-devel
  530. * Wed Aug 4 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.97-1
  531. - upgraded to 0.0.97; rewrote the package's description
  532. * Mon Jul 26 2004 David Malcolm <dmalcolm@redhat.com>
  533. - rebuilt
  534. * Tue Jul 20 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.96-2
  535. - added version numbers to the BuildRequires test for libsoup-devel and ORBit2-devel
  536. * Tue Jul 20 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.96-1
  537. - 0.0.96; libsoup required is now 2.1.12
  538. * Thu Jul 8 2004 David Malcolm <dmalcolm@redhat.com>
  539. - rebuilt
  540. * Wed Jul 7 2004 David Malcolm <dmalcolm@redhat.com>
  541. - rebuilt
  542. * Tue Jul 6 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.95-1
  543. - 0.0.95
  544. * Thu Jun 17 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.94.1-1
  545. - 0.0.94.1
  546. * Mon Jun 7 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.94-2
  547. - rebuilt
  548. * Mon Jun 7 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.94-1
  549. - 0.0.94
  550. * Wed May 26 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.93-4
  551. - added ORBit2 requirement
  552. * Fri May 21 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.93-3
  553. - rebuild again
  554. * Fri May 21 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.93-2
  555. - rebuilt
  556. * Thu May 20 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.93-1
  557. - 0.0.93; libsoup required is now 2.1.10
  558. * Wed Apr 21 2004 David Malcolm <dmalcolm@redhat.com> - 0.0.92-1
  559. - Update to 0.0.92; added a define and a requirement on the libsoup version
  560. * Wed Mar 10 2004 Jeremy Katz <katzj@redhat.com> - 0.0.90-1
  561. - 0.0.90
  562. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  563. - rebuilt
  564. * Mon Jan 26 2004 Jeremy Katz <katzj@redhat.com> - 0.0.6-1
  565. - 0.0.6
  566. * Wed Jan 21 2004 Jeremy Katz <katzj@redhat.com> - 0.0.5-2
  567. - better fix by using system libtool
  568. * Mon Jan 19 2004 Jeremy Katz <katzj@redhat.com> 0.0.5-1
  569. - add some libdb linkage to make the build on x86_64 happy
  570. * Wed Jan 14 2004 Jeremy Katz <katzj@redhat.com> 0.0.5-0
  571. - update to 0.0.5
  572. * Sat Jan 3 2004 Jeremy Katz <katzj@redhat.com> 0.0.4-0
  573. - Initial build.