Blame SPECS/polkit.spec

b415b0
# Only enable if using patches that touches configure.ac,
b415b0
# Makefile.am or other build system related files
b415b0
#
b415b0
#define enable_autoreconf 1
b415b0
b415b0
Summary: An authorization framework
b415b0
Name: polkit
b415b0
Version: 0.115
b415b0
Release: 6%{?dist}
b415b0
License: LGPLv2+
b415b0
URL: http://www.freedesktop.org/wiki/Software/polkit
b415b0
Source0: http://www.freedesktop.org/software/polkit/releases/%{name}-%{version}.tar.gz
b415b0
Source1: http://www.freedesktop.org/software/polkit/releases/%{name}-%{version}.tar.gz.sign
b415b0
Group: System Environment/Libraries
b415b0
b415b0
b415b0
Patch1: polkit-0.115-bus-conn-msg-ssh.patch
b415b0
Patch2: polkit-0.115-pkttyagent-auth-errmsg-debug.patch
b415b0
Patch3: polkit-0.115-polkitagentlistener-res-leak.patch
b415b0
Patch4: polkit-0.115-spawning-zombie-processes.patch
b415b0
Patch5: polkit-0.115-CVE-2018-19788.patch
b415b0
Patch6: polkit-0.115-CVE-2019-6133.patch
b415b0
b415b0
b415b0
BuildRequires: gcc-c++
b415b0
BuildRequires: glib2-devel >= 2.30.0
b415b0
BuildRequires: expat-devel
b415b0
BuildRequires: pam-devel
b415b0
BuildRequires: gtk-doc
b415b0
BuildRequires: intltool
b415b0
BuildRequires: gobject-introspection-devel
b415b0
BuildRequires: systemd, systemd-devel
b415b0
BuildRequires: pkgconfig(mozjs-52)
b415b0
BuildRequires: git
b415b0
b415b0
%if 0%{?enable_autoreconf}
b415b0
BuildRequires: autoconf
b415b0
BuildRequires: automake
b415b0
BuildRequires: libtool
b415b0
%endif
b415b0
b415b0
Requires: dbus, polkit-pkla-compat
b415b0
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
b415b0
b415b0
Requires(pre): shadow-utils
b415b0
Requires(post): /sbin/ldconfig, systemd
b415b0
Requires(preun): systemd
b415b0
Requires(postun): /sbin/ldconfig, systemd
b415b0
b415b0
Obsoletes: PolicyKit <= 0.10
b415b0
Provides: PolicyKit = 0.11
b415b0
b415b0
# polkit saw some API/ABI changes from 0.96 to 0.97 so require a
b415b0
# sufficiently new polkit-gnome package
b415b0
Conflicts: polkit-gnome < 0.97
b415b0
b415b0
Obsoletes: polkit-desktop-policy < 0.103
b415b0
Provides: polkit-desktop-policy = 0.103
b415b0
b415b0
Obsoletes: polkit-js-engine < 0.110-4
b415b0
Provides: polkit-js-engine = %{version}-%{release}
b415b0
b415b0
# when -libs was split out, handle multilib upgrade path -- rex
b415b0
Obsoletes: polkit < 0.113-3
b415b0
b415b0
%description
b415b0
polkit is a toolkit for defining and handling authorizations.  It is
b415b0
used for allowing unprivileged processes to speak to privileged
b415b0
processes.
b415b0
b415b0
%package devel
b415b0
Summary: Development files for polkit
b415b0
Group: Development/Libraries
b415b0
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
b415b0
Requires: %name-docs = %{version}-%{release}
b415b0
Requires: glib2-devel
b415b0
Obsoletes: PolicyKit-devel <= 0.10
b415b0
Provides: PolicyKit-devel = 0.11
b415b0
b415b0
%description devel
b415b0
Development files for polkit.
b415b0
b415b0
%package docs
b415b0
Summary: Development documentation for polkit
b415b0
Group: Development/Libraries
b415b0
Requires: %name-devel = %{version}-%{release}
b415b0
Obsoletes: PolicyKit-docs <= 0.10
b415b0
Provides: PolicyKit-docs = 0.11
b415b0
BuildArch: noarch
b415b0
b415b0
%description docs
b415b0
Development documentation for polkit.
b415b0
b415b0
%package libs
b415b0
Summary: Libraries for polkit
b415b0
Group: Development/Libraries
b415b0
b415b0
%description libs
b415b0
Libraries files for polkit.
b415b0
b415b0
b415b0
%prep
b415b0
%autosetup -S git
b415b0
b415b0
%build
b415b0
%if 0%{?enable_autoreconf}
b415b0
autoreconf -i
b415b0
%endif
b415b0
# we can't use _hardened_build here, see
b415b0
# https://bugzilla.redhat.com/show_bug.cgi?id=962005
b415b0
export CFLAGS='-fPIC %optflags'
b415b0
export LDFLAGS='-pie -Wl,-z,now -Wl,-z,relro'
b415b0
%configure --enable-gtk-doc \
b415b0
        --disable-static \
b415b0
        --enable-introspection \
b415b0
        --disable-examples \
b415b0
        --enable-libsystemd-login=yes --with-mozjs=mozjs-17.0
b415b0
make V=1
b415b0
b415b0
%install
b415b0
make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p'
b415b0
b415b0
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
b415b0
b415b0
%find_lang polkit-1
b415b0
b415b0
%pre
b415b0
getent group polkitd >/dev/null || groupadd -r polkitd
b415b0
getent passwd polkitd >/dev/null || useradd -r -g polkitd -d / -s /sbin/nologin -c "User for polkitd" polkitd
b415b0
exit 0
b415b0
b415b0
%post
b415b0
# The implied (systemctl preset) will fail and complain, but the macro hides
b415b0
# and ignores the fact.  This is in fact what we want, polkit.service does not
b415b0
# have an [Install] section and it is always started on demand.
b415b0
%systemd_post polkit.service
b415b0
b415b0
%preun
b415b0
%systemd_preun polkit.service
b415b0
b415b0
%postun
b415b0
%systemd_postun_with_restart polkit.service
b415b0
b415b0
%files -f polkit-1.lang
b415b0
%doc COPYING NEWS README
b415b0
%{_datadir}/man/man1/*
b415b0
%{_datadir}/man/man8/*
b415b0
%{_datadir}/dbus-1/system-services/*
b415b0
%{_unitdir}/polkit.service
b415b0
%dir %{_datadir}/polkit-1/
b415b0
%dir %{_datadir}/polkit-1/actions
b415b0
%attr(0700,polkitd,root) %dir %{_datadir}/polkit-1/rules.d
b415b0
%{_datadir}/polkit-1/actions/org.freedesktop.policykit.policy
b415b0
%dir %{_sysconfdir}/polkit-1
b415b0
%{_sysconfdir}/polkit-1/rules.d/50-default.rules
b415b0
%attr(0700,polkitd,root) %dir %{_sysconfdir}/polkit-1/rules.d
b415b0
%{_sysconfdir}/dbus-1/system.d/org.freedesktop.PolicyKit1.conf
b415b0
%{_sysconfdir}/pam.d/polkit-1
b415b0
%{_bindir}/pkaction
b415b0
%{_bindir}/pkcheck
b415b0
%{_bindir}/pkttyagent
b415b0
%dir %{_prefix}/lib/polkit-1
b415b0
%{_prefix}/lib/polkit-1/polkitd
b415b0
b415b0
# see upstream docs for why these permissions are necessary
b415b0
%attr(4755,root,root) %{_bindir}/pkexec
b415b0
%attr(4755,root,root) %{_prefix}/lib/polkit-1/polkit-agent-helper-1
b415b0
b415b0
%files devel
b415b0
%{_libdir}/lib*.so
b415b0
%{_libdir}/pkgconfig/*.pc
b415b0
%{_datadir}/gir-1.0/*.gir
b415b0
%{_includedir}/*
b415b0
%{_datadir}/gettext/its/polkit.its
b415b0
%{_datadir}/gettext/its/polkit.loc
b415b0
b415b0
%files docs
b415b0
%{_datadir}/gtk-doc
b415b0
b415b0
%post libs -p /sbin/ldconfig
b415b0
%postun libs -p /sbin/ldconfig
b415b0
b415b0
%files libs
b415b0
%{_libdir}/lib*.so.*
b415b0
%{_libdir}/girepository-1.0/*.typelib
b415b0
b415b0
%changelog
b415b0
* Mon Jan 21 2019 Jan Rybar <jrybar@redhat.com> - 0.115-6
b415b0
- Fix of CVE-2019-6133, PID reuse via slow fork
b415b0
- Resolves: rhbz#1667778
b415b0
b415b0
* Thu Dec 06 2018 Jan Rybar <jrybar@redhat.com> - 0.115-5
b415b0
- Fix of CVE-2018-19788, priv escalation with high UIDs
b415b0
- Resolves: rhbz#1656378
b415b0
b415b0
* Thu Aug 16 2018 Jan Rybar <jrybar@redhat.com> - 0.115-4
b415b0
- Spawned zombie subprocesses not reaped
b415b0
- Resolves: rhbz#1616282
b415b0
b415b0
* Fri Aug 10 2018 Jan Rybar <jrybar@redhat.com> - 0.115-3
b415b0
- Resource leak found by static analyzer
b415b0
- Resolves: rhbz#1602661
b415b0
b415b0
* Tue Aug 07 2018 Jan Rybar <jrybar@redhat.com> - 0.115-2
b415b0
- Error message about getting authority is too elaborate (forward of #1342855)
b415b0
- Bus disconnection report moved to debug mode (forward of #1249627)
b415b0
b415b0
* Tue Jul 10 2018 Miloslav Trmač <mitr@redhat.com> - 0.115-1
b415b0
- Update to 0.115 (CVE-2018-1116)
b415b0
b415b0
* Tue Apr 03 2018 Ray Strode <rstrode@redhat.com> - 0.114-1
b415b0
- Update to 0.114
b415b0
b415b0
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.113-16
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b415b0
b415b0
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.113-15
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b415b0
b415b0
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.113-14
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b415b0
b415b0
* Thu Apr 13 2017 Richard Hughes <rhughes@redhat.com> - 0.113-13
b415b0
- Add the its files from upstream.
b415b0
b415b0
* Tue Apr 4 2017 Miloslav Trmač <mitr@redhat.com> - 0.113-12
b415b0
- Fix a memory leak in PolkitPermission.
b415b0
  Patch by Rui Matos <tiagomatos@gmail.com>
b415b0
  Resolves: #1433915
b415b0
b415b0
* Tue Apr 4 2017 Miloslav Trmač <mitr@redhat.com> - 0.113-11
b415b0
- Revert back to the state in 0.113-7, undoing the untested changes.
b415b0
b415b0
* Tue Apr  4 2017 Peter Robinson <pbrobinson@fedoraproject.org> 0.113-10
b415b0
- Move to an upstream snapshot, rebase patches
b415b0
b415b0
* Fri Mar 31 2017 Rex Dieter <rdieter@fedoraproject.org> - 0.113-9
b415b0
- restore Provides: polkit-desktop-policy polkit-js-engine
b415b0
b415b0
* Thu Mar 30 2017 Peter Robinson <pbrobinson@fedoraproject.org> 0.113-8
b415b0
- Use %%license, license needs to be in -libs as it's the only guaranteed installed package
b415b0
- Move to mozjs38
b415b0
- Other upstream fixes
b415b0
- Spec cleanups
b415b0
b415b0
* Mon Feb 13 2017 Miloslav Trmač <mitr@redhat.com> - 0.113-7
b415b0
- Fix memory leaks when calling authentication agents
b415b0
  Resolves: #1380166
b415b0
b415b0
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.113-6
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b415b0
b415b0
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.113-5
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b415b0
b415b0
* Tue Jul 14 2015 Miloslav Trmač <mitr@redhat.com> - 0.113-4
b415b0
- Bump the Obsoletes: to < 0.113-3 to account for the non-split 0.113-2.fc21
b415b0
  Resolves: #1243004
b415b0
b415b0
* Sun Jul 12 2015 Rex Dieter <rdieter@fedoraproject.org> 0.113-3
b415b0
- Obsoletes: polkit < 0.112-8 (handle multilib upgrade path)
b415b0
b415b0
* Fri Jul 10 2015 Miloslav Trmač <mitr@redhat.com> - 0.113-2
b415b0
- Add a fully versioned dependency from polkit to polkit-libs
b415b0
  Resolves: #1241759
b415b0
- Require polkit-libs, not polkit, in polkit-devel
b415b0
b415b0
* Thu Jul 2 2015 Miloslav Trmač <mitr@redhat.com> - 0.113-1
b415b0
- Update to polkit-0.113 (CVE-2015-3218, CVE-2015-3255, CVE-2015-3256,
b415b0
  CVE-2015-4625)
b415b0
  Resolves: #910262, #1175061, #1177930, #1194391, #1228739, #1233810
b415b0
b415b0
* Fri Jun 19 2015 Miloslav Trmač <mitr@redhat.com> - 0.112-11
b415b0
- Add BuildRequires: systemd so that %%{_unitdir} is defined, to fix the build.
b415b0
b415b0
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.112-10
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b415b0
b415b0
* Sun Jan 25 2015 Rex Dieter <rdieter@fedoraproject.org>  - 0.112-9
b415b0
- polkit doesn't release reference counters of GVariant data (#1180886)
b415b0
- fix ldconfig scriptlets (move to -libs subpkg)
b415b0
b415b0
* Sat Nov 08 2014 Colin Walters <walters@redhat.com> - 0.112-8
b415b0
- Split separate -libs package, so that NetworkManager can just depend on
b415b0
  that, without dragging in the daemon (as well as libmozjs17).  This
b415b0
  allows the creation of more minimal systems that want programs like NM,
b415b0
  but do not need the configurability of the daemon; it would be ok if only
b415b0
  root is authorized.
b415b0
b415b0
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.112-7
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b415b0
b415b0
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 0.112-6
b415b0
- Rebuilt for gobject-introspection 1.41.4
b415b0
b415b0
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.112-5
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b415b0
b415b0
* Thu Jun  5 2014 Kay Sievers <kay@redhat.com> - 0.112-4
b415b0
- backport upstream D-Bus "user bus" changes
b415b0
b415b0
* Mon Feb 10 2014 Miloslav Trmač <mitr@redhat.com> - 0.112-3
b415b0
- Fix a PolkitAgentSession race condition
b415b0
  Resolves: #1063193
b415b0
b415b0
* Sat Dec  7 2013 Miloslav Trmač <mitr@redhat.com> - 0.112-2
b415b0
- Workaround pam_systemd setting broken XDG_RUNTIME_DIR
b415b0
  Resolves: #1033774
b415b0
- Always use mozjs-17.0 even if js-devel is installed
b415b0
b415b0
* Wed Sep 18 2013 Miloslav Trmač <mitr@redhat.com> - 0.112-1
b415b0
- Update to polkit-0.112
b415b0
- Resolves: #1009538, CVE-2013-4288
b415b0
b415b0
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.111-3
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b415b0
b415b0
* Wed May 29 2013 Tomas Bzatek <tbzatek@redhat.com> - 0.111-2
b415b0
- Fix a race on PolkitSubject type registration (#866718)
b415b0
b415b0
* Wed May 15 2013 Miloslav Trmač <mitr@redhat.com> - 0.111-1
b415b0
- Update to polkit-0.111
b415b0
  Resolves: #917888
b415b0
- Use SpiderMonkey from mozjs17 instead of js
b415b0
- Ship the signature in the srpm
b415b0
- Try to preserve timestamps in (make install)
b415b0
b415b0
* Fri May 10 2013 Miloslav Trmač <mitr@redhat.com> - 0.110-4
b415b0
- Shut up rpmlint about Summary:
b415b0
- Build with V=1
b415b0
- Use %%{_unitdir} instead of hard-coding the path
b415b0
- Use the new systemd macros, primarily to run (systemctl daemon-reload)
b415b0
  Resolves: #857382
b415b0
b415b0
* Fri May 10 2013 Miloslav Trmač <mitr@redhat.com> - 0.110-4
b415b0
- Make the JavaScript engine mandatory.  The polkit-js-engine package has been
b415b0
  removed, main polkit package Provides:polkit-js-engine for compatibility.
b415b0
- Add Requires: polkit-pkla-compat
b415b0
  Resolves: #908808
b415b0
b415b0
* Wed Feb 13 2013 Miloslav Trmač <mitr@redhat.com> - 0.110-3
b415b0
- Don't ship pk-example-frobnicate in the "live" configuration
b415b0
  Resolves: #878112
b415b0
b415b0
* Fri Feb  8 2013 Miloslav Trmač <mitr@redhat.com> - 0.110-2
b415b0
- Own %%{_docdir}/polkit-js-engine-*
b415b0
  Resolves: #907668
b415b0
b415b0
* Wed Jan  9 2013 David Zeuthen <davidz@redhat.com> - 0.110-1%{?dist}
b415b0
- Update to upstream release 0.110
b415b0
b415b0
* Mon Jan  7 2013 Matthias Clasen <mclasen@redhat.com> - 0.109-2%{?dist}
b415b0
- Build with pie and stuff
b415b0
b415b0
* Wed Dec 19 2012 David Zeuthen <davidz@redhat.com> 0.109-1%{?dist}
b415b0
- Update to upstream release 0.109
b415b0
- Drop upstreamed patches
b415b0
b415b0
* Thu Nov 15 2012 David Zeuthen <davidz@redhat.com> 0.108-3%{?dist}
b415b0
- Attempt to open the correct libmozjs185 library, otherwise polkit
b415b0
  authz rules will not work unless js-devel is installed (fdo #57146)
b415b0
b415b0
* Wed Nov 14 2012 David Zeuthen <davidz@redhat.com> 0.108-2%{?dist}
b415b0
- Include gmodule-2.0 to avoid build error
b415b0
b415b0
* Wed Nov 14 2012 David Zeuthen <davidz@redhat.com> 0.108-1%{?dist}
b415b0
- Update to upstream release 0.108
b415b0
- Drop upstreamed patches
b415b0
- This release dynamically loads the JavaScript interpreter and can
b415b0
  cope with it not being available. In this case, polkit authorization
b415b0
  rules are not processed and the defaults for an action - as defined
b415b0
  in its .policy file - are used for authorization decisions.
b415b0
- Add new meta-package, polkit-js-engine, that pulls in the required
b415b0
  JavaScript bits to make polkit authorization rules work. The default
b415b0
  install - not the minimal install - should include this package
b415b0
b415b0
* Wed Oct 10 2012 Adam Jackson <ajax@redhat.com> 0.107-4
b415b0
- Don't crash if initializing the server object fails
b415b0
b415b0
* Tue Sep 18 2012 David Zeuthen <davidz@redhat.com> 0.107-3%{?dist}
b415b0
- Authenticate as root if e.g. the wheel group is empty (#834494)
b415b0
b415b0
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.107-2
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b415b0
b415b0
* Wed Jul 11 2012 David Zeuthen <davidz@redhat.com> 0.107-1%{?dist}
b415b0
- Update to upstream release 0.107
b415b0
b415b0
* Fri Jun 29 2012 David Zeuthen <davidz@redhat.com> 0.106-2%{?dist}
b415b0
- Add forgotten Requires(pre): shadow-utils
b415b0
b415b0
* Thu Jun 07 2012 David Zeuthen <davidz@redhat.com> 0.106-1%{?dist}
b415b0
- Update to upstream release 0.106
b415b0
- Authorizations are no longer controlled by .pkla files - from now
b415b0
  on, use the new .rules files described in the polkit(8) man page
b415b0
b415b0
* Tue Apr 24 2012 David Zeuthen <davidz@redhat.com> 0.105-1%{?dist}
b415b0
- Update to upstream release 0.105
b415b0
- Nuke patches that are now upstream
b415b0
- Change 'PolicyKit' to 'polkit' in summary and descriptions
b415b0
b415b0
* Thu Mar 08 2012 David Zeuthen <davidz@redhat.com> 0.104-6%{?dist}
b415b0
- Don't leak file descriptors (bgo #671486)
b415b0
b415b0
* Mon Feb 13 2012 Matthias Clasen <mclasen@redhat.com> - 0.104-5%{?dist}
b415b0
- Make the -docs subpackage noarch
b415b0
b415b0
* Mon Feb 06 2012 David Zeuthen <davidz@redhat.com> 0.104-4%{?dist}
b415b0
- Set error if we cannot obtain a PolkitUnixSession for a given PID (#787222)
b415b0
b415b0
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.104-3
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b415b0
b415b0
* Tue Jan 03 2012 David Zeuthen <davidz@redhat.com> 0.104-2%{?dist}
b415b0
- Nuke the ConsoleKit run-time requirement
b415b0
b415b0
* Tue Jan 03 2012 David Zeuthen <davidz@redhat.com> 0.104-1%{?dist}
b415b0
- Update to upstream release 0.104
b415b0
- Force usage of systemd (instead of ConsoleKit) for session tracking
b415b0
b415b0
* Tue Dec 06 2011 David Zeuthen <davidz@redhat.com> 0.103-1%{?dist}
b415b0
- Update to upstream release 0.103
b415b0
- Drop upstreamed patch
b415b0
- Drop Fedora-specific policy, it is now upstream (fdo #41008)
b415b0
b415b0
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.102-3
b415b0
- Rebuilt for glibc bug#747377
b415b0
b415b0
* Tue Oct 18 2011 David Zeuthen <davidz@redhat.com> 0.102-2%{?dist}
b415b0
- Add patch to neuter the annoying systemd behavior where stdout/stderr
b415b0
  is sent to the system logs
b415b0
b415b0
* Thu Aug 04 2011 David Zeuthen <davidz@redhat.com> 0.102-1
b415b0
- Update to 0.102 release
b415b0
b415b0
* Fri May 13 2011 Bastien Nocera <bnocera@redhat.com> 0.101-7
b415b0
- Allow setting the pretty hostname without a password for wheel,
b415b0
  change matches systemd in git
b415b0
b415b0
* Mon May  2 2011 Matthias Clasen <mclasen@redhat.com> - 0.101-6
b415b0
- Update the action id of the datetime mechanism
b415b0
b415b0
* Tue Apr 19 2011 David Zeuthen <davidz@redhat.com> - 0.101-5
b415b0
- CVE-2011-1485 (#697951)
b415b0
b415b0
* Tue Mar 22 2011 Kevin Kofler <Kevin@tigcc.ticalc.org> - 0.101-4
b415b0
- Also allow org.kde.kcontrol.kcmclock.save without password for wheel
b415b0
b415b0
* Thu Mar 17 2011 David Zeuthen <davidz@redhat.com> - 0.101-3
b415b0
- Fix typo in pkla file (thanks notting)
b415b0
b415b0
* Thu Mar 17 2011 David Zeuthen <davidz@redhat.com> - 0.101-2
b415b0
- Nuke desktop_admin_r and desktop_user_r groups - just use the
b415b0
  wheel group instead (#688363)
b415b0
- Update the set of configuration directives that gives users
b415b0
  in the wheel group extra privileges
b415b0
b415b0
* Thu Mar 03 2011 David Zeuthen <davidz@redhat.com> - 0.101-1
b415b0
- New upstream version
b415b0
b415b0
* Mon Feb 21 2011 David Zeuthen <davidz@redhat.com> - 0.100-1
b415b0
- New upstream version
b415b0
b415b0
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.98-7
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b415b0
b415b0
* Fri Jan 28 2011 Matthias Clasen <mclasen@redhat.com> - 0.98-6
b415b0
- Own /usr/libexec/polkit-1
b415b0
b415b0
* Fri Nov 12 2010 Matthias Clasen <mclasen@redhat.com> - 0.98-5
b415b0
- Enable introspection
b415b0
b415b0
* Thu Sep 02 2010 David Zeuthen <davidz@redhat.com> - 0.98-4
b415b0
- Fix #629515 in a way that doesn't require autoreconf
b415b0
b415b0
* Thu Sep 02 2010 David Zeuthen <davidz@redhat.com> - 0.98-2
b415b0
- Include polkitagentenumtypes.h (#629515)
b415b0
b415b0
* Mon Aug 23 2010 Matthias Clasen <mclasen@redhat.com> - 0.98-1
b415b0
- Update to upstream release 0.98
b415b0
- Co-own /usr/share/gtk-doc (#604410)
b415b0
b415b0
* Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.97-5
b415b0
- Rebuid to work around bodhi limitations
b415b0
b415b0
* Wed Aug 18 2010 Matthias Clasen <mclasen@redhat.com> - 0.97-4
b415b0
- Fix a ConsoleKit interaction bug
b415b0
b415b0
* Fri Aug 13 2010 David Zeuthen <davidz@redhat.com> - 0.97-3
b415b0
- Add a patch to make pkcheck(1) work the way libvirtd uses it (#623257)
b415b0
- Require GLib >= 2.25.12 instead of 2.25.11
b415b0
- Ensure polkit-gnome packages earlier than 0.97 are not used with
b415b0
  these packages
b415b0
b415b0
* Mon Aug 09 2010 David Zeuthen <davidz@redhat.com> - 0.97-2
b415b0
- Rebuild
b415b0
b415b0
* Mon Aug 09 2010 David Zeuthen <davidz@redhat.com> - 0.97-1
b415b0
- Update to 0.97. This release contains a port from EggDBus to the
b415b0
  GDBus code available in recent GLib releases.
b415b0
b415b0
* Fri Jan 15 2010 David Zeuthen <davidz@redhat.com> - 0.96-1
b415b0
- Update to 0.96
b415b0
- Disable introspection support for the time being
b415b0
b415b0
* Fri Nov 13 2009 David Zeuthen <davidz@redhat.com> - 0.95-2
b415b0
- Rebuild
b415b0
b415b0
* Fri Nov 13 2009 David Zeuthen <davidz@redhat.com> - 0.95-1
b415b0
- Update to 0.95
b415b0
- Drop upstreamed patches
b415b0
b415b0
* Tue Oct 20 2009 Matthias Clasen <mclasen@redhat.com> - 0.95-0.git20090913.3
b415b0
- Fix a typo in pklocalauthority(8)
b415b0
b415b0
* Mon Sep 14 2009 David Zeuthen <davidz@redhat.com> - 0.95-0.git20090913.2
b415b0
- Refine how Obsolete: is used and also add Provides: (thanks Jesse
b415b0
  Keating and nim-nim)
b415b0
b415b0
* Mon Sep 14 2009 David Zeuthen <davidz@redhat.com> - 0.95-0.git20090913.1
b415b0
- Add bugfix for polkit_unix_process_new_full() (thanks Bastien Nocera)
b415b0
- Obsolete old PolicyKit packages
b415b0
b415b0
* Sun Sep 13 2009 David Zeuthen <davidz@redhat.com> - 0.95-0.git20090913
b415b0
- Update to git snapshot
b415b0
- Drop upstreamed patches
b415b0
- Turn on GObject introspection
b415b0
- Don't delete desktop_admin_r and desktop_user_r groups when
b415b0
  uninstalling polkit-desktop-policy
b415b0
b415b0
* Fri Sep 11 2009 David Zeuthen <davidz@redhat.com> - 0.94-4
b415b0
- Add some patches from git master
b415b0
- Sort pkaction(1) output
b415b0
- Bug 23867 – UnixProcess vs. SystemBusName aliasing
b415b0
b415b0
* Thu Aug 13 2009 David Zeuthen <davidz@redhat.com> - 0.94-3
b415b0
- Add desktop_admin_r and desktop_user_r groups along with a first cut
b415b0
  of default authorizations for users in these groups.
b415b0
b415b0
* Wed Aug 12 2009 David Zeuthen <davidz@redhat.com> - 0.94-2
b415b0
- Disable GObject Introspection for now as it breaks the build
b415b0
b415b0
* Wed Aug 12 2009 David Zeuthen <davidz@redhat.com> - 0.94-1
b415b0
- Update to upstream release 0.94
b415b0
b415b0
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.93-3
b415b0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b415b0
b415b0
* Mon Jul 20 2009 David Zeuthen <davidz@redhat.com> - 0.93-2
b415b0
- Rebuild
b415b0
b415b0
* Mon Jul 20 2009 David Zeuthen <davidz@redhat.com> - 0.93-1
b415b0
- Update to 0.93
b415b0
b415b0
* Tue Jun 09 2009 David Zeuthen <davidz@redhat.com> - 0.92-3
b415b0
- Don't make docs noarch (I *heart* multilib)
b415b0
- Change license to LGPLv2+
b415b0
b415b0
* Mon Jun 08 2009 David Zeuthen <davidz@redhat.com> - 0.92-2
b415b0
- Rebuild
b415b0
b415b0
* Mon Jun 08 2009 David Zeuthen <davidz@redhat.com> - 0.92-1
b415b0
- Update to 0.92 release
b415b0
b415b0
* Wed May 27 2009 David Zeuthen <davidz@redhat.com> - 0.92-0.git20090527
b415b0
- Update to 0.92 snapshot
b415b0
b415b0
* Mon Feb  9 2009 David Zeuthen <davidz@redhat.com> - 0.91-1
b415b0
- Initial spec file.