aboutsummaryrefslogtreecommitdiff
path: root/ports/winpcap
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 ```
2020-07-30[winpcap] Remove the keyword 'inline' macro (#12542)Phoebe
* [winpcap] Remove the keyword 'inline' macro * Restrict the keyword macro in C
2020-06-11[libpcap] Enable compilation of libpcap port on x86-windows and x64-windows ↵Silvio Traversaro
(#10731) * Enable compilation of libpcap port on x86-windows and x64-windows As winpcap and libpcap install the same headers, this two port have been marked as not not compatible, and cannot be installed together. * Update ci.baseline.txt * Add libcrafter failing ports to ci.baseline.txt
2019-06-15[WIP] Add a Homepage URL entry for vcpkg ports (#2933)pravic
* [vcpkg] Add "Homepage" field to the CONTROL files.
2019-02-27[winpcap]fix build in x86-windows-static and x64-windows-static: use correct ↵JackBoosY
library. (#5478)
2018-10-25[winpcap] Clean build slightlyRobert Schumacher
2018-03-08[soundtouch][winpcap] Clear sources between builds to improve reliabilityRobert Schumacher
2017-10-17[fetchDependency] Use Expand-Archive if it exists, otherwise fallback to cmdAlexander Karatarakis
2017-09-22Add install pcap_stdinc.h fileTsukasa Sugiura
Add install pcap_stdinc.h file.
2017-08-28Add support to change linkage of CRT and libraryTsukasa Sugiura
Add support to change linkage of CRT and library.
2017-08-26Build WinPCAP libraries from source codeTsukasa Sugiura
Build WinPCAP libraries from source code.
2017-08-25Add WinPCAP Developer's PackTsukasa Sugiura
Add WinPCAP Developer's Pack