aboutsummaryrefslogtreecommitdiff
path: root/ports/lz4
AgeCommit message (Collapse)Author
2021-09-24[libarchive,lz4] Fix pc file, modernize portfile (#20146)Kai Pastor
* Fix pc file * Modernize portfile * OpenSSL unused on 'Darwin' * x-add-version * More port cleanup (CR requests) * Revise wrapper, using find_package * Don't use pkgconfig modules for windows openssl * Update versions * Use namespaced variables for custom lzo lookup * Wrapper needs CMP0012 * Skip dependencies if not LibArchive_FOUND * Update versions * Fix liblz4.pc debug lib fixup * Update versions Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
2021-09-13[lz4] Install pc file, cleanup (#20108)Kai Pastor
* Drop unused xxhash dependency * Modernize portfile * Install pc file * x-add-version * Switch to 'version' field * Update versions * Fix liblz4 pc file name * Update versions
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` 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-04-09[lz4] update to 1.9.3 (#16860)Matthieu Penant
* [lz4] update to 1.9.3 - Update lz4 to 1.9.3 https://github.com/lz4/lz4/releases/tag/v1.9.3 - tested as an install dependency for libarchive on x86-windows and x64-windows. * forgot baseline / version
2020-05-11[VTK/vtk-m] Update VTK to 9.0 and add vtk-m (#11148)Alexander Neumann
* [vtk-m] new port vtk-m * [VTK] Update to 9.0 * include local buildtree changes * [pcl] disable VTK due to API changes in VTK 9.0 * [vtk-m] add supports field to be only x64 * [vtk-dicom] add python executable. * fix vtkm dependency * [vtk-dicom] fix missing std:: namespace * [vtk-m] add uwp to unsupported triplets * [vtk] add pegtl include patch, reenable IOMotionFX * remove hdf5 changes for testing * use different pgetl patch which redirects to the installed config of pegtl * [pegtl-2] version file needs renaming too * [vtk] change dependency to pgetl-2 and fix the patch * [vtk] put in hdf5 fix again and correct manually installed include files * remove deprecated function to retrigger CI * [lz4] correctly lowercase the lz4 config * [vtk] remove unnecessary code * [pegtl-2] add homepage * [pegtl] modernize portfiles * [vtk-dicom] add homepage * [vtk-dicom] modernize portfile * [vtk-m] remove empty build depends * [vtk] try fixing the permission issue * bump control * Update FindHDF5.cmake * Update pegtl.patch * Update ports/vtk/pegtl.patch Co-authored-by: nicole mazzuca <mazzucan@outlook.com> * [vtk] refactor portfile, added a few deps on [core] and added feature cuda * [vtk] pegtl.patch: Add additional found message * [vtk-m] add more documentation comments * [vtk] fix string replacement Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
2020-04-16[lz4] Fix for building Linux shared libraries (#10452)here-mikelley
* [lz4] Fix for building Linux shared libraries * [lz4] Changes requested by maintainer
2019-08-23[lz4] Update library to 1.9.2 (#7860)Ehsan
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-06-05[lz4]Fix conflict file xxhash.h (#6735)JackBoosY
* [lz4]Fix conflict file xxhash.h * [lz4]Use xxhash dependency to install xxhash.h
2019-05-18[lz4, flann] port patches from #5169 (#6294)Stefano Sinigardi
* [lz4, flann] port patches from #5169 * [lz4] use vcpkg_fixup_cmake_targets * [flann] improve target handling * [lz4] remove unnecessary debug message * [openmvg] many many fixes to build it on windows * [pcl] use official FLANN cmake config file instead of custom module * [pcl] fix patch for flann targets * [pcl] Bump CONTROL version
2019-05-08[many ports] Updates 2019.05.07 (#6338)Robert Schumacher
* [many ports] Updates 2019.05.07 * Undo assimp and gdcm2 changes since they caused regressions
2019-04-30[many ports] Updates 2019.04.19 (#6155)Robert Schumacher
* [many ports] Updates 2019.04.19
2018-09-19Upgrades 2018.09.18Robert Schumacher
2018-05-11Merge branch 'master' of https://github.com/yurybura/vcpkgyurybura
2018-05-11[lz4] fix version numberyurybura
[zstd] update to 1.3.4
2018-05-10[lz4] update to 1.8.2Koby Kahane
2018-03-12Update versionsYury Bura
2018-03-12[rocksdb] Fix build and use debug suffix 'd'yurybura
[gtest] Fix issue #2373
2018-01-22[lz4] update to 1.8.1.2Koby Kahane
2017-09-09vcpkg_configure_cmake (and _meson) now embed debug symbols within static ↵Alexander Karatarakis
libs (/Z7)
2017-08-18[lz4] update to 1.8.0codicodi
2017-05-05Force LF line endings for patch filesMartin Müller
2017-02-25[lz4] update to 1.7.5codicodi
2016-12-30add lz4codicodi