public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2012-12-15 17:52 Jeroen Roovers (jer)
  0 siblings, 0 replies; 13+ messages in thread
From: Jeroen Roovers (jer) @ 2012-12-15 17:52 UTC (permalink / raw
  To: gentoo-commits

jer         12/12/15 17:52:58

  Modified:             ChangeLog
  Added:                libidn-1.26.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.0_alpha148/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.177                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- ChangeLog	18 Sep 2012 15:22:15 -0000	1.176
+++ ChangeLog	15 Dec 2012 17:52:58 -0000	1.177
@@ -1,6 +1,11 @@
 # ChangeLog for net-dns/libidn
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.176 2012/09/18 15:22:15 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.177 2012/12/15 17:52:58 jer Exp $
+
+*libidn-1.26 (15 Dec 2012)
+
+  15 Dec 2012; Jeroen Roovers <jer@gentoo.org> +libidn-1.26.ebuild:
+  Version bump.
 
   18 Sep 2012; Jeroen Roovers <jer@gentoo.org> -libidn-1.24.ebuild:
   Old.



1.1                  net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.1 2012/12/15 17:52:58 jer Exp $

EAPI=4
inherit elisp-common java-pkg-opt-2 mono

DESCRIPTION="Internationalized Domain Names (IDN) implementation"
HOMEPAGE="http://www.gnu.org/software/libidn/"
SRC_URI="mirror://gnu/libidn/${P}.tar.gz"

LICENSE="GPL-2 GPL-3 LGPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="doc emacs java mono nls static-libs"

DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )

COMMON_DEPEND="emacs? ( virtual/emacs )
	mono? ( >=dev-lang/mono-0.95 )"
DEPEND="${COMMON_DEPEND}
	nls? ( >=sys-devel/gettext-0.17 )
	java? (
		>=virtual/jdk-1.4
		doc? ( dev-java/gjdoc )
	)"
RDEPEND="${COMMON_DEPEND}
	nls? ( virtual/libintl )
	java? ( >=virtual/jre-1.4 )"

SITEFILE=50${PN}-gentoo.el

src_prepare() {
	# bundled, with wrong bytecode
	rm "${S}/java/${P}.jar" || die
}

src_configure() {
	econf \
		$(use_enable nls) \
		$(use_enable java) \
		$(use_enable mono csharp mono) \
		$(use_enable static-libs static) \
		--disable-valgrind-tests \
		--with-lispdir="${EPREFIX}${SITELISP}/${PN}" \
		--with-packager="Gentoo" \
		--with-packager-version="r${PR}" \
		--with-packager-bug-reports="https://bugs.gentoo.org"
}

src_compile() {
	default

	if use emacs; then
		elisp-compile src/*.el || die
	fi
}

src_install() {
	default

	if use emacs; then
		# *.el are installed by the build system
		elisp-install ${PN} src/*.elc || die
		elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
	else
		rm -rf "${ED}/usr/share/emacs"
	fi

	if use doc ; then
		dohtml -r doc/reference/html/*
	fi

	if use java ; then
		java-pkg_newjar java/${P}.jar ${PN}.jar || die
		rm -rf "${ED}"/usr/share/java || die

		if use doc ; then
			java-pkg_dojavadoc doc/java
		fi
	fi
	if ! use static-libs; then
		rm -f "${ED}"/usr/lib*/lib*.la
	fi
}

pkg_postinst() {
	use emacs && elisp-site-regen
}

pkg_postrm() {
	use emacs && elisp-site-regen
}





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

* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2013-01-19 17:09 Jeroen Roovers (jer)
  0 siblings, 0 replies; 13+ messages in thread
From: Jeroen Roovers (jer) @ 2013-01-19 17:09 UTC (permalink / raw
  To: gentoo-commits

jer         13/01/19 17:09:04

  Modified:             libidn-1.26.ebuild ChangeLog
  Log:
  Verbose build.
  
  (Portage version: 2.2.0_alpha154/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.2                  net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libidn-1.26.ebuild	15 Dec 2012 17:52:58 -0000	1.1
+++ libidn-1.26.ebuild	19 Jan 2013 17:09:04 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.1 2012/12/15 17:52:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.2 2013/01/19 17:09:04 jer Exp $
 
 EAPI=4
 inherit elisp-common java-pkg-opt-2 mono
@@ -37,15 +37,16 @@
 
 src_configure() {
 	econf \
-		$(use_enable nls) \
 		$(use_enable java) \
 		$(use_enable mono csharp mono) \
+		$(use_enable nls) \
 		$(use_enable static-libs static) \
+		--disable-silent-rules \
 		--disable-valgrind-tests \
 		--with-lispdir="${EPREFIX}${SITELISP}/${PN}" \
-		--with-packager="Gentoo" \
+		--with-packager-bug-reports="https://bugs.gentoo.org" \
 		--with-packager-version="r${PR}" \
-		--with-packager-bug-reports="https://bugs.gentoo.org"
+		--with-packager="Gentoo"
 }
 
 src_compile() {



1.178                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -r1.177 -r1.178
--- ChangeLog	15 Dec 2012 17:52:58 -0000	1.177
+++ ChangeLog	19 Jan 2013 17:09:04 -0000	1.178
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/libidn
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.177 2012/12/15 17:52:58 jer Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.178 2013/01/19 17:09:04 jer Exp $
+
+  19 Jan 2013; Jeroen Roovers <jer@gentoo.org> libidn-1.26.ebuild:
+  Verbose build.
 
 *libidn-1.26 (15 Dec 2012)
 





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

* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2013-01-29 11:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-29 11:17 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/29 11:17:00

  Modified:             libidn-1.26.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #454178
  
  (Portage version: 2.1.11.31/cvs/Linux ia64, unsigned Manifest commit)

Revision  Changes    Path
1.3                  net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libidn-1.26.ebuild	19 Jan 2013 17:09:04 -0000	1.2
+++ libidn-1.26.ebuild	29 Jan 2013 11:17:00 -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/libidn/libidn-1.26.ebuild,v 1.2 2013/01/19 17:09:04 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.3 2013/01/29 11:17:00 ago Exp $
 
 EAPI=4
 inherit elisp-common java-pkg-opt-2 mono
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs java mono nls static-libs"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )



1.179                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog	19 Jan 2013 17:09:04 -0000	1.178
+++ ChangeLog	29 Jan 2013 11:17:00 -0000	1.179
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/libidn
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.178 2013/01/19 17:09:04 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.179 2013/01/29 11:17:00 ago Exp $
+
+  29 Jan 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
+  Stable for ia64, wrt bug #454178
 
   19 Jan 2013; Jeroen Roovers <jer@gentoo.org> libidn-1.26.ebuild:
   Verbose build.





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

* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2013-01-30 15:03 Jeroen Roovers (jer)
  0 siblings, 0 replies; 13+ messages in thread
From: Jeroen Roovers (jer) @ 2013-01-30 15:03 UTC (permalink / raw
  To: gentoo-commits

jer         13/01/30 15:03:36

  Modified:             libidn-1.26.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #454178).
  
  (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.4                  net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libidn-1.26.ebuild	29 Jan 2013 11:17:00 -0000	1.3
+++ libidn-1.26.ebuild	30 Jan 2013 15:03:35 -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/libidn/libidn-1.26.ebuild,v 1.3 2013/01/29 11:17:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.4 2013/01/30 15:03:35 jer Exp $
 
 EAPI=4
 inherit elisp-common java-pkg-opt-2 mono
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs java mono nls static-libs"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )



1.180                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.179
retrieving revision 1.180
diff -u -r1.179 -r1.180
--- ChangeLog	29 Jan 2013 11:17:00 -0000	1.179
+++ ChangeLog	30 Jan 2013 15:03:35 -0000	1.180
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/libidn
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.179 2013/01/29 11:17:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.180 2013/01/30 15:03:35 jer Exp $
+
+  30 Jan 2013; Jeroen Roovers <jer@gentoo.org> libidn-1.26.ebuild:
+  Stable for HPPA (bug #454178).
 
   29 Jan 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
   Stable for ia64, wrt bug #454178





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

* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2013-01-30 18:08 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-30 18:08 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/30 18:08:07

  Modified:             libidn-1.26.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #454178
  
  (Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.5                  net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libidn-1.26.ebuild	30 Jan 2013 15:03:35 -0000	1.4
+++ libidn-1.26.ebuild	30 Jan 2013 18:08:07 -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/libidn/libidn-1.26.ebuild,v 1.4 2013/01/30 15:03:35 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.5 2013/01/30 18:08:07 ago Exp $
 
 EAPI=4
 inherit elisp-common java-pkg-opt-2 mono
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs java mono nls static-libs"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )



1.181                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -r1.180 -r1.181
--- ChangeLog	30 Jan 2013 15:03:35 -0000	1.180
+++ ChangeLog	30 Jan 2013 18:08:07 -0000	1.181
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/libidn
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.180 2013/01/30 15:03:35 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.181 2013/01/30 18:08:07 ago Exp $
+
+  30 Jan 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
+  Stable for x86, wrt bug #454178
 
   30 Jan 2013; Jeroen Roovers <jer@gentoo.org> libidn-1.26.ebuild:
   Stable for HPPA (bug #454178).





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

* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2013-01-31 22:33 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-31 22:33 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/31 22:33:32

  Modified:             libidn-1.26.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #454178
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.6                  net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libidn-1.26.ebuild	30 Jan 2013 18:08:07 -0000	1.5
+++ libidn-1.26.ebuild	31 Jan 2013 22:33:31 -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/libidn/libidn-1.26.ebuild,v 1.5 2013/01/30 18:08:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.6 2013/01/31 22:33:31 ago Exp $
 
 EAPI=4
 inherit elisp-common java-pkg-opt-2 mono
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs java mono nls static-libs"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )



1.182                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -r1.181 -r1.182
--- ChangeLog	30 Jan 2013 18:08:07 -0000	1.181
+++ ChangeLog	31 Jan 2013 22:33:31 -0000	1.182
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/libidn
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.181 2013/01/30 18:08:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.182 2013/01/31 22:33:31 ago Exp $
+
+  31 Jan 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
+  Stable for ppc64, wrt bug #454178
 
   30 Jan 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
   Stable for x86, wrt bug #454178





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

* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2013-01-31 23:05 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-01-31 23:05 UTC (permalink / raw
  To: gentoo-commits

ago         13/01/31 23:05:49

  Modified:             libidn-1.26.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #454178
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.7                  net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libidn-1.26.ebuild	31 Jan 2013 22:33:31 -0000	1.6
+++ libidn-1.26.ebuild	31 Jan 2013 23:05:49 -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/libidn/libidn-1.26.ebuild,v 1.6 2013/01/31 22:33:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.7 2013/01/31 23:05:49 ago Exp $
 
 EAPI=4
 inherit elisp-common java-pkg-opt-2 mono
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs java mono nls static-libs"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )



1.183                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -r1.182 -r1.183
--- ChangeLog	31 Jan 2013 22:33:31 -0000	1.182
+++ ChangeLog	31 Jan 2013 23:05:49 -0000	1.183
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/libidn
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.182 2013/01/31 22:33:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.183 2013/01/31 23:05:49 ago Exp $
+
+  31 Jan 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
+  Stable for ppc, wrt bug #454178
 
   31 Jan 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
   Stable for ppc64, wrt bug #454178





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

* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2013-02-03 19:36 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-03 19:36 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/03 19:36:55

  Modified:             libidn-1.26.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #454178
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.8                  net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libidn-1.26.ebuild	31 Jan 2013 23:05:49 -0000	1.7
+++ libidn-1.26.ebuild	3 Feb 2013 19:36:55 -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/libidn/libidn-1.26.ebuild,v 1.7 2013/01/31 23:05:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.8 2013/02/03 19:36:55 ago Exp $
 
 EAPI=4
 inherit elisp-common java-pkg-opt-2 mono
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs java mono nls static-libs"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )



1.184                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -r1.183 -r1.184
--- ChangeLog	31 Jan 2013 23:05:49 -0000	1.183
+++ ChangeLog	3 Feb 2013 19:36:55 -0000	1.184
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/libidn
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.183 2013/01/31 23:05:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.184 2013/02/03 19:36:55 ago Exp $
+
+  03 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
+  Stable for arm, wrt bug #454178
 
   31 Jan 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
   Stable for ppc, wrt bug #454178





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

* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2013-02-04  9:48 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-04  9:48 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/04 09:48:50

  Modified:             libidn-1.26.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #454178
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.9                  net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libidn-1.26.ebuild	3 Feb 2013 19:36:55 -0000	1.8
+++ libidn-1.26.ebuild	4 Feb 2013 09:48:49 -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/libidn/libidn-1.26.ebuild,v 1.8 2013/02/03 19:36:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.9 2013/02/04 09:48:49 ago Exp $
 
 EAPI=4
 inherit elisp-common java-pkg-opt-2 mono
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs java mono nls static-libs"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )



1.185                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -r1.184 -r1.185
--- ChangeLog	3 Feb 2013 19:36:55 -0000	1.184
+++ ChangeLog	4 Feb 2013 09:48:49 -0000	1.185
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/libidn
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.184 2013/02/03 19:36:55 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.185 2013/02/04 09:48:49 ago Exp $
+
+  04 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
+  Stable for alpha, wrt bug #454178
 
   03 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
   Stable for arm, wrt bug #454178





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

* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2013-02-06 19:43 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-06 19:43 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/06 19:43:17

  Modified:             libidn-1.26.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #454178
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, unsigned Manifest commit)

Revision  Changes    Path
1.10                 net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libidn-1.26.ebuild	4 Feb 2013 09:48:49 -0000	1.9
+++ libidn-1.26.ebuild	6 Feb 2013 19:43:17 -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-dns/libidn/libidn-1.26.ebuild,v 1.9 2013/02/04 09:48:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.10 2013/02/06 19:43:17 ago Exp $
 
 EAPI=4
 inherit elisp-common java-pkg-opt-2 mono
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs java mono nls static-libs"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )



1.186                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- ChangeLog	4 Feb 2013 09:48:49 -0000	1.185
+++ ChangeLog	6 Feb 2013 19:43:17 -0000	1.186
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/libidn
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.185 2013/02/04 09:48:49 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.186 2013/02/06 19:43:17 ago Exp $
+
+  06 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
+  Stable for sparc, wrt bug #454178
 
   04 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
   Stable for alpha, wrt bug #454178





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

* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2013-02-20  9:47 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-20  9:47 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/20 09:47:53

  Modified:             libidn-1.26.ebuild ChangeLog
  Log:
  Stable for s390, wrt bug #454178
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.11                 net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libidn-1.26.ebuild	6 Feb 2013 19:43:17 -0000	1.10
+++ libidn-1.26.ebuild	20 Feb 2013 09:47:52 -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/libidn/libidn-1.26.ebuild,v 1.10 2013/02/06 19:43:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.11 2013/02/20 09:47:52 ago Exp $
 
 EAPI=4
 inherit elisp-common java-pkg-opt-2 mono
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs java mono nls static-libs"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )



1.187                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -r1.186 -r1.187
--- ChangeLog	6 Feb 2013 19:43:17 -0000	1.186
+++ ChangeLog	20 Feb 2013 09:47:52 -0000	1.187
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/libidn
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.186 2013/02/06 19:43:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.187 2013/02/20 09:47:52 ago Exp $
+
+  20 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
+  Stable for s390, wrt bug #454178
 
   06 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
   Stable for sparc, wrt bug #454178





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

* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2013-02-24 17:52 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-24 17:52 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/24 17:52:35

  Modified:             libidn-1.26.ebuild ChangeLog
  Log:
  Stable for sh, wrt bug #454178
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.12                 net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- libidn-1.26.ebuild	20 Feb 2013 09:47:52 -0000	1.11
+++ libidn-1.26.ebuild	24 Feb 2013 17:52:35 -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/libidn/libidn-1.26.ebuild,v 1.11 2013/02/20 09:47:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.12 2013/02/24 17:52:35 ago Exp $
 
 EAPI=4
 inherit elisp-common java-pkg-opt-2 mono
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs java mono nls static-libs"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )



1.188                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.187
retrieving revision 1.188
diff -u -r1.187 -r1.188
--- ChangeLog	20 Feb 2013 09:47:52 -0000	1.187
+++ ChangeLog	24 Feb 2013 17:52:35 -0000	1.188
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/libidn
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.187 2013/02/20 09:47:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.188 2013/02/24 17:52:35 ago Exp $
+
+  24 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
+  Stable for sh, wrt bug #454178
 
   20 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
   Stable for s390, wrt bug #454178





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

* [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog
@ 2013-02-26 11:06 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 13+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-26 11:06 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/26 11:06:00

  Modified:             libidn-1.26.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #454178
  
  (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.13                 net-dns/libidn/libidn-1.26.ebuild

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

Index: libidn-1.26.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- libidn-1.26.ebuild	24 Feb 2013 17:52:35 -0000	1.12
+++ libidn-1.26.ebuild	26 Feb 2013 11:06:00 -0000	1.13
@@ -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/libidn/libidn-1.26.ebuild,v 1.12 2013/02/24 17:52:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/libidn-1.26.ebuild,v 1.13 2013/02/26 11:06:00 ago Exp $
 
 EAPI=4
 inherit elisp-common java-pkg-opt-2 mono
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2 GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc emacs java mono nls static-libs"
 
 DOCS=( AUTHORS ChangeLog FAQ NEWS README THANKS TODO )



1.189                net-dns/libidn/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -r1.188 -r1.189
--- ChangeLog	24 Feb 2013 17:52:35 -0000	1.188
+++ ChangeLog	26 Feb 2013 11:06:00 -0000	1.189
@@ -1,6 +1,9 @@
 # ChangeLog for net-dns/libidn
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.188 2013/02/24 17:52:35 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/libidn/ChangeLog,v 1.189 2013/02/26 11:06:00 ago Exp $
+
+  26 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
+  Stable for amd64, wrt bug #454178
 
   24 Feb 2013; Agostino Sarubbo <ago@gentoo.org> libidn-1.26.ebuild:
   Stable for sh, wrt bug #454178





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

end of thread, other threads:[~2013-02-26 11:06 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-15 17:52 [gentoo-commits] gentoo-x86 commit in net-dns/libidn: libidn-1.26.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2013-01-19 17:09 Jeroen Roovers (jer)
2013-01-29 11:17 Agostino Sarubbo (ago)
2013-01-30 15:03 Jeroen Roovers (jer)
2013-01-30 18:08 Agostino Sarubbo (ago)
2013-01-31 22:33 Agostino Sarubbo (ago)
2013-01-31 23:05 Agostino Sarubbo (ago)
2013-02-03 19:36 Agostino Sarubbo (ago)
2013-02-04  9:48 Agostino Sarubbo (ago)
2013-02-06 19:43 Agostino Sarubbo (ago)
2013-02-20  9:47 Agostino Sarubbo (ago)
2013-02-24 17:52 Agostino Sarubbo (ago)
2013-02-26 11:06 Agostino Sarubbo (ago)

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