Changeset 3015 for trunk/dports


Ignore:
Timestamp:
Jul 9, 2003, 5:34:09 AM (21 years ago)
Author:
landonf (Landon Fuller)
Message:

Update to 1.11.6

Location:
trunk/dports/devel/cvs-port
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/devel/cvs-port/Portfile

    r3014 r3015  
    1 # $Id: Portfile,v 1.4 2003/07/09 05:03:36 landonf Exp $
     1# $Id: Portfile,v 1.5 2003/07/09 05:34:08 landonf Exp $
    22PortSystem 1.0
    33name                    cvs
    4 version                 1.11.5
    5 revision                1
     4version                 1.11.6
    65description             Concurrent Versions System
    76long_description        CVS is the Concurrent Versions System, the dominant \
     
    109                        developers to large, distributed teams:
    1110maintainers             Landon Fuller <landonf@opendarwin.org>
    12 master_sites            http://ftp.gnu.org/non-gnu/cvs/
     11master_sites            http://distfiles.opendarwin.org/ \
     12                        http://www.cvshome.org/files/19/10/ \
     13                        http://ftp.gnu.org/non-gnu/cvs/
    1314categories              devel net
    14 checksums               md5 b0b5e955c0d83b694c7835dc3e6f0b7d
     15checksums               md5 06a5bbcd93a780a3bbec788deb1cf35b
     16use_bzip2               yes
    1517
    1618# With certain servers (namely the one at work), cvs attempts to write a
  • trunk/dports/devel/cvs-port/files/patch-client.c

    r3013 r3015  
    1 diff -rub cvs-1.11.5.orig/src/client.c cvs-1.11.5/src/client.c
    2 --- src/client.c        Tue Jul  8 21:51:08 2003
    3 +++ src/client.c        Tue Jul  8 21:51:57 2003
    4 @@ -1431,7 +1431,8 @@
     1diff -rub cvs-1.11.6.orig/src/client.c cvs-1.11.6/src/client.c
     2--- src/client.c        Tue Jul  8 22:09:06 2003
     3+++ src/client.c        Tue Jul  8 22:15:32 2003
     4@@ -1429,7 +1429,8 @@
    55    the contents of that file and write them to FILENAME.  FULLNAME is
    66    the name of the file for use in error messages.  FIXME-someday:
     
    1212 read_counted_file (filename, fullname)
    1313     char *filename;
    14 @@ -1450,7 +1451,7 @@
     14@@ -1448,7 +1449,7 @@
    1515     size_t nread;
    1616     size_t nwrite;
     
    2121     read_line (&size_string);
    2222     if (size_string[0] == 'z')
    23 @@ -1471,9 +1472,12 @@
     23@@ -1469,9 +1470,12 @@
    2424        is binary or not.  I haven't carefully looked into whether
    2525        CVS/Template files should use local text file conventions or
     
    3434     nwrite = 0;
    3535     pread = buf;
    36 @@ -1492,16 +1496,20 @@
     36@@ -1490,16 +1494,20 @@
    3737 
    3838        if (nwrite > 0)
     
    5656
    5757 /* OK, we want to swallow the "U foo.c" response and then output it only
    58 @@ -2529,9 +2537,15 @@
    59      char *short_pathname;
    60      char *filename;
    61  {
    62 +    char *output;
     58@@ -2531,6 +2539,9 @@
     59                          + strlen ( CVSADM_TEMPLATE )
     60                          + 2 );
     61     sprintf ( buf, "%s/%s", short_pathname, CVSADM_TEMPLATE );
    6362+    if (strcmp (command_name, "export") == 0)
    64 +           output = NULL;
     63+           read_counted_file ( NULL, buf );
    6564+    else
    66 +           output = CVSADM_TEMPLATE;
    67 +
    68      /* FIXME: should be computing second argument from CVSADM_TEMPLATE
    69         and short_pathname.  */
    70 -    read_counted_file (CVSADM_TEMPLATE, "<CVS/Template file>");
    71 +    read_counted_file (output, "<CVS/Template file>");
     65     read_counted_file ( CVSADM_TEMPLATE, buf );
     66     free ( buf );
    7267 }
    73  
    74  static void handle_template PROTO ((char *, int));
Note: See TracChangeset for help on using the changeset viewer.