<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/live555/CONTROL, branch master</title>
<subtitle>Forked from https://github.com/microsoft/vcpkg</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/'/>
<entry>
<title>Bulk convert control files. (#19986)</title>
<updated>2021-09-09T08:24:04+00:00</updated>
<author>
<name>Billy O'Neal</name>
<email>bion@microsoft.com</email>
</author>
<published>2021-09-09T08:24:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b295670e4bab14debe88d92cd5364b21ce26232c'/>
<id>b295670e4bab14debe88d92cd5364b21ce26232c</id>
<content type='text'>
```
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
```</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
```
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
```</pre>
</div>
</content>
</entry>
<entry>
<title>[live555] Fix live555:x86-windows-static build failure (#9303)</title>
<updated>2019-12-20T20:00:56+00:00</updated>
<author>
<name>Alvin</name>
<email>52727318+AlvinZhangH@users.noreply.github.com</email>
</author>
<published>2019-12-20T20:00:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c77c1cd86150e14ee3ecba319ee554b46f39ebd4'/>
<id>c77c1cd86150e14ee3ecba319ee554b46f39ebd4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[WIP] Add a Homepage URL entry for vcpkg ports (#2933)</title>
<updated>2019-06-15T23:54:47+00:00</updated>
<author>
<name>pravic</name>
<email>ehysta@gmail.com</email>
</author>
<published>2019-06-15T23:54:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=18b029a5e3997fa4fdc7d3d06d56568a1d6f74ad'/>
<id>18b029a5e3997fa4fdc7d3d06d56568a1d6f74ad</id>
<content type='text'>
* [vcpkg] Add "Homepage" field to the CONTROL files.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [vcpkg] Add "Homepage" field to the CONTROL files.</pre>
</div>
</content>
</entry>
<entry>
<title>[Live555]Update version to 'latest' (#6267)</title>
<updated>2019-05-01T18:54:01+00:00</updated>
<author>
<name>LarryIII</name>
<email>33021067+LarryIII@users.noreply.github.com</email>
</author>
<published>2019-05-01T18:54:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=1e0b106d15c9b5d3f3d5914fa7c01d43260c7700'/>
<id>1e0b106d15c9b5d3f3d5914fa7c01d43260c7700</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[live555] Update the download path (#5919)</title>
<updated>2019-04-03T17:18:04+00:00</updated>
<author>
<name>Cheney Wang</name>
<email>38240633+Cheney-W@users.noreply.github.com</email>
</author>
<published>2019-04-03T17:18:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=c8844f5e40010d154da55190cddf2de943e84e72'/>
<id>c8844f5e40010d154da55190cddf2de943e84e72</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[Live555] Update to latest</title>
<updated>2018-08-29T23:27:24+00:00</updated>
<author>
<name>Cheney-Wang</name>
<email>v-xincwa@microsoft.com</email>
</author>
<published>2018-08-28T07:43:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=66f09a0b609e0a118902ca603d51172eb788fff9'/>
<id>66f09a0b609e0a118902ca603d51172eb788fff9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[live555] Update to 2018.08.05 (#4087)</title>
<updated>2018-08-15T18:24:36+00:00</updated>
<author>
<name>Cheney Wang</name>
<email>38240633+Cheney-W@users.noreply.github.com</email>
</author>
<published>2018-08-15T18:24:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=85c2fa9f0a2693018d686d4f0b6dbff583ff2140'/>
<id>85c2fa9f0a2693018d686d4f0b6dbff583ff2140</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[Live555] Add missing symbols due to missing C files and copy paste bug (#4002)</title>
<updated>2018-08-03T07:17:36+00:00</updated>
<author>
<name>Marcus Asteborg</name>
<email>xnorpx@outlook.com</email>
</author>
<published>2018-08-03T07:17:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=7ed58da3aed873dfc144beea6bf59cfc45a29aad'/>
<id>7ed58da3aed873dfc144beea6bf59cfc45a29aad</id>
<content type='text'>
* Add missing symbols due to missing C files and copy paste bug

* [live555] Bump control version to include package change
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add missing symbols due to missing C files and copy paste bug

* [live555] Bump control version to include package change
</pre>
</div>
</content>
</entry>
<entry>
<title>[live555] Update to 2018.07.07 (#3895)</title>
<updated>2018-07-13T21:26:55+00:00</updated>
<author>
<name>pravic</name>
<email>ehysta@gmail.com</email>
</author>
<published>2018-07-13T21:26:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=d7f41c907031b8af98375bbd927d5fcb6b4ebbde'/>
<id>d7f41c907031b8af98375bbd927d5fcb6b4ebbde</id>
<content type='text'>
* [live555] Update to 2018.07.07

* [live555] Update SHA512 hash too.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [live555] Update to 2018.07.07

* [live555] Update SHA512 hash too.
</pre>
</div>
</content>
</entry>
<entry>
<title>[cmark][gl3w][libpopt][libraw][libssh][live555] Fixes, mostly around changing download locations.</title>
<updated>2018-07-03T05:16:47+00:00</updated>
<author>
<name>Robert Schumacher</name>
<email>roschuma@microsoft.com</email>
</author>
<published>2018-07-01T04:05:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b08e78b07d4340a537f8d1470137883775a8902a'/>
<id>b08e78b07d4340a537f8d1470137883775a8902a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
