public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2012-12-31 17:44 Jeroen Roovers (jer)
  0 siblings, 0 replies; 14+ messages in thread
From: Jeroen Roovers (jer) @ 2012-12-31 17:44 UTC (permalink / raw
  To: gentoo-commits

jer         12/12/31 17:44:01

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

Revision  Changes    Path
1.170                dev-util/dialog/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.170&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.170&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?r1=1.169&r2=1.170

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -r1.169 -r1.170
--- ChangeLog	16 Dec 2012 17:28:18 -0000	1.169
+++ ChangeLog	31 Dec 2012 17:44:01 -0000	1.170
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.169 2012/12/16 17:28:18 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.170 2012/12/31 17:44:01 jer Exp $
+
+*dialog-1.2.20121230 (31 Dec 2012)
+
+  31 Dec 2012; Jeroen Roovers <jer@gentoo.org> +dialog-1.2.20121230.ebuild:
+  Version bump.
 
   16 Dec 2012; Raúl Porcel <armin76@gentoo.org> dialog-1.1.20120706.ebuild:
   alpha/ia64/m68k/s390/sh/sparc stable wrt #440652



1.1                  dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.1&content-type=text/plain

Index: dialog-1.2.20121230.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.1 2012/12/31 17:44:01 jer Exp $

EAPI="4"

inherit multilib eutils

MY_PV="${PV/1.2./1.2-}"
S=${WORKDIR}/${PN}-${MY_PV}
DESCRIPTION="tool to display dialog boxes from a shell"
HOMEPAGE="http://invisible-island.net/dialog/dialog.html"
SRC_URI="ftp://invisible-island.net/${PN}/${PN}-${MY_PV}.tgz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
IUSE="examples minimal nls static-libs unicode"

RDEPEND="
	>=sys-libs/ncurses-5.2-r5
	unicode? ( sys-libs/ncurses[unicode] )
"
DEPEND="
	${RDEPEND}
	nls? ( sys-devel/gettext )
	!minimal? ( sys-devel/libtool )
	!<=sys-freebsd/freebsd-contrib-8.9999
"

src_prepare() {
	sed -i configure -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' || die
	sed -i '/$(LIBTOOL_COMPILE)/s:$: $(LIBTOOL_OPTS):' makefile.in || die
}

src_configure() {
	econf \
		--disable-rpath-hack \
		$(use_enable nls) \
		$(use_with !minimal libtool) \
		--with-libtool-opts=$(usex static-libs '' '-shared') \
		--with-ncurses$(usex unicode w '')
}

src_install() {
	if use minimal; then
		emake DESTDIR="${D}" install
	else
		emake DESTDIR="${D}" install-full
	fi

	dodoc CHANGES README

	if use examples; then
		docinto samples
		dodoc $( find samples -maxdepth 1 -type f )
		docinto samples/copifuncs
		dodoc $( find samples/copifuncs -maxdepth 1 -type f )
		docinto samples/install
		dodoc $( find samples/install -type f )
	fi

	if ! use static-libs; then
		rm -f "${ED}"usr/$(get_libdir)/libdialog.{la,a}
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-01-03  9:16 Jeroen Roovers (jer)
  0 siblings, 0 replies; 14+ messages in thread
From: Jeroen Roovers (jer) @ 2013-01-03  9:16 UTC (permalink / raw
  To: gentoo-commits

jer         13/01/03 09:16:35

  Modified:             dialog-1.2.20121230.ebuild ChangeLog
  Log:
  Use versionator.eclass instead of hard-wired MY_PV.
  
  (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.2                  dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.1&r2=1.2

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dialog-1.2.20121230.ebuild	31 Dec 2012 17:44:01 -0000	1.1
+++ dialog-1.2.20121230.ebuild	3 Jan 2013 09:16:35 -0000	1.2
@@ -1,12 +1,12 @@
-# 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/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.1 2012/12/31 17:44:01 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.2 2013/01/03 09:16:35 jer Exp $
 
 EAPI="4"
 
-inherit multilib eutils
+inherit eutils multilib versionator
 
-MY_PV="${PV/1.2./1.2-}"
+MY_PV="$(get_version_component_range 1-2)-$(get_version_component_range 3)"
 S=${WORKDIR}/${PN}-${MY_PV}
 DESCRIPTION="tool to display dialog boxes from a shell"
 HOMEPAGE="http://invisible-island.net/dialog/dialog.html"



1.171                dev-util/dialog/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.171&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.171&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?r1=1.170&r2=1.171

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog	31 Dec 2012 17:44:01 -0000	1.170
+++ ChangeLog	3 Jan 2013 09:16:35 -0000	1.171
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.170 2012/12/31 17:44:01 jer Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.171 2013/01/03 09:16:35 jer Exp $
+
+  03 Jan 2013; Jeroen Roovers <jer@gentoo.org> dialog-1.2.20121230.ebuild:
+  Use versionator.eclass instead of hard-wired MY_PV.
 
 *dialog-1.2.20121230 (31 Dec 2012)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-02-14 20:16 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-14 20:16 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/14 20:16:21

  Modified:             dialog-1.2.20121230.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #457344
  
  (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.2&r2=1.3

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- dialog-1.2.20121230.ebuild	3 Jan 2013 09:16:35 -0000	1.2
+++ dialog-1.2.20121230.ebuild	14 Feb 2013 20:16:21 -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/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.2 2013/01/03 09:16:35 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.3 2013/02/14 20:16:21 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="examples minimal nls static-libs unicode"
 
 RDEPEND="



1.172                dev-util/dialog/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.172&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.172&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?r1=1.171&r2=1.172

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- ChangeLog	3 Jan 2013 09:16:35 -0000	1.171
+++ ChangeLog	14 Feb 2013 20:16:21 -0000	1.172
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.171 2013/01/03 09:16:35 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.172 2013/02/14 20:16:21 ago Exp $
+
+  14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
+  Stable for amd64, wrt bug #457344
 
   03 Jan 2013; Jeroen Roovers <jer@gentoo.org> dialog-1.2.20121230.ebuild:
   Use versionator.eclass instead of hard-wired MY_PV.





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-02-14 20:20 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-14 20:20 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/14 20:20:41

  Modified:             dialog-1.2.20121230.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #457344
  
  (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.3&r2=1.4

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- dialog-1.2.20121230.ebuild	14 Feb 2013 20:16:21 -0000	1.3
+++ dialog-1.2.20121230.ebuild	14 Feb 2013 20:20:41 -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/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.3 2013/02/14 20:16:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.4 2013/02/14 20:20:41 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="examples minimal nls static-libs unicode"
 
 RDEPEND="



1.173                dev-util/dialog/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.173&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.173&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?r1=1.172&r2=1.173

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -r1.172 -r1.173
--- ChangeLog	14 Feb 2013 20:16:21 -0000	1.172
+++ ChangeLog	14 Feb 2013 20:20:41 -0000	1.173
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.172 2013/02/14 20:16:21 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.173 2013/02/14 20:20:41 ago Exp $
+
+  14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
+  Stable for x86, wrt bug #457344
 
   14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
   Stable for amd64, wrt bug #457344





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-02-14 21:35 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-14 21:35 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/14 21:35:25

  Modified:             dialog-1.2.20121230.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #457344
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.4&r2=1.5

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dialog-1.2.20121230.ebuild	14 Feb 2013 20:20:41 -0000	1.4
+++ dialog-1.2.20121230.ebuild	14 Feb 2013 21:35:25 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.4 2013/02/14 20:20:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.5 2013/02/14 21:35:25 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="examples minimal nls static-libs unicode"
 
 RDEPEND="



1.174                dev-util/dialog/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.174&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.174&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?r1=1.173&r2=1.174

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- ChangeLog	14 Feb 2013 20:20:41 -0000	1.173
+++ ChangeLog	14 Feb 2013 21:35:25 -0000	1.174
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.173 2013/02/14 20:20:41 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.174 2013/02/14 21:35:25 ago Exp $
+
+  14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
+  Stable for ppc64, wrt bug #457344
 
   14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
   Stable for x86, wrt bug #457344





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-02-14 22:02 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-14 22:02 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/14 22:02:38

  Modified:             dialog-1.2.20121230.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #457344
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.5&r2=1.6

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- dialog-1.2.20121230.ebuild	14 Feb 2013 21:35:25 -0000	1.5
+++ dialog-1.2.20121230.ebuild	14 Feb 2013 22:02:38 -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/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.5 2013/02/14 21:35:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.6 2013/02/14 22:02:38 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="examples minimal nls static-libs unicode"
 
 RDEPEND="



1.175                dev-util/dialog/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.175&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.175&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?r1=1.174&r2=1.175

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- ChangeLog	14 Feb 2013 21:35:25 -0000	1.174
+++ ChangeLog	14 Feb 2013 22:02:38 -0000	1.175
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.174 2013/02/14 21:35:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.175 2013/02/14 22:02:38 ago Exp $
+
+  14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
+  Stable for ppc, wrt bug #457344
 
   14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
   Stable for ppc64, wrt bug #457344





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-02-15 22:00 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-15 22:00 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/15 22:00:09

  Modified:             dialog-1.2.20121230.ebuild ChangeLog
  Log:
  Stable for arm, wrt bug #457344
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.6&r2=1.7

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- dialog-1.2.20121230.ebuild	14 Feb 2013 22:02:38 -0000	1.6
+++ dialog-1.2.20121230.ebuild	15 Feb 2013 22:00:09 -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/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.6 2013/02/14 22:02:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.7 2013/02/15 22:00:09 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="examples minimal nls static-libs unicode"
 
 RDEPEND="



1.176                dev-util/dialog/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.176&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.176&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?r1=1.175&r2=1.176

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -r1.175 -r1.176
--- ChangeLog	14 Feb 2013 22:02:38 -0000	1.175
+++ ChangeLog	15 Feb 2013 22:00:09 -0000	1.176
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.175 2013/02/14 22:02:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.176 2013/02/15 22:00:09 ago Exp $
+
+  15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
+  Stable for arm, wrt bug #457344
 
   14 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
   Stable for ppc, wrt bug #457344





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-02-15 22:37 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-15 22:37 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/15 22:37:06

  Modified:             dialog-1.2.20121230.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #457344
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.7&r2=1.8

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- dialog-1.2.20121230.ebuild	15 Feb 2013 22:00:09 -0000	1.7
+++ dialog-1.2.20121230.ebuild	15 Feb 2013 22:37:06 -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/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.7 2013/02/15 22:00:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.8 2013/02/15 22:37:06 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="examples minimal nls static-libs unicode"
 
 RDEPEND="



1.177                dev-util/dialog/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- ChangeLog	15 Feb 2013 22:00:09 -0000	1.176
+++ ChangeLog	15 Feb 2013 22:37:06 -0000	1.177
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.176 2013/02/15 22:00:09 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.177 2013/02/15 22:37:06 ago Exp $
+
+  15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
+  Stable for sparc, wrt bug #457344
 
   15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
   Stable for arm, wrt bug #457344





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-02-15 23:08 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-15 23:08 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/15 23:08:23

  Modified:             dialog-1.2.20121230.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #457344
  
  (Portage version: 2.1.11.31/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.8&r2=1.9

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- dialog-1.2.20121230.ebuild	15 Feb 2013 22:37:06 -0000	1.8
+++ dialog-1.2.20121230.ebuild	15 Feb 2013 23:08:23 -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/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.8 2013/02/15 22:37:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.9 2013/02/15 23:08:23 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="examples minimal nls static-libs unicode"
 
 RDEPEND="



1.178                dev-util/dialog/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -r1.177 -r1.178
--- ChangeLog	15 Feb 2013 22:37:06 -0000	1.177
+++ ChangeLog	15 Feb 2013 23:08:23 -0000	1.178
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.177 2013/02/15 22:37:06 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.178 2013/02/15 23:08:23 ago Exp $
+
+  15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
+  Stable for alpha, wrt bug #457344
 
   15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
   Stable for sparc, wrt bug #457344





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-02-17 18:33 Jeroen Roovers (jer)
  0 siblings, 0 replies; 14+ messages in thread
From: Jeroen Roovers (jer) @ 2013-02-17 18:33 UTC (permalink / raw
  To: gentoo-commits

jer         13/02/17 18:33:57

  Modified:             dialog-1.2.20121230.ebuild ChangeLog
  Log:
  Stable for HPPA (bug #457344).
  
  (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.10                 dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.9&r2=1.10

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- dialog-1.2.20121230.ebuild	15 Feb 2013 23:08:23 -0000	1.9
+++ dialog-1.2.20121230.ebuild	17 Feb 2013 18:33:57 -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/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.9 2013/02/15 23:08:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.10 2013/02/17 18:33:57 jer Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="examples minimal nls static-libs unicode"
 
 RDEPEND="



1.179                dev-util/dialog/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -r1.178 -r1.179
--- ChangeLog	15 Feb 2013 23:08:23 -0000	1.178
+++ ChangeLog	17 Feb 2013 18:33:57 -0000	1.179
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.178 2013/02/15 23:08:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.179 2013/02/17 18:33:57 jer Exp $
+
+  17 Feb 2013; Jeroen Roovers <jer@gentoo.org> dialog-1.2.20121230.ebuild:
+  Stable for HPPA (bug #457344).
 
   15 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
   Stable for alpha, wrt bug #457344





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-02-18 13:32 Jeroen Roovers (jer)
  0 siblings, 0 replies; 14+ messages in thread
From: Jeroen Roovers (jer) @ 2013-02-18 13:32 UTC (permalink / raw
  To: gentoo-commits

jer         13/02/18 13:32:23

  Modified:             dialog-1.2.20121230.ebuild ChangeLog
  Log:
  Fix USE=examples install (bug #458038 by Branko Majic).
  
  (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key A792A613)

Revision  Changes    Path
1.11                 dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.10&r2=1.11

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- dialog-1.2.20121230.ebuild	17 Feb 2013 18:33:57 -0000	1.10
+++ dialog-1.2.20121230.ebuild	18 Feb 2013 13:32:23 -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/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.10 2013/02/17 18:33:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.11 2013/02/18 13:32:23 jer Exp $
 
 EAPI="4"
 
@@ -44,23 +44,14 @@
 
 src_install() {
 	if use minimal; then
-		emake DESTDIR="${D}" install
+		default
 	else
 		emake DESTDIR="${D}" install-full
 	fi
 
 	dodoc CHANGES README
 
-	if use examples; then
-		docinto samples
-		dodoc $( find samples -maxdepth 1 -type f )
-		docinto samples/copifuncs
-		dodoc $( find samples/copifuncs -maxdepth 1 -type f )
-		docinto samples/install
-		dodoc $( find samples/install -type f )
-	fi
+	use examples && dodoc -r samples
 
-	if ! use static-libs; then
-		rm -f "${ED}"usr/$(get_libdir)/libdialog.{la,a}
-	fi
+	use static-libs || prune_libtool_files
 }



1.180                dev-util/dialog/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.179
retrieving revision 1.180
diff -u -r1.179 -r1.180
--- ChangeLog	17 Feb 2013 18:33:57 -0000	1.179
+++ ChangeLog	18 Feb 2013 13:32:23 -0000	1.180
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.179 2013/02/17 18:33:57 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.180 2013/02/18 13:32:23 jer Exp $
+
+  18 Feb 2013; Jeroen Roovers <jer@gentoo.org> dialog-1.2.20121230.ebuild:
+  Fix USE=examples install (bug #458038 by Branko Majic).
 
   17 Feb 2013; Jeroen Roovers <jer@gentoo.org> dialog-1.2.20121230.ebuild:
   Stable for HPPA (bug #457344).





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-02-20  9:24 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-20  9:24 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/20 09:24:48

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

Revision  Changes    Path
1.12                 dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.11&r2=1.12

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- dialog-1.2.20121230.ebuild	18 Feb 2013 13:32:23 -0000	1.11
+++ dialog-1.2.20121230.ebuild	20 Feb 2013 09:24:48 -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/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.11 2013/02/18 13:32:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.12 2013/02/20 09:24:48 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="examples minimal nls static-libs unicode"
 
 RDEPEND="



1.181                dev-util/dialog/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -r1.180 -r1.181
--- ChangeLog	18 Feb 2013 13:32:23 -0000	1.180
+++ ChangeLog	20 Feb 2013 09:24:48 -0000	1.181
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.180 2013/02/18 13:32:23 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.181 2013/02/20 09:24:48 ago Exp $
+
+  20 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
+  Stable for s390, wrt bug #457344
 
   18 Feb 2013; Jeroen Roovers <jer@gentoo.org> dialog-1.2.20121230.ebuild:
   Fix USE=examples install (bug #458038 by Branko Majic).





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-02-21 13:17 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-02-21 13:17 UTC (permalink / raw
  To: gentoo-commits

ago         13/02/21 13:17:48

  Modified:             dialog-1.2.20121230.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #457344
  
  (Portage version: 2.1.11.50/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.13                 dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.12&r2=1.13

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- dialog-1.2.20121230.ebuild	20 Feb 2013 09:24:48 -0000	1.12
+++ dialog-1.2.20121230.ebuild	21 Feb 2013 13:17:48 -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/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.12 2013/02/20 09:24:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.13 2013/02/21 13:17:48 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="examples minimal nls static-libs unicode"
 
 RDEPEND="



1.182                dev-util/dialog/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -r1.181 -r1.182
--- ChangeLog	20 Feb 2013 09:24:48 -0000	1.181
+++ ChangeLog	21 Feb 2013 13:17:48 -0000	1.182
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.181 2013/02/20 09:24:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.182 2013/02/21 13:17:48 ago Exp $
+
+  21 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
+  Stable for ia64, wrt bug #457344
 
   20 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
   Stable for s390, wrt bug #457344





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

* [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog
@ 2013-03-01 12:36 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 14+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-03-01 12:36 UTC (permalink / raw
  To: gentoo-commits

ago         13/03/01 12:36:18

  Modified:             dialog-1.2.20121230.ebuild ChangeLog
  Log:
  Stable for sh, wrt bug #457344
  
  (Portage version: 2.1.11.52/cvs/Linux ppc64, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.14                 dev-util/dialog/dialog-1.2.20121230.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild?r1=1.13&r2=1.14

Index: dialog-1.2.20121230.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- dialog-1.2.20121230.ebuild	21 Feb 2013 13:17:48 -0000	1.13
+++ dialog-1.2.20121230.ebuild	1 Mar 2013 12:36:18 -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/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.13 2013/02/21 13:17:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20121230.ebuild,v 1.14 2013/03/01 12:36:18 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="examples minimal nls static-libs unicode"
 
 RDEPEND="



1.183                dev-util/dialog/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -r1.182 -r1.183
--- ChangeLog	21 Feb 2013 13:17:48 -0000	1.182
+++ ChangeLog	1 Mar 2013 12:36:18 -0000	1.183
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.182 2013/02/21 13:17:48 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.183 2013/03/01 12:36:18 ago Exp $
+
+  01 Mar 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
+  Stable for sh, wrt bug #457344
 
   21 Feb 2013; Agostino Sarubbo <ago@gentoo.org> dialog-1.2.20121230.ebuild:
   Stable for ia64, wrt bug #457344





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

end of thread, other threads:[~2013-03-01 12:36 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-03  9:16 [gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20121230.ebuild ChangeLog Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2013-03-01 12:36 Agostino Sarubbo (ago)
2013-02-21 13:17 Agostino Sarubbo (ago)
2013-02-20  9:24 Agostino Sarubbo (ago)
2013-02-18 13:32 Jeroen Roovers (jer)
2013-02-17 18:33 Jeroen Roovers (jer)
2013-02-15 23:08 Agostino Sarubbo (ago)
2013-02-15 22:37 Agostino Sarubbo (ago)
2013-02-15 22:00 Agostino Sarubbo (ago)
2013-02-14 22:02 Agostino Sarubbo (ago)
2013-02-14 21:35 Agostino Sarubbo (ago)
2013-02-14 20:20 Agostino Sarubbo (ago)
2013-02-14 20:16 Agostino Sarubbo (ago)
2012-12-31 17:44 Jeroen Roovers (jer)

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