From owner-svn-ports-all@freebsd.org Sat Oct 27 18:09:01 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 75DF510CF2CD; Sat, 27 Oct 2018 18:09:01 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 27CB275698; Sat, 27 Oct 2018 18:09:01 +0000 (UTC) (envelope-from se@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 F156313C72; Sat, 27 Oct 2018 18:09:00 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9RI90lX051110; Sat, 27 Oct 2018 18:09:00 GMT (envelope-from se@FreeBSD.org) Received: (from se@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9RI8xVc051102; Sat, 27 Oct 2018 18:08:59 GMT (envelope-from se@FreeBSD.org) Message-Id: <201810271808.w9RI8xVc051102@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: se set sender to se@FreeBSD.org using -f From: Stefan Esser Date: Sat, 27 Oct 2018 18:08:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483162 - in head/misc: . ctm X-SVN-Group: ports-head X-SVN-Commit-Author: se X-SVN-Commit-Paths: in head/misc: . ctm X-SVN-Commit-Revision: 483162 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.29 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, 27 Oct 2018 18:09:01 -0000 Author: se Date: Sat Oct 27 18:08:59 2018 New Revision: 483162 URL: https://svnweb.freebsd.org/changeset/ports/483162 Log: Add new port misc/ctm. This port is a slightly modified version of the port as distributed with FreeBSD up to version 12. The port install man pages in section 8 instead of section 1, since all binaries are installed in sbin. Approved by: antoine (mentor) Added: head/misc/ctm/ head/misc/ctm/Makefile (contents, props changed) head/misc/ctm/distinfo (contents, props changed) head/misc/ctm/pkg-descr (contents, props changed) head/misc/ctm/pkg-plist (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Sat Oct 27 18:06:24 2018 (r483161) +++ head/misc/Makefile Sat Oct 27 18:08:59 2018 (r483162) @@ -60,6 +60,7 @@ SUBDIR += cryptoballot SUBDIR += cs SUBDIR += cstream + SUBDIR += ctm SUBDIR += dahdi SUBDIR += dahdi-kmod SUBDIR += dahdi-kmod26 Added: head/misc/ctm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/ctm/Makefile Sat Oct 27 18:08:59 2018 (r483162) @@ -0,0 +1,46 @@ +# $FreeBSD$ + +PORTNAME= ctm +PORTVERSION= 2.0 +CATEGORIES= misc + +MAINTAINER= se@FreeBSD.org +COMMENT= Generate, receive and apply FreeBSD source updates per mail + +LICENSE= Beerware BSD2CLAUSE +LICENSE_COMB= multi +LICENSE_NAME_Beerware= Beerware +LICENSE_TEXT_Beerware= "THE BEER-WARE LICENSE" (Revision 42): \ + wrote this file. As long as you retain this notice you \ + can do whatever you want with this stuff. If we meet some day, and you think \ + this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp +LICENSE_PERMS_Beerware= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +USES= tar:txz + +USE_GITHUB= yes +GH_ACCOUNT= bsdimp +GH_TAGNAME= ef289f3 + +OPTIONS_DEFINE= DOCS +MAKE_FLAGS= MK_MAN=no + +do-install: +.for f in ctm ctm_dequeue ctm_rmail ctm_smail + ${INSTALL_PROGRAM} ${WRKSRC}/${f}/${f} \ + ${STAGEDIR}${PREFIX}/sbin +.endfor +.for f in ctm ctm_rmail + ${INSTALL_MAN} ${WRKSRC}/${f}/${f}.8 \ + ${STAGEDIR}${MAN8PREFIX}/man/man8/ +.endfor +.for f in ctm_dequeue ctm_smail + ${LN} ${STAGEDIR}${MAN8PREFIX}/man/man8/ctm_rmail.8 \ + ${STAGEDIR}${MAN8PREFIX}/man/man8/${f}.8 +.endfor + ${INSTALL_MAN} ${WRKSRC}/ctm/ctm.5 \ + ${STAGEDIR}${MAN5PREFIX}/man/man5/ + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/ + +.include Added: head/misc/ctm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/ctm/distinfo Sat Oct 27 18:08:59 2018 (r483162) @@ -0,0 +1,3 @@ +TIMESTAMP = 1540662310 +SHA256 (bsdimp-ctm-2.0-ef289f3_GH0.tar.gz) = 793d88b328699e41a68f214fbd581b5730f86631532728e01ad0a08cd8807bfb +SIZE (bsdimp-ctm-2.0-ef289f3_GH0.tar.gz) = 40160 Added: head/misc/ctm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/ctm/pkg-descr Sat Oct 27 18:08:59 2018 (r483162) @@ -0,0 +1,12 @@ +CTM was originally "CVS Through eMail", but has since changed scope to be +much more general. + +CTM is now meant to be the definitive way to make and apply a delta between +two versions of a directory tree. + +There are two parts to this, making the delta and applying it. These are two +entirely different things. CTM concentrates the computation-burden on the +generation of the deltas, as a delta very often is applied more times than +it is made. Second CTM tries to make the minimal size delta. + +WWW: http:// Added: head/misc/ctm/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/ctm/pkg-plist Sat Oct 27 18:08:59 2018 (r483162) @@ -0,0 +1,10 @@ +man/man5/ctm.5.gz +man/man8/ctm.8.gz +man/man8/ctm_dequeue.8.gz +man/man8/ctm_rmail.8.gz +man/man8/ctm_smail.8.gz +sbin/ctm +sbin/ctm_dequeue +sbin/ctm_rmail +sbin/ctm_smail +%%PORTDOCS%%%%DOCSDIR%%/README