summaryrefslogtreecommitdiff
path: root/net/rsync/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2002-05-16fix typo in MASTER_SITES.grant1-2/+2
rsync 2.5.5 "Snowy River" (2 April 2002) ENHANCEMENTS: * With --progress, when a transfer is complete show the time taken; otherwise show expected time to complete. (Cameron Simpson) * Make "make install-strip" works properly, and "make install" accepts a DESTDIR variable for help in building binary packages. (Peter Breitenlohner, Greg Louis) * If configured with --enable-maintainer-mode, then on receipt of a fatal signal rsync will try to open an xterm running gdb, similarly to Samba's "panic action" or GNOME's bug-buddy. (Martin Pool) BUG FIXES: * Fix situation where failure to fork (e.g. because out of process slots) would cause rsync to kill all processes owned by the current user. Yes, really! (Paul Haas, Martin Pool) * Fix test suite on Solaris. (Jos Backus, Martin Pool) * Fix minor memory leak in socket code. (Dave Dykstra, Martin Pool.) * Fix --whole-file problem that caused it to be the default even for remote connections. (Martin Pool, Frank Schulz) * Work around bug in Mac OS X mkdir(2), which cannot handle trailing slashes. <http://www.opensource.apple.com/bugs/X/BSD%20Kernel/2734739.html> (Martin Pool) * Improved network error handling. (Greg A. Woods)
2002-05-16update to 2.5.5grant1-3/+5
2002-05-16add ftp://rsync.samba.org/pub/rsync/old-versions/ to MASTER_SITES togrant1-1/+2
fetch old distfiles.
2002-03-13Update "rsync" package to version 2.5.3. Changes since version 2.5.4:tron1-2/+2
- Additional fix for zlib double-free bug. (Martin Pool, Andrew Tridgell) (CVE CAN-2002-0059) - Merge in changes from zlib 1.1.3 to zlib 1.1.4. (Jos Backus) (Note that rsync still uses a custom version of zlib; you can not just link against a system library. See zlib/README.rsync) - Additional test cases for --compress. (Martin Pool)
2002-03-12Update "rsync" package to version 2.5.3. Changes since version 2.5.2:tron1-3/+2
- Make sure that supplementary groups are removed from a server process after changing uid and gid. (Ethan Benson) (Debian bug #132272, CVE CAN-2002-0080) - Fix zlib double-free bug. (Owen Taylor, Mark J Cox) (CVE CAN-2002-0059) - Fixed problem that in many cases caused the error message unexpected read size of 0 in map_ptr and resulted in the wrong data being copied. - Fixed compilation errors on some systems caused by the use of "unsigned int64" in rsync.h. - Fixed problem on systems such as Sunos4 that do not support realloc on a NULL pointer; error was "out of memory in flist_expand". - Fix for rsync server processes hanging around after the client unexpectedly disconnects. (Colin Walters) (Debian bug #128632) - Cope with BSD systems on which mkdir() will not accept a trailing slash. - Merge in changes from zlib 1.1.2 to zlib 1.1.3. (Note that rsync still uses a custom version of zlib; you can not just link against a system library. See zlib/README.rsync) - Command to initiate connections is only shown with -vv, rather than -v as in 2.5.2. Output from plain -v is more similar to what was historically used so as not to break scripts that try to parse the output. - Added --no-whole-file and --no-blocking-io options (Dave Dykstra) - Made the --write-batch and --read-batch options actually work and added documentation in the man page (Jos Backus) - If the daemon is unable to fork a child to accept a connection, print an error message. (Colin Walters)
2002-02-27Dump PKGREVISION because an important patch was added.atatat1-1/+2
2002-01-26Update to 2.5.2. Changes since 2.5.1:bouyer1-2/+2
rsync 2.5.2 (26 Jan 2002) SECURITY FIXES: * Signedness security patch from Sebastian Krahmer <krahmer@suse.de> -- in some cases we were not sufficiently careful about reading integers from the network. BUG FIXES: * Fix possible string mangling in log files. * Fix for setting local address of outgoing sockets. * Better handling of hardlinks and devices on platforms with 64-bit dev_t or ino_t. * Name resolution on machines supporting IPv6 is improved. * Fix for device nodes. (dann frazier) (Debian #129135) ENHANCEMENTS: * With -v, rsync now shows the command used to initiate an ssh/rsh connection. * --statistics now shows memory heap usage on platforms that support mallinfo(). * "The Ted T'so school of program optimization": make progress visible and people will think it's faster. (With --progress, rsync will show you how many files it has seen as it builds the file_list, giving some indication that it has not hung.) * Improvements to batch mode support. This is still experimental but testing would be welcome. (Jos Backus) * New --ignore-existing option, patch previously distributed with Vipul's Razor. (Debian #124286)
2002-01-10Always use included popt.wiz1-2/+3
2002-01-10Updated rsync to 2.5.1martti1-19/+3
* native IPv6 support * bug fixes * --progress and -P now show estimated data transfer rate * --no-detach option * clearer error messages for some conditions
2001-02-25Cleanup MKDIR usage => INSTALL_*_DIRhubertf1-2/+2
XXX need to teach pkglint to be more picky about this
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz1-1/+2
2001-01-28Update "rsync" package to version 2.4.6. A change list summary is nottron1-5/+4
available.
2000-09-04use latest IPv6 patch (20000901b). two issues are corrected:itojun1-2/+2
- client does not accept additional argument -[46] (IPv4 or IPv6) - server SEGV when there's no reverse mapping from IPv[46] address to FQDN ok'ed on packages@netbsd.org
2000-08-21Update to rsync 2.4.5:veego1-3/+3
This version includes the following changes: - added support for 0.0.0.0/0 syntax in hosts allow/deny to mean "all hosts" - fixed crash bug with --backup-dir - fixed hang on exit due to race in waitpid and io_flush - added "ignore nonreadable" option
2000-08-02Update to rsync 3.0.2: Fix a potential buffer overflow in the xattr code.wiz1-3/+3
2000-07-12Update homepage URL.tron1-2/+2
2000-06-20use more recent patch. this should correct PR 10396.itojun1-3/+3
2000-02-09Remove unnecessary directory name "pub" from URL for "ftp.fu-berlin.de".tron1-2/+2
1999-09-29Make this package work on Solaris again - only use the IPv6 patches ifagc1-7/+10
the OS is NetBSD.
1999-09-03Compare "${USE_INET6}" explicitly with "YES" so that you can overridetron1-2/+2
settings at the command line.
1999-08-18Record build options in the BuildInfo file via BUILD_DEFS. These can beagc1-1/+3
displayed using the -B option to pkg_info(1). Add USE_INET6 to BUILD_DEFS
1999-07-22cleaner IPv6 patch is applied.itojun1-14/+9
1999-07-12add official mirror for ftp.kame.net.itojun1-3/+5
1999-07-08enable IPv6 build (USE_INET6)itojun1-1/+16
1999-05-12Rsync 2.3.1 is in the /pub/rsync directory, not the /pub/rsync/old-versionstv1-2/+2
directory, on samba.anu.edu.au at the moment.
1999-05-05Use ftp0.sunet.se instead of ftp.sunet.se.bad1-2/+2
1999-04-13Remove NOPORTDOCS definition - it was useless anyway, as any attempt toagc1-5/+1
build a binary package with this definition would fail as the PLIST is not correct. If a package's documentation is overwhelming, it should arguably be handled in a separate pre-requisite documentation package.
1999-04-08Update to V2.3.1.hubertf1-2/+2
Mostly to fix the bug recently mentioned on bugtraq and which was also (first?) mentioned in http://rsync.samba.org/cgi-bin/rsync?findid=1706 . Numerous other changes, see http://samba.anu.edu.au/ftp/rsync/cvs.log
1999-03-17* change first site from samba.anu.edu.au to rsync.samba.orglukem1-2/+2
* look in `old-versions/' for 2.2.1, since 2.3.0 is the current version
1999-02-20Fix CONFLICTS (remove redundancy, mostly)hubertf1-3/+1
1998-11-26update to V2.2.1hubertf1-2/+2
1998-11-052.2.0mycroft1-3/+3
1998-09-28Update rsync to 2.1.1.frueauf1-3/+3
1998-08-20The Grand Homepagification:tsarna1-1/+2
- New, optional Makefile variable HOMEPAGE, specifies a URL for the home page of the software if it has one. - The value of HOMEPAGE is used to add a link from the README.html files. - pkglint updated to know about it. The "correct" location for HOMEPAGE in the Makefile is after MAINTAINER, in that same section.
1998-07-25Update to rsync 2.1.0.frueauf1-3/+3
1998-07-04Remove outdated RCS tag.mycroft1-2/+1
1998-07-04Update to 2.0.18.mycroft1-3/+5
1998-06-22Update package Makefiles for automatic manual page handling.agc1-2/+1
1998-06-03Include bsd.prefs.mk so that variables can be set in /etc/mk.confagc1-1/+3
1998-04-20Substitute all obvious FreeBSD ppl as MAINTAINER with packages@netbsd.org.frueauf1-2/+2
1998-04-15Use the bsd.pkg.mk and bsd.pkg.subdir.mk files in the pkgsrc tree.agc1-7/+2
Remove redundant (and sometimes erroneous) comments.
1998-02-02portlint: move cvs id where it belongs.frueauf1-2/+1
1998-02-01portlint: fix URLhubertf1-2/+2
1998-01-23Initial import of rsync, a utility to synchronise directory treesagc1-0/+30
across machines in an efficient manner, into the NetBSD packages collection. This is originally from the FreeBSD ports collection, but I've (a) deleted the patches which add support for a client for the public rsync daemon (I have no real way to test that under NetBSD), and (b) added a patch to use mkstemp() instead of a mktemp(), open() combination, and (c) also upgraded to version 1.6.9 while I was at it.