summaryrefslogtreecommitdiffstats
path: root/Version.kmk
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:49:04 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:49:04 +0000
commit16f504a9dca3fe3b70568f67b7d41241ae485288 (patch)
treec60f36ada0496ba928b7161059ba5ab1ab224f9d /Version.kmk
parentInitial commit. (diff)
downloadvirtualbox-16f504a9dca3fe3b70568f67b7d41241ae485288.tar.xz
virtualbox-16f504a9dca3fe3b70568f67b7d41241ae485288.zip
Adding upstream version 7.0.6-dfsg.upstream/7.0.6-dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'Version.kmk')
-rw-r--r--Version.kmk58
1 files changed, 58 insertions, 0 deletions
diff --git a/Version.kmk b/Version.kmk
new file mode 100644
index 00000000..0ff13d5d
--- /dev/null
+++ b/Version.kmk
@@ -0,0 +1,58 @@
+# $Id: Version.kmk $
+## @file
+# The VirtualBox version.
+#
+# This file gets included by the root Config.kmk.
+#
+
+#
+# Copyright (C) 2017-2022 Oracle and/or its affiliates.
+#
+# This file is part of VirtualBox base platform packages, as
+# available from https://www.virtualbox.org.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation, in version 3 of the
+# License.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, see <https://www.gnu.org/licenses>.
+#
+# SPDX-License-Identifier: GPL-3.0-only
+#
+
+# Major version.
+VBOX_VERSION_MAJOR = 7
+# Minor version.
+VBOX_VERSION_MINOR = 0
+# This is the current build number. It should be increased every time we publish a
+# new build. The define is available in every source file. Only even build numbers
+# will be published, odd numbers are set during development.
+VBOX_VERSION_BUILD = 6
+# This can be overridden in LocalConfig.kmk or elsewhere.
+# For the convention, see checks near the end of Config.kmk.
+VBOX_BUILD_PUBLISHER =
+# Just the BETA[n],ALPHA[n],RC[n] indicators. Set to empty string for release.
+VBOX_VERSION_PRERELEASE =
+# Force a release-type build with exactly matching Additions etc, even if
+# our numbering does not say this is a release build, by setting this non-empty.
+VBOX_RELEASE_EXACT_MATCH =
+
+# darwin.arm64 will remain BETA for quite a while.
+if1of ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH), darwin.arm64)
+ if $(VBOX_VERSION_BUILD) % 2 == 0
+ ifeq ($(VBOX_VERSION_PRERELEASE),)
+ VBOX_RELEASE_EXACT_MATCH:=1
+ endif
+ endif
+ VBOX_VERSION_PRERELEASE:=BETA4
+endif
+
+# Fallback revision when there is no other source. See Config.kmk.
+VBOX_SVN_REV_VERSION_FALLBACK := $(patsubst %:,, $Rev: 155176 $ )