public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-04-25  2:42 Daniel Gryniewicz (dang)
  0 siblings, 0 replies; 13+ messages in thread
From: Daniel Gryniewicz (dang) @ 2009-04-25  2:42 UTC (permalink / raw
  To: gentoo-commits

dang        09/04/25 02:42:16

  Modified:             ChangeLog
  Added:                policykit-0.9-r1.ebuild
  Log:
  Fix policykit with new deny default in dbus
  (Portage version: 2.2_rc31/cvs/Linux x86_64)

Revision  Changes    Path
1.15                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	23 Apr 2009 15:38:23 -0000	1.14
+++ ChangeLog	25 Apr 2009 02:42:16 -0000	1.15
@@ -1,6 +1,12 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.14 2009/04/23 15:38:23 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.15 2009/04/25 02:42:16 dang Exp $
+
+*policykit-0.9-r1 (25 Apr 2009)
+
+  25 Apr 2009; Daniel Gryniewicz <dang@gentoo.org>
+  +files/policykit-0.9-dbus-auth.patch, +policykit-0.9-r1.ebuild:
+  Fix policykit with new deny default in dbus
 
   23 Apr 2009; Raúl Porcel <armin76@gentoo.org> policykit-0.9.ebuild:
   Add ~arm/~s390/~sh



1.1                  sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.1&content-type=text/plain

Index: policykit-0.9-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.1 2009/04/25 02:42:16 dang Exp $

inherit autotools bash-completion eutils multilib pam

MY_PN="PolicyKit"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Policy framework for controlling privileges for system-wide services"
HOMEPAGE="http://hal.freedesktop.org/docs/PolicyKit"
SRC_URI="http://hal.freedesktop.org/releases/${MY_P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="bash-completion doc pam selinux zsh-completion"

RDEPEND=">=dev-libs/glib-2.6
	>=dev-libs/dbus-glib-0.73
	dev-libs/expat
	pam? ( virtual/pam )
	selinux? ( sys-libs/libselinux )"
DEPEND="${RDEPEND}
	dev-libs/libxslt
	app-text/docbook-xsl-stylesheets
	>=dev-util/pkgconfig-0.18
	>=dev-util/intltool-0.36
	>=dev-util/gtk-doc-am-1.10-r1
	doc? ( >=dev-util/gtk-doc-1.10 )"

S="${WORKDIR}/${MY_P}"

pkg_setup() {
	enewgroup polkituser
	enewuser polkituser -1 "-1" /dev/null polkituser
}

src_unpack() {
	unpack ${A}
	cd "${S}"

	# Add zsh/bash completion
	epatch "${FILESDIR}/${PN}-0.7-completions.patch"

	# Fix use of undefined _pk_debug, bug #239573
	epatch "${FILESDIR}/${P}-pk-debug.patch"

	# Fix useless pam header inclusion, bug #239554
	epatch "${FILESDIR}/${P}-pam-headers.patch"

	# Fix API change in consolekit 0.3
	epatch "${FILESDIR}/${P}-consolekit03.patch"

	# Fix dbus auth for new deny default
	epatch "${FILESDIR}"/${P}-dbus-auth.patch
	eautoreconf
}

src_compile() {
	local authdb=

	if use pam ; then
		authdb="--with-authdb=default --with-authfw=pam --with-pam-module-dir=$(getpam_mod_dir)"
	else
		authdb="--with-authdb=dummy --with-authfw=none"
	fi

	econf ${authdb} \
		--without-bash-completion \
		--without-zsh-completion \
		--enable-man-pages \
		--with-os-type=gentoo \
		--with-polkit-user=polkituser \
		--with-polkit-group=polkituser \
		$(use_enable doc gtk-doc) \
		$(use_enable selinux) \
		--localstatedir=/var
	# won't install with tests
	#	$(use_enable test tests) \
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	dodoc NEWS README AUTHORS ChangeLog

	if use bash-completion; then
		dobashcompletion "${S}/tools/polkit-bash-completion.sh"
	fi

	if use zsh-completion ; then
		insinto /usr/share/zsh/site-functions
		doins "${S}/tools/_polkit" || die "zsh completion died"
		doins "${S}/tools/_polkit_auth" || die "zsh completion died"
		doins "${S}/tools/_polkit_action" || die "zsh completion died"
	fi

	einfo "Installing basic PolicyKit.conf"
	insinto /etc/PolicyKit
	doins "${FILESDIR}"/PolicyKit.conf || die "doins failed"
	# Need to keep a few directories around...

	diropts -m0770 -o root -g polkituser
	keepdir /var/run/PolicyKit
	keepdir /var/lib/PolicyKit
}

pkg_preinst() {
	# Stolen from vixie-cron ebuilds
	has_version "<${CATEGORY}/${PN}-0.9"
	fix_var_dir_perms=$?
}

pkg_postinst() {
	# bug #239231
	if [[ $fix_var_dir_perms = 0 ]] ; then
		echo
		ewarn "Previous version of PolicyKit handled /var/run and /var/lib"
		ewarn "with different permissions. Proper permissions are"
		ewarn "now being set on ${ROOT}var/lib/PolicyKit and ${ROOT}var/lib/PolicyKit"
		ewarn "Look at these directories if you have a specific configuration"
		ewarn "that needs special ownerships or permissions."
		echo
		chmod 0770 "${ROOT}"var/{lib,run}/PolicyKit || die "chmod failed"
		chgrp -R polkituser "${ROOT}"var/{lib,run}/PolicyKit || die "chgrp failed"
	fi
}






^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-07-02 19:40 Alexis Ballier (aballier)
  0 siblings, 0 replies; 13+ messages in thread
From: Alexis Ballier (aballier) @ 2009-07-02 19:40 UTC (permalink / raw
  To: gentoo-commits

aballier    09/07/02 19:40:42

  Modified:             ChangeLog policykit-0.9-r1.ebuild
  Log:
  keyword ~x86-fbsd, bug #266560
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.17                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	20 Jun 2009 21:02:55 -0000	1.16
+++ ChangeLog	2 Jul 2009 19:40:42 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.16 2009/06/20 21:02:55 mrpouet Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.17 2009/07/02 19:40:42 aballier Exp $
+
+  02 Jul 2009; Alexis Ballier <aballier@gentoo.org> policykit-0.9-r1.ebuild:
+  keyword ~x86-fbsd, bug #266560
 
 *policykit-0.92 (20 Jun 2009)
 



1.2                  sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?r1=1.1&r2=1.2

Index: policykit-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- policykit-0.9-r1.ebuild	25 Apr 2009 02:42:16 -0000	1.1
+++ policykit-0.9-r1.ebuild	2 Jul 2009 19:40:42 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.1 2009/04/25 02:42:16 dang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.2 2009/07/02 19:40:42 aballier Exp $
 
 inherit autotools bash-completion eutils multilib pam
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
 IUSE="bash-completion doc pam selinux zsh-completion"
 
 RDEPEND=">=dev-libs/glib-2.6






^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-08-08 23:23 Daniel Gryniewicz (dang)
  0 siblings, 0 replies; 13+ messages in thread
From: Daniel Gryniewicz (dang) @ 2009-08-08 23:23 UTC (permalink / raw
  To: gentoo-commits

dang        09/08/08 23:23:15

  Modified:             ChangeLog policykit-0.9-r1.ebuild
  Log:
  Restrict parallel on install.  bug #280829
  (Portage version: 2.2_rc36/cvs/Linux x86_64)

Revision  Changes    Path
1.19                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	6 Jul 2009 10:53:44 -0000	1.18
+++ ChangeLog	8 Aug 2009 23:23:15 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.18 2009/07/06 10:53:44 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.19 2009/08/08 23:23:15 dang Exp $
+
+  08 Aug 2009; Daniel Gryniewicz <dang@gentoo.org> policykit-0.9-r1.ebuild:
+  Restrict parallel on install. bug #280829
 
   06 Jul 2009; Alexey Shvetsov <alexxy@gentoo.org> policykit-0.9-r1.ebuild,
   policykit-0.92.ebuild:



1.4                  sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?r1=1.3&r2=1.4

Index: policykit-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- policykit-0.9-r1.ebuild	6 Jul 2009 10:53:44 -0000	1.3
+++ policykit-0.9-r1.ebuild	8 Aug 2009 23:23:15 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.3 2009/07/06 10:53:44 alexxy Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.4 2009/08/08 23:23:15 dang Exp $
 
 inherit autotools bash-completion eutils multilib pam
 
@@ -82,7 +82,7 @@
 }
 
 src_install() {
-	emake DESTDIR="${D}" install || die "emake install failed"
+	emake -j1 DESTDIR="${D}" install || die "emake install failed"
 
 	dodoc NEWS README AUTHORS ChangeLog
 






^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-09-14 16:48 Thomas Alan Gall (tgall)
  0 siblings, 0 replies; 13+ messages in thread
From: Thomas Alan Gall (tgall) @ 2009-09-14 16:48 UTC (permalink / raw
  To: gentoo-commits

tgall       09/09/14 16:48:47

  Modified:             ChangeLog policykit-0.9-r1.ebuild
  Log:
  stable on ppc64, as part of upgrade in consolekit
  (Portage version: 2.1.6.13/cvs/Linux ppc64)

Revision  Changes    Path
1.22                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	13 Sep 2009 18:13:33 -0000	1.21
+++ ChangeLog	14 Sep 2009 16:48:46 -0000	1.22
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.21 2009/09/13 18:13:33 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.22 2009/09/14 16:48:46 tgall Exp $
+
+  14 Sep 2009; Tom Gall <tgall@gentoo.org> policykit-0.9-r1.ebuild:
+  stable on ppc64, bug #??????
 
   13 Sep 2009; Nirbheek Chauhan <nirbheek@gentoo.org>
   -policykit-0.92.ebuild, -files/policykit-0.92-as-needed.patch,



1.5                  sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?r1=1.4&r2=1.5

Index: policykit-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- policykit-0.9-r1.ebuild	8 Aug 2009 23:23:15 -0000	1.4
+++ policykit-0.9-r1.ebuild	14 Sep 2009 16:48:46 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.4 2009/08/08 23:23:15 dang Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.5 2009/09/14 16:48:46 tgall Exp $
 
 inherit autotools bash-completion eutils multilib pam
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
 IUSE="bash-completion doc pam selinux zsh-completion"
 
 RDEPEND=">=dev-libs/glib-2.6






^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-09-16 17:56 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 13+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-09-16 17:56 UTC (permalink / raw
  To: gentoo-commits

fauli       09/09/16 17:56:54

  Modified:             ChangeLog policykit-0.9-r1.ebuild
  Log:
  stable x86, bug 278181
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.23                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	14 Sep 2009 16:48:46 -0000	1.22
+++ ChangeLog	16 Sep 2009 17:56:54 -0000	1.23
@@ -1,6 +1,10 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.22 2009/09/14 16:48:46 tgall Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.23 2009/09/16 17:56:54 fauli Exp $
+
+  16 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
+  policykit-0.9-r1.ebuild:
+  stable x86, bug 278181
 
   14 Sep 2009; Tom Gall <tgall@gentoo.org> policykit-0.9-r1.ebuild:
   stable on ppc64, bug #??????



1.6                  sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?r1=1.5&r2=1.6

Index: policykit-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- policykit-0.9-r1.ebuild	14 Sep 2009 16:48:46 -0000	1.5
+++ policykit-0.9-r1.ebuild	16 Sep 2009 17:56:54 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.5 2009/09/14 16:48:46 tgall Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.6 2009/09/16 17:56:54 fauli Exp $
 
 inherit autotools bash-completion eutils multilib pam
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="bash-completion doc pam selinux zsh-completion"
 
 RDEPEND=">=dev-libs/glib-2.6






^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-09-19  9:23 Romain Perier (mrpouet)
  0 siblings, 0 replies; 13+ messages in thread
From: Romain Perier (mrpouet) @ 2009-09-19  9:23 UTC (permalink / raw
  To: gentoo-commits

mrpouet     09/09/19 09:23:57

  Modified:             ChangeLog policykit-0.9-r1.ebuild
  Log:
  Stable for amd64 per bug #278181
  (Portage version: 2.2_rc40/cvs/Linux x86_64)

Revision  Changes    Path
1.24                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	16 Sep 2009 17:56:54 -0000	1.23
+++ ChangeLog	19 Sep 2009 09:23:57 -0000	1.24
@@ -1,6 +1,10 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.23 2009/09/16 17:56:54 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.24 2009/09/19 09:23:57 mrpouet Exp $
+
+  19 Sep 2009; Romain Perier <mrpouet@gentoo.org>
+  policykit-0.9-r1.ebuild:
+  Stable for amd64 per bug #278181.
 
   16 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
   policykit-0.9-r1.ebuild:



1.7                  sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?r1=1.6&r2=1.7

Index: policykit-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- policykit-0.9-r1.ebuild	16 Sep 2009 17:56:54 -0000	1.6
+++ policykit-0.9-r1.ebuild	19 Sep 2009 09:23:57 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.6 2009/09/16 17:56:54 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.7 2009/09/19 09:23:57 mrpouet Exp $
 
 inherit autotools bash-completion eutils multilib pam
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="bash-completion doc pam selinux zsh-completion"
 
 RDEPEND=">=dev-libs/glib-2.6






^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-09-22 20:01 Jeroen Roovers (jer)
  0 siblings, 0 replies; 13+ messages in thread
From: Jeroen Roovers (jer) @ 2009-09-22 20:01 UTC (permalink / raw
  To: gentoo-commits

jer         09/09/22 20:01:11

  Modified:             ChangeLog policykit-0.9-r1.ebuild
  Log:
  Stable for HPPA (bug #278181).
  (Portage version: 2.2_rc41/cvs/Linux i686)

Revision  Changes    Path
1.25                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	19 Sep 2009 09:23:57 -0000	1.24
+++ ChangeLog	22 Sep 2009 20:01:11 -0000	1.25
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.24 2009/09/19 09:23:57 mrpouet Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.25 2009/09/22 20:01:11 jer Exp $
+
+  22 Sep 2009; Jeroen Roovers <jer@gentoo.org> policykit-0.9-r1.ebuild:
+  Stable for HPPA (bug #278181).
 
   19 Sep 2009; Romain Perier <mrpouet@gentoo.org>
   policykit-0.9-r1.ebuild:



1.8                  sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?r1=1.7&r2=1.8

Index: policykit-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- policykit-0.9-r1.ebuild	19 Sep 2009 09:23:57 -0000	1.7
+++ policykit-0.9-r1.ebuild	22 Sep 2009 20:01:11 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.7 2009/09/19 09:23:57 mrpouet Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.8 2009/09/22 20:01:11 jer Exp $
 
 inherit autotools bash-completion eutils multilib pam
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="bash-completion doc pam selinux zsh-completion"
 
 RDEPEND=">=dev-libs/glib-2.6






^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-09-27 14:33 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 13+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-09-27 14:33 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/09/27 14:33:24

  Modified:             ChangeLog policykit-0.9-r1.ebuild
  Log:
  ppc stable #278181
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.26                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	22 Sep 2009 20:01:11 -0000	1.25
+++ ChangeLog	27 Sep 2009 14:33:23 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.25 2009/09/22 20:01:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.26 2009/09/27 14:33:23 nixnut Exp $
+
+  27 Sep 2009; nixnut <nixnut@gentoo.org> policykit-0.9-r1.ebuild:
+  ppc stable #278181
 
   22 Sep 2009; Jeroen Roovers <jer@gentoo.org> policykit-0.9-r1.ebuild:
   Stable for HPPA (bug #278181).



1.9                  sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?r1=1.8&r2=1.9

Index: policykit-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- policykit-0.9-r1.ebuild	22 Sep 2009 20:01:11 -0000	1.8
+++ policykit-0.9-r1.ebuild	27 Sep 2009 14:33:23 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.8 2009/09/22 20:01:11 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.9 2009/09/27 14:33:23 nixnut Exp $
 
 inherit autotools bash-completion eutils multilib pam
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="bash-completion doc pam selinux zsh-completion"
 
 RDEPEND=">=dev-libs/glib-2.6






^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-09-29 18:12 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 13+ messages in thread
From: Tobias Klausmann (klausman) @ 2009-09-29 18:12 UTC (permalink / raw
  To: gentoo-commits

klausman    09/09/29 18:12:09

  Modified:             ChangeLog policykit-0.9-r1.ebuild
  Log:
  Stable on alpha, bug #278181
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.27                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	27 Sep 2009 14:33:23 -0000	1.26
+++ ChangeLog	29 Sep 2009 18:12:08 -0000	1.27
@@ -1,6 +1,10 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.26 2009/09/27 14:33:23 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.27 2009/09/29 18:12:08 klausman Exp $
+
+  29 Sep 2009; Tobias Klausmann <klausman@gentoo.org>
+  policykit-0.9-r1.ebuild:
+  Stable on alpha, bug #278181
 
   27 Sep 2009; nixnut <nixnut@gentoo.org> policykit-0.9-r1.ebuild:
   ppc stable #278181



1.10                 sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?r1=1.9&r2=1.10

Index: policykit-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- policykit-0.9-r1.ebuild	27 Sep 2009 14:33:23 -0000	1.9
+++ policykit-0.9-r1.ebuild	29 Sep 2009 18:12:08 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.9 2009/09/27 14:33:23 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.10 2009/09/29 18:12:08 klausman Exp $
 
 inherit autotools bash-completion eutils multilib pam
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="bash-completion doc pam selinux zsh-completion"
 
 RDEPEND=">=dev-libs/glib-2.6






^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-10-03  9:47 Markus Meier (maekke)
  0 siblings, 0 replies; 13+ messages in thread
From: Markus Meier (maekke) @ 2009-10-03  9:47 UTC (permalink / raw
  To: gentoo-commits

maekke      09/10/03 09:47:32

  Modified:             ChangeLog policykit-0.9-r1.ebuild
  Log:
  arm stable, bug #278181
  (Portage version: 2.2_rc42/cvs/Linux x86_64)

Revision  Changes    Path
1.28                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	29 Sep 2009 18:12:08 -0000	1.27
+++ ChangeLog	3 Oct 2009 09:47:32 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.27 2009/09/29 18:12:08 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.28 2009/10/03 09:47:32 maekke Exp $
+
+  03 Oct 2009; Markus Meier <maekke@gentoo.org> policykit-0.9-r1.ebuild:
+  arm stable, bug #278181
 
   29 Sep 2009; Tobias Klausmann <klausman@gentoo.org>
   policykit-0.9-r1.ebuild:



1.11                 sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?r1=1.10&r2=1.11

Index: policykit-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- policykit-0.9-r1.ebuild	29 Sep 2009 18:12:08 -0000	1.10
+++ policykit-0.9-r1.ebuild	3 Oct 2009 09:47:32 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.10 2009/09/29 18:12:08 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.11 2009/10/03 09:47:32 maekke Exp $
 
 inherit autotools bash-completion eutils multilib pam
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="bash-completion doc pam selinux zsh-completion"
 
 RDEPEND=">=dev-libs/glib-2.6






^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-10-28 18:17 Raul Porcel (armin76)
  0 siblings, 0 replies; 13+ messages in thread
From: Raul Porcel (armin76) @ 2009-10-28 18:17 UTC (permalink / raw
  To: gentoo-commits

armin76     09/10/28 18:17:15

  Modified:             ChangeLog policykit-0.9-r1.ebuild
  Log:
  ia64/s390/sh/sparc stable wrt #278181
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.29                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	3 Oct 2009 09:47:32 -0000	1.28
+++ ChangeLog	28 Oct 2009 18:17:14 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.28 2009/10/03 09:47:32 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.29 2009/10/28 18:17:14 armin76 Exp $
+
+  28 Oct 2009; Raúl Porcel <armin76@gentoo.org> policykit-0.9-r1.ebuild:
+  ia64/s390/sh/sparc stable wrt #278181
 
   03 Oct 2009; Markus Meier <maekke@gentoo.org> policykit-0.9-r1.ebuild:
   arm stable, bug #278181



1.12                 sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?r1=1.11&r2=1.12

Index: policykit-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- policykit-0.9-r1.ebuild	3 Oct 2009 09:47:32 -0000	1.11
+++ policykit-0.9-r1.ebuild	28 Oct 2009 18:17:14 -0000	1.12
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.11 2009/10/03 09:47:32 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.12 2009/10/28 18:17:14 armin76 Exp $
 
 inherit autotools bash-completion eutils multilib pam
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
 IUSE="bash-completion doc pam selinux zsh-completion"
 
 RDEPEND=">=dev-libs/glib-2.6






^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-11-29 16:21 Raul Porcel (armin76)
  0 siblings, 0 replies; 13+ messages in thread
From: Raul Porcel (armin76) @ 2009-11-29 16:21 UTC (permalink / raw
  To: gentoo-commits

armin76     09/11/29 16:21:46

  Modified:             ChangeLog policykit-0.9-r1.ebuild
  Log:
  Add ~sparc
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.30                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	28 Oct 2009 18:17:14 -0000	1.29
+++ ChangeLog	29 Nov 2009 16:21:46 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.29 2009/10/28 18:17:14 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.30 2009/11/29 16:21:46 armin76 Exp $
+
+  29 Nov 2009; Raúl Porcel <armin76@gentoo.org> policykit-0.9-r1.ebuild:
+  Add ~sparc
 
   28 Oct 2009; Raúl Porcel <armin76@gentoo.org> policykit-0.9-r1.ebuild:
   ia64/s390/sh/sparc stable wrt #278181



1.13                 sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?r1=1.12&r2=1.13

Index: policykit-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- policykit-0.9-r1.ebuild	28 Oct 2009 18:17:14 -0000	1.12
+++ policykit-0.9-r1.ebuild	29 Nov 2009 16:21:46 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.12 2009/10/28 18:17:14 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.13 2009/11/29 16:21:46 armin76 Exp $
 
 inherit autotools bash-completion eutils multilib pam
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh ~sparc x86 ~x86-fbsd"
 IUSE="bash-completion doc pam selinux zsh-completion"
 
 RDEPEND=">=dev-libs/glib-2.6






^ permalink raw reply	[flat|nested] 13+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild
@ 2009-11-29 19:38 Raul Porcel (armin76)
  0 siblings, 0 replies; 13+ messages in thread
From: Raul Porcel (armin76) @ 2009-11-29 19:38 UTC (permalink / raw
  To: gentoo-commits

armin76     09/11/29 19:38:47

  Modified:             ChangeLog policykit-0.9-r1.ebuild
  Log:
  sparc stable
  (Portage version: 2.1.6.13/cvs/Linux ia64)

Revision  Changes    Path
1.31                 sys-auth/policykit/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	29 Nov 2009 16:21:46 -0000	1.30
+++ ChangeLog	29 Nov 2009 19:38:47 -0000	1.31
@@ -1,6 +1,9 @@
 # ChangeLog for sys-auth/policykit
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.30 2009/11/29 16:21:46 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/ChangeLog,v 1.31 2009/11/29 19:38:47 armin76 Exp $
+
+  29 Nov 2009; Raúl Porcel <armin76@gentoo.org> policykit-0.9-r1.ebuild:
+  sparc stable
 
   29 Nov 2009; Raúl Porcel <armin76@gentoo.org> policykit-0.9-r1.ebuild:
   Add ~sparc



1.14                 sys-auth/policykit/policykit-0.9-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild?r1=1.13&r2=1.14

Index: policykit-0.9-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- policykit-0.9-r1.ebuild	29 Nov 2009 16:21:46 -0000	1.13
+++ policykit-0.9-r1.ebuild	29 Nov 2009 19:38:47 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.13 2009/11/29 16:21:46 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/policykit/policykit-0.9-r1.ebuild,v 1.14 2009/11/29 19:38:47 armin76 Exp $
 
 inherit autotools bash-completion eutils multilib pam
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
 IUSE="bash-completion doc pam selinux zsh-completion"
 
 RDEPEND=">=dev-libs/glib-2.6






^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2009-11-29 19:38 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-27 14:33 [gentoo-commits] gentoo-x86 commit in sys-auth/policykit: ChangeLog policykit-0.9-r1.ebuild Gysbert Wassenaar (nixnut)
  -- strict thread matches above, loose matches on Subject: below --
2009-11-29 19:38 Raul Porcel (armin76)
2009-11-29 16:21 Raul Porcel (armin76)
2009-10-28 18:17 Raul Porcel (armin76)
2009-10-03  9:47 Markus Meier (maekke)
2009-09-29 18:12 Tobias Klausmann (klausman)
2009-09-22 20:01 Jeroen Roovers (jer)
2009-09-19  9:23 Romain Perier (mrpouet)
2009-09-16 17:56 Christian Faulhammer (fauli)
2009-09-14 16:48 Thomas Alan Gall (tgall)
2009-08-08 23:23 Daniel Gryniewicz (dang)
2009-07-02 19:40 Alexis Ballier (aballier)
2009-04-25  2:42 Daniel Gryniewicz (dang)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox