pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/unison2.51 unison2.51: Remove unnecessary patches....



details:   https://anonhg.NetBSD.org/pkgsrc/rev/28270c489fb4
branches:  trunk
changeset: 379473:28270c489fb4
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Mon Apr 30 10:21:02 2018 +0000

description:
unison2.51: Remove unnecessary patches. Update a comment.

diffstat:

 net/unison2.51/distinfo                                    |   7 +----
 net/unison2.51/patches/patch-src_Makefile.OCaml            |   3 +-
 net/unison2.51/patches/patch-src_fs.ml                     |  14 -------------
 net/unison2.51/patches/patch-src_system_system__generic.ml |  15 --------------
 net/unison2.51/patches/patch-src_system_system_intf.ml     |  14 -------------
 5 files changed, 3 insertions(+), 50 deletions(-)

diffs (85 lines):

diff -r faff53fd3043 -r 28270c489fb4 net/unison2.51/distinfo
--- a/net/unison2.51/distinfo   Mon Apr 30 10:14:56 2018 +0000
+++ b/net/unison2.51/distinfo   Mon Apr 30 10:21:02 2018 +0000
@@ -1,12 +1,9 @@
-$NetBSD: distinfo,v 1.1 2018/04/30 10:14:29 wiz Exp $
+$NetBSD: distinfo,v 1.2 2018/04/30 10:21:02 wiz Exp $
 
 SHA1 (unison-2.51.2.tar.gz) = 63e3b526254ab6356a3fabf74be533982c2962c2
 RMD160 (unison-2.51.2.tar.gz) = d73c88be2a5c3c677939f4adede4c0f772ecff33
 SHA512 (unison-2.51.2.tar.gz) = 4ec4a1603ce5e561084dcd59621a0cc72c1ea40e3e23e36408c436c51bde3eb82774f671aba85c016f87982417800e8a27b978be59c92aa62ce9e4be1a072011
 Size (unison-2.51.2.tar.gz) = 1398790 bytes
 SHA1 (patch-src_Makefile) = 3172ed284bea2d21ccb475439c53ce65a45b79f6
-SHA1 (patch-src_Makefile.OCaml) = 6c959562b218459e5986cb3d2af18261c6098b44
-SHA1 (patch-src_fs.ml) = 1d02f83d245466c0aad45a3261bba8149ed3db56
-SHA1 (patch-src_system_system__generic.ml) = f1965308ec5da5fa0e55c449e263985a64c6f09f
-SHA1 (patch-src_system_system_intf.ml) = 89b8598b364bee489b356f9cb3cb297d981b526e
+SHA1 (patch-src_Makefile.OCaml) = df9c889fc892e66f48c769e72cbb1cea8da525fc
 SHA1 (patch-src_uigtk2.ml) = a9ef837e0289ba2d209a21df3102ed0267a52f9d
diff -r faff53fd3043 -r 28270c489fb4 net/unison2.51/patches/patch-src_Makefile.OCaml
--- a/net/unison2.51/patches/patch-src_Makefile.OCaml   Mon Apr 30 10:14:56 2018 +0000
+++ b/net/unison2.51/patches/patch-src_Makefile.OCaml   Mon Apr 30 10:21:02 2018 +0000
@@ -1,7 +1,6 @@
-$NetBSD: patch-src_Makefile.OCaml,v 1.1 2018/04/30 10:14:29 wiz Exp $
+$NetBSD: patch-src_Makefile.OCaml,v 1.2 2018/04/30 10:21:02 wiz Exp $
 
 Correct lablgtk paths for 2.16, and use ocamlopt.opt for compilation
-Add -unsafe-string for OCaml >= 4.06.
 
 --- src/Makefile.OCaml.orig    2018-01-27 21:12:13.000000000 +0000
 +++ src/Makefile.OCaml
diff -r faff53fd3043 -r 28270c489fb4 net/unison2.51/patches/patch-src_fs.ml
--- a/net/unison2.51/patches/patch-src_fs.ml    Mon Apr 30 10:14:56 2018 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-$NetBSD: patch-src_fs.ml,v 1.1 2018/04/30 10:14:29 wiz Exp $
-
-System symlink definition has changed
---- src/fs.ml.orig     2015-10-05 18:14:23.000000000 +0000
-+++ src/fs.ml
-@@ -21,7 +21,7 @@ type fspath = Fspath.t
- type dir_handle = System.dir_handle
-                 = { readdir : unit -> string; closedir : unit -> unit }
- 
--let symlink l f = System.symlink l (Fspath.toString f)
-+let symlink ?to_dir l f = System.symlink l (Fspath.toString f)
- 
- let readlink f = System.readlink (Fspath.toString f)
- 
diff -r faff53fd3043 -r 28270c489fb4 net/unison2.51/patches/patch-src_system_system__generic.ml
--- a/net/unison2.51/patches/patch-src_system_system__generic.ml        Mon Apr 30 10:14:56 2018 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-$NetBSD: patch-src_system_system__generic.ml,v 1.1 2018/04/30 10:14:29 wiz Exp $
-
-Adapt for API change.
-
---- src/system/system_generic.ml.orig  2018-01-27 21:12:13.000000000 +0000
-+++ src/system/system_generic.ml
-@@ -58,7 +58,7 @@ let readdir = Unix.readdir
- let closedir = Unix.closedir
- let readlink = Unix.readlink
- (* BCP 5/16: Eta-expand for backward compatibility with OCaml <=4.02 *)
--let symlink s1 s2 = Unix.symlink s1 s2
-+let symlink ?to_dir s1 s2 = Unix.symlink ?to_dir s1 s2
- let chdir = Sys.chdir
- let getcwd = Sys.getcwd
- 
diff -r faff53fd3043 -r 28270c489fb4 net/unison2.51/patches/patch-src_system_system_intf.ml
--- a/net/unison2.51/patches/patch-src_system_system_intf.ml    Mon Apr 30 10:14:56 2018 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-$NetBSD: patch-src_system_system_intf.ml,v 1.1 2018/04/30 10:14:29 wiz Exp $
-
-System symlink definition has changed
---- src/system/system_intf.ml.orig     2015-10-05 18:14:23.000000000 +0000
-+++ src/system/system_intf.ml
-@@ -20,7 +20,7 @@ module type Core = sig
- type fspath
- type dir_handle = { readdir : unit -> string; closedir : unit -> unit }
- 
--val symlink : string -> fspath -> unit
-+val symlink : ?to_dir:bool -> string -> fspath -> unit
- val readlink : fspath -> string
- val chown : fspath -> int -> int -> unit
- val chmod : fspath -> int -> unit



Home | Main Index | Thread Index | Old Index