The NetBSD Project

CVS log for pkgsrc/archivers/gzip/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / archivers / gzip

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.38 / (download) - annotate - [select for diffs], Fri Apr 8 06:24:00 2022 UTC (23 months, 1 week ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q4-base, pkgsrc-2023Q4, pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2, HEAD
Changes since 1.37: +2 -5 lines
Diff to previous 1.37 (colored)

gzip: update to 1.12.

* Noteworthy changes in release 1.12 (2022-04-07) [stable]

** Changes in behavior

  'gzip -l' no longer misreports file lengths 4 GiB and larger.
  Previously, 'gzip -l' output the 32-bit value stored in the gzip
  header even though that is the uncompressed length modulo 2**32.
  Now, 'gzip -l' calculates the uncompressed length by decompressing
  the data and counting the resulting bytes.  Although this can take
  much more time, nowadays the correctness pros seem to outweigh the
  performance cons.

  'zless' is no longer installed on platforms lacking 'less'.

** Bug fixes

  zgrep applied to a crafted file name with two or more newlines
  can no longer overwrite an arbitrary, attacker-selected file.
  [bug introduced in gzip-1.3.10]

  zgrep now names input file on error instead of mislabeling it as
  "(standard input)", if grep supports the GNU -H and --label options.

  'zdiff -C 5' no longer misbehaves by treating '5' as a file name.
  [bug present since the beginning]

  Configure-time options like --program-prefix now work.


* Noteworthy changes in release 1.11 (2021-09-03) [stable]

** Performance improvements

  IBM Z platforms now support hardware-accelerated deflation.

Revision 1.37 / (download) - annotate - [select for diffs], Sat Jan 18 23:29:55 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.36: +2 -2 lines
Diff to previous 1.36 (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.36 / (download) - annotate - [select for diffs], Thu Jan 10 06:47:42 2019 UTC (5 years, 2 months ago) by gutteridge
Branch: MAIN
CVS Tags: pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1
Changes since 1.35: +4 -4 lines
Diff to previous 1.35 (colored)

archivers/gzip: update to release 1.10

Prompted in part because prior releases fail to build on Linux
distributions that use glibc >= 2.27 (relates to PR pkg/53826).

* Noteworthy changes in release 1.10 (2018-12-29) [stable]

** Changes in behavior

  Compressed gzip output no longer contains the current time as a
  timestamp when the input is not a regular file.  Instead, the output
  contains a null (zero) timestamp.  This makes gzip's behavior more
  reproducible when used as part of a pipeline.  (As a reminder, even
  regular files will use null timestamps after the year 2106, due to a
  limitation in the gzip format.)

** Bug fixes

  A use of uninitialized memory on some malformed inputs has been fixed.
  [bug present since the beginning]

  A few theoretical race conditions in signal handers have been fixed.
  These bugs most likely do not happen on practical platforms.
  [bugs present since the beginning]


* Noteworthy changes in release 1.9 (2018-01-07) [stable]

** Bug fixes

  gzip -d -S SUFFIX file.SUFFIX would fail for any upper-case byte in SUFFIX.
  E.g., before, this command would fail:
    $ :|gzip > kT && gzip -d -S T kT
    gzip: kT: unknown suffix -- ignored
  [bug present since the beginning]

  When decompressing data in 'pack' format, gzip no longer mishandles
  leading zeros in the end-of-block code.  [bug introduced in gzip-1.6]

  When converting from system-dependent time_t format to the 32-bit
  unsigned MTIME format used in gzip files, if a timestamp does not
  fit gzip now substitutes zero instead of the timestamp's low-order
  32 bits, as per Internet RFC 1952.  When converting from MTIME to
  time_t format, if a timestamp does not fit gzip now warns and
  substitutes the nearest in-range value instead of crashing or
  silently substituting an implementation-defined value (typically,
  the timestamp's low-order bits).  This affects timestamps before
  1970 and after 2106, and timestamps after 2038 on platforms with
  32-bit signed time_t.  [bug present since the beginning]

  Commands implemented via shell scripts are now more consistent about
  failure status.  For example, 'gunzip --help >/dev/full' now
  consistently exits with status 1 (error), instead of with status 2
  (warning) on some platforms.  [bug present since the beginning]

  Support for VMS and Amiga has been removed.  It was not working anyway,
  and it reportedly caused file name glitches on MS-Windowsish platforms.


* Noteworthy changes in release 1.8 (2016-04-26) [stable]

** Bug fixes

  gzip -l no longer falsely reports a write error when writing to a pipe.
  [bug introduced in gzip-1.7]

  Port to Oracle Solaris Studio 12 on x86-64.
  [bug present since at least gzip-1.2.4]

  When configuring gzip, ./configure DEFS='...-DNO_ASM...' now
  suppresses assembler again.  [bug introduced in gzip-1.3.5]


* Noteworthy changes in release 1.7 (2016-03-27) [stable]

** Changes in behavior

  The GZIP environment variable is now obsolescent; gzip now warns if
  it is used, and rejects attempts to use dangerous options or operands.
  You can use an alias or script instead.

  Installed programs like 'zgrep' now use the PATH environment variable
  as usual to find subsidiary programs like 'gzip' and 'grep'.
  Previously they prepended the installation directory to the PATH,
  which sometimes caused 'make check' to test the wrong gzip executable.
  [bug introduced in gzip-1.3.13]

** New features

  gzip now accepts the --synchronous option, which causes it to use
  fsync and similar primitives to transfer output data to the output
  file's storage device when the file system supports this.  Although
  this option makes gzip safer in the presence of system crashes, it
  can make gzip considerably slower.

  gzip now accepts the --rsyncable option. This option is accepted in
  all modes, but has effect only when compressing: it makes the resulting
  output more amenable to efficient use of rsync.  For example, when a
  large input file gets a small change, a gzip --rsyncable image of
  that file will remain largely unchanged, too.  Without --rsyncable,
  even a tiny change in the input could result in a totally different
  gzip-compressed output file.

** Bug fixes

  gzip -k -v no longer reports that files are replaced.
  [bug present since the beginning]

  zgrep -f A B C no longer reads A more than once if A is not a regular file.
  This better supports invocations like 'zgrep -f <(COMMAND) B C' in Bash.
  [bug introduced in gzip-1.2]

Revision 1.35 / (download) - annotate - [select for diffs], Thu Feb 25 09:28:36 2016 UTC (8 years ago) by jperkin
Branch: MAIN
CVS Tags: 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, pkgsrc-2017Q2-base, pkgsrc-2017Q2, pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1
Changes since 1.34: +2 -6 lines
Diff to previous 1.34 (colored)

Use OPSYSVARS.

Revision 1.34 / (download) - annotate - [select for diffs], Sat May 9 23:00:39 2015 UTC (8 years, 10 months ago) by sevan
Branch: MAIN
CVS Tags: pkgsrc-2015Q4-base, pkgsrc-2015Q4, pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored)

Previous commit should have included bsd.prefs.mk not bsd.options.mk

Revision 1.33 / (download) - annotate - [select for diffs], Tue May 5 00:13:36 2015 UTC (8 years, 10 months ago) by sevan
Branch: MAIN
Changes since 1.32: +3 -1 lines
Diff to previous 1.32 (colored)

Include bsd.options.mk before testing for things.

Revision 1.32 / (download) - annotate - [select for diffs], Sun May 3 14:34:04 2015 UTC (8 years, 10 months ago) by sevan
Branch: MAIN
Changes since 1.31: +6 -1 lines
Diff to previous 1.31 (colored)

Force the use of the gnulib version of wctype.h, bundled with gzip, when
building on AIX. This is a workaround for an issue where though the wctype.h
included on system was found, wctype_t & wctrans_t were deemed unsuitable,
causing the build to fail due to previous declaration with confliciting types.

Reviewed by wiz@

Revision 1.31 / (download) - annotate - [select for diffs], Thu Oct 9 14:05:51 2014 UTC (9 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q1-base, pkgsrc-2015Q1, pkgsrc-2014Q4-base, pkgsrc-2014Q4
Changes since 1.30: +1 -3 lines
Diff to previous 1.30 (colored)

Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.

Revision 1.30 / (download) - annotate - [select for diffs], Thu Oct 9 13:44:32 2014 UTC (9 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.29: +1 -2 lines
Diff to previous 1.29 (colored)

Remove SVR4_PKGNAME, per discussion on tech-pkg.

Revision 1.29 / (download) - annotate - [select for diffs], Tue Oct 29 13:32:07 2013 UTC (10 years, 4 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2014Q3-base, pkgsrc-2014Q3, pkgsrc-2014Q2-base, pkgsrc-2014Q2, pkgsrc-2014Q1-base, pkgsrc-2014Q1, pkgsrc-2013Q4-base, pkgsrc-2013Q4
Changes since 1.28: +5 -3 lines
Diff to previous 1.28 (colored)

Change to use uncompressed archive for distfile (put on our ftp server)
to avoid circular dependency of archive tool.

Revision 1.28 / (download) - annotate - [select for diffs], Tue Jun 11 08:28:30 2013 UTC (10 years, 9 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2
Changes since 1.27: +4 -6 lines
Diff to previous 1.27 (colored)

Changes 1.6:
The "--keep" (-k) option was added to not delete input files, in line with other tools such as xz, lzip, and bzip2. A decompression issue with certain invalid data in the 'pack' format was fixed. An incorrect overwrite when compiled with optimization was fixed. zgrep's handling of multi-digit context options was fixed. zmore now acts more like 'more'.

Revision 1.27 / (download) - annotate - [select for diffs], Mon Jun 10 11:56:58 2013 UTC (10 years, 9 months ago) by ryoon
Branch: MAIN
Changes since 1.26: +2 -1 lines
Diff to previous 1.26 (colored)

Fix PR pkg/47914. Bump PKGREVISION.

* Fix build on NetBSD 6.0.1.
  Update for fpos_t change (like devel/m4).
  Tested on NetBSD/amd64 6.0.1 and 6.99.21.

Revision 1.26 / (download) - annotate - [select for diffs], Sun Jun 9 16:55:08 2013 UTC (10 years, 9 months ago) by ryoon
Branch: MAIN
Changes since 1.25: +3 -4 lines
Diff to previous 1.25 (colored)

Update to 1.5

Changelog:
* Noteworthy changes in release 1.5 (2012-06-17) [stable]

** Bug fixes

  gzip -d now decodes and checks header CRC16 checksums as specified by
  the FHCRC section of Internet RFC 1952.

  "gzip -d -S '' precious.gz" is now rejected immediately.  Before,
  that command would emulate "rm -i precious.gz", but with an easily-
  misunderstood prompt.  I.e., gzip would ask if it's ok to remove the
  existing file, "precious.gz".  If you made the mistake of saying "yes",
  it would remove that input file before attempting to uncompress it.

  gzip -cdf now properly handles input consisting of gzip'd data followed
  by uncompressed data.  Before it would output raw compressed input, too.
  For example, now "(printf x|gzip; echo y)|gzip -dcf" prints "xy\n",
  while before it would print "x<compressed data>y\n".

  gzip -rf no longer compresses files more than once (e.g., replacing
  FOO with FOO.gz.gz) on file systems such as ZFS where a readdir
  loop that unlinks and creates files can revisit output files.

Revision 1.25 / (download) - annotate - [select for diffs], Tue Sep 11 19:46:55 2012 UTC (11 years, 6 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4, pkgsrc-2012Q3-base, pkgsrc-2012Q3
Changes since 1.24: +1 -2 lines
Diff to previous 1.24 (colored)

"user-destdir" is default these days

Revision 1.24 / (download) - annotate - [select for diffs], Tue Apr 20 15:50:23 2010 UTC (13 years, 11 months ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2012Q2-base, pkgsrc-2012Q2, pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2
Changes since 1.23: +2 -1 lines
Diff to previous 1.23 (colored)

can't depend on checkperms; it's distfile is gzipped.

Revision 1.22.14.1 / (download) - annotate - [select for diffs], Tue Feb 2 17:15:32 2010 UTC (14 years, 1 month ago) by tron
Branch: pkgsrc-2009Q4
Changes since 1.22: +3 -2 lines
Diff to previous 1.22 (colored) next main 1.23 (colored)

Pullup ticket #2895 - requested by taca
gzip: security patch

Revisions pulled up:
- archivers/gzip/Makefile			1.23
- archivers/gzip/distinfo			1.4
- archivers/gzip/patches/patch-ag		1.1
- archivers/gzip/patches/patch-ah		1.1
---
Module Name:	pkgsrc
Committed By:	taca
Date:		Tue Feb  2 14:42:43 UTC 2010

Modified Files:
	pkgsrc/archivers/gzip: Makefile distinfo
Added Files:
	pkgsrc/archivers/gzip/patches: patch-ag patch-ah

Log Message:
Add patches for CVE-2009-2624 and CVE-2010-0001.

Bump PKGREVISION.

Revision 1.23 / (download) - annotate - [select for diffs], Tue Feb 2 14:42:43 2010 UTC (14 years, 1 month ago) by taca
Branch: MAIN
CVS Tags: pkgsrc-2010Q1-base, pkgsrc-2010Q1
Changes since 1.22: +3 -2 lines
Diff to previous 1.22 (colored)

Add patches for CVE-2009-2624 and CVE-2010-0001.

Bump PKGREVISION.

Revision 1.22 / (download) - annotate - [select for diffs], Sun Sep 7 08:02:27 2008 UTC (15 years, 6 months ago) by dholland
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base, pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2, pkgsrc-2009Q1-base, pkgsrc-2009Q1, pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, cube-native-xorg-base, cube-native-xorg
Branch point for: pkgsrc-2009Q4
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored)

Fix zgrep -h. PR 37528 from Rob Quinn.
PKGREVISION++

Revision 1.21 / (download) - annotate - [select for diffs], Fri Dec 21 23:57:41 2007 UTC (16 years, 3 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2008Q2-base, pkgsrc-2008Q2, pkgsrc-2008Q1-base, pkgsrc-2008Q1, pkgsrc-2007Q4-base, pkgsrc-2007Q4, cwrapper
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

Fixed pkglint warnings.

Revision 1.20 / (download) - annotate - [select for diffs], Fri Dec 21 23:21:12 2007 UTC (16 years, 3 months ago) by joerg
Branch: MAIN
Changes since 1.19: +3 -1 lines
Diff to previous 1.19 (colored)

Fix info page handlign as reported by Aleksey Cheusov. Bump revision.

Revision 1.19 / (download) - annotate - [select for diffs], Thu Nov 8 19:26:52 2007 UTC (16 years, 4 months ago) by joerg
Branch: MAIN
Changes since 1.18: +10 -15 lines
Diff to previous 1.18 (colored)

Update gzip to 1.3.12 and merge base and info back into gzip.
This includes many security fixes, improvements for files over 4GB,
portability improves, zless, etc.

Revision 1.18 / (download) - annotate - [select for diffs], Thu Oct 25 22:00:39 2007 UTC (16 years, 4 months ago) by jlam
Branch: MAIN
Changes since 1.17: +2 -1 lines
Diff to previous 1.17 (colored)

* If PLIST_SRC is explicitly set to an empty value in a package Makefile,
  then automatically generate a PLIST that says "${PKGNAME} has no files".

* If PLIST_SRC and GENERATE_PLIST are not set in a package Makefile,
  and no PLIST files exist, then fail during the package build with
  PKG_FAIL_REASON.

* Remove "intentionally empty" PLISTs again.

Now, the easy way to say that a package installs no files is to just
add the following to the package Makefile:

	PLIST_SRC=	# empty

Revision 1.17 / (download) - annotate - [select for diffs], Fri Jun 30 09:51:01 2006 UTC (17 years, 8 months ago) by joerg
Branch: MAIN
CVS Tags: 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, pkgsrc-2006Q2-base, pkgsrc-2006Q2
Changes since 1.16: +3 -2 lines
Diff to previous 1.16 (colored)

Explicitly depend on 1.2.4a with the {,nb[0-9]*} idiom.
We never had any other version in pkgsrc anyway.
Still a binary package change, so bump revision.

Revision 1.16 / (download) - annotate - [select for diffs], Sat Mar 4 21:28:52 2006 UTC (18 years ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base, pkgsrc-2006Q1
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (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.15 / (download) - annotate - [select for diffs], Mon Apr 11 21:44:48 2005 UTC (18 years, 11 months ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base, pkgsrc-2005Q4, pkgsrc-2005Q3-base, pkgsrc-2005Q3, pkgsrc-2005Q2-base, pkgsrc-2005Q2
Changes since 1.14: +1 -2 lines
Diff to previous 1.14 (colored)

Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.

Revision 1.13.2.1 / (download) - annotate - [select for diffs], Tue Oct 19 13:33:41 2004 UTC (19 years, 5 months ago) by agc
Branch: pkgsrc-2004Q3
Changes since 1.13: +4 -5 lines
Diff to previous 1.13 (colored) next main 1.14 (colored)


Pullup ticket 120 - requested by Todd Vierling
security fix for gzip

	Modified Files:
		pkgsrc/mk: bsd.pkg.mk

	Log Message:
	Automatic inclusion of gzip-base needs a version number in the BUILD_DEPENDS.

	Modified Files:
		pkgsrc/mk: bsd.pkg.mk

	Log Message:
	Bump gzip-base to 1.2.4b for security fix.

	Modified Files:
		pkgsrc/archivers/gzip: Makefile
		pkgsrc/archivers/gzip-base: Makefile distinfo
	Added Files:
		pkgsrc/archivers/gzip-base/patches: patch-ab

	Log Message:
	Update gzip to 1.2.4b, fixing a filename buffer overflow.

Revision 1.14 / (download) - annotate - [select for diffs], Tue Oct 12 18:28:28 2004 UTC (19 years, 5 months ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1, pkgsrc-2004Q4-base, pkgsrc-2004Q4
Changes since 1.13: +4 -5 lines
Diff to previous 1.13 (colored)

Update gzip to 1.2.4b, fixing a filename buffer overflow.

Revision 1.13 / (download) - annotate - [select for diffs], Fri Jul 2 21:06:35 2004 UTC (19 years, 8 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base
Branch point for: pkgsrc-2004Q3
Changes since 1.12: +3 -1 lines
Diff to previous 1.12 (colored)

Enable pkgviews installation.

Revision 1.12 / (download) - annotate - [select for diffs], Fri Jul 2 21:02:49 2004 UTC (19 years, 8 months ago) by minskim
Branch: MAIN
Changes since 1.11: +2 -3 lines
Diff to previous 1.11 (colored)

Define NO_BUILDLINK because this is a meta package.

Revision 1.11 / (download) - annotate - [select for diffs], Thu Mar 11 18:03:50 2004 UTC (20 years ago) by xtraeme
Branch: MAIN
CVS Tags: pkgsrc-2004Q2-base, pkgsrc-2004Q2, pkgsrc-2004Q1-base, pkgsrc-2004Q1
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

bl3ify

Revision 1.10 / (download) - annotate - [select for diffs], Thu Jul 17 21:21:17 2003 UTC (20 years, 8 months ago) by grant
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base, pkgsrc-2003Q4
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

s/netbsd.org/NetBSD.org/

Revision 1.9 / (download) - annotate - [select for diffs], Mon Jun 2 01:21:48 2003 UTC (20 years, 9 months ago) by jschauma
Branch: MAIN
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (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.8 / (download) - annotate - [select for diffs], Wed May 28 20:37:08 2003 UTC (20 years, 9 months ago) by salo
Branch: MAIN
Changes since 1.7: +8 -6 lines
Diff to previous 1.7 (colored)

PKGREVISION++
- install scripts with executable bit set.
- style nits (DESCR has 80 columns, make PKGNAME version agnostic, move
  comment about info file where it belongs, ..).
Addresses PR pkg/21702 by Rob Quinn.

Revision 1.7 / (download) - annotate - [select for diffs], Fri Mar 28 21:14:12 2003 UTC (20 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.6: +1 -2 lines
Diff to previous 1.6 (colored)

NO_PATCH is deprecated, says pkglint. Remove it.

Revision 1.6 / (download) - annotate - [select for diffs], Sun Aug 25 21:49:09 2002 UTC (21 years, 6 months ago) by jlam
Branch: MAIN
CVS Tags: netbsd-1-6-1-base, netbsd-1-6-1
Changes since 1.5: +3 -5 lines
Diff to previous 1.5 (colored)

Merge packages from the buildlink2 branch back into the main trunk that
have been converted to USE_BUILDLINK2.

Revision 1.5.2.2 / (download) - annotate - [select for diffs], Fri Jun 21 23:04:44 2002 UTC (21 years, 9 months ago) by jlam
Branch: buildlink2
Changes since 1.5.2.1: +2 -2 lines
Diff to previous 1.5.2.1 (colored) to branchpoint 1.5 (colored) next main 1.6 (colored)

Rename USE_BUILDLINK2_ONLY to USE_BUILDLINK2 for less verbosity.  Also
convert a few more packages to use the buildlink2 framework.

Revision 1.5.2.1 / (download) - annotate - [select for diffs], Sat May 11 02:08:50 2002 UTC (21 years, 10 months ago) by jlam
Branch: buildlink2
Changes since 1.5: +3 -5 lines
Diff to previous 1.5 (colored)

First pass at conversion of various packages to use the buildlink2
framework.  Add many buildlink2.mk files to add to the framework.  Please
see buildlink2.txt for more details.

Revision 1.5 / (download) - annotate - [select for diffs], Fri Feb 16 14:19:26 2001 UTC (23 years, 1 month ago) by agc
Branch: MAIN
CVS Tags: pkgviews-base, pkgviews, netbsd-1-6-RELEASE-base, netbsd-1-6, netbsd-1-5-PATCH003, netbsd-1-5-PATCH001, buildlink2-base
Branch point for: buildlink2
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

fix a typo from the COMMENT changes.

Revision 1.4 / (download) - annotate - [select for diffs], Fri Feb 16 13:15:29 2001 UTC (23 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.3: +2 -1 lines
Diff to previous 1.3 (colored)

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

Revision 1.3 / (download) - annotate - [select for diffs], Wed Jan 10 11:57:50 2001 UTC (23 years, 2 months ago) by tron
Branch: MAIN
Changes since 1.2: +2 -3 lines
Diff to previous 1.2 (colored)

Use "${OPSYS}" in error message instead of hard coding "NetBSD".

Revision 1.2 / (download) - annotate - [select for diffs], Mon Aug 21 21:01:29 2000 UTC (23 years, 7 months ago) by hubertf
Branch: MAIN
CVS Tags: netbsd-1-5-RELEASE, netbsd-1-4-PATCH003
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored)

Update IGNORE-messages for recent changes: add ${PKGNAME} where
appropriate.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sat Sep 18 14:27:54 1999 UTC (24 years, 6 months ago) by kim
Branch: TNF
CVS Tags: pkgsrc-base, netbsd-1-4-PATCH002, comdex-fall-1999
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

gzip 1.2.4a meta-package

Revision 1.1 / (download) - annotate - [select for diffs], Sat Sep 18 14:27:54 1999 UTC (24 years, 6 months ago) by kim
Branch: MAIN

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>