The NetBSD Project

CVS log for pkgsrc/devel/diffutils/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / devel / diffutils

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.42 / (download) - annotate - [select for diffs], Sat Feb 18 22:54:35 2023 UTC (13 months, 4 weeks ago) by fcambus
Branch: MAIN
CVS Tags: pkgsrc-2024Q1-base, pkgsrc-2024Q1, pkgsrc-2023Q4-base, pkgsrc-2023Q4, pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, HEAD
Changes since 1.41: +4 -2 lines
Diff to previous 1.41 (colored) to selected 1.40 (colored)

diffutils: update to 3.9.

* Noteworthy changes in release 3.9 (2023-01-15) [stable]

** Bug fixes

  diff -c and -u no longer output incorrect timezones in headers
  on platforms like Solaris where struct tm lacks tm_gmtoff.
  [bug#51228 introduced in 3.4]

Revision 1.41 / (download) - annotate - [select for diffs], Tue Apr 12 14:24:16 2022 UTC (2 years ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (colored)

diffutils: update to 3.8

* Noteworthy changes in release 3.8 (2021-08-01) [stable]

** Incompatible changes

  diff no longer treats a closed stdin as representing an absent file
  in usage like 'diff --new-file - foo <&-'.  This feature was rarely
  if ever used and was not portable to POSIX platforms that reopen
  stdin on exec, such as SELinux if the process underwent an AT_SECURE
  transition, or HP-UX even if not setuid.

** Bug fixes

  diff and related programs no longer get confused if stdin, stdout,
  or stderr are closed.  Previously, they sometimes opened files into
  file descriptors 0, 1, or 2 and then mistakenly did I/O with them
  that was intended for stdin, stdout, or stderr.

  cmp, diff and sdiff no longer treat negative command-line
  option-arguments as if they were large positive numbers.

Revision 1.40 / (download) - annotate - [selected], Sat Jan 18 23:30:26 2020 UTC (4 years, 2 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2, pkgsrc-2021Q1-base, pkgsrc-2021Q1, pkgsrc-2020Q4-base, pkgsrc-2020Q4, pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

all: migrate several HOMEPAGEs to https

pkglint --only "https instead of http" -r -F

With manual adjustments afterwards since pkglint 19.4.4 fixed a few
indentations in unrelated lines.

This mainly affects projects hosted at SourceForce, as well as
freedesktop.org, CTAN and GNU.

Revision 1.39 / (download) - annotate - [select for diffs], Sun Jul 7 18:02:43 2019 UTC (4 years, 9 months ago) by schwarz
Branch: MAIN
CVS Tags: pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3
Changes since 1.38: +3 -3 lines
Diff to previous 1.38 (colored) to selected 1.40 (colored)


Updated devel/diffutils to 3.7

Changes: bug fixes, diff --color now produces output compatible with less -R.
(cf. https://savannah.gnu.org/forum/forum.php?forum_id=9341)

Revision 1.38 / (download) - annotate - [select for diffs], Fri Sep 8 09:42:34 2017 UTC (6 years, 7 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3, pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1, pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3
Changes since 1.37: +13 -16 lines
Diff to previous 1.37 (colored) to selected 1.40 (colored)

release 3.6:

** New features

  When one file is a prefix of the other, cmp now appends the shorter
  file's size to the EOF diagnostic.

** Bug fixes

  Using an invalid regular expression with --ignore-matching-lines=RE (-I)
  no longer causes stack overflow.  Before, with an invocation like the
  following, diff would diagnose the error, but would still proceed to
  blow the stack: diff -Ia -I\\ <(echo) <(echo b)
  [bug introduced in 2.9]

  diff no longer mishandles line numbers exceeding 2**31 on Mingw-w64.

  the ---presume-output-tty (ostensibly test-only) option would cause
  diff --color to read an uninitialized variable
  [bug introduced in 3.4]

** Performance changes

  diff's default algorithm has been tweaked to deal better with larger
  files, reversing some of the changes made in diffutils-3.4.

Revision 1.37 / (download) - annotate - [select for diffs], Wed Jan 4 14:04:30 2017 UTC (7 years, 3 months ago) by mef
Branch: MAIN
CVS Tags: pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored) to selected 1.40 (colored)

Updated devel/diffutils to 3.5
------------------------------
* Noteworthy changes in release 3.5 (2016-08-20) [stable]
** Bug fixes
  diff3 no longer malfunctions due to use-after-free
  [bug introduced in 3.4]

  diff --color no longer colorizes when TERM=dumb

Revision 1.36 / (download) - annotate - [select for diffs], Tue Aug 9 13:35:28 2016 UTC (7 years, 8 months ago) by mef
Branch: MAIN
CVS Tags: pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3
Changes since 1.35: +2 -2 lines
Diff to previous 1.35 (colored) to selected 1.40 (colored)

Updated devel/diffutils to 3.4
------------------------------
* Noteworthy changes in release 3.4 (2016-08-08) [stable]

** New features

   diff accepts two new options --color and --palette to generate
   and configure colored output.  --color takes an optional argument
   specifying when to colorize a line: --color=always, --color=auto,
   --color=never.  --palette is used to configure which colors are used.

** Bug fixes

  When binary files differ, diff now exits with status 1 as POSIX requires.
  Formerly it exited with status 2.

  Unless the --ignore-file-name-case option is used, diff now
  considers file names to be equal only if they are byte-for-byte
  equivalent.  This fixes a bug where diff in an English locale might
  consider two Asian file names to be the same merely because they
  contain no English characters.

  diff -B no longer generates incorrect output if the two inputs
  each end with a one-byte incomplete line.

  diff --brief no longer reports a difference for unusual identical files.
  For example, when comparing a file like /proc/cmdline (for which the linux
  kernel reports st_size of 0 even though it is not an empty file) to a
  copy of that file's contents residing on a "normal" file system:
    $ f=/proc/cmdline; cp $f k; diff --brief $f k
    Files /proc/cmdline and k differ

** Performance changes

  diff's default algorithm has been adjusted to output higher-quality
  results at somewhat greater computational cost, as CPUs have gotten
  faster since the algorithm was last tweaked in diffutils-2.6 (1993).

(pkgsrc changes)
- Add comments on patches, picking from (old) cvs log

Revision 1.35 / (download) - annotate - [select for diffs], Thu Feb 25 12:12:47 2016 UTC (8 years, 1 month ago) by jperkin
Branch: MAIN
CVS Tags: pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1
Changes since 1.34: +9 -15 lines
Diff to previous 1.34 (colored) to selected 1.40 (colored)

Use OPSYSVARS.

Revision 1.34 / (download) - annotate - [select for diffs], Thu Oct 9 14:06:08 2014 UTC (9 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q4-base, pkgsrc-2015Q4, pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2, pkgsrc-2015Q1-base, pkgsrc-2015Q1, pkgsrc-2014Q4-base, pkgsrc-2014Q4
Changes since 1.33: +1 -3 lines
Diff to previous 1.33 (colored) to selected 1.40 (colored)

Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.

Revision 1.33 / (download) - annotate - [select for diffs], Thu May 30 16:31:33 2013 UTC (10 years, 10 months ago) by richard
Branch: MAIN
CVS Tags: pkgsrc-2014Q3-base, pkgsrc-2014Q3, pkgsrc-2014Q2-base, pkgsrc-2014Q2, pkgsrc-2014Q1-base, pkgsrc-2014Q1, pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2
Changes since 1.32: +0 -6 lines
Diff to previous 1.32 (colored) to selected 1.40 (colored)

let us backout and not be hasty to use autotools in devel/diffutils

Revision 1.32 / (download) - annotate - [select for diffs], Fri May 24 11:40:52 2013 UTC (10 years, 10 months ago) by richard
Branch: MAIN
Changes since 1.31: +7 -1 lines
Diff to previous 1.31 (colored) to selected 1.40 (colored)

fix autotools problem with @mkdir_p@ in devel/diffutils

Revision 1.31 / (download) - annotate - [select for diffs], Sun May 19 03:21:40 2013 UTC (10 years, 11 months ago) by ryoon
Branch: MAIN
Changes since 1.30: +3 -3 lines
Diff to previous 1.30 (colored) to selected 1.40 (colored)

Update to 3.3

Changelog:
* Noteworthy changes in release 3.3 (2013-03-24) [stable]

** New features

  --new-file (-N) and --unidirectional-new-file now allow comparisons to "-".
  A standard input that's closed acts like a nonexistent file.

  A file name containing spaces, double quotes, backslashes or control
  characters is now encoded in a diff header as a double-quoted C string
  literal.  The escape sequences \\, \", \a, \b, \f, \n, \r, \t, \v and
  \ooo (a three-digit octal number between 0 and 255) are used.

** Packaging

  diffutils is now designed to build with Cygwin or MinGW rather than DJGPP.
  The ms subdirectory has been removed.

Revision 1.30 / (download) - annotate - [select for diffs], Thu Dec 6 11:40:58 2012 UTC (11 years, 4 months ago) by jperkin
Branch: MAIN
CVS Tags: pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4
Changes since 1.29: +3 -3 lines
Diff to previous 1.29 (colored) to selected 1.40 (colored)

Add PKGGNUDIR support.

Revision 1.29 / (download) - annotate - [select for diffs], Wed Oct 31 11:16:53 2012 UTC (11 years, 5 months ago) by asau
Branch: MAIN
Changes since 1.28: +1 -2 lines
Diff to previous 1.28 (colored) to selected 1.40 (colored)

Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.

Revision 1.28 / (download) - annotate - [select for diffs], Sat Jun 2 08:18:35 2012 UTC (11 years, 10 months ago) by cheusov
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base, pkgsrc-2012Q3, pkgsrc-2012Q2-base, pkgsrc-2012Q2
Changes since 1.27: +7 -10 lines
Diff to previous 1.27 (colored) to selected 1.40 (colored)


Add symlinks in gnu/man/man1/
++pkgrevision

Revision 1.27 / (download) - annotate - [select for diffs], Tue May 29 21:01:25 2012 UTC (11 years, 10 months ago) by cheusov
Branch: MAIN
Changes since 1.26: +15 -7 lines
Diff to previous 1.26 (colored) to selected 1.40 (colored)


Remove GNU_PROGRAM_PREFIX variable (discussed in pkgsrc-users@).
All utilities are installed with a prefix 'g'. Symlinks with original
names are created in ${PREFIX}/gnu/bin.

++pkgrevision

Revision 1.26 / (download) - annotate - [select for diffs], Sat Apr 7 16:30:05 2012 UTC (12 years ago) by schwarz
Branch: MAIN
Changes since 1.25: +4 -5 lines
Diff to previous 1.25 (colored) to selected 1.40 (colored)

updated devel/diffutils to 3.2

Revision 1.25 / (download) - annotate - [select for diffs], Fri Mar 9 13:11:05 2012 UTC (12 years, 1 month ago) by fhajny
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base, pkgsrc-2012Q1
Changes since 1.24: +6 -1 lines
Diff to previous 1.24 (colored) to selected 1.40 (colored)

Prevent a hang in configure on SunOS.

Revision 1.24 / (download) - annotate - [select for diffs], Fri Apr 22 13:43:17 2011 UTC (12 years, 11 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2
Changes since 1.23: +2 -2 lines
Diff to previous 1.23 (colored) to selected 1.40 (colored)

recursive bump from gettext-lib shlib bump.

Revision 1.23 / (download) - annotate - [select for diffs], Tue Mar 10 14:06:06 2009 UTC (15 years, 1 month ago) by apb
Branch: MAIN
CVS Tags: pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2, pkgsrc-2009Q1-base, pkgsrc-2009Q1
Changes since 1.22: +2 -2 lines
Diff to previous 1.22 (colored) to selected 1.40 (colored)

Fix a build failure on platforms where time_t is larger than long, by
using long long instead.  (Not using time_t, because there's no easy and
portable printf format for time_t.)  Bump PKGREVISION to 4.

Revision 1.22 / (download) - annotate - [select for diffs], Mon Nov 24 08:02:16 2008 UTC (15 years, 4 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2008Q4-base, pkgsrc-2008Q4
Changes since 1.21: +7 -2 lines
Diff to previous 1.21 (colored) to selected 1.40 (colored)

Let to exactly point to own diff program.
Fixes PR 39941.

Bump PKGREVISION.

Revision 1.21 / (download) - annotate - [select for diffs], Thu Jun 12 02:14:22 2008 UTC (15 years, 10 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2008Q3-base, pkgsrc-2008Q3, pkgsrc-2008Q2-base, pkgsrc-2008Q2, cwrapper, cube-native-xorg-base, cube-native-xorg
Changes since 1.20: +2 -1 lines
Diff to previous 1.20 (colored) to selected 1.40 (colored)

Add DESTDIR support.

Revision 1.20 / (download) - annotate - [select for diffs], Sun Jul 23 12:47:21 2006 UTC (17 years, 8 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2008Q1-base, pkgsrc-2008Q1, pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2, pkgsrc-2007Q1-base, pkgsrc-2007Q1, pkgsrc-2006Q4-base, pkgsrc-2006Q4, pkgsrc-2006Q3-base, pkgsrc-2006Q3
Changes since 1.19: +3 -2 lines
Diff to previous 1.19 (colored) to selected 1.40 (colored)

When forcing the gettext detection to be successfull, also include
gettext-lib. Bump revision.

Revision 1.19 / (download) - annotate - [select for diffs], Thu Jul 20 17:09:14 2006 UTC (17 years, 9 months ago) by minskim
Branch: MAIN
Changes since 1.18: +4 -1 lines
Diff to previous 1.18 (colored) to selected 1.40 (colored)

Enable NLS explicitly.  Bump PKGREVISION.

Revision 1.18 / (download) - annotate - [select for diffs], Thu Mar 30 03:44:42 2006 UTC (18 years ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2006Q2-base, pkgsrc-2006Q2
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored) to selected 1.40 (colored)

* Honor PKGINFODIR.
* List the info files directly in the PLIST.

Revision 1.17 / (download) - annotate - [select for diffs], Sat Mar 4 21:29:14 2006 UTC (18 years, 1 month ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base, pkgsrc-2006Q1
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored) to selected 1.40 (colored)

Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.

Revision 1.16 / (download) - annotate - [select for diffs], Mon Dec 5 23:55:05 2005 UTC (18 years, 4 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base, pkgsrc-2005Q4
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored) to selected 1.40 (colored)

Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.

Revision 1.15 / (download) - annotate - [select for diffs], Mon Dec 5 20:50:03 2005 UTC (18 years, 4 months ago) by rillig
Branch: MAIN
Changes since 1.14: +2 -2 lines
Diff to previous 1.14 (colored) to selected 1.40 (colored)

Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in

    http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html

Revision 1.14 / (download) - annotate - [select for diffs], Tue May 18 11:58:04 2004 UTC (19 years, 11 months ago) by recht
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base, pkgsrc-2005Q3, pkgsrc-2005Q2-base, pkgsrc-2005Q2, pkgsrc-2005Q1-base, pkgsrc-2005Q1, pkgsrc-2004Q4-base, pkgsrc-2004Q4, pkgsrc-2004Q3-base, pkgsrc-2004Q3, pkgsrc-2004Q2-base, pkgsrc-2004Q2
Changes since 1.13: +3 -1 lines
Diff to previous 1.13 (colored) to selected 1.40 (colored)

Enable pkgviews installation.

Revision 1.13 / (download) - annotate - [select for diffs], Sat Aug 9 10:44:39 2003 UTC (20 years, 8 months ago) by seb
Branch: MAIN
CVS Tags: pkgsrc-2004Q1-base, pkgsrc-2004Q1, pkgsrc-2003Q4-base, pkgsrc-2003Q4
Changes since 1.12: +1 -2 lines
Diff to previous 1.12 (colored) to selected 1.40 (colored)

USE_NEW_TEXINFO is unnecessary now.

Revision 1.12 / (download) - annotate - [select for diffs], Thu Jul 17 21:30:16 2003 UTC (20 years, 9 months ago) by grant
Branch: MAIN
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored) to selected 1.40 (colored)

s/netbsd.org/NetBSD.org/

Revision 1.11 / (download) - annotate - [select for diffs], Mon Jun 23 10:39:55 2003 UTC (20 years, 10 months ago) by seb
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored) to selected 1.40 (colored)

Convert to USE_NEW_TEXINFO.

Revision 1.10 / (download) - annotate - [select for diffs], Mon Jun 2 01:20:52 2003 UTC (20 years, 10 months ago) by jschauma
Branch: MAIN
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored) to selected 1.40 (colored)

Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.
Should anybody feel like they could be the maintainer for any of thewe packages,
please adjust.

Revision 1.9 / (download) - annotate - [select for diffs], Sun Jan 19 05:15:20 2003 UTC (21 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: netbsd-1-6-1-base, netbsd-1-6-1
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored) to selected 1.40 (colored)

Update to 2.8.1:
* cmp and diff now conform to POSIX 1003.1-2001 (IEEE Std 1003.1-2001)
  if the underlying system conforms to POSIX and if the _POSIX2_VERSION
  environment variable is set to 200112.  Conformance removes support
  for `diff -NUM', where NUM is a number.  Use -C NUM or -U NUM instead.
* cmp now supports trailing operands SKIP1 and SKIP2, like BSD cmp.
* cmp -i or --ignore-initial now accepts SKIP1:SKIP2 option value.
* New cmp option: -n or --bytes.
* cmp's old -c or --print-chars option has been renamed;
  use -b or --print-bytes instead.
* cmp now outputs "byte" rather than "char" outside the POSIX locale.
* cmp -l's index column width now adjusts to fit larger (or smaller) files.
* cmp -l -s and cmp -s -l are not allowed.  Use cmp -s or cmp -l instead.
* diff uses ISO 8601 style time stamps for output times (e.g. "2001-11-23
  16:44:36.875702460 -0800") unless in the C or POSIX locale and the
  -c style is specified.
* diff's -I and -F options use the regexp syntax of grep, not of Emacs.
* diff now accepts multiple context arguments, and uses their maximum value.
* New diff and sdiff options:
  -E  --ignore-tab-expansion
  --strip-trailing-cr
* New diff options:
  --from-file=FILE, --to-file=FILE
  --ignore-file-name-case
  --no-ignore-file-name-case
* New diff3 and sdiff option:
  --diff-program=PROGRAM
* The following diff options are still accepted, but are no longer documented.
  They may be withdrawn in future releases.
  -h (omit; it has no effect)
  -H (use --speed-large-files instead)
  -L (use --label instead)
  -P (use --unidirectional-new-file instead)
  --inhibit-hunk-merge (omit; it has no effect)
* Recursive diffs now sort file names according to the LC_COLLATE locale
  category if possible, instead of using native byte comparison.
* Diff printf specs can now use the "0" and "'" flags.
* The new sdiff interactive command `ed' precedes each version with a header.
* On 64-bit hosts, files larger than 2 GB can be compared.
* Some internationalization support has been added, but multibyte locales
  are still not completely supported yet.
* Some diagnostics have been reworded slightly for consistency.
  Also, `diff -D FOO' now outputs `/* ! FOO */' instead of `/* not FOO */'.
* The `patch' part of the manual now describes `patch' version 2.5.4.
* Man pages are now distributed and installed.
* There is support for DJGPP; see the 'ms' subdirectory and the files
  m4/dos.m4 and */setmode.*.

Revision 1.8 / (download) - annotate - [select for diffs], Sun Dec 22 17:39:07 2002 UTC (21 years, 4 months ago) by wiz
Branch: MAIN
Changes since 1.7: +9 -4 lines
Diff to previous 1.7 (colored) to selected 1.40 (colored)

Use GNU_PROGRAM_PREFIX, based on a patch by Jeremy C. Reed.
Also lose restriction (only for SunOS).

Revision 1.7 / (download) - annotate - [select for diffs], Mon Feb 18 15:14:09 2002 UTC (22 years, 2 months ago) by seb
Branch: MAIN
CVS Tags: pkgviews-base, pkgviews, netbsd-1-6-RELEASE-base, netbsd-1-6, netbsd-1-5-PATCH003, buildlink2-base, buildlink2
Changes since 1.6: +2 -1 lines
Diff to previous 1.6 (colored) to selected 1.40 (colored)

Introduce new framework for handling info files generation and installation.

Summary of changes:
- removal of USE_GTEXINFO
- addition of mk/texinfo.mk
- inclusion of this file in package Makefiles requiring it
- `install-info' substituted by `${INSTALL_INFO}' in PLISTs
- tuning of mk/bsd.pkg.mk:
    removal of USE_GTEXINFO
    INSTALL_INFO added to PLIST_SUBST
    `${INSTALL_INFO}' replace `install-info' in target rules
    print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info'
- a couple of new patch files added for a handful of packages
- setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it
- devel/cssc marked requiring texinfo 4.0
- a couple of packages Makefiles were tuned with respect of INFO_FILES and
  makeinfo command usage

See -newly added by this commit- section 10.24 of Packages.txt for
further information.

Revision 1.6 / (download) - annotate - [select for diffs], Fri Feb 16 14:38:22 2001 UTC (23 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH001
Changes since 1.5: +2 -1 lines
Diff to previous 1.5 (colored) to selected 1.40 (colored)

Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.

Revision 1.5 / (download) - annotate - [select for diffs], Sat Jan 13 16:17:48 2001 UTC (23 years, 3 months ago) by tron
Branch: MAIN
Changes since 1.4: +3 -3 lines
Diff to previous 1.4 (colored) to selected 1.40 (colored)

Install binaries as "g..." e.g. "gdiff" to avoid name conflicts.

Revision 1.4 / (download) - annotate - [select for diffs], Fri Jul 2 08:46:51 1999 UTC (24 years, 9 months ago) by agc
Branch: MAIN
CVS Tags: netbsd-1-5-RELEASE, netbsd-1-4-PATCH003, netbsd-1-4-PATCH002, netbsd-1-4-PATCH001, comdex-fall-1999
Changes since 1.3: +3 -3 lines
Diff to previous 1.3 (colored) to selected 1.40 (colored)

For packages that are in the NetBSD base system, but needed for
Solaris, narrow down the platforms, and use specific inclusion rather
than disclusion:  mark them as ONLY_FOR_PLATFORM=SunOS-*-*, rather
than NOT_FOR_PLATFORM=NetBSD-*-*.

Revision 1.3 / (download) - annotate - [select for diffs], Mon May 24 20:39:37 1999 UTC (24 years, 11 months ago) by tv
Branch: MAIN
Changes since 1.2: +9 -9 lines
Diff to previous 1.2 (colored) to selected 1.40 (colored)

Change {ONLY,NOT}_FOR_{ARCH,OPSYS} format to {ONLY,NOT}_FOR_PLATFORM
pattern match format.  Minor pkglint along the way.

Revision 1.2 / (download) - annotate - [select for diffs], Wed Apr 14 21:39:03 1999 UTC (25 years ago) by tron
Branch: MAIN
CVS Tags: netbsd-1-4-RELEASE
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored) to selected 1.40 (colored)

Remove unnecessary slash from master site list.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Mar 12 15:38:07 1999 UTC (25 years, 1 month ago) by agc
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored) to selected 1.40 (colored)

Initial import of GNU diffutils, version 2.7. This package is only for
Solaris, as the GNU diffutils are in the base NetBSD distribution.

The diff utilities are: cmp, diff, diff3 and sdiff, and are used to compare
files.

Revision 1.1 / (download) - annotate - [select for diffs], Fri Mar 12 15:38:07 1999 UTC (25 years, 1 month ago) by agc
Branch: MAIN
Diff to selected 1.40 (colored)

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>