Commit Graph

18 Commits

Author SHA1 Message Date
Osyotr
16eeb024de
[snappy] Update to 1.1.10 and disable optimizations based on hardware support (#26828) 2023-07-26 19:54:11 -07:00
Alexander Neumann
b2b3650720
[snappy] fix pc file include (#29590)
* [snappy] fix wrong include in pc file

* v db
2023-02-13 08:44:55 -08:00
Frank
13224dcaaa
[snappy] fix correct lib name in snappy.pc file (#28712)
* [snappy] fix correct lib name in snappy.pc file

* update version
2023-01-05 05:20:49 -08:00
Alexander Neumann
2b35366a5d
[hpx] add some features, fix some bugs (#25059)
* refine hpx port

* v db

* add tcmalloc on unix

* refine comment

* v db

* remove hardcoded mpi dep

* v db

* portfile cleanup

* v db

* add pkgconf as a dep

* v db

* [snappy] remove debug suffix and add pc file

* hpx pass through _HOST_TRIPLET for pkgconf

* v db

* fix snappy in ffmpeg

* v db

* fix name clash of output names

* v db

* remove tcmalloc

* v db

* remove bin dir; seems empty on !windows

* v db

* b v

* v db

* baseline stuff

* fix jemalloc missing msvc_compat headers

* v db

* install usage for hpx

* v db

* Update versions/f-/ffmpeg.json

* revert v db

* bump ffmpeg

* v db

* remove jemalloc since I can force it thorugh the triplet any way.

* v db

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2022-09-19 12:30:40 -07:00
Alexander Neumann
ec2ab620f8
[snappy] fix clang-cl builds (#26057)
* snappy fix clang-cl builds

* v db

* CI Retriger
2022-08-03 10:30:09 -07:00
Osyotr
8831ef24ee
[snappy] Fix hash and switch to vcpkg_cmake_* (#21054) 2021-11-05 14:25:34 -07:00
chausner
bcdda2e5a2
[snappy] Update to 1.1.9 (#20350)
* Update snappy to 1.1.9

* Update CI baseline

* udpate vcpkg.json

* update version

Co-authored-by: chausner <chausner@users.noreply.github.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
2021-09-27 20:52:58 -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
Billy O'Neal
09a647a526
Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065) 2020-10-28 14:18:07 -07:00
Robert Schumacher
08c951fef9
[many ports] Upgrades to 2020.02.08 (#9986)
* [many ports] Upgrades to 2020.02.08

* Undo asio asmjit libimobiledevice mlpack mongo-c-driver oniguruma openmvg openvdb pcl

* Update ci baseline file

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
2020-02-10 16:08:57 -08: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
Yury Bura
ffb7725355 Update versions 2018-03-12 22:44:59 +03:00
yurybura
cc3d12b16b [rocksdb] Fix build and use debug suffix 'd'
[gtest] Fix issue #2373
2018-03-12 19:16:43 +03: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
codicodi
8b7298982a [snappy] update to 1.1.7 2017-08-27 14:20:14 +02:00
codicodi
f4c860a928 [snappy] update to 1.1.6 2017-07-30 09:41:19 +02:00
Robert Schumacher
adb9c23984 [snappy] Use vcpkg_fixup_cmake_targets() 2017-05-05 00:45:08 -07:00
Arkadiy Shapkin
dc2bdbd4ad [snappy] Initial commit for Google Snappy library 2017-05-05 02:23:54 +03:00