7bfe53
%if 0%{?fedora} || 0%{?rhel} > 7
7bfe53
%global use_python3 1
7bfe53
%else
7bfe53
%global use_python3 0
7bfe53
%endif
7bfe53
7bfe53
%global apiver 1.0
7bfe53
7bfe53
Name:           libpeas
7bfe53
Version:        1.22.0
7bfe53
Release:        6%{?dist}
7bfe53
Summary:        Plug-ins implementation convenience library
7bfe53
7bfe53
License:        LGPLv2+
7bfe53
URL:            https://wiki.gnome.org/Projects/Libpeas
7bfe53
Source0:        https://download.gnome.org/sources/%{name}/1.22/%{name}-%{version}.tar.xz
7bfe53
7bfe53
BuildRequires:  chrpath
7bfe53
BuildRequires:  gcc
7bfe53
BuildRequires:  intltool
7bfe53
BuildRequires:  make
7bfe53
BuildRequires:  pkgconfig(gio-2.0)
7bfe53
BuildRequires:  pkgconfig(gladeui-2.0)
7bfe53
BuildRequires:  pkgconfig(glib-2.0)
7bfe53
BuildRequires:  pkgconfig(gmodule-2.0)
7bfe53
BuildRequires:  pkgconfig(gobject-2.0)
7bfe53
BuildRequires:  pkgconfig(gobject-introspection-1.0)
7bfe53
BuildRequires:  pkgconfig(gtk+-3.0)
7bfe53
BuildRequires:  pkgconfig(pygobject-3.0)
7bfe53
%if %{use_python3}
7bfe53
BuildRequires:  python3-devel
7bfe53
%endif
7bfe53
7bfe53
%description
7bfe53
libpeas is a convenience library making adding plug-ins support
7bfe53
to glib-based applications.
7bfe53
7bfe53
%package gtk
7bfe53
Summary:        GTK+ plug-ins support for libpeas
7bfe53
Requires:       %{name}%{?_isa} = %{version}-%{release}
7bfe53
7bfe53
%description gtk
7bfe53
libpeas-gtk is a convenience library making adding plug-ins support
7bfe53
to GTK+-based applications.
7bfe53
7bfe53
%if %{use_python3}
7bfe53
%package loader-python3
7bfe53
Summary:        Python 3 loader for libpeas
7bfe53
Requires:       %{name}%{?_isa} = %{version}-%{release}
7bfe53
Requires:       python3-gobject
7bfe53
7bfe53
Obsoletes: libpeas-loader-python < %{version}-%{release}
7bfe53
Provides: libpeas-loader-python = %{version}-%{release}
7bfe53
7bfe53
%description loader-python3
7bfe53
This package contains the Python 3 loader that is needed to
7bfe53
run Python 3 plugins that use libpeas.
7bfe53
%endif
7bfe53
7bfe53
%package devel
7bfe53
Summary:        Development files for libpeas
7bfe53
Requires:       %{name}%{?_isa} = %{version}-%{release}
7bfe53
Requires:       %{name}-gtk%{?_isa} = %{version}-%{release}
7bfe53
7bfe53
%description devel
7bfe53
This package contains development libraries and header files
7bfe53
that are needed to write applications that use libpeas.
7bfe53
7bfe53
%prep
7bfe53
%autosetup
7bfe53
7bfe53
%build
7bfe53
%configure --disable-silent-rules
7bfe53
%make_build
7bfe53
7bfe53
%install
7bfe53
%make_install
7bfe53
7bfe53
find $RPM_BUILD_ROOT%{_libdir} -type f -name '*.la' -print -delete
7bfe53
7bfe53
# Remove rpath as per https://fedoraproject.org/wiki/Packaging/Guidelines#Beware_of_Rpath
7bfe53
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/peas-demo
7bfe53
%if %{use_python3}
7bfe53
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libpeas-1.0/loaders/libpython3loader.so
7bfe53
%endif
7bfe53
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libpeas-gtk-1.0.so
7bfe53
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/peas-demo/plugins/helloworld/libhelloworld.so
7bfe53
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/peas-demo/plugins/secondtime/libsecondtime.so
7bfe53
7bfe53
%find_lang libpeas
7bfe53
7bfe53
%ldconfig_scriptlets
7bfe53
7bfe53
%files -f libpeas.lang
7bfe53
%doc AUTHORS NEWS README
7bfe53
%license COPYING
7bfe53
%{_libdir}/libpeas-%{apiver}.so.*
7bfe53
%dir %{_libdir}/libpeas-%{apiver}/
7bfe53
%dir %{_libdir}/libpeas-%{apiver}/loaders
7bfe53
%dir %{_libdir}/girepository-1.0
7bfe53
%{_libdir}/girepository-1.0/Peas-%{apiver}.typelib
7bfe53
%{_datadir}/icons/hicolor/*/actions/libpeas-plugin.*
7bfe53
7bfe53
%files gtk
7bfe53
%{_libdir}/libpeas-gtk-%{apiver}.so.*
7bfe53
%{_libdir}/girepository-1.0/PeasGtk-%{apiver}.typelib
7bfe53
7bfe53
%if %{use_python3}
7bfe53
%files loader-python3
7bfe53
%{_libdir}/libpeas-%{apiver}/loaders/libpython3loader.so
7bfe53
%endif
7bfe53
7bfe53
%files devel
7bfe53
%{_bindir}/peas-demo
7bfe53
%{_includedir}/libpeas-%{apiver}/
7bfe53
%{_libdir}/peas-demo/
7bfe53
%dir %{_datadir}/gtk-doc/
7bfe53
%dir %{_datadir}/gtk-doc/html/
7bfe53
%{_datadir}/gtk-doc/html/libpeas/
7bfe53
%{_libdir}/libpeas-%{apiver}.so
7bfe53
%{_libdir}/libpeas-gtk-%{apiver}.so
7bfe53
%dir %{_datadir}/gir-1.0
7bfe53
%{_datadir}/gir-1.0/Peas-%{apiver}.gir
7bfe53
%{_datadir}/gir-1.0/PeasGtk-%{apiver}.gir
7bfe53
%{_libdir}/pkgconfig/libpeas-%{apiver}.pc
7bfe53
%{_libdir}/pkgconfig/libpeas-gtk-%{apiver}.pc
7bfe53
%{_datadir}/glade/catalogs/libpeas-gtk.xml
7bfe53
7bfe53
%changelog
7bfe53
* Wed Jun 06 2018 Bastien Nocera <bnocera@redhat.com> - 1.22.0-6
7bfe53
+ libpeas-1.22.0-6
7bfe53
- Remove python2 loader, all GNOME apps using libpeas were ported to Python3
7bfe53
  when ported to GTK+ 3.x, and obsolete libpeas-loader-python
7bfe53
- Resolves: #1559090
7bfe53
7bfe53
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.22.0-5
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
7bfe53
7bfe53
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.22.0-4
7bfe53
- Switch to %%ldconfig_scriptlets
7bfe53
7bfe53
* Fri Jan 05 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.22.0-3
7bfe53
- Remove obsolete scriptlets
7bfe53
7bfe53
* Thu Nov 30 2017 Merlin Mathesius <mmathesi@redhat.com> - 1.22.0-2
7bfe53
- Cleanup spec file conditionals
7bfe53
7bfe53
* Sun Sep 10 2017 Kalev Lember <klember@redhat.com> - 1.22.0-1
7bfe53
- Update to 1.22.0
7bfe53
7bfe53
* Tue Aug 15 2017 Kalev Lember <klember@redhat.com> - 1.21.0-1
7bfe53
- Update to 1.21.0
7bfe53
7bfe53
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.21.0-0.3.gitbcc8644
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
7bfe53
7bfe53
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.21.0-0.2.gitbcc8644
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
7bfe53
7bfe53
* Tue Jul 18 2017 Kalev Lember <klember@redhat.com> - 1.21.0-0.1.gitbcc8644
7bfe53
- Update to 1.21.0 git snapshot
7bfe53
7bfe53
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.20.0-5
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
7bfe53
7bfe53
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.20.0-4
7bfe53
- Rebuild for Python 3.6
7bfe53
7bfe53
* Thu Nov 24 2016 Kalev Lember <klember@redhat.com> - 1.20.0-3
7bfe53
- Remove lib64 rpaths
7bfe53
- Update RHEL conditionals
7bfe53
- Fix directory ownership
7bfe53
7bfe53
* Tue Nov 08 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.20.0-2
7bfe53
- Trivial fixes in spec
7bfe53
- disable silent building
7bfe53
- use %%autosetup
7bfe53
- split out GTK+ support to the subpackage
7bfe53
- use %%make_build
7bfe53
- remove all libtool files in libdir
7bfe53
- drop unneeded chrpath calls
7bfe53
7bfe53
* Mon Sep 19 2016 Kalev Lember <klember@redhat.com> - 1.20.0-1
7bfe53
- Update to 1.20.0
7bfe53
- Don't set group tags
7bfe53
7bfe53
* Sun Mar 20 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.18.0-1
7bfe53
- Update to 1.18.0
7bfe53
7bfe53
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.17.0-2
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
7bfe53
7bfe53
* Mon Jan 25 2016 Kalev Lember <klember@redhat.com> - 1.17.0-1
7bfe53
- Update to 1.17.0
7bfe53
7bfe53
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16.0-2
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
7bfe53
7bfe53
* Tue Sep 22 2015 Kalev Lember <klember@redhat.com> - 1.16.0-1
7bfe53
- Update to 1.16.0
7bfe53
- Use make_install macro
7bfe53
7bfe53
* Fri Jul 03 2015 David King <amigadave@amigadave.com> - 1.15.0-3
7bfe53
- Split out Python 2 and 3 loaders into subpackages (#1226879)
7bfe53
7bfe53
* Fri Jun 26 2015 David King <amigadave@amigadave.com> - 1.15.0-2
7bfe53
- Add Requires for Python plugin support (#750925)
7bfe53
7bfe53
* Thu Jun 25 2015 David King <amigadave@amigadave.com> - 1.15.0-1
7bfe53
- Update to 1.15.0 (#1235615)
7bfe53
- Update URL
7bfe53
- Use license macro for COPYING
7bfe53
- Use pkgconfig for BuildRequires
7bfe53
- Add README and NEWS to doc
7bfe53
7bfe53
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14.0-2
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
7bfe53
7bfe53
* Tue Mar 24 2015 Kalev Lember <kalevlember@gmail.com> - 1.14.0-1
7bfe53
- Update to 1.14.0
7bfe53
7bfe53
* Mon Feb 16 2015 Richard Hughes <rhughes@redhat.com> - 1.13.0-1
7bfe53
- Update to 1.13.0
7bfe53
7bfe53
* Mon Sep 22 2014 Kalev Lember <kalevlember@gmail.com> - 1.12.1-1
7bfe53
- Update to 1.12.1
7bfe53
- Tighten deps with the _isa macro
7bfe53
7bfe53
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.1-2
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
7bfe53
7bfe53
* Fri Aug 01 2014 Kalev Lember <kalevlember@gmail.com> - 1.10.1-1
7bfe53
- Update to 1.10.1
7bfe53
7bfe53
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 1.10.0-4
7bfe53
- Rebuilt for gobject-introspection 1.41.4
7bfe53
7bfe53
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.10.0-3
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
7bfe53
7bfe53
* Thu May 22 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 1.10.0-2
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
7bfe53
7bfe53
* Mon Mar 31 2014 Richard Hughes <rhughes@redhat.com> - 1.10.0-1
7bfe53
- Update to 1.10.0
7bfe53
7bfe53
* Wed Feb 05 2014 Adam Williamson <awilliam@redhat.com> - 1.9.0-3
7bfe53
- drop gjs plugin support (backported from upstream; no-one wants it)
7bfe53
7bfe53
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.0-2
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
7bfe53
7bfe53
* Thu Jun 20 2013 Kalev Lember <kalevlember@gmail.com> - 1.9.0-1
7bfe53
- Update to 1.9.0
7bfe53
7bfe53
* Tue Mar 26 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 1.8.0-1
7bfe53
- Update to 1.8.0
7bfe53
7bfe53
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.0-2
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
7bfe53
7bfe53
* Sun Jan 06 2013 Ignacio Casal Quinteiro <icq@gnome.org> - 1.7.0-1
7bfe53
- Update to 1.7.0
7bfe53
7bfe53
* Wed Nov 28 2012 Kalev Lember <kalevlember@gmail.com> - 1.6.2-1
7bfe53
- Update to 1.6.2
7bfe53
- Avoid runtime deps on gtk-doc (#754495)
7bfe53
7bfe53
* Mon Nov 19 2012 Bastien Nocera <bnocera@redhat.com> 1.6.1-2
7bfe53
- Fix source URL
7bfe53
7bfe53
* Tue Oct 16 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 1.6.1-1
7bfe53
- Update to 1.6.1
7bfe53
7bfe53
* Tue Sep 25 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 1.6.0-1
7bfe53
- Update to 1.6.0
7bfe53
7bfe53
* Wed Sep 19 2012 Bastien Nocera <bnocera@redhat.com> 1.5.0-1
7bfe53
- Disable vala, as it was disabled upstream:
7bfe53
http://git.gnome.org/browse/libpeas/commit/?id=1031aaeeef282ab2bb65cb6ae48fa4abff453c4d
7bfe53
7bfe53
* Wed Jul 18 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 1.5.0-1
7bfe53
- Update to 1.5.0
7bfe53
7bfe53
* Thu May 03 2012 Kalev Lember <kalevlember@gmail.com> - 1.4.0-2
7bfe53
- Re-enable the GJS loader
7bfe53
- Remove unwanted lib64 rpaths
7bfe53
7bfe53
* Wed Mar 28 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 1.4.0-1
7bfe53
- Update to 1.4.0
7bfe53
7bfe53
* Fri Mar  2 2012 Matthias Clasen <mclasen@redhat.com> - 1.3.0-2
7bfe53
- Make seed optional for RHEL
7bfe53
7bfe53
* Sat Feb 25 2012 Ignacio Casal Quinteiro <icq@gnome.org> - 1.3.0-1
7bfe53
- Update to 1.3.0
7bfe53
7bfe53
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-2
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
7bfe53
7bfe53
* Wed Sep 28 2011 Ray <rstrode@redhat.com> - 1.2.0-1
7bfe53
- Update to 1.2.0
7bfe53
7bfe53
* Wed Sep 28 2011 Ray <rstrode@redhat.com> - 1.2.0-1
7bfe53
- Update to 1.2.0
7bfe53
7bfe53
* Wed Sep 28 2011 Ray <rstrode@redhat.com> - 1.2.0-1
7bfe53
- Update to 1.2.0
7bfe53
7bfe53
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 1.2.0-1
7bfe53
- Update to 1.2.0
7bfe53
7bfe53
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 1.2.0-1
7bfe53
- Update to 1.2.0
7bfe53
7bfe53
* Tue Sep 27 2011 Ray <rstrode@redhat.com> - 1.2.0-1
7bfe53
- Update to 1.2.0
7bfe53
7bfe53
* Wed Aug 31 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 1.1.3-1
7bfe53
- Update to 1.1.3
7bfe53
7bfe53
* Wed Aug 31 2011 Ignacio Casal Quinteiro <icq@gnome.org> - 1.1.2-2
7bfe53
- Rebuild for latest pygobject3
7bfe53
7bfe53
* Tue Aug 23 2011 Adam Williamson <awilliam@redhat.com> - 1.1.2-1
7bfe53
- Update to 1.1.2
7bfe53
- bump BR to pygobject3-devel
7bfe53
7bfe53
* Wed Aug 03 2011 Bastien Nocera <bnocera@redhat.com> 1.1.1-3
7bfe53
- Another attempt at building against the latest gjs
7bfe53
7bfe53
* Wed Aug 03 2011 Bastien Nocera <bnocera@redhat.com> 1.1.1-2
7bfe53
- Rebuild for newer gjs
7bfe53
7bfe53
* Tue Jul 26 2011 Matthias Clasen <mclasen@redhat.com> - 1.1.1-1
7bfe53
- Update to 1.1.1
7bfe53
7bfe53
* Tue Jun 14 2011 Tomas Bzatek <tbzatek@redhat.com> - 1.1.0-1
7bfe53
- Update to 1.1.0
7bfe53
7bfe53
* Mon Apr  4 2011 Christopher Aillon <caillon@redhat.com> 1.0.0-1
7bfe53
- Update to 1.0.0
7bfe53
7bfe53
* Sun Mar 27 2011 Bastien Nocera <bnocera@redhat.com> 0.9.0-1
7bfe53
- Update to 0.9.0
7bfe53
7bfe53
* Thu Mar 10 2011 Bastien Nocera <bnocera@redhat.com> 0.7.4-1
7bfe53
- Update to 0.7.4
7bfe53
7bfe53
* Tue Feb 22 2011 Matthias Clasen <mclasen@redhat.com> 0.7.3-1
7bfe53
- Update to 0.7.3
7bfe53
- Drop unneeded dependencies
7bfe53
7bfe53
* Mon Feb 21 2011 Bastien Nocera <bnocera@redhat.com> 0.7.2-1
7bfe53
- Update to 0.7.2
7bfe53
7bfe53
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> 0.7.1-7
7bfe53
- Rebuild
7bfe53
7bfe53
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.1-6
7bfe53
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
7bfe53
7bfe53
* Wed Feb  2 2011 Matthias Clasen <mclasen@redhat.com> 0.7.1-5
7bfe53
- Rebuild against newer gtk
7bfe53
7bfe53
* Fri Jan 28 2011 Bastien Nocera <bnocera@redhat.com> 0.7.1-4
7bfe53
- Update to real 0.7.1 release
7bfe53
7bfe53
* Fri Jan  7 2011 Matthias Clasen <mclasen@redhat.com> - 0.7.1-3.gita2f98e
7bfe53
- Rebuild against newer gtk
7bfe53
7bfe53
* Fri Dec  3 2010 Matthias Clasen <mclasen@redhat.com> - 0.7.1-2.gita2f98e
7bfe53
- Rebuild against newer gtk
7bfe53
7bfe53
* Thu Nov 11 2010 Dan Williams <dcbw@redhat.com> - 0.7.1-1.gita2f98e
7bfe53
- Update to 0.7.1
7bfe53
- Fix some crashes with missing introspection data
7bfe53
7bfe53
* Mon Nov  1 2010 Matthias Clasen <mclasen@redhat.com> 0.7.0-2
7bfe53
- Rebuild against newer gtk3
7bfe53
7bfe53
* Mon Oct 04 2010 Bastien Nocera <bnocera@redhat.com> 0.7.0-1
7bfe53
- Update to 0.7.0
7bfe53
7bfe53
* Tue Sep 21 2010 Matthias Clasen <mclasen@redhat.com> - 0.5.5-2
7bfe53
- Rebuild against newer gobject-introspection
7bfe53
7bfe53
* Thu Aug 19 2010 Matthias Clasen <mclasen@redhat.com> - 0.5.5-1
7bfe53
- Update to 0.5.5
7bfe53
7bfe53
* Thu Aug  5 2010 Matthias Clasen <mclasen@redhat.com> - 0.5.4-1
7bfe53
- Update to 0.5.4
7bfe53
7bfe53
* Tue Jul 27 2010 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> 0.5.3-2
7bfe53
- Rebuild against python 2.7
7bfe53
7bfe53
* Fri Jul 23 2010 Bastien Nocera <bnocera@redhat.com> 0.5.3-1
7bfe53
- Update to 0.5.3
7bfe53
7bfe53
* Thu Jul 22 2010 Bastien Nocera <bnocera@redhat.com> 0.5.2-5
7bfe53
- Fix post scriplet (#615021)
7bfe53
7bfe53
* Thu Jul 15 2010 Colin Walters <walters@verbum.org> - 0.5.2-4
7bfe53
- Rebuild with new gobject-introspection
7bfe53
7bfe53
* Tue Jul 13 2010 Matthias Clasen <mclasen@redhat.com> 0.5.2-3
7bfe53
- Rebuild
7bfe53
7bfe53
* Mon Jul 12 2010 Colin Walters <walters@verbum.org> - 0.5.2-2
7bfe53
- Rebuild against new gobject-introspection
7bfe53
7bfe53
* Mon Jul 12 2010 Matthias Clasen <mclasen@redhat.com> 0.5.2-1
7bfe53
- Update to 0.5.2
7bfe53
7bfe53
* Thu Jul  8 2010 Matthias Clasen <mclasen@redhat.com> 0.5.1-2
7bfe53
- Rebuild
7bfe53
7bfe53
* Mon Jun 28 2010 Bastien Nocera <bnocera@redhat.com> 0.5.1-1
7bfe53
- Update to 0.5.1
7bfe53
7bfe53
* Thu Jun 24 2010 Bastien Nocera <bnocera@redhat.com> 0.5.0-4
7bfe53
- Document rpath work-arounds disabling, and remove verbose build
7bfe53
7bfe53
* Fri Jun 18 2010 Bastien Nocera <bnocera@redhat.com> 0.5.0-3
7bfe53
- Fix a number of comments from review request
7bfe53
7bfe53
* Mon Jun 14 2010 Bastien Nocera <bnocera@redhat.com> 0.5.0-2
7bfe53
- Call ldconfig when installing the package
7bfe53
7bfe53
* Mon Jun 14 2010 Bastien Nocera <bnocera@redhat.com> 0.5.0-1
7bfe53
- First package
7bfe53