aboutsummaryrefslogtreecommitdiff
path: root/versions/t-
diff options
context:
space:
mode:
authorBilly O'Neal <bion@microsoft.com>2021-09-09 01:24:04 -0700
committerGitHub <noreply@github.com>2021-09-09 01:24:04 -0700
commitb295670e4bab14debe88d92cd5364b21ce26232c (patch)
tree29a1d985c11d3bb45ef6be14d524652c60b08429 /versions/t-
parent7e044226c8a6f43dac7d9e0efd8edbf8ff5ecd04 (diff)
downloadvcpkg-b295670e4bab14debe88d92cd5364b21ce26232c.tar.gz
vcpkg-b295670e4bab14debe88d92cd5364b21ce26232c.zip
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 ```
Diffstat (limited to 'versions/t-')
-rw-r--r--versions/t-/tabulate.json5
-rw-r--r--versions/t-/tacopie.json5
-rw-r--r--versions/t-/taocpp-json.json5
-rw-r--r--versions/t-/tap-windows6.json5
-rw-r--r--versions/t-/tbb.json5
-rw-r--r--versions/t-/tcl.json5
-rw-r--r--versions/t-/tclap.json5
-rw-r--r--versions/t-/teemo.json5
-rw-r--r--versions/t-/telnetpp.json5
-rw-r--r--versions/t-/tgbot-cpp.json5
-rw-r--r--versions/t-/tgc.json5
-rw-r--r--versions/t-/theia.json5
-rw-r--r--versions/t-/think-cell-range.json5
-rw-r--r--versions/t-/threadpool.json5
-rw-r--r--versions/t-/thrift.json5
-rw-r--r--versions/t-/tidy-html5.json5
-rw-r--r--versions/t-/tinkerforge.json5
-rw-r--r--versions/t-/tiny-aes-c.json5
-rw-r--r--versions/t-/tiny-bignum-c.json5
-rw-r--r--versions/t-/tiny-dnn.json5
-rw-r--r--versions/t-/tiny-process-library.json5
-rw-r--r--versions/t-/tiny-regex-c.json5
-rw-r--r--versions/t-/tinycthread.json5
-rw-r--r--versions/t-/tinydir.json5
-rw-r--r--versions/t-/tinyexif.json5
-rw-r--r--versions/t-/tinyexr.json5
-rw-r--r--versions/t-/tinygltf.json5
-rw-r--r--versions/t-/tinynpy.json5
-rw-r--r--versions/t-/tinyobjloader.json5
-rw-r--r--versions/t-/tinyply.json5
-rw-r--r--versions/t-/tinyspline.json5
-rw-r--r--versions/t-/tinythread.json5
-rw-r--r--versions/t-/tinytoml.json5
-rw-r--r--versions/t-/tinyutf8.json5
-rw-r--r--versions/t-/tinyxml.json5
-rw-r--r--versions/t-/tinyxml2.json5
-rw-r--r--versions/t-/tl-expected.json5
-rw-r--r--versions/t-/tl-function-ref.json5
-rw-r--r--versions/t-/tl-optional.json5
-rw-r--r--versions/t-/tlx.json5
-rw-r--r--versions/t-/tmx.json5
-rw-r--r--versions/t-/tmxlite.json5
-rw-r--r--versions/t-/tmxparser.json5
-rw-r--r--versions/t-/toml11.json5
-rw-r--r--versions/t-/tomlplusplus.json5
-rw-r--r--versions/t-/torch-th.json5
-rw-r--r--versions/t-/tre.json5
-rw-r--r--versions/t-/treehopper.json5
-rw-r--r--versions/t-/triangle.json5
-rw-r--r--versions/t-/trompeloeil.json5
-rw-r--r--versions/t-/tsl-hopscotch-map.json5
-rw-r--r--versions/t-/tsl-ordered-map.json5
-rw-r--r--versions/t-/tsl-sparse-map.json5
-rw-r--r--versions/t-/turbobase64.json5
-rw-r--r--versions/t-/type-lite.json5
55 files changed, 275 insertions, 0 deletions
diff --git a/versions/t-/tabulate.json b/versions/t-/tabulate.json
index b930dcf2b..dcdfc027b 100644
--- a/versions/t-/tabulate.json
+++ b/versions/t-/tabulate.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "482538c4e4f465f113e0318f20cd18b6f2b17f17",
+ "version-string": "2019-01-06",
+ "port-version": 1
+ },
+ {
"git-tree": "f59225353a31f7ebaa180e0d35a59122b31ce1b9",
"version-string": "2019-01-06",
"port-version": 0
diff --git a/versions/t-/tacopie.json b/versions/t-/tacopie.json
index 714a31e13..49d37a8fc 100644
--- a/versions/t-/tacopie.json
+++ b/versions/t-/tacopie.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "d65f4f38c50754c208cb959e3d1b0c6956d2bf94",
+ "version-string": "3.2.0",
+ "port-version": 3
+ },
+ {
"git-tree": "4338494afcc9385f4e4fb804faaef19e96c11843",
"version-string": "3.2.0-2",
"port-version": 0
diff --git a/versions/t-/taocpp-json.json b/versions/t-/taocpp-json.json
index 8cecc7cd7..e4e789af9 100644
--- a/versions/t-/taocpp-json.json
+++ b/versions/t-/taocpp-json.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "afe8907661864659e89e9fc421415b2687390c03",
+ "version-string": "2020-09-14",
+ "port-version": 1
+ },
+ {
"git-tree": "1f514b2100e6f510ec9fe39625c67e050f0910e0",
"version-string": "2020-09-14",
"port-version": 0
diff --git a/versions/t-/tap-windows6.json b/versions/t-/tap-windows6.json
index 7efe428b1..f22fe46dd 100644
--- a/versions/t-/tap-windows6.json
+++ b/versions/t-/tap-windows6.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "2b35b39ca3996a529812b69654a194568127e4e1",
+ "version-string": "9.21.2-0e30f5c",
+ "port-version": 1
+ },
+ {
"git-tree": "56eae8063d4c595d6002e0a499258d853a55ff22",
"version-string": "9.21.2-0e30f5c",
"port-version": 0
diff --git a/versions/t-/tbb.json b/versions/t-/tbb.json
index 71c441dbf..9c56bf8a5 100644
--- a/versions/t-/tbb.json
+++ b/versions/t-/tbb.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "e168e03c2e5776bdee59accf5f643ae26b0ddd84",
+ "version-string": "2020_U3",
+ "port-version": 6
+ },
+ {
"git-tree": "475f44cf5033c6f3bfb5c69c5a301cddf18e7aa0",
"version-string": "2020_U3",
"port-version": 5
diff --git a/versions/t-/tcl.json b/versions/t-/tcl.json
index 1cff326b2..39889c378 100644
--- a/versions/t-/tcl.json
+++ b/versions/t-/tcl.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "b1307e2d115e01cedde54662115ff363e46b6fe5",
+ "version-string": "core-9-0-a1",
+ "port-version": 2
+ },
+ {
"git-tree": "91acff42f01d650b56bc6a8377bca8c93f9e7408",
"version-string": "core-9-0-a1",
"port-version": 1
diff --git a/versions/t-/tclap.json b/versions/t-/tclap.json
index a0a4dc9b5..b9991c21b 100644
--- a/versions/t-/tclap.json
+++ b/versions/t-/tclap.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "787d1698947778edfecc2aa104ca7d09fb7d7415",
+ "version-string": "1.2.2",
+ "port-version": 4
+ },
+ {
"git-tree": "c0fc7c229a3d40cbeb66f7f67856aa3115a70d3f",
"version-string": "1.2.2-3",
"port-version": 0
diff --git a/versions/t-/teemo.json b/versions/t-/teemo.json
index 647de20f5..6a711fa93 100644
--- a/versions/t-/teemo.json
+++ b/versions/t-/teemo.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "0ba6666678630113a8080448b6751fa3a2eacbef",
+ "version-string": "2.2",
+ "port-version": 1
+ },
+ {
"git-tree": "0ca1723ca09260ded55e97381d5ad169e775baa5",
"version-string": "2.2",
"port-version": 0
diff --git a/versions/t-/telnetpp.json b/versions/t-/telnetpp.json
index 1ef742424..0ac6ff7a5 100644
--- a/versions/t-/telnetpp.json
+++ b/versions/t-/telnetpp.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "e90806a190428cbf53773ea93d5bdacb7f92f7c0",
+ "version-string": "2.1.2",
+ "port-version": 1
+ },
+ {
"git-tree": "904e2801ba11dae44b62c252e4b6193b50e63fd2",
"version-string": "2.1.2",
"port-version": 0
diff --git a/versions/t-/tgbot-cpp.json b/versions/t-/tgbot-cpp.json
index b62f1d0a4..221b6611c 100644
--- a/versions/t-/tgbot-cpp.json
+++ b/versions/t-/tgbot-cpp.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "a48e654a56a7017acf3d0f0b119a96e9235119f9",
+ "version-string": "1.2.1",
+ "port-version": 1
+ },
+ {
"git-tree": "ba88bbcbff36bc2411806249543cd4046d938ebd",
"version-string": "1.2.1",
"port-version": 0
diff --git a/versions/t-/tgc.json b/versions/t-/tgc.json
index ad9806f12..2ce1e70a8 100644
--- a/versions/t-/tgc.json
+++ b/versions/t-/tgc.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "753c07ac331209bf362c3818e462493ed6ac5ecb",
+ "version-string": "2019-08-11",
+ "port-version": 2
+ },
+ {
"git-tree": "b69aab3ec83aa87c6b297a75b4f02ee68d512921",
"version-string": "2019-08-11-1",
"port-version": 0
diff --git a/versions/t-/theia.json b/versions/t-/theia.json
index ab84a7a48..b3d5cc256 100644
--- a/versions/t-/theia.json
+++ b/versions/t-/theia.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "9e4f395b731d46fde09836e4ff9a23ace6c74a6a",
+ "version-string": "0.8",
+ "port-version": 4
+ },
+ {
"git-tree": "6d74e7de2d80d5f3675b381e39c5fedd34493531",
"version-string": "0.8",
"port-version": 3
diff --git a/versions/t-/think-cell-range.json b/versions/t-/think-cell-range.json
index 80ca3c39e..f3a34c739 100644
--- a/versions/t-/think-cell-range.json
+++ b/versions/t-/think-cell-range.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "e39d38661e62f2c36eaa0026eabfb21e827e8456",
+ "version-string": "498839d",
+ "port-version": 2
+ },
+ {
"git-tree": "b1c80aab0470d03d5f336f15283beec17f3a3bfc",
"version-string": "498839d-1",
"port-version": 0
diff --git a/versions/t-/threadpool.json b/versions/t-/threadpool.json
index 3090b34f3..6af078b54 100644
--- a/versions/t-/threadpool.json
+++ b/versions/t-/threadpool.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "498f064539d36777494d54a9edcce63a012ac503",
+ "version-string": "0.2.5",
+ "port-version": 2
+ },
+ {
"git-tree": "4a34cd691a72f01753a152d484648d8bd885dfb8",
"version-string": "0.2.5",
"port-version": 1
diff --git a/versions/t-/thrift.json b/versions/t-/thrift.json
index ae23598c5..de82f9256 100644
--- a/versions/t-/thrift.json
+++ b/versions/t-/thrift.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "c7225d5805f82b8027c801f08d162bbd41b2b99f",
+ "version-string": "0.13.0",
+ "port-version": 1
+ },
+ {
"git-tree": "752af13152a5b5c98e64bc1beeec974befbbb5b9",
"version-string": "0.13.0",
"port-version": 0
diff --git a/versions/t-/tidy-html5.json b/versions/t-/tidy-html5.json
index 7b192ae14..976625125 100644
--- a/versions/t-/tidy-html5.json
+++ b/versions/t-/tidy-html5.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "6b446932540002cb1b664d7f5286fdb6c0f7af28",
+ "version-string": "5.7.28",
+ "port-version": 3
+ },
+ {
"git-tree": "b050c4d466a093f1322998c0c2c356698954bc40",
"version-string": "5.7.28-2",
"port-version": 0
diff --git a/versions/t-/tinkerforge.json b/versions/t-/tinkerforge.json
index e34cd1cf1..0969ff465 100644
--- a/versions/t-/tinkerforge.json
+++ b/versions/t-/tinkerforge.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "684528ec07914569ba89b0d42230290cc55fdd4a",
+ "version-string": "2.1.25",
+ "port-version": 1
+ },
+ {
"git-tree": "89d1c3d2cdeef8dfd9d9a36a12461d1994094de0",
"version-string": "2.1.25",
"port-version": 0
diff --git a/versions/t-/tiny-aes-c.json b/versions/t-/tiny-aes-c.json
index 44e769d77..1a915e783 100644
--- a/versions/t-/tiny-aes-c.json
+++ b/versions/t-/tiny-aes-c.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "0971fda4965a33a674a28b84035e71e42e57f135",
+ "version-string": "2019-07-31",
+ "port-version": 1
+ },
+ {
"git-tree": "b5a8d85f99c004b3a88f910e02cf53411fed45d8",
"version-string": "2019-07-31",
"port-version": 0
diff --git a/versions/t-/tiny-bignum-c.json b/versions/t-/tiny-bignum-c.json
index 69ddcf56f..010c784a0 100644
--- a/versions/t-/tiny-bignum-c.json
+++ b/versions/t-/tiny-bignum-c.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "645fb34f304ead370e2f4275b4e6c7120dcaed9e",
+ "version-string": "2019-07-31",
+ "port-version": 1
+ },
+ {
"git-tree": "46dd3471154a21dd430e36e7d0ab56c33f76211e",
"version-string": "2019-07-31",
"port-version": 0
diff --git a/versions/t-/tiny-dnn.json b/versions/t-/tiny-dnn.json
index e0921f437..ba0744415 100644
--- a/versions/t-/tiny-dnn.json
+++ b/versions/t-/tiny-dnn.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "6de81be7e06cac0652c8ffcc136ffdb889cb41f8",
+ "version-string": "2018-10-25",
+ "port-version": 1
+ },
+ {
"git-tree": "7640751d4d50df9abb088cd6de1b397694fd6478",
"version-string": "2018-10-25",
"port-version": 0
diff --git a/versions/t-/tiny-process-library.json b/versions/t-/tiny-process-library.json
index b407472f3..76a746054 100644
--- a/versions/t-/tiny-process-library.json
+++ b/versions/t-/tiny-process-library.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "bdb3c92735776a800243c7cc38884357f3c743a5",
+ "version-string": "2.0.4",
+ "port-version": 1
+ },
+ {
"git-tree": "79863f6d064fb7200c1202261335bd5a131133c0",
"version-string": "2.0.4",
"port-version": 0
diff --git a/versions/t-/tiny-regex-c.json b/versions/t-/tiny-regex-c.json
index 65f062c72..ddef0c8c0 100644
--- a/versions/t-/tiny-regex-c.json
+++ b/versions/t-/tiny-regex-c.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "daa1326555febe3cba226d415bdad4a700f5c9f9",
+ "version-string": "2019-07-31",
+ "port-version": 1
+ },
+ {
"git-tree": "1086a34a4532ba8a47cd1d5514f9fddd83e52961",
"version-string": "2019-07-31",
"port-version": 0
diff --git a/versions/t-/tinycthread.json b/versions/t-/tinycthread.json
index 2adeeac57..435653d63 100644
--- a/versions/t-/tinycthread.json
+++ b/versions/t-/tinycthread.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "dc723cd8de47e64e29d617806772f2fac2967e28",
+ "version-string": "2019-08-06",
+ "port-version": 1
+ },
+ {
"git-tree": "3957c392b150baa9436be2c25fa65af28dab3ee2",
"version-string": "2019-08-06",
"port-version": 0
diff --git a/versions/t-/tinydir.json b/versions/t-/tinydir.json
index 6ac26f83a..61a10051e 100644
--- a/versions/t-/tinydir.json
+++ b/versions/t-/tinydir.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "ce7697b2c8be56998fc7b97681fcd6e1d66cf49f",
+ "version-string": "1.2.4",
+ "port-version": 1
+ },
+ {
"git-tree": "713b509a8613d83a0b9a472896995f5b17e6c530",
"version-string": "1.2.4",
"port-version": 0
diff --git a/versions/t-/tinyexif.json b/versions/t-/tinyexif.json
index a6777c6eb..707935223 100644
--- a/versions/t-/tinyexif.json
+++ b/versions/t-/tinyexif.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "350cf76237d8fc38f67cba9766e25b2f68d50d64",
+ "version-string": "1.0.2",
+ "port-version": 7
+ },
+ {
"git-tree": "c74a09bb37bbdd9e5228c6b694ec84bbd59d6d62",
"version-string": "1.0.2-6",
"port-version": 0
diff --git a/versions/t-/tinyexr.json b/versions/t-/tinyexr.json
index 4bf4a7ad0..318b63209 100644
--- a/versions/t-/tinyexr.json
+++ b/versions/t-/tinyexr.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "81548356751317d12ff579d7c7749d073e5d0fb6",
+ "version-string": "1.0.0",
+ "port-version": 1
+ },
+ {
"git-tree": "b64261d4bf58c8ec08386f29bf15aaebd52ddc8d",
"version-string": "1.0.0",
"port-version": 0
diff --git a/versions/t-/tinygltf.json b/versions/t-/tinygltf.json
index f0cdfb1d3..dce2d8996 100644
--- a/versions/t-/tinygltf.json
+++ b/versions/t-/tinygltf.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "7c5eabb454edeec3963a53675cc460732fe96a9c",
+ "version-string": "2020-07-28",
+ "port-version": 2
+ },
+ {
"git-tree": "a0991e25859335be940b034a0d5ec369cdb1f14c",
"version-string": "2020-07-28",
"port-version": 1
diff --git a/versions/t-/tinynpy.json b/versions/t-/tinynpy.json
index 0d58d4baa..2f243c632 100644
--- a/versions/t-/tinynpy.json
+++ b/versions/t-/tinynpy.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "747ac11f43b296e46b01d17b69f04d0f782e33eb",
+ "version-string": "1.0.0",
+ "port-version": 4
+ },
+ {
"git-tree": "1aaad761b70ba86a1c925f1180afa3d10ca9e8b4",
"version-string": "1.0.0-3",
"port-version": 0
diff --git a/versions/t-/tinyobjloader.json b/versions/t-/tinyobjloader.json
index ef53cfb96..a459ab3ab 100644
--- a/versions/t-/tinyobjloader.json
+++ b/versions/t-/tinyobjloader.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "42c09a92244dd67f0c8a1a92e688173413517dee",
+ "version-string": "2.0.0-rc2",
+ "port-version": 1
+ },
+ {
"git-tree": "2114ea39f1654e929f31def392889f0aee7fb3de",
"version-string": "2.0.0-rc2",
"port-version": 0
diff --git a/versions/t-/tinyply.json b/versions/t-/tinyply.json
index b5c295d6f..9c7c4b10b 100644
--- a/versions/t-/tinyply.json
+++ b/versions/t-/tinyply.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "24e53b2ef803576808b7e5176301b979e01fcd1c",
+ "version-string": "2020-05-22",
+ "port-version": 1
+ },
+ {
"git-tree": "461112c3d4ddfe5ddb6cb05765454f3c457873f4",
"version-string": "2020-05-22",
"port-version": 0
diff --git a/versions/t-/tinyspline.json b/versions/t-/tinyspline.json
index 952a43b5e..5958c4062 100644
--- a/versions/t-/tinyspline.json
+++ b/versions/t-/tinyspline.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "393f891a892f72ee95dde573dbc6ec87992e564a",
+ "version-string": "0.2.0",
+ "port-version": 4
+ },
+ {
"git-tree": "b75d189b7025f885588d489e83cd5b97eee35a5b",
"version-string": "0.2.0-3",
"port-version": 0
diff --git a/versions/t-/tinythread.json b/versions/t-/tinythread.json
index 6181db617..b446c0868 100644
--- a/versions/t-/tinythread.json
+++ b/versions/t-/tinythread.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "8e6a5537675d6cdabb102cdba98a638e75bc3a03",
+ "version-string": "1.1",
+ "port-version": 4
+ },
+ {
"git-tree": "fcf55a788b7bc0d3067c726c3224bc5a3fc3c304",
"version-string": "1.1-3",
"port-version": 0
diff --git a/versions/t-/tinytoml.json b/versions/t-/tinytoml.json
index 300473cc9..b7eb2bbda 100644
--- a/versions/t-/tinytoml.json
+++ b/versions/t-/tinytoml.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "1bc5fcab066d64cc4693428f2375e9232f17b7d0",
+ "version-string": "20180219",
+ "port-version": 2
+ },
+ {
"git-tree": "787ecedb400a621f68e63a6000aee5d0a4890a55",
"version-string": "20180219-1",
"port-version": 0
diff --git a/versions/t-/tinyutf8.json b/versions/t-/tinyutf8.json
index 3eb83bdf4..d0437bdce 100644
--- a/versions/t-/tinyutf8.json
+++ b/versions/t-/tinyutf8.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "2217decdd5160c93c9b4f92269b32a9d414670ee",
+ "version-string": "4.0.2",
+ "port-version": 1
+ },
+ {
"git-tree": "da8a71ca817c591c31df0c318f199c0056cbcc2c",
"version-string": "4.0.2",
"port-version": 0
diff --git a/versions/t-/tinyxml.json b/versions/t-/tinyxml.json
index 601a618df..d4060a0ee 100644
--- a/versions/t-/tinyxml.json
+++ b/versions/t-/tinyxml.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "27f0b200c75054768b3c6ed538c8bb938083ab67",
+ "version-string": "2.6.2",
+ "port-version": 8
+ },
+ {
"git-tree": "3c0dd9fb8a99d226d863eba951e54d40449c3c84",
"version-string": "2.6.2-7",
"port-version": 0
diff --git a/versions/t-/tinyxml2.json b/versions/t-/tinyxml2.json
index 15bddec91..0d16235d0 100644
--- a/versions/t-/tinyxml2.json
+++ b/versions/t-/tinyxml2.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "6c434072d7cd45db70c50b5553673f174b981eee",
+ "version-string": "8.0.0",
+ "port-version": 2
+ },
+ {
"git-tree": "5bc723c583463d1e50ff6dcf0131328759371eeb",
"version-string": "8.0.0-1",
"port-version": 0
diff --git a/versions/t-/tl-expected.json b/versions/t-/tl-expected.json
index 43f134c65..7cf4cd50c 100644
--- a/versions/t-/tl-expected.json
+++ b/versions/t-/tl-expected.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "952f8ebe25660f2bf6a7091c338e4113691279dd",
+ "version-string": "1.0.0",
+ "port-version": 2
+ },
+ {
"git-tree": "3b51d7b17e6db2b606e1d070d6e8f32c07c1a903",
"version-string": "1.0.0-1",
"port-version": 0
diff --git a/versions/t-/tl-function-ref.json b/versions/t-/tl-function-ref.json
index 5de1d679e..3996e5af2 100644
--- a/versions/t-/tl-function-ref.json
+++ b/versions/t-/tl-function-ref.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "40cb62e51ee41b386626b2f4bbcc8f86b6ad2a03",
+ "version-string": "1.0.0",
+ "port-version": 2
+ },
+ {
"git-tree": "848facd0f73b670581bf3e66e96dfeeb3248428c",
"version-string": "1.0.0-1",
"port-version": 0
diff --git a/versions/t-/tl-optional.json b/versions/t-/tl-optional.json
index 7c0ed2a18..73eba3885 100644
--- a/versions/t-/tl-optional.json
+++ b/versions/t-/tl-optional.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "a88a1a6074c36dd4c7872c7a439c839da2a1e99d",
+ "version-string": "1.0.0",
+ "port-version": 2
+ },
+ {
"git-tree": "543d9b23441ec80d00a537705e03e4fb45af0334",
"version-string": "1.0.0-1",
"port-version": 0
diff --git a/versions/t-/tlx.json b/versions/t-/tlx.json
index 95d1f149e..be300c08c 100644
--- a/versions/t-/tlx.json
+++ b/versions/t-/tlx.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "5b51b49c324771227a0c96e16b595496f1094cd9",
+ "version-string": "0.5.20191212",
+ "port-version": 1
+ },
+ {
"git-tree": "ccbe4ed982fe5878feba3a77569688cf7af552a2",
"version-string": "0.5.20191212",
"port-version": 0
diff --git a/versions/t-/tmx.json b/versions/t-/tmx.json
index d08e77236..5975ee2d5 100644
--- a/versions/t-/tmx.json
+++ b/versions/t-/tmx.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "bfe6a8ece200881d1c7e3a33b0fd14f4279c3d1b",
+ "version-string": "1.1.0",
+ "port-version": 1
+ },
+ {
"git-tree": "400a9748b46a05c705aa53ea5cd7147f0f95e6c7",
"version-string": "1.1.0",
"port-version": 0
diff --git a/versions/t-/tmxlite.json b/versions/t-/tmxlite.json
index 7f85fdeb8..e66ad8161 100644
--- a/versions/t-/tmxlite.json
+++ b/versions/t-/tmxlite.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "177873f8c1357bfcc2a15954de053e949737dd30",
+ "version-string": "2019-03-05",
+ "port-version": 1
+ },
+ {
"git-tree": "ebc24944bd55409160b5fa863f69d59877e2d1a8",
"version-string": "2019-03-05",
"port-version": 0
diff --git a/versions/t-/tmxparser.json b/versions/t-/tmxparser.json
index ad20779c6..4c2c7eea8 100644
--- a/versions/t-/tmxparser.json
+++ b/versions/t-/tmxparser.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "a1d1d7f89ce4ee1ebb8eaea792da1ab3f21367e9",
+ "version-string": "2.1.0",
+ "port-version": 5
+ },
+ {
"git-tree": "481cfb5fee00fa7787dabbec0e77cbf884645816",
"version-string": "2.1.0-4",
"port-version": 0
diff --git a/versions/t-/toml11.json b/versions/t-/toml11.json
index ed419f9bf..1cc599ac7 100644
--- a/versions/t-/toml11.json
+++ b/versions/t-/toml11.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "dabcb8338003184011c1b13e49561f9c112a9735",
+ "version-string": "3.5.0",
+ "port-version": 2
+ },
+ {
"git-tree": "5e58833d3ad983b69e8e0510e1bd3f27df685fbf",
"version-string": "3.5.0",
"port-version": 1
diff --git a/versions/t-/tomlplusplus.json b/versions/t-/tomlplusplus.json
index 62d98caad..dfdbad7af 100644
--- a/versions/t-/tomlplusplus.json
+++ b/versions/t-/tomlplusplus.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "adfbc0f365c9a2f1ea4f90cf4a199be6e3b10586",
+ "version-string": "2.4.0",
+ "port-version": 1
+ },
+ {
"git-tree": "95397531895566a6af15644be1ea9e228795c02d",
"version-string": "2.4.0",
"port-version": 0
diff --git a/versions/t-/torch-th.json b/versions/t-/torch-th.json
index 207291d17..686004047 100644
--- a/versions/t-/torch-th.json
+++ b/versions/t-/torch-th.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "dd64f0dab429a6baf6dbb12119909ebd9caaa43a",
+ "version-string": "2019-04-19",
+ "port-version": 3
+ },
+ {
"git-tree": "803c42d38d110be4bdde22843088fca604e1879e",
"version-string": "2019-04-19-2",
"port-version": 0
diff --git a/versions/t-/tre.json b/versions/t-/tre.json
index e41374c4d..fcf4bef79 100644
--- a/versions/t-/tre.json
+++ b/versions/t-/tre.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "9a43049be2abc5f27fa5b1f77eaeda7a3a63d4a0",
+ "version-string": "0.8.0",
+ "port-version": 3
+ },
+ {
"git-tree": "c6f1211065eff34d7d62934884cfbfe20af3c446",
"version-string": "0.8.0",
"port-version": 2
diff --git a/versions/t-/treehopper.json b/versions/t-/treehopper.json
index 2328d72fe..80c09bf69 100644
--- a/versions/t-/treehopper.json
+++ b/versions/t-/treehopper.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "4efe0662e17f2f340bd234604952d75a4d914aec",
+ "version-string": "1.11.3",
+ "port-version": 5
+ },
+ {
"git-tree": "a9746b7358065513f7f3ab827ab3c1c3723f194b",
"version-string": "1.11.3-4",
"port-version": 0
diff --git a/versions/t-/triangle.json b/versions/t-/triangle.json
index 7d87168ae..71a72f6da 100644
--- a/versions/t-/triangle.json
+++ b/versions/t-/triangle.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "9b80b2815877547418bac0ed7ddba3fec7d0a2df",
+ "version-string": "1.6",
+ "port-version": 1
+ },
+ {
"git-tree": "818fe01f95013b057c24f63f037a102f58bcab4e",
"version-string": "1.6",
"port-version": 0
diff --git a/versions/t-/trompeloeil.json b/versions/t-/trompeloeil.json
index 79b164edc..ebbcf0ce1 100644
--- a/versions/t-/trompeloeil.json
+++ b/versions/t-/trompeloeil.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "5691d561cb4ae588d604882cd58539b406222cac",
+ "version-string": "38",
+ "port-version": 1
+ },
+ {
"git-tree": "494fa9278d6ca20444defeab2b2557998ec2d1d3",
"version-string": "38",
"port-version": 0
diff --git a/versions/t-/tsl-hopscotch-map.json b/versions/t-/tsl-hopscotch-map.json
index db60c32b9..eb07bc22c 100644
--- a/versions/t-/tsl-hopscotch-map.json
+++ b/versions/t-/tsl-hopscotch-map.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "a9aea6d276838589846f7f2741359c2ca29c49e4",
+ "version-string": "2.3.0",
+ "port-version": 1
+ },
+ {
"git-tree": "1f942fa0f46b5b793d8314e690a3b3c95152b2d8",
"version-string": "2.3.0",
"port-version": 0
diff --git a/versions/t-/tsl-ordered-map.json b/versions/t-/tsl-ordered-map.json
index 26e07d0ce..899b0a7e2 100644
--- a/versions/t-/tsl-ordered-map.json
+++ b/versions/t-/tsl-ordered-map.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "5daf2289228a2a7e03ce57d352e07cb8431184a1",
+ "version-string": "1.0.0",
+ "port-version": 1
+ },
+ {
"git-tree": "cdcfcb2f8f7444f23580a8784abfb42164fa9da0",
"version-string": "1.0.0",
"port-version": 0
diff --git a/versions/t-/tsl-sparse-map.json b/versions/t-/tsl-sparse-map.json
index 2fd6de405..5c6130a68 100644
--- a/versions/t-/tsl-sparse-map.json
+++ b/versions/t-/tsl-sparse-map.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "7fb06e7731b0c8231bc6e4807c71c38bee6b18ac",
+ "version-string": "0.6.2",
+ "port-version": 1
+ },
+ {
"git-tree": "00b67cecc2ffedf1fcbbc3fdbb388e4a26a6ee72",
"version-string": "0.6.2",
"port-version": 0
diff --git a/versions/t-/turbobase64.json b/versions/t-/turbobase64.json
index f2d69c966..c7e663d29 100644
--- a/versions/t-/turbobase64.json
+++ b/versions/t-/turbobase64.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "42e8e3b3a43b2170811c936708766470ad137cab",
+ "version-string": "2020-01-12",
+ "port-version": 1
+ },
+ {
"git-tree": "9520744942677bb6c18947e3a62d0750eae4f2dd",
"version-string": "2020-01-12",
"port-version": 0
diff --git a/versions/t-/type-lite.json b/versions/t-/type-lite.json
index 6ad8b7cc7..8e317b7db 100644
--- a/versions/t-/type-lite.json
+++ b/versions/t-/type-lite.json
@@ -1,6 +1,11 @@
{
"versions": [
{
+ "git-tree": "1393063d013016208c0f3e269034c2f664ea408f",
+ "version-string": "0.1.0",
+ "port-version": 1
+ },
+ {
"git-tree": "944df768435d61dedc05e968fce4ed1acaf295d4",
"version-string": "0.1.0",
"port-version": 0