Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Constantino <wiiaboo@gmail.com>2016-11-05 05:03:07 +0300
committerRalph Giles <giles@thaumas.net>2016-11-18 00:28:58 +0300
commit8fe210f14b040880829682a9f3f90b02993b4a64 (patch)
tree24085c786b7ed5433d336cb804ec400b56780a16
parentbd54e279d524f21e69e26feb4f9f340a4430c2f6 (diff)
genversion.bat: generate same version as update_version
Remove version.mk and references to it in the repo. genversion.bat will now generate the same version strings as update_version script, i.e. without 'v' prefix and without a fallback if git archive is used. If run from a release tarball it'll use package_version, like configure. If run from a git repo, it will use the same 'git describe' with '-dirty' as update_version. Signed-off-by: Ralph Giles <giles@thaumas.net>
-rw-r--r--Makefile.am3
-rw-r--r--doc/release.txt1
-rw-r--r--version.mk2
-rw-r--r--win32/genversion.bat23
4 files changed, 8 insertions, 21 deletions
diff --git a/Makefile.am b/Makefile.am
index 0f0a6d43..03a207e2 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -157,8 +157,7 @@ opus_custom_demo_LDADD = libopus.la $(LIBM)
endif
endif
-EXTRA_DIST = version.mk \
- opus.pc.in \
+EXTRA_DIST = opus.pc.in \
opus-uninstalled.pc.in \
opus.m4 \
Makefile.mips \
diff --git a/doc/release.txt b/doc/release.txt
index 0857839e..ebe9af1e 100644
--- a/doc/release.txt
+++ b/doc/release.txt
@@ -4,7 +4,6 @@
- Check for uncommitted changes to master.
- Update OPUS_LT_* API versioning in configure.ac.
-- Update the version in version.mk
- Tag the release commit with 'git tag -s vN.M'.
- Include release notes in the tag annotation.
- Verify 'make distcheck' produces a tarball with
diff --git a/version.mk b/version.mk
deleted file mode 100644
index 9dd57539..00000000
--- a/version.mk
+++ /dev/null
@@ -1,2 +0,0 @@
-# static version string; update manually every release.
-PACKAGE_VERSION = "1.2-alpha"
diff --git a/win32/genversion.bat b/win32/genversion.bat
index cd1d4dce..1def7460 100644
--- a/win32/genversion.bat
+++ b/win32/genversion.bat
@@ -2,13 +2,13 @@
setlocal enableextensions enabledelayedexpansion
-for /f %%v in ('git --git-dir="%~dp0..\.git" describe --tags --match "v*"') do set version=%%v
+for /f %%v in ('cd "%~dp0.." ^&^& git status ^>NUL 2^>NUL ^&^& git describe --tags --match "v*" --dirty 2^>NUL') do set version=%%v
-if not "%version%"=="" goto :gotversion
+if not "%version%"=="" set version=!version:~1! && goto :gotversion
-if exist "%~dp0..\version.mk" goto :getversion
+if exist "%~dp0..\package_version" goto :getversion
-echo Git cannot be found, nor can version.mk. Generating unknown version.
+echo Git cannot be found, nor can package_version. Generating unknown version.
set version=unknown
@@ -16,25 +16,16 @@ goto :gotversion
:getversion
-for /f "delims== tokens=2" %%v in (%~dps0..\version.mk) do set version=%%v
-
-set version=!version:^"=!
-set version=!version: =!
+for /f "delims== tokens=2" %%v in (%~dps0..\package_version) do set version=%%v
+set version=!version:"=!
:gotversion
+set version=!version: =!
set version_out=#define %~2 "%version%"
-set version_mk=%~2 = "%version%"
echo %version_out%> "%~1_temp"
-if %version%==unknown goto :skipgenerate
-
-echo # static version string; update manually every release.> "%~dp0..\version.mk"
-echo %version_mk%>> "%~dp0..\version.mk"
-
-:skipgenerate
-
echo n | comp "%~1_temp" "%~1" > NUL 2> NUL
if not errorlevel 1 goto exit