update stable/ to 2.13.16 and snapshot/ to 2.17.1

from maintainer Zvezdan Petkovic <zpetkovic at acm.org>
This commit is contained in:
sturm 2006-06-17 19:14:42 +00:00
parent be6d067c3a
commit 6cdf1db3f9
29 changed files with 17 additions and 859 deletions

View File

@ -1,7 +1,6 @@
# $OpenBSD: Makefile.inc,v 1.2 2005/05/30 19:27:45 sturm Exp $ # $OpenBSD: Makefile.inc,v 1.3 2006/06/17 19:14:42 sturm Exp $
DISTNAME= unison-${VERSION} DISTNAME= unison-${VERSION}
PKGNAME= ${DISTNAME}p0
CATEGORIES= net CATEGORIES= net
HOMEPAGE= http://www.cis.upenn.edu/~bcpierce/unison/ HOMEPAGE= http://www.cis.upenn.edu/~bcpierce/unison/
@ -43,8 +42,8 @@ MAKE_FLAGS+= NATIVE=${MODOCAML_NATIVE:S/Yes/true/:S/No/false/} \
NO_REGRESS= Yes NO_REGRESS= Yes
# Empty to avoid multiple all:: entries and use the first target entry. # Avoid multiple all:: entries and use the real target entry.
ALL_TARGET= ALL_TARGET= unison
DOCS= BUGS.txt NEWS README DOCS= BUGS.txt NEWS README

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.1.1.1 2005/05/22 17:44:41 sturm Exp $ # $OpenBSD: Makefile,v 1.2 2006/06/17 19:14:42 sturm Exp $
COMMENT= "multi-platform file synchronization tool, beta version" COMMENT= "multi-platform file synchronization tool, beta version"
VERSION= 2.12.0 VERSION= 2.17.1
MASTER_SITES= ${HOMEPAGE}download/beta-test/${DISTNAME}/ MASTER_SITES= ${HOMEPAGE}download/releases/beta/
.include <bsd.port.mk> .include <bsd.port.mk>

View File

@ -1,4 +1,4 @@
MD5 (unison-2.12.0.tar.gz) = c2b818e77e95951b5db0b95272e385a2 MD5 (unison-2.17.1.tar.gz) = c62611dda096da360ad645fad8e8ce3e
RMD160 (unison-2.12.0.tar.gz) = 89f215787df9b8f1d0edb367559be5dce810c215 RMD160 (unison-2.17.1.tar.gz) = 7b5143d160c09cefd6027807ca54c02e83265008
SHA1 (unison-2.12.0.tar.gz) = 71cc8abedf8e9434285a610c3f4090ddc05cdfa9 SHA1 (unison-2.17.1.tar.gz) = 03e02df5499b2c9db79ac895ca7c2d5d59b1f294
SIZE (unison-2.12.0.tar.gz) = 841717 SIZE (unison-2.17.1.tar.gz) = 415057

View File

@ -1,58 +0,0 @@
$OpenBSD: patch-files_ml,v 1.2 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Fix substitution of CURRENT1 and CURRENT2 in diff command.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000091.html
o Fix the problem with comparison of files using diff
when the files are on two different hosts.
See http://groups.yahoo.com/group/unison-users/message/3877
--- files.ml.orig Sat Mar 12 11:17:59 2005
+++ files.ml Fri May 27 17:38:20 2005
@@ -429,8 +429,8 @@ let diffCmd =
^ "utility used to generate displays of file differences. The default "
^ "is `\\verb|diff|'. If the value of this preference contains the substrings "
^ "CURRENT1 and CURRENT2, these will be replaced by the names of the files to be "
- ^ "diffed. If not, the two filenames will be appended to the command (enclosed "
- ^ "in double quotes).")
+ ^ "diffed. If not, the two filenames will be appended to the command. In both "
+ ^ "cases, the filenames are suitably quoted.")
let quotes s = "'" ^ Util.replacesubstring s "'" "'\''" ^ "'"
@@ -442,14 +442,14 @@ let rec diff root1 path1 ui1 root2 path2
(root2string root2) (Path.toString path2));
let displayDiff fspath1 fspath2 =
let cmd =
- if Util.findsubstring (Prefs.read diffCmd) "CURRENT1" = None then
+ if Util.findsubstring "CURRENT1" (Prefs.read diffCmd) = None then
(Prefs.read diffCmd)
^ " " ^ (quotes (Fspath.toString fspath1))
- ^ " " ^ (quotes (Fspath.toString fspath2))
- else
+ ^ " " ^ (quotes (Fspath.toString fspath2))
+ else
Util.replacesubstrings (Prefs.read diffCmd)
- ["CURRENT1", (Fspath.toString fspath1);
- "CURRENT2", (Fspath.toString fspath2)] in
+ ["CURRENT1", quotes (Fspath.toString fspath1);
+ "CURRENT2", quotes (Fspath.toString fspath2)] in
let c = Unix.open_process_in cmd in
showDiff cmd (readChannelTillEof c);
ignore(Unix.close_process_in c) in
@@ -476,7 +476,7 @@ let rec diff root1 path1 ui1 root2 path2
(Update.translatePath root2 path2 >>= (fun path2 ->
Copy.file root2 path2 root1 workingDir tmppath realPath
`Copy (Props.setLength Props.fileSafe (Props.length desc2))
- fp1 ress1 id));
+ fp2 ress2 id));
displayDiff
(Fspath.concat workingDir realPath)
(Fspath.concat workingDir tmppath);
@@ -494,7 +494,7 @@ let rec diff root1 path1 ui1 root2 path2
(* Note that we don't need the ressource fork *)
Copy.file root1 path1 root2 workingDir tmppath realPath
`Copy (Props.setLength Props.fileSafe (Props.length desc1))
- fp2 ress2 id));
+ fp1 ress1 id));
displayDiff
(Fspath.concat workingDir tmppath)
(Fspath.concat workingDir realPath);

View File

@ -1,52 +0,0 @@
$OpenBSD: patch-os_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch and port maintainer patch.
o Properly deal with empty directories under Windows
(workaround for a bug in Ocaml).
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000092.html
o Fix the failure of Windows client when a file is read-only.
Approved by developers.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000087.html
--- os.ml.orig Sat Mar 12 11:17:58 2005
+++ os.ml Fri May 27 17:28:31 2005
@@ -150,10 +150,23 @@ and childrenOf fspath path =
loop newChildren directory
in
let absolutePath = Fspath.concat fspath path in
- let directory = Fspath.opendir absolutePath in
- let result = loop [] directory in
- Unix.closedir directory;
- result)
+ let directory =
+ try
+ Some (Fspath.opendir absolutePath)
+ with Unix.Unix_error (Unix.ENOENT, _, _) ->
+ (* FIX (in Ocaml): under Windows, when a directory is empty
+ (not even "." and ".."), FindFirstFile fails with
+ ERROR_FILE_NOT_FOUND while ocaml expects the error
+ ERROR_NO_MORE_FILES *)
+ None
+ in
+ match directory with
+ Some directory ->
+ let result = loop [] directory in
+ Unix.closedir directory;
+ result
+ | None ->
+ [])
(*****************************************************************************)
(* ACTIONS ON FILESYSTEM *)
@@ -175,8 +188,11 @@ and delete fspath path =
(childrenOf fspath path);
Unix.rmdir absolutePath
| `FILE ->
- if Util.osType <> `Unix then
- Unix.chmod absolutePath 0o600;
+ if Util.osType <> `Unix then begin
+ try
+ Unix.chmod absolutePath 0o600;
+ with Unix.Unix_error _ -> ()
+ end;
Unix.unlink absolutePath;
if Prefs.read Osx.rsrc then begin
let pathDouble = Osx.appleDoubleFile fspath path in

View File

@ -1,20 +0,0 @@
$OpenBSD: patch-osx_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
Fix the Mac OS X client problem.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000076.html
--- osx.ml.orig Sat Mar 12 11:17:59 2005
+++ osx.ml Mon May 23 13:50:28 2005
@@ -386,9 +386,10 @@ let ressDummy = NoRess
let openRessIn fspath path =
Util.convertUnixErrorsToTransient "reading ressource fork" (fun () ->
try
- open_in_gen
- [Open_rdonly; Open_binary] 0o444
- (Fspath.concatToString fspath (ressPath path))
+ Unix.in_channel_of_descr
+ (Unix.openfile
+ (Fspath.concatToString fspath (ressPath path))
+ [Unix.O_RDONLY] 0o444)
with Unix.Unix_error (Unix.ENOTDIR, _, _) ->
let (doublePath, inch, entries) = openDouble fspath path in
try

View File

@ -1,26 +0,0 @@
$OpenBSD: patch-props_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Fix in property setting. In particular, set properties in the right order.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000091.html
--- props.ml.orig Sat Mar 12 11:17:59 2005
+++ props.ml Fri May 27 17:31:10 2005
@@ -421,7 +421,7 @@ let syncedPartsToString t = match t with
let iCanWrite p =
try
- Unix.access p [Unix.R_OK];
+ Unix.access p [Unix.W_OK];
true
with
Unix.Unix_error _ -> false
@@ -625,8 +625,8 @@ let set fspath path kind p =
Uid.set fspath path kind p.uid;
Gid.set fspath path kind p.gid;
TypeCreator.set fspath path kind p.typeCreator;
- Perm.set fspath path kind p.perm;
- Time.set fspath path kind p.time
+ Time.set fspath path kind p.time;
+ Perm.set fspath path kind p.perm
let init someHostIsRunningWindows =
Perm.init someHostIsRunningWindows;

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-pty_c,v 1.1 2005/12/24 08:33:20 pvalchev Exp $
--- pty.c.orig Fri Dec 23 23:57:50 2005
+++ pty.c Fri Dec 23 23:57:55 2005
@@ -18,7 +18,7 @@ CAMLprim value dumpFd(value fdVal) {
}
#include <caml/fail.h> // failwith
-#include <sys/errno.h> // errno
+#include <errno.h> // errno
#include <string.h> // strerror
#include <caml/alloc.h> // alloc_tuple
#include <caml/memory.h> // Store_field

View File

@ -1,49 +0,0 @@
$OpenBSD: patch-ubase_util_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Catch failure of localtime library call.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000092.html
o Fix the order of looking for home directory.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000088.html
--- ubase/util.ml.orig Sat Mar 12 11:17:58 2005
+++ ubase/util.ml Fri May 27 18:07:18 2005
@@ -244,14 +244,18 @@ let time () =
convertUnixErrorsToTransient "time" Unix.time
let time2string timef =
- let time = localtime timef in
- Printf.sprintf
- "%2d:%.2d on %2d %3s, %4d"
- time.Unix.tm_hour
- time.Unix.tm_min
- time.Unix.tm_mday
- (monthname time.Unix.tm_mon)
- (time.Unix.tm_year + 1900)
+ try
+ let time = localtime timef in
+ Printf.sprintf
+ "%2d:%.2d:%.2d on %2d %3s, %4d"
+ time.Unix.tm_hour
+ time.Unix.tm_min
+ time.Unix.tm_sec
+ time.Unix.tm_mday
+ (monthname time.Unix.tm_mon)
+ (time.Unix.tm_year + 1900)
+ with Transient _ ->
+ "(invalid date)"
let percentageOfTotal current total =
(int_of_float ((float current) *. 100.0 /. (float total)))
@@ -364,11 +368,11 @@ let fileInHomeDir n =
Filename.concat (safeGetenv "HOME") n
else if osType = `Win32 then
let dirString =
- try Unix.getenv "UNISON" (* Use UNISON dir if it is set *)
+ try Unix.getenv "USERPROFILE" (* Windows NT/2K standard *)
with Not_found ->
try Unix.getenv "HOME" (* Windows 9x with Cygwin HOME set *)
with Not_found ->
- try Unix.getenv "USERPROFILE" (* Windows NT/2K standard *)
+ try Unix.getenv "UNISON" (* Use UNISON dir if it is set *)
with Not_found ->
"c:/" (* Default *) in
Filename.concat dirString n

View File

@ -1,43 +0,0 @@
$OpenBSD: patch-uicommon_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Correct quoting of ignored patterns generated by the UI.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000092.html
--- uicommon.ml.orig Sat Mar 12 11:17:58 2005
+++ uicommon.ml Fri May 27 17:29:02 2005
@@ -275,26 +275,28 @@ let quote s =
| c ->
buf.[!pos] <- c; pos := !pos + 1
done;
- String.sub buf 0 !pos
+ "{" ^ String.sub buf 0 !pos ^ "}"
-let ignorePath path = "Path " ^ (quote (Path.toString path))
+let ignorePath path = "Path " ^ quote (Path.toString path)
let ignoreName path =
match Path.finalName path with
- Some name -> "Name " ^ (quote (Name.toString name))
+ Some name -> "Name " ^ quote (Name.toString name)
| None -> assert false
let ignoreExt path =
match Path.finalName path with
Some name ->
let str = Name.toString name in
- (try
- let pos = String.rindex str '.' + 1 in
+ begin try
+ let pos = String.rindex str '.' in
let ext = String.sub str pos (String.length str - pos) in
- "Name *." ^ (quote ext)
+ "Name {,.}*" ^ quote ext
with Not_found -> (* str does not contain '.' *)
- "Name "^(quote str))
- | None -> assert false
+ "Name " ^ quote str
+ end
+ | None ->
+ assert false
let addIgnorePattern theRegExp =
if theRegExp = "Path " then

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-uigtk2_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Disable password prompting code (broken in 2.12.0).
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000091.html
--- uigtk2.ml.orig Sat Mar 12 11:17:59 2005
+++ uigtk2.ml Fri May 27 17:30:45 2005
@@ -745,8 +745,7 @@ let termInteract() =
match Uicommon.sshParse s with
Uicommon.Password account -> getPassword account
| _ -> "" in
- if Osx.isMacOSX or Osx.isLinux then Some handleSSH
- else None
+ None
(* ------ *)

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-uitext_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Missing call to restoreTerminal.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000092.html
--- uitext.ml.orig Sat Mar 12 11:17:59 2005
+++ uitext.ml Fri May 27 17:29:54 2005
@@ -426,6 +426,8 @@ let setWarnPrinter() =
(["n";"q";"x"],
("Exit"),
fun()->
+ alwaysDisplay "\n";
+ restoreTerminal ();
Lwt_unix.run (Update.unlockArchives ());
exit 1)]
(fun()-> display "Press return to continue.")

View File

@ -1,38 +0,0 @@
$OpenBSD: patch-update_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Better error message for non-existing paths.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000092.html
o Update archive timestamps to avoid defeating fastcheck on Windows.
See http://groups.yahoo.com/group/unison-users/message/3821
--- update.ml.orig Sat Mar 12 11:17:58 2005
+++ update.ml Fri May 27 17:27:12 2005
@@ -1587,7 +1587,6 @@ and buildUpdateRec archive currfspath pa
let rec buildUpdate archive fspath fullpath here path =
match Path.deconstruct path with
None ->
- Os.checkThatParentPathIsADir fspath here;
showStatus path;
let (arch, ui) =
buildUpdateRec archive fspath here (useFastChecking()) in
@@ -1597,6 +1596,12 @@ let rec buildUpdate archive fspath fullp
end,
ui)
| Some(name, path') ->
+ if not (isDir fspath here) then
+ (archive,
+ Error (Printf.sprintf
+ "path %s is not valid because %s is not a directory"
+ (Path.toString fullpath) (Path.toString here)))
+ else
let children = getChildren fspath here in
let (name', status) =
try
@@ -1634,7 +1639,7 @@ let rec buildUpdate archive fspath fullp
Note that we may also put NoArchive deep inside an
archive...
*)
- (ArchiveDir (desc, NameMap.add name' child otherChildren),
+ (ArchiveDir (desc, NameMap.add name' arch otherChildren),
updates)
(* for the given path, find the archive and compute the list of update

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.1.1.1 2005/05/22 17:44:40 sturm Exp $ # $OpenBSD: Makefile,v 1.2 2006/06/17 19:14:42 sturm Exp $
COMMENT= "multi-platform file synchronization tool" COMMENT= "multi-platform file synchronization tool"
VERSION= 2.10.2 VERSION= 2.13.16
MASTER_SITES= ${HOMEPAGE}download/stable/${DISTNAME}/ MASTER_SITES= ${HOMEPAGE}download/releases/stable/
.include <bsd.port.mk> .include <bsd.port.mk>

View File

@ -1,4 +1,4 @@
MD5 (unison-2.10.2.tar.gz) = a93cf03d4221ab6bab8b758b0325a9d5 MD5 (unison-2.13.16.tar.gz) = a79bf5f4ebf2a1eaf15b1ac97f827374
RMD160 (unison-2.10.2.tar.gz) = 593d71c39b49f30e82df58f62891d6d5540c2af7 RMD160 (unison-2.13.16.tar.gz) = 171d8bbc788be31227f6b09d1793a984d33bfdfc
SHA1 (unison-2.10.2.tar.gz) = 1d378292d944981fb41504c8cea92cd3e1913c49 SHA1 (unison-2.13.16.tar.gz) = 3f119f6a6e8bc5ade8933d4693075a768f0abf9a
SIZE (unison-2.10.2.tar.gz) = 458032 SIZE (unison-2.13.16.tar.gz) = 393266

View File

@ -1,87 +0,0 @@
$OpenBSD: patch-copy_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Fix the file open in text mode instead of binary.
See http://groups.yahoo.com/group/unison-users/message/3184
and http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000089.html
o Fix the Windows client hang problem.
See http://groups.yahoo.com/group/unison-users/message/2885
--- copy.ml.orig Mon Sep 6 15:15:47 2004
+++ copy.ml Mon May 23 16:26:18 2005
@@ -10,14 +10,16 @@ let debug = Trace.debug "copy"
let openFileIn fspath path kind =
match kind with
- `DATA -> Unix.openfile (Fspath.concatToString fspath path)
- [Unix.O_RDONLY] 0o444
+ `DATA -> Unix.descr_of_in_channel
+ (open_in_gen [Open_rdonly; Open_binary] 0o444
+ (Fspath.concatToString fspath path))
| `RESS _ -> Osx.openRessIn fspath path
let openFileOut fspath path kind =
match kind with
- `DATA -> Unix.openfile (Fspath.concatToString fspath path)
- [Unix.O_WRONLY;Unix.O_CREAT;Unix.O_EXCL] 0o600
+ `DATA -> Unix.descr_of_out_channel
+ (open_out_gen [Open_wronly; Open_creat; Open_excl; Open_binary]
+ 0o600 (Fspath.concatToString fspath path))
| `RESS len -> Osx.openRessOut fspath path len
let protect f g =
@@ -260,10 +262,9 @@ let reallyTransmitFile
fspathTo pathTo realPathTo `DATA update srcFileSize id file_id
>>= (fun (outfd, infd, bi) ->
Lwt.catch (fun () ->
- Lwt_util.run_in_region transmitFileReg (bufferSize srcFileSize) (fun () ->
- Uutil.showProgress id Uutil.Filesize.zero "f";
- compressRemotely connFrom
- (bi, fspathFrom, pathFrom, `DATA, srcFileSize, id, file_id))
+ Uutil.showProgress id Uutil.Filesize.zero "f";
+ compressRemotely connFrom
+ (bi, fspathFrom, pathFrom, `DATA, srcFileSize, id, file_id)
>>= (fun () ->
decompressor :=
Remote.MsgIdMap.remove file_id !decompressor; (* For GC *)
@@ -281,16 +282,15 @@ let reallyTransmitFile
(`RESS ressLength) update ressLength id file_id
>>= (fun (outfd, infd, bi) ->
Lwt.catch (fun () ->
- Lwt_util.run_in_region transmitFileReg (bufferSize ressLength) (fun () ->
- Uutil.showProgress id Uutil.Filesize.zero "f";
- compressRemotely connFrom
- (bi, fspathFrom, pathFrom,
- `RESS ressLength, ressLength, id, file_id))
- >>= (fun () ->
- decompressor :=
- Remote.MsgIdMap.remove file_id !decompressor; (* For GC *)
- close_all infd outfd;
- Lwt.return ()))
+ Uutil.showProgress id Uutil.Filesize.zero "f";
+ compressRemotely connFrom
+ (bi, fspathFrom, pathFrom,
+ `RESS ressLength, ressLength, id, file_id)
+ >>= (fun () ->
+ decompressor :=
+ Remote.MsgIdMap.remove file_id !decompressor; (* For GC *)
+ close_all infd outfd;
+ Lwt.return ()))
(fun e ->
decompressor :=
Remote.MsgIdMap.remove file_id !decompressor; (* For GC *)
@@ -367,9 +367,13 @@ let transmitFileOnRoot =
let transmitFile
rootFrom pathFrom rootTo fspathTo pathTo realPathTo
update desc fp ress id =
- transmitFileOnRoot rootTo rootFrom
- (snd rootFrom, pathFrom, fspathTo, pathTo, realPathTo,
- update, desc, fp, ress, id)
+ let bufSz = bufferSize (max (Props.length desc) (Osx.ressLength ress)) in
+ (* This must be on the client: any lock on the server side may result
+ in a deadlock under windows *)
+ Lwt_util.run_in_region transmitFileReg bufSz (fun () ->
+ transmitFileOnRoot rootTo rootFrom
+ (snd rootFrom, pathFrom, fspathTo, pathTo, realPathTo,
+ update, desc, fp, ress, id))
(****)

View File

@ -1,29 +0,0 @@
$OpenBSD: patch-files_ml,v 1.2 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Fix the problem with comparison of files using diff
when the files are on two different hosts.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000067.html
--- files.ml.orig Mon Sep 6 15:15:46 2004
+++ files.ml Sun May 22 16:13:36 2005
@@ -469,8 +469,8 @@ let rec diff root1 path1 ui1 root2 path2
Lwt_unix.run
(Update.translatePath root2 path2 >>= (fun path2 ->
Copy.file root2 path2 root1 workingDir tmppath realPath
- `Copy (Props.setLength Props.fileSafe (Props.length desc1))
- fp1 ress1 id));
+ `Copy (Props.setLength Props.fileSafe (Props.length desc2))
+ fp2 ress2 id));
displayDiff
(Fspath.concat workingDir realPath)
(Fspath.concat workingDir tmppath);
@@ -487,8 +487,8 @@ let rec diff root1 path1 ui1 root2 path2
(Update.translatePath root1 path1 >>= (fun path1 ->
(* Note that we don't need the ressource fork *)
Copy.file root1 path1 root2 workingDir tmppath realPath
- `Copy (Props.setLength Props.fileSafe (Props.length desc2))
- fp2 ress2 id));
+ `Copy (Props.setLength Props.fileSafe (Props.length desc1))
+ fp1 ress1 id));
displayDiff
(Fspath.concat workingDir tmppath)
(Fspath.concat workingDir realPath);

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-fingerprint_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Fix the file open in text mode instead of binary.
See http://groups.yahoo.com/group/unison-users/message/3184
and http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000089.html
--- fingerprint.ml.orig Mon Sep 6 15:15:47 2004
+++ fingerprint.ml Mon May 23 16:30:14 2005
@@ -22,7 +22,7 @@ let subfile path offset len =
Util.convertUnixErrorsToTransient
"digesting subfile"
(fun () ->
- let inch = open_in path in
+ let inch = open_in_bin path in
LargeFile.seek_in inch offset;
begin try
let res = Digest.channel inch (Uutil.Filesize.toInt len) in

View File

@ -1,60 +0,0 @@
$OpenBSD: patch-os_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Properly deal with empty directories under Windows
(workaround for a bug in Ocaml).
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000092.html
o Fix the failure of Windows client when directory or file are read-only.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000075.html
--- os.ml.orig Mon Sep 6 15:15:46 2004
+++ os.ml Fri May 27 16:37:03 2005
@@ -150,10 +150,23 @@ and childrenOf fspath path =
loop newChildren directory
in
let absolutePath = Fspath.concat fspath path in
- let directory = Fspath.opendir absolutePath in
- let result = loop [] directory in
- Unix.closedir directory;
- result)
+ let directory =
+ try
+ Some (Fspath.opendir absolutePath)
+ with Unix.Unix_error (Unix.ENOENT, _, _) ->
+ (* FIX (in Ocaml): under Windows, when a directory is empty
+ (not even "." and ".."), FindFirstFile fails with
+ ERROR_FILE_NOT_FOUND while ocaml expects the error
+ ERROR_NO_MORE_FILES *)
+ None
+ in
+ match directory with
+ Some directory ->
+ let result = loop [] directory in
+ Unix.closedir directory;
+ result
+ | None ->
+ [])
(*****************************************************************************)
(* ACTIONS ON FILESYSTEM *)
@@ -167,14 +180,19 @@ and delete fspath path =
let absolutePath = Fspath.concatToString fspath path in
match (Fileinfo.get false fspath path).Fileinfo.typ with
`DIRECTORY ->
- Unix.chmod absolutePath 0o700;
+ begin try
+ Unix.chmod absolutePath 0o700
+ with Unix.Unix_error _ -> () end;
Safelist.iter
(fun child -> delete fspath (Path.child path child))
(childrenOf fspath path);
Unix.rmdir absolutePath
| `FILE ->
- if Util.osType <> `Unix then
- Unix.chmod absolutePath 0o600;
+ if Util.osType <> `Unix then begin
+ try
+ Unix.chmod absolutePath 0o600;
+ with Unix.Unix_error _ -> ()
+ end;
Unix.unlink absolutePath;
if Prefs.read Osx.rsrc then begin
let pathDouble = Osx.appleDoubleFile fspath path in

View File

@ -1,27 +0,0 @@
$OpenBSD: patch-props_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Fix in property setting. In particular, set properties in the right order.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000090.html
--- props.ml.orig Mon Sep 6 15:15:46 2004
+++ props.ml Fri May 27 16:28:48 2005
@@ -421,7 +421,7 @@ let syncedPartsToString t = match t with
let iCanWrite p =
try
- Unix.access p [Unix.R_OK];
+ Unix.access p [Unix.W_OK];
true
with
Unix.Unix_error _ -> false
@@ -615,9 +615,9 @@ let get stats infos =
let set fspath path kind p =
Uid.set fspath path kind p.uid;
Gid.set fspath path kind p.gid;
- Perm.set fspath path kind p.perm;
+ TypeCreator.set fspath path kind p.typeCreator;
Time.set fspath path kind p.time;
- TypeCreator.set fspath path kind p.typeCreator
+ Perm.set fspath path kind p.perm
let init someHostIsRunningWindows =
Perm.init someHostIsRunningWindows;

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-pty_c,v 1.1 2005/12/24 08:33:21 pvalchev Exp $
--- pty.c.orig Fri Dec 23 23:56:54 2005
+++ pty.c Fri Dec 23 23:57:00 2005
@@ -18,7 +18,7 @@ CAMLprim value dumpFd(value fdVal) {
}
#include <caml/fail.h> // failwith
-#include <sys/errno.h> // errno
+#include <errno.h> // errno
#include <string.h> // strerror
#include <caml/alloc.h> // alloc_tuple
#include <caml/memory.h> // Store_field

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-transport_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Fix the assert failure on all platforms.
See http://groups.yahoo.com/group/unison-users/message/3200
--- transport.ml.orig Mon Sep 6 15:15:46 2004
+++ transport.ml Sun May 22 16:14:32 2005
@@ -15,7 +15,8 @@ let fileSize uiFrom uiTo =
match uiFrom, uiTo with
_, Updates (File (props, ContentsUpdated (_, _, ress)), _) ->
(Props.length props, Osx.ressLength ress)
- | Updates (File _, Previous (_, props, _, ress)), NoUpdates ->
+ | Updates (_, Previous (`FILE, props, _, ress)),
+ (NoUpdates | Updates (File (_, ContentsSame), _)) ->
(Props.length props, Osx.ressLength ress)
| _ ->
assert false

View File

@ -1,69 +0,0 @@
$OpenBSD: patch-ubase_util_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Catch failure of localtime library call.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000092.html
o Fix the order of looking for home directory.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000088.html
--- ubase/util.ml.orig Mon Sep 6 15:15:47 2004
+++ ubase/util.ml Fri May 27 16:59:57 2005
@@ -244,14 +244,18 @@ let time () =
convertUnixErrorsToTransient "time" Unix.time
let time2string timef =
- let time = localtime timef in
- Printf.sprintf
- "%2d:%.2d on %2d %3s, %4d"
- time.Unix.tm_hour
- time.Unix.tm_min
- time.Unix.tm_mday
- (monthname time.Unix.tm_mon)
- (time.Unix.tm_year + 1900)
+ try
+ let time = localtime timef in
+ Printf.sprintf
+ "%2d:%.2d:%.2d on %2d %3s, %4d"
+ time.Unix.tm_hour
+ time.Unix.tm_min
+ time.Unix.tm_sec
+ time.Unix.tm_mday
+ (monthname time.Unix.tm_mon)
+ (time.Unix.tm_year + 1900)
+ with Transient _ ->
+ "(invalid date)"
let percentageOfTotal current total =
(int_of_float ((float current) *. 100.0 /. (float total)))
@@ -355,19 +359,20 @@ let padto n s = s ^ (String.make (max 0
(*****************************************************************************)
let fileInHomeDir n =
- match osType with
- `Win32 ->
- let dirString =
- try Unix.getenv "USERPROFILE" (* Windows NT/2K *)
- with Not_found ->
- try Unix.getenv "HOME" (* Windows 9x with Cygwin HOME set *)
- with Not_found ->
- try Unix.getenv "UNISON" (* Use UNISON dir if none of
- the above are set *)
- with Not_found -> "c:/" (* Default *) in
- Filename.concat dirString n
- | `Unix ->
- Filename.concat (safeGetenv "HOME") n
+ if osType = `Unix || isCygwin then
+ Filename.concat (safeGetenv "HOME") n
+ else if osType = `Win32 then
+ let dirString =
+ try Unix.getenv "USERPROFILE" (* Windows NT/2K *)
+ with Not_found ->
+ try Unix.getenv "HOME" (* Windows 9x with Cygwin HOME set *)
+ with Not_found ->
+ try Unix.getenv "UNISON" (* Use UNISON dir if none of
+ the above are set *)
+ with Not_found -> "c:/" (* Default *) in
+ Filename.concat dirString n
+ else
+ assert false (* osType can't be anything else *)
(*****************************************************************************)
(* "Upcall" for building pathnames in the .unison dir *)

View File

@ -1,43 +0,0 @@
$OpenBSD: patch-uicommon_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Correct quoting of ignored patterns generated by the UI.
http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000092.html
--- uicommon.ml.orig Mon Sep 6 15:15:46 2004
+++ uicommon.ml Fri May 27 16:37:26 2005
@@ -268,26 +268,28 @@ let quote s =
| c ->
buf.[!pos] <- c; pos := !pos + 1
done;
- String.sub buf 0 !pos
+ "{" ^ String.sub buf 0 !pos ^ "}"
-let ignorePath path = "Path " ^ (quote (Path.toString path))
+let ignorePath path = "Path " ^ quote (Path.toString path)
let ignoreName path =
match Path.finalName path with
- Some name -> "Name " ^ (quote (Name.toString name))
+ Some name -> "Name " ^ quote (Name.toString name)
| None -> assert false
let ignoreExt path =
match Path.finalName path with
Some name ->
let str = Name.toString name in
- (try
- let pos = String.rindex str '.' + 1 in
+ begin try
+ let pos = String.rindex str '.' in
let ext = String.sub str pos (String.length str - pos) in
- "Name *." ^ (quote ext)
+ "Name {,.}*" ^ quote ext
with Not_found -> (* str does not contain '.' *)
- "Name "^(quote str))
- | None -> assert false
+ "Name " ^ quote str
+ end
+ | None ->
+ assert false
let addIgnorePattern theRegExp =
if theRegExp = "Path " then

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-uigtk2_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Disable password prompting code (broken in 2.10.2)
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000090.html
--- uigtk2.ml.orig Mon Sep 6 15:15:46 2004
+++ uigtk2.ml Fri May 27 16:26:01 2005
@@ -745,8 +745,7 @@ let termInteract() =
match Uicommon.sshParse s with
Uicommon.Password account -> getPassword account
| _ -> "" in
- if Osx.isMacOSX or Osx.isLinux then Some handleSSH
- else None
+ None
(* ------ *)

View File

@ -1,34 +0,0 @@
$OpenBSD: patch-uigtk_ml,v 1.2 2005/05/30 19:27:45 sturm Exp $
Post release port maintainer fix.
o Fix compilation with GTK 1.
Applied the same approach used in beta version by developers.
Approved by developers.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000074.html
--- uigtk.ml.orig Mon Sep 6 15:15:46 2004
+++ uigtk.ml Tue May 17 02:21:59 2005
@@ -1606,7 +1606,7 @@ in
catch (fun () ->
Transport.transportItem
theSI.ri (Uutil.File.ofLine i)
- (fun title text -> Trace.status (Printf.sprintf "\n%s\n\n%s\n\n" title text))
+ (fun title text -> Trace.status (Printf.sprintf "\n%s\n\n%s\n\n" title text); true)
>>= (fun () ->
return Util.Succeeded))
(fun e ->
@@ -1760,6 +1760,7 @@ in
actionBar#insert_space ();
grAdd grDiff (actionBar#insert_button ~text:"Diff" ~callback:diffCmd ());
+(*
let mergeCmd () =
match !current with
Some i ->
@@ -1787,7 +1788,7 @@ in
actionBar#insert_space ();
grAdd grDiff (actionBar#insert_button ~text:"Merge" ~callback:mergeCmd ());
-
+*)
(*********************************************************************
Keyboard commands
*********************************************************************)

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-uitext_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Missing call to restoreTerminal.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000092.html
--- uitext.ml.orig Mon Sep 6 15:15:46 2004
+++ uitext.ml Fri May 27 17:01:29 2005
@@ -423,6 +423,8 @@ let setWarnPrinter() =
(["n";"q";"x"],
("Exit"),
fun()->
+ alwaysDisplay "\n";
+ restoreTerminal ();
Lwt_unix.run (Update.unlockArchives ());
exit 1)]
(fun()-> display "Press return to continue.")

View File

@ -1,73 +0,0 @@
$OpenBSD: patch-update_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Fix the file open in text mode instead of binary.
See http://groups.yahoo.com/group/unison-users/message/3184
and http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000089.html
o Better error message for non-existing paths.
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000092.html
o Update archive timestamps to avoid defeating fastcheck on Windows.
See http://groups.yahoo.com/group/unison-users/message/3821
--- update.ml.orig Mon Sep 6 15:15:46 2004
+++ update.ml Fri May 27 16:33:58 2005
@@ -347,13 +347,25 @@ let postCommitArchiveLocal (fspath,())
let fto = Fspath.toString (Os.fileInUnisonDir toname) in
debug (fun() -> Util.msg "Copying archive %s to %s\n" ffrom fto);
Util.convertUnixErrorsToFatal "copying archive" (fun () ->
- let outFd = Unix.openfile fto
- [Unix.O_RDWR;Unix.O_CREAT;Unix.O_TRUNC] 0o600 in
+ let outFd =
+ open_out_gen [Open_wronly; Open_creat; Open_trunc; Open_binary]
+ 0o600 fto
+ in
Unix.chmod fto 0o600; (* In case the file already existed *)
- let inFd = Unix.openfile ffrom [Unix.O_RDONLY] 0o444 in
- Uutil.readWrite inFd outFd (fun _ -> ());
- Unix.close inFd;
- Unix.close outFd;
+ let inFd = open_in_bin ffrom in
+ let bufsize = 10000 in
+ let buf = String.create bufsize in
+
+ let rec read () =
+ let n = input inFd buf 0 bufsize in
+ if n>0 then begin
+ output outFd buf 0 n;
+ read()
+ end
+ in
+ read ();
+ close_in inFd;
+ close_out outFd;
let arcFspath = Os.fileInUnisonDir toname in
let info = Fileinfo.get false arcFspath Path.empty in
Hashtbl.replace archiveInfoCache thisRoot info))
@@ -1578,7 +1590,6 @@ and buildUpdateRec archive currfspath pa
let rec buildUpdate archive fspath fullpath here path =
match Path.deconstruct path with
None ->
- Os.checkThatParentPathIsADir fspath here;
showStatus path;
let (arch, ui) =
buildUpdateRec archive fspath here (useFastChecking()) in
@@ -1588,6 +1599,12 @@ let rec buildUpdate archive fspath fullp
end,
ui)
| Some(name, path') ->
+ if not (isDir fspath here) then
+ (archive,
+ Error (Printf.sprintf
+ "path %s is not valid because %s is not a directory"
+ (Path.toString fullpath) (Path.toString here)))
+ else
let children = getChildren fspath here in
let (name', status) =
try
@@ -1625,7 +1642,7 @@ let rec buildUpdate archive fspath fullp
Note that we may also put NoArchive deep inside an
archive...
*)
- (ArchiveDir (desc, NameMap.add name' child otherChildren),
+ (ArchiveDir (desc, NameMap.add name' arch otherChildren),
updates)
(* for the given path, find the archive and compute the list of update

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-uutil_ml,v 1.1 2005/05/30 19:27:45 sturm Exp $
Post-release developer patch.
o Use aligned writes for better performance (especially on USB devices).
See http://lists.seas.upenn.edu/pipermail/unison-hackers/2005-May/000090.html
--- uutil.ml.orig Mon Sep 6 15:15:47 2004
+++ uutil.ml Fri May 27 16:26:08 2005
@@ -83,7 +83,7 @@ let showProgress i bytes ch =
(* Copy bytes from one file_desc to another *)
(*****************************************************************************)
-let bufsize = 10000
+let bufsize = 16384
let bufsizeFS = Filesize.ofInt bufsize
let buf = String.create bufsize