|
|
b4f076 |
%global _changelog_trimtime %(date +%s -d "1 year ago")
|
|
|
b4f076 |
|
|
|
b4f076 |
%define tp_glib_ver 0.19.0
|
|
|
b4f076 |
|
|
|
b4f076 |
Name: folks
|
|
|
b4f076 |
Epoch: 1
|
|
|
b4f076 |
Version: 0.11.4
|
|
|
b4f076 |
Release: 1%{?dist}
|
|
|
b4f076 |
Summary: GObject contact aggregation library
|
|
|
b4f076 |
|
|
|
b4f076 |
License: LGPLv2+
|
|
|
b4f076 |
URL: http://telepathy.freedesktop.org/wiki/Folks
|
|
|
b4f076 |
Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/0.11/%{name}-%{version}.tar.xz
|
|
|
b4f076 |
|
|
|
b4f076 |
BuildRequires: chrpath
|
|
|
b4f076 |
BuildRequires: telepathy-glib-devel >= %{tp_glib_ver}
|
|
|
b4f076 |
BuildRequires: telepathy-glib-vala
|
|
|
b4f076 |
BuildRequires: glib2-devel
|
|
|
b4f076 |
BuildRequires: gobject-introspection-devel
|
|
|
b4f076 |
BuildRequires: intltool
|
|
|
b4f076 |
BuildRequires: vala-devel >= 0.17.6
|
|
|
b4f076 |
BuildRequires: vala
|
|
|
b4f076 |
BuildRequires: libxml2-devel
|
|
|
b4f076 |
BuildRequires: GConf2-devel
|
|
|
b4f076 |
BuildRequires: evolution-data-server-devel >= 3.13.90
|
|
|
b4f076 |
BuildRequires: readline-devel
|
|
|
b4f076 |
## BuildRequires: tracker-devel >= 0.10
|
|
|
b4f076 |
BuildRequires: pkgconfig(gee-0.8) >= 0.8.4
|
|
|
b4f076 |
|
|
|
b4f076 |
%description
|
|
|
b4f076 |
libfolks is a library that aggregates people from multiple sources (e.g.
|
|
|
b4f076 |
Telepathy connection managers and eventually evolution data server,
|
|
|
b4f076 |
Facebook, etc.) to create meta-contacts.
|
|
|
b4f076 |
|
|
|
b4f076 |
|
|
|
b4f076 |
%package tools
|
|
|
b4f076 |
Summary: Tools for %{name}
|
|
|
b4f076 |
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
|
|
|
b4f076 |
|
|
|
b4f076 |
%description tools
|
|
|
b4f076 |
%{name}-tools contains a database and import tool.
|
|
|
b4f076 |
|
|
|
b4f076 |
|
|
|
b4f076 |
%package devel
|
|
|
b4f076 |
Summary: Development files for %{name}
|
|
|
b4f076 |
Requires: %{name}%{?_isa} = %{epoch}:%{version}-%{release}
|
|
|
b4f076 |
Requires: %{name}-tools%{?_isa} = %{epoch}:%{version}-%{release}
|
|
|
b4f076 |
|
|
|
b4f076 |
%description devel
|
|
|
b4f076 |
The %{name}-devel package contains libraries and header files for
|
|
|
b4f076 |
developing applications that use %{name}.
|
|
|
b4f076 |
|
|
|
b4f076 |
|
|
|
b4f076 |
%prep
|
|
|
b4f076 |
%setup -q
|
|
|
b4f076 |
|
|
|
b4f076 |
|
|
|
b4f076 |
%build
|
|
|
b4f076 |
%configure \
|
|
|
b4f076 |
--disable-static \
|
|
|
b4f076 |
--disable-fatal-warnings \
|
|
|
b4f076 |
--enable-eds-backend \
|
|
|
b4f076 |
--enable-bluez-backend \
|
|
|
b4f076 |
--disable-zeitgeist \
|
|
|
b4f076 |
--enable-vala \
|
|
|
b4f076 |
--enable-inspect-tool \
|
|
|
b4f076 |
--disable-libsocialweb-backend
|
|
|
b4f076 |
make %{?_smp_mflags} V=1
|
|
|
b4f076 |
|
|
|
b4f076 |
|
|
|
b4f076 |
%install
|
|
|
b4f076 |
%make_install
|
|
|
b4f076 |
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
b4f076 |
|
|
|
b4f076 |
# Remove lib64 rpaths
|
|
|
b4f076 |
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/folks/43/backends/key-file/key-file.so
|
|
|
b4f076 |
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/folks/43/backends/ofono/ofono.so
|
|
|
b4f076 |
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/folks/43/backends/telepathy/telepathy.so
|
|
|
b4f076 |
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/folks/43/backends/bluez/bluez.so
|
|
|
b4f076 |
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/folks/43/backends/eds/eds.so
|
|
|
b4f076 |
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/folks/43/backends/dummy/dummy.so
|
|
|
b4f076 |
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libfolks-dummy.so
|
|
|
b4f076 |
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libfolks-eds.so
|
|
|
b4f076 |
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libfolks-telepathy.so
|
|
|
b4f076 |
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/folks-import
|
|
|
b4f076 |
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/folks-inspect
|
|
|
b4f076 |
|
|
|
b4f076 |
%find_lang %{name}
|
|
|
b4f076 |
|
|
|
b4f076 |
|
|
|
b4f076 |
%check
|
|
|
b4f076 |
%ifnarch ppc64
|
|
|
b4f076 |
VERBOSE=1 make check
|
|
|
b4f076 |
%endif
|
|
|
b4f076 |
|
|
|
b4f076 |
|
|
|
b4f076 |
%post -p /sbin/ldconfig
|
|
|
b4f076 |
|
|
|
b4f076 |
|
|
|
b4f076 |
%postun
|
|
|
b4f076 |
/sbin/ldconfig
|
|
|
b4f076 |
if [ $1 -eq 0 ]; then
|
|
|
b4f076 |
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
|
|
b4f076 |
fi
|
|
|
b4f076 |
|
|
|
b4f076 |
|
|
|
b4f076 |
%posttrans
|
|
|
b4f076 |
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
|
|
b4f076 |
|
|
|
b4f076 |
|
|
|
b4f076 |
%files -f %{name}.lang
|
|
|
b4f076 |
%license COPYING
|
|
|
b4f076 |
%doc AUTHORS README NEWS
|
|
|
b4f076 |
%{_libdir}/*.so.*
|
|
|
b4f076 |
%{_libdir}/folks
|
|
|
b4f076 |
%{_libdir}/girepository-1.0/Folks-0.6.typelib
|
|
|
b4f076 |
%{_libdir}/girepository-1.0/FolksDummy-0.6.typelib
|
|
|
b4f076 |
%{_libdir}/girepository-1.0/FolksEds-0.6.typelib
|
|
|
b4f076 |
%{_libdir}/girepository-1.0/FolksTelepathy-0.6.typelib
|
|
|
b4f076 |
%{_datadir}/GConf/gsettings/folks.convert
|
|
|
b4f076 |
%{_datadir}/glib-2.0/schemas/org.freedesktop.folks.gschema.xml
|
|
|
b4f076 |
|
|
|
b4f076 |
%files tools
|
|
|
b4f076 |
%{_bindir}/%{name}-import
|
|
|
b4f076 |
%{_bindir}/%{name}-inspect
|
|
|
b4f076 |
|
|
|
b4f076 |
%files devel
|
|
|
b4f076 |
%{_includedir}/folks
|
|
|
b4f076 |
%{_libdir}/*.so
|
|
|
b4f076 |
%{_libdir}/pkgconfig/folks*.pc
|
|
|
b4f076 |
%{_datadir}/gir-1.0/Folks-0.6.gir
|
|
|
b4f076 |
%{_datadir}/gir-1.0/FolksDummy-0.6.gir
|
|
|
b4f076 |
%{_datadir}/gir-1.0/FolksEds-0.6.gir
|
|
|
b4f076 |
%{_datadir}/gir-1.0/FolksTelepathy-0.6.gir
|
|
|
b4f076 |
%dir %{_datadir}/vala
|
|
|
b4f076 |
%dir %{_datadir}/vala/vapi
|
|
|
b4f076 |
%{_datadir}/vala/vapi/%{name}*
|
|
|
b4f076 |
|
|
|
b4f076 |
|
|
|
b4f076 |
%changelog
|
|
|
b4f076 |
* Wed May 23 2018 Kalev Lember <klember@redhat.com> - 1:0.11.4-1
|
|
|
b4f076 |
- Update to 0.11.4
|
|
|
b4f076 |
- Disable tests on PPC64 to avoid timeouts
|
|
|
b4f076 |
- Resolves: #1569814
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Sep 21 2016 Kalev Lember <klember@redhat.com> - 1:0.11.3-1
|
|
|
b4f076 |
- Update to 0.11.3
|
|
|
b4f076 |
- Resolves: #1386858
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Jun 29 2016 Matthias Clasen <mclasen@redhat.com> - 1:0.10.1-2
|
|
|
b4f076 |
- Update translations
|
|
|
b4f076 |
- Resolves: #1304298
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Mar 23 2015 Richard Hughes <rhughes@redhat.com> - 1:0.10.1-1
|
|
|
b4f076 |
- Update to 0.10.1
|
|
|
b4f076 |
- Resolves: #1174528
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Mar 19 2015 Richard Hughes <rhughes@redhat.com> - 1:0.10.0-1
|
|
|
b4f076 |
- Update to 0.10.0
|
|
|
b4f076 |
- Resolves: #1174528
|
|
|
b4f076 |
|
|
|
b4f076 |
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:0.9.2-7
|
|
|
b4f076 |
- Mass rebuild 2014-01-24
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Jan 22 2014 Alexander Larsson <alexl@redhat.com> - 1:0.9.2-6
|
|
|
b4f076 |
- Add translations
|
|
|
b4f076 |
Resolves: rhbz#1030332
|
|
|
b4f076 |
|
|
|
b4f076 |
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:0.9.2-5
|
|
|
b4f076 |
- Mass rebuild 2013-12-27
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Jul 2 2013 Alexander Larsson <alexl@redhat.com> - 1:0.9.2-4
|
|
|
b4f076 |
- Update source url
|
|
|
b4f076 |
- Remove zeitgeist dependency (this is not in RHEL7)
|
|
|
b4f076 |
|
|
|
b4f076 |
* Sat Jun 22 2013 Matthias Clasen <mclasen@redhat.com> - 1:0.9.2-3
|
|
|
b4f076 |
- Trim %%changelog
|
|
|
b4f076 |
|
|
|
b4f076 |
* Fri Jun 21 2013 Matthias Clasen <mclasen@redhat.com> - 1:0.9.2-2
|
|
|
b4f076 |
- Install NEWS instead of ChangeLog (saves some space)
|
|
|
b4f076 |
|
|
|
b4f076 |
* Sat Jun 8 2013 Brian Pepple <bpepple@fedoraproject.org> - 1:0.9.2-1
|
|
|
b4f076 |
- Update to 0.9.2.
|
|
|
b4f076 |
- Bump minimum version of eds needed.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Apr 30 2013 Brian Pepple <bpepple@fedoraproject.org> - 1:0.9.1-2
|
|
|
b4f076 |
- Rebuild against new eds.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Feb 19 2013 Richard Hughes <rhughes@redhat.com> - 1:0.9.1-1
|
|
|
b4f076 |
- Update to 0.9.1
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.8.0-5
|
|
|
b4f076 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
b4f076 |
|
|
|
b4f076 |
* Fri Dec 21 2012 Kalev Lember <kalevlember@gmail.com> - 1:0.8.0-4
|
|
|
b4f076 |
- Rebuild for new libcamel.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Nov 20 2012 Milan Crha <mcrha@redhat.com> - 1:0.8.0-3
|
|
|
b4f076 |
- Rebuild for new libcamel.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Oct 25 2012 Milan Crha <mcrha@redhat.com> - 1:0.8.0-2
|
|
|
b4f076 |
- Rebuild for new libcamel.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Oct 4 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.8.0-1
|
|
|
b4f076 |
- Update to 0.8.0
|
|
|
b4f076 |
- Update source url.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Sep 19 2012 Kalev Lember <kalevlember@gmail.com> - 1:0.7.4.1-2
|
|
|
b4f076 |
- Silence glib-compile-schemas scriplets
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Sep 12 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.7.4.1-1
|
|
|
b4f076 |
- Update to 0.7.4.1.
|
|
|
b4f076 |
- Bump minimum requirement for tp-glib and vala.
|
|
|
b4f076 |
- Drop staticmember patches. Fixed upstream.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Aug 27 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.7.3-2
|
|
|
b4f076 |
- Rebuild for new libcamel.
|
|
|
b4f076 |
- Pull upstream patches to fix build errors caused by accessing static members.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Sun Jul 29 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.7.3-1
|
|
|
b4f076 |
- Update to 0.7.3.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.7.2.2-3
|
|
|
b4f076 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Jul 18 2012 Matthias Clasen <mclasen@redhat.com> - 1:0.7.2.2-2
|
|
|
b4f076 |
- Rebuild
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Jul 3 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.7.2.2-1
|
|
|
b4f076 |
- Update to 0.7.2.2.
|
|
|
b4f076 |
- Update eds version needed.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Jun 28 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.7.2.1-1
|
|
|
b4f076 |
- Update to 0.7.2.1.
|
|
|
b4f076 |
- Drop book-uid patch. Fixed upstream.
|
|
|
b4f076 |
- Bump minimum version of eds needed.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Jun 25 2012 Matthias Clasen <mclasen@redhat.com> - 1:0.7.1-2
|
|
|
b4f076 |
- Update for e-d-s api change
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Jun 18 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.7.1-1
|
|
|
b4f076 |
- Update to 0.7.1.
|
|
|
b4f076 |
- Bump version of eds and tp-glib needed.
|
|
|
b4f076 |
- Add BR on libzeitgeist-devel.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Jun 13 2012 Cosimo Cecchi <cosimoc@redhat.com> - 1:0.7.0-2
|
|
|
b4f076 |
- Disable libsocialweb backend
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Apr 17 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.7.0-1
|
|
|
b4f076 |
- Update to 0.7.0.
|
|
|
b4f076 |
- Update source url.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Apr 16 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.9-1
|
|
|
b4f076 |
- Update to 0.6.9.
|
|
|
b4f076 |
- Drop patch that fixed account sync crash. Fixed upstream.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Apr 5 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.8-4
|
|
|
b4f076 |
- Enable inspect tool (#810098)
|
|
|
b4f076 |
- Add BR on readline-devel.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Apr 03 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.8-3
|
|
|
b4f076 |
- Rebuild against new tp-glib.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Fri Mar 30 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.8-2
|
|
|
b4f076 |
- Backport patch to fix crash cause by TpAccount are out of sync.
|
|
|
b4f076 |
- Bump minimum version of tp-glib needed.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Mar 26 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.8-1
|
|
|
b4f076 |
- Update to 0.6.8.
|
|
|
b4f076 |
- Bump minimum verions of libsocialweb-devel and vala-devel.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Feb 22 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.7-1
|
|
|
b4f076 |
- Update to 0.6.7.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Feb 6 2012 Brian Pepple <bpepple@fedoraproject.org> 1:0.6.6-3
|
|
|
b4f076 |
- Rebuild for new eds.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Sun Jan 08 2012 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.6-2
|
|
|
b4f076 |
- Rebuild for new gcc.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Dec 14 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.6-1
|
|
|
b4f076 |
- Update to 0.6.6.
|
|
|
b4f076 |
- Drop name details non-null patch. Fixed upstream.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Nov 30 2011 Peter Robinson <pbrobinson@fedoraproject.org> - 1:0.6.5-4
|
|
|
b4f076 |
- Move the vala vapi files to the devel package where they should be and add the appropriate requires
|
|
|
b4f076 |
|
|
|
b4f076 |
* Sun Nov 27 2011 Colin Walters <walters@verbum.org> - 1:0.6.5-3
|
|
|
b4f076 |
- Add patch from git to fix gnome-shell crashes
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Nov 22 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.5-2
|
|
|
b4f076 |
- Rebuild against new eds
|
|
|
b4f076 |
|
|
|
b4f076 |
* Fri Nov 11 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.5-1
|
|
|
b4f076 |
- Update to 0.6.5.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.6.4.1-3
|
|
|
b4f076 |
- Rebuilt for glibc bug#747377
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Oct 24 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.4.1-2
|
|
|
b4f076 |
- Rebuld against libcamel.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Oct 18 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.4.1-1
|
|
|
b4f076 |
- Update to 0.6.4.1.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Oct 18 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.4-1
|
|
|
b4f076 |
- Update to 0.6.4.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Sep 26 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.3.2-1
|
|
|
b4f076 |
- Update to 0.6.3.2.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Sun Sep 25 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.3.1-1
|
|
|
b4f076 |
- Update to 0.6.3.1.
|
|
|
b4f076 |
- Drop typelib patch. Fixed upstream.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Sep 21 2011 Matthias Clasen <mclasen@redhat.com> - 1:0.6.3-2
|
|
|
b4f076 |
- Fix another typelib problem
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Sep 19 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.3-1
|
|
|
b4f076 |
- Update to 0.6.3.
|
|
|
b4f076 |
- Drop typelib patch. Fixed upstream.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Sep 14 2011 Owen Taylor <otaylor@redhat.com> - 1:0.6.2.1-2
|
|
|
b4f076 |
- Really fix the typelib to embed the right .so file
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Sep 8 2011 Matthias Clasen <mclasen@redhat.com> - 1:0.6.2.1-1
|
|
|
b4f076 |
- Really fix the reentrancy problem, by using 0.6.2.1
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Sep 8 2011 Matthias Clasen <mclasen@redhat.com> - 1:0.6.2-2
|
|
|
b4f076 |
- Fix a reentrancy problem that causes gnome-shell to crash
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Sep 8 2011 Matthias Clasen <mclasen@redhat.com> - 1:0.6.2-1
|
|
|
b4f076 |
- Update to 0.6.2.1
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Sep 8 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.2-1
|
|
|
b4f076 |
- Update to 0.6.2
|
|
|
b4f076 |
- Use old libgee api.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Sep 7 2011 Matthias Clasen <mclasen@redhat.com> - 1:0.6.1-4
|
|
|
b4f076 |
- Try again
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Sep 06 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.1-3
|
|
|
b4f076 |
- Rebuld against new libcamel.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Sep 1 2011 Matthias Clasen <mclasen@redhat.com> - 1:0.6.1-2
|
|
|
b4f076 |
- Fix up the typelib
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Aug 29 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.1-1
|
|
|
b4f076 |
- Update to 0.6.1.
|
|
|
b4f076 |
- Drop EDS patch. Fixed upstream.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Aug 29 2011 Milan Crha <mcrha@redhat.com> - 1:0.6.0-6
|
|
|
b4f076 |
- Rebuild against newer evolution-data-server
|
|
|
b4f076 |
|
|
|
b4f076 |
* Fri Aug 19 2011 Matthias Clasen <mclasen@redhat.com> - 1:0.6.0-4
|
|
|
b4f076 |
- Try again to rebuild
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Aug 16 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.0-2
|
|
|
b4f076 |
- Rebuld for new eds
|
|
|
b4f076 |
|
|
|
b4f076 |
* Sat Aug 13 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.6.0-1
|
|
|
b4f076 |
- Update to 0.6.0.
|
|
|
b4f076 |
- Update source url.
|
|
|
b4f076 |
- Add BR on eds-devel and libsocialweb-devel.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Fri Jun 10 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.5.2-1
|
|
|
b4f076 |
- Update to 0.5.2.
|
|
|
b4f076 |
- Add BR on GConf2-devel.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Mar 23 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.4.2-1
|
|
|
b4f076 |
- Update to 0.4.2.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Fri Mar 18 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.4.1-1
|
|
|
b4f076 |
- Update to 0.4.1.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Mar 17 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.4.0-2
|
|
|
b4f076 |
- Update source url.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Mar 17 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.4.0-1
|
|
|
b4f076 |
- Update to 0.4.0.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Feb 14 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.3.6-1
|
|
|
b4f076 |
- Update to 0.3.6.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.3.4-2
|
|
|
b4f076 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Jan 31 2011 Brian Pepple <bpepple@fedoraproject.org> - 1:0.3.4-1
|
|
|
b4f076 |
- Update to 0.3.4.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Dec 14 2010 Brian Pepple <bpepple@fedoraproject.org> - 1:0.3.3-1
|
|
|
b4f076 |
- Update to 0.3.3.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Sun Nov 14 2010 Brian Pepple <bpepple@fedoraproject.org> - 1:0.3.2-1
|
|
|
b4f076 |
- Update to 0.3.2.
|
|
|
b4f076 |
- Update min version of tp-glib.
|
|
|
b4f076 |
- Update source url.
|
|
|
b4f076 |
- Drop dso linking patch. Fixed upstream.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Fri Oct 29 2010 Brian Pepple <bpepple@fedoraproject.org> - 1:0.2.1-1
|
|
|
b4f076 |
- Update to 0.2.1.
|
|
|
b4f076 |
- Add patch to fix dso linking. (fdo #633511)
|
|
|
b4f076 |
|
|
|
b4f076 |
* Fri Oct 29 2010 Brian Pepple <bpepple@fedoraproject.org> - 1:0.2.0-4
|
|
|
b4f076 |
- Add epoch to devel subpackage requires.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Oct 25 2010 Brian Pepple <bpepple@fedoraproject.org> - 1:0.2.0-3
|
|
|
b4f076 |
- Revert back to 0.2.x until gtk-2.92.1 or greater is in rawhide.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Oct 20 2010 Brian Pepple <bpepple@fedoraproject.org> - 0.3.1-1
|
|
|
b4f076 |
- Update to 0.3.1.
|
|
|
b4f076 |
- Update source url.
|
|
|
b4f076 |
- Update tp-glib version required.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Sep 29 2010 jkeating - 0.2.0-2
|
|
|
b4f076 |
- Rebuilt for gcc bug 634757
|
|
|
b4f076 |
|
|
|
b4f076 |
* Sat Sep 25 2010 Brian Pepple <bpepple@fedoraproject.org> - 0.2.0-1
|
|
|
b4f076 |
- Update to 0.2.0.
|
|
|
b4f076 |
- Add missing requires to devel subpackage.
|
|
|
b4f076 |
- Drop DSO linkng patch. Fixed upstream.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Sun Sep 12 2010 Brian Pepple <bpepple@fedoraproject.org> - 0.1.17-1
|
|
|
b4f076 |
- Update to 0.1.17.
|
|
|
b4f076 |
- Add patch to fix DSO linking for import tool.
|
|
|
b4f076 |
- Add BR on libxml2-devel so import tool is built.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Sep 1 2010 Yanko Kaneti <yaneti@declera.com> 0.1.16-1
|
|
|
b4f076 |
- New upstream release.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Aug 30 2010 Yanko Kaneti <yaneti@declera.com> 0.1.15-1
|
|
|
b4f076 |
- New upstream release. Drop the RPATH hacks.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Aug 19 2010 Yanko Kaneti <yaneti@declera.com> 0.1.14.1-1
|
|
|
b4f076 |
- New upstream release. Requires vala >= 0.9.6
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Aug 19 2010 Yanko Kaneti <yaneti@declera.com> 0.1.14-2
|
|
|
b4f076 |
- Use chrpath to remove the lingering RPATH because the guidelines
|
|
|
b4f076 |
recomended sed makes libtool incapable of building the tp-lowlevel.gir.
|
|
|
b4f076 |
Better solution welcome.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Wed Aug 18 2010 Yanko Kaneti <yaneti@declera.com> 0.1.14-1
|
|
|
b4f076 |
- New upstream. Remove patch and libtool hack.
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Aug 17 2010 Yanko Kaneti <yaneti@declera.com> 0.1.13-4
|
|
|
b4f076 |
- Add BR: vala-tools
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Aug 17 2010 Yanko Kaneti <yaneti@declera.com> 0.1.13-3
|
|
|
b4f076 |
- Update for the available telepathy-glib vala packaging
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Aug 12 2010 Yanko Kaneti <yaneti@declera.com> 0.1.13-2
|
|
|
b4f076 |
- Add BR: libgee-devel
|
|
|
b4f076 |
|
|
|
b4f076 |
* Thu Aug 12 2010 Yanko Kaneti <yaneti@declera.com> 0.1.13-1
|
|
|
b4f076 |
- New upstream release
|
|
|
b4f076 |
- Autofoo for the new vala api versioning
|
|
|
b4f076 |
|
|
|
b4f076 |
* Tue Aug 3 2010 Yanko Kaneti <yaneti@declera.com> 0.1.12-1
|
|
|
b4f076 |
- New upstream release
|
|
|
b4f076 |
|
|
|
b4f076 |
* Mon Aug 2 2010 Yanko Kaneti <yaneti@declera.com> 0.1.11-1
|
|
|
b4f076 |
- Packaged for review
|