FreshPorts -- The Place For Ports Sat, 4 Jul 2009 2:17 AM GMT
Do I have any twitter.com followers? I'd like to get control of twitter.com/pgcon, since I run pgcon...
Port details
csup 20060318 net on this many watch lists=19 search for ports that depend on this port
A rewrite of the CVSup file updating client in C
Maintained by: mux@FreeBSD.org search for ports maintained by this maintainer
Port Added: 28 Jan 2006 01:49:27
Also Listed In: devel


Csup is a rewrite of CVSup in C.

CVSup(R) is a software for distributing and updating collections of files
accross a network. It can efficiently and accurately mirror all types of files,
including sources, binaries, hard links, symbolic links, and even device nodes.
In addition to being a great general-purpose mirroring tool, CVSup includes
special features and optimizations specifically tailored to CVS repositories.
It is being used as the preferred way to update sources within the FreeBSD,
NetBSD and OpenBSD projects and more.

WWW: http://mu.org/~mux/csup.html
CVSWeb : Sources : Main Web Site : Distfiles Availability : PortsMon

To install the port: cd /usr/ports/net/csup/ && make install clean
To add the package: pkg_add -r csup


Configuration Options
     No options to configure

Master Sites:
http://www.mu.org/~mux/
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/mux/
ftp://ftp.se.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/mux/
ftp://ftp.uk.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/mux/
ftp://ftp.ru.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/mux/
ftp://ftp.jp.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/mux/
ftp://ftp.tw.FreeBSD.org/pub/FreeBSD/ports/local-distfiles/mux/
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/

Number of commits found: 14

Commit History - (may be incomplete: see CVSWeb link above for full details)
DateByDescription
22 Jun 2006 19:51:58
Original commit files touched by this commit  20060318
mnag search for other commits by this committer
- Fix OSVERSION detection in RELENG_6 and RELENG_6_1
21 Jun 2006 18:11:16
Original commit files touched by this commit  20060318
mnag search for other commits by this committer
- Update to 20060318
- Fix build in tinderbox using ${OSVERSION} instead .if exists()

Approved by:    mux
16 Jun 2006 09:01:46
Original commit files touched by this commit  20060313_1
itetcu search for other commits by this committer
Mark IGNORE if csup is already in the base system.

Approved by:    mux@
15 Mar 2006 13:53:01
Original commit files touched by this commit  20060313
mux search for other commits by this committer
- Update to csup-snap-20060313.  Too many changes to list here!
23 Feb 2006 10:10:47
Original commit files touched by this commit  20060223_1
pav search for other commits by this committer
- Unbreak patch

Approved by:    portmgr (erwin)
23 Feb 2006 01:25:09
Original commit files touched by this commit  20060223_1
mux search for other commits by this committer
Fix a last minute bug by importing a patch from csup's CVS.  We were not
retrying anymore when the server rejects us at login time.
22 Feb 2006 23:47:28
Original commit files touched by this commit  20060223
mux search for other commits by this committer
Update to csup-snap-20060223 (biggest changelog ever!):

- Finally implement fixups and use them in the detailer and updater
  thread as appropriate.  We now longer crash/hang when there is an MD5
  checksum error, but request a fixup (or fail, if the checksum error is
  from a fixup).
- Portability fix: don't use SIZE_T_MAX when ~0 will do fine.
- Plug a memory leak in keyword_prepare().
- Fix the build without assertions.
- Properly check for the success of the asynchronous connect() when we've
  been interrupted by a signal.  Move the logic into proto_waitconnect().
- Properly print transport layer addresses with getnameinfo() and the
  NI_NUMERICHOST flag.  We were printing garbage...
- Assert that we're never printing a NULL string in proto_printf().
- Make sure we disallow 0-length fields in proto_get_ascii() or all sorts
(Only the first 15 lines of the commit message are shown above View all of this commit message)
13 Feb 2006 00:40:04
Original commit files touched by this commit  20060212
mux search for other commits by this committer
Update to csup-snap-20060212:

This snapshot only addresses one problem introduced in the 20060211
snapshot.  Because of what seems to be a bug in CVSup, fixing the
keyword expansion code so that it works correctly with OpenBSD CVSup
servers broke updates from PostgreSQL CVSup servers.  This snapshot
"fixes" this issue by being bug-to-bug compatible with CVSup.
11 Feb 2006 20:08:53
Original commit files touched by this commit  20060211
mux search for other commits by this committer
Update to csup-snap-20060211:
- Add support for retries when the connection is rejected by the server
  and the associated -1 and -r maxRetries options.
- Add missing description for the -4 and -6 options in csup.1.
- Ignore the return value of a chflags() call in fattr_install() to
  match CVSup.  This fixes csup over NFS.
- Correctly handle any locking error with assertions.
- Make the multiplexer code fully dynamic and cancelable.
- Handle errors in the sender and receiver threads correctly by closing
  the multilpexer and waking up all the threads blocked on any of the
  channels.  This means we don't hang when being disconnected for
  instance.
- Make several functions of the chan API, most notably chan_read() and
  chan_write() take a struct chan * instead of an id.  This saves a
  mutex lock and unlock for each call to these functions, and also
(Only the first 15 lines of the commit message are shown above View all of this commit message)
04 Feb 2006 02:50:00
Original commit files touched by this commit  20060204
mux search for other commits by this committer
Update to csup-snap-20060204:
- Don't use the C99 %zd format in fattr_encode(), it fails with a
  pre-C99 compiler and just prints "zd", which caused csup to send
  corrupted file attributes and get kicked by the server.  I have no
  idea why I didn't see this when testing on ref4.FreeBSD.org but csup
  now really works on RELENG_4.
- Completely revamp the file attributes computation when checking out
  new files and when updating them via diffs.  We now create the files
  with correct attributes.  If you've seen "SetAttrs" commands when you
  didn't use to see with CVSup, that fixes it.
- Rewrite mkdirhier() so that it works as intended and respects the
  umask setting of the collection.
- Fix a bad bug in proto_get_ascii() that made csup crash when there
  were no more tokens to eat.
- Rework the status file API so that it's always possible to determine
  if there was an error and to supply appropriate error messages with
  status_errmsg().  Use this new function in the lister, detailer and
  updater threads.
- Implement support for two new formats in proto_printf(), %f and %F,
  that are used to print encoded file attributes.  Use them everywhere
  appropriate to simplify code.

And probably a few things more that I forgot.
02 Feb 2006 23:36:14
Original commit files touched by this commit  20060203
mux search for other commits by this committer
Update to csup-snap-20060203:

- The -4 and -6 switches have been addede to force usage of IPv4 or IPv6,
  respectively,
- The "list=suffix" option in the supfile is now supported.
- And many bugfixes.
02 Feb 2006 00:35:40
Original commit files touched by this commit  20060202
mux search for other commits by this committer
Update to the 20060202 snapshot:
- Many bugfixes and code improvements.
- There is now a csup(1) manual page.
- We now use the Z_DEFAULT_COMPRESSION zlib compression level instead of
  Z_BEST_SPEED (the lowest).  As a consequence of this, less data needs to
  be send and csup is slightly faster than CVSup in my tests.
28 Jan 2006 10:47:18
Original commit files touched by this commit  20060127
ale search for other commits by this committer
Put main category at first place.
28 Jan 2006 01:46:33
Original commit files touched by this commit  20060127
mux search for other commits by this committer
Add a port for csup, the rewrite of CVSup in C.

While it still has some rough edges, it has reached a state where
it's pretty much usable and this port will get me a wider audience for
testing.

Reviewed by:    ahze

Number of commits found: 14

Login
User Login
Create account

Servers and bandwidth provided by
New York Internet
SuperNews

Search
Enter Keywords:
 
more...

Latest Vulnerabilities
nfsenJul 03
nagios*Jul 01
nagios-devel*Jul 01
nagios2*Jul 01
syslog-ng*Jul 01
syslog-ng2*Jul 01
phpmyadminJun 30
tor*Jun 23
tor*Jun 23
cscopeJun 16
cscopeJun 16
finchJun 16
joomla15Jun 16
libpurpleJun 16
pidginJun 16

6 vulnerabilities affecting 11 ports have been reported in the past 14 days

* - modified, not new

All vulnerabilities


Ports
Home
Categories
Deleted ports
Sanity Test Failures
Newsfeeds


Statistics
Graphs
NEW Graphs (Javascript)
Traffic

Calculated hourly:
Port count 20375
Broken 144
Deprecated 44
Ignore 762
Forbidden 5
Restricted 387
No CDROM 139
Vulnerable 56
Expired 17
Set to expire 25
Interactive 81
new 24 hours 2
new 48 hours4
new 7 days69
new fortnight98
new month180

This site
What is FreshPorts?
About the Authors
FAQ
How big is it?
The latest upgrade!
Privacy
Forums
Blog
Contact

Add tab to Netscape 6

Servers and bandwidth provided by
New York Internet
SuperNews
Valid HTML, CSS, and RSS.
Copyright © 2000-2008 DVL Software Limited. All rights reserved.
This page created in 0.212 seconds.