The NetBSD Project

CVS log for pkgsrc/archivers/arc/distinfo

[BACK] Up to [cvs.netbsd.org] / pkgsrc / archivers / arc

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.10 / (download) - annotate - [select for diffs], Tue May 2 19:06:45 2006 UTC (6 years ago) by wiz
Branch: MAIN
CVS Tags: 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, 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, pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, pkgsrc-2008Q2-base, pkgsrc-2008Q2, 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, pkgsrc-2006Q2-base, pkgsrc-2006Q2, cwrapper, cube-native-xorg-base, cube-native-xorg, HEAD
Changes since 1.9: +8 -9 lines
Diff to previous 1.9 (colored)

Update to 5.21o:

                        CHANGES IN VERSION 5.21o
                 (Howard Chu, 12 Oct 2005)

Silence warnings about unused results.


                        CHANGES IN VERSION 5.21n
                 (Howard Chu, 08 Oct 2005)

Better fix for temporary file creations, previous patch did not fix marc.
Silence all gcc-4.0.0 -Wall warnings.


                        CHANGES IN VERSION 5.21m
                 (Klaus Reimer, 21 Sep 2005)

Applied patch from Joey Schulze fixing the following problems:

  - Fixed insecure permissions of a temporary file [arcsvc.c, CAN-2005-2945]
  - Fixed insecure temporary file creation [arcsvc.c, CAN-2005-2992]



                        CHANGES IN VERSION 5.21l
                 (Klaus Reimer, 13 Mar 2005)

Fixed warnings because missing inclusion of string.h and fixed a gcc-4.0
problem with marc.c (Missing declaration of makefnam).



                        CHANGES IN VERSION 5.21k
                 (Klaus Reimer, 6 Nov 2004)

Ulf Harnhammar found some buffer overflows causing segfaults and provided a
patch which is now applied to arc to close these bugs.



                        CHANGES IN VERSION 5.21


The following changes have been made in ARC version 5.21, but have not
yet been included in the manual:

o   When adding files to an archive, ARC now shows the stowage facter
    achieved on each file.

o   A bug was found that would keep an archive entry from being
    encrypted if it was stored without compression.  This has now been
    fixed.

o   If changes are made to a corrupted archive, the corrupted entries
    are discarded.  This makes it possible to lose data accidentally.
    ARC will now only make changes to a corrupted archive if the W
    (suppress Warnings) option has been given.

o   The N (suppress Notes) option now suppresses the "Creating
    archive" note when a new archive is being created.

o   The N (suppress Notes) option formerly did nothing useful when
    used with the L (List files) command.  It now causes a terse
    listing of filenames only, suitable for use with pipes and
    redirection.

o   The list of filenames given to ARC may now include indirect
    references.  If a filename begins with an "at sign" ("@"), it is
    taken to be the name of a file which contains a list of file
    names.  The list of file names may include further indirection.
    If no extension is given, ".CMD" is assumed.  For example, the
    command:

         arc a waste junk.txt @trash

    would cause ARC to add JUNK.TXT plus all files listed in the file
    TRASH.CMD to an archive named WASTE.ARC.  If no file is specified,
    then the list is read from standard input.  For example, the
    command:

         arc ln waste | arc a trash @

    would cause ARC to add files to TRASH.ARC based on the names of
    the files stored in WASTE.ARC.  It is probably a good idea to give
    the O (Overwrite) option if you are extracting files this way.

    Version 5.21 of MARC also allows for indirection.

Revision 1.8.4.1 / (download) - annotate - [select for diffs], Sat Oct 8 06:27:21 2005 UTC (6 years, 7 months ago) by snj
Branch: pkgsrc-2005Q3
Changes since 1.8: +2 -1 lines
Diff to previous 1.8 (colored) next main 1.9 (colored)

Pullup ticket 810 - requested by Lubomir Sedlacik
security fix for arc

Revisions pulled up:
- pkgsrc/archivers/arc/Makefile		1.24
- pkgsrc/archivers/arc/distinfo		1.9
- pkgsrc/archivers/arc/patches/patch-ae	1.1

   Module Name:    pkgsrc
   Committed By:   salo
   Date:           Thu Oct  6 14:23:39 UTC 2005

   Modified Files:
           pkgsrc/archivers/arc: Makefile distinfo
   Added Files:
           pkgsrc/archivers/arc/patches: patch-ae

   Log Message:
   Security fix for CAN-2005-2945 and CAN-2005-2992:

   "arc 5.21j and earlier create temporary files with world-readable
   permissions, which allows local users to read sensitive information
   from files created by arc or marc."

   http://www.zataz.net/adviso/arc-09052005.txt
   http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-2945

   Patch from Debian.

Revision 1.9 / (download) - annotate - [select for diffs], Thu Oct 6 14:23:39 2005 UTC (6 years, 7 months ago) by salo
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base, pkgsrc-2006Q1, pkgsrc-2005Q4-base, pkgsrc-2005Q4
Changes since 1.8: +2 -1 lines
Diff to previous 1.8 (colored)

Security fix for CAN-2005-2945 and CAN-2005-2992:

"arc 5.21j and earlier create temporary files with world-readable permissions,
which allows local users to read sensitive information from files created by
arc or marc."

http://www.zataz.net/adviso/arc-09052005.txt
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-2945

Patch from Debian.

Revision 1.8 / (download) - annotate - [select for diffs], Sun May 8 05:45:42 2005 UTC (7 years ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base, pkgsrc-2005Q2-base, pkgsrc-2005Q2
Branch point for: pkgsrc-2005Q3
Changes since 1.7: +2 -1 lines
Diff to previous 1.7 (colored)

Make this package build with gcc-4.

Revision 1.7 / (download) - annotate - [select for diffs], Wed Feb 23 14:45:22 2005 UTC (7 years, 2 months ago) by agc
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1
Changes since 1.6: +2 -1 lines
Diff to previous 1.6 (colored)

Add RMD160 digests in addition to SHA1 ones.

Revision 1.6 / (download) - annotate - [select for diffs], Sun Jan 16 16:39:08 2005 UTC (7 years, 4 months ago) by tv
Branch: MAIN
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored)

MAke build on Interix.

Revision 1.5 / (download) - annotate - [select for diffs], Sat Jan 1 11:43:27 2005 UTC (7 years, 4 months ago) by kristerw
Branch: MAIN
Changes since 1.4: +2 -1 lines
Diff to previous 1.4 (colored)

Correct a buffer overflow, using a patch provided by Richard Rauch
in PR pkg/23954.

Bump PKGREVISION.

Revision 1.4 / (download) - annotate - [select for diffs], Sat Apr 10 23:31:27 2004 UTC (8 years, 1 month ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2004Q4-base, pkgsrc-2004Q4, pkgsrc-2004Q3-base, pkgsrc-2004Q3, pkgsrc-2004Q2-base, pkgsrc-2004Q2
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored)

Make this package build on Linux.  Patch provided by Georg Schwarz in
PR pkg/25043.

Revision 1.2.2.1 / (download) - annotate - [select for diffs], Sun Jun 23 18:37:18 2002 UTC (9 years, 10 months ago) by jlam
Branch: buildlink2
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored) next main 1.3 (colored)

Merge from pkgsrc-current to buildlink2 branch.

Revision 1.3 / (download) - annotate - [select for diffs], Mon Jun 10 15:09:16 2002 UTC (9 years, 11 months ago) by schmonz
Branch: MAIN
CVS Tags: pkgviews-base, pkgviews, pkgsrc-2004Q1-base, pkgsrc-2004Q1, pkgsrc-2003Q4-base, pkgsrc-2003Q4, netbsd-1-6-RELEASE-base, netbsd-1-6-1-base, netbsd-1-6-1, netbsd-1-6, buildlink2-base
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored)

Darwinize. Instead of the deprecated timelocal() (which doesn't
exist on Darwin), use mktime() with a negative tm_isdst. Thanks to
christos for comments.

Revision 1.2 / (download) - annotate - [select for diffs], Wed Apr 18 11:21:02 2001 UTC (11 years, 1 month ago) by agc
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH003, netbsd-1-5-PATCH001
Branch point for: buildlink2
Changes since 1.1: +3 -2 lines
Diff to previous 1.1 (colored)

Move to sha1 digests, and add distfile sizes.

Revision 1.1 / (download) - annotate - [select for diffs], Tue Apr 17 10:10:18 2001 UTC (11 years, 1 month ago) by agc
Branch: MAIN

+ move the distfile digest/checksum value from files/md5 to distinfo
+ move the patch digest/checksum values from files/patch-sum to distinfo

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>