Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id E864A1A923C for ; Sat, 19 Feb 2022 16:27:05 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 807CC84EB5; Sat, 19 Feb 2022 16:27:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BD2B384EB4 for ; Sat, 19 Feb 2022 16:27:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Ip3dNeCtzuwv for ; Sat, 19 Feb 2022 16:27:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1A55484CEE for ; Sat, 19 Feb 2022 16:27:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B9CC9FB24; Sat, 19 Feb 2022 16:27:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1645288023107460" MIME-Version: 1.0 Date: Sat, 19 Feb 2022 16:27:03 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/net/unison-snapshot To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20220219162703.B9CC9FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1645288023107460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Sat Feb 19 16:27:03 UTC 2022 Modified Files: pkgsrc/net/unison-snapshot: Makefile PLIST distinfo Log Message: unison-snapshot: Update to 2.51.70 This is an alpha for 2.52.0 and contains significant changes. While just upgrading and using it should work, it has not received enough testing to be called beta. In particular the new formats have not been tested with big endian processors. ## Changes in 2.52.0 * Feature negotiation, compatible with 2.51. * New archive format (independent of ocaml version, based on umarshal) Upgrade is automatic. * New wire protocol (independent of ocaml version, based on umarshal) New protocol is used if both sides are >= 2.52.0. * Support for unix-domain sockets * Many bugfixes and minor improvements * ocaml compatibility is now >= 4.01 * NEWS is now in NEWS.md and not in the manual To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/net/unison-snapshot/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/unison-snapshot/PLIST cvs rdiff -u -r1.20 -r1.21 pkgsrc/net/unison-snapshot/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1645288023107460 Content-Disposition: inline Content-Length: 3315 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/unison-snapshot/Makefile diff -u pkgsrc/net/unison-snapshot/Makefile:1.27 pkgsrc/net/unison-snapshot/Makefile:1.28 --- pkgsrc/net/unison-snapshot/Makefile:1.27 Sat Jan 15 15:40:56 2022 +++ pkgsrc/net/unison-snapshot/Makefile Sat Feb 19 16:27:03 2022 @@ -1,11 +1,11 @@ -# $NetBSD: Makefile,v 1.27 2022/01/15 15:40:56 gdt Exp $ +# $NetBSD: Makefile,v 1.28 2022/02/19 16:27:03 gdt Exp $ # faux version to let me increment the last digit along the branch -DISTNAME= unison-2.51.5.70.1 +DISTNAME= unison-2.51.70 #PKGREVISION= 0 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_GITHUB:=bcpierce00/} -GITHUB_TAG= fec6c106ba674cf8db1672040be903a006718ed9 +GITHUB_TAG= 06b3b35573530541069f566f543a09cd7cc5d7b5 MAINTAINER= gdt@NetBSD.org HOMEPAGE= https://www.cis.upenn.edu/~bcpierce/unison/ @@ -42,7 +42,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/unison ${DESTDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/src/CONTRIB ${DESTDIR}${PREFIX}/share/doc/unison ${INSTALL_MAN} ${WRKSRC}/src/COPYING ${DESTDIR}${PREFIX}/share/doc/unison - ${INSTALL_MAN} ${WRKSRC}/src/NEWS ${DESTDIR}${PREFIX}/share/doc/unison + ${INSTALL_MAN} ${WRKSRC}/NEWS.md ${DESTDIR}${PREFIX}/share/doc/unison ${INSTALL_MAN} ${WRKSRC}/src/README ${DESTDIR}${PREFIX}/share/doc/unison ${INSTALL_MAN} ${WRKSRC}/src/ROADMAP.txt ${DESTDIR}${PREFIX}/share/doc/unison ${INSTALL_MAN} ${WRKSRC}/src/TODO.txt ${DESTDIR}${PREFIX}/share/doc/unison Index: pkgsrc/net/unison-snapshot/PLIST diff -u pkgsrc/net/unison-snapshot/PLIST:1.2 pkgsrc/net/unison-snapshot/PLIST:1.3 --- pkgsrc/net/unison-snapshot/PLIST:1.2 Mon Jun 14 22:55:03 2021 +++ pkgsrc/net/unison-snapshot/PLIST Sat Feb 19 16:27:03 2022 @@ -1,8 +1,8 @@ -@comment $NetBSD: PLIST,v 1.2 2021/06/14 22:55:03 gdt Exp $ +@comment $NetBSD: PLIST,v 1.3 2022/02/19 16:27:03 gdt Exp $ bin/unison share/doc/unison/CONTRIB share/doc/unison/COPYING -share/doc/unison/NEWS +share/doc/unison/NEWS.md share/doc/unison/README share/doc/unison/ROADMAP.txt share/doc/unison/TODO.txt Index: pkgsrc/net/unison-snapshot/distinfo diff -u pkgsrc/net/unison-snapshot/distinfo:1.20 pkgsrc/net/unison-snapshot/distinfo:1.21 --- pkgsrc/net/unison-snapshot/distinfo:1.20 Sat Jan 15 15:40:56 2022 +++ pkgsrc/net/unison-snapshot/distinfo Sat Feb 19 16:27:03 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.20 2022/01/15 15:40:56 gdt Exp $ +$NetBSD: distinfo,v 1.21 2022/02/19 16:27:03 gdt Exp $ -BLAKE2s (unison-2.51.5.70.1-fec6c106ba674cf8db1672040be903a006718ed9.tar.gz) = 3b3bb4712bf054d48e17e07c0cea81d9feae98410de5f2029f5b2df14a2b0d91 -SHA512 (unison-2.51.5.70.1-fec6c106ba674cf8db1672040be903a006718ed9.tar.gz) = f13b6986d6af670100bd079c0f887ab6543afcedab23c438636ae199054601296c0ae18c433a7ddd2efaf166850dea400399daf712ab254bea0faf4002af4afd -Size (unison-2.51.5.70.1-fec6c106ba674cf8db1672040be903a006718ed9.tar.gz) = 1399757 bytes +BLAKE2s (unison-2.51.70-06b3b35573530541069f566f543a09cd7cc5d7b5.tar.gz) = 4d7596abc06e2493b0a4b2a906066b3724ff971af63096dc5998ff172af80aed +SHA512 (unison-2.51.70-06b3b35573530541069f566f543a09cd7cc5d7b5.tar.gz) = 3e22570baf0d987905429cfdeaf49fabf0ccc6f709f61178003a465754055d49c3eb558c0cb787649158f289091c8623eb5c8db507d499a639b9417c735c8b8f +Size (unison-2.51.70-06b3b35573530541069f566f543a09cd7cc5d7b5.tar.gz) = 1349985 bytes --_----------=_1645288023107460--