public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-portage/eix: eix-0.29.3.ebuild ChangeLog
@ 2013-08-07  8:15 Michael Weber (xmw)
  0 siblings, 0 replies; 10+ messages in thread
From: Michael Weber (xmw) @ 2013-08-07  8:15 UTC (permalink / raw
  To: gentoo-commits

xmw         13/08/07 08:15:04

  Modified:             ChangeLog
  Added:                eix-0.29.3.ebuild
  Log:
  Version bump (bug 479992), fixes bug 478320 and bug 478818, NMU.
  
  (Portage version: 2.2.0_alpha191/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)

Revision  Changes    Path
1.455                app-portage/eix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.455&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.455&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.454&r2=1.455

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
retrieving revision 1.454
retrieving revision 1.455
diff -u -r1.454 -r1.455
--- ChangeLog	16 Jul 2013 21:11:45 -0000	1.454
+++ ChangeLog	7 Aug 2013 08:15:04 -0000	1.455
@@ -1,6 +1,11 @@
 # ChangeLog for app-portage/eix
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.454 2013/07/16 21:11:45 axs Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.455 2013/08/07 08:15:04 xmw Exp $
+
+*eix-0.29.3 (07 Aug 2013)
+
+  07 Aug 2013; Michael Weber <xmw@gentoo.org> +eix-0.29.3.ebuild:
+  Version bump (bug 479992), fixes bug 478320 and bug 478818, NMU.
 
 *eix-0.29.1 (16 Jul 2013)
 



1.1                  app-portage/eix/eix-0.29.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.1&content-type=text/plain

Index: eix-0.29.3.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.1 2013/08/07 08:15:04 xmw Exp $

EAPI=5

PLOCALES="de ru"
inherit bash-completion-r1 eutils multilib l10n

DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays, version changes, and more"
HOMEPAGE="http://eix.berlios.de"
SRC_URI="mirror://berlios/${PN}/${P}.tar.xz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
IUSE="clang debug +dep doc nls optimization security strong-optimization strong-security sqlite swap-remote tools zsh-completion"

BOTHDEPEND="sqlite? ( >=dev-db/sqlite-3 )
	nls? ( virtual/libintl )"
RDEPEND="${BOTHDEPEND}
	app-shells/push"
DEPEND="${BOTHDEPEND}
	app-arch/xz-utils
	clang? ( sys-devel/clang )
	nls? ( sys-devel/gettext )"

pkg_setup() {
	case " ${REPLACING_VERSIONS}" in
	*\ 0.[0-9].*|*\ 0.1[0-9].*|*\ 0.2[0-4].*|*\ 0.25.0*)
		local eixcache="${EROOT}/var/cache/${PN}"
		test -f "${eixcache}" && rm -f -- "${eixcache}";;
	esac
}

src_prepare() {
	epatch_user
}

src_configure() {
	econf $(use_with sqlite) $(use_with doc extra-doc) \
		$(use_with zsh-completion) \
		$(use_enable nls) $(use_enable tools separate-tools) \
		$(use_enable security) $(use_enable optimization) \
		$(use_enable strong-security) \
		$(use_enable strong-optimization) $(use_enable debug debugging) \
		$(use_enable swap-remote) \
		$(use_with prefix always-accept-keywords) \
		$(use_with dep dep-default) \
		$(use_with clang nongnu-cxx clang++) \
		--with-ebuild-sh-default="/usr/$(get_libdir)/portage/bin/ebuild.sh" \
		--with-portage-rootpath="${ROOTPATH}" \
		--with-eprefix-default="${EPREFIX}" \
		--docdir="${EPREFIX}/usr/share/doc/${PF}" \
		--htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
}

src_install() {
	default
	dobashcomp bash/eix
	keepdir "/var/cache/${PN}"
	fowners portage:portage "/var/cache/${PN}"
	fperms 775 "/var/cache/${PN}"
}

pkg_postinst() {
	# fowners in src_install doesn't work for owner/group portage:
	# merging changes this owner/group back to root.
	use prefix || chown portage:portage "${EROOT}var/cache/${PN}"
	local obs="${EROOT}var/cache/eix.previous"
	! test -f "${obs}" || ewarn "Found obsolete ${obs}, please remove it"
}





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

* [gentoo-commits] gentoo-x86 commit in app-portage/eix: eix-0.29.3.ebuild ChangeLog
@ 2013-08-30 14:10 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2013-08-30 14:10 UTC (permalink / raw
  To: gentoo-commits

jer         13/08/30 14:10:30

  Modified:             eix-0.29.3.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #482942).
  
  (Portage version: 2.2.1/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.2                  app-portage/eix/eix-0.29.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?r1=1.1&r2=1.2

Index: eix-0.29.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- eix-0.29.3.ebuild	7 Aug 2013 08:15:04 -0000	1.1
+++ eix-0.29.3.ebuild	30 Aug 2013 14:10:30 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.1 2013/08/07 08:15:04 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.2 2013/08/30 14:10:30 jer Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
 IUSE="clang debug +dep doc nls optimization security strong-optimization strong-security sqlite swap-remote tools zsh-completion"
 
 BOTHDEPEND="sqlite? ( >=dev-db/sqlite-3 )



1.457                app-portage/eix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.457&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.457&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.456&r2=1.457

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
retrieving revision 1.456
retrieving revision 1.457
diff -u -r1.456 -r1.457
--- ChangeLog	7 Aug 2013 13:15:10 -0000	1.456
+++ ChangeLog	30 Aug 2013 14:10:30 -0000	1.457
@@ -1,6 +1,9 @@
 # ChangeLog for app-portage/eix
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.456 2013/08/07 13:15:10 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.457 2013/08/30 14:10:30 jer Exp $
+
+  30 Aug 2013; Jeroen Roovers <jer@gentoo.org> eix-0.29.3.ebuild:
+  Stable for HPPA (bug #482942).
 
   07 Aug 2013; Michael Weber <xmw@gentoo.org> metadata.xml:
   Add myself as maintainer





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

* [gentoo-commits] gentoo-x86 commit in app-portage/eix: eix-0.29.3.ebuild ChangeLog
@ 2013-08-31 10:14 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-31 10:14 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/31 10:14:36

  Modified:             eix-0.29.3.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #482942
  
  (Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  app-portage/eix/eix-0.29.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?r1=1.2&r2=1.3

Index: eix-0.29.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- eix-0.29.3.ebuild	30 Aug 2013 14:10:30 -0000	1.2
+++ eix-0.29.3.ebuild	31 Aug 2013 10:14:36 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.2 2013/08/30 14:10:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.3 2013/08/31 10:14:36 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
 IUSE="clang debug +dep doc nls optimization security strong-optimization strong-security sqlite swap-remote tools zsh-completion"
 
 BOTHDEPEND="sqlite? ( >=dev-db/sqlite-3 )



1.458                app-portage/eix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.458&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.458&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.457&r2=1.458

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
retrieving revision 1.457
retrieving revision 1.458
diff -u -r1.457 -r1.458
--- ChangeLog	30 Aug 2013 14:10:30 -0000	1.457
+++ ChangeLog	31 Aug 2013 10:14:36 -0000	1.458
@@ -1,6 +1,9 @@
 # ChangeLog for app-portage/eix
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.457 2013/08/30 14:10:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.458 2013/08/31 10:14:36 ago Exp $
+
+  31 Aug 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
+  Stable for amd64, wrt bug #482942
 
   30 Aug 2013; Jeroen Roovers <jer@gentoo.org> eix-0.29.3.ebuild:
   Stable for HPPA (bug #482942).





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

* [gentoo-commits] gentoo-x86 commit in app-portage/eix: eix-0.29.3.ebuild ChangeLog
@ 2013-08-31 14:51 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-31 14:51 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/31 14:51:34

  Modified:             eix-0.29.3.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #482942
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="arm", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  app-portage/eix/eix-0.29.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?r1=1.3&r2=1.4

Index: eix-0.29.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- eix-0.29.3.ebuild	31 Aug 2013 10:14:36 -0000	1.3
+++ eix-0.29.3.ebuild	31 Aug 2013 14:51:34 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.3 2013/08/31 10:14:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.4 2013/08/31 14:51:34 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
 IUSE="clang debug +dep doc nls optimization security strong-optimization strong-security sqlite swap-remote tools zsh-completion"
 
 BOTHDEPEND="sqlite? ( >=dev-db/sqlite-3 )



1.459                app-portage/eix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.459&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.459&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.458&r2=1.459

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
retrieving revision 1.458
retrieving revision 1.459
diff -u -r1.458 -r1.459
--- ChangeLog	31 Aug 2013 10:14:36 -0000	1.458
+++ ChangeLog	31 Aug 2013 14:51:34 -0000	1.459
@@ -1,6 +1,9 @@
 # ChangeLog for app-portage/eix
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.458 2013/08/31 10:14:36 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.459 2013/08/31 14:51:34 ago Exp $
+
+  31 Aug 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
+  Stable for arm, wrt bug #482942
 
   31 Aug 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
   Stable for amd64, wrt bug #482942





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

* [gentoo-commits] gentoo-x86 commit in app-portage/eix: eix-0.29.3.ebuild ChangeLog
@ 2013-09-01 23:46 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeff Horelick (jdhore) @ 2013-09-01 23:46 UTC (permalink / raw
  To: gentoo-commits

jdhore      13/09/01 23:46:06

  Modified:             eix-0.29.3.ebuild ChangeLog
  Log:
  marked x86 per bug 482942
  
  (Portage version: 2.2.1/cvs/Linux i686, signed Manifest commit with key 23E9E900)

Revision  Changes    Path
1.5                  app-portage/eix/eix-0.29.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?r1=1.4&r2=1.5

Index: eix-0.29.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- eix-0.29.3.ebuild	31 Aug 2013 14:51:34 -0000	1.4
+++ eix-0.29.3.ebuild	1 Sep 2013 23:46:06 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.4 2013/08/31 14:51:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.5 2013/09/01 23:46:06 jdhore Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
 IUSE="clang debug +dep doc nls optimization security strong-optimization strong-security sqlite swap-remote tools zsh-completion"
 
 BOTHDEPEND="sqlite? ( >=dev-db/sqlite-3 )



1.460                app-portage/eix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.460&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.460&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.459&r2=1.460

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
retrieving revision 1.459
retrieving revision 1.460
diff -u -r1.459 -r1.460
--- ChangeLog	31 Aug 2013 14:51:34 -0000	1.459
+++ ChangeLog	1 Sep 2013 23:46:06 -0000	1.460
@@ -1,6 +1,9 @@
 # ChangeLog for app-portage/eix
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.459 2013/08/31 14:51:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.460 2013/09/01 23:46:06 jdhore Exp $
+
+  01 Sep 2013; Jeff Horelick <jdhore@gentoo.org> eix-0.29.3.ebuild:
+  marked x86 per bug 482942
 
   31 Aug 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
   Stable for arm, wrt bug #482942





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

* [gentoo-commits] gentoo-x86 commit in app-portage/eix: eix-0.29.3.ebuild ChangeLog
@ 2013-09-02 21:53 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-02 21:53 UTC (permalink / raw
  To: gentoo-commits

ago         13/09/02 21:53:04

  Modified:             eix-0.29.3.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #482942
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="alpha", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  app-portage/eix/eix-0.29.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?r1=1.5&r2=1.6

Index: eix-0.29.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- eix-0.29.3.ebuild	1 Sep 2013 23:46:06 -0000	1.5
+++ eix-0.29.3.ebuild	2 Sep 2013 21:53:04 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.5 2013/09/01 23:46:06 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.6 2013/09/02 21:53:04 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
 IUSE="clang debug +dep doc nls optimization security strong-optimization strong-security sqlite swap-remote tools zsh-completion"
 
 BOTHDEPEND="sqlite? ( >=dev-db/sqlite-3 )



1.461                app-portage/eix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.461&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.461&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.460&r2=1.461

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
retrieving revision 1.460
retrieving revision 1.461
diff -u -r1.460 -r1.461
--- ChangeLog	1 Sep 2013 23:46:06 -0000	1.460
+++ ChangeLog	2 Sep 2013 21:53:04 -0000	1.461
@@ -1,6 +1,9 @@
 # ChangeLog for app-portage/eix
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.460 2013/09/01 23:46:06 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.461 2013/09/02 21:53:04 ago Exp $
+
+  02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
+  Stable for alpha, wrt bug #482942
 
   01 Sep 2013; Jeff Horelick <jdhore@gentoo.org> eix-0.29.3.ebuild:
   marked x86 per bug 482942





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

* [gentoo-commits] gentoo-x86 commit in app-portage/eix: eix-0.29.3.ebuild ChangeLog
@ 2013-09-03 11:56 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-03 11:56 UTC (permalink / raw
  To: gentoo-commits

ago         13/09/03 11:56:17

  Modified:             eix-0.29.3.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #482942
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  app-portage/eix/eix-0.29.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?r1=1.6&r2=1.7

Index: eix-0.29.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- eix-0.29.3.ebuild	2 Sep 2013 21:53:04 -0000	1.6
+++ eix-0.29.3.ebuild	3 Sep 2013 11:56:17 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.6 2013/09/02 21:53:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.7 2013/09/03 11:56:17 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
 IUSE="clang debug +dep doc nls optimization security strong-optimization strong-security sqlite swap-remote tools zsh-completion"
 
 BOTHDEPEND="sqlite? ( >=dev-db/sqlite-3 )



1.462                app-portage/eix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.462&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.462&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.461&r2=1.462

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
retrieving revision 1.461
retrieving revision 1.462
diff -u -r1.461 -r1.462
--- ChangeLog	2 Sep 2013 21:53:04 -0000	1.461
+++ ChangeLog	3 Sep 2013 11:56:17 -0000	1.462
@@ -1,6 +1,9 @@
 # ChangeLog for app-portage/eix
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.461 2013/09/02 21:53:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.462 2013/09/03 11:56:17 ago Exp $
+
+  03 Sep 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
+  Stable for ia64, wrt bug #482942
 
   02 Sep 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
   Stable for alpha, wrt bug #482942





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

* [gentoo-commits] gentoo-x86 commit in app-portage/eix: eix-0.29.3.ebuild ChangeLog
@ 2013-09-04  9:01 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-04  9:01 UTC (permalink / raw
  To: gentoo-commits

ago         13/09/04 09:01:00

  Modified:             eix-0.29.3.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #482942
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  app-portage/eix/eix-0.29.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?r1=1.7&r2=1.8

Index: eix-0.29.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- eix-0.29.3.ebuild	3 Sep 2013 11:56:17 -0000	1.7
+++ eix-0.29.3.ebuild	4 Sep 2013 09:01:00 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.7 2013/09/03 11:56:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.8 2013/09/04 09:01:00 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
 IUSE="clang debug +dep doc nls optimization security strong-optimization strong-security sqlite swap-remote tools zsh-completion"
 
 BOTHDEPEND="sqlite? ( >=dev-db/sqlite-3 )



1.463                app-portage/eix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.463&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.463&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.462&r2=1.463

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
retrieving revision 1.462
retrieving revision 1.463
diff -u -r1.462 -r1.463
--- ChangeLog	3 Sep 2013 11:56:17 -0000	1.462
+++ ChangeLog	4 Sep 2013 09:01:00 -0000	1.463
@@ -1,6 +1,9 @@
 # ChangeLog for app-portage/eix
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.462 2013/09/03 11:56:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.463 2013/09/04 09:01:00 ago Exp $
+
+  04 Sep 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
+  Stable for ppc, wrt bug #482942
 
   03 Sep 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
   Stable for ia64, wrt bug #482942





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

* [gentoo-commits] gentoo-x86 commit in app-portage/eix: eix-0.29.3.ebuild ChangeLog
@ 2013-09-05 13:27 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-05 13:27 UTC (permalink / raw
  To: gentoo-commits

ago         13/09/05 13:27:28

  Modified:             eix-0.29.3.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #482942
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="ppc64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  app-portage/eix/eix-0.29.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?r1=1.8&r2=1.9

Index: eix-0.29.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- eix-0.29.3.ebuild	4 Sep 2013 09:01:00 -0000	1.8
+++ eix-0.29.3.ebuild	5 Sep 2013 13:27:27 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.8 2013/09/04 09:01:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.9 2013/09/05 13:27:27 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
 IUSE="clang debug +dep doc nls optimization security strong-optimization strong-security sqlite swap-remote tools zsh-completion"
 
 BOTHDEPEND="sqlite? ( >=dev-db/sqlite-3 )



1.464                app-portage/eix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.464&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.464&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.463&r2=1.464

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
retrieving revision 1.463
retrieving revision 1.464
diff -u -r1.463 -r1.464
--- ChangeLog	4 Sep 2013 09:01:00 -0000	1.463
+++ ChangeLog	5 Sep 2013 13:27:27 -0000	1.464
@@ -1,6 +1,9 @@
 # ChangeLog for app-portage/eix
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.463 2013/09/04 09:01:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.464 2013/09/05 13:27:27 ago Exp $
+
+  05 Sep 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
+  Stable for ppc64, wrt bug #482942
 
   04 Sep 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
   Stable for ppc, wrt bug #482942





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

* [gentoo-commits] gentoo-x86 commit in app-portage/eix: eix-0.29.3.ebuild ChangeLog
@ 2013-09-07 20:16 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-07 20:16 UTC (permalink / raw
  To: gentoo-commits

ago         13/09/07 20:16:44

  Modified:             eix-0.29.3.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #482942
  
  (Portage version: 2.1.12.2/cvs/Linux ppc64, RepoMan options: --include-arches="sparc", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 app-portage/eix/eix-0.29.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild?r1=1.9&r2=1.10

Index: eix-0.29.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- eix-0.29.3.ebuild	5 Sep 2013 13:27:27 -0000	1.9
+++ eix-0.29.3.ebuild	7 Sep 2013 20:16:44 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.9 2013/09/05 13:27:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/eix-0.29.3.ebuild,v 1.10 2013/09/07 20:16:44 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
 IUSE="clang debug +dep doc nls optimization security strong-optimization strong-security sqlite swap-remote tools zsh-completion"
 
 BOTHDEPEND="sqlite? ( >=dev-db/sqlite-3 )



1.465                app-portage/eix/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.465&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?rev=1.465&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/eix/ChangeLog?r1=1.464&r2=1.465

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v
retrieving revision 1.464
retrieving revision 1.465
diff -u -r1.464 -r1.465
--- ChangeLog	5 Sep 2013 13:27:27 -0000	1.464
+++ ChangeLog	7 Sep 2013 20:16:44 -0000	1.465
@@ -1,6 +1,9 @@
 # ChangeLog for app-portage/eix
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.464 2013/09/05 13:27:27 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-portage/eix/ChangeLog,v 1.465 2013/09/07 20:16:44 ago Exp $
+
+  07 Sep 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
+  Stable for sparc, wrt bug #482942
 
   05 Sep 2013; Agostino Sarubbo <ago@gentoo.org> eix-0.29.3.ebuild:
   Stable for ppc64, wrt bug #482942





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

end of thread, other threads:[~2013-09-07 20:16 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-04  9:01 [gentoo-commits] gentoo-x86 commit in app-portage/eix: eix-0.29.3.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-09-07 20:16 Agostino Sarubbo (ago)
2013-09-05 13:27 Agostino Sarubbo (ago)
2013-09-03 11:56 Agostino Sarubbo (ago)
2013-09-02 21:53 Agostino Sarubbo (ago)
2013-09-01 23:46 Jeff Horelick (jdhore)
2013-08-31 14:51 Agostino Sarubbo (ago)
2013-08-31 10:14 Agostino Sarubbo (ago)
2013-08-30 14:10 Jeroen Roovers (jer)
2013-08-07  8:15 Michael Weber (xmw)

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