From patchwork Fri Jun 24 12:28:23 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: alexandros.frantzis@linaro.org X-Patchwork-Id: 2296 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id DF25523F08 for ; Fri, 24 Jun 2011 12:28:25 +0000 (UTC) Received: from mail-qw0-f52.google.com (mail-qw0-f52.google.com [209.85.216.52]) by fiordland.canonical.com (Postfix) with ESMTP id AE603A1811B for ; Fri, 24 Jun 2011 12:28:25 +0000 (UTC) Received: by qwb8 with SMTP id 8so2027468qwb.11 for ; Fri, 24 Jun 2011 05:28:25 -0700 (PDT) Received: by 10.229.40.139 with SMTP id k11mr2451240qce.135.1308918505048; Fri, 24 Jun 2011 05:28:25 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.230.139 with SMTP id jm11cs47340qcb; Fri, 24 Jun 2011 05:28:24 -0700 (PDT) Received: by 10.217.6.194 with SMTP id y44mr274412wes.74.1308918504059; Fri, 24 Jun 2011 05:28:24 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id e69si6024999wek.88.2011.06.24.05.28.23; Fri, 24 Jun 2011 05:28:24 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1Qa5Ul-00031T-Ct for ; Fri, 24 Jun 2011 12:28:23 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 5F63D2E808B for ; Fri, 24 Jun 2011 12:28:23 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: glmark2 X-Launchpad-Branch: ~afrantzis/glmark2/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 95 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~afrantzis/glmark2/trunk] Rev 95: Automatically set the application version in the man page. Message-Id: <20110624122823.20207.5170.launchpad@loganberry.canonical.com> Date: Fri, 24 Jun 2011 12:28:23 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13265"; Instance="initZopeless config overlay" X-Launchpad-Hash: d0cf4a1bd501983998b42d51ff382d42c3a5aa2d ------------------------------------------------------------ revno: 95 tags: 2011.06 committer: Alexandros Frantzis branch nick: trunk timestamp: Fri 2011-06-24 15:17:59 +0300 message: Automatically set the application version in the man page. modified: doc/glmark2.1.in doc/wscript_build wscript --- lp:glmark2 https://code.launchpad.net/~afrantzis/glmark2/trunk You are subscribed to branch lp:glmark2. To unsubscribe from this branch go to https://code.launchpad.net/~afrantzis/glmark2/trunk/+edit-subscription === modified file 'doc/glmark2.1.in' --- doc/glmark2.1.in 2011-06-23 12:44:17 +0000 +++ doc/glmark2.1.in 2011-06-24 12:17:59 +0000 @@ -1,4 +1,4 @@ -.TH @APPNAME@ "1" "June 2011" "@appname@ 11.06" +.TH @APPNAME@ "1" "June 2011" "@appname@ @appversion@" .SH NAME @appname@ \- OpenGL (ES) 2.0 benchmark suite .SH SYNOPSIS === modified file 'doc/wscript_build' --- doc/wscript_build 2011-06-21 14:46:40 +0000 +++ doc/wscript_build 2011-06-24 12:17:59 +0000 @@ -5,6 +5,7 @@ target = bld.path.find_or_declare('glmark2.1'), APPNAME = 'GLMARK2', appname = 'glmark2', + appversion = bld.env.GLMARK2_VERSION, install_path = '${PREFIX}/share/man/man1' ) @@ -15,5 +16,6 @@ target = bld.path.find_or_declare('glmark2-es2.1'), APPNAME = 'GLMARK2-ES2', appname = 'glmark2-es2', + appversion = bld.env.GLMARK2_VERSION, install_path = '${PREFIX}/share/man/man1' ) === modified file 'wscript' --- wscript 2011-06-24 09:25:13 +0000 +++ wscript 2011-06-24 12:17:59 +0000 @@ -77,6 +77,7 @@ ctx.env.append_unique('GLMARK_DATA_PATH', Options.options.data_path) ctx.env.append_unique('DEFINES', 'GLMARK_DATA_PATH="%s"' % Options.options.data_path) ctx.env.append_unique('DEFINES', 'GLMARK_VERSION="%s"' % VERSION) + ctx.env.GLMARK2_VERSION = VERSION ctx.env.USE_GL = Options.options.gl ctx.env.USE_GLESv2 = Options.options.glesv2