Jia Yue Hua
315db5a28f
[pe-parse] update to 2.1.1 ( #37679 )
2024-03-25 15:36:25 -07:00
autoantwort
8cf1808bc0
[pe-parse] no Werror ( #30672 )
2023-04-05 16:35:24 -07:00
yardenshafir
88dc9ca242
update pe-parse to version 2.1.0 ( #27811 )
2022-11-15 13:51:52 -08:00
chausner
86c573ec5f
[pe-parse] Update to 1.3.0, [uthenticode] Update to 1.0.6 ( #20918 )
...
* Update pe-parse to 1.3.0
* Update CI baseline
* Update uthenticode to 1.0.6
* Update git-tree hash
* Fix ARM64 Windows build
* Update git-tree hash
Co-authored-by: chausner <chausner@users.noreply.github.com>
2021-10-26 23:40:12 -07:00
Billy O'Neal
b295670e4b
Bulk convert control files. ( #19986 )
...
```
function Convert-Control {
Param($full)
.\vcpkg.exe format-manifest $full
$root = $full.Substring(0, $full.Length - 7) # CONTROL
$new = $root + 'vcpkg.json'
$content = Get-Content -Raw $new
$asJson = ConvertFrom-Json $content -AsHashtable -Depth 100
$oldVersion = $asJson['port-version']
if ($null -eq $oldVersion) {
$oldVersionFull = $asJson['version-string']
Write-Host "Got version $oldVersionFull"
$match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$')
if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) {
$newFullVersion = [string]$match.Groups[1].Value
$oldVersion = [int]$match.Groups[2].Value
Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion"
$newVersion = $oldVersion + 1
$asJson['version-string'] = $newFullVersion
Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion"
} else {
Write-Host "No previous version for $full -- setting 1"
$newVersion = 1
}
} else {
$newVersion = [int]$oldVersion + 1
Write-Host "New version for $full : $newVersion"
}
$asJson['port-version'] = $newVersion
$content = ConvertTo-Json $asJson -Depth 100
Set-Content -Path $new -Value $content
.\vcpkg.exe format-manifest $new
}
Get-ChildItem ports\CONTROL -Recurse | Foreach-Object {
Convert-Control $_.FullName
}
git commit -am "this message"
.\vcpkg.exe x-add-version -all
git commit -a --amend
```
2021-09-09 01:24:04 -07:00
William Woodruff
d525bf5b20
[pe-parse] Add new port ( #11012 )
...
* [pe-parse] Add new port
* pe-parse/CONTROL: Fix version, remove dep
* pe-parse/portfile: Formatting
* pe-parse/CONTROL: Add pe-parse's homepage
* pe-parse/CONTROL: Don't support UWP
This isn't a platform pe-parse intends to support.
2020-04-27 07:06:49 -07:00