public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-9.15.ebuild
@ 2012-01-21 18:16 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2012-01-21 18:16 UTC (permalink / raw
  To: gentoo-commits

jer         12/01/21 18:16:06

  Modified:             ChangeLog
  Added:                rxvt-unicode-9.15.ebuild
  Log:
  Version bump by Justin Lecher (bug #399611).
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.202                x11-terms/rxvt-unicode/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.202&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.202&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.201&r2=1.202

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
retrieving revision 1.201
retrieving revision 1.202
diff -u -r1.201 -r1.202
--- ChangeLog	15 Jan 2012 16:14:15 -0000	1.201
+++ ChangeLog	21 Jan 2012 18:16:05 -0000	1.202
@@ -1,6 +1,11 @@
 # ChangeLog for x11-terms/rxvt-unicode
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.201 2012/01/15 16:14:15 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.202 2012/01/21 18:16:05 jer Exp $
+
+*rxvt-unicode-9.15 (21 Jan 2012)
+
+  21 Jan 2012; Jeroen Roovers <jer@gentoo.org> +rxvt-unicode-9.15.ebuild:
+  Version bump by Justin Lecher (bug #399611).
 
   15 Jan 2012; Raúl Porcel <armin76@gentoo.org> rxvt-unicode-9.12-r1.ebuild:
   alpha/ia64/sparc stable wrt #395703



1.1                  x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.1&content-type=text/plain

Index: rxvt-unicode-9.15.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.1 2012/01/21 18:16:05 jer Exp $

EAPI="4"

inherit autotools

DESCRIPTION="rxvt clone with xft and unicode support"
HOMEPAGE="http://software.schmorp.de/pkg/rxvt-unicode.html"
SRC_URI="http://dist.schmorp.de/rxvt-unicode/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
IUSE="
	256-color alt-font-width afterimage blink buffer-on-clear +focused-urgency
	fading-colors +font-styles iso14755 +mousewheel +perl pixbuf secondary-wheel
	startup-notification truetype unicode3 +vanilla wcwidth
"

RDEPEND="
	>=sys-libs/ncurses-5.7-r6
	afterimage? ( || ( media-libs/libafterimage x11-wm/afterstep ) )
	kernel_Darwin? ( dev-perl/Mac-Pasteboard )
	media-libs/fontconfig
	perl? ( dev-lang/perl )
	pixbuf? ( x11-libs/gdk-pixbuf x11-libs/gtk+:2 )
	startup-notification? ( x11-libs/startup-notification )
	x11-libs/libX11
	x11-libs/libXft
	x11-libs/libXrender
"
DEPEND="
	${RDEPEND}
	dev-util/pkgconfig
	x11-proto/xproto
"

REQUIRED_USE="vanilla? ( !alt-font-width !buffer-on-clear focused-urgency !secondary-wheel !wcwidth )"

src_prepare() {
	# fix for prefix not installing properly
	epatch "${FILESDIR}"/${PN}-9.06-case-insensitive-fs.patch

	if ! use afterimage && ! use pixbuf; then
		einfo " + If you want transparency support, please enable either the *pixbuf*"
		einfo "   or the *afterimage* USE flag. Enabling both will default to pixbuf."
	fi

	if ! use vanilla; then
		ewarn " + You are going to include unsupported third-party bug fixes/features."

		use wcwidth && epatch doc/wcwidth.patch

		# bug #240165
		use focused-urgency || epatch "${FILESDIR}"/${PN}-9.06-no-urgency-if-focused.diff

		# bug #263638
		epatch "${FILESDIR}"/${PN}-9.06-popups-hangs.patch

		# bug #237271
		epatch "${FILESDIR}"/${PN}-9.05_no-MOTIF-WM-INFO.patch

		# support for wheel scrolling on secondary screens
		use secondary-wheel && epatch "${FILESDIR}"/${P}-secondary-wheel.patch

		# ctrl-l buffer fix
		use buffer-on-clear && epatch "${FILESDIR}"/${P}-clear.patch

		use alt-font-width && epatch "${FILESDIR}"/${PN}-9.06-font-width.patch
	fi

	# kill the rxvt-unicode terminfo file - #192083
	sed -i -e "/rxvt-unicode.terminfo/d" doc/Makefile.in || die "sed failed"

	eautoreconf
}

src_configure() {
	local myconf=''

	use iso14755 || myconf='--disable-iso14755'

	econf --enable-everything \
		$(use_enable 256-color) \
		$(use_enable afterimage) \
		$(use_enable blink text-blink) \
		$(use_enable fading-colors fading) \
		$(use_enable font-styles) \
		$(use_enable mousewheel) \
		$(use_enable perl) \
		$(use_enable pixbuf) \
		$(use_enable startup-notification) \
		$(use_enable truetype xft) \
		$(use_enable unicode3) \
		${myconf}
}

src_compile() {
	emake || die "emake failed"

	sed -i \
		-e 's/RXVT_BASENAME = "rxvt"/RXVT_BASENAME = "urxvt"/' \
		"${S}"/doc/rxvt-tabbed || die "tabs sed failed"
}

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

	dodoc README.FAQ Changes
	cd "${S}"/doc
	dodoc README* changes.txt etc/* rxvt-tabbed
}

pkg_postinst() {
	if use buffer-on-clear; then
		ewarn "You have enabled the buffer-on-clear USE flag."
		ewarn "Please note that, although this works well for most prompts,"
		ewarn "there have been cases with fancy prompts, like bug #397829,"
		ewarn "where it caused issues. Proceed with caution."
		ewarn "  (keep this terminal open until you make sure it works)"
	fi
	if use secondary-wheel; then
		elog "You have enabled the secondary-wheel USE flag."
		elog "This allows you to scroll in secondary screens"
		elog "(like mutt's message list/view) using the mouse wheel."
		elog
		elog "To actually enable the feature you have to add"
		elog "  URxvt*secondaryWheel: true"
		elog "in your ~/.Xdefaults file"
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-9.15.ebuild
@ 2012-01-23 10:43 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2012-01-23 10:43 UTC (permalink / raw
  To: gentoo-commits

jer         12/01/23 10:43:49

  Modified:             ChangeLog rxvt-unicode-9.15.ebuild
  Log:
  Fix patch name by Markus Peloquin (bug #399659).
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.203                x11-terms/rxvt-unicode/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.203&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.203&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.202&r2=1.203

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
retrieving revision 1.202
retrieving revision 1.203
diff -u -r1.202 -r1.203
--- ChangeLog	21 Jan 2012 18:16:05 -0000	1.202
+++ ChangeLog	23 Jan 2012 10:43:49 -0000	1.203
@@ -1,6 +1,9 @@
 # ChangeLog for x11-terms/rxvt-unicode
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.202 2012/01/21 18:16:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.203 2012/01/23 10:43:49 jer Exp $
+
+  23 Jan 2012; Jeroen Roovers <jer@gentoo.org> rxvt-unicode-9.15.ebuild:
+  Fix patch name by Markus Peloquin (bug #399659).
 
 *rxvt-unicode-9.15 (21 Jan 2012)
 



1.2                  x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?r1=1.1&r2=1.2

Index: rxvt-unicode-9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rxvt-unicode-9.15.ebuild	21 Jan 2012 18:16:05 -0000	1.1
+++ rxvt-unicode-9.15.ebuild	23 Jan 2012 10:43:49 -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/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.1 2012/01/21 18:16:05 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.2 2012/01/23 10:43:49 jer Exp $
 
 EAPI="4"
 
@@ -63,7 +63,7 @@
 		epatch "${FILESDIR}"/${PN}-9.05_no-MOTIF-WM-INFO.patch
 
 		# support for wheel scrolling on secondary screens
-		use secondary-wheel && epatch "${FILESDIR}"/${P}-secondary-wheel.patch
+		use secondary-wheel && epatch "${FILESDIR}"/${PN}-9.14-secondary-wheel.patch
 
 		# ctrl-l buffer fix
 		use buffer-on-clear && epatch "${FILESDIR}"/${P}-clear.patch






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

* [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-9.15.ebuild
@ 2012-01-23 23:39 Alex Alexander (wired)
  0 siblings, 0 replies; 11+ messages in thread
From: Alex Alexander (wired) @ 2012-01-23 23:39 UTC (permalink / raw
  To: gentoo-commits

wired       12/01/23 23:39:51

  Modified:             ChangeLog rxvt-unicode-9.15.ebuild
  Log:
  fixed buffer-on-clear patch not applying in new version
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.204                x11-terms/rxvt-unicode/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.204&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.204&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.203&r2=1.204

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
retrieving revision 1.203
retrieving revision 1.204
diff -u -r1.203 -r1.204
--- ChangeLog	23 Jan 2012 10:43:49 -0000	1.203
+++ ChangeLog	23 Jan 2012 23:39:51 -0000	1.204
@@ -1,6 +1,9 @@
 # ChangeLog for x11-terms/rxvt-unicode
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.203 2012/01/23 10:43:49 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.204 2012/01/23 23:39:51 wired Exp $
+
+  23 Jan 2012; Alex Alexander <wired@gentoo.org> rxvt-unicode-9.15.ebuild:
+  fixed buffer-on-clear patch not applying in new version
 
   23 Jan 2012; Jeroen Roovers <jer@gentoo.org> rxvt-unicode-9.15.ebuild:
   Fix patch name by Markus Peloquin (bug #399659).



1.3                  x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?r1=1.2&r2=1.3

Index: rxvt-unicode-9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rxvt-unicode-9.15.ebuild	23 Jan 2012 10:43:49 -0000	1.2
+++ rxvt-unicode-9.15.ebuild	23 Jan 2012 23:39:51 -0000	1.3
@@ -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/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.2 2012/01/23 10:43:49 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.3 2012/01/23 23:39:51 wired Exp $
 
 EAPI="4"
 
@@ -66,7 +66,7 @@
 		use secondary-wheel && epatch "${FILESDIR}"/${PN}-9.14-secondary-wheel.patch
 
 		# ctrl-l buffer fix
-		use buffer-on-clear && epatch "${FILESDIR}"/${P}-clear.patch
+		use buffer-on-clear && epatch "${FILESDIR}"/${PN}-9.14-clear.patch
 
 		use alt-font-width && epatch "${FILESDIR}"/${PN}-9.06-font-width.patch
 	fi






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

* [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-9.15.ebuild
@ 2012-01-30 22:51 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2012-01-30 22:51 UTC (permalink / raw
  To: gentoo-commits

jer         12/01/30 22:51:31

  Modified:             ChangeLog rxvt-unicode-9.15.ebuild
  Log:
  Install a .desktop file by Justin Lecher (bug #401591).
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.206                x11-terms/rxvt-unicode/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.206&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.206&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.205&r2=1.206

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
retrieving revision 1.205
retrieving revision 1.206
diff -u -r1.205 -r1.206
--- ChangeLog	30 Jan 2012 22:28:23 -0000	1.205
+++ ChangeLog	30 Jan 2012 22:51:31 -0000	1.206
@@ -1,6 +1,9 @@
 # ChangeLog for x11-terms/rxvt-unicode
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.205 2012/01/30 22:28:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.206 2012/01/30 22:51:31 jer Exp $
+
+  30 Jan 2012; Jeroen Roovers <jer@gentoo.org> rxvt-unicode-9.15.ebuild:
+  Install a .desktop file by Justin Lecher (bug #401591).
 
   30 Jan 2012; Jeroen Roovers <jer@gentoo.org> rxvt-unicode-9.14.ebuild,
   rxvt-unicode-9.15.ebuild:



1.5                  x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?r1=1.4&r2=1.5

Index: rxvt-unicode-9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- rxvt-unicode-9.15.ebuild	30 Jan 2012 22:28:23 -0000	1.4
+++ rxvt-unicode-9.15.ebuild	30 Jan 2012 22:51:31 -0000	1.5
@@ -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/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.4 2012/01/30 22:28:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.5 2012/01/30 22:51:31 jer Exp $
 
 EAPI="4"
 
@@ -111,6 +111,8 @@
 	dodoc README.FAQ Changes
 	cd "${S}"/doc
 	dodoc README* changes.txt etc/* rxvt-tabbed
+
+	make_desktop_entry urxvt rxvt-unicode
 }
 
 pkg_postinst() {






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

* [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-9.15.ebuild
@ 2012-02-06 15:25 Justin Lecher (jlec)
  0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher (jlec) @ 2012-02-06 15:25 UTC (permalink / raw
  To: gentoo-commits

jlec        12/02/06 15:25:22

  Modified:             ChangeLog rxvt-unicode-9.15.ebuild
  Log:
  Give the launcher the standard terminal icon
  
  (Portage version: 2.2.0_alpha85/cvs/Linux x86_64)

Revision  Changes    Path
1.208                x11-terms/rxvt-unicode/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.208&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.208&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.207&r2=1.208

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
retrieving revision 1.207
retrieving revision 1.208
diff -u -r1.207 -r1.208
--- ChangeLog	30 Jan 2012 22:56:30 -0000	1.207
+++ ChangeLog	6 Feb 2012 15:25:22 -0000	1.208
@@ -1,6 +1,9 @@
 # ChangeLog for x11-terms/rxvt-unicode
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.207 2012/01/30 22:56:30 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.208 2012/02/06 15:25:22 jlec Exp $
+
+  06 Feb 2012; Justin Lecher <jlec@gentoo.org> rxvt-unicode-9.15.ebuild:
+  Give the launcher the standard terminal icon
 
   30 Jan 2012; Jeroen Roovers <jer@gentoo.org> rxvt-unicode-9.10.ebuild,
   -rxvt-unicode-9.11.ebuild, -rxvt-unicode-9.12.ebuild:



1.6                  x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?r1=1.5&r2=1.6

Index: rxvt-unicode-9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- rxvt-unicode-9.15.ebuild	30 Jan 2012 22:51:31 -0000	1.5
+++ rxvt-unicode-9.15.ebuild	6 Feb 2012 15:25:22 -0000	1.6
@@ -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/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.5 2012/01/30 22:51:31 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.6 2012/02/06 15:25:22 jlec Exp $
 
 EAPI="4"
 
@@ -112,7 +112,7 @@
 	cd "${S}"/doc
 	dodoc README* changes.txt etc/* rxvt-tabbed
 
-	make_desktop_entry urxvt rxvt-unicode
+	make_desktop_entry urxvt rxvt-unicode utilities-terminal TerminalEmulator
 }
 
 pkg_postinst() {






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

* [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-9.15.ebuild
@ 2012-02-20 20:57 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2012-02-20 20:57 UTC (permalink / raw
  To: gentoo-commits

jer         12/02/20 20:57:44

  Modified:             ChangeLog rxvt-unicode-9.15.ebuild
  Log:
  Replace USE=truetype with USE=xft and make x11-libs/libXft dependency optional upon USE=xft by Dmitry Dzhus (bug #363757).
  
  (Portage version: 2.2.0_alpha88/cvs/Linux x86_64)

Revision  Changes    Path
1.210                x11-terms/rxvt-unicode/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.210&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.210&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.209&r2=1.210

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
retrieving revision 1.209
retrieving revision 1.210
diff -u -r1.209 -r1.210
--- ChangeLog	11 Feb 2012 15:56:10 -0000	1.209
+++ ChangeLog	20 Feb 2012 20:57:43 -0000	1.210
@@ -1,6 +1,10 @@
 # ChangeLog for x11-terms/rxvt-unicode
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.209 2012/02/11 15:56:10 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.210 2012/02/20 20:57:43 jer Exp $
+
+  20 Feb 2012; Jeroen Roovers <jer@gentoo.org> rxvt-unicode-9.15.ebuild:
+  Replace USE=truetype with USE=xft and make x11-libs/libXft dependency
+  optional upon USE=xft by Dmitry Dzhus (bug #363757).
 
   11 Feb 2012; nixnut <nixnut@gentoo.org> rxvt-unicode-9.12-r1.ebuild:
   ppc stable #395703



1.7                  x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?r1=1.6&r2=1.7

Index: rxvt-unicode-9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rxvt-unicode-9.15.ebuild	6 Feb 2012 15:25:22 -0000	1.6
+++ rxvt-unicode-9.15.ebuild	20 Feb 2012 20:57:43 -0000	1.7
@@ -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/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.6 2012/02/06 15:25:22 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.7 2012/02/20 20:57:43 jer Exp $
 
 EAPI="4"
 
@@ -16,7 +16,7 @@
 IUSE="
 	256-color alt-font-width afterimage blink buffer-on-clear +focused-urgency
 	fading-colors +font-styles iso14755 +mousewheel +perl pixbuf secondary-wheel
-	startup-notification truetype unicode3 +vanilla wcwidth
+	startup-notification xft unicode3 +vanilla wcwidth
 "
 
 RDEPEND="
@@ -28,8 +28,8 @@
 	pixbuf? ( x11-libs/gdk-pixbuf x11-libs/gtk+:2 )
 	startup-notification? ( x11-libs/startup-notification )
 	x11-libs/libX11
-	x11-libs/libXft
 	x11-libs/libXrender
+	xft? ( x11-libs/libXft )
 "
 DEPEND="
 	${RDEPEND}
@@ -92,7 +92,7 @@
 		$(use_enable perl) \
 		$(use_enable pixbuf) \
 		$(use_enable startup-notification) \
-		$(use_enable truetype xft) \
+		$(use_enable xft) \
 		$(use_enable unicode3) \
 		${myconf}
 }






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

* [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-9.15.ebuild
@ 2012-02-25 17:13 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 11+ messages in thread
From: Samuli Suominen (ssuominen) @ 2012-02-25 17:13 UTC (permalink / raw
  To: gentoo-commits

ssuominen    12/02/25 17:13:09

  Modified:             ChangeLog rxvt-unicode-9.15.ebuild
  Log:
  ppc/ppc64 stable wrt #405303
  
  (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)

Revision  Changes    Path
1.212                x11-terms/rxvt-unicode/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.212&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.212&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.211&r2=1.212

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
retrieving revision 1.211
retrieving revision 1.212
diff -u -r1.211 -r1.212
--- ChangeLog	25 Feb 2012 17:11:06 -0000	1.211
+++ ChangeLog	25 Feb 2012 17:13:09 -0000	1.212
@@ -1,6 +1,9 @@
 # ChangeLog for x11-terms/rxvt-unicode
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.211 2012/02/25 17:11:06 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.212 2012/02/25 17:13:09 ssuominen Exp $
+
+  25 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> rxvt-unicode-9.15.ebuild:
+  ppc/ppc64 stable wrt #405303
 
   25 Feb 2012; Jeroen Roovers <jer@gentoo.org> rxvt-unicode-9.10.ebuild:
   Drop PPC.



1.8                  x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?r1=1.7&r2=1.8

Index: rxvt-unicode-9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- rxvt-unicode-9.15.ebuild	20 Feb 2012 20:57:43 -0000	1.7
+++ rxvt-unicode-9.15.ebuild	25 Feb 2012 17:13:09 -0000	1.8
@@ -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/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.7 2012/02/20 20:57:43 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.8 2012/02/25 17:13:09 ssuominen Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="
 	256-color alt-font-width afterimage blink buffer-on-clear +focused-urgency
 	fading-colors +font-styles iso14755 +mousewheel +perl pixbuf secondary-wheel






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

* [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-9.15.ebuild
@ 2012-02-25 21:50 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 11+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-02-25 21:50 UTC (permalink / raw
  To: gentoo-commits

ago         12/02/25 21:50:58

  Modified:             ChangeLog rxvt-unicode-9.15.ebuild
  Log:
  Stable for amd64, wrt bug #405303
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.213                x11-terms/rxvt-unicode/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.213&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.213&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.212&r2=1.213

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
retrieving revision 1.212
retrieving revision 1.213
diff -u -r1.212 -r1.213
--- ChangeLog	25 Feb 2012 17:13:09 -0000	1.212
+++ ChangeLog	25 Feb 2012 21:50:58 -0000	1.213
@@ -1,6 +1,9 @@
 # ChangeLog for x11-terms/rxvt-unicode
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.212 2012/02/25 17:13:09 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.213 2012/02/25 21:50:58 ago Exp $
+
+  25 Feb 2012; Agostino Sarubbo <ago@gentoo.org> rxvt-unicode-9.15.ebuild:
+  Stable for amd64, wrt bug #405303
 
   25 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> rxvt-unicode-9.15.ebuild:
   ppc/ppc64 stable wrt #405303



1.9                  x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?r1=1.8&r2=1.9

Index: rxvt-unicode-9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- rxvt-unicode-9.15.ebuild	25 Feb 2012 17:13:09 -0000	1.8
+++ rxvt-unicode-9.15.ebuild	25 Feb 2012 21:50:58 -0000	1.9
@@ -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/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.8 2012/02/25 17:13:09 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.9 2012/02/25 21:50:58 ago Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="
 	256-color alt-font-width afterimage blink buffer-on-clear +focused-urgency
 	fading-colors +font-styles iso14755 +mousewheel +perl pixbuf secondary-wheel






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

* [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-9.15.ebuild
@ 2012-02-26 20:06 Jeff Horelick (jdhore)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeff Horelick (jdhore) @ 2012-02-26 20:06 UTC (permalink / raw
  To: gentoo-commits

jdhore      12/02/26 20:06:44

  Modified:             ChangeLog rxvt-unicode-9.15.ebuild
  Log:
  marked x86 per bug 405303
  
  (Portage version: 2.2.0_alpha89/cvs/Linux i686)

Revision  Changes    Path
1.214                x11-terms/rxvt-unicode/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.214&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.214&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.213&r2=1.214

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
retrieving revision 1.213
retrieving revision 1.214
diff -u -r1.213 -r1.214
--- ChangeLog	25 Feb 2012 21:50:58 -0000	1.213
+++ ChangeLog	26 Feb 2012 20:06:43 -0000	1.214
@@ -1,6 +1,9 @@
 # ChangeLog for x11-terms/rxvt-unicode
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.213 2012/02/25 21:50:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.214 2012/02/26 20:06:43 jdhore Exp $
+
+  26 Feb 2012; Jeff Horelick <jdhore@gentoo.org> rxvt-unicode-9.15.ebuild:
+  marked x86 per bug 405303
 
   25 Feb 2012; Agostino Sarubbo <ago@gentoo.org> rxvt-unicode-9.15.ebuild:
   Stable for amd64, wrt bug #405303



1.10                 x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?r1=1.9&r2=1.10

Index: rxvt-unicode-9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- rxvt-unicode-9.15.ebuild	25 Feb 2012 21:50:58 -0000	1.9
+++ rxvt-unicode-9.15.ebuild	26 Feb 2012 20:06:43 -0000	1.10
@@ -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/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.9 2012/02/25 21:50:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.10 2012/02/26 20:06:43 jdhore Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="
 	256-color alt-font-width afterimage blink buffer-on-clear +focused-urgency
 	fading-colors +font-styles iso14755 +mousewheel +perl pixbuf secondary-wheel






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

* [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-9.15.ebuild
@ 2012-02-27  4:40 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2012-02-27  4:40 UTC (permalink / raw
  To: gentoo-commits

jer         12/02/27 04:40:39

  Modified:             ChangeLog rxvt-unicode-9.15.ebuild
  Log:
  Stable for HPPA (bug #405303).
  
  (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)

Revision  Changes    Path
1.215                x11-terms/rxvt-unicode/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.215&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.215&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.214&r2=1.215

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
retrieving revision 1.214
retrieving revision 1.215
diff -u -r1.214 -r1.215
--- ChangeLog	26 Feb 2012 20:06:43 -0000	1.214
+++ ChangeLog	27 Feb 2012 04:40:39 -0000	1.215
@@ -1,6 +1,9 @@
 # ChangeLog for x11-terms/rxvt-unicode
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.214 2012/02/26 20:06:43 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.215 2012/02/27 04:40:39 jer Exp $
+
+  27 Feb 2012; Jeroen Roovers <jer@gentoo.org> rxvt-unicode-9.15.ebuild:
+  Stable for HPPA (bug #405303).
 
   26 Feb 2012; Jeff Horelick <jdhore@gentoo.org> rxvt-unicode-9.15.ebuild:
   marked x86 per bug 405303



1.11                 x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?r1=1.10&r2=1.11

Index: rxvt-unicode-9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- rxvt-unicode-9.15.ebuild	26 Feb 2012 20:06:43 -0000	1.10
+++ rxvt-unicode-9.15.ebuild	27 Feb 2012 04:40:39 -0000	1.11
@@ -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/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.10 2012/02/26 20:06:43 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.11 2012/02/27 04:40:39 jer Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="
 	256-color alt-font-width afterimage blink buffer-on-clear +focused-urgency
 	fading-colors +font-styles iso14755 +mousewheel +perl pixbuf secondary-wheel






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

* [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-9.15.ebuild
@ 2012-03-31 17:29 Raul Porcel (armin76)
  0 siblings, 0 replies; 11+ messages in thread
From: Raul Porcel (armin76) @ 2012-03-31 17:29 UTC (permalink / raw
  To: gentoo-commits

armin76     12/03/31 17:29:55

  Modified:             ChangeLog rxvt-unicode-9.15.ebuild
  Log:
  alpha/ia64/sparc stable wrt #405303
  
  (Portage version: 2.1.10.49/cvs/Linux ia64)

Revision  Changes    Path
1.217                x11-terms/rxvt-unicode/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.217&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.217&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.216&r2=1.217

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
retrieving revision 1.216
retrieving revision 1.217
diff -u -r1.216 -r1.217
--- ChangeLog	6 Mar 2012 22:17:37 -0000	1.216
+++ ChangeLog	31 Mar 2012 17:29:55 -0000	1.217
@@ -1,6 +1,9 @@
 # ChangeLog for x11-terms/rxvt-unicode
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.216 2012/03/06 22:17:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.217 2012/03/31 17:29:55 armin76 Exp $
+
+  31 Mar 2012; Raúl Porcel <armin76@gentoo.org> rxvt-unicode-9.15.ebuild:
+  alpha/ia64/sparc stable wrt #405303
 
   06 Mar 2012; Jeroen Roovers <jer@gentoo.org> -rxvt-unicode-9.10.ebuild:
   Old.



1.12                 x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild?r1=1.11&r2=1.12

Index: rxvt-unicode-9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- rxvt-unicode-9.15.ebuild	27 Feb 2012 04:40:39 -0000	1.11
+++ rxvt-unicode-9.15.ebuild	31 Mar 2012 17:29:55 -0000	1.12
@@ -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/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.11 2012/02/27 04:40:39 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.15.ebuild,v 1.12 2012/03/31 17:29:55 armin76 Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
 IUSE="
 	256-color alt-font-width afterimage blink buffer-on-clear +focused-urgency
 	fading-colors +font-styles iso14755 +mousewheel +perl pixbuf secondary-wheel






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

end of thread, other threads:[~2012-03-31 17:30 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-27  4:40 [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-9.15.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2012-03-31 17:29 Raul Porcel (armin76)
2012-02-26 20:06 Jeff Horelick (jdhore)
2012-02-25 21:50 Agostino Sarubbo (ago)
2012-02-25 17:13 Samuli Suominen (ssuominen)
2012-02-20 20:57 Jeroen Roovers (jer)
2012-02-06 15:25 Justin Lecher (jlec)
2012-01-30 22:51 Jeroen Roovers (jer)
2012-01-23 23:39 Alex Alexander (wired)
2012-01-23 10:43 Jeroen Roovers (jer)
2012-01-21 18:16 Jeroen Roovers (jer)

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