Alexander Neumann
d9ce34c383
[mdnsresponder] msbuild ( #33171 )
...
* [mdnsresponder] msbuild
* v db
* fix subpath
* v db
* fix static builds
* v db
2023-08-15 16:32:15 -07:00
Mengna Li
5387e1925b
[mdnsresponder] update to 1557.140.5.0.1 ( #27974 )
...
* update to 1557.140.5.0.1
* update
* fix static-md fail
* update
* fix install copyright
* add new line at the end of file
* Fixing fatal error LNK1181: cannot open input file dnssd_stub.lib
Co-authored-by: Cheney-Wang <850426846@qq.com>
2023-01-11 22:45:12 -08:00
Thomas1664
763f6664c1
[many ports] Fix copyright install ( #25409 )
...
* [Many ports] Fix copyright
* version
* [moos-core] Fix deprecated cmake
* version
* Fix cmake
* version
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2022-06-24 12:50:23 -07:00
Mengna Li
89c4fdfbe4
[unrar/mdnsresponder] only windows ( #22643 )
...
* unrar only support windows
* update
* update
* mdnsresponder only support windows
* --amend
* add !uwp to supports
* add !arm64 to supports
* Update ports/mdnsresponder/vcpkg.json
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
2022-01-20 15:53:24 -08:00
Cheney Wang
edb82cab69
[mDNSResponder] Update to 878.270.2 ( #20226 )
...
Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2021-09-20 10:02:13 -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