public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-05-28  2:12 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 14+ messages in thread
From: Anthony G. Basile (blueness) @ 2013-05-28  2:12 UTC (permalink / raw
  To: gentoo-commits

blueness    13/05/28 02:12:23

  Modified:             ChangeLog
  Added:                avahi-0.6.31-r2.ebuild
  Log:
  Fixes bugs #359575, #399369, #466210
   Bug #359575 - only install avahi-discover when gtk is enabled
   Bug #399369 - building python bindings do not depend on gtk
   Bug #466210 - remove "/home/lennart/tmp/avahi" from man pages
  
  (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.242                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.242&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.242&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.241&r2=1.242

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.241
retrieving revision 1.242
diff -u -r1.241 -r1.242
--- ChangeLog	26 May 2013 23:53:04 -0000	1.241
+++ ChangeLog	28 May 2013 02:12:23 -0000	1.242
@@ -1,6 +1,14 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.241 2013/05/26 23:53:04 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.242 2013/05/28 02:12:23 blueness Exp $
+
+*avahi-0.6.31-r2 (28 May 2013)
+
+  28 May 2013; Anthony G. Basile <blueness@gentoo.org> +avahi-0.6.31-r2.ebuild,
+  +files/avahi-0.6.31-fix-install-avahi-discover.patch:
+  Fixes bugs #359575, #399369, #466210  Bug #359575 - only install avahi-
+  discover when gtk is enabled  Bug #399369 - building python bindings do not
+  depend on gtk  Bug #466210 - remove "/home/lennart/tmp/avahi" from man pages
 
   26 May 2013; Anthony G. Basile <blueness@gentoo.org> avahi-0.6.30-r1.ebuild,
   avahi-0.6.30-r3.ebuild, avahi-0.6.31-r1.ebuild, avahi-0.6.31.ebuild:



1.1                  net-dns/avahi/avahi-0.6.31-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.1&content-type=text/plain

Index: avahi-0.6.31-r2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.1 2013/05/28 02:12:23 blueness Exp $

EAPI="5"

PYTHON_COMPAT=( python{2_5,2_6,2_7} )
PYTHON_REQ_USE="gdbm"

WANT_AUTOMAKE=1.11

inherit autotools eutils mono python-r1 multilib flag-o-matic user systemd

DESCRIPTION="System which facilitates service discovery on a local network"
HOMEPAGE="http://avahi.org/"
SRC_URI="http://avahi.org/download/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 kernel_linux mdnsresponder-compat mono python qt4 test utils"

REQUIRED_USE="
	utils? ( || ( gtk gtk3 ) )
	python? ( dbus gdbm )
	mono? ( dbus )
	howl-compat? ( dbus )
	mdnsresponder-compat? ( dbus )
"

COMMON_DEPEND="
	dev-libs/libdaemon
	dev-libs/expat
	dev-libs/glib:2
	gdbm? ( sys-libs/gdbm )
	qt4? ( dev-qt/qtcore:4 )
	gtk? ( x11-libs/gtk+:2 )
	gtk3? ( x11-libs/gtk+:3 )
	dbus? ( sys-apps/dbus )
	kernel_linux? ( sys-libs/libcap )
	introspection? ( dev-libs/gobject-introspection )
	mono? (
		dev-lang/mono
		gtk? ( dev-dotnet/gtk-sharp )
	)
	python? (
		gtk? ( dev-python/pygtk )
		dbus? ( dev-python/dbus-python )
	)
	bookmarks? (
		dev-python/twisted
		dev-python/twisted-web
	)
"

DEPEND="
	${COMMON_DEPEND}
	dev-util/intltool
	virtual/pkgconfig
	doc? (
		app-doc/doxygen
		mono? ( virtual/monodoc )
	)
"

RDEPEND="
	${COMMON_DEPEND}
	howl-compat? ( !net-misc/howl )
	mdnsresponder-compat? ( !net-misc/mDNSResponder )
"

pkg_preinst() {
	enewgroup netdev
	enewgroup avahi
	enewuser avahi -1 -1 -1 avahi

	if use autoipd; then
		enewgroup avahi-autoipd
		enewuser avahi-autoipd -1 -1 -1 avahi-autoipd
	fi
}

src_prepare() {
	if use ipv6; then
		sed -i \
			-e s/use-ipv6=no/use-ipv6=yes/ \
			avahi-daemon/avahi-daemon.conf || die
	fi

	sed -i\
		-e "s:\\.\\./\\.\\./\\.\\./doc/avahi-docs/html/:../../../doc/${PF}/html/:" \
		doxygen_to_devhelp.xsl || die

	# Make gtk utils optional
	epatch "${FILESDIR}"/${PN}-0.6.30-optional-gtk-utils.patch

	# Fix init scripts for >=openrc-0.9.0, bug #383641
	epatch "${FILESDIR}"/${PN}-0.6.x-openrc-0.9.x-init-scripts-fixes.patch

	# install-exec-local -> install-exec-hook
	epatch "${FILESDIR}"/${P}-install-exec-hook.patch

	# Backport host-name-from-machine-id patch, bug #466134
	epatch "${FILESDIR}"/${P}-host-name-from-machine-id.patch

	# Don't install avahi-discover unless ENABLE_GTK_UTILS, bug #359575
	epatch "${FILESDIR}"/${P}-fix-install-avahi-discover.patch

	# Drop DEPRECATED flags, bug #384743
	sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED=1::g' avahi-ui/Makefile.am || die

	# Fix references to Lennart's home directory, bug #466210
	sed -i -e 's/\/home\/lennart\/tmp\/avahi//g' man/* || die

	# Prevent .pyc files in DESTDIR
	>py-compile

	eautoreconf
}

src_configure() {
	use sh && replace-flags -O? -O0

	local myconf="--disable-static"

	if use python; then
		python_export_best
		myconf+="
			$(use_enable dbus python-dbus)
			$(use_enable gtk pygtk)
		"
	fi

	if use mono; then
		myconf+=" $(use_enable doc monodoc)"
	fi

	# We need to unset DISPLAY, else the configure script might have problems detecting the pygtk module
	unset DISPLAY

	econf \
		--localstatedir="${EPREFIX}/var" \
		--with-distro=gentoo \
		--disable-python-dbus \
		--disable-pygtk \
		--disable-xmltoman \
		--disable-monodoc \
		--enable-glib \
		--enable-gobject \
		$(use_enable test tests) \
		$(use_enable autoipd) \
		$(use_enable mdnsresponder-compat compat-libdns_sd) \
		$(use_enable howl-compat compat-howl) \
		$(use_enable doc doxygen-doc) \
		$(use_enable mono) \
		$(use_enable dbus) \
		$(use_enable python) \
		$(use_enable gtk) \
		$(use_enable gtk3) \
		$(use_enable introspection) \
		$(use_enable utils gtk-utils) \
		--disable-qt3 \
		$(use_enable qt4) \
		$(use_enable gdbm) \
		$(systemd_with_unitdir) \
		${myconf}
}

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

	use doc && { emake avahi.devhelp || die ; }
}

src_install() {
	emake install DESTDIR="${D}" || die "make install failed"
	use bookmarks && use python && use dbus && use gtk || \
		rm -f "${ED}"/usr/bin/avahi-bookmarks

	use howl-compat && ln -s avahi-compat-howl.pc "${ED}"/usr/$(get_libdir)/pkgconfig/howl.pc
	use mdnsresponder-compat && ln -s avahi-compat-libdns_sd/dns_sd.h "${ED}"/usr/include/dns_sd.h

	if use autoipd; then
		insinto /$(get_libdir)/rcscripts/net
		doins "${FILESDIR}"/autoipd.sh || die

		insinto /$(get_libdir)/rc/net
		newins "${FILESDIR}"/autoipd-openrc.sh autoipd.sh || die
	fi

	dodoc docs/{AUTHORS,NEWS,README,TODO} || die

	if use doc; then
		dohtml -r doxygen/html/. || die
		insinto /usr/share/devhelp/books/avahi
		doins avahi.devhelp || die
	fi

	find "${ED}" -name '*.la' -exec rm -f {} +
}

pkg_postinst() {
	if use autoipd; then
		elog
		elog "To use avahi-autoipd to configure your interfaces with IPv4LL (RFC3927)"
		elog "addresses, just set config_<interface>=( autoipd ) in /etc/conf.d/net!"
		elog
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-07-10 14:58 Jeroen Roovers (jer)
  0 siblings, 0 replies; 14+ messages in thread
From: Jeroen Roovers (jer) @ 2013-07-10 14:58 UTC (permalink / raw
  To: gentoo-commits

jer         13/07/10 14:58:09

  Modified:             avahi-0.6.31-r2.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #476184).
  
  (Portage version: 2.2.0_alpha188/cvs/Linux x86_64, RepoMan options: --ignore-arches, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.2                  net-dns/avahi/avahi-0.6.31-r2.ebuild

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

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- avahi-0.6.31-r2.ebuild	28 May 2013 02:12:23 -0000	1.1
+++ avahi-0.6.31-r2.ebuild	10 Jul 2013 14:58:09 -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-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.1 2013/05/28 02:12:23 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.2 2013/07/10 14:58:09 jer Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 kernel_linux mdnsresponder-compat mono python qt4 test utils"
 
 REQUIRED_USE="



1.243                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.243&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.243&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.242&r2=1.243

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.242
retrieving revision 1.243
diff -u -r1.242 -r1.243
--- ChangeLog	28 May 2013 02:12:23 -0000	1.242
+++ ChangeLog	10 Jul 2013 14:58:09 -0000	1.243
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.242 2013/05/28 02:12:23 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.243 2013/07/10 14:58:09 jer Exp $
+
+  10 Jul 2013; Jeroen Roovers <jer@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Stable for HPPA (bug #476184).
 
 *avahi-0.6.31-r2 (28 May 2013)
 





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-07-12  4:55 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-12  4:55 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/12 04:55:49

  Modified:             avahi-0.6.31-r2.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #476184
  
  (Portage version: 2.1.12.11/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  net-dns/avahi/avahi-0.6.31-r2.ebuild

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

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- avahi-0.6.31-r2.ebuild	10 Jul 2013 14:58:09 -0000	1.2
+++ avahi-0.6.31-r2.ebuild	12 Jul 2013 04:55:49 -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-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.2 2013/07/10 14:58:09 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.3 2013/07/12 04:55:49 ago Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 kernel_linux mdnsresponder-compat mono python qt4 test utils"
 
 REQUIRED_USE="



1.244                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.244&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.244&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.243&r2=1.244

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.243
retrieving revision 1.244
diff -u -r1.243 -r1.244
--- ChangeLog	10 Jul 2013 14:58:09 -0000	1.243
+++ ChangeLog	12 Jul 2013 04:55:49 -0000	1.244
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.243 2013/07/10 14:58:09 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.244 2013/07/12 04:55:49 ago Exp $
+
+  12 Jul 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Stable for amd64, wrt bug #476184
 
   10 Jul 2013; Jeroen Roovers <jer@gentoo.org> avahi-0.6.31-r2.ebuild:
   Stable for HPPA (bug #476184).





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-07-13  7:49 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-13  7:49 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/13 07:49:15

  Modified:             avahi-0.6.31-r2.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #476184
  
  (Portage version: 2.1.12.13/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  net-dns/avahi/avahi-0.6.31-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?r1=1.3&r2=1.4

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- avahi-0.6.31-r2.ebuild	12 Jul 2013 04:55:49 -0000	1.3
+++ avahi-0.6.31-r2.ebuild	13 Jul 2013 07:49:15 -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/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.3 2013/07/12 04:55:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.4 2013/07/13 07:49:15 ago Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 kernel_linux mdnsresponder-compat mono python qt4 test utils"
 
 REQUIRED_USE="



1.245                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.245&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.245&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.244&r2=1.245

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.244
retrieving revision 1.245
diff -u -r1.244 -r1.245
--- ChangeLog	12 Jul 2013 04:55:49 -0000	1.244
+++ ChangeLog	13 Jul 2013 07:49:15 -0000	1.245
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.244 2013/07/12 04:55:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.245 2013/07/13 07:49:15 ago Exp $
+
+  13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Stable for x86, wrt bug #476184
 
   12 Jul 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
   Stable for amd64, wrt bug #476184





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-07-13 18:00 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-13 18:00 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/13 18:00:13

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

Revision  Changes    Path
1.5                  net-dns/avahi/avahi-0.6.31-r2.ebuild

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

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- avahi-0.6.31-r2.ebuild	13 Jul 2013 07:49:15 -0000	1.4
+++ avahi-0.6.31-r2.ebuild	13 Jul 2013 18:00:13 -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-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.4 2013/07/13 07:49:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.5 2013/07/13 18:00:13 ago Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 kernel_linux mdnsresponder-compat mono python qt4 test utils"
 
 REQUIRED_USE="



1.246                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.246&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.246&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.245&r2=1.246

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.245
retrieving revision 1.246
diff -u -r1.245 -r1.246
--- ChangeLog	13 Jul 2013 07:49:15 -0000	1.245
+++ ChangeLog	13 Jul 2013 18:00:13 -0000	1.246
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.245 2013/07/13 07:49:15 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.246 2013/07/13 18:00:13 ago Exp $
+
+  13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Stable for ppc, wrt bug #476184
 
   13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
   Stable for x86, wrt bug #476184





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-07-13 19:10 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-13 19:10 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/13 19:10:32

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

Revision  Changes    Path
1.6                  net-dns/avahi/avahi-0.6.31-r2.ebuild

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

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- avahi-0.6.31-r2.ebuild	13 Jul 2013 18:00:13 -0000	1.5
+++ avahi-0.6.31-r2.ebuild	13 Jul 2013 19:10:32 -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-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.5 2013/07/13 18:00:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.6 2013/07/13 19:10:32 ago Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 kernel_linux mdnsresponder-compat mono python qt4 test utils"
 
 REQUIRED_USE="



1.247                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.247&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.247&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.246&r2=1.247

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.246
retrieving revision 1.247
diff -u -r1.246 -r1.247
--- ChangeLog	13 Jul 2013 18:00:13 -0000	1.246
+++ ChangeLog	13 Jul 2013 19:10:32 -0000	1.247
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.246 2013/07/13 18:00:13 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.247 2013/07/13 19:10:32 ago Exp $
+
+  13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Stable for ppc64, wrt bug #476184
 
   13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
   Stable for ppc, wrt bug #476184





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-07-14 14:20 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-14 14:20 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/14 14:20:39

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

Revision  Changes    Path
1.7                  net-dns/avahi/avahi-0.6.31-r2.ebuild

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

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- avahi-0.6.31-r2.ebuild	13 Jul 2013 19:10:32 -0000	1.6
+++ avahi-0.6.31-r2.ebuild	14 Jul 2013 14:20:39 -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-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.6 2013/07/13 19:10:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.7 2013/07/14 14:20:39 ago Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 kernel_linux mdnsresponder-compat mono python qt4 test utils"
 
 REQUIRED_USE="



1.248                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.248&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.248&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.247&r2=1.248

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.247
retrieving revision 1.248
diff -u -r1.247 -r1.248
--- ChangeLog	13 Jul 2013 19:10:32 -0000	1.247
+++ ChangeLog	14 Jul 2013 14:20:39 -0000	1.248
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.247 2013/07/13 19:10:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.248 2013/07/14 14:20:39 ago Exp $
+
+  14 Jul 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Stable for alpha, wrt bug #476184
 
   13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
   Stable for ppc64, wrt bug #476184





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-07-14 17:36 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-07-14 17:36 UTC (permalink / raw
  To: gentoo-commits

ago         13/07/14 17:36:29

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

Revision  Changes    Path
1.8                  net-dns/avahi/avahi-0.6.31-r2.ebuild

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

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- avahi-0.6.31-r2.ebuild	14 Jul 2013 14:20:39 -0000	1.7
+++ avahi-0.6.31-r2.ebuild	14 Jul 2013 17:36:29 -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-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.7 2013/07/14 14:20:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.8 2013/07/14 17:36:29 ago Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 kernel_linux mdnsresponder-compat mono python qt4 test utils"
 
 REQUIRED_USE="



1.249                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.249&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.249&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.248&r2=1.249

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.248
retrieving revision 1.249
diff -u -r1.248 -r1.249
--- ChangeLog	14 Jul 2013 14:20:39 -0000	1.248
+++ ChangeLog	14 Jul 2013 17:36:29 -0000	1.249
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.248 2013/07/14 14:20:39 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.249 2013/07/14 17:36:29 ago Exp $
+
+  14 Jul 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Stable for arm, wrt bug #476184
 
   14 Jul 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
   Stable for alpha, wrt bug #476184





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-08-03  6:51 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-03  6:51 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/03 06:51:38

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

Revision  Changes    Path
1.9                  net-dns/avahi/avahi-0.6.31-r2.ebuild

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

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- avahi-0.6.31-r2.ebuild	14 Jul 2013 17:36:29 -0000	1.8
+++ avahi-0.6.31-r2.ebuild	3 Aug 2013 06:51:38 -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-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.8 2013/07/14 17:36:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.9 2013/08/03 06:51:38 ago Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 kernel_linux mdnsresponder-compat mono python qt4 test utils"
 
 REQUIRED_USE="



1.250                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.250&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.250&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.249&r2=1.250

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.249
retrieving revision 1.250
diff -u -r1.249 -r1.250
--- ChangeLog	14 Jul 2013 17:36:29 -0000	1.249
+++ ChangeLog	3 Aug 2013 06:51:38 -0000	1.250
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.249 2013/07/14 17:36:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.250 2013/08/03 06:51:38 ago Exp $
+
+  03 Aug 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Stable for sparc, wrt bug #476184
 
   14 Jul 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
   Stable for arm, wrt bug #476184





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-08-04 11:35 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-04 11:35 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/04 11:35:55

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

Revision  Changes    Path
1.11                 net-dns/avahi/avahi-0.6.31-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?r1=1.10&r2=1.11

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- avahi-0.6.31-r2.ebuild	3 Aug 2013 09:45:41 -0000	1.10
+++ avahi-0.6.31-r2.ebuild	4 Aug 2013 11:35:55 -0000	1.11
@@ -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-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.10 2013/08/03 09:45:41 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.11 2013/08/04 11:35:55 ago Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 kernel_linux mdnsresponder-compat mono python qt4 test utils"
 
 REQUIRED_USE="



1.252                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.252&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.252&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.251&r2=1.252

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.251
retrieving revision 1.252
diff -u -r1.251 -r1.252
--- ChangeLog	3 Aug 2013 09:45:41 -0000	1.251
+++ ChangeLog	4 Aug 2013 11:35:55 -0000	1.252
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.251 2013/08/03 09:45:41 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.252 2013/08/04 11:35:55 ago Exp $
+
+  04 Aug 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Stable for ia64, wrt bug #476184
 
   03 Aug 2013; Michał Górny <mgorny@gentoo.org> avahi-0.6.30-r1.ebuild,
   avahi-0.6.30-r3.ebuild, avahi-0.6.31.ebuild, avahi-0.6.31-r1.ebuild,





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-08-06 13:07 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-06 13:07 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/06 13:07:54

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

Revision  Changes    Path
1.12                 net-dns/avahi/avahi-0.6.31-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?r1=1.11&r2=1.12

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- avahi-0.6.31-r2.ebuild	4 Aug 2013 11:35:55 -0000	1.11
+++ avahi-0.6.31-r2.ebuild	6 Aug 2013 13:07:54 -0000	1.12
@@ -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-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.11 2013/08/04 11:35:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.12 2013/08/06 13:07:54 ago Exp $
 
 EAPI="5"
 
@@ -17,7 +17,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="autoipd bookmarks dbus doc gdbm gtk gtk3 howl-compat +introspection ipv6 kernel_linux mdnsresponder-compat mono python qt4 test utils"
 
 REQUIRED_USE="



1.253                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.253&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.253&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.252&r2=1.253

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.252
retrieving revision 1.253
diff -u -r1.252 -r1.253
--- ChangeLog	4 Aug 2013 11:35:55 -0000	1.252
+++ ChangeLog	6 Aug 2013 13:07:54 -0000	1.253
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.252 2013/08/04 11:35:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.253 2013/08/06 13:07:54 ago Exp $
+
+  06 Aug 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Stable for s390, wrt bug #476184
 
   04 Aug 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
   Stable for ia64, wrt bug #476184





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-09-05 18:59 Michal Gorny (mgorny)
  0 siblings, 0 replies; 14+ messages in thread
From: Michal Gorny (mgorny) @ 2013-09-05 18:59 UTC (permalink / raw
  To: gentoo-commits

mgorny      13/09/05 18:59:06

  Modified:             avahi-0.6.31-r2.ebuild ChangeLog
  Log:
  Clean up PYTHON_COMPAT from old implementations.
  
  (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.13                 net-dns/avahi/avahi-0.6.31-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?r1=1.12&r2=1.13

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- avahi-0.6.31-r2.ebuild	6 Aug 2013 13:07:54 -0000	1.12
+++ avahi-0.6.31-r2.ebuild	5 Sep 2013 18:59:06 -0000	1.13
@@ -1,10 +1,10 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.12 2013/08/06 13:07:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.13 2013/09/05 18:59:06 mgorny Exp $
 
 EAPI="5"
 
-PYTHON_COMPAT=( python{2_5,2_6,2_7} )
+PYTHON_COMPAT=( python{2_6,2_7} )
 PYTHON_REQ_USE="gdbm"
 
 WANT_AUTOMAKE=1.11



1.254                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.254&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.254&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.253&r2=1.254

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.253
retrieving revision 1.254
diff -u -r1.253 -r1.254
--- ChangeLog	6 Aug 2013 13:07:54 -0000	1.253
+++ ChangeLog	5 Sep 2013 18:59:06 -0000	1.254
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.253 2013/08/06 13:07:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.254 2013/09/05 18:59:06 mgorny Exp $
+
+  05 Sep 2013; Michał Górny <mgorny@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Clean up PYTHON_COMPAT from old implementations.
 
   06 Aug 2013; Agostino Sarubbo <ago@gentoo.org> avahi-0.6.31-r2.ebuild:
   Stable for s390, wrt bug #476184





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2013-10-12 12:14 Pacho Ramos (pacho)
  0 siblings, 0 replies; 14+ messages in thread
From: Pacho Ramos (pacho) @ 2013-10-12 12:14 UTC (permalink / raw
  To: gentoo-commits

pacho       13/10/12 12:14:46

  Modified:             avahi-0.6.31-r2.ebuild ChangeLog
  Log:
  Drop unneeded dep
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.14                 net-dns/avahi/avahi-0.6.31-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?r1=1.13&r2=1.14

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- avahi-0.6.31-r2.ebuild	5 Sep 2013 18:59:06 -0000	1.13
+++ avahi-0.6.31-r2.ebuild	12 Oct 2013 12:14:46 -0000	1.14
@@ -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-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.13 2013/09/05 18:59:06 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.14 2013/10/12 12:14:46 pacho Exp $
 
 EAPI="5"
 
@@ -59,7 +59,6 @@
 	virtual/pkgconfig
 	doc? (
 		app-doc/doxygen
-		mono? ( virtual/monodoc )
 	)
 "
 



1.255                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.255&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.255&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.254&r2=1.255

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.254
retrieving revision 1.255
diff -u -r1.254 -r1.255
--- ChangeLog	5 Sep 2013 18:59:06 -0000	1.254
+++ ChangeLog	12 Oct 2013 12:14:46 -0000	1.255
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.254 2013/09/05 18:59:06 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.255 2013/10/12 12:14:46 pacho Exp $
+
+  12 Oct 2013; Pacho Ramos <pacho@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Drop unneeded dep
 
   05 Sep 2013; Michał Górny <mgorny@gentoo.org> avahi-0.6.31-r2.ebuild:
   Clean up PYTHON_COMPAT from old implementations.





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

* [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog
@ 2014-01-12 15:45 Anthony G. Basile (blueness)
  0 siblings, 0 replies; 14+ messages in thread
From: Anthony G. Basile (blueness) @ 2014-01-12 15:45 UTC (permalink / raw
  To: gentoo-commits

blueness    14/01/12 15:45:12

  Modified:             avahi-0.6.31-r2.ebuild ChangeLog
  Log:
  Fix bug #496240
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)

Revision  Changes    Path
1.15                 net-dns/avahi/avahi-0.6.31-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild?r1=1.14&r2=1.15

Index: avahi-0.6.31-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- avahi-0.6.31-r2.ebuild	12 Oct 2013 12:14:46 -0000	1.14
+++ avahi-0.6.31-r2.ebuild	12 Jan 2014 15:45:11 -0000	1.15
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.14 2013/10/12 12:14:46 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.31-r2.ebuild,v 1.15 2014/01/12 15:45:11 blueness Exp $
 
 EAPI="5"
 
@@ -44,6 +44,7 @@
 		gtk? ( dev-dotnet/gtk-sharp )
 	)
 	python? (
+		${PYTHON_DEPS}
 		gtk? ( dev-python/pygtk )
 		dbus? ( dev-python/dbus-python )
 	)



1.257                net-dns/avahi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.257&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?rev=1.257&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dns/avahi/ChangeLog?r1=1.256&r2=1.257

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v
retrieving revision 1.256
retrieving revision 1.257
diff -u -r1.256 -r1.257
--- ChangeLog	12 Jan 2014 15:32:51 -0000	1.256
+++ ChangeLog	12 Jan 2014 15:45:12 -0000	1.257
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/avahi
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.256 2014/01/12 15:32:51 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.257 2014/01/12 15:45:12 blueness Exp $
+
+  12 Jan 2014; Anthony G. Basile <blueness@gentoo.org> avahi-0.6.31-r2.ebuild:
+  Fix bug #496240
 
   12 Jan 2014; Anthony G. Basile <blueness@gentoo.org> -avahi-0.6.30-r1.ebuild,
   -avahi-0.6.31-r1.ebuild, -avahi-0.6.31.ebuild:





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

end of thread, other threads:[~2014-01-12 15:45 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-14 14:20 [gentoo-commits] gentoo-x86 commit in net-dns/avahi: avahi-0.6.31-r2.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2014-01-12 15:45 Anthony G. Basile (blueness)
2013-10-12 12:14 Pacho Ramos (pacho)
2013-09-05 18:59 Michal Gorny (mgorny)
2013-08-06 13:07 Agostino Sarubbo (ago)
2013-08-04 11:35 Agostino Sarubbo (ago)
2013-08-03  6:51 Agostino Sarubbo (ago)
2013-07-14 17:36 Agostino Sarubbo (ago)
2013-07-13 19:10 Agostino Sarubbo (ago)
2013-07-13 18:00 Agostino Sarubbo (ago)
2013-07-13  7:49 Agostino Sarubbo (ago)
2013-07-12  4:55 Agostino Sarubbo (ago)
2013-07-10 14:58 Jeroen Roovers (jer)
2013-05-28  2:12 Anthony G. Basile (blueness)

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