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 |
|
Adam Johnson
|
7f050e0be8
|
[speex] Add linux and macOS support. (#15855)
* [speex] Add linux and macOS support.
* [speex] Improve portfile.cmake
* update version record
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
|
2021-01-27 18:22:43 -08:00 |
|
Phoebe
|
e7dc93f202
|
[many ports] Add supports (#12857)
Co-authored-by: Billy Robert O'Neal <bion@microsoft.com>
|
2020-09-03 10:59:31 -07:00 |
|
Matthew Oliver
|
272269583c
|
[ffmpeg] Add feature support for zlib, iconv, fdk-aac, mp3lame, opus, soxr, theora. (#11277)
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
|
2020-08-18 12:58:14 -07:00 |
|
pravic
|
18b029a5e3
|
[WIP] Add a Homepage URL entry for vcpkg ports (#2933)
* [vcpkg] Add "Homepage" field to the CONTROL files.
|
2019-06-15 16:54:47 -07:00 |
|
Artem Golubikhin
|
d7b06be393
|
[speex] Fix release mode .def file. Add missing exports (#2340)
* [speex] Fix release mode .def file. Add missing exports
Fixed .def file in release mode (it is bugged after #2293 fix in d5395ac793 ) https://github.com/Microsoft/vcpkg/issues/2293#issuecomment-350449317
Added exports for speex_header_free and speex_mode_list (https://github.com/Microsoft/vcpkg/issues/2292#issuecomment-348773393)
* [speex] Fix regression for release mode import library
|
2017-12-09 17:19:12 -08:00 |
|
Robert Schumacher
|
5a8e2d9a8e
|
[speex] Fix regression for release mode import library
|
2017-12-09 17:17:10 -08:00 |
|
Robert Schumacher
|
d5395ac793
|
[speex] Fix debug mode .def file. Add exports for extern globals.
|
2017-12-02 23:57:17 -08:00 |
|
Alexander Karatarakis
|
26516fe485
|
vcpkg_configure_cmake (and _meson) now embed debug symbols within static libs (/Z7)
|
2017-09-09 00:12:54 -07:00 |
|
Robert Schumacher
|
5427ef1c03
|
[speex] Use simple version
|
2017-06-29 14:27:54 -07:00 |
|
atkawa7
|
6f287235ca
|
[speex] user official tags
|
2017-06-29 11:21:03 -07:00 |
|
atkawa7
|
5c955c3019
|
[speex] user official tags
|
2017-06-29 11:19:37 -07:00 |
|
atkawa7
|
e6d1f16038
|
use CMake's autoexport
|
2017-06-28 16:12:00 -07:00 |
|
atkawa7
|
76ca4cb60e
|
Add description and version name
|
2017-06-28 15:36:09 -07:00 |
|
Robert Schumacher
|
78349d7a0c
|
[speex] Simplify CMakeLists.txt
|
2017-06-28 15:27:20 -07:00 |
|
atkawa7
|
40935c4e40
|
[speex] init port #958
|
2017-06-26 13:31:09 -07:00 |
|