notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
All times are UTC
Ukraine
non port: editors/nvi-devel/Makefile

Number of commits found: 53

Monday, 27 Jul 2020
01:48 leres search for other commits by this committer
editors/nvi-devel: Deprecate in favor of editors/nvi2

nvi-devel is based on a 2015 tarchive with several port patches
while nvi2 is an active project with over 600 commits since 2011
(including a pull request I submitted just today) that currently
has no port patches.

Please let me know if nvi-devel does anything that nvi2 does not
and I will attempt to rectify.
Original commitRevision:543501 
Thursday, 4 Jul 2019
16:22 leres search for other commits by this committer
editors/nvi-devel: Take maintainership. Update MASTER_SITES to use
the University of Waterloo Computer Science Club mirror (with
LOCAL/leres as a secondary) since ftp.stack.nl no longer exists.

Approved by:	Approved by: johans (maintainer timeout, 3 months and 3 consecutive
timeouts), ler (mentor, implicit)
Original commitRevision:505841 
Wednesday, 3 Jul 2019
17:39 leres search for other commits by this committer
editors/nvi-devel: Fix DB_CREATE error and segmentation fault; add
the DB_CREATE flag when using bdb >= 4.4.

PR:		238712
Approved by:	johans (maintainer timeout, 2 weeks), matthew (mentor, implicit)
Obtained from:	Mac Ports
	https://trac.macports.org/browser/trunk/dports/editors/nvi/files/patch-common__db.h?rev=108622
Original commitRevision:505766 
Thursday, 21 Mar 2019
17:17 leres search for other commits by this committer
For those of us who prefer vi over vim there are no good options
for editing Python code. This patch (based on one by rokuyama at
rk.phys.keio.ac.jp) that adds the EXPANDTAB option to nvi (defaults
to off) which adds an expandtab option to nvi.

PR:		235446
Approved by:	johans (maintainer timeout, 6 weeks), matthew (mentor, implicit)
Original commitRevision:496476 
17:12 leres search for other commits by this committer
Unlike the base vi (nvi 2.1.3), nvi-devel calls flock() on a writable
file descriptor. This has the unfortunately side effect of causing
the "Text file busy" error when you edit a script in one window and
try to run it in another.

The fix is to change the initial open() just prior to calling
file_lock() in file_init() to use O_RDONLY instead of O_RDWR. This
does not impact nvi's ability to write files, nvi creates a new
file when writing.

PR:		235445
Approved by:	johans (maintainer timeout, 6 weeks), ler (mentor, implicit)
Original commitRevision:496474 
Thursday, 8 Dec 2016
19:23 tijl search for other commits by this committer
Remove libiconv.so.3 compatibility link that was added in r374303 to
prevent massive PORTREVISION bumps.  Bump dependent ports that have not
been bumped since.
Original commitRevision:428150 
Saturday, 19 Nov 2016
19:51 marino search for other commits by this committer
editors/nvi-devel: Fix ports ncurses header detection

Approved by:	ncurses blanket
Original commitRevision:426536 
Wednesday, 2 Nov 2016
22:45 mat search for other commits by this committer
Cleanup no longer needed CHMOD usage after r424898.

PR:		213743
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Original commitRevision:425174 
Monday, 8 Aug 2016
13:46 mat search for other commits by this committer
USE_BDB cleanup.

- USE_BDB=4x+ -> USES=bdb.
- USE_BDB=yes -> USES=bdb.
- USE_BDB=xx  -> USES=bdb:xx.

Other modernisations when I see them.

PR:		209183
Sponsored by:	Absolight
Original commitRevision:419843 
Friday, 5 Feb 2016
18:37 marino search for other commits by this committer
editors/nvi-devel: document ncurses requirement (USES+=ncurses)

approved by:	infrastructure blanket
Original commitRevision:408254 
Tuesday, 22 Sep 2015
20:37 amdmi3 search for other commits by this committer
- Switch to options helpers
- Fix stage-qa

Approved by:	portmgr blanket
Original commitRevision:397592 
Saturday, 13 Jun 2015
09:10 johans search for other commits by this committer
Copied distfile to my own site to make it fetchable again
Thanks to Julian H. Stacey for the copy
Original commitRevision:389339 
Sunday, 5 Apr 2015
22:20 bapt search for other commits by this committer
Mark as broken unfetchable ports
Original commitRevision:383385 
Monday, 15 Sep 2014
18:30 amdmi3 search for other commits by this committer
- Drop .la files, no dependees require them

Approved by:	portmgr blanket
Original commitRevision:368284 
Thursday, 21 Aug 2014
22:50 mandree search for other commits by this committer
Berkeley DB cleanup, remove versions 4.0 ... 4.7.
- Mk/bsd.database.mk rewrite, new default to db5.
- db6 is eligible by default only if installed on the system.
- Bump PORTREVISION of all ports that directly depend on BerkeleyDB or
  where USE_BDB is found in the port's directory
- Patch a few ports such that they will pick up or work with newer
  versions.
- Add UPDATING entry
- Drive-by format fix for pks
- Drop BerkeleyDB option from mail/popular for now, requires more work.
- Exp-run logs linked from the PR below.
- Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes
  for new Berkeley DB, but are untested.

NOTE: please read UPDATING and the Wiki page before proceeding!

Announcement:	http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html
Wiki reference:	https://wiki.freebsd.org/Ports/BerkeleyDBCleanup
PR:		192690
Approved by:	portmgr (implicit, PORTREVISION bump on unstaged ports)
Original commitRevision:365599 
Tuesday, 29 Jul 2014
18:41 adamw search for other commits by this committer
Convert a bunch of USE_BZIP2 to USES=tar:bzip2

Approved by:	portmgr (not really, but touches unstaged ports)
Original commitRevision:363371 
Wednesday, 23 Apr 2014
13:25 tijl search for other commits by this committer
When linking a library libA with a library libB using libtool, if libB.la
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la.  So everything that subsequently links with libA will also
link to these extra libraries.  This causes too much overlinking.

This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging.  However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.

So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).

PORTREVISION is bumped on all ports with USES=libtool that install .la
libraries.  Most ports are also changed to add :keepla because .la
libraries have to be kept around as long as there are dependent ports with
.la libraries that refer to them in their dependency_libs field.  In most
cases :keepla can be removed again as soon as all dependent ports that
install .la libraries have some form of USES=libtool added to their
Makefile.

PR:		ports/188759
Exp-run:	bdrewery
Approved by:	portmgr (bdrewery)
Original commitRevision:351936 
Sunday, 9 Feb 2014
16:36 johans search for other commits by this committer
- Convert USE_AUTOTOOLS=libtool to USES=libtool.
- Fix build on FreeBSD 10 where libiconv isn't used.
- Remove post-install. Not needed with staging.

PR:		ports/186592
Submitted by:	tijl
Original commitRevision:343519 
Sunday, 29 Dec 2013
10:58 johans search for other commits by this committer
Enable stage support
Original commitRevision:337955 
Friday, 20 Sep 2013
16:36 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
editors)
Original commitRevision:327720 
Friday, 13 Sep 2013
14:41 bapt search for other commits by this committer
Add a missing dependency on pkgconf
Original commitRevision:327152 
Thursday, 18 Jul 2013
10:30 johans search for other commits by this committer
Update MASTER_SITES and trim header
Original commitRevision:323219 
Saturday, 27 Apr 2013
08:50 mva search for other commits by this committer
- Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here

Reviewed by:	bapt, kwm
Original commitRevision:316654 
Saturday, 16 Jun 2012
14:51 johans search for other commits by this committer
Convert to new options framework
Original commit
Friday, 23 Sep 2011
22:26 amdmi3 search for other commits by this committer
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:             157936
Submitted by:   myself
Exp-runs by:    pav
Approved by:    pav
Original commit
Wednesday, 23 Mar 2011
15:27 mandree search for other commits by this committer
Bump USE_BDB requirement from yes to 42+, as nvi breaks with DB 4.1
probably due to BDB issue #8852, "Remove restriction that DB_TRUNCATE is
not allowed on files with subdatabases. This restriction was introduced
in 4.1.25." -- source: Berkeley DB 4.2.52 ChangeLog

nvi-devel works with db42 and db51 on 8.2-amd64.

Approved by: johans (maintainer)
Original commit
Monday, 21 Mar 2011
23:25 johans search for other commits by this committer
Fix up Berkeley DB dependencies ahead of databases/db3 removal later

PR:             ports/155761
Submitted by:   mandree
Original commit
Saturday, 4 Dec 2010
07:34 ade search for other commits by this committer
Sync to new bsd.autotools.mk
Original commit
Saturday, 13 Mar 2010
20:15 johans search for other commits by this committer
- iconv should be a library dependency

Reported by:    Christian Weisgerber
Original commit
18:16 johans search for other commits by this committer
- Fix previous commit, now actually enabling wide character support
- Fix iconv support as well (the dependency was not used)
- Bump portrevision

Reported by:    Christian Weisgerber
Original commit
Friday, 12 Mar 2010
08:48 johans search for other commits by this committer
- Enable wide-character support by default (enabling UTF-8 text editing);
  This has no effect for people who don't use wide-characters
- Bump portrevision
- Claim maintainership
Original commit
Sunday, 2 Aug 2009
19:36 mezz search for other commits by this committer
-Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.

It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.

With help:      marcus and kwm
Pointyhat-exp:  a few times by pav
Tested by:      pgollucci, "Romain Tartière" <romain@blogreen.org>, and
                a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by:    marcus
Approved by:    portmgr
Original commit
Thursday, 2 Jul 2009
19:07 mezz search for other commits by this committer
Use LTMAIN and LIBTOOL instead of hardcore.
Original commit
Sunday, 7 Jun 2009
13:09 itetcu search for other commits by this committer
Fix build with custom LOCALBASE.

Reported by:    QATty
Original commit
Tuesday, 17 Jun 2008
13:20 wxs search for other commits by this committer
Change to installing binaries with 'n' prefix as to not conflict with
editors/2bsd-vi.  It does, however, now conflict with editors/nvi-m17n.

Remove dead MASTER_SITES.

Remove unnecessary RELENG_4 hack.

PR:             ports/124547
Submitted by:   Robert Wilson <hotaru@safe-mail.net>
Original commit
Sunday, 15 Jun 2008
18:44 obrien search for other commits by this committer
Upgrade to version 1.81.6.
Original commit
Wednesday, 5 Dec 2007
00:03 linimon search for other commits by this committer
Attempt to fix build on 7.x with gcc4.2.

PR:             ports/118077
Submitted by:   "J.R. Oldroyd" <fbsd at opal dot com>
Approved by:    portmgr (self)
Original commit
Sunday, 27 May 2007
03:02 kris search for other commits by this committer
BROKEN with gcc 4.2
Original commit
Tuesday, 27 Mar 2007
16:29 pav search for other commits by this committer
- Fix after objformat removal

Reported by:    pointyhat
Original commit
Sunday, 4 Mar 2007
02:04 linimon search for other commits by this committer
Maintainer has had his port bit taken for safekeeping.  While here,
remove stale mastersites and pet portlint.

Hat:            portmgr
Original commit
Wednesday, 21 May 2003
17:33 sumikawa search for other commits by this committer
No need to split bsd.ports.mk.

Reported by:    Sheldon Hearn <sheldonh@starjuice.net>
Original commit
Tuesday, 20 May 2003
22:31 sumikawa search for other commits by this committer
Make buildable on -current.
Original commit
Sunday, 18 May 2003
11:41 kris search for other commits by this committer
BROKEN on 5.1: does not compile
Original commit
Friday, 7 Mar 2003
06:00 ade search for other commits by this committer
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.

E Nomini Patri, E Fili, E Spiritu Sancti.
Original commit
Thursday, 22 Aug 2002
19:13 ade search for other commits by this committer
BerkeleyDB cleanup - stage 2

Update databases/db3 to 3.3.11, and fix the few ports that need sorting
after the shlib version update, and a slight API change from 3.2.x->3.3.x
Original commit
Monday, 8 Jul 2002
00:14 dd search for other commits by this committer
Something seems to have happened to the master site at www.kotnet.org,
since everything under ~skimo is returning 404s.  This is probably
temporary, but host the distfile locally just in case for the time
being.

Submitted by:   fenner's distfile survey
Original commit
Monday, 18 Mar 2002
10:27 knu search for other commits by this committer
Bump PORTREVISION to reflect the (lib)iconv upgrade.
Original commit
09:46 sobomax search for other commits by this committer
Iconv cleanup, stage 1b: correct {BUILD,LIB,RUN}_DEPENDS of all ports that need
libiconv.
Original commit
Monday, 11 Feb 2002
00:45 dd search for other commits by this committer
Belatedly upgrade to 1.81.5.  Notes: (a) patch-vi-relative has been  
incorporated; (b) this now compiles on -current after libdb from   databases/db3
was renamed to libdb3; (c) this now compiles on -stable   (removed BROKEN since
-stable has wchar.h now); and (d) fixed plist.    
Original commit
Wednesday, 1 Aug 2001
12:56 knu search for other commits by this committer
Back out the db3 port update because some of these dependent ports had   been
broken by the incompatibility between db3.2 and db3.3.    
Original commit
Wednesday, 25 Jul 2001
16:05 knu search for other commits by this committer
Reflect databases/db3's shlib version bump from 2 to 3.    
Original commit
Wednesday, 11 Jul 2001
09:49 dd search for other commits by this committer
Remove a master site due to lack of bandwidth.    
Original commit
Sunday, 8 Jul 2001
00:45 dd search for other commits by this committer
Add nvi-devel, the development snapshot of nvi.    
Original commit

Number of commits found: 53