2008-07-17 18:19:34 +00:00
|
|
|
Summary: Reference implementation of the iCalendar data type and serialization format
|
2010-12-19 21:06:07 +00:00
|
|
|
Name: libical
|
|
|
|
Version: 0.46
|
2011-02-08 06:54:47 +00:00
|
|
|
Release: 3%{?dist}
|
2008-07-17 18:19:34 +00:00
|
|
|
License: LGPLv2 or MPLv1.1
|
2010-12-19 21:06:07 +00:00
|
|
|
Group: System Environment/Libraries
|
2008-07-17 18:19:34 +00:00
|
|
|
URL: http://freeassociation.sourceforge.net/
|
2010-12-19 21:06:07 +00:00
|
|
|
Source: http://downloads.sourceforge.net/freeassociation/%{name}-%{version}.tar.gz
|
|
|
|
Patch0: libical-0.46-icaltimezone.patch
|
|
|
|
Patch1: libical-0.46-errors-are-fatal.patch
|
2010-12-19 22:03:23 +00:00
|
|
|
Patch2: libical-0.46-mkdir_p.patch
|
2010-12-19 21:06:07 +00:00
|
|
|
Requires: tzdata
|
|
|
|
BuildRequires: autoconf, automake, libtool
|
|
|
|
BuildRequires: bison, byacc, flex
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
2008-07-27 15:07:56 +00:00
|
|
|
|
2008-01-19 19:24:27 +00:00
|
|
|
%description
|
2008-07-17 18:19:34 +00:00
|
|
|
Reference implementation of the iCalendar data type and serialization format
|
|
|
|
used in dozens of calendaring and scheduling products.
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for libical
|
|
|
|
Group: Development/Libraries
|
2010-12-19 21:06:07 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}, pkgconfig
|
2008-07-17 18:19:34 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The libical-devel package contains libraries and header files for developing
|
2008-01-19 19:24:27 +00:00
|
|
|
applications that use libical.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2010-12-19 21:06:07 +00:00
|
|
|
%patch0 -p1 -b .icaltimezone
|
|
|
|
%patch1 -p1 -b .errors-are-fatal
|
2010-12-19 22:03:23 +00:00
|
|
|
%patch2 -p1 -b .mkdir_p
|
|
|
|
autoreconf -i -f
|
2008-01-19 19:24:27 +00:00
|
|
|
|
|
|
|
%build
|
2009-01-13 04:50:51 +00:00
|
|
|
%configure --disable-static --enable-reentrant --with-backtrace
|
2008-09-02 22:18:02 +00:00
|
|
|
make %{?_smp_mflags}
|
2008-07-27 14:05:49 +00:00
|
|
|
|
2008-01-19 19:24:27 +00:00
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2010-12-19 21:06:07 +00:00
|
|
|
make DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' install
|
2008-07-17 18:19:34 +00:00
|
|
|
|
2010-12-19 21:06:07 +00:00
|
|
|
# Don't install any libtool .la files
|
2009-05-06 22:47:57 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}*.la
|
2008-01-19 19:24:27 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2010-12-19 21:06:07 +00:00
|
|
|
%doc LICENSE README THANKS
|
2008-07-17 18:19:34 +00:00
|
|
|
%{_libdir}/%{name}.so.*
|
|
|
|
%{_libdir}/libicalss.so.*
|
|
|
|
%{_libdir}/libicalvcal.so.*
|
2008-01-19 19:24:27 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
2008-07-17 18:19:34 +00:00
|
|
|
%doc doc/UsingLibical.txt
|
|
|
|
%{_includedir}/ical.h
|
|
|
|
%{_libdir}/%{name}.so
|
|
|
|
%{_libdir}/libicalss.so
|
|
|
|
%{_libdir}/libicalvcal.so
|
2008-10-28 05:43:06 +00:00
|
|
|
%{_libdir}/pkgconfig/libical.pc
|
2008-09-02 22:18:02 +00:00
|
|
|
%dir %{_includedir}/%{name}
|
|
|
|
%{_includedir}/%{name}/ical*.h
|
|
|
|
%{_includedir}/%{name}/pvl.h
|
|
|
|
%{_includedir}/%{name}/sspm.h
|
2008-10-28 05:35:26 +00:00
|
|
|
%{_includedir}/%{name}/port.h
|
|
|
|
%{_includedir}/%{name}/vcaltmp.h
|
|
|
|
%{_includedir}/%{name}/vcc.h
|
|
|
|
%{_includedir}/%{name}/vobject.h
|
2008-09-02 22:18:02 +00:00
|
|
|
|
2008-01-19 19:24:27 +00:00
|
|
|
%changelog
|
2011-02-08 06:54:47 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.46-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-19 22:03:23 +00:00
|
|
|
* Sun Dec 19 2010 Robert Scheck <robert@fedoraproject.org> 0.46-2
|
|
|
|
- Added patch to work around upstream's broken AC_PROG_MKDIR_P
|
|
|
|
|
2010-12-19 21:06:07 +00:00
|
|
|
* Sun Dec 19 2010 Robert Scheck <robert@fedoraproject.org> 0.46-1
|
|
|
|
- Upgrade to 0.46 (#525933, #628893)
|
|
|
|
- Fixed race in populating builtin timezone components (#637150)
|
|
|
|
- Fixed wrong ICAL_ERRORS_ARE_FATAL preprocessor check (#575715)
|
|
|
|
|
2009-07-25 05:56:04 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.43-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-03-15 18:46:59 +00:00
|
|
|
* Sun Mar 15 2009 Debarshi Ray <rishi@fedoraproject.org> - 0.43-4
|
|
|
|
- Updated patch to fix #includes in the headers to work with
|
|
|
|
'pkg-config --cflags libical'. (Red Hat Bugzilla #484091)
|
|
|
|
|
|
|
|
* Wed Feb 25 2009 Release Engineering <rel-eng@.fedoraproject.org> - 0.43-3
|
|
|
|
- Autorebuild for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
2009-02-25 15:45:40 +00:00
|
|
|
|
2009-02-17 05:06:17 +00:00
|
|
|
* Tue Feb 17 2009 Debarshi Ray <rishi@fedoraproject.org> - 0.43-2
|
2009-03-15 18:46:59 +00:00
|
|
|
- Added patch to fix CFLAGS in libical.pc. (Red Hat Bugzilla #484091)
|
2009-02-17 05:06:17 +00:00
|
|
|
|
2009-01-13 04:50:51 +00:00
|
|
|
* Tue Jan 13 2009 Debarshi Ray <rishi@fedoraproject.org> - 0.43-1
|
|
|
|
- Version bump to 0.43.
|
2009-03-15 18:46:59 +00:00
|
|
|
- Added patch to fix implicit pointer conversion from Debian. (Debian BTS
|
|
|
|
#511598)
|
2009-01-13 04:50:51 +00:00
|
|
|
- Upstream has switched off ICAL_ERRORS_ARE_FATAL by default. This behaviour
|
|
|
|
is being retained across all distributions, including Fedora 11.
|
|
|
|
- Added 'Requires: tzdata'.
|
|
|
|
- Enabled backtrace dumps in the syslog.
|
|
|
|
|
2009-01-08 04:07:02 +00:00
|
|
|
* Thu Jan 08 2009 Debarshi Ray <rishi@fedoraproject.org> - 0.41-2
|
|
|
|
- Switched off ICAL_ERRORS_ARE_FATAL for all distributions, except Fedora 11.
|
2009-03-15 18:46:59 +00:00
|
|
|
(Red Hat Bugzilla #478331)
|
2009-01-08 04:07:02 +00:00
|
|
|
|
2008-11-25 08:50:48 +00:00
|
|
|
* Sun Nov 23 2008 Debarshi Ray <rishi@fedoraproject.org> - 0.41-1
|
2009-03-15 18:46:59 +00:00
|
|
|
- Version bump to 0.41. (Red Hat Bugzilla #469252)
|
2008-11-25 08:50:48 +00:00
|
|
|
- Disabled C++ bindings.
|
|
|
|
|
2008-10-28 05:07:56 +00:00
|
|
|
* Tue Oct 28 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> - 0.40-1
|
2009-03-15 18:46:59 +00:00
|
|
|
- Version bump to 0.40. (Red Hat Bugzilla #466359)
|
2008-10-28 05:07:56 +00:00
|
|
|
- Add patch from upstream to fix crash in icalvalue.c.
|
2008-10-28 05:24:38 +00:00
|
|
|
- Update makefile patch, remove the test part (already applied).
|
2008-10-28 05:43:06 +00:00
|
|
|
- Package libical.pc, add Requires: pkgconfig to -devel.
|
2008-10-28 05:07:56 +00:00
|
|
|
|
2008-09-02 22:18:02 +00:00
|
|
|
* Tue Sep 03 2008 Debarshi Ray <rishi@fedoraproject.org> - 0.32-1
|
|
|
|
- Version bump to 0.32.
|
|
|
|
- Parallel build problems fixed.
|
|
|
|
|
2008-07-27 15:07:56 +00:00
|
|
|
* Sun Jul 27 2008 Jeff Perry <jeffperry_fedora@sourcesink.com> - 0.31-3
|
|
|
|
- Added 'BuildRequires: bison byacc flex'.
|
|
|
|
|
2008-07-27 14:05:49 +00:00
|
|
|
* Sun Jul 27 2008 Debarshi Ray <rishi@fedoraproject.org> - 0.31-2
|
|
|
|
- Fixed linkage problems and disabled parallel build till upstream accepts fix.
|
|
|
|
|
2008-07-17 18:19:34 +00:00
|
|
|
* Thu Jul 17 2008 Jeff Perry <jeffperry_fedora@sourcesink.com> - 0.31-1
|
|
|
|
- Version bump to 0.31.
|
|
|
|
|
|
|
|
* Thu Jul 17 2008 Debarshi Ray <rishi@fedoraproject.org> - 0.30-4
|
|
|
|
- Changed value of License according to Fedora licensing guidelines.
|
|
|
|
- Enabled reentrant system calls and C++ bindings.
|
|
|
|
- Omitted unused direct shared library dependencies.
|
|
|
|
- Added ChangeLog, COPYING, LICENSE, NEWS and README to doc and dropped
|
|
|
|
examples.
|
|
|
|
|
2008-04-02 13:34:21 +00:00
|
|
|
* Wed Apr 02 2008 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.30-3
|
|
|
|
- Source URL... Fixed
|
|
|
|
|
2008-04-02 13:23:04 +00:00
|
|
|
* Wed Apr 02 2008 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.30-2
|
|
|
|
- Removed untrue note about libical's homepage (to get rid of eventuall mess)
|
|
|
|
|
2008-02-23 22:18:32 +00:00
|
|
|
* Sat Feb 23 2008 David Nielsen <gnomeuser@gmail.com> - 0.30-1
|
|
|
|
- Switch to freeassociation libical
|
|
|
|
- bump to 0.30
|
|
|
|
|
2008-02-09 18:45:34 +00:00
|
|
|
* Sat Feb 09 2008 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.27-5
|
|
|
|
- Mass rebuild for new GCC... Done
|
|
|
|
|
2008-01-19 19:24:27 +00:00
|
|
|
* Sat Jan 19 2008 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.27-4
|
|
|
|
- Licence... Fixed
|
|
|
|
|
|
|
|
* Fri Jan 18 2008 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.27-3
|
|
|
|
- Files section... Fixed
|
|
|
|
|
|
|
|
* Thu Jan 17 2008 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.27-2
|
|
|
|
- Source... Changed
|
|
|
|
- Debug information in libical main package... Excluded
|
|
|
|
- Non-numbered .so files in libical main package... Moved
|
|
|
|
- libical-devel documentation... Added
|
|
|
|
|
|
|
|
* Mon Dec 24 2007 Jakub 'Livio' Rusinek <jakub.rusinek@gmail.com> - 0.27-1
|
|
|
|
- Initial release
|