summaryrefslogtreecommitdiff
path: root/net/cvsup/files
diff options
context:
space:
mode:
Diffstat (limited to 'net/cvsup/files')
-rw-r--r--net/cvsup/files/patch-aa12
-rw-r--r--net/cvsup/files/patch-ab19
-rw-r--r--net/cvsup/files/patch-ac51
-rw-r--r--net/cvsup/files/patch-ad15
4 files changed, 0 insertions, 97 deletions
diff --git a/net/cvsup/files/patch-aa b/net/cvsup/files/patch-aa
deleted file mode 100644
index be3f46268fe0..000000000000
--- a/net/cvsup/files/patch-aa
+++ /dev/null
@@ -1,12 +0,0 @@
---- suplib/src/m3makefile.orig Sat May 15 14:41:27 1999
-+++ suplib/src/m3makefile Sun Feb 20 09:52:12 2000
-@@ -55,7 +55,8 @@
- end
-
- if equal(TARGET, "FreeBSD2") or equal(TARGET, "FreeBSD2p")
--or equal(TARGET, "FreeBSD3") or equal(TARGET, "FBSD_ALPHA")
-+or equal(TARGET, "FreeBSD3") or equal(TARGET, "FreeBSD4")
-+or equal(TARGET, "FBSD_ALPHA")
- include_dir("FreeBSD")
- import_lib("md", "/usr/lib")
- else
diff --git a/net/cvsup/files/patch-ab b/net/cvsup/files/patch-ab
deleted file mode 100644
index 55dfefd8fee2..000000000000
--- a/net/cvsup/files/patch-ab
+++ /dev/null
@@ -1,19 +0,0 @@
---- suplib/src/FileAttr.m3.orig Mon Feb 1 14:44:53 1999
-+++ suplib/src/FileAttr.m3 Sun Sep 9 10:51:30 2001
-@@ -102,6 +102,7 @@
- ELSE
- fa.mask := fa.mask + AttrTypes{AttrType.FileType}; (* Always valid. *)
- END;
-+ fa.mask := fa.mask * Supported[fa.fileType];
- IF AttrType.ModTime IN fa.mask THEN
- fa.stat.st_mtime := ScanInt(t, pos, ModTimeRadix, "modTime");
- END;
-@@ -271,7 +272,7 @@
- ch := Text.GetChar(t, pos);
- INC(pos);
- IF ch < '0' OR ch > '9' THEN EXIT END;
-- count := Word.Plus(Word.Times(val, 10), ORD(ch) - ORD('0'));
-+ count := Word.Plus(Word.Times(count, 10), ORD(ch) - ORD('0'));
- END;
- IF pos >= tLen OR ch # '#' THEN
- RAISE TokScan.Error("Missing \"#\" in " & what);
diff --git a/net/cvsup/files/patch-ac b/net/cvsup/files/patch-ac
deleted file mode 100644
index 817a3747b159..000000000000
--- a/net/cvsup/files/patch-ac
+++ /dev/null
@@ -1,51 +0,0 @@
-Index: client/src/Updater.m3
-===================================================================
-RCS file: /home/cvsupcvs/cvsup/client/src/Updater.m3,v
-retrieving revision 1.91
-diff -u -r1.91 Updater.m3
---- client/src/Updater.m3 1999/08/13 19:51:29 1.91
-+++ client/src/Updater.m3 2001/05/26 23:11:39
-@@ -712,7 +712,7 @@
- IF SupFileRec.Option.KeepBadFiles IN sfr.options THEN
- Warn(self, "Bad version saved in " & tempPath);
- ELSE
-- DeleteFile(tempPath);
-+ DeleteFile(self, tempPath);
- END;
- END;
- END UpdateFile;
-@@ -1188,7 +1188,7 @@
- IF NOT SupFileRec.Option.CheckoutMode IN sfr.options THEN
- (* Try the attic. *)
- WITH atticName = SupMisc.AtticName(destPath) DO
-- DeleteFile(atticName);
-+ DeleteFile(self, atticName);
- (* We always delete the Attic directory when it becomes empty.
- FIXME - Is that the right thing to do?. *)
- TRY
-@@ -1196,7 +1196,7 @@
- EXCEPT OSError.E => (* Ignore. *) END;
- END;
- END;
-- DeleteFile(destPath);
-+ DeleteFile(self, destPath);
- IF SupFileRec.Option.CheckoutMode IN sfr.options
- OR NOT self.proto.v.dirsAreExplicit THEN
- (* Delete the directory automatically if it is now empty. *)
-@@ -1231,14 +1231,13 @@
- END;
- END MakeDirectories;
-
--PROCEDURE DeleteFile(path: Pathname.T)
-- RAISES {Error} =
-+PROCEDURE DeleteFile(self: T; path: Pathname.T) =
- BEGIN
- TRY
- FileAttr.Delete(path);
- EXCEPT OSError.E(l) =>
- IF l.head # EnoentAtom THEN
-- RAISE Error("Cannot delete \"" & path & "\": " &
-+ Warn(self, "Cannot delete \"" & path & "\": " &
- ErrMsg.StrError(l));
- END;
- END;
diff --git a/net/cvsup/files/patch-ad b/net/cvsup/files/patch-ad
deleted file mode 100644
index 1a8f7d285a48..000000000000
--- a/net/cvsup/files/patch-ad
+++ /dev/null
@@ -1,15 +0,0 @@
---- quake/cvsup.quake.orig Sat Jan 16 15:47:58 1999
-+++ quake/cvsup.quake Sat May 26 16:21:51 2001
-@@ -50,10 +50,10 @@
- > tempname in
- write("MODULE Version;", CR, CR, "BEGIN", CR, " Name := ")
- end
-- if equal("$Name: REL_16_1 $", "$" & "Name: $")
-+ if equal("$Name: REL_16_1p3 $", "$" & "Name: $")
- cmd = "date -u +'\"U_%Y_%m_%d_%H_%M_%S\";'"
- else
-- cmd = "echo '$Name: REL_16_1 $' | awk '{print \"\\\"\" $2 \"\\\"\";}'"
-+ cmd = "echo '$Name: REL_16_1p3 $' | awk '{print \"\\\"\" $2 \"\\\"\";}'"
- end
- cmd = cmd & " >> " & tempname
- if defined("PM3")