From 63bcb9dfb82d346b6e4b544daf87cbb296e5f723 Mon Sep 17 00:00:00 2001 From: Juergen Daubert Date: Tue, 25 Feb 2020 14:32:04 +0100 Subject: [PATCH] unison: update to 2.51.3 --- unison/.signature | 6 +++--- unison/Pkgfile | 11 +++++------ 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/unison/.signature b/unison/.signature index acd99ccfe..08209a724 100644 --- a/unison/.signature +++ b/unison/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/UgjFjx8LkwTgQ3uItTe+nhlt/w25MHAtbBNyKw6YQSXXFfezbFSKXMM2LfC1LXE4qG27ydVw68sA5ZBiDvFYQc= -SHA256 (Pkgfile) = 9f95867b516c7bdf5de8bc684eaf767244461761011fbce16978bc820f3342de +RWSE3ohX2g5d/em4bcD5uJ2SYVLu9ZbsCFzqL5oAZhp1IZgIFyFSn4lTJW7qwxQnG53KkPaPn47bgaNrIICfyum3/ryzR+VyMg4= +SHA256 (Pkgfile) = 890a8213939de4d1ee93beececc5fd7c2963375f56a789ba30df5d5e1c3451c2 SHA256 (.footprint) = 7dc9b1f53387cdee4c9da64f2da929d161ddc94f40576a6c07fd536ed0d04564 -SHA256 (unison-2.51.2.tar.gz) = ce4fc949d3348414d8b07183eb9766b8dfffe84aead37b8d550b0025aa6bc327 +SHA256 (unison-2.51.3-20200221.tar.xz) = bda6e884ec6e5ed81b3795d2a3bb51325801c9ed8c729d9ec2877e94cefbb17f diff --git a/unison/Pkgfile b/unison/Pkgfile index cb43c982b..f9b15dd70 100644 --- a/unison/Pkgfile +++ b/unison/Pkgfile @@ -1,18 +1,17 @@ # Description: Bi-directional file synchronization tool # Maintainer: Juergen Daubert, jue at crux dot nu -# Packager: Markus Ackermann, maol at symlink dot ch # URL: http://www.cis.upenn.edu/~bcpierce/unison/ # Depends on: ocaml name=unison -version=2.51.2 +version=2.51.3-20200221 release=1 -source=(http://www.cis.upenn.edu/~bcpierce/unison/download/releases/$name-$version/$name-$version.tar.gz) +source=(http://crux.s3.amazonaws.com/dist/$name-$version.tar.xz) build() { - cd src + cd $name-$version unset CFLAGS CXXFLAGS - make -j1 UISTYLE=text THREADS=true NATIVE=true unison unison-fsmonitor + make UISTYLE=text THREADS=true NATIVE=true install -d $PKG/usr/bin - install -m 755 unison unison-fsmonitor $PKG/usr/bin/ + install -m 0755 src/{unison,unison-fsmonitor} $PKG/usr/bin/ }