All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Alex Bennée" <alex.bennee@linaro.org>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-devel@nongnu.org, patches@linaro.org,
	"Stefan Hajnoczi" <stefanha@redhat.com>,
	"Marc-André Lureau" <marcandre.lureau@redhat.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 10/11] Makefile: Abstract out "identify the pkgversion" code
Date: Fri, 01 Feb 2019 16:59:11 +0000	[thread overview]
Message-ID: <87d0obv40w.fsf@zen.linaroharston> (raw)
In-Reply-To: <20190201145035.22739-11-peter.maydell@linaro.org>


Peter Maydell <peter.maydell@linaro.org> writes:

> Abstract out the "identify the pkgversion" code from the
> rule for creating qemu-version.h, so it sets makefile
> variables for QEMU_PKGVERSION and QEMU_FULL_VERSION.
> (We will want to use these when building the Sphinx docs.)
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

> ---
>  Makefile | 33 ++++++++++++++++-----------------
>  1 file changed, 16 insertions(+), 17 deletions(-)
>
> diff --git a/Makefile b/Makefile
> index d519fadee39..2d19d28a271 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -87,6 +87,20 @@ endif
>
>  include $(SRC_PATH)/rules.mak
>
> +# Create QEMU_PKGVERSION and FULL_VERSION strings
> +# If PKGVERSION is set, use that; otherwise get version and -dirty status from git
> +QEMU_PKGVERSION := $(if $(PKGVERSION),$(PKGVERSION),$(shell \
> +  cd $(SRC_PATH); \
> +  if test -d .git; then \
> +    git describe --match 'v*' 2>/dev/null | tr -d '\n'; \
> +    if ! git diff-index --quiet HEAD &>/dev/null; then \
> +      echo "-dirty"; \
> +    fi; \
> +  fi))
> +
> +# Either "version (pkgversion)", or just "version" if pkgversion not set
> +FULL_VERSION := $(if $(QEMU_PKGVERSION),$(VERSION) ($(QEMU_PKGVERSION)),$(VERSION))
> +
>  GENERATED_FILES = qemu-version.h config-host.h qemu-options.def
>
>  #see Makefile.objs for the definition of QAPI_MODULES
> @@ -391,23 +405,8 @@ all: $(DOCS) sphinxdocs $(TOOLS) $(HELPERS-y) recurse-all modules
>
>  qemu-version.h: FORCE
>  	$(call quiet-command, \
> -		(cd $(SRC_PATH); \
> -		if test -n "$(PKGVERSION)"; then \
> -			pkgvers="$(PKGVERSION)"; \
> -		else \
> -			if test -d .git; then \
> -				pkgvers=$$(git describe --match 'v*' 2>/dev/null | tr -d '\n');\
> -				if ! git diff-index --quiet HEAD &>/dev/null; then \
> -					pkgvers="$${pkgvers}-dirty"; \
> -				fi; \
> -			fi; \
> -		fi; \
> -		printf "#define QEMU_PKGVERSION \"$${pkgvers}\"\n"; \
> -		if test -n "$${pkgvers}"; then \
> -			printf '#define QEMU_FULL_VERSION QEMU_VERSION " (" QEMU_PKGVERSION ")"\n'; \
> -		else \
> -			printf '#define QEMU_FULL_VERSION QEMU_VERSION\n'; \
> -		fi; \
> +                (printf '#define QEMU_PKGVERSION "$(QEMU_PKGVERSION)"\n'; \
> +		printf '#define QEMU_FULL_VERSION "$(FULL_VERSION)"\n'; \
>  		) > $@.tmp)
>  	$(call quiet-command, if ! cmp -s $@ $@.tmp; then \
>  	  mv $@.tmp $@; \


--
Alex Bennée

  reply	other threads:[~2019-02-01 17:10 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-01 14:50 [Qemu-devel] [PATCH 00/11] Enable build and install of our rST docs Peter Maydell
2019-02-01 14:50 ` [Qemu-devel] [PATCH 01/11] docs/cpu-hotplug.rst: Fix rST markup issues Peter Maydell
2019-02-01 16:29   ` Alex Bennée
2019-02-01 14:50 ` [Qemu-devel] [PATCH 02/11] docs: Convert memory.txt to rst format Peter Maydell
2019-02-01 16:31   ` Alex Bennée
2019-02-01 14:50 ` [Qemu-devel] [PATCH 03/11] docs: Commit initial files from sphinx-quickstart Peter Maydell
2019-02-01 16:41   ` Alex Bennée
2019-02-01 16:46     ` Peter Maydell
2019-02-01 17:34   ` Peter Maydell
2019-02-01 14:50 ` [Qemu-devel] [PATCH 04/11] docs/conf.py: Disable unused _static directory Peter Maydell
2019-02-01 16:41   ` Alex Bennée
2019-02-01 14:50 ` [Qemu-devel] [PATCH 05/11] docs/conf.py: Configure the 'alabaster' theme Peter Maydell
2019-02-01 16:43   ` Alex Bennée
2019-02-28 13:39     ` Peter Maydell
2019-02-01 14:50 ` [Qemu-devel] [PATCH 06/11] docs/conf.py: Don't include rST sources in HTML build Peter Maydell
2019-02-01 16:43   ` Alex Bennée
2019-02-01 14:50 ` [Qemu-devel] [PATCH 07/11] docs/conf.py: Disable option warnings Peter Maydell
2019-02-01 16:44   ` Alex Bennée
2019-02-01 14:50 ` [Qemu-devel] [PATCH 08/11] Separate conf.py for each manual we want Peter Maydell
2019-02-01 16:58   ` Alex Bennée
2019-02-01 14:50 ` [Qemu-devel] [PATCH 09/11] Makefile, configure: Support building rST documentation Peter Maydell
2019-02-01 16:19   ` Alex Bennée
2019-02-01 16:25     ` Peter Maydell
2019-02-01 17:11     ` Alex Bennée
2019-02-01 17:16       ` Peter Maydell
2019-02-01 14:50 ` [Qemu-devel] [PATCH 10/11] Makefile: Abstract out "identify the pkgversion" code Peter Maydell
2019-02-01 16:59   ` Alex Bennée [this message]
2019-02-01 14:50 ` [Qemu-devel] [PATCH 11/11] docs/conf.py: Don't hard-code QEMU version Peter Maydell
2019-02-01 17:04   ` Alex Bennée
2019-02-01 15:05 ` [Qemu-devel] [PATCH 00/11] Enable build and install of our rST docs no-reply
2019-02-01 17:40   ` Peter Maydell
2019-02-01 15:09 ` no-reply
2019-02-01 16:56 ` no-reply
2019-02-01 17:14 ` no-reply
2019-02-01 17:15 ` no-reply
2019-02-01 17:17 ` no-reply
2019-02-01 17:18 ` no-reply
2019-02-01 17:19 ` no-reply
2019-02-01 17:22 ` no-reply
2019-02-01 17:29 ` no-reply
2019-02-01 17:33 ` no-reply
2019-02-01 17:34 ` no-reply
2019-02-01 17:37 ` no-reply
2019-02-01 17:48 ` no-reply
2019-02-03 15:14 ` no-reply
2019-02-14 11:29 ` Peter Maydell
2019-02-14 14:56   ` Marc-André Lureau
2019-02-14 15:24     ` Peter Maydell
2019-02-14 18:46       ` Paolo Bonzini
2019-02-14 19:00         ` Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87d0obv40w.fsf@zen.linaroharston \
    --to=alex.bennee@linaro.org \
    --cc=marcandre.lureau@redhat.com \
    --cc=patches@linaro.org \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=philmd@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.