From owner-svn-ports-all@freebsd.org Sat Feb 20 23:15:13 2021 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0152353B45B; Sat, 20 Feb 2021 23:15:13 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DjknD6ZVcz4rWk; Sat, 20 Feb 2021 23:15:12 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D4B9D277E8; Sat, 20 Feb 2021 23:15:12 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11KNFC1b058791; Sat, 20 Feb 2021 23:15:12 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11KNFCUj058789; Sat, 20 Feb 2021 23:15:12 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <202102202315.11KNFCUj058789@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Sat, 20 Feb 2021 23:15:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566196 - head/sysutils/cpdup X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: head/sysutils/cpdup X-SVN-Commit-Revision: 566196 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Feb 2021 23:15:13 -0000 Author: mandree Date: Sat Feb 20 23:15:12 2021 New Revision: 566196 URL: https://svnweb.freebsd.org/changeset/ports/566196 Log: sysutils/cpdup: update to v1.22, reset maintainer + switch to DragonflyBSD upstream (Github) + patch CFLAGS in + patch pkg-config out for base OpenSSL + reset maintainer Gianmarco Giovannelli gmarco@gufi.org, repeat timeout, reporter claims address unreachable Extract from https://github.com/DragonFlyBSD/cpdup/tags cpdup v1.22 * Add support for lchmod(), lutimes() and lchflags(), allowing symlinks to fully replicated. * Fix issues when the destination of a rename is chflag'ed in a way that causes the rename to fail. * Delete temporary files when a rename flies. * Remove the FSMID support (obsolete in DragonFly BSD since 2009). cpdup v1.21 * Support microsecond timestamp precision; bumped protocol version from 4 to 5. PR: 252854 Reported by: Henrik Rosenke Modified: head/sysutils/cpdup/Makefile head/sysutils/cpdup/distinfo Modified: head/sysutils/cpdup/Makefile ============================================================================== --- head/sysutils/cpdup/Makefile Sat Feb 20 23:14:06 2021 (r566195) +++ head/sysutils/cpdup/Makefile Sat Feb 20 23:15:12 2021 (r566196) @@ -2,23 +2,28 @@ # $FreeBSD$ PORTNAME= cpdup -PORTVERSION= 1.20 +PORTVERSION= 1.22 CATEGORIES= sysutils -MASTER_SITES= http://utenti.gufi.org/~gmarco/files/distfiles/ \ - https://www.madpilot.net/~mad/ -MAINTAINER= gmarco@gufi.org +MAINTAINER= ports@FreeBSD.org COMMENT= Comprehensive filesystem mirroring and backup program LICENSE= BSD2CLAUSE # clarified by Matthew Dillon himself -USES= tar:xz +USES= gmake ssl tar:xz +USE_GITHUB= yes +GH_TUPLE= DragonFlyBSD:${PORTNAME}:v${PORTVERSION} +MAKEFILE= GNUmakefile +MAKE_ARGS+= LIBS="-L${OPENSSLLIB} -lcrypto" -WRKSRC= ${WRKDIR}/${PORTNAME} - -CFLAGS+= -D_ST_FLAGS_PRESENT_ - PLIST_FILES= bin/cpdup man/man1/cpdup.1.gz + +post-patch: + ${REINPLACE_CMD} \ + -e 's}^CFLAGS=\(.*\)}& ${CFLAGS}}' \ + -e '/^CFLAGS+=.*pkg-config.*openssl/s}^CFLAGS.*}CFLAGS+=-I${OPENSSLINC}}' \ + -e '/^LIBS+=.*pkg-config.*openssl/s}^LIBS.*}LIBS+=-L${OPENSSLLIB} -Wl,--as-needed -lssl -lcrypto}' \ + ${WRKSRC}/GNUmakefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/cpdup ${STAGEDIR}${PREFIX}/bin Modified: head/sysutils/cpdup/distinfo ============================================================================== --- head/sysutils/cpdup/distinfo Sat Feb 20 23:14:06 2021 (r566195) +++ head/sysutils/cpdup/distinfo Sat Feb 20 23:15:12 2021 (r566196) @@ -1,3 +1,3 @@ -TIMESTAMP = 1550687246 -SHA256 (cpdup-1.20.tar.xz) = 6c79c0785d29fe611156f1f572db866fa41b52518a181f22e1ed45eae6887169 -SIZE (cpdup-1.20.tar.xz) = 37568 +TIMESTAMP = 1613861241 +SHA256 (DragonFlyBSD-cpdup-1.22-v1.22_GH0.tar.gz) = 2dbfa16a080f8dce1be64a511e785b8491e59be8a0f3d1cef035d08147cc4793 +SIZE (DragonFlyBSD-cpdup-1.22-v1.22_GH0.tar.gz) = 44126