evolution-data-server-vl.spec 24 KB

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