Kai Pastor
|
01ea5f6f16
|
[freeglut,gl2ps,glui,mdl-sdk] Platform support corrections (#35391)
* [freeglut] Fix android
* [glui] android unsupported, needs GL/gl.h
* [gl2ps] android unsupported, needs GL/gl.h
* [libraw] Skip arm-neon-android CI, needs ftello
* [mdl-sdk] Update 'supports'
* Update ci.baseline.txt
* [gl2ps] freeglut not needed
* [mdl-sdk] Fix static-md
|
2023-12-01 02:13:18 -08:00 |
|
Jack·Boos·Yu
|
7cfd63db7f
|
[many ports]switch to vcpkg-cmake / vcpkg-cmake-config part 2 (#29882)
Co-authored-by: jyu49 <yu_jack@apple.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
2023-04-21 14:48:12 -07:00 |
|
autoantwort
|
5b11232d00
|
[many-ports] Don't use deprecated functions (autogenerated) (#26981)
* [libuvc,qt5-virtualkeyboard] remove duplicated dependency entry
* [many-ports] don't use deprecated functions (autogenerated)
* atkmm: Fix license.
gperftools: Reformat vcpkg_check_features call.
gsl: Fix license.
libpff: Fix license.
pangomm: Fix license.
qtbase: Revert, only comment changes.
type-lite: Reformat vcpkg_check_features and actually use the feature options.
---------
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
|
2023-04-13 09:13:15 -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 |
|
JonLiu1993
|
dcabfa9719
|
[gl2ps] update to 1.4.2 (#16134)
* [gl2ps] update to 1.4.2
* update version
|
2021-02-11 00:07:47 -08:00 |
|
Billy O'Neal
|
09a647a526
|
Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065)
|
2020-10-28 14:18:07 -07:00 |
|
Phoebe
|
bcff929875
|
Add PREFER_NINJA to many ports (#7468)
* Add PREFER_NINJA to many ports
|
2019-07-31 13:01:02 -07:00 |
|
JackBoosY
|
9101fd1bbc
|
[gl2ps]Update to use vcpkg new functions(vcpkg_from_gitlab). (#7453)
|
2019-07-29 11:11:45 -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 |
|
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
|
687ea82f89
|
[vcpkg] Improve formatting of search and list. Fix gl2ps version.
|
2017-08-22 15:59:27 -07:00 |
|
atkawa7
|
c12a2e2065
|
[gl2ps] init
|
2017-08-15 12:24:12 -07:00 |
|