From owner-svn-ports-all@FreeBSD.ORG Sat Jan 26 15:19:00 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2EB12AE5 for ; Sat, 26 Jan 2013 15:19:00 +0000 (UTC) (envelope-from bsd-src@helfman.org) Received: from mail-ve0-f171.google.com (mail-ve0-f171.google.com [209.85.128.171]) by mx1.freebsd.org (Postfix) with ESMTP id CE22130F for ; Sat, 26 Jan 2013 15:18:59 +0000 (UTC) Received: by mail-ve0-f171.google.com with SMTP id 14so632692vea.16 for ; Sat, 26 Jan 2013 07:18:55 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :x-gm-message-state; bh=cU1zrJBEeLvXtuenlURoHfcTtQvGYl7Kpct+eziICQ8=; b=FXOokH7k76biSrnUAKiujXF7UTlwskjmFMnBRqHoi9TGRbjtKGCboF8bc1rb+3zFJh 6MyUW4OlvBzKaD5NTuU59WE3+Vulp6wh28o3GycFKvh0hKf0zvQkOdB2pD0c8RQJb417 c0BbYbbv4sH0vUYz1sLYfFyKsIjp4OSwdvAslE1NfULjtrEfAEfreLpvE1F0Yop9suFh 9qXk0v4Xu2ItGYvS9lXvEazf+RCBa+TPAnb8zBOHjO8vxQQfdRap59BEQ7C7CIYuuHuu N1/2dfTlr5fhksmjyCNSmp0/AOqkM6056iRsT+2r147UQb5Ts8ktwGiDfdWPAx3j8+wZ Aa2g== MIME-Version: 1.0 X-Received: by 10.220.240.141 with SMTP id la13mr9584546vcb.39.1359213535591; Sat, 26 Jan 2013 07:18:55 -0800 (PST) Sender: bsd-src@helfman.org Received: by 10.58.118.136 with HTTP; Sat, 26 Jan 2013 07:18:55 -0800 (PST) In-Reply-To: <201301261106.r0QB61l8070374@svn.freebsd.org> References: <201301261106.r0QB61l8070374@svn.freebsd.org> Date: Sat, 26 Jan 2013 07:18:55 -0800 X-Google-Sender-Auth: j_D6T2eXzxZFBXZBjVAFEURPH9g Message-ID: Subject: Re: svn commit: r311004 - head/devel/rbenv From: Jason Helfman To: Marcus von Appen X-Gm-Message-State: ALoCoQnJy/e9dMwRWJtGDk1W++jpENXG0Ury3dRQjYcCkLI0Lk0piDW1V1BgwXwLm2Zc/xTdYMD0 Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 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, 26 Jan 2013 15:19:00 -0000 On Sat, Jan 26, 2013 at 3:06 AM, Marcus von Appen wrote: > Author: mva > Date: Sat Jan 26 11:06:01 2013 > New Revision: 311004 > URL: http://svnweb.freebsd.org/changeset/ports/311004 > > Log: > - Update to 0.4.0 > > PR: ports/175256 > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=175256 > Submitted by: Fabian M. Borschel (maintainer) > > Modified: > head/devel/rbenv/Makefile > head/devel/rbenv/distinfo (contents, props changed) > head/devel/rbenv/pkg-descr (contents, props changed) > head/devel/rbenv/pkg-plist (contents, props changed) > > Modified: head/devel/rbenv/Makefile > > ============================================================================== > --- head/devel/rbenv/Makefile Sat Jan 26 10:52:03 2013 (r311003) > +++ head/devel/rbenv/Makefile Sat Jan 26 11:06:01 2013 (r311004) > @@ -1,7 +1,7 @@ > # $FreeBSD$ > > PORTNAME= rbenv > -PORTVERSION= 0.3.0 > +PORTVERSION= 0.4.0 > CATEGORIES= devel ruby > MASTER_SITES= GH > > @@ -18,14 +18,16 @@ RUN_DEPENDS= bash:${PORTSDIR}/shells/bas > USE_GITHUB= yes > GH_ACCOUNT= sstephenson > GH_PROJECT= rbenv > -GH_COMMIT= b10bdb1 > +GH_COMMIT= 9375e99 > GH_TAGNAME= v${PORTVERSION} > > NO_BUILD= yes > > do-install: > - ${INSTALL_SCRIPT} ${WRKSRC}/bin/ruby-local-exec ${PREFIX}/bin > - ( cd ${WRKSRC}/libexec && ${COPYTREE_BIN} \* ${PREFIX}/libexec ) > + @${INSTALL_SCRIPT} ${WRKSRC}/bin/ruby-local-exec ${PREFIX}/bin > + @( cd ${WRKSRC}/libexec && ${COPYTREE_BIN} \* ${PREFIX}/libexec ) > @${LN} -sf ${PREFIX}/libexec/rbenv ${PREFIX}/bin/rbenv > + @${MKDIR} ${DATADIR}/completions > + @( cd ${WRKSRC}/completions && ${COPYTREE_BIN} \* > ${DATADIR}/completions ) > > .include > > Modified: head/devel/rbenv/distinfo > > ============================================================================== > --- head/devel/rbenv/distinfo Sat Jan 26 10:52:03 2013 (r311003) > +++ head/devel/rbenv/distinfo Sat Jan 26 11:06:01 2013 (r311004) > @@ -1,2 +1,2 @@ > -SHA256 (rbenv-0.3.0.tar.gz) = > 445b8d742bbb72a4e65280e655122914d13954566fe7f46c7706f7730bbeaa35 > -SIZE (rbenv-0.3.0.tar.gz) = 13703 > +SHA256 (rbenv-0.4.0.tar.gz) = > e9b54d2d3669e52aed439094fa92aab36d826573e1a4f8dd65241406204a3e23 > +SIZE (rbenv-0.4.0.tar.gz) = 16029 > > Modified: head/devel/rbenv/pkg-descr > > ============================================================================== > --- head/devel/rbenv/pkg-descr Sat Jan 26 10:52:03 2013 (r311003) > +++ head/devel/rbenv/pkg-descr Sat Jan 26 11:06:01 2013 (r311004) > @@ -1,5 +1,5 @@ > -rbenv lets you easily switch between multiple versions of Ruby. > -It's simple, unobtrusive, and follows the UNIX tradition of > -single-purpose tools that do one thing well. > +Use rbenv to pick a Ruby version for your application and guarantee > +that your development environment matches production. Put rbenv to work > +with Bundler for painless Ruby upgrades and bulletproof deployments. > > WWW: https://github.com/sstephenson/rbenv > > Modified: head/devel/rbenv/pkg-plist > > ============================================================================== > --- head/devel/rbenv/pkg-plist Sat Jan 26 10:52:03 2013 (r311003) > +++ head/devel/rbenv/pkg-plist Sat Jan 26 11:06:01 2013 (r311004) > @@ -1,6 +1,7 @@ > bin/rbenv > bin/ruby-local-exec > libexec/rbenv > +libexec/rbenv---version > libexec/rbenv-commands > libexec/rbenv-completions > libexec/rbenv-exec > @@ -12,6 +13,7 @@ libexec/rbenv-local > libexec/rbenv-prefix > libexec/rbenv-rehash > libexec/rbenv-root > +libexec/rbenv-sh-rehash > libexec/rbenv-sh-shell > libexec/rbenv-shims > libexec/rbenv-version > @@ -23,3 +25,7 @@ libexec/rbenv-version-origin > libexec/rbenv-versions > libexec/rbenv-whence > libexec/rbenv-which > +%%DATADIR%%/completions/rbenv.bash > +%%DATADIR%%/completions/rbenv.zsh > +@dirrm %%DATADIR%%/completions > +@dirrm %%DATADIR%% > > IMHO shouldn't completions be tied into the OPTIONS framework and be conditional installed as other ports? -jgh