From owner-svn-ports-head@FreeBSD.ORG Mon Mar 3 10:33:07 2014 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 ESMTPS id AB1101AE; Mon, 3 Mar 2014 10:33:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 982CC60D; Mon, 3 Mar 2014 10:33:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s23AX7Bs054722; Mon, 3 Mar 2014 10:33:07 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s23AX7rg054721; Mon, 3 Mar 2014 10:33:07 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201403031033.s23AX7rg054721@svn.freebsd.org> From: Emanuel Haupt Date: Mon, 3 Mar 2014 10:33:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346876 - head/shells/bash X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 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: Mon, 03 Mar 2014 10:33:07 -0000 Author: ehaupt Date: Mon Mar 3 10:33:07 2014 New Revision: 346876 URL: http://svnweb.freebsd.org/changeset/ports/346876 QAT: https://qat.redports.org/buildarchive/r346876/ Log: Now that we're at patchlevel 0 the current PORTVERSION definition has the effect that we're at version "4.3.". Set PORTVERSION to 4.3.${PATCHLEVEL} until we have the first patch released upstream. Also bump PORTREVISION to make sure all port tools deal with this correctly. Notified by: "Matthew D. Fuller" Discussed with: kwm Modified: head/shells/bash/Makefile Modified: head/shells/bash/Makefile ============================================================================== --- head/shells/bash/Makefile Mon Mar 3 10:23:43 2014 (r346875) +++ head/shells/bash/Makefile Mon Mar 3 10:33:07 2014 (r346876) @@ -3,8 +3,9 @@ PORTNAME= bash PATCHLEVEL= 0 -PORTVERSION= 4.3.${PATCHLEVEL:S/^0//g} -PORTREVISION?= 0 +#PORTVERSION= 4.3.${PATCHLEVEL:S/^0//g} +PORTVERSION= 4.3.${PATCHLEVEL} +PORTREVISION?= 1 CATEGORIES= shells MASTER_SITES= GNU MASTER_SITE_SUBDIR= ${PORTNAME} @@ -37,7 +38,7 @@ HELP_CONFIGURE_ENABLE= help-builtin NLS_CONFIGURE_ENABLE= nls NLS_USES= gettext iconv -INFO= bash +INFO= bash MAKE_JOBS_UNSAFE= yes GNU_CONFIGURE= yes