* [gentoo-commits] gentoo-x86 commit in sys-auth/polkit: ChangeLog polkit-0.108.ebuild
@ 2012-11-18 7:11 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-11-18 7:11 UTC (permalink / raw
To: gentoo-commits
ssuominen 12/11/18 07:11:54
Modified: ChangeLog
Added: polkit-0.108.ebuild
Log:
Version bump.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Revision Changes Path
1.110 sys-auth/polkit/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/ChangeLog?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/ChangeLog?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/ChangeLog?r1=1.109&r2=1.110
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ChangeLog 28 Oct 2012 15:49:09 -0000 1.109
+++ ChangeLog 18 Nov 2012 07:11:54 -0000 1.110
@@ -1,8 +1,13 @@
# ChangeLog for sys-auth/polkit
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v 1.109 2012/10/28 15:49:09 naota Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v 1.110 2012/11/18 07:11:54 ssuominen Exp $
- 28 Oct 2012; <naota@gentoo.org> polkit-0.104-r1.ebuild,
+*polkit-0.108 (18 Nov 2012)
+
+ 18 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> +polkit-0.108.ebuild:
+ Version bump.
+
+ 28 Oct 2012; Naohiro Aota <naota@gentoo.org> polkit-0.104-r1.ebuild,
polkit-0.107-r1.ebuild, polkit-0.107.ebuild:
Drop ~x86-fbsd due to bug #439968.
1.1 sys-auth/polkit/polkit-0.108.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/polkit-0.108.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/polkit-0.108.ebuild?rev=1.1&content-type=text/plain
Index: polkit-0.108.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/polkit-0.108.ebuild,v 1.1 2012/11/18 07:11:54 ssuominen Exp $
EAPI=4
inherit eutils multilib pam pax-utils systemd user
DESCRIPTION="Policy framework for controlling privileges for system-wide services"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/polkit"
SRC_URI="http://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="examples gtk +introspection kde nls pam selinux systemd"
RDEPEND=">=dev-lang/spidermonkey-1.8.5-r2
>=dev-libs/glib-2.32
>=dev-libs/expat-2
introspection? ( >=dev-libs/gobject-introspection-1 )
pam? (
sys-auth/pambase
virtual/pam
)
selinux? ( sec-policy/selinux-policykit )
systemd? ( sys-apps/systemd )"
DEPEND="${RDEPEND}
app-text/docbook-xml-dtd:4.1.2
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
dev-util/intltool
virtual/pkgconfig"
PDEPEND="
gtk? ( || (
>=gnome-extra/polkit-gnome-0.105
lxde-base/lxpolkit
) )
kde? ( sys-auth/polkit-kde-agent )
pam? (
systemd? ( sys-auth/pambase[systemd] )
!systemd? ( sys-auth/pambase[consolekit] )
)
!systemd? ( >=sys-auth/consolekit-0.4.5_p2012[policykit] )"
QA_MULTILIB_PATHS="
usr/lib/polkit-1/polkit-agent-helper-1
usr/lib/polkit-1/polkitd"
pkg_setup() {
local u=polkitd
local g=polkitd
local h=/var/lib/polkit-1
enewgroup ${g}
enewuser ${u} -1 -1 ${h} ${g}
esethome ${u} ${h}
}
src_prepare() {
sed -i -e 's|unix-group:wheel|unix-user:0|' src/polkitbackend/*-default.rules || die #401513
if has_version '>=dev-lang/spidermonkey-1.8.7'; then
sed -i \
-e '/mozjs/s:185:187:g' \
configure src/polkitbackend/polkitbackendjsauthority.c || die
fi
}
src_configure() {
econf \
--localstatedir="${EPREFIX}"/var \
--disable-static \
--enable-man-pages \
--disable-gtk-doc \
$(use_enable systemd libsystemd-login) \
$(use_enable introspection) \
--disable-examples \
$(use_enable nls) \
"$(systemd_with_unitdir)" \
--with-authfw=$(usex pam pam shadow) \
$(use pam && echo --with-pam-module-dir="$(getpam_mod_dir)") \
--with-os-type=gentoo
}
src_compile() {
default
# Required for polkitd on hardened/PaX due to spidermonkey's JIT
local f='src/polkitbackend/.libs/polkitd test/polkitbackend/.libs/polkitbackendjsauthoritytest'
if has_version '>=dev-lang/spidermonkey-1.8.7[jit]'; then
pax-mark m ${f}
else
pax-mark mr ${f}
fi
}
src_install() {
emake DESTDIR="${D}" install
dodoc docs/TODO HACKING NEWS README
fowners -R polkitd:root /{etc,usr/share}/polkit-1/rules.d
diropts -m0700 -o polkitd -g polkitd
keepdir /var/lib/polkit-1
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins src/examples/{*.c,*.policy*}
fi
prune_libtool_files
}
pkg_postinst() {
chown -R polkitd:root "${EROOT}"/{etc,usr/share}/polkit-1/rules.d
chown -R polkitd:polkitd "${EROOT}"/var/lib/polkit-1
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-auth/polkit: ChangeLog polkit-0.108.ebuild
@ 2012-11-19 4:22 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-11-19 4:22 UTC (permalink / raw
To: gentoo-commits
ssuominen 12/11/19 04:22:11
Modified: ChangeLog polkit-0.108.ebuild
Log:
Link against -lgmodule-2.0 to prevent underlinking (backported from upstream, but using sed to avoid eautoreconf) wrt #443798
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Revision Changes Path
1.111 sys-auth/polkit/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/ChangeLog?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/ChangeLog?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/ChangeLog?r1=1.110&r2=1.111
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog 18 Nov 2012 07:11:54 -0000 1.110
+++ ChangeLog 19 Nov 2012 04:22:11 -0000 1.111
@@ -1,6 +1,10 @@
# ChangeLog for sys-auth/polkit
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v 1.110 2012/11/18 07:11:54 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/ChangeLog,v 1.111 2012/11/19 04:22:11 ssuominen Exp $
+
+ 19 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> polkit-0.108.ebuild:
+ Link against -lgmodule-2.0 to prevent underlinking (backported from upstream,
+ but using sed to avoid eautoreconf) wrt #443798
*polkit-0.108 (18 Nov 2012)
1.2 sys-auth/polkit/polkit-0.108.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/polkit-0.108.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/polkit-0.108.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/polkit/polkit-0.108.ebuild?r1=1.1&r2=1.2
Index: polkit-0.108.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/polkit/polkit-0.108.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- polkit-0.108.ebuild 18 Nov 2012 07:11:54 -0000 1.1
+++ polkit-0.108.ebuild 19 Nov 2012 04:22:11 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/polkit-0.108.ebuild,v 1.1 2012/11/18 07:11:54 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit/polkit-0.108.ebuild,v 1.2 2012/11/19 04:22:11 ssuominen Exp $
EAPI=4
inherit eutils multilib pam pax-utils systemd user
@@ -58,6 +58,7 @@
src_prepare() {
sed -i -e 's|unix-group:wheel|unix-user:0|' src/polkitbackend/*-default.rules || die #401513
+ sed -i -e 's:gio-2.0:gmodule-2.0 &:' configure || die #443798
if has_version '>=dev-lang/spidermonkey-1.8.7'; then
sed -i \
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-11-19 4:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-19 4:22 [gentoo-commits] gentoo-x86 commit in sys-auth/polkit: ChangeLog polkit-0.108.ebuild Samuli Suominen (ssuominen)
-- strict thread matches above, loose matches on Subject: below --
2012-11-18 7:11 Samuli Suominen (ssuominen)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox