pyogrio 0.7.2__cp310-cp310-manylinux_2_28_aarch64.whl → 0.9.0__cp310-cp310-manylinux_2_28_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pyogrio might be problematic. Click here for more details.

Files changed (48) hide show
  1. pyogrio/__init__.py +4 -0
  2. pyogrio/_compat.py +6 -1
  3. pyogrio/_err.cpython-310-aarch64-linux-gnu.so +0 -0
  4. pyogrio/_err.pyx +7 -3
  5. pyogrio/_geometry.cpython-310-aarch64-linux-gnu.so +0 -0
  6. pyogrio/_io.cpython-310-aarch64-linux-gnu.so +0 -0
  7. pyogrio/_io.pyx +904 -242
  8. pyogrio/_ogr.cpython-310-aarch64-linux-gnu.so +0 -0
  9. pyogrio/_ogr.pxd +69 -13
  10. pyogrio/_ogr.pyx +8 -24
  11. pyogrio/_version.py +3 -3
  12. pyogrio/_vsi.cpython-310-aarch64-linux-gnu.so +0 -0
  13. pyogrio/_vsi.pxd +4 -0
  14. pyogrio/_vsi.pyx +140 -0
  15. pyogrio/core.py +43 -44
  16. pyogrio/gdal_data/GDAL-targets-release.cmake +3 -3
  17. pyogrio/gdal_data/GDAL-targets.cmake +10 -6
  18. pyogrio/gdal_data/GDALConfigVersion.cmake +3 -3
  19. pyogrio/gdal_data/gdalinfo_output.schema.json +2 -0
  20. pyogrio/gdal_data/gdalvrt.xsd +163 -0
  21. pyogrio/gdal_data/ogrinfo_output.schema.json +12 -1
  22. pyogrio/gdal_data/vcpkg.spdx.json +26 -26
  23. pyogrio/gdal_data/vcpkg_abi_info.txt +27 -26
  24. pyogrio/geopandas.py +140 -34
  25. pyogrio/proj_data/ITRF2008 +2 -2
  26. pyogrio/proj_data/proj-config-version.cmake +2 -2
  27. pyogrio/proj_data/proj-config.cmake +2 -1
  28. pyogrio/proj_data/proj-targets.cmake +13 -13
  29. pyogrio/proj_data/proj.db +0 -0
  30. pyogrio/proj_data/proj4-targets.cmake +13 -13
  31. pyogrio/proj_data/vcpkg.spdx.json +20 -42
  32. pyogrio/proj_data/vcpkg_abi_info.txt +14 -15
  33. pyogrio/raw.py +438 -116
  34. pyogrio/tests/conftest.py +75 -6
  35. pyogrio/tests/fixtures/poly_not_enough_points.shp.zip +0 -0
  36. pyogrio/tests/test_arrow.py +841 -7
  37. pyogrio/tests/test_core.py +99 -7
  38. pyogrio/tests/test_geopandas_io.py +827 -121
  39. pyogrio/tests/test_path.py +23 -3
  40. pyogrio/tests/test_raw_io.py +276 -50
  41. pyogrio/util.py +39 -19
  42. {pyogrio-0.7.2.dist-info → pyogrio-0.9.0.dist-info}/METADATA +2 -2
  43. {pyogrio-0.7.2.dist-info → pyogrio-0.9.0.dist-info}/RECORD +210 -207
  44. {pyogrio-0.7.2.dist-info → pyogrio-0.9.0.dist-info}/WHEEL +1 -1
  45. pyogrio.libs/{libgdal-cb554135.so.33.3.7.2 → libgdal-6ff0914e.so.34.3.8.5} +0 -0
  46. pyogrio/tests/win32.py +0 -86
  47. {pyogrio-0.7.2.dist-info → pyogrio-0.9.0.dist-info}/LICENSE +0 -0
  48. {pyogrio-0.7.2.dist-info → pyogrio-0.9.0.dist-info}/top_level.txt +0 -0
@@ -138,6 +138,7 @@
138
138
  <xs:complexType name="PanchroBandType">
139
139
  <xs:sequence>
140
140
  <xs:element name="SourceFilename" type="SourceFilenameType"/>
141
+ <xs:element name="OpenOptions" type="OpenOptionsType"/>
141
142
  <xs:element name="SourceBand" type="xs:string"/> <!-- should be refined into xs:nonNegativeInteger or mask,xs:nonNegativeInteger -->
142
143
  </xs:sequence>
143
144
  </xs:complexType>
@@ -145,6 +146,7 @@
145
146
  <xs:complexType name="SpectralBandType">
146
147
  <xs:sequence>
147
148
  <xs:element name="SourceFilename" type="SourceFilenameType"/>
149
+ <xs:element name="OpenOptions" type="OpenOptionsType"/>
148
150
  <xs:element name="SourceBand" type="xs:string"/> <!-- should be refined into xs:nonNegativeInteger or mask,xs:nonNegativeInteger -->
149
151
  </xs:sequence>
150
152
  <xs:attribute name="dstBand" type="xs:nonNegativeInteger"/>
@@ -188,6 +190,7 @@
188
190
  <xs:element name="ComplexSource" type="ComplexSourceType"/>
189
191
  <xs:element name="AveragedSource" type="SimpleSourceType"/>
190
192
  <xs:element name="KernelFilteredSource" type="KernelFilteredSourceType"/>
193
+ <xs:element name="ArraySource" type="ArraySourceType"/>
191
194
 
192
195
  <!-- for a VRTDerivedRasterBand -->
193
196
  <xs:element name="PixelFunctionType" type="xs:string"/>
@@ -435,6 +438,31 @@
435
438
  </xs:restriction>
436
439
  </xs:simpleType>
437
440
 
441
+ <xs:complexType name="ArraySourceType">
442
+ <xs:sequence>
443
+ <xs:element ref="AbstractArray"/>
444
+ <xs:element name="SrcRect" type="RectType" minOccurs="0"/>
445
+ <xs:element name="DstRect" type="RectType" minOccurs="0"/>
446
+ </xs:sequence>
447
+ </xs:complexType>
448
+
449
+ <xs:element name="AbstractArray" type="AbstractArrayType" abstract="true"/>
450
+
451
+ <xs:complexType name="AbstractArrayType"/>
452
+
453
+ <xs:element name="SingleSourceArray" substitutionGroup="AbstractArray" type="SingleSourceArrayType"/>
454
+
455
+ <xs:complexType name="SingleSourceArrayType">
456
+ <xs:complexContent>
457
+ <xs:extension base="AbstractArrayType">
458
+ <xs:sequence>
459
+ <xs:element name="SourceFilename" type="SourceFilenameType"/>
460
+ <xs:element name="SourceArray" type="xs:string"/>
461
+ </xs:sequence>
462
+ </xs:extension>
463
+ </xs:complexContent>
464
+ </xs:complexType>
465
+
438
466
  <xs:complexType name="SourceFilenameType">
439
467
  <xs:simpleContent>
440
468
  <xs:extension base="xs:string">
@@ -606,4 +634,139 @@
606
634
  <xs:attribute name="ref" type="xs:string" use="required"/>
607
635
  </xs:complexType>
608
636
 
637
+ <xs:element name="DerivedArray" substitutionGroup="AbstractArray" type="DerivedArrayType"/>
638
+
639
+ <xs:complexType name="DerivedArrayType">
640
+ <xs:complexContent>
641
+ <xs:extension base="AbstractArrayType">
642
+ <xs:sequence>
643
+ <xs:element ref="AbstractArray"/>
644
+ <xs:element name="Step" type="StepType" minOccurs="0" maxOccurs="unbounded"/>
645
+ </xs:sequence>
646
+ </xs:extension>
647
+ </xs:complexContent>
648
+ </xs:complexType>
649
+
650
+ <xs:complexType name="StepType">
651
+ <xs:sequence minOccurs="0" maxOccurs="unbounded">
652
+ <xs:element ref="AbstractStep"/>
653
+ </xs:sequence>
654
+ </xs:complexType>
655
+
656
+ <xs:element name="AbstractStep" type="AbstractStepType" abstract="true"/>
657
+
658
+ <xs:complexType name="AbstractStepType"/>
659
+
660
+ <xs:element name="View" substitutionGroup="AbstractStep" type="ViewType"/>
661
+
662
+ <xs:complexType name="ViewType">
663
+ <xs:complexContent>
664
+ <xs:extension base="AbstractStepType">
665
+ <xs:attribute name="expr" type="xs:string" use="required"/>
666
+ </xs:extension>
667
+ </xs:complexContent>
668
+ </xs:complexType>
669
+
670
+ <xs:element name="Transpose" substitutionGroup="AbstractStep" type="TransposeType"/>
671
+
672
+ <xs:complexType name="TransposeType">
673
+ <xs:complexContent>
674
+ <xs:extension base="AbstractStepType">
675
+ <xs:attribute name="newOrder" type="CommaSeparatedListOfIntegerType" use="required"/>
676
+ </xs:extension>
677
+ </xs:complexContent>
678
+ </xs:complexType>
679
+
680
+ <xs:simpleType name="CommaSeparatedListOfIntegerType">
681
+ <xs:restriction base="xs:string">
682
+ <xs:pattern value="(\d)+(,(\d)+).*"/>
683
+ </xs:restriction>
684
+ </xs:simpleType>
685
+
686
+ <xs:element name="Resample" substitutionGroup="AbstractStep" type="ResampleType"/>
687
+
688
+ <xs:complexType name="ResampleType">
689
+ <xs:complexContent>
690
+ <xs:extension base="AbstractStepType">
691
+ <xs:sequence>
692
+ <xs:element name="Dimension" type="DimensionType" minOccurs="0" maxOccurs="unbounded"/>
693
+ <xs:element name="ResampleAlg" type="ResampleAlgType" minOccurs="0"/>
694
+ <xs:element name="SRS" type="SRSType" minOccurs="0"/>
695
+ <xs:element name="Option" type="OptionType" minOccurs="0" maxOccurs="unbounded"/>
696
+ </xs:sequence>
697
+ </xs:extension>
698
+ </xs:complexContent>
699
+ </xs:complexType>
700
+
701
+ <xs:simpleType name="ResampleAlgType">
702
+ <xs:restriction base="xs:string">
703
+ <xs:enumeration value="NearestNeighbour"/>
704
+ <xs:enumeration value="Bilinear"/>
705
+ <xs:enumeration value="Cubic"/>
706
+ <xs:enumeration value="CubicSpline"/>
707
+ <xs:enumeration value="Lanczos"/>
708
+ <xs:enumeration value="Average"/>
709
+ <xs:enumeration value="RMS"/>
710
+ <xs:enumeration value="Mode"/>
711
+ <xs:enumeration value="Gauss"/>
712
+ </xs:restriction>
713
+ </xs:simpleType>
714
+
715
+ <xs:complexType name="OptionType">
716
+ <xs:simpleContent>
717
+ <xs:extension base="xs:string">
718
+ <xs:attribute name="name" type="xs:string"/>
719
+ </xs:extension>
720
+ </xs:simpleContent>
721
+ </xs:complexType>
722
+
723
+ <xs:element name="Grid" substitutionGroup="AbstractStep" type="GridType"/>
724
+
725
+ <xs:complexType name="GridType">
726
+ <xs:complexContent>
727
+ <xs:extension base="AbstractStepType">
728
+ <xs:sequence>
729
+ <xs:element name="GridOptions" type="xs:string" minOccurs="1"/>
730
+ <xs:element name="XArray" minOccurs="0">
731
+ <xs:complexType>
732
+ <xs:sequence>
733
+ <xs:element ref="AbstractArray"/>
734
+ </xs:sequence>
735
+ </xs:complexType>
736
+ </xs:element>
737
+ <xs:element name="YArray" minOccurs="0">
738
+ <xs:complexType>
739
+ <xs:sequence>
740
+ <xs:element ref="AbstractArray"/>
741
+ </xs:sequence>
742
+ </xs:complexType>
743
+ </xs:element>
744
+ <xs:element name="Option" type="OptionType" minOccurs="0" maxOccurs="unbounded"/>
745
+ </xs:sequence>
746
+ </xs:extension>
747
+ </xs:complexContent>
748
+ </xs:complexType>
749
+
750
+ <xs:element name="GetMask" substitutionGroup="AbstractStep" type="GetMaskType"/>
751
+
752
+ <xs:complexType name="GetMaskType">
753
+ <xs:complexContent>
754
+ <xs:extension base="AbstractStepType">
755
+ <xs:sequence>
756
+ <xs:element name="Option" type="OptionType" minOccurs="0" maxOccurs="unbounded"/>
757
+ </xs:sequence>
758
+ </xs:extension>
759
+ </xs:complexContent>
760
+ </xs:complexType>
761
+
762
+ <xs:element name="GetUnscaled" substitutionGroup="AbstractStep" type="GetUnscaledType"/>
763
+
764
+ <xs:complexType name="GetUnscaledType">
765
+ <xs:complexContent>
766
+ <xs:extension base="AbstractStepType">
767
+ <xs:sequence/>
768
+ </xs:extension>
769
+ </xs:complexContent>
770
+ </xs:complexType>
771
+
609
772
  </xs:schema>
@@ -149,6 +149,10 @@
149
149
  },
150
150
  "comment": {
151
151
  "type": "string"
152
+ },
153
+ "timezone": {
154
+ "type": "string",
155
+ "pattern": "^(localtime|(mixed timezones)|UTC|((\\+|-)[0-9][0-9]:[0-9][0-9]))$"
152
156
  }
153
157
  },
154
158
  "required": [
@@ -209,7 +213,14 @@
209
213
  }
210
214
  },
211
215
  "coordinateSystem": {
212
- "$ref": "#/definitions/coordinateSystem"
216
+ "oneOf": [
217
+ {
218
+ "type": "null"
219
+ },
220
+ {
221
+ "$ref": "#/definitions/coordinateSystem"
222
+ }
223
+ ]
213
224
  },
214
225
  "supportedSRSList": {
215
226
  "type": "array",
@@ -3,13 +3,13 @@
3
3
  "spdxVersion": "SPDX-2.2",
4
4
  "dataLicense": "CC0-1.0",
5
5
  "SPDXID": "SPDXRef-DOCUMENT",
6
- "documentNamespace": "https://spdx.org/spdxdocs/gdal-arm64-linux-dynamic-release-3.7.2-de8cbaa1-140b-49d7-92ef-fe4be5bd212d",
7
- "name": "gdal:arm64-linux-dynamic-release@3.7.2 4c434d20724ea9f9fb4c33a224498140b0ceed352ff95e0c358ae5b07e67edd7",
6
+ "documentNamespace": "https://spdx.org/spdxdocs/gdal-arm64-linux-dynamic-release-3.8.5-c2fccc74-cbd3-4beb-ab1e-71bcca83dad4",
7
+ "name": "gdal:arm64-linux-dynamic-release@3.8.5 58e88ba41cbc169497613684e29b8f1436999df48e1390ff96b0f5feacefd0cd",
8
8
  "creationInfo": {
9
9
  "creators": [
10
10
  "Tool: vcpkg-unknownhash"
11
11
  ],
12
- "created": "2023-10-30T18:02:19Z"
12
+ "created": "2024-06-17T19:22:39Z"
13
13
  },
14
14
  "relationships": [
15
15
  {
@@ -117,8 +117,8 @@
117
117
  {
118
118
  "name": "gdal",
119
119
  "SPDXID": "SPDXRef-port",
120
- "versionInfo": "3.7.2",
121
- "downloadLocation": "git+https://github.com/Microsoft/vcpkg@d01864aaa21a85e1e8f7bb6748d607e953c52e77",
120
+ "versionInfo": "3.8.5",
121
+ "downloadLocation": "git+https://github.com/Microsoft/vcpkg@ea4d3f8cb9ab32d885ac60b974421a604fdbcc87",
122
122
  "homepage": "https://gdal.org",
123
123
  "licenseConcluded": "NOASSERTION",
124
124
  "licenseDeclared": "NOASSERTION",
@@ -129,7 +129,7 @@
129
129
  {
130
130
  "name": "gdal:arm64-linux-dynamic-release",
131
131
  "SPDXID": "SPDXRef-binary",
132
- "versionInfo": "4c434d20724ea9f9fb4c33a224498140b0ceed352ff95e0c358ae5b07e67edd7",
132
+ "versionInfo": "58e88ba41cbc169497613684e29b8f1436999df48e1390ff96b0f5feacefd0cd",
133
133
  "downloadLocation": "NONE",
134
134
  "licenseConcluded": "NOASSERTION",
135
135
  "licenseDeclared": "NOASSERTION",
@@ -139,122 +139,122 @@
139
139
  {
140
140
  "SPDXID": "SPDXRef-resource-1",
141
141
  "name": "OSGeo/gdal",
142
- "downloadLocation": "git+https://github.com/OSGeo/gdal@v3.7.2",
142
+ "downloadLocation": "git+https://github.com/OSGeo/gdal@v3.8.5",
143
143
  "licenseConcluded": "NOASSERTION",
144
144
  "licenseDeclared": "NOASSERTION",
145
145
  "copyrightText": "NOASSERTION",
146
146
  "checksums": [
147
147
  {
148
148
  "algorithm": "SHA512",
149
- "checksumValue": "95b0dee07a616c8fb26ded2c538a6933ba070c0567e88af9356daea9b1df6c910edb4fcf55766839c1873829d20948b1714b3e2285e5ac57de8fcf0970ff53ff"
149
+ "checksumValue": "5b155229225e904b3619628ec27efdd273d9f083c1ee4f6d94041897d5bc9c3133590b70885ad61fc8864da2f334a75cf32bafe7f776c40bbbc3673fe842c986"
150
150
  }
151
151
  ]
152
152
  }
153
153
  ],
154
154
  "files": [
155
155
  {
156
- "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/d01864aaa21a85e1e8f7bb6748d607e953c52e77/find-link-libraries.patch",
156
+ "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/fix-gdal-target-interfaces.patch",
157
157
  "SPDXID": "SPDXRef-file-0",
158
158
  "checksums": [
159
159
  {
160
160
  "algorithm": "SHA256",
161
- "checksumValue": "9e390300ab79cf6fef1bb009416346a1f98d4946cb14c71ee4ea46217e3cb9d2"
161
+ "checksumValue": "9dbe9d5e0dbc3a21370bb3560aa32811d10cc0b19e4b6833cd7258699d206215"
162
162
  }
163
163
  ],
164
164
  "licenseConcluded": "NOASSERTION",
165
165
  "copyrightText": "NOASSERTION"
166
166
  },
167
167
  {
168
- "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/d01864aaa21a85e1e8f7bb6748d607e953c52e77/libkml.patch",
168
+ "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/vcpkg-cmake-wrapper.cmake",
169
169
  "SPDXID": "SPDXRef-file-1",
170
170
  "checksums": [
171
171
  {
172
172
  "algorithm": "SHA256",
173
- "checksumValue": "fe888df8a7c9e468cdd87640c025f48f165d5264af1fa20604bd60859e6f000f"
173
+ "checksumValue": "c507eaa077072e9877607fd5f70381eebf19900661e2e1fd099d84c4df1b8c24"
174
174
  }
175
175
  ],
176
176
  "licenseConcluded": "NOASSERTION",
177
177
  "copyrightText": "NOASSERTION"
178
178
  },
179
179
  {
180
- "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/d01864aaa21a85e1e8f7bb6748d607e953c52e77/fix-jpeg.patch",
180
+ "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/portfile.cmake",
181
181
  "SPDXID": "SPDXRef-file-2",
182
182
  "checksums": [
183
183
  {
184
184
  "algorithm": "SHA256",
185
- "checksumValue": "28a04f01c92e6b99a5e918f38333c8245089a6ba2f67191e9fbc54288cfa941e"
185
+ "checksumValue": "7e5f1f6c6f1f420b994e149d8a31e1e31e23492a881ce29b3c30307ab28f2f92"
186
186
  }
187
187
  ],
188
188
  "licenseConcluded": "NOASSERTION",
189
189
  "copyrightText": "NOASSERTION"
190
190
  },
191
191
  {
192
- "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/d01864aaa21a85e1e8f7bb6748d607e953c52e77/cmake-project-include.cmake",
192
+ "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/usage",
193
193
  "SPDXID": "SPDXRef-file-3",
194
194
  "checksums": [
195
195
  {
196
196
  "algorithm": "SHA256",
197
- "checksumValue": "71c0138c71e6286cf8391e562775d853d3a29f5d58597ecc1b47a8bfb8b6412c"
197
+ "checksumValue": "c85584261e2011a94b86f04c3a28dd2e165c9e6b47677a9bee26a3d387bc05f2"
198
198
  }
199
199
  ],
200
200
  "licenseConcluded": "NOASSERTION",
201
201
  "copyrightText": "NOASSERTION"
202
202
  },
203
203
  {
204
- "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/d01864aaa21a85e1e8f7bb6748d607e953c52e77/usage",
204
+ "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/target-is-valid.patch",
205
205
  "SPDXID": "SPDXRef-file-4",
206
206
  "checksums": [
207
207
  {
208
208
  "algorithm": "SHA256",
209
- "checksumValue": "c85584261e2011a94b86f04c3a28dd2e165c9e6b47677a9bee26a3d387bc05f2"
209
+ "checksumValue": "6a369356c57860f97bd756d3604e7219774e2bfe5c74e5e0178496fad253900f"
210
210
  }
211
211
  ],
212
212
  "licenseConcluded": "NOASSERTION",
213
213
  "copyrightText": "NOASSERTION"
214
214
  },
215
215
  {
216
- "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/d01864aaa21a85e1e8f7bb6748d607e953c52e77/vcpkg.json",
216
+ "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/libkml.patch",
217
217
  "SPDXID": "SPDXRef-file-5",
218
218
  "checksums": [
219
219
  {
220
220
  "algorithm": "SHA256",
221
- "checksumValue": "2a27cd0721793c5e2a4e66a834f3cf25f76ffafc178e1d6d703fba9e78139bd4"
221
+ "checksumValue": "fe888df8a7c9e468cdd87640c025f48f165d5264af1fa20604bd60859e6f000f"
222
222
  }
223
223
  ],
224
224
  "licenseConcluded": "NOASSERTION",
225
225
  "copyrightText": "NOASSERTION"
226
226
  },
227
227
  {
228
- "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/d01864aaa21a85e1e8f7bb6748d607e953c52e77/vcpkg-cmake-wrapper.cmake",
228
+ "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/find-link-libraries.patch",
229
229
  "SPDXID": "SPDXRef-file-6",
230
230
  "checksums": [
231
231
  {
232
232
  "algorithm": "SHA256",
233
- "checksumValue": "c507eaa077072e9877607fd5f70381eebf19900661e2e1fd099d84c4df1b8c24"
233
+ "checksumValue": "9e390300ab79cf6fef1bb009416346a1f98d4946cb14c71ee4ea46217e3cb9d2"
234
234
  }
235
235
  ],
236
236
  "licenseConcluded": "NOASSERTION",
237
237
  "copyrightText": "NOASSERTION"
238
238
  },
239
239
  {
240
- "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/d01864aaa21a85e1e8f7bb6748d607e953c52e77/portfile.cmake",
240
+ "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/cmake-project-include.cmake",
241
241
  "SPDXID": "SPDXRef-file-7",
242
242
  "checksums": [
243
243
  {
244
244
  "algorithm": "SHA256",
245
- "checksumValue": "47aff7e31c70f25ca782b23c4e93004c989cd346d0d18ea9737545283779573f"
245
+ "checksumValue": "60c0f79155c78ec0ec4ccdc77e00f4613ae4630c6697f51f884bf8f979a48593"
246
246
  }
247
247
  ],
248
248
  "licenseConcluded": "NOASSERTION",
249
249
  "copyrightText": "NOASSERTION"
250
250
  },
251
251
  {
252
- "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/d01864aaa21a85e1e8f7bb6748d607e953c52e77/fix-gdal-target-interfaces.patch",
252
+ "fileName": ".//opt/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/vcpkg.json",
253
253
  "SPDXID": "SPDXRef-file-8",
254
254
  "checksums": [
255
255
  {
256
256
  "algorithm": "SHA256",
257
- "checksumValue": "9dbe9d5e0dbc3a21370bb3560aa32811d10cc0b19e4b6833cd7258699d206215"
257
+ "checksumValue": "15039815ee85e9996bda2f7cb66eb87de8b544bcafba85f2518ba1b3f28c9fd5"
258
258
  }
259
259
  ],
260
260
  "licenseConcluded": "NOASSERTION",
@@ -1,40 +1,41 @@
1
1
  cmake 0
2
- cmake-project-include.cmake 71c0138c71e6286cf8391e562775d853d3a29f5d58597ecc1b47a8bfb8b6412c
3
- curl f5b0e13b897f07351cdbc589752fe7e8fcd66f8c685d0d352ee2b73e8bb18340
4
- expat ec365193038a1103e8ee534516d03a0733ae9a0d890f42bbc46b8640379e4e62
5
- features core;curl;expat;geos;jpeg;lerc;png;qhull;recommended-features;sqlite3
2
+ cmake-project-include.cmake 60c0f79155c78ec0ec4ccdc77e00f4613ae4630c6697f51f884bf8f979a48593
3
+ curl a4bb1e391f21be499648a3a0a32ee4f36324626dbf020b1dab1415568e114f9c
4
+ expat 43db435f0d4b57035659d279c4efab6723ba181e4b3e889c02ae475f2c152664
5
+ features core;curl;expat;geos;iconv;jpeg;lerc;png;qhull;recommended-features;sqlite3
6
6
  find-link-libraries.patch 9e390300ab79cf6fef1bb009416346a1f98d4946cb14c71ee4ea46217e3cb9d2
7
7
  fix-gdal-target-interfaces.patch 9dbe9d5e0dbc3a21370bb3560aa32811d10cc0b19e4b6833cd7258699d206215
8
- fix-jpeg.patch 28a04f01c92e6b99a5e918f38333c8245089a6ba2f67191e9fbc54288cfa941e
9
- geos 86b685b9163151b5bf0fc5248d833d5606404e0ebea6d6cb85398d7c3aedb933
10
- json-c 0fa076ddd2d8375a65dc180cc8d8993033b51dd38d9f3c479e780bba9d64f77e
11
- lerc 2c97a960c88ccf4cdb0db7eca9c51411fc7a2ea562655cef3effdf32475c259d
12
- libgeotiff 03aaf0f1f44e01dceaa27e9aa1c7e8121761283982a98db9de8d658b06f33f8f
13
- libjpeg-turbo 9a1e9dfdd75567a0eaae02b95d32cff15a76c41867ee3ff84cc2bb1c6ee877a7
8
+ geos fae5cee6c5728a9153bd4061827b94f15e17d8de0715a5807744de5243dcf52a
9
+ json-c 37bd2eeb3a2a452c55ea356f9e7ca19735135aac3d58ad682a38430f8d15790a
10
+ lerc f5be7e25c05235bbd0b77a337bbb37c155ffce559848daa40950703cd4329e74
11
+ libgeotiff 75a6c040a0f84b8b359901206464a1e4a6ca1368737ff9d8a9ce01f161d171b5
12
+ libiconv d34e5e762076c71d2b23a34cc749c93abc5b35bb3f5e48a633834a4e4864f917
13
+ libjpeg-turbo 6ae890811d555122ecae32e9711e24e856c8293a53e7705d1d7f6d00300dc7ac
14
14
  libkml.patch fe888df8a7c9e468cdd87640c025f48f165d5264af1fa20604bd60859e6f000f
15
- libpng 4dffd4c4b3931df7e32bbd505f768e37f98caa38835fd77aff54934b2ef051fa
16
- pkgconf 259dedc5a465a1b09c8b6a2fdbfc815aae1a4447de416ef020561e3bfbf1ec9d
17
- portfile.cmake 47aff7e31c70f25ca782b23c4e93004c989cd346d0d18ea9737545283779573f
18
- ports.cmake 5a8e00cedff0c898b1f90f7d129329d0288801bc9056562b039698caf31ff3f3
15
+ libpng d464ff2a02f4c256b2ee13af3bed74d970a9c98dcd81811c56b209d0e6a4f3de
16
+ pkgconf d46a4eaebac09411a258682bd5a8f4d82a093ec5f7141af0e74965ff10fdd4db
17
+ portfile.cmake 7e5f1f6c6f1f420b994e149d8a31e1e31e23492a881ce29b3c30307ab28f2f92
18
+ ports.cmake 0500e9e2422fe0084c99bdd0c9de4c7069b76da14c8b58228a7e95ebac43058a
19
19
  post_build_checks 2
20
- proj 34fd6bfd1eead95fac3e2c8ed668ce562bdded850e457937c4a6ed1676fdf05c
21
- qhull 8a8210d6e3e448559992ad607450b6ebf26ef1206cdec680bd510ff5f35a60d9
22
- sqlite3 6ad81192101b51fb4e67be80306ba4c6005b15cff8ced5fc5e617b0032b1c983
23
- tiff 8dff8afc56bf54d323755d0d6c866f515cdce59e0b7e934a62c20e34f8e78a8b
20
+ proj 2390d4ac09577aae072602ffa5778fb45348916244670786c8fb79324999d80b
21
+ qhull 72af989950f0e4c141cc32f2a2e0a48bc5677b009eb59f434758c269991a47a1
22
+ sqlite3 666d04f1a5112d84de49a03ad7dcaf3ab9f8e63999848b489b78c68e5e9203c6
23
+ target-is-valid.patch 6a369356c57860f97bd756d3604e7219774e2bfe5c74e5e0178496fad253900f
24
+ tiff 8b3b88e683e77b633f425d6bb45e77476c87b3408b705d50af225b521d37d0bd
24
25
  triplet arm64-linux-dynamic-release
25
- triplet_abi a2978ef94e01dd995e28fd3fc9d73a99d96cda95c172e0f1d199230f0e1bcdce-b3b2cd43408edc7b2c5525859d9730edbfba2e4068956c6607a21d0abdaef072-2ad07b68ec1acd5ddac23c4df04ffe712cc82a8d
26
+ triplet_abi a2978ef94e01dd995e28fd3fc9d73a99d96cda95c172e0f1d199230f0e1bcdce-73c4f253fe835be7b4f68430dabc1102ae8e82e9ab34e9b6dbec047dc9b6447d-2ad07b68ec1acd5ddac23c4df04ffe712cc82a8d
26
27
  usage c85584261e2011a94b86f04c3a28dd2e165c9e6b47677a9bee26a3d387bc05f2
27
- vcpkg-cmake d490ad2dc67d7ecee6578ea77ba1b58fa5a9faedd6971bbeed0fa9937bd389f7
28
- vcpkg-cmake-config 720a1fcf3ee724982af928368eae480dbad01cbde0e6af25fb26d350741a0ef0
28
+ vcpkg-cmake 61a6b5861674f41494b4ebae1f315674d62a4f6f2002093c13c2750ef3b2221e
29
+ vcpkg-cmake-config 67c57a7501cf304cee2b318a14b5763968eb7ae54bc621edbe4ea197119243b6
29
30
  vcpkg-cmake-wrapper.cmake c507eaa077072e9877607fd5f70381eebf19900661e2e1fd099d84c4df1b8c24
30
- vcpkg-pkgconfig-get-modules 834444516f26f79e615611c22b3d0bd4bebdfe8431361670377308a975cd92e7
31
- vcpkg.json 2a27cd0721793c5e2a4e66a834f3cf25f76ffafc178e1d6d703fba9e78139bd4
31
+ vcpkg-pkgconfig-get-modules b35d518e713498c908c8577625e66d171ac4d58a2de609c6236b4b1f33a5afa9
32
+ vcpkg.json 15039815ee85e9996bda2f7cb66eb87de8b544bcafba85f2518ba1b3f28c9fd5
32
33
  vcpkg_check_features 943b217e0968d64cf2cb9c272608e6a0b497377e792034f819809a79e1502c2b
33
34
  vcpkg_copy_pdbs d57e4f196c82dc562a9968c6155073094513c31e2de475694143d3aa47954b1c
34
35
  vcpkg_copy_tools 3d45ff761bddbabe8923b52330168dc3abd295fa469d3f2e47cb14dce85332d5
35
- vcpkg_fixup_pkgconfig 588d833ff057d3ca99c14616c7ecfb5948b5e2a9e4fc02517dceb8b803473457
36
- vcpkg_from_git 8f27bff0d01c6d15a3e691758df52bfbb0b1b929da45c4ebba02ef76b54b1881
36
+ vcpkg_fixup_pkgconfig 904e67c46ecbb67379911bc1d7222855c0cbfcf1129bf47783858bcf0cc44970
37
+ vcpkg_from_git 96ed81968f76354c00096dd8cd4e63c6a235fa969334a11ab18d11c0c512ff58
37
38
  vcpkg_from_github b743742296a114ea1b18ae99672e02f142c4eb2bef7f57d36c038bedbfb0502f
38
39
  vcpkg_install_copyright ba6c169ab4e59fa05682e530cdeb883767de22c8391f023d4e6844a7ec5dd3d2
39
40
  vcpkg_replace_string d43c8699ce27e25d47367c970d1c546f6bc36b6df8fb0be0c3986eb5830bd4f1
40
- zlib bf845dd7468538b3ef32a1d7356dd7707979ada4c0af8210ddca4837940f9f54
41
+ zlib c95d470839a220869e15bb5c2cb5a139414ef7128ce042fb80c3a18fcfc6fd5f