public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-irc/hexchat: hexchat-2.9.5-r1.ebuild ChangeLog
@ 2013-06-07 14:18 Julian Ospald (hasufell)
  0 siblings, 0 replies; 9+ messages in thread
From: Julian Ospald (hasufell) @ 2013-06-07 14:18 UTC (permalink / raw
  To: gentoo-commits

hasufell    13/06/07 14:18:24

  Modified:             ChangeLog
  Added:                hexchat-2.9.5-r1.ebuild
  Log:
  fix bug #472578
  
  (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)

Revision  Changes    Path
1.52                 net-irc/hexchat/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?r1=1.51&r2=1.52

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog	29 May 2013 13:33:54 -0000	1.51
+++ ChangeLog	7 Jun 2013 14:18:24 -0000	1.52
@@ -1,6 +1,12 @@
 # ChangeLog for net-irc/hexchat
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.51 2013/05/29 13:33:54 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.52 2013/06/07 14:18:24 hasufell Exp $
+
+*hexchat-2.9.5-r1 (07 Jun 2013)
+
+  07 Jun 2013; Julian Ospald <hasufell@gentoo.org> +hexchat-2.9.5-r1.ebuild,
+  +files/hexchat-2.9.5-fix_leftclick_opens_menu.patch:
+  fix bug #472578
 
   29 May 2013; Julian Ospald <hasufell@gentoo.org> hexchat-2.9.4-r2.ebuild,
   hexchat-2.9.5.ebuild:



1.1                  net-irc/hexchat/hexchat-2.9.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.1&content-type=text/plain

Index: hexchat-2.9.5-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.1 2013/06/07 14:18:24 hasufell Exp $

EAPI=5

PYTHON_COMPAT=( python2_5 python2_6 python2_7 )
inherit autotools eutils gnome2-utils mono multilib python-single-r1

DESCRIPTION="Graphical IRC client based on XChat"
SRC_URI="mirror://github/${PN}/${PN}/${P}.tar.xz"
HOMEPAGE="http://www.hexchat.org/"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
IUSE="dbus fastscroll +gtk ipv6 libnotify libproxy nls ntlm perl +plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo python spell ssl theme-manager"
REQUIRED_USE="plugin-checksum? ( plugins )
	plugin-doat? ( plugins )
	plugin-fishlim? ( plugins )
	plugin-sysinfo? ( plugins )
	python? ( ${PYTHON_REQUIRED_USE} )"

RDEPEND="dev-libs/glib:2
	dbus? ( >=dev-libs/dbus-glib-0.98 )
	fastscroll? ( x11-libs/libXft )
	gtk? ( x11-libs/gtk+:2 )
	libproxy? ( net-libs/libproxy )
	libnotify? ( x11-libs/libnotify )
	nls? ( virtual/libintl )
	ntlm? ( net-libs/libntlm )
	perl? ( >=dev-lang/perl-5.8.0 )
	plugin-sysinfo? ( sys-apps/pciutils )
	python? ( ${PYTHON_DEPS} )
	spell? (
		app-text/enchant
		dev-libs/libxml2
	)
	ssl? ( >=dev-libs/openssl-0.9.8u )
	theme-manager? ( dev-lang/mono )"
DEPEND="${RDEPEND}
	virtual/pkgconfig
	nls? ( sys-devel/gettext )
	theme-manager? ( dev-util/monodevelop )"

DOCS=""

pkg_setup() {
	use python && python-single-r1_pkg_setup
}

src_prepare() {
	epatch \
		"${FILESDIR}"/${PN}-2.9.1-input-box.patch \
		"${FILESDIR}"/${PN}-2.9.5-cflags.patch \
		"${FILESDIR}"/${PN}-2.9.5-gettextize.patch \
		"${FILESDIR}"/${PN}-2.9.5-gobject.patch \
		"${FILESDIR}"/${PN}-2.9.5-fix_leftclick_opens_menu.patch

	cp $(type -p gettextize) "${T}"/ || die
	sed -i -e 's:read dummy < /dev/tty::' "${T}/gettextize" || die
	einfo "Running gettextize -f --no-changelog..."
	"${T}"/gettextize -f --no-changelog > /dev/null || die "gettexize failed"
	eautoreconf
}

src_configure() {
	econf \
		$(use_enable nls) \
		$(use_enable libproxy socks) \
		$(use_enable ipv6) \
		$(use_enable fastscroll xft) \
		$(use_enable ssl openssl) \
		$(use_enable gtk gtkfe) \
		$(use_enable !gtk textfe) \
		$(usex python "--enable-python=${EPYTHON}" "--disable-python") \
		$(use_enable perl) \
		$(use_enable plugins plugin) \
		$(use_enable plugin-checksum checksum) \
		$(use_enable plugin-doat doat) \
		$(use_enable plugin-fishlim fishlim) \
		$(use_enable plugin-sysinfo sysinfo) \
		$(use_enable dbus) \
		$(use_enable libnotify) \
		--enable-shm \
		$(use_enable spell spell static) \
		$(use_enable ntlm) \
		$(use_enable libproxy)
}

src_compile() {
	default
	if use theme-manager ; then
		export XDG_CACHE_HOME="${T}/.cache"
		cd src/htm || die
		mdtool --verbose build htm-mono.csproj || die
	fi
}

src_install() {
	emake DESTDIR="${D}" UPDATE_ICON_CACHE=true install
	dodoc share/doc/{readme,hacking}.md
	use plugin-fishlim && dodoc share/doc/fishlim.md
	if use theme-manager ; then
		dobin src/htm/thememan.exe
		make_wrapper thememan "mono /usr/bin/thememan.exe"
	fi
	prune_libtool_files --all
}

pkg_preinst() {
	if use gtk ; then
		gnome2_icon_savelist
		gnome2_gconf_savelist
	fi
}

pkg_postinst() {
	if use !gtk ; then
		einfo
		elog "You have disabled the gtk USE flag. This means you don't have"
		elog "the GTK-GUI for HexChat but only a text interface called \"hexchat-text\"."
	else
		gnome2_icon_cache_update
		gnome2_gconf_install
	fi

	if use theme-manager ; then
		einfo
		elog "Themes are available at:"
		elog "  http://hexchat.org/themes.html"
	fi

	ewarn
	ewarn "If you're upgrading from hexchat <=2.9.3 remember to rename"
	ewarn "the xchat.conf file found in ~/.config/hexchat/ to hexchat.conf"
	ewarn
}

pkg_postrm() {
	if use gtk ; then
		gnome2_icon_cache_update
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in net-irc/hexchat: hexchat-2.9.5-r1.ebuild ChangeLog
@ 2013-06-24  9:09 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 9+ messages in thread
From: Sergey Popov (pinkbyte) @ 2013-06-24  9:09 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    13/06/24 09:09:14

  Modified:             hexchat-2.9.5-r1.ebuild ChangeLog
  Log:
  Stable on amd64 and x86, wrt bug #474434
  
  (Portage version: 2.2.0_alpha184/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)

Revision  Changes    Path
1.2                  net-irc/hexchat/hexchat-2.9.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?r1=1.1&r2=1.2

Index: hexchat-2.9.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hexchat-2.9.5-r1.ebuild	7 Jun 2013 14:18:24 -0000	1.1
+++ hexchat-2.9.5-r1.ebuild	24 Jun 2013 09:09:14 -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/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.1 2013/06/07 14:18:24 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.2 2013/06/24 09:09:14 pinkbyte Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux"
 IUSE="dbus fastscroll +gtk ipv6 libnotify libproxy nls ntlm perl +plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo python spell ssl theme-manager"
 REQUIRED_USE="plugin-checksum? ( plugins )
 	plugin-doat? ( plugins )



1.54                 net-irc/hexchat/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	13 Jun 2013 11:46:57 -0000	1.53
+++ ChangeLog	24 Jun 2013 09:09:14 -0000	1.54
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/hexchat
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.53 2013/06/13 11:46:57 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.54 2013/06/24 09:09:14 pinkbyte Exp $
+
+  24 Jun 2013; Sergey Popov <pinkbyte@gentoo.org> hexchat-2.9.5-r1.ebuild:
+  Stable on amd64 and x86, wrt bug #474434
 
 *hexchat-2.9.5_p20130525 (13 Jun 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in net-irc/hexchat: hexchat-2.9.5-r1.ebuild ChangeLog
@ 2013-06-24 10:52 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 9+ messages in thread
From: Tobias Klausmann (klausman) @ 2013-06-24 10:52 UTC (permalink / raw
  To: gentoo-commits

klausman    13/06/24 10:52:20

  Modified:             hexchat-2.9.5-r1.ebuild ChangeLog
  Log:
  Stable on alpha, bug #474434
  
  (Portage version: 2.1.12.9/cvs/Linux x86_64, signed Manifest commit with key CE5D54E8)

Revision  Changes    Path
1.3                  net-irc/hexchat/hexchat-2.9.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?r1=1.2&r2=1.3

Index: hexchat-2.9.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- hexchat-2.9.5-r1.ebuild	24 Jun 2013 09:09:14 -0000	1.2
+++ hexchat-2.9.5-r1.ebuild	24 Jun 2013 10:52:20 -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/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.2 2013/06/24 09:09:14 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.3 2013/06/24 10:52:20 klausman Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux"
 IUSE="dbus fastscroll +gtk ipv6 libnotify libproxy nls ntlm perl +plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo python spell ssl theme-manager"
 REQUIRED_USE="plugin-checksum? ( plugins )
 	plugin-doat? ( plugins )



1.55                 net-irc/hexchat/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?r1=1.54&r2=1.55

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog	24 Jun 2013 09:09:14 -0000	1.54
+++ ChangeLog	24 Jun 2013 10:52:20 -0000	1.55
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/hexchat
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.54 2013/06/24 09:09:14 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.55 2013/06/24 10:52:20 klausman Exp $
+
+  24 Jun 2013; Tobias Klausmann <klausman@gentoo.org> hexchat-2.9.5-r1.ebuild:
+  Stable on alpha, bug #474434
 
   24 Jun 2013; Sergey Popov <pinkbyte@gentoo.org> hexchat-2.9.5-r1.ebuild:
   Stable on amd64 and x86, wrt bug #474434





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

* [gentoo-commits] gentoo-x86 commit in net-irc/hexchat: hexchat-2.9.5-r1.ebuild ChangeLog
@ 2013-06-26 10:54 Sergey Popov (pinkbyte)
  0 siblings, 0 replies; 9+ messages in thread
From: Sergey Popov (pinkbyte) @ 2013-06-26 10:54 UTC (permalink / raw
  To: gentoo-commits

pinkbyte    13/06/26 10:54:25

  Modified:             hexchat-2.9.5-r1.ebuild ChangeLog
  Log:
  Stable on arm, wrt bug #474434
  
  (Portage version: 2.2.0_alpha184/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)

Revision  Changes    Path
1.5                  net-irc/hexchat/hexchat-2.9.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?r1=1.4&r2=1.5

Index: hexchat-2.9.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- hexchat-2.9.5-r1.ebuild	24 Jun 2013 19:48:37 -0000	1.4
+++ hexchat-2.9.5-r1.ebuild	26 Jun 2013 10:54:25 -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/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.4 2013/06/24 19:48:37 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.5 2013/06/26 10:54:25 pinkbyte Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux"
 IUSE="dbus fastscroll +gtk ipv6 libnotify libproxy nls ntlm perl +plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo python spell ssl theme-manager"
 REQUIRED_USE="plugin-checksum? ( plugins )
 	plugin-doat? ( plugins )



1.57                 net-irc/hexchat/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.57&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.57&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?r1=1.56&r2=1.57

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	24 Jun 2013 19:48:37 -0000	1.56
+++ ChangeLog	26 Jun 2013 10:54:25 -0000	1.57
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/hexchat
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.56 2013/06/24 19:48:37 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.57 2013/06/26 10:54:25 pinkbyte Exp $
+
+  26 Jun 2013; Sergey Popov <pinkbyte@gentoo.org> hexchat-2.9.5-r1.ebuild:
+  Stable on arm, wrt bug #474434
 
   24 Jun 2013; Julian Ospald <hasufell@gentoo.org> hexchat-2.9.5.ebuild,
   hexchat-2.9.5-r1.ebuild, hexchat-2.9.5_p20130525.ebuild,





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

* [gentoo-commits] gentoo-x86 commit in net-irc/hexchat: hexchat-2.9.5-r1.ebuild ChangeLog
@ 2013-06-26 12:23 Jeroen Roovers (jer)
  0 siblings, 0 replies; 9+ messages in thread
From: Jeroen Roovers (jer) @ 2013-06-26 12:23 UTC (permalink / raw
  To: gentoo-commits

jer         13/06/26 12:23:50

  Modified:             hexchat-2.9.5-r1.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #474434).
  
  (Portage version: 2.2.0_alpha185/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.6                  net-irc/hexchat/hexchat-2.9.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?r1=1.5&r2=1.6

Index: hexchat-2.9.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- hexchat-2.9.5-r1.ebuild	26 Jun 2013 10:54:25 -0000	1.5
+++ hexchat-2.9.5-r1.ebuild	26 Jun 2013 12:23:50 -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/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.5 2013/06/26 10:54:25 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.6 2013/06/26 12:23:50 jer Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux"
 IUSE="dbus fastscroll +gtk ipv6 libnotify libproxy nls ntlm perl +plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo python spell ssl theme-manager"
 REQUIRED_USE="plugin-checksum? ( plugins )
 	plugin-doat? ( plugins )



1.58                 net-irc/hexchat/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.58&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.58&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?r1=1.57&r2=1.58

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog	26 Jun 2013 10:54:25 -0000	1.57
+++ ChangeLog	26 Jun 2013 12:23:50 -0000	1.58
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/hexchat
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.57 2013/06/26 10:54:25 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.58 2013/06/26 12:23:50 jer Exp $
+
+  26 Jun 2013; Jeroen Roovers <jer@gentoo.org> hexchat-2.9.5-r1.ebuild:
+  Stable for HPPA (bug #474434).
 
   26 Jun 2013; Sergey Popov <pinkbyte@gentoo.org> hexchat-2.9.5-r1.ebuild:
   Stable on arm, wrt bug #474434





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

* [gentoo-commits] gentoo-x86 commit in net-irc/hexchat: hexchat-2.9.5-r1.ebuild ChangeLog
@ 2013-06-29 16:20 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-29 16:20 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/29 16:20:33

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

Revision  Changes    Path
1.7                  net-irc/hexchat/hexchat-2.9.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?r1=1.6&r2=1.7

Index: hexchat-2.9.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- hexchat-2.9.5-r1.ebuild	26 Jun 2013 12:23:50 -0000	1.6
+++ hexchat-2.9.5-r1.ebuild	29 Jun 2013 16:20:33 -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/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.6 2013/06/26 12:23:50 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.7 2013/06/29 16:20:33 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 sparc x86 ~amd64-linux"
 IUSE="dbus fastscroll +gtk ipv6 libnotify libproxy nls ntlm perl +plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo python spell ssl theme-manager"
 REQUIRED_USE="plugin-checksum? ( plugins )
 	plugin-doat? ( plugins )



1.61                 net-irc/hexchat/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	27 Jun 2013 18:14:48 -0000	1.60
+++ ChangeLog	29 Jun 2013 16:20:33 -0000	1.61
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/hexchat
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.60 2013/06/27 18:14:48 hasufell Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.61 2013/06/29 16:20:33 ago Exp $
+
+  29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> hexchat-2.9.5-r1.ebuild:
+  Stable for sparc, wrt bug #474434
 
   27 Jun 2013; Julian Ospald <hasufell@gentoo.org>
   hexchat-2.9.5_p20130525.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in net-irc/hexchat: hexchat-2.9.5-r1.ebuild ChangeLog
@ 2013-06-29 18:29 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-29 18:29 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/29 18:29:26

  Modified:             hexchat-2.9.5-r1.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #474434
  
  (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                  net-irc/hexchat/hexchat-2.9.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?r1=1.7&r2=1.8

Index: hexchat-2.9.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- hexchat-2.9.5-r1.ebuild	29 Jun 2013 16:20:33 -0000	1.7
+++ hexchat-2.9.5-r1.ebuild	29 Jun 2013 18:29:26 -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/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.7 2013/06/29 16:20:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.8 2013/06/29 18:29:26 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 sparc x86 ~amd64-linux"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ~ppc64 sparc x86 ~amd64-linux"
 IUSE="dbus fastscroll +gtk ipv6 libnotify libproxy nls ntlm perl +plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo python spell ssl theme-manager"
 REQUIRED_USE="plugin-checksum? ( plugins )
 	plugin-doat? ( plugins )



1.62                 net-irc/hexchat/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	29 Jun 2013 16:20:33 -0000	1.61
+++ ChangeLog	29 Jun 2013 18:29:26 -0000	1.62
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/hexchat
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.61 2013/06/29 16:20:33 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.62 2013/06/29 18:29:26 ago Exp $
+
+  29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> hexchat-2.9.5-r1.ebuild:
+  Stable for ppc, wrt bug #474434
 
   29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> hexchat-2.9.5-r1.ebuild:
   Stable for sparc, wrt bug #474434





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

* [gentoo-commits] gentoo-x86 commit in net-irc/hexchat: hexchat-2.9.5-r1.ebuild ChangeLog
@ 2013-06-29 19:25 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-06-29 19:25 UTC (permalink / raw
  To: gentoo-commits

ago         13/06/29 19:25:34

  Modified:             hexchat-2.9.5-r1.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #474434
  
  (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                  net-irc/hexchat/hexchat-2.9.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?r1=1.8&r2=1.9

Index: hexchat-2.9.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- hexchat-2.9.5-r1.ebuild	29 Jun 2013 18:29:26 -0000	1.8
+++ hexchat-2.9.5-r1.ebuild	29 Jun 2013 19:25:34 -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/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.8 2013/06/29 18:29:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.9 2013/06/29 19:25:34 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ~ppc64 sparc x86 ~amd64-linux"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux"
 IUSE="dbus fastscroll +gtk ipv6 libnotify libproxy nls ntlm perl +plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo python spell ssl theme-manager"
 REQUIRED_USE="plugin-checksum? ( plugins )
 	plugin-doat? ( plugins )



1.63                 net-irc/hexchat/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	29 Jun 2013 18:29:26 -0000	1.62
+++ ChangeLog	29 Jun 2013 19:25:34 -0000	1.63
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/hexchat
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.62 2013/06/29 18:29:26 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.63 2013/06/29 19:25:34 ago Exp $
+
+  29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> hexchat-2.9.5-r1.ebuild:
+  Stable for ppc64, wrt bug #474434
 
   29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> hexchat-2.9.5-r1.ebuild:
   Stable for ppc, wrt bug #474434





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

* [gentoo-commits] gentoo-x86 commit in net-irc/hexchat: hexchat-2.9.5-r1.ebuild ChangeLog
@ 2013-07-07 15:14 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-07 15:14 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/07 15:14:46

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

Revision  Changes    Path
1.10                 net-irc/hexchat/hexchat-2.9.5-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild?r1=1.9&r2=1.10

Index: hexchat-2.9.5-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- hexchat-2.9.5-r1.ebuild	29 Jun 2013 19:25:34 -0000	1.9
+++ hexchat-2.9.5-r1.ebuild	7 Jul 2013 15:14:46 -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/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.9 2013/06/29 19:25:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/hexchat-2.9.5-r1.ebuild,v 1.10 2013/07/07 15:14:46 ago Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux"
 IUSE="dbus fastscroll +gtk ipv6 libnotify libproxy nls ntlm perl +plugins plugin-checksum plugin-doat plugin-fishlim plugin-sysinfo python spell ssl theme-manager"
 REQUIRED_USE="plugin-checksum? ( plugins )
 	plugin-doat? ( plugins )



1.64                 net-irc/hexchat/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/hexchat/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	29 Jun 2013 19:25:34 -0000	1.63
+++ ChangeLog	7 Jul 2013 15:14:46 -0000	1.64
@@ -1,6 +1,9 @@
 # ChangeLog for net-irc/hexchat
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.63 2013/06/29 19:25:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/hexchat/ChangeLog,v 1.64 2013/07/07 15:14:46 ago Exp $
+
+  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> hexchat-2.9.5-r1.ebuild:
+  Stable for ia64, wrt bug #474434
 
   29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> hexchat-2.9.5-r1.ebuild:
   Stable for ppc64, wrt bug #474434





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

end of thread, other threads:[~2013-07-07 15:14 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-26 10:54 [gentoo-commits] gentoo-x86 commit in net-irc/hexchat: hexchat-2.9.5-r1.ebuild ChangeLog Sergey Popov (pinkbyte)
  -- strict thread matches above, loose matches on Subject: below --
2013-07-07 15:14 Agostino Sarubbo (ago)
2013-06-29 19:25 Agostino Sarubbo (ago)
2013-06-29 18:29 Agostino Sarubbo (ago)
2013-06-29 16:20 Agostino Sarubbo (ago)
2013-06-26 12:23 Jeroen Roovers (jer)
2013-06-24 10:52 Tobias Klausmann (klausman)
2013-06-24  9:09 Sergey Popov (pinkbyte)
2013-06-07 14:18 Julian Ospald (hasufell)

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