public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-editors/nvi: ChangeLog nvi-1.81.6-r3.ebuild
@ 2009-10-08 19:54 Harald van Dijk (truedfx)
  0 siblings, 0 replies; 11+ messages in thread
From: Harald van Dijk (truedfx) @ 2009-10-08 19:54 UTC (permalink / raw
  To: gentoo-commits

truedfx     09/10/08 19:54:17

  Modified:             ChangeLog nvi-1.81.6-r3.ebuild
  Log:
  Fix build with perl and --as-needed, triggered by perl 5.10
  (Portage version: 2.2_rc44/cvs/Linux i686)

Revision  Changes    Path
1.73                 app-editors/nvi/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/nvi/ChangeLog?r1=1.72&r2=1.73

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog	26 Sep 2009 08:47:51 -0000	1.72
+++ ChangeLog	8 Oct 2009 19:54:16 -0000	1.73
@@ -1,6 +1,10 @@
 # ChangeLog for app-editors/nvi
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.72 2009/09/26 08:47:51 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.73 2009/10/08 19:54:16 truedfx Exp $
+
+  06 Oct 2009; Harald van Dijk <truedfx@gentoo.org> nvi-1.81.6-r3.ebuild,
+  +files/nvi-1.81.6-perl-as-needed.patch:
+  Fix build with perl and --as-needed, triggered by perl 5.10
 
 *nvi-1.81.6-r3 (26 Sep 2009)
 



1.2                  app-editors/nvi/nvi-1.81.6-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?r1=1.1&r2=1.2

Index: nvi-1.81.6-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- nvi-1.81.6-r3.ebuild	26 Sep 2009 08:47:51 -0000	1.1
+++ nvi-1.81.6-r3.ebuild	8 Oct 2009 19:54:16 -0000	1.2
@@ -1,8 +1,8 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.1 2009/09/26 08:47:51 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.2 2009/10/08 19:54:16 truedfx Exp $
 
-inherit db-use eutils flag-o-matic
+inherit autotools db-use eutils flag-o-matic
 
 DBVERS="4.7 4.6 4.5 4.4 4.3 4.2"
 
@@ -33,13 +33,16 @@
 
 src_unpack() {
 	unpack ${A}
-	cd "${S}"
+	cd "${S}" || die
 	epatch "${FILESDIR}"/${P}-db44.patch
 	epatch "${FILESDIR}"/${P}-db.patch
-	chmod +x ../dist/findconfig
-
+	epatch "${FILESDIR}"/${P}-perl-as-needed.patch
+	cd ../dist || die
+	chmod +x findconfig || die
 	append-flags -I"$(db_includedir ${DBVERS})"
-	sed -i -e "s@-ldb@-l$(db_libname ${DBVERS})@" ../dist/configure
+	sed -i -e "s@-ldb@-l$(db_libname ${DBVERS})@" configure.in || die
+	rm -f configure || die
+	eautoreconf -Im4
 }
 
 src_compile() {






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

* [gentoo-commits] gentoo-x86 commit in app-editors/nvi: ChangeLog nvi-1.81.6-r3.ebuild
@ 2009-10-10 22:48 Harald van Dijk (truedfx)
  0 siblings, 0 replies; 11+ messages in thread
From: Harald van Dijk (truedfx) @ 2009-10-10 22:48 UTC (permalink / raw
  To: gentoo-commits

truedfx     09/10/10 22:48:35

  Modified:             ChangeLog nvi-1.81.6-r3.ebuild
  Log:
  Fix build with perl-5.10 with USE=-ithreads (#287654)
  (Portage version: 2.2_rc44/cvs/Linux i686)

Revision  Changes    Path
1.74                 app-editors/nvi/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/nvi/ChangeLog?r1=1.73&r2=1.74

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	8 Oct 2009 19:54:16 -0000	1.73
+++ ChangeLog	10 Oct 2009 22:48:34 -0000	1.74
@@ -1,6 +1,10 @@
 # ChangeLog for app-editors/nvi
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.73 2009/10/08 19:54:16 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.74 2009/10/10 22:48:34 truedfx Exp $
+
+  10 Oct 2009; Harald van Dijk <truedfx@gentoo.org> nvi-1.81.6-r3.ebuild,
+  +files/nvi-1.81.6-perl-shortnames.patch:
+  Fix build with perl-5.10 with USE=-ithreads (#287654)
 
   06 Oct 2009; Harald van Dijk <truedfx@gentoo.org> nvi-1.81.6-r3.ebuild,
   +files/nvi-1.81.6-perl-as-needed.patch:



1.3                  app-editors/nvi/nvi-1.81.6-r3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?r1=1.2&r2=1.3

Index: nvi-1.81.6-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- nvi-1.81.6-r3.ebuild	8 Oct 2009 19:54:16 -0000	1.2
+++ nvi-1.81.6-r3.ebuild	10 Oct 2009 22:48:34 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.2 2009/10/08 19:54:16 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.3 2009/10/10 22:48:34 truedfx Exp $
 
 inherit autotools db-use eutils flag-o-matic
 
@@ -37,6 +37,7 @@
 	epatch "${FILESDIR}"/${P}-db44.patch
 	epatch "${FILESDIR}"/${P}-db.patch
 	epatch "${FILESDIR}"/${P}-perl-as-needed.patch
+	epatch "${FILESDIR}"/${P}-perl-shortnames.patch
 	cd ../dist || die
 	chmod +x findconfig || die
 	append-flags -I"$(db_includedir ${DBVERS})"






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

* [gentoo-commits] gentoo-x86 commit in app-editors/nvi: ChangeLog nvi-1.81.6-r3.ebuild
@ 2010-05-11 22:58 Harald van Dijk (truedfx)
  0 siblings, 0 replies; 11+ messages in thread
From: Harald van Dijk (truedfx) @ 2010-05-11 22:58 UTC (permalink / raw
  To: gentoo-commits

truedfx     10/05/11 22:58:10

  Modified:             ChangeLog nvi-1.81.6-r3.ebuild
  Log:
  Allow building with DB 4.8.30
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.76                 app-editors/nvi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	10 Jan 2010 18:34:15 -0000	1.75
+++ ChangeLog	11 May 2010 22:58:10 -0000	1.76
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nvi
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.75 2010/01/10 18:34:15 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.76 2010/05/11 22:58:10 truedfx Exp $
+
+  11 May 2010; Harald van Dijk <truedfx@gentoo.org> nvi-1.81.6-r3.ebuild:
+  Allow building with DB 4.8.30
 
   10 Jan 2010; Harald van Dijk <truedfx@gentoo.org> nvi-1.81.6-r2.ebuild,
   nvi-1.81.6-r3.ebuild:



1.5                  app-editors/nvi/nvi-1.81.6-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?r1=1.4&r2=1.5

Index: nvi-1.81.6-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- nvi-1.81.6-r3.ebuild	10 Jan 2010 18:34:15 -0000	1.4
+++ nvi-1.81.6-r3.ebuild	11 May 2010 22:58:10 -0000	1.5
@@ -1,10 +1,24 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.4 2010/01/10 18:34:15 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.5 2010/05/11 22:58:10 truedfx Exp $
+
+EAPI=1
 
 inherit autotools db-use eutils flag-o-matic
 
-DBVERS="4.7 4.6 4.5 4.4 4.3 4.2"
+DBVERS="4.8.30 4.7 4.6 4.5 4.4 4.3 4.2"
+DBSLOTS=
+DBDEPENDS=
+for DBVER in ${DBVERS}
+do
+	if [[ ${DBVER} = *.*.* ]]; then
+		DBSLOTS="${DBSLOTS} ${DBVER%.*}"
+		DBDEPENDS="${DBDEPENDS} >=sys-libs/db-${DBVER}:${DBVER%.*}"
+	else
+		DBSLOTS="${DBSLOTS} ${DBVER}"
+		DBDEPENDS="${DBDEPENDS} sys-libs/db:${DBVER}"
+	fi
+done
 
 DESCRIPTION="Vi clone"
 HOMEPAGE="http://www.bostic.com/vi/"
@@ -15,7 +29,7 @@
 KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="perl tcl unicode"
 
-DEPEND="|| ( $(printf "=sys-libs/db-%s*\n" ${DBVERS}) )
+DEPEND="|| ( ${DBDEPENDS} )
 	perl? ( dev-lang/perl )
 	tcl? ( !unicode? ( >=dev-lang/tcl-8.5 ) )"
 RDEPEND="${DEPEND}
@@ -40,8 +54,8 @@
 	epatch "${FILESDIR}"/${P}-perl-shortnames.patch
 	cd ../dist || die
 	chmod +x findconfig || die
-	append-flags -I"$(db_includedir ${DBVERS})"
-	sed -i -e "s@-ldb@-l$(db_libname ${DBVERS})@" configure.in || die
+	append-flags -I"$(db_includedir ${DBSLOTS})"
+	sed -i -e "s@-ldb@-l$(db_libname ${DBSLOTS})@" configure.in || die
 	rm -f configure || die
 	eautoreconf -Im4
 }






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

* [gentoo-commits] gentoo-x86 commit in app-editors/nvi: ChangeLog nvi-1.81.6-r3.ebuild
@ 2010-10-22 17:38 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 11+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-10-22 17:38 UTC (permalink / raw
  To: gentoo-commits

fauli       10/10/22 17:38:11

  Modified:             ChangeLog nvi-1.81.6-r3.ebuild
  Log:
  stable x86, bug 341179
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.77                 app-editors/nvi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.77&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.77&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?r1=1.76&r2=1.77

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -r1.76 -r1.77
--- ChangeLog	11 May 2010 22:58:10 -0000	1.76
+++ ChangeLog	22 Oct 2010 17:38:11 -0000	1.77
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nvi
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.76 2010/05/11 22:58:10 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.77 2010/10/22 17:38:11 fauli Exp $
+
+  22 Oct 2010; Christian Faulhammer <fauli@gentoo.org> nvi-1.81.6-r3.ebuild:
+  stable x86, bug 341179
 
   11 May 2010; Harald van Dijk <truedfx@gentoo.org> nvi-1.81.6-r3.ebuild:
   Allow building with DB 4.8.30



1.6                  app-editors/nvi/nvi-1.81.6-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?r1=1.5&r2=1.6

Index: nvi-1.81.6-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- nvi-1.81.6-r3.ebuild	11 May 2010 22:58:10 -0000	1.5
+++ nvi-1.81.6-r3.ebuild	22 Oct 2010 17:38:11 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.5 2010/05/11 22:58:10 truedfx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.6 2010/10/22 17:38:11 fauli Exp $
 
 EAPI=1
 
@@ -26,7 +26,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="perl tcl unicode"
 
 DEPEND="|| ( ${DBDEPENDS} )






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

* [gentoo-commits] gentoo-x86 commit in app-editors/nvi: ChangeLog nvi-1.81.6-r3.ebuild
@ 2010-10-22 17:46 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 11+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-10-22 17:46 UTC (permalink / raw
  To: gentoo-commits

hwoarang    10/10/22 17:46:39

  Modified:             ChangeLog nvi-1.81.6-r3.ebuild
  Log:
  Stable on amd64 wrt bug #341179
  
  (Portage version: 2.2_rc99/cvs/Linux x86_64)

Revision  Changes    Path
1.78                 app-editors/nvi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?r1=1.77&r2=1.78

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	22 Oct 2010 17:38:11 -0000	1.77
+++ ChangeLog	22 Oct 2010 17:46:39 -0000	1.78
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nvi
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.77 2010/10/22 17:38:11 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.78 2010/10/22 17:46:39 hwoarang Exp $
+
+  22 Oct 2010; Markos Chandras <hwoarang@gentoo.org> nvi-1.81.6-r3.ebuild:
+  Stable on amd64 wrt bug #341179
 
   22 Oct 2010; Christian Faulhammer <fauli@gentoo.org> nvi-1.81.6-r3.ebuild:
   stable x86, bug 341179



1.7                  app-editors/nvi/nvi-1.81.6-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?r1=1.6&r2=1.7

Index: nvi-1.81.6-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- nvi-1.81.6-r3.ebuild	22 Oct 2010 17:38:11 -0000	1.6
+++ nvi-1.81.6-r3.ebuild	22 Oct 2010 17:46:39 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.6 2010/10/22 17:38:11 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.7 2010/10/22 17:46:39 hwoarang Exp $
 
 EAPI=1
 
@@ -26,7 +26,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="perl tcl unicode"
 
 DEPEND="|| ( ${DBDEPENDS} )






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

* [gentoo-commits] gentoo-x86 commit in app-editors/nvi: ChangeLog nvi-1.81.6-r3.ebuild
@ 2010-10-22 19:16 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 11+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-10-22 19:16 UTC (permalink / raw
  To: gentoo-commits

ssuominen    10/10/22 19:16:23

  Modified:             ChangeLog nvi-1.81.6-r3.ebuild
  Log:
  ppc64 stable wrt #341179
  
  (Portage version: 2.2_rc99/cvs/Linux x86_64)

Revision  Changes    Path
1.79                 app-editors/nvi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?r1=1.78&r2=1.79

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	22 Oct 2010 17:46:39 -0000	1.78
+++ ChangeLog	22 Oct 2010 19:16:23 -0000	1.79
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nvi
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.78 2010/10/22 17:46:39 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.79 2010/10/22 19:16:23 ssuominen Exp $
+
+  22 Oct 2010; Samuli Suominen <ssuominen@gentoo.org> nvi-1.81.6-r3.ebuild:
+  ppc64 stable wrt #341179
 
   22 Oct 2010; Markos Chandras <hwoarang@gentoo.org> nvi-1.81.6-r3.ebuild:
   Stable on amd64 wrt bug #341179



1.8                  app-editors/nvi/nvi-1.81.6-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?r1=1.7&r2=1.8

Index: nvi-1.81.6-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- nvi-1.81.6-r3.ebuild	22 Oct 2010 17:46:39 -0000	1.7
+++ nvi-1.81.6-r3.ebuild	22 Oct 2010 19:16:23 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.7 2010/10/22 17:46:39 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.8 2010/10/22 19:16:23 ssuominen Exp $
 
 EAPI=1
 
@@ -26,7 +26,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ppc64 ~sparc x86"
 IUSE="perl tcl unicode"
 
 DEPEND="|| ( ${DBDEPENDS} )






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

* [gentoo-commits] gentoo-x86 commit in app-editors/nvi: ChangeLog nvi-1.81.6-r3.ebuild
@ 2010-10-23 19:12 Brent Baude (ranger)
  0 siblings, 0 replies; 11+ messages in thread
From: Brent Baude (ranger) @ 2010-10-23 19:12 UTC (permalink / raw
  To: gentoo-commits

ranger      10/10/23 19:12:03

  Modified:             ChangeLog nvi-1.81.6-r3.ebuild
  Log:
  Marking nvi-1.81.6-r3 ppc for bug 341179
  (Portage version: 2.1.8.3/cvs/Linux ppc64)

Revision  Changes    Path
1.80                 app-editors/nvi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.80&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.80&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?r1=1.79&r2=1.80

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog	22 Oct 2010 19:16:23 -0000	1.79
+++ ChangeLog	23 Oct 2010 19:12:03 -0000	1.80
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nvi
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.79 2010/10/22 19:16:23 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.80 2010/10/23 19:12:03 ranger Exp $
+
+  23 Oct 2010; Brent Baude <ranger@gentoo.org> nvi-1.81.6-r3.ebuild:
+  Marking nvi-1.81.6-r3 ppc for bug 341179
 
   22 Oct 2010; Samuli Suominen <ssuominen@gentoo.org> nvi-1.81.6-r3.ebuild:
   ppc64 stable wrt #341179



1.9                  app-editors/nvi/nvi-1.81.6-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?r1=1.8&r2=1.9

Index: nvi-1.81.6-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- nvi-1.81.6-r3.ebuild	22 Oct 2010 19:16:23 -0000	1.8
+++ nvi-1.81.6-r3.ebuild	23 Oct 2010 19:12:03 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.8 2010/10/22 19:16:23 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.9 2010/10/23 19:12:03 ranger Exp $
 
 EAPI=1
 
@@ -26,7 +26,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~hppa ~mips ppc ppc64 ~sparc x86"
 IUSE="perl tcl unicode"
 
 DEPEND="|| ( ${DBDEPENDS} )






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

* [gentoo-commits] gentoo-x86 commit in app-editors/nvi: ChangeLog nvi-1.81.6-r3.ebuild
@ 2010-10-24 18:27 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2010-10-24 18:27 UTC (permalink / raw
  To: gentoo-commits

jer         10/10/24 18:27:37

  Modified:             ChangeLog nvi-1.81.6-r3.ebuild
  Log:
  Stable for HPPA (bug #341179).
  
  (Portage version: 2.2_rc99/cvs/Linux i686)

Revision  Changes    Path
1.81                 app-editors/nvi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	23 Oct 2010 19:12:03 -0000	1.80
+++ ChangeLog	24 Oct 2010 18:27:37 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nvi
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.80 2010/10/23 19:12:03 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.81 2010/10/24 18:27:37 jer Exp $
+
+  24 Oct 2010; Jeroen Roovers <jer@gentoo.org> nvi-1.81.6-r3.ebuild:
+  Stable for HPPA (bug #341179).
 
   23 Oct 2010; Brent Baude <ranger@gentoo.org> nvi-1.81.6-r3.ebuild:
   Marking nvi-1.81.6-r3 ppc for bug 341179



1.10                 app-editors/nvi/nvi-1.81.6-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?r1=1.9&r2=1.10

Index: nvi-1.81.6-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nvi-1.81.6-r3.ebuild	23 Oct 2010 19:12:03 -0000	1.9
+++ nvi-1.81.6-r3.ebuild	24 Oct 2010 18:27:37 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.9 2010/10/23 19:12:03 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.10 2010/10/24 18:27:37 jer Exp $
 
 EAPI=1
 
@@ -26,7 +26,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 hppa ~mips ppc ppc64 ~sparc x86"
 IUSE="perl tcl unicode"
 
 DEPEND="|| ( ${DBDEPENDS} )






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

* [gentoo-commits] gentoo-x86 commit in app-editors/nvi: ChangeLog nvi-1.81.6-r3.ebuild
@ 2010-11-13 14:33 Raul Porcel (armin76)
  0 siblings, 0 replies; 11+ messages in thread
From: Raul Porcel (armin76) @ 2010-11-13 14:33 UTC (permalink / raw
  To: gentoo-commits

armin76     10/11/13 14:33:37

  Modified:             ChangeLog nvi-1.81.6-r3.ebuild
  Log:
  alpha/sparc stable wrt #341179
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.82                 app-editors/nvi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?r1=1.81&r2=1.82

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog	24 Oct 2010 18:27:37 -0000	1.81
+++ ChangeLog	13 Nov 2010 14:33:37 -0000	1.82
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nvi
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.81 2010/10/24 18:27:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.82 2010/11/13 14:33:37 armin76 Exp $
+
+  13 Nov 2010; Raúl Porcel <armin76@gentoo.org> nvi-1.81.6-r3.ebuild:
+  alpha/sparc stable wrt #341179
 
   24 Oct 2010; Jeroen Roovers <jer@gentoo.org> nvi-1.81.6-r3.ebuild:
   Stable for HPPA (bug #341179).



1.11                 app-editors/nvi/nvi-1.81.6-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?r1=1.10&r2=1.11

Index: nvi-1.81.6-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- nvi-1.81.6-r3.ebuild	24 Oct 2010 18:27:37 -0000	1.10
+++ nvi-1.81.6-r3.ebuild	13 Nov 2010 14:33:37 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.10 2010/10/24 18:27:37 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.11 2010/11/13 14:33:37 armin76 Exp $
 
 EAPI=1
 
@@ -26,7 +26,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 hppa ~mips ppc ppc64 sparc x86"
 IUSE="perl tcl unicode"
 
 DEPEND="|| ( ${DBDEPENDS} )






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

* [gentoo-commits] gentoo-x86 commit in app-editors/nvi: ChangeLog nvi-1.81.6-r3.ebuild
@ 2011-07-20 16:40 Pacho Ramos (pacho)
  0 siblings, 0 replies; 11+ messages in thread
From: Pacho Ramos (pacho) @ 2011-07-20 16:40 UTC (permalink / raw
  To: gentoo-commits

pacho       11/07/20 16:40:43

  Modified:             ChangeLog nvi-1.81.6-r3.ebuild
  Log:
  Fix homepage, bug #352428 by David.
  
  (Portage version: 2.1.10.6/cvs/Linux x86_64)

Revision  Changes    Path
1.84                 app-editors/nvi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	20 Jul 2011 16:19:49 -0000	1.83
+++ ChangeLog	20 Jul 2011 16:40:43 -0000	1.84
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nvi
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.83 2011/07/20 16:19:49 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.84 2011/07/20 16:40:43 pacho Exp $
+
+  20 Jul 2011; Pacho Ramos <pacho@gentoo.org> nvi-1.81.6-r3.ebuild:
+  Fix homepage, bug #352428 by David.
 
   20 Jul 2011; Pacho Ramos <pacho@gentoo.org> -nvi-1.81.6-r2.ebuild,
   metadata.xml:



1.12                 app-editors/nvi/nvi-1.81.6-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?r1=1.11&r2=1.12

Index: nvi-1.81.6-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- nvi-1.81.6-r3.ebuild	13 Nov 2010 14:33:37 -0000	1.11
+++ nvi-1.81.6-r3.ebuild	20 Jul 2011 16:40:43 -0000	1.12
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.11 2010/11/13 14:33:37 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.12 2011/07/20 16:40:43 pacho Exp $
 
 EAPI=1
 
@@ -21,7 +21,7 @@
 done
 
 DESCRIPTION="Vi clone"
-HOMEPAGE="http://www.bostic.com/vi/"
+HOMEPAGE="https://sites.google.com/a/bostic.com/keithbostic/nvi"
 SRC_URI="http://www.kotnet.org/~skimo/nvi/devel/${P}.tar.bz2"
 
 LICENSE="BSD"






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

* [gentoo-commits] gentoo-x86 commit in app-editors/nvi: ChangeLog nvi-1.81.6-r3.ebuild
@ 2011-09-01 21:53 Jesus Rivero (neurogeek)
  0 siblings, 0 replies; 11+ messages in thread
From: Jesus Rivero (neurogeek) @ 2011-09-01 21:53 UTC (permalink / raw
  To: gentoo-commits

neurogeek    11/09/01 21:53:59

  Modified:             ChangeLog nvi-1.81.6-r3.ebuild
  Log:
  Added sys-libs/ncurses to DEPEND wrt bug #381025
  
  (Portage version: 2.2.0_alpha46/cvs/Linux i686)

Revision  Changes    Path
1.86                 app-editors/nvi/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.86&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?rev=1.86&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/ChangeLog?r1=1.85&r2=1.86

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -r1.85 -r1.86
--- ChangeLog	20 Jul 2011 18:27:20 -0000	1.85
+++ ChangeLog	1 Sep 2011 21:53:59 -0000	1.86
@@ -1,6 +1,9 @@
 # ChangeLog for app-editors/nvi
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.85 2011/07/20 18:27:20 neurogeek Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/ChangeLog,v 1.86 2011/09/01 21:53:59 neurogeek Exp $
+
+  01 Sep 2011; Jesus Rivero <neurogeek@gentoo.org> nvi-1.81.6-r3.ebuild:
+  Added sys-libs/ncurses to DEPEND wrt bug #381025
 
   20 Jul 2011; Jesus Rivero <neurogeek@gentoo.org> metadata.xml:
   Added myself as maintainer



1.13                 app-editors/nvi/nvi-1.81.6-r3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild?r1=1.12&r2=1.13

Index: nvi-1.81.6-r3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- nvi-1.81.6-r3.ebuild	20 Jul 2011 16:40:43 -0000	1.12
+++ nvi-1.81.6-r3.ebuild	1 Sep 2011 21:53:59 -0000	1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.12 2011/07/20 16:40:43 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/nvi/nvi-1.81.6-r3.ebuild,v 1.13 2011/09/01 21:53:59 neurogeek Exp $
 
 EAPI=1
 
@@ -30,6 +30,7 @@
 IUSE="perl tcl unicode"
 
 DEPEND="|| ( ${DBDEPENDS} )
+	>=sys-libs/ncurses-5.6-r2
 	perl? ( dev-lang/perl )
 	tcl? ( !unicode? ( >=dev-lang/tcl-8.5 ) )"
 RDEPEND="${DEPEND}






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

end of thread, other threads:[~2011-09-01 21:54 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-22 19:16 [gentoo-commits] gentoo-x86 commit in app-editors/nvi: ChangeLog nvi-1.81.6-r3.ebuild Samuli Suominen (ssuominen)
  -- strict thread matches above, loose matches on Subject: below --
2011-09-01 21:53 Jesus Rivero (neurogeek)
2011-07-20 16:40 Pacho Ramos (pacho)
2010-11-13 14:33 Raul Porcel (armin76)
2010-10-24 18:27 Jeroen Roovers (jer)
2010-10-23 19:12 Brent Baude (ranger)
2010-10-22 17:46 Markos Chandras (hwoarang)
2010-10-22 17:38 Christian Faulhammer (fauli)
2010-05-11 22:58 Harald van Dijk (truedfx)
2009-10-10 22:48 Harald van Dijk (truedfx)
2009-10-08 19:54 Harald van Dijk (truedfx)

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