From owner-svn-ports-head@FreeBSD.ORG Wed Oct 23 12:40:16 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A93D1BAB; Wed, 23 Oct 2013 12:40:16 +0000 (UTC) (envelope-from william88@gmail.com) Received: from mail-lb0-x235.google.com (mail-lb0-x235.google.com [IPv6:2a00:1450:4010:c04::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 88B112B72; Wed, 23 Oct 2013 12:40:15 +0000 (UTC) Received: by mail-lb0-f181.google.com with SMTP id x18so656213lbi.26 for ; Wed, 23 Oct 2013 05:40:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=7g1rCP49YuHj77Wfc2SNRf6BPKmaoNrxbuh6eILaDdE=; b=ScBBIXPIvGtPpPXEzrRO4pDlTE+tRRNSKX2HD4mIdLe7zAc0mP3dhj2+b/ed68j2W/ lEKTtaYOQ2V3HmnJzvKfBpG8GLXRGW98nJdwSvTQCXMe1bEJnBkHsSvA/8PTk9JIi/SK 9ba6SReA3oi2iFqGbq1MniKxgUQSzXHsCE+awqQd6nYCSLLflsnYc87qiOS2D5nkt2K3 m7oEvLq7fFnDgP0vccEmzmRJsVy7842UIhWvHcswB3qQTw01aq4mTY8JbfniIidbBQgo VnzDFWE4LR+FIwWpxFVed9SItYncEPKJcDMTEk58kZjCXLB1WQliGiPZj1alxyfIWIUN sdPA== MIME-Version: 1.0 X-Received: by 10.152.28.7 with SMTP id x7mr1142815lag.26.1382532013474; Wed, 23 Oct 2013 05:40:13 -0700 (PDT) Received: by 10.114.176.34 with HTTP; Wed, 23 Oct 2013 05:40:13 -0700 (PDT) In-Reply-To: <5267C305.9090808@FreeBSD.org> References: <201310231235.r9NCZ4Yh067496@svn.freebsd.org> <5267C305.9090808@FreeBSD.org> Date: Wed, 23 Oct 2013 10:40:13 -0200 Message-ID: Subject: Re: svn commit: r331381 - in head/security: cksfv idea op pkcrack proxytunnel pure-sfv ssh-copy-id tthsum tthsum/files From: William Grzybowski To: Emanuel Haupt Content-Type: text/plain; charset=ISO-8859-1 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , ports-committers X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Oct 2013 12:40:16 -0000 On Wed, Oct 23, 2013 at 10:37 AM, Emanuel Haupt wrote: > On 10/23/13 2:35 PM, Emanuel Haupt wrote: >> >> Author: ehaupt >> Date: Wed Oct 23 12:35:04 2013 >> New Revision: 331381 >> URL: http://svnweb.freebsd.org/changeset/ports/331381 >> >> Log: >> Support staging. >> >> Modified: >> head/security/cksfv/Makefile >> head/security/idea/Makefile >> head/security/idea/pkg-plist >> head/security/op/Makefile >> head/security/op/pkg-plist >> head/security/pkcrack/Makefile >> head/security/proxytunnel/Makefile >> head/security/pure-sfv/Makefile >> head/security/ssh-copy-id/Makefile >> head/security/tthsum/Makefile >> head/security/tthsum/files/patch-Makefile >> >> Modified: head/security/cksfv/Makefile >> >> ============================================================================== >> --- head/security/cksfv/Makefile Wed Oct 23 12:31:45 2013 >> (r331380) >> +++ head/security/cksfv/Makefile Wed Oct 23 12:35:04 2013 >> (r331381) >> @@ -15,26 +15,24 @@ LICENSE= GPLv2 >> HAS_CONFIGURE= yes >> CONFIGURE_ARGS= --mandir=${PREFIX}/man --prefix=${PREFIX} >> >> -MAN1= cksfv.1 >> -PLIST_FILES= bin/cksfv >> +PLIST_FILES= bin/cksfv man/man1/cksfv.1.gz >> PORTDOCS= README ChangeLog >> >> OPTIONS_DEFINE= DOCS >> >> -NO_STAGE= yes >> .include >> >> post-patch: >> @${REINPLACE_CMD} -e 's|^\(CC\)=|\1?=|' ${WRKSRC}/src/Makefile.in >> >> do-install: >> - ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin >> - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1 >> + ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} >> ${STAGEDIR}${PREFIX}/bin >> + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 >> ${STAGEDIR}${MANPREFIX}/man/man1 >> >> .if ${PORT_OPTIONS:MDOCS} >> - ${MKDIR} ${DOCSDIR} >> + ${MKDIR} ${STAGEDIR}${DOCSDIR} >> .for f in ${PORTDOCS} >> - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} >> + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} >> .endfor >> .endif >> >> >> Modified: head/security/idea/Makefile >> >> ============================================================================== >> --- head/security/idea/Makefile Wed Oct 23 12:31:45 2013 (r331380) >> +++ head/security/idea/Makefile Wed Oct 23 12:35:04 2013 (r331381) >> @@ -15,12 +15,8 @@ COMMENT= Command-line IDEA encryption an >> >> WRKSRC= ${WRKDIR}/${PORTNAME} >> >> -MANL= idea.l >> -MANCOMPRESSED= no >> - >> OPTIONS_DEFINE= DOCS >> >> -NO_STAGE= yes >> .include >> >> do-build: >> @@ -28,14 +24,15 @@ do-build: >> -o ${WRKSRC}/${PORTNAME} >> >> do-install: >> - ${INSTALL_MAN} ${WRKSRC}/manl/idea.l ${PREFIX}/man/manl >> - ${INSTALL_PROGRAM} -m 0555 ${WRKSRC}/${PORTNAME} ${PREFIX}/bin >> - @${MKDIR} ${EXAMPLESDIR} >> - ${INSTALL_DATA} ${WRKSRC}/Examples ${EXAMPLESDIR} >> + ${INSTALL_MAN} ${WRKSRC}/manl/idea.l ${STAGEDIR}${PREFIX}/man/manl >> + ${INSTALL_PROGRAM} -m 0555 ${WRKSRC}/${PORTNAME} >> ${STAGEDIR}${PREFIX}/bin >> + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} >> + ${INSTALL_DATA} ${WRKSRC}/Examples ${STAGEDIR}${EXAMPLESDIR} >> >> .if ${PORT_OPTIONS:MDOCS} >> - ${MKDIR} ${DOCSDIR} >> - ${INSTALL_DATA} ${WRKSRC}/byte_ord.ps ${WRKSRC}/idea_cmd.txt >> ${DOCSDIR} >> + ${MKDIR} ${STAGEDIR}${DOCSDIR} >> + ${INSTALL_DATA} ${WRKSRC}/byte_ord.ps ${WRKSRC}/idea_cmd.txt \ >> + ${STAGEDIR}${DOCSDIR} >> .endif >> >> .include >> >> Modified: head/security/idea/pkg-plist >> >> ============================================================================== >> --- head/security/idea/pkg-plist Wed Oct 23 12:31:45 2013 >> (r331380) >> +++ head/security/idea/pkg-plist Wed Oct 23 12:35:04 2013 >> (r331381) >> @@ -1,4 +1,5 @@ >> bin/idea >> +man/manl/idea.l.gz >> %%PORTDOCS%%%%DOCSDIR%%/idea_cmd.txt >> %%PORTDOCS%%%%DOCSDIR%%/byte_ord.ps >> %%EXAMPLESDIR%%/Examples >> >> Modified: head/security/op/Makefile >> >> ============================================================================== >> --- head/security/op/Makefile Wed Oct 23 12:31:45 2013 (r331380) >> +++ head/security/op/Makefile Wed Oct 23 12:35:04 2013 (r331381) >> @@ -12,16 +12,14 @@ COMMENT= Controlled privilege escalation >> >> GNU_CONFIGURE= yes >> >> -MAN1= op.1 >> - >> -NO_STAGE= yes >> post-install: >> - ${MKDIR} ${PREFIX}/etc/op.d >> + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/op.d >> ${INSTALL_DATA} -m 0600 ${WRKSRC}/${PORTNAME}.conf \ >> - ${PREFIX}/etc/${PORTNAME}.conf.sample >> + ${STAGEDIR}${PREFIX}/etc/${PORTNAME}.conf.sample >> >> -.if !exists(${PREFIX}/etc/${PORTNAME}.conf) >> - ${INSTALL_DATA} -m 0600 ${WRKSRC}/${PORTNAME}.conf ${PREFIX}/etc >> +.if !exists(${STAGEDIR}${PREFIX}/etc/${PORTNAME}.conf) >> + ${INSTALL_DATA} -m 0600 ${WRKSRC}/${PORTNAME}.conf \ >> + ${STAGEDIR}${PREFIX}/etc >> .endif >> >> .include >> >> Modified: head/security/op/pkg-plist >> >> ============================================================================== >> --- head/security/op/pkg-plist Wed Oct 23 12:31:45 2013 (r331380) >> +++ head/security/op/pkg-plist Wed Oct 23 12:35:04 2013 (r331381) >> @@ -1,3 +1,5 @@ >> +@comment $FreeBSD$ > > > Without this RCS string I would get the following commit abort: > > root@portjail:/usr/ports/security # svn ci -m 'Support staging.' > Sending cksfv/Makefile > Sending idea/Makefile > Sending idea/pkg-plist > Sending op/Makefile > Sending op/pkg-plist > Sending pkcrack/Makefile > Sending proxytunnel/Makefile > Sending pure-sfv/Makefile > Sending ssh-copy-id/Makefile > Sending tthsum/Makefile > Sending tthsum/files/patch-Makefile > Transmitting file data ...........svn: E165001: Commit failed (details > follow): > svn: E165001: Commit blocked by pre-commit hook (exit code 1) with output: > Path "head/security/op/pkg-plist" does not have a valid $FreeBSD$ string > (keywords not disabled here) > == Pre-commit problem count: 1 > > Any idea why? svn propdel svn:keywords pkg-plist svn propset fbsd:nokeywords yes pkg-plist -- William Grzybowski ------------------------------------------ Curitiba/PR - Brasil