aboutsummaryrefslogtreecommitdiff
path: root/ports/libjpeg-turbo
AgeCommit message (Collapse)Author
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-09-08[libjpeg-turbo] Update wrapper to correctly find debug/release variant (#19319)Kai Pastor
* Format manifest * Fix cmake wrapper * Drop windows debug lib renaming * Fix build warnings * x-add-version * Consolidate azure-kinect-sensor-sdk patches * Fix jpegturbo dependency * x-add-version * Fix wrapper message * x-add-version
2021-02-01[libjpeg-turbo] update to 2.0.6 (#15936)JonLiu1993
* [libjpeg-turbo] update to 2.0.6 * update version
2021-01-19[libjepg-turbo] Fix *.pc files (#15735)Alexander Neumann
* [libjpeg-turbo] fix pkgconfig * add version info * Update ports/libjpeg-turbo/portfile.cmake * update baseline Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
2021-01-10[libjpeg-turbo/mozjpeg] Add conflict messages (#15196)NancyLi1013
* [libjpeg-turbo/mozjpeg] Add conflict messages * Add missed CONTROL for libjpeg-turbo * Update ports/mozjpeg/CONTROL
2020-12-26[libjpeg-turbo] fix incompatibility for c11 and c17 (#15234)Ronald
2020-12-09[libjpeg-turbo] Enabled jpeg7 and jpeg8 APIs (#14483)Peter Verswyvelen
2020-08-21[libjpeg-turbo] Update to 2.0.5 (#12973)JonLiu1993
2020-02-10[many ports] Upgrades to 2020.02.08 (#9986)Robert Schumacher
* [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>
2019-10-01[libjpeg-turbo] Update to 2.0.3.Joseph Davies
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-06-06[libjpeg-turbo] Upgrades 2019.05.08 (#6482)Phoebe
* [libjpeg_turbo] Upgrades 2019.05.08 * Remove debug/bin * Update patch * Add black line
2019-05-06[libjpeg-turbo] Update to libjpeg-turbo 2.0.1 (#4635)Tsukasa Sugiura
* [libjpeg-turbo] Update to libjpeg-turbo 2.0.1 * [libjpeg-turbo] workaround CMAKE_SYSTEM_PROCESSOR vcpkg bug
2019-01-11[libjpeg-turbo] use d suffix for debug libs (#4965)Stefano Sinigardi
* use d suffix for debug libs, improve compatibility with official FindJPEG.cmake (cmake 3.13) * [libjpeg] fix also non-static case * [libjpeg-turbo] bump version * [libjpeg-turbo] fixes for regression on Linux/macOS * [libjpeg-turbo] fix regression in qt5-base * [linkjpeg-turbo] force CI test
2018-09-24[cairo][expat][fontconfig][graphicsmagick][libjpeg-turbo][pixman][tiff] Add ↵Robert Schumacher
unofficial targets and usage information
2018-03-18[libjpeg-turbo] Disable GETENV/SETENV in UWP. See ↵Robert Schumacher
https://github.com/libjpeg-turbo/libjpeg-turbo/issues/203
2018-03-13[libjpeg-turbo] Fix non-windows non-linuxRobert Schumacher
2018-03-11[many ports] Improve behavior on Linux and general cleanupRobert Schumacher
2018-01-19[libjpeg-turbo] update to 1.5.3Ivy Snow
2018-01-03Add preliminary support for arm-windows and arm64-windows triplets (#2371)Jacek Blaszczynski
* Add preliminary support for arm-windows and arm64-windows triplets Visual Studio 15.4 shipped with new VC tools targeting arm and arm64 for desktop. This change allows for recognition and usage of new triplets supporting arm and arm64 Windows desktop and server targets. * Remove unnecessary changes * Part 2 * Part 3 * Make detection of Arm64 _VCPKG_TARGET_ARCHITECTURE precise * Enforce usage of Visual Studio CMake generatorfor arm and temporarily arm64 targets * Address code review feedback, clean libjpeg-turbo port.cmake * [libjpeg-turbo][tiff] Reduce changes to existing libraries. * [vcpkg-cmake] Simplify toolchain selection logic and improve comments
2017-11-16[vcpkg] Support \share\<port>\usage to handle libraries which are found ↵Robert Schumacher
through built-in Find Modules.
2017-10-25[libjpeg-turbo] Fix CRT linkageRobert Schumacher
2017-10-16[vcpkg-toolchain] Improvements; add VCPKG_CHAINLOAD_TOOLCHAIN_FILERobert Schumacher
2017-09-09vcpkg_configure_cmake (and _meson) now embed debug symbols within static ↵Alexander Karatarakis
libs (/Z7)
2017-07-12[libjpeg-turbo] update to 1.5.2codicodi
2017-03-14[libjpeg-turbo] disable SIMD optimizations on ARMMikhail Paulyshka
2017-03-11[libjpeg-turbo] update to 1.5.1. Resolves #767Mikhail Paulyshka
2017-02-08Reorder path alterations to generally append instead of prepend.Robert Schumacher
This solves the issue where some software bundles (git) provide multiple executables in the same folder, which can override other desired programs (link.exe).
2016-11-21[libjpeg-turbo] Fix static libraries nameDaniele E. Domenichelli
The libraries with the "-static" suffix are not found by CMake
2016-11-08triplet is now automatically included before portfiles.Alexander Karatarakis
Also remove trailing whitespaces from portfiles
2016-11-01[libjpeg-turbo] Consistency changesAlexander Karatarakis
2016-11-01[libjpeg-turbo] Enable static buildMårten Nordheim
2016-10-26[libjpeg-turbo] Mark as not supporting static yetAlexander Karatarakis
2016-10-06Remove use of vcpkg_build_cmake() across all portfiles. Fixes #123Robert Schumacher
2016-09-25URL and MIRRORS are now URLSNinetainedo
Updated all portfiles accordingly.
2016-09-22Replaced everything concerning MD5 with SHA512Ninetainedo
2016-09-18Initial commitAlexander Karatarakis