PowerShell version script: work correctly from any cwd; do not error out when version.h doesn't already exist; adjust git_version.h and git_version.xml paths for meson build system
This commit is contained in:
parent
613cef19a0
commit
936b39303d
2 changed files with 23 additions and 27 deletions
50
version.ps1
50
version.ps1
|
@ -5,48 +5,44 @@ $defineNumberMatch = [regex] '^#define\s+(\w+)\s+(\d+)$'
|
||||||
$defineStringMatch = [regex] "^#define\s+(\w+)\s+[`"']?(.+?)[`"']?$"
|
$defineStringMatch = [regex] "^#define\s+(\w+)\s+[`"']?(.+?)[`"']?$"
|
||||||
$semVerMatch = [regex] 'v?(\d+)\.(\d+).(\d+)(?:-(\w+))?'
|
$semVerMatch = [regex] 'v?(\d+)\.(\d+).(\d+)(?:-(\w+))?'
|
||||||
|
|
||||||
if (!(git rev-parse --is-inside-work-tree 2>$null)) {
|
|
||||||
throw 'git repo not found'
|
$repositoryRootPath = Join-Path $PSScriptRoot .. | Resolve-Path
|
||||||
|
if (!(git -C $repositoryRootPath rev-parse --is-inside-work-tree 2>$null)) {
|
||||||
|
throw "$repositoryRootPath is not a git repository"
|
||||||
}
|
}
|
||||||
|
|
||||||
$repositoryRootPath = git rev-parse --git-path . | Join-Path -ChildPath .. | Resolve-Path
|
$gitVersionHeaderPath = Join-Path $repositoryRootPath 'src' | Join-Path -ChildPath 'include' | Join-Path -ChildPath 'aegisub' `
|
||||||
$buildPath = Join-Path $repositoryRootPath 'build'
|
| Join-Path -ChildPath 'git_version.h'
|
||||||
$gitVersionHeaderPath = Join-Path $buildPath 'git_version.h'
|
$gitVersionXmlPath = Join-Path $repositoryRootPath 'packages' | Join-Path -ChildPath 'win_installer' `
|
||||||
$gitVersionXmlPath = Join-Path $buildPath 'git_version.xml'
|
| Join-Path -ChildPath 'git_version.xml'
|
||||||
|
|
||||||
if (!(Test-Path $gitVersionHeaderPath)) {
|
|
||||||
throw "missing git_version.h in ${buildPath}"
|
|
||||||
}
|
|
||||||
|
|
||||||
$version = @{}
|
$version = @{}
|
||||||
Get-Content $gitVersionHeaderPath | %{$_.Trim()} | ?{$_} | %{
|
if (Test-Path $gitVersionHeaderPath) {
|
||||||
switch -regex ($_) {
|
Get-Content $gitVersionHeaderPath | %{$_.Trim()} | ?{$_} | %{
|
||||||
$defineNumberMatch {
|
switch -regex ($_) {
|
||||||
$version[$Matches[1]] = [int]$Matches[2];
|
$defineNumberMatch {
|
||||||
}
|
$version[$Matches[1]] = [int]$Matches[2];
|
||||||
$defineStringMatch {
|
}
|
||||||
$version[$Matches[1]] = $Matches[2];
|
$defineStringMatch {
|
||||||
|
$version[$Matches[1]] = $Matches[2];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!($version.ContainsKey('BUILD_GIT_VERSION_NUMBER') -and $version.ContainsKey('BUILD_GIT_VERSION_STRING'))) {
|
$gitRevision = $lastSvnRevision + ((git -C $repositoryRootPath log --pretty=oneline "$($lastSvnHash)..HEAD" 2>$null | Measure-Object).Count)
|
||||||
throw 'invalid git_version.h'
|
$gitBranch = git -C $repositoryRootPath symbolic-ref --short HEAD 2>$null
|
||||||
}
|
$gitHash = git -C $repositoryRootPath rev-parse --short HEAD 2>$null
|
||||||
|
|
||||||
$gitRevision = $lastSvnRevision + ((git log --pretty=oneline "$($lastSvnHash)..HEAD" 2>$null | Measure-Object).Count)
|
|
||||||
$gitBranch = git symbolic-ref --short HEAD 2>$null
|
|
||||||
$gitHash = git rev-parse --short HEAD 2>$null
|
|
||||||
$gitVersionString = $gitRevision, $gitBranch, $gitHash -join '-'
|
$gitVersionString = $gitRevision, $gitBranch, $gitHash -join '-'
|
||||||
$exactGitTag = git describe --exact-match --tags 2>$null
|
$exactGitTag = git -C $repositoryRootPath describe --exact-match --tags 2>$null
|
||||||
|
|
||||||
if ($exactGitTag -match $semVerMatch) {
|
if ($exactGitTag -match $semVerMatch) {
|
||||||
$version['TAGGED_RELEASE'] = $true
|
$version['TAGGED_RELEASE'] = $true
|
||||||
$version['RESOURCE_BASE_VERSION'] = $Matches[1..3]
|
$version['RESOURCE_BASE_VERSION'] = $Matches[1..3]
|
||||||
$version['INSTALLER_VERSION'] = $gitVersionString = ($Matches[1..3] -join '.') + @("-$($Matches[4])",'')[!$Matches[4]]
|
$version['INSTALLER_VERSION'] = $gitVersionString = ($Matches[1..3] -join '.') + @("-$($Matches[4])",'')[!$Matches[4]]
|
||||||
} else {
|
} else {
|
||||||
foreach ($rev in (git rev-list --tags 2>$null)) {
|
foreach ($rev in (git -C $repositoryRootPath rev-list --tags 2>$null)) {
|
||||||
$tag = git describe --exact-match --tags $rev 2>$null
|
$tag = git -C $repositoryRootPath describe --exact-match --tags $rev 2>$null
|
||||||
if ($tag -match $semVerMatch) {#
|
if ($tag -match $semVerMatch) {#
|
||||||
$version['TAGGED_RELEASE'] = $false
|
$version['TAGGED_RELEASE'] = $false
|
||||||
$version['RESOURCE_BASE_VERSION'] = $Matches[1..3] + $gitRevision
|
$version['RESOURCE_BASE_VERSION'] = $Matches[1..3] + $gitRevision
|
||||||
|
|
0
version.sh
Normal file → Executable file
0
version.sh
Normal file → Executable file
Loading…
Reference in a new issue