Blame SPECS/polkit.spec

9db1af
# Only enable if using patches that touches configure.ac,
9db1af
# Makefile.am or other build system related files
9db1af
#
9db1af
%define enable_autoreconf 0
9db1af
9db1af
Summary: An authorization framework
9db1af
Name: polkit
9db1af
Version: 0.112
a11f96
Release: 9%{?dist}
9db1af
License: LGPLv2+
9db1af
URL: http://www.freedesktop.org/wiki/Software/polkit
9db1af
Source0: http://www.freedesktop.org/software/polkit/releases/%{name}-%{version}.tar.gz
9db1af
Source1: http://www.freedesktop.org/software/polkit/releases/%{name}-%{version}.tar.gz.sign
7bcd4f
# https://bugs.freedesktop.org/show_bug.cgi?id=71894
7bcd4f
Patch0: polkit-0.112-XDG_RUNTIME_DIR.patch
7bcd4f
# https://bugs.freedesktop.org/show_bug.cgi?id=60847
7bcd4f
Patch1: polkit-0.112-PolkitAgentSession-race.patch
4c1d22
# https://bugs.freedesktop.org/show_bug.cgi?id=69501
4c1d22
Patch2: polkit-0.112-CVE-2015-3256.patch
656e92
# https://bugs.freedesktop.org/show_bug.cgi?id=88288
656e92
Patch3: polkit-0.112-EnumerateActions-leak.patch
9db1af
Group: System Environment/Libraries
9db1af
BuildRequires: glib2-devel >= 2.30.0
9db1af
BuildRequires: expat-devel
9db1af
BuildRequires: pam-devel
9db1af
BuildRequires: gtk-doc
9db1af
BuildRequires: intltool
9db1af
BuildRequires: gobject-introspection-devel
9db1af
BuildRequires: systemd-devel
9db1af
BuildRequires: mozjs17-devel
9db1af
9db1af
%if 0%{?enable_autoreconf}
9db1af
BuildRequires: autoconf
9db1af
BuildRequires: automake
9db1af
BuildRequires: libtool
9db1af
%endif
9db1af
9db1af
Requires: dbus, polkit-pkla-compat
9db1af
9db1af
Requires(pre): shadow-utils
9db1af
Requires(post): /sbin/ldconfig, systemd
9db1af
Requires(preun): systemd
9db1af
Requires(postun): /sbin/ldconfig, systemd
9db1af
9db1af
Obsoletes: PolicyKit <= 0.10
9db1af
Provides: PolicyKit = 0.11
9db1af
9db1af
# polkit saw some API/ABI changes from 0.96 to 0.97 so require a
9db1af
# sufficiently new polkit-gnome package
9db1af
Conflicts: polkit-gnome < 0.97
9db1af
9db1af
Obsoletes: polkit-desktop-policy < 0.103
9db1af
Provides: polkit-desktop-policy = 0.103
9db1af
9db1af
Obsoletes: polkit-js-engine < 0.110-4
9db1af
Provides: polkit-js-engine = %{version}-%{release}
9db1af
9db1af
%description
9db1af
polkit is a toolkit for defining and handling authorizations.  It is
9db1af
used for allowing unprivileged processes to speak to privileged
9db1af
processes.
9db1af
9db1af
%package devel
9db1af
Summary: Development files for polkit
9db1af
Group: Development/Libraries
9db1af
Requires: %name = %{version}-%{release}
9db1af
Requires: %name-docs = %{version}-%{release}
9db1af
Requires: glib2-devel
9db1af
Obsoletes: PolicyKit-devel <= 0.10
9db1af
Provides: PolicyKit-devel = 0.11
9db1af
9db1af
%description devel
9db1af
Development files for polkit.
9db1af
9db1af
%package docs
9db1af
Summary: Development documentation for polkit
9db1af
Group: Development/Libraries
9db1af
Requires: %name-devel = %{version}-%{release}
9db1af
Obsoletes: PolicyKit-docs <= 0.10
9db1af
Provides: PolicyKit-docs = 0.11
9db1af
BuildArch: noarch
9db1af
9db1af
%description docs
9db1af
Development documentation for polkit.
9db1af
9db1af
%prep
9db1af
%setup -q
7bcd4f
%patch0 -p1 -b .XDG_RUNTIME_DIR
7bcd4f
%patch1 -p1 -b .PolkitAgentSession-race
4c1d22
%patch2 -p1 -b .CVE-2015-3256
656e92
%patch3 -p1 -b .EnumerateActions-leak
9db1af
9db1af
%build
9db1af
%if 0%{?enable_autoreconf}
9db1af
autoreconf
9db1af
%endif
9db1af
# we can't use _hardened_build here, see
9db1af
# https://bugzilla.redhat.com/show_bug.cgi?id=962005
9db1af
export CFLAGS='-fPIC %optflags'
9db1af
export LDFLAGS='-pie -Wl,-z,now -Wl,-z,relro'
9db1af
%configure --enable-gtk-doc \
9db1af
        --disable-static \
9db1af
        --enable-introspection \
9db1af
        --disable-examples \
7bcd4f
        --enable-libsystemd-login=yes --with-mozjs=mozjs-17.0
9db1af
make V=1
9db1af
9db1af
%install
9db1af
make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
9db1af
9db1af
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
9db1af
9db1af
%find_lang polkit-1
9db1af
9db1af
%pre
9db1af
getent group polkitd >/dev/null || groupadd -r polkitd
9db1af
getent passwd polkitd >/dev/null || useradd -r -g polkitd -d / -s /sbin/nologin -c "User for polkitd" polkitd
9db1af
exit 0
9db1af
9db1af
%post
9db1af
/sbin/ldconfig
9db1af
# The implied (systemctl preset) will fail and complain, but the macro hides
9db1af
# and ignores the fact.  This is in fact what we want, polkit.service does not
9db1af
# have an [Install] section and it is always started on demand.
9db1af
%systemd_post polkit.service
4c1d22
# Restart snould usually be done in %%postun, but that wasn’t the case with
4c1d22
# polkit-0.112-5 and earlier. This is a workaround to ensure restarting on
4c1d22
# upgrades from earlier versions.
4c1d22
if [ $1 -gt 1 ]; then
4c1d22
    /usr/bin/systemctl try-restart polkit.service >/dev/null 2>&1 || :
4c1d22
fi
9db1af
9db1af
%preun
9db1af
%systemd_preun polkit.service
9db1af
9db1af
%postun
9db1af
/sbin/ldconfig
4c1d22
%systemd_postun_with_restart polkit.service
9db1af
9db1af
%files -f polkit-1.lang
9db1af
%defattr(-,root,root,-)
9db1af
%doc COPYING NEWS README
9db1af
%{_libdir}/lib*.so.*
9db1af
%{_datadir}/man/man1/*
9db1af
%{_datadir}/man/man8/*
9db1af
%{_datadir}/dbus-1/system-services/*
9db1af
%{_unitdir}/polkit.service
9db1af
%dir %{_datadir}/polkit-1/
9db1af
%dir %{_datadir}/polkit-1/actions
9db1af
%attr(0700,polkitd,root) %dir %{_datadir}/polkit-1/rules.d
9db1af
%{_datadir}/polkit-1/actions/org.freedesktop.policykit.policy
9db1af
%dir %{_sysconfdir}/polkit-1
9db1af
%{_sysconfdir}/polkit-1/rules.d/50-default.rules
9db1af
%attr(0700,polkitd,root) %dir %{_sysconfdir}/polkit-1/rules.d
9db1af
%{_sysconfdir}/dbus-1/system.d/org.freedesktop.PolicyKit1.conf
9db1af
%{_sysconfdir}/pam.d/polkit-1
9db1af
%{_bindir}/pkaction
9db1af
%{_bindir}/pkcheck
9db1af
%{_bindir}/pkttyagent
9db1af
%dir %{_prefix}/lib/polkit-1
9db1af
%{_prefix}/lib/polkit-1/polkitd
9db1af
%{_libdir}/girepository-1.0/*.typelib
9db1af
9db1af
# see upstream docs for why these permissions are necessary
9db1af
%attr(4755,root,root) %{_bindir}/pkexec
9db1af
%attr(4755,root,root) %{_prefix}/lib/polkit-1/polkit-agent-helper-1
9db1af
9db1af
%files devel
9db1af
%defattr(-,root,root,-)
9db1af
%{_libdir}/lib*.so
9db1af
%{_libdir}/pkgconfig/*.pc
9db1af
%{_datadir}/gir-1.0/*.gir
9db1af
%{_includedir}/*
9db1af
9db1af
%files docs
9db1af
%defattr(-,root,root,-)
9db1af
%{_datadir}/gtk-doc
9db1af
9db1af
%changelog
a11f96
* Wed Jul 6 2016 Miloslav Trmač <mitr@redhat.com> - 0.112-9
a11f96
- Update for another mozjs17 change, the pkg-config file name does not change.
a11f96
  Resolves: #1331776
a11f96
a11f96
* Mon Jul 4 2016 Miloslav Trmač <mitr@redhat.com> - 0.112-8
a11f96
- Update for ABI change needed to fix use of 48-bit pointers on ARM64.
a11f96
  Resolves: #1331776
a11f96
656e92
* Tue May 17 2016 Miloslav Trmač <mitr@redhat.com> - 0.112-7
656e92
- Fix a memory leak when processing the result of EnumerateActions
656e92
  Resolves: #1310738
656e92
4c1d22
* Mon Oct 19 2015 Miloslav Trmač <mitr@redhat.com> - 0.112-6
4c1d22
- Fix CVE-2015-3256
4c1d22
  Resolves: #1271790
4c1d22
7bcd4f
* Mon Feb 10 2014 Miloslav Trmač <mitr@redhat.com> - 0.112-5
7bcd4f
- Fix a PolkitAgentSession race condition
7bcd4f
  Resolves: #1063193
7bcd4f
7bcd4f
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 0.112-4
7bcd4f
- Mass rebuild 2014-01-24
7bcd4f
7bcd4f
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 0.112-3
7bcd4f
- Mass rebuild 2013-12-27
7bcd4f
7bcd4f
* Sat Dec  7 2013 Miloslav Trmač <mitr@redhat.com> - 0.112-2
7bcd4f
- Workaround pam_systemd setting broken XDG_RUNTIME_DIR
7bcd4f
  Resolves: #1033774
7bcd4f
- Always use mozjs-17.0 even if js-devel is installed
7bcd4f
9db1af
* Wed Sep 18 2013 Miloslav Trmač <mitr@redhat.com> - 0.112-1
9db1af
- Update to polkit-0.112
9db1af
- Resolves: #1005135, CVE-2013-4288
9db1af
9db1af
* Wed May 29 2013 Tomas Bzatek <tbzatek@redhat.com> - 0.111-2
9db1af
- Fix a race on PolkitSubject type registration (#866718)
9db1af
9db1af
* Wed May 15 2013 Miloslav Trmač <mitr@redhat.com> - 0.111-1
9db1af
- Update to polkit-0.111
9db1af
  Resolves: #917888
9db1af
- Use SpiderMonkey from mozjs17 instead of js
9db1af
- Ship the signature in the srpm
9db1af
- Try to preserve timestamps in (make install)
9db1af
9db1af
* Fri May 10 2013 Miloslav Trmač <mitr@redhat.com> - 0.110-4
9db1af
- Shut up rpmlint about Summary:
9db1af
- Build with V=1
9db1af
- Use %%{_unitdir} instead of hard-coding the path
9db1af
- Use the new systemd macros, primarily to run (systemctl daemon-reload)
9db1af
  Resolves: #857382
9db1af
9db1af
* Fri May 10 2013 Miloslav Trmač <mitr@redhat.com> - 0.110-4
9db1af
- Make the JavaScript engine mandatory.  The polkit-js-engine package has been
9db1af
  removed, main polkit package Provides:polkit-js-engine for compatibility.
9db1af
- Add Requires: polkit-pkla-compat
9db1af
  Resolves: #908808
9db1af
9db1af
* Wed Feb 13 2013 Miloslav Trmač <mitr@redhat.com> - 0.110-3
9db1af
- Don't ship pk-example-frobnicate in the "live" configuration
9db1af
  Resolves: #878112
9db1af
9db1af
* Fri Feb  8 2013 Miloslav Trmač <mitr@redhat.com> - 0.110-2
9db1af
- Own %%{_docdir}/polkit-js-engine-*
9db1af
  Resolves: #907668
9db1af
9db1af
* Wed Jan  9 2013 David Zeuthen <davidz@redhat.com> - 0.110-1%{?dist}
9db1af
- Update to upstream release 0.110
9db1af
9db1af
* Mon Jan  7 2013 Matthias Clasen <mclasen@redhat.com> - 0.109-2%{?dist}
9db1af
- Build with pie and stuff
9db1af
9db1af
* Wed Dec 19 2012 David Zeuthen <davidz@redhat.com> 0.109-1%{?dist}
9db1af
- Update to upstream release 0.109
9db1af
- Drop upstreamed patches
9db1af
9db1af
* Thu Nov 15 2012 David Zeuthen <davidz@redhat.com> 0.108-3%{?dist}
9db1af
- Attempt to open the correct libmozjs185 library, otherwise polkit
9db1af
  authz rules will not work unless js-devel is installed (fdo #57146)
9db1af
9db1af
* Wed Nov 14 2012 David Zeuthen <davidz@redhat.com> 0.108-2%{?dist}
9db1af
- Include gmodule-2.0 to avoid build error
9db1af
9db1af
* Wed Nov 14 2012 David Zeuthen <davidz@redhat.com> 0.108-1%{?dist}
9db1af
- Update to upstream release 0.108
9db1af
- Drop upstreamed patches
9db1af
- This release dynamically loads the JavaScript interpreter and can
9db1af
  cope with it not being available. In this case, polkit authorization
9db1af
  rules are not processed and the defaults for an action - as defined
9db1af
  in its .policy file - are used for authorization decisions.
9db1af
- Add new meta-package, polkit-js-engine, that pulls in the required
9db1af
  JavaScript bits to make polkit authorization rules work. The default
9db1af
  install - not the minimal install - should include this package
9db1af
9db1af
* Wed Oct 10 2012 Adam Jackson <ajax@redhat.com> 0.107-4
9db1af
- Don't crash if initializing the server object fails
9db1af
9db1af
* Tue Sep 18 2012 David Zeuthen <davidz@redhat.com> 0.107-3%{?dist}
9db1af
- Authenticate as root if e.g. the wheel group is empty (#834494)
9db1af
9db1af
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.107-2
9db1af
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
9db1af
9db1af
* Wed Jul 11 2012 David Zeuthen <davidz@redhat.com> 0.107-1%{?dist}
9db1af
- Update to upstream release 0.107
9db1af
9db1af
* Fri Jun 29 2012 David Zeuthen <davidz@redhat.com> 0.106-2%{?dist}
9db1af
- Add forgotten Requires(pre): shadow-utils
9db1af
9db1af
* Thu Jun 07 2012 David Zeuthen <davidz@redhat.com> 0.106-1%{?dist}
9db1af
- Update to upstream release 0.106
9db1af
- Authorizations are no longer controlled by .pkla files - from now
9db1af
  on, use the new .rules files described in the polkit(8) man page
9db1af
9db1af
* Tue Apr 24 2012 David Zeuthen <davidz@redhat.com> 0.105-1%{?dist}
9db1af
- Update to upstream release 0.105
9db1af
- Nuke patches that are now upstream
9db1af
- Change 'PolicyKit' to 'polkit' in summary and descriptions
9db1af
9db1af
* Thu Mar 08 2012 David Zeuthen <davidz@redhat.com> 0.104-6%{?dist}
9db1af
- Don't leak file descriptors (bgo #671486)
9db1af
9db1af
* Mon Feb 13 2012 Matthias Clasen <mclasen@redhat.com> - 0.104-5%{?dist}
9db1af
- Make the -docs subpackage noarch
9db1af
9db1af
* Mon Feb 06 2012 David Zeuthen <davidz@redhat.com> 0.104-4%{?dist}
9db1af
- Set error if we cannot obtain a PolkitUnixSession for a given PID (#787222)
9db1af
9db1af
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.104-3
9db1af
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
9db1af
9db1af
* Tue Jan 03 2012 David Zeuthen <davidz@redhat.com> 0.104-2%{?dist}
9db1af
- Nuke the ConsoleKit run-time requirement
9db1af
9db1af
* Tue Jan 03 2012 David Zeuthen <davidz@redhat.com> 0.104-1%{?dist}
9db1af
- Update to upstream release 0.104
9db1af
- Force usage of systemd (instead of ConsoleKit) for session tracking
9db1af
9db1af
* Tue Dec 06 2011 David Zeuthen <davidz@redhat.com> 0.103-1%{?dist}
9db1af
- Update to upstream release 0.103
9db1af
- Drop upstreamed patch
9db1af
- Drop Fedora-specific policy, it is now upstream (fdo #41008)
9db1af
9db1af
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.102-3
9db1af
- Rebuilt for glibc bug#747377
9db1af
9db1af
* Tue Oct 18 2011 David Zeuthen <davidz@redhat.com> 0.102-2%{?dist}
9db1af
- Add patch to neuter the annoying systemd behavior where stdout/stderr
9db1af
  is sent to the system logs
9db1af
9db1af
* Thu Aug 04 2011 David Zeuthen <davidz@redhat.com> 0.102-1
9db1af
- Update to 0.102 release
9db1af
9db1af
* Fri May 13 2011 Bastien Nocera <bnocera@redhat.com> 0.101-7
9db1af
- Allow setting the pretty hostname without a password for wheel,
9db1af
  change matches systemd in git
9db1af
9db1af
* Mon May  2 2011 Matthias Clasen <mclasen@redhat.com> - 0.101-6
9db1af
- Update the action id of the datetime mechanism
9db1af
9db1af
* Tue Apr 19 2011 David Zeuthen <davidz@redhat.com> - 0.101-5
9db1af
- CVE-2011-1485 (#697951)
9db1af
9db1af
* Tue Mar 22 2011 Kevin Kofler <Kevin@tigcc.ticalc.org> - 0.101-4
9db1af
- Also allow org.kde.kcontrol.kcmclock.save without password for wheel
9db1af
9db1af
* Thu Mar 17 2011 David Zeuthen <davidz@redhat.com> - 0.101-3
9db1af
- Fix typo in pkla file (thanks notting)
9db1af
9db1af
* Thu Mar 17 2011 David Zeuthen <davidz@redhat.com> - 0.101-2
9db1af
- Nuke desktop_admin_r and desktop_user_r groups - just use the
9db1af
  wheel group instead (#688363)
9db1af
- Update the set of configuration directives that gives users
9db1af
  in the wheel group extra privileges
9db1af
9db1af
* Thu Mar 03 2011 David Zeuthen <davidz@redhat.com> - 0.101-1
9db1af
- New upstream version
9db1af
9db1af
* Mon Feb 21 2011 David Zeuthen <davidz@redhat.com> - 0.100-1
9db1af
- New upstream version
9db1af
9db1af
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.98-7
9db1af
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
9db1af
9db1af
* Fri Jan 28 2011 Matthias Clasen <mclasen@redhat.com> - 0.98-6
9db1af
- Own /usr/libexec/polkit-1
9db1af
9db1af
* Fri Nov 12 2010 Matthias Clasen <mclasen@redhat.com> - 0.98-5
9db1af
- Enable introspection
9db1af
9db1af
* Thu Sep 02 2010 David Zeuthen <davidz@redhat.com> - 0.98-4
9db1af
- Fix #629515 in a way that doesn't require autoreconf
9db1af
9db1af
* Thu Sep 02 2010 David Zeuthen <davidz@redhat.com> - 0.98-2
9db1af
- Include polkitagentenumtypes.h (#629515)
9db1af
9db1af
* Mon Aug 23 2010 Matthias Clasen <mclasen@redhat.com> - 0.98-1
9db1af
- Update to upstream release 0.98
9db1af
- Co-own /usr/share/gtk-doc (#604410)
9db1af
9db1af
* Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.97-5
9db1af
- Rebuid to work around bodhi limitations
9db1af
9db1af
* Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.97-4
9db1af
- Fix a ConsoleKit interaction bug
9db1af
9db1af
* Fri Aug 13 2010 David Zeuthen <davidz@redhat.com> - 0.97-3
9db1af
- Add a patch to make pkcheck(1) work the way libvirtd uses it (#623257)
9db1af
- Require GLib >= 2.25.12 instead of 2.25.11
9db1af
- Ensure polkit-gnome packages earlier than 0.97 are not used with
9db1af
  these packages
9db1af
9db1af
* Mon Aug 09 2010 David Zeuthen <davidz@redhat.com> - 0.97-2
9db1af
- Rebuild
9db1af
9db1af
* Mon Aug 09 2010 David Zeuthen <davidz@redhat.com> - 0.97-1
9db1af
- Update to 0.97. This release contains a port from EggDBus to the
9db1af
  GDBus code available in recent GLib releases.
9db1af
9db1af
* Fri Jan 15 2010 David Zeuthen <davidz@redhat.com> - 0.96-1
9db1af
- Update to 0.96
9db1af
- Disable introspection support for the time being
9db1af
9db1af
* Fri Nov 13 2009 David Zeuthen <davidz@redhat.com> - 0.95-2
9db1af
- Rebuild
9db1af
9db1af
* Fri Nov 13 2009 David Zeuthen <davidz@redhat.com> - 0.95-1
9db1af
- Update to 0.95
9db1af
- Drop upstreamed patches
9db1af
9db1af
* Tue Oct 20 2009 Matthias Clasen <mclasen@redhat.com> - 0.95-0.git20090913.3
9db1af
- Fix a typo in pklocalauthority(8)
9db1af
9db1af
* Mon Sep 14 2009 David Zeuthen <davidz@redhat.com> - 0.95-0.git20090913.2
9db1af
- Refine how Obsolete: is used and also add Provides: (thanks Jesse
9db1af
  Keating and nim-nim)
9db1af
9db1af
* Mon Sep 14 2009 David Zeuthen <davidz@redhat.com> - 0.95-0.git20090913.1
9db1af
- Add bugfix for polkit_unix_process_new_full() (thanks Bastien Nocera)
9db1af
- Obsolete old PolicyKit packages
9db1af
9db1af
* Sun Sep 13 2009 David Zeuthen <davidz@redhat.com> - 0.95-0.git20090913
9db1af
- Update to git snapshot
9db1af
- Drop upstreamed patches
9db1af
- Turn on GObject introspection
9db1af
- Don't delete desktop_admin_r and desktop_user_r groups when
9db1af
  uninstalling polkit-desktop-policy
9db1af
9db1af
* Fri Sep 11 2009 David Zeuthen <davidz@redhat.com> - 0.94-4
9db1af
- Add some patches from git master
9db1af
- Sort pkaction(1) output
9db1af
- Bug 23867 – UnixProcess vs. SystemBusName aliasing
9db1af
9db1af
* Thu Aug 13 2009 David Zeuthen <davidz@redhat.com> - 0.94-3
9db1af
- Add desktop_admin_r and desktop_user_r groups along with a first cut
9db1af
  of default authorizations for users in these groups.
9db1af
9db1af
* Wed Aug 12 2009 David Zeuthen <davidz@redhat.com> - 0.94-2
9db1af
- Disable GObject Introspection for now as it breaks the build
9db1af
9db1af
* Wed Aug 12 2009 David Zeuthen <davidz@redhat.com> - 0.94-1
9db1af
- Update to upstream release 0.94
9db1af
9db1af
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.93-3
9db1af
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
9db1af
9db1af
* Mon Jul 20 2009 David Zeuthen <davidz@redhat.com> - 0.93-2
9db1af
- Rebuild
9db1af
9db1af
* Mon Jul 20 2009 David Zeuthen <davidz@redhat.com> - 0.93-1
9db1af
- Update to 0.93
9db1af
9db1af
* Tue Jun 09 2009 David Zeuthen <davidz@redhat.com> - 0.92-3
9db1af
- Don't make docs noarch (I *heart* multilib)
9db1af
- Change license to LGPLv2+
9db1af
9db1af
* Mon Jun 08 2009 David Zeuthen <davidz@redhat.com> - 0.92-2
9db1af
- Rebuild
9db1af
9db1af
* Mon Jun 08 2009 David Zeuthen <davidz@redhat.com> - 0.92-1
9db1af
- Update to 0.92 release
9db1af
9db1af
* Wed May 27 2009 David Zeuthen <davidz@redhat.com> - 0.92-0.git20090527
9db1af
- Update to 0.92 snapshot
9db1af
9db1af
* Mon Feb  9 2009 David Zeuthen <davidz@redhat.com> - 0.91-1
9db1af
- Initial spec file.