Phoebe
0921a9a278
[rs-core-lib/unicorn-lib] Remove rs-core-lib ( #22761 )
...
* [rs-core-lib/unicorn-lib] Remove rs-core-lib
* Format vcpkg.json
* Add license to vcpkg.json
* Remove rs-core-lib from baseline.json
2022-01-27 09:02:06 -08:00
Cameron Ward
70033dbb31
[vcpkg baseline][pcre2] fix checksum and update to 10.39 ( #21248 )
...
* [pcre2] fix checksum
* [pcre2] update to 10.39
* Set static build, format code.
* version
* [pcre2] Add cmake wrapper to use the generated cmake file
* [unicorn-lib] Fix dependency pcre2
* version
* [qt5-base] Fix dependency pcre2
* [pcre2] Fix pcre2-config.cmake
* version
* Re-fix pcre2-config.cmake
* Revert changes about pcre-config.cmake
* version
* remove cmake wrapper
* version
* Fix static name
* version
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
2021-11-09 16:29:09 -08: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
Wolfgang Stöggl
517116282b
[unicorn-lib] Update to 01cc7fc (2020-03-02) ( #11830 )
...
* [unicorn-lib] Check current version on CI first
- Check if the current version of unicorn-lib builds on all
supported triplets
- Current version of port in vcpkg:
commit ba11f5930dbeb5f8e04b2ee727b6dd3932fd6b03
date 2019-07-09
* [unicorn-lib] Update to 01cc7fc (2020-03-02)
- Update to current version in git:
commit 01cc7fcd2d60dbc083767d448477638e5ec8b92a
date 2020-03-02
2020-06-10 17:53:53 -07:00
Robert Schumacher
1550b9e71b
[many ports] Updates 2019.07.09 ( #7217 )
...
* [many ports] Upgrades 2019.07.11
* Re-generate patches and fix build errors.
* [manyport]Fix build errors.
* Fix avro-c and console-bridge failures, revert curl and tesseract
* fix botan failure
* Fix build errors and undo some ports upgrades.
* [aws-c-common,chipmunk,cxxopts,grpc]Fix build errors
* Fix build errors.
* [angle]Undo upgrade changes.
* [directxtk]Fix UWP build error (#7233 )
* Revert leptonica since it cause tesseract failed
* Revert jsonnet
* [google-cloud-cpp] Disable parallel configure due to source directory writes
* [many ports] Undo undesired changes
* [bitsery] Fix indentation
* [avro-c][aws-c-common][graphite2] Convert line endings to minimize PR diff
* fix console-bridge and remove usockets unused patch
* update ogre patch
* [many ports] Revert unneeded changes w.r.t. master. Add missing write to console-bridge.
* [console-bridge] Fix export macro
* [avro-c] Revert upgrade; split to #7875
* [avro-c] Complete previous revert
2019-08-24 13:43:57 -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
Daniel Marshall
64d6b21c78
fix casing ( #6722 )
2019-06-01 17:04:47 -07:00
JackBoosY
9d623319c6
[unicorn-lib]Fix build error. ( #6534 )
...
* [unicorn-lib]Fix build error.
* [unicorn-lib]Changed library linkage to static.
* [unicorn-lib]Use find_package instead of find_library to find zlib.
* [unicorn-lib]Fix the name of the PCRE2 library under debug/release and modify ZLIB link name.
* [unicorn-lib]Use select_library_configurations to select which pcre2 library should be linked.
2019-05-23 21:54:24 -07:00
Robert Schumacher
223d5d82ac
[many ports] Updates 2019.05.07 ( #6338 )
...
* [many ports] Updates 2019.05.07
* Undo assimp and gdcm2 changes since they caused regressions
2019-05-08 17:51:44 -07:00
Robert Schumacher
516d10bb68
[many ports] Updates 2019.04.19 ( #6155 )
...
* [many ports] Updates 2019.04.19
2019-04-30 09:20:18 -07:00
Robert Schumacher
c95512aaf6
[many ports] Updates 2019.03.29 ( #5698 )
...
* Updates 2019.03.29
* Undo changes to 4 ports(rocksdb tbb thrift uwebsockets) due to failures
* [folly] Fix target files in debug mode
* Undo glog changes since it caused sophus openmvg and cartographer failures
* Undo Folly changes since it cause wangle failed
* Undo Folly portfile
2019-04-15 22:30:11 -07:00
Robert Schumacher
1207951b7b
Updates 2019.01.30
2019-02-12 17:38:31 -08:00
Robert Schumacher
c6db2c880a
Updates 2019.01.09
2019-01-18 14:08:49 -08:00
Robert Schumacher
bb1bb1c94a
Updates 2018.12.14
2019-01-09 12:27:19 -08:00
Robert Schumacher
c538d6d996
Upgrades 2018.10.25
2018-10-26 18:49:29 -07:00
Robert Schumacher
9c62c6a37a
Upgrades 2018.10.11
2018-10-25 10:27:26 -07:00
Robert Schumacher
64a7483a4a
Upgrades 2018.09.18
2018-09-19 14:13:12 -07:00
Robert Schumacher
7e5bb652fb
Upgrades 2018.08.03
2018-09-18 02:11:05 -07:00
Robert Schumacher
c3d34e7d8e
Upgrades 2018.06.31
2018-08-03 00:09:21 -07:00
Robert Schumacher
86fecfc61c
Upgrades 2018.07.08
2018-07-08 22:29:53 -07:00
Robert Schumacher
c0ec4809b1
Upgrades for 2018.07.03
2018-07-03 21:44:16 -07:00
Robert Schumacher
feb0e9af9a
Upgrades 2018.07.01
2018-07-03 00:52:10 -07:00
Robert Schumacher
c6724beefd
[unicorn-lib] Change dependency to pcre2
2018-06-16 10:22:20 -07:00
Robert Schumacher
a650bad523
Updates 2018.06.15
2018-06-15 22:16:58 -07:00
Alexander Karatarakis
6ad96b7e7a
2018.05.17 updates
2018-05-17 22:56:05 -07:00
Robert Schumacher
fcb303331e
[abseil][aws-sdk-cpp][folly][jsonnet][ms-gsl][mujs][openimageio][re2][rs-core-lib][thrift][unicorn-lib][zeromq] Upgrades
...
[robin-map] Initial commit
2018-05-14 17:56:34 -07:00
Robert Schumacher
05edef9223
[abseil][aws-sdk-cpp][exiv2][forest][jsonnet][rs-core-lib][thrift][unicorn-lib] Upgrades
2018-04-09 22:56:38 -07:00
Robert Schumacher
51f93e27f1
[abseil][breakpad][cimg][matio][piex][rocksdb][thrift][tiny-dnn][unicorn-lib][unicorn] Updates
2018-03-13 11:16:07 -07:00
Robert Schumacher
c7616b902b
[many ports] Upgrades
2018-02-26 15:10:56 -08:00
Rémy Tassoux
4351c4a648
[unicorn-lib][rs-core-lib] Initial port
2018-01-04 05:02:59 +01:00