* [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/
@ 2016-08-06 12:47 Pacho Ramos
0 siblings, 0 replies; 12+ messages in thread
From: Pacho Ramos @ 2016-08-06 12:47 UTC (permalink / raw
To: gentoo-commits
commit: ac3387dcb81b3023c3698b74841fe2f9a79a7bc0
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 6 12:37:08 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Aug 6 12:45:49 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac3387dc
app-editors/nvi: Cleanup per bug #231477
Package-Manager: portage-2.3.0
app-editors/nvi/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/app-editors/nvi/metadata.xml b/app-editors/nvi/metadata.xml
index 4af65ec..097975e 100644
--- a/app-editors/nvi/metadata.xml
+++ b/app-editors/nvi/metadata.xml
@@ -1,8 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>neurogeek@gentoo.org</email>
- <name>Jesus Rivero</name>
- </maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/
@ 2016-08-07 8:35 David Seifert
0 siblings, 0 replies; 12+ messages in thread
From: David Seifert @ 2016-08-07 8:35 UTC (permalink / raw
To: gentoo-commits
commit: 66115b360f9945702ad0d9af3cf76ee8a28afe91
Author: Felix Janda <felix.janda <AT> posteo <DOT> de>
AuthorDate: Sat Aug 6 17:48:48 2016 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Aug 7 08:34:53 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66115b36
app-editors/nvi: drop old
Gentoo-Bug: https://bugs.gentoo.org/480292
Closes: https://github.com/gentoo/gentoo/pull/2029
Signed-off-by: David Seifert <soap <AT> gentoo.org>
app-editors/nvi/nvi-1.81.6-r3.ebuild | 90 ------------------------------------
1 file changed, 90 deletions(-)
diff --git a/app-editors/nvi/nvi-1.81.6-r3.ebuild b/app-editors/nvi/nvi-1.81.6-r3.ebuild
deleted file mode 100644
index 3e3e6e6..0000000
--- a/app-editors/nvi/nvi-1.81.6-r3.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools db-use eutils flag-o-matic
-
-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="https://sites.google.com/a/bostic.com/keithbostic/nvi"
-SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ~mips ppc ppc64 sparc x86"
-IUSE="perl tcl unicode"
-
-DEPEND="|| ( ${DBDEPENDS} )
- >=sys-libs/ncurses-5.6-r2[tinfo]
- perl? ( dev-lang/perl )
- tcl? ( !unicode? ( >=dev-lang/tcl-8.5:0 ) )"
-RDEPEND="${DEPEND}
- app-eselect/eselect-vi"
-
-S=${WORKDIR}/${P}/build.unix
-
-pkg_setup() {
- if use tcl && use unicode
- then
- ewarn "nvi does not support tcl+unicode. tcl support will not be included."
- ewarn "If you need tcl support, please disable the unicode flag."
- fi
-}
-
-src_prepare() {
- 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 ${DBSLOTS})"
- sed -i -e "s@-ldb@-l$(db_libname ${DBSLOTS})@" configure.in || die
- rm -f configure || die
- eautoreconf -Im4
-}
-
-src_compile() {
- local myconf
-
- use perl && myconf="${myconf} --enable-perlinterp"
- use tcl && ! use unicode && myconf="${myconf} --enable-tclinterp"
- use unicode && myconf="${myconf} --enable-widechar"
-
- append-flags '-D_PATH_MSGCAT="\"/usr/share/vi/catalog/\""'
-
- ECONF_SOURCE=../dist econf \
- --program-prefix=n \
- ${myconf} \
- || die "configure failed"
- emake OPTFLAG="${CFLAGS}" || die "make failed"
-}
-
-src_install() {
- emake -j1 DESTDIR="${D}" install || die "install failed"
-}
-
-pkg_postinst() {
- einfo "Setting /usr/bin/vi symlink"
- eselect vi update --if-unset
-}
-
-pkg_postrm() {
- einfo "Updating /usr/bin/vi symlink"
- eselect vi update --if-unset
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/
@ 2016-11-09 9:03 Pacho Ramos
0 siblings, 0 replies; 12+ messages in thread
From: Pacho Ramos @ 2016-11-09 9:03 UTC (permalink / raw
To: gentoo-commits
commit: c0a9b528a16185b57c48cfc46519d06b54482dfa
Author: Felix Janda <felix.janda <AT> posteo <DOT> de>
AuthorDate: Tue Nov 8 01:57:50 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Nov 9 09:01:16 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a9b528
app-editors/nvi: don't force <=sys-libs/db-4.8
Also, remove unecessary "! use unicode" tests, and add EPREFIX to the
message catalog path.
Gentoo-Bug: https://bugs.gentoo.org/599136
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
app-editors/nvi/nvi-1.81.6-r7.ebuild | 87 ++++++++++++++++++++++++++++++++++++
1 file changed, 87 insertions(+)
diff --git a/app-editors/nvi/nvi-1.81.6-r7.ebuild b/app-editors/nvi/nvi-1.81.6-r7.ebuild
new file mode 100644
index 00000000..33465b6
--- /dev/null
+++ b/app-editors/nvi/nvi-1.81.6-r7.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools db-use flag-o-matic
+
+DESCRIPTION="Vi clone"
+HOMEPAGE="https://sites.google.com/a/bostic.com/keithbostic/vi"
+SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="perl tcl unicode"
+
+CDEPEND=">=sys-libs/db-4.2.52_p5:=
+ >=sys-libs/ncurses-5.6-r2:=
+ perl? ( dev-lang/perl )
+ tcl? ( >=dev-lang/tcl-8.5:0 )"
+
+DEPEND="${CDEPEND}
+ virtual/pkgconfig"
+
+RDEPEND="${CDEPEND}
+ app-eselect/eselect-vi"
+
+REQUIRED_USE="tcl? ( !unicode )"
+
+PATCHES=(
+ "${FILESDIR}"/${P}-strlen-macro-renaming.patch
+ "${FILESDIR}"/${P}-db44.patch
+ "${FILESDIR}"/${P}-db.patch
+ "${FILESDIR}"/${P}-perl-as-needed.patch
+ "${FILESDIR}"/${P}-perl-shortnames.patch
+ "${FILESDIR}"/${P}-ac_config_header.patch
+ "${FILESDIR}"/${P}-use_pkgconfig_for_ncurses.patch
+ "${FILESDIR}"/${P}-printf-types.patch
+ )
+
+src_prepare() {
+ default
+
+ cd dist || die
+ chmod +x findconfig || die
+
+ mv configure.{in,ac} || die
+ sed -i -e "s@-ldb@-l$(db_libname)@" configure.ac || die
+ sed -i -e "s@^install-\(.*\)-local:@install-\1-hook:@" Makefile.am || die
+ eautoreconf -Im4
+}
+
+src_configure() {
+ local myconf
+
+ use perl && myconf="${myconf} --enable-perlinterp"
+ use unicode && myconf="${myconf} --enable-widechar"
+ use tcl && myconf="${myconf} --enable-tclinterp"
+
+ append-cppflags "-D_PATH_MSGCAT=\"\\\"${EPREFIX%/}/usr/share/vi/catalog/\\\"\""
+ append-cppflags -I"$(db_includedir)"
+
+ pushd dist 2>/dev/null || die
+ econf \
+ --program-prefix=n \
+ ${myconf}
+ popd 2>/dev/null || die
+}
+
+src_compile() {
+ emake -C dist
+}
+
+src_install() {
+ emake -C dist DESTDIR="${D}" install
+}
+
+pkg_postinst() {
+ einfo "Setting /usr/bin/vi symlink"
+ eselect vi update --if-unset
+}
+
+pkg_postrm() {
+ einfo "Updating /usr/bin/vi symlink"
+ eselect vi update --if-unset
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/
@ 2016-11-09 9:03 Pacho Ramos
0 siblings, 0 replies; 12+ messages in thread
From: Pacho Ramos @ 2016-11-09 9:03 UTC (permalink / raw
To: gentoo-commits
commit: e5a919b1d99c6187005b4f5c0311e8036c79c7d6
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 9 09:02:25 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Nov 9 09:02:25 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5a919b1
app-editors/nvi: Need to be rebuild when tcl subslot changes
Package-Manager: portage-2.3.2
app-editors/nvi/nvi-1.81.6-r7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-editors/nvi/nvi-1.81.6-r7.ebuild b/app-editors/nvi/nvi-1.81.6-r7.ebuild
index 33465b6..7d4fe00 100644
--- a/app-editors/nvi/nvi-1.81.6-r7.ebuild
+++ b/app-editors/nvi/nvi-1.81.6-r7.ebuild
@@ -18,7 +18,7 @@ IUSE="perl tcl unicode"
CDEPEND=">=sys-libs/db-4.2.52_p5:=
>=sys-libs/ncurses-5.6-r2:=
perl? ( dev-lang/perl )
- tcl? ( >=dev-lang/tcl-8.5:0 )"
+ tcl? ( >=dev-lang/tcl-8.5:0= )"
DEPEND="${CDEPEND}
virtual/pkgconfig"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/
@ 2017-02-16 17:16 Agostino Sarubbo
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo @ 2017-02-16 17:16 UTC (permalink / raw
To: gentoo-commits
commit: 5806c863b955fdce90c6e3f12ea83e29baff2283
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 16 17:16:00 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Feb 16 17:16:00 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5806c863
app-editors/nvi: amd64 stable wrt bug #609482
Package-Manager: portage-2.3.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-editors/nvi/nvi-1.81.6-r7.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-editors/nvi/nvi-1.81.6-r7.ebuild b/app-editors/nvi/nvi-1.81.6-r7.ebuild
index 7d4fe00aa2..434f2449d1 100644
--- a/app-editors/nvi/nvi-1.81.6-r7.ebuild
+++ b/app-editors/nvi/nvi-1.81.6-r7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -12,7 +12,7 @@ SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="perl tcl unicode"
CDEPEND=">=sys-libs/db-4.2.52_p5:=
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/
@ 2017-02-16 17:26 Agostino Sarubbo
0 siblings, 0 replies; 12+ messages in thread
From: Agostino Sarubbo @ 2017-02-16 17:26 UTC (permalink / raw
To: gentoo-commits
commit: 188df08b5ed8ee9c125ca0c867915c7725f20be0
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 16 17:25:58 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Feb 16 17:25:58 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=188df08b
app-editors/nvi: x86 stable wrt bug #609482
Package-Manager: portage-2.3.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-editors/nvi/nvi-1.81.6-r7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-editors/nvi/nvi-1.81.6-r7.ebuild b/app-editors/nvi/nvi-1.81.6-r7.ebuild
index 434f2449d1..90fc606e44 100644
--- a/app-editors/nvi/nvi-1.81.6-r7.ebuild
+++ b/app-editors/nvi/nvi-1.81.6-r7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc x86"
IUSE="perl tcl unicode"
CDEPEND=">=sys-libs/db-4.2.52_p5:=
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/
@ 2017-02-21 11:54 Tobias Klausmann
0 siblings, 0 replies; 12+ messages in thread
From: Tobias Klausmann @ 2017-02-21 11:54 UTC (permalink / raw
To: gentoo-commits
commit: 8a0177ca6532dfb45b52b8335865cafd4297ff21
Author: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 21 11:52:10 2017 +0000
Commit: Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Feb 21 11:52:10 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a0177ca
app-editors/nvi-1.81.6-r7: add alpha keyword
Gentoo-Bug: 609482
app-editors/nvi/nvi-1.81.6-r7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-editors/nvi/nvi-1.81.6-r7.ebuild b/app-editors/nvi/nvi-1.81.6-r7.ebuild
index 50e84560af..191304cc8f 100644
--- a/app-editors/nvi/nvi-1.81.6-r7.ebuild
+++ b/app-editors/nvi/nvi-1.81.6-r7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ~mips ~ppc ~ppc64 sparc x86"
IUSE="perl tcl unicode"
CDEPEND=">=sys-libs/db-4.2.52_p5:=
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/
@ 2017-05-01 5:40 Jeroen Roovers
0 siblings, 0 replies; 12+ messages in thread
From: Jeroen Roovers @ 2017-05-01 5:40 UTC (permalink / raw
To: gentoo-commits
commit: a7a84b0e006ee8124cbb4c55051b63cae8bad706
Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon May 1 05:39:49 2017 +0000
Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon May 1 05:39:49 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7a84b0e
app-editors/nvi: Stable for HPPA (bug #609482).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --ignore-arches
app-editors/nvi/nvi-1.81.6-r7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-editors/nvi/nvi-1.81.6-r7.ebuild b/app-editors/nvi/nvi-1.81.6-r7.ebuild
index 432fa6ae03d..7b4d84c7d6f 100644
--- a/app-editors/nvi/nvi-1.81.6-r7.ebuild
+++ b/app-editors/nvi/nvi-1.81.6-r7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ~mips ppc ppc64 sparc x86"
IUSE="perl tcl unicode"
CDEPEND=">=sys-libs/db-4.2.52_p5:=
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/
@ 2017-05-23 11:21 Fabian Groffen
0 siblings, 0 replies; 12+ messages in thread
From: Fabian Groffen @ 2017-05-23 11:21 UTC (permalink / raw
To: gentoo-commits
commit: 26e468fdc8f37e0195c847a93fd51da8e253567f
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Tue May 23 11:21:27 2017 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Tue May 23 11:21:27 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26e468fd
app-editors/nvi: fixed for and marked ~x64-macos
Package-Manager: Portage-2.3.5, Repoman-2.3.1
app-editors/nvi/nvi-1.81.6-r7.ebuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/app-editors/nvi/nvi-1.81.6-r7.ebuild b/app-editors/nvi/nvi-1.81.6-r7.ebuild
index 7b4d84c7d6f..05394818424 100644
--- a/app-editors/nvi/nvi-1.81.6-r7.ebuild
+++ b/app-editors/nvi/nvi-1.81.6-r7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~mips ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ~mips ppc ppc64 sparc x86 ~x64-macos"
IUSE="perl tcl unicode"
CDEPEND=">=sys-libs/db-4.2.52_p5:=
@@ -60,6 +60,9 @@ src_configure() {
append-cppflags "-D_PATH_MSGCAT=\"\\\"${EPREFIX%/}/usr/share/vi/catalog/\\\"\""
append-cppflags -I"$(db_includedir)"
+ # Darwin doesn't have stropts.h, bug #619416
+ [[ ${CHOST} == *-darwin* ]] && export vi_cv_sys5_pty=no
+
pushd dist 2>/dev/null || die
econf \
--program-prefix=n \
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/
@ 2017-10-20 7:45 Patrice Clement
0 siblings, 0 replies; 12+ messages in thread
From: Patrice Clement @ 2017-10-20 7:45 UTC (permalink / raw
To: gentoo-commits
commit: 554096bd0cdda94bad8bf19f0bb1a64604cddb3f
Author: Felix Janda <felix.janda <AT> posteo <DOT> de>
AuthorDate: Sun Oct 15 13:43:19 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Fri Oct 20 07:44:57 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=554096bd
app-editors/nvi: clean up old.
Closes: https://github.com/gentoo/gentoo/pull/5954
app-editors/nvi/nvi-1.81.6-r4.ebuild | 100 -----------------------------------
app-editors/nvi/nvi-1.81.6-r6.ebuild | 100 -----------------------------------
2 files changed, 200 deletions(-)
diff --git a/app-editors/nvi/nvi-1.81.6-r4.ebuild b/app-editors/nvi/nvi-1.81.6-r4.ebuild
deleted file mode 100644
index d73456df60b..00000000000
--- a/app-editors/nvi/nvi-1.81.6-r4.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit autotools db-use eutils flag-o-matic
-
-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="https://sites.google.com/a/bostic.com/keithbostic/vi"
-SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ~mips ppc ppc64 sparc x86"
-IUSE="perl tcl unicode"
-
-CDEPEND="|| ( ${DBDEPENDS} )
- >=sys-libs/ncurses-5.6-r2
- perl? ( dev-lang/perl )
- tcl? ( !unicode? ( >=dev-lang/tcl-8.5:0 ) )"
-
-DEPEND="${CDEPEND}
- virtual/pkgconfig"
-
-RDEPEND="${CDEPEND}
- app-eselect/eselect-vi"
-
-REQUIRED_USE="tcl? ( !unicode )"
-
-src_prepare() {
-
- epatch "${FILESDIR}"/${P}-db44.patch
- epatch "${FILESDIR}"/${P}-db.patch
- epatch "${FILESDIR}"/${P}-perl-as-needed.patch
- epatch "${FILESDIR}"/${P}-perl-shortnames.patch
- epatch "${FILESDIR}"/${P}-ac_config_header.patch
- epatch "${FILESDIR}"/${P}-use_pkgconfig_for_ncurses.patch
-
- cd dist || die
- chmod +x findconfig || die
-
- append-cppflags -I"$(db_includedir ${DBSLOTS})"
-
- sed -i -e "s@-ldb@-l$(db_libname ${DBSLOTS})@" configure.in || die
- rm -f configure || die
- eautoreconf -Im4
-}
-
-src_configure() {
- local myconf
-
- use perl && myconf="${myconf} --enable-perlinterp"
- use unicode && myconf="${myconf} --enable-widechar"
- use tcl && ! use unicode && myconf="${myconf} --enable-tclinterp"
-
- append-cppflags '-D_PATH_MSGCAT="\"/usr/share/vi/catalog/\""'
-
- pushd dist 2>/dev/null
- econf \
- --program-prefix=n \
- ${myconf} \
- || die "configure failed"
- popd 2>/dev/null
-}
-
-src_compile() {
- pushd dist 2>/dev/null
- emake || die "make failed"
- popd 2>/dev/null
-}
-
-src_install() {
- pushd dist 2>/dev/null
- emake -j1 DESTDIR="${D}" install || die "install failed"
- popd 2>/dev/null
-}
-
-pkg_postinst() {
- einfo "Setting /usr/bin/vi symlink"
- eselect vi update --if-unset
-}
-
-pkg_postrm() {
- einfo "Updating /usr/bin/vi symlink"
- eselect vi update --if-unset
-}
diff --git a/app-editors/nvi/nvi-1.81.6-r6.ebuild b/app-editors/nvi/nvi-1.81.6-r6.ebuild
deleted file mode 100644
index 716ff8d45ba..00000000000
--- a/app-editors/nvi/nvi-1.81.6-r6.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools db-use flag-o-matic
-
-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="https://sites.google.com/a/bostic.com/keithbostic/vi"
-SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86"
-IUSE="perl tcl unicode"
-
-CDEPEND="|| ( ${DBDEPENDS} )
- >=sys-libs/ncurses-5.6-r2:=
- perl? ( dev-lang/perl )
- tcl? ( !unicode? ( >=dev-lang/tcl-8.5:0 ) )"
-
-DEPEND="${CDEPEND}
- virtual/pkgconfig"
-
-RDEPEND="${CDEPEND}
- app-eselect/eselect-vi"
-
-REQUIRED_USE="tcl? ( !unicode )"
-
-PATCHES=(
- "${FILESDIR}"/${P}-strlen-macro-renaming.patch
- "${FILESDIR}"/${P}-db44.patch
- "${FILESDIR}"/${P}-db.patch
- "${FILESDIR}"/${P}-perl-as-needed.patch
- "${FILESDIR}"/${P}-perl-shortnames.patch
- "${FILESDIR}"/${P}-ac_config_header.patch
- "${FILESDIR}"/${P}-use_pkgconfig_for_ncurses.patch
- "${FILESDIR}"/${P}-printf-types.patch
- )
-
-src_prepare() {
- default
-
- cd dist || die
- chmod +x findconfig || die
-
- mv configure.{in,ac} || die
- sed -i -e "s@-ldb@-l$(db_libname ${DBSLOTS})@" configure.ac || die
- sed -i -e "s@^install-\(.*\)-local:@install-\1-hook:@" Makefile.am || die
- eautoreconf -Im4
-}
-
-src_configure() {
- local myconf
-
- use perl && myconf="${myconf} --enable-perlinterp"
- use unicode && myconf="${myconf} --enable-widechar"
- use tcl && ! use unicode && myconf="${myconf} --enable-tclinterp"
-
- append-cppflags '-D_PATH_MSGCAT="\"/usr/share/vi/catalog/\""'
- append-cppflags -I"$(db_includedir ${DBSLOTS})"
-
- pushd dist 2>/dev/null || die
- econf \
- --program-prefix=n \
- ${myconf}
- popd 2>/dev/null || die
-}
-
-src_compile() {
- emake -C dist
-}
-
-src_install() {
- emake -C dist DESTDIR="${D}" install
-}
-
-pkg_postinst() {
- einfo "Setting /usr/bin/vi symlink"
- eselect vi update --if-unset
-}
-
-pkg_postrm() {
- einfo "Updating /usr/bin/vi symlink"
- eselect vi update --if-unset
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/
@ 2018-01-03 15:44 Patrice Clement
0 siblings, 0 replies; 12+ messages in thread
From: Patrice Clement @ 2018-01-03 15:44 UTC (permalink / raw
To: gentoo-commits
commit: b150b16ce374e7f635643699dd6b3397a1180476
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 3 15:43:38 2018 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Jan 3 15:44:09 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b150b16c
app-editors/nvi: add ~amd64-fbsd keyword.
Package-Manager: Portage-2.3.13, Repoman-2.3.4
app-editors/nvi/nvi-1.81.6-r7.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-editors/nvi/nvi-1.81.6-r7.ebuild b/app-editors/nvi/nvi-1.81.6-r7.ebuild
index 05394818424..cb13313dae9 100644
--- a/app-editors/nvi/nvi-1.81.6-r7.ebuild
+++ b/app-editors/nvi/nvi-1.81.6-r7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~mips ppc ppc64 sparc x86 ~x64-macos"
+KEYWORDS="alpha amd64 ~arm hppa ~mips ppc ppc64 sparc x86 ~x64-macos ~amd64-fbsd"
IUSE="perl tcl unicode"
CDEPEND=">=sys-libs/db-4.2.52_p5:=
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/
@ 2019-07-18 6:18 Michał Górny
0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2019-07-18 6:18 UTC (permalink / raw
To: gentoo-commits
commit: e8c9e2b956cb833c8d2043055a60ee92cd73e74e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 18 06:08:16 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jul 18 06:18:15 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8c9e2b9
app-editors/nvi: Use longer description
Closes: https://bugs.gentoo.org/689442
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-editors/nvi/nvi-1.81.6-r7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-editors/nvi/nvi-1.81.6-r7.ebuild b/app-editors/nvi/nvi-1.81.6-r7.ebuild
index b03ed765c42..f92396e0543 100644
--- a/app-editors/nvi/nvi-1.81.6-r7.ebuild
+++ b/app-editors/nvi/nvi-1.81.6-r7.ebuild
@@ -5,7 +5,7 @@ EAPI=6
inherit autotools db-use flag-o-matic
-DESCRIPTION="Vi clone"
+DESCRIPTION="Re-implementation of the classic 4BSD ex/vi"
HOMEPAGE="https://sites.google.com/a/bostic.com/keithbostic/vi"
SRC_URI="http://garage.linux.student.kuleuven.be/~skimo/nvi/devel/${P}.tar.bz2"
^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2019-07-18 6:18 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-07 8:35 [gentoo-commits] repo/gentoo:master commit in: app-editors/nvi/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2019-07-18 6:18 Michał Górny
2018-01-03 15:44 Patrice Clement
2017-10-20 7:45 Patrice Clement
2017-05-23 11:21 Fabian Groffen
2017-05-01 5:40 Jeroen Roovers
2017-02-21 11:54 Tobias Klausmann
2017-02-16 17:26 Agostino Sarubbo
2017-02-16 17:16 Agostino Sarubbo
2016-11-09 9:03 Pacho Ramos
2016-11-09 9:03 Pacho Ramos
2016-08-06 12:47 Pacho Ramos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox