pyogrio 0.7.1__cp39-cp39-macosx_11_0_arm64.whl → 0.8.0__cp39-cp39-macosx_11_0_arm64.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.
- pyogrio/.dylibs/{libgdal.33.3.7.2.dylib → libgdal.34.3.8.5.dylib} +0 -0
- pyogrio/__init__.py +4 -0
- pyogrio/_compat.py +7 -1
- pyogrio/_err.cpython-39-darwin.so +0 -0
- pyogrio/_err.pyx +7 -3
- pyogrio/_geometry.cpython-39-darwin.so +0 -0
- pyogrio/_io.cpython-39-darwin.so +0 -0
- pyogrio/_io.pyx +900 -242
- pyogrio/_ogr.cpython-39-darwin.so +0 -0
- pyogrio/_ogr.pxd +65 -12
- pyogrio/_ogr.pyx +8 -24
- pyogrio/_version.py +3 -3
- pyogrio/_vsi.cpython-39-darwin.so +0 -0
- pyogrio/_vsi.pxd +4 -0
- pyogrio/_vsi.pyx +140 -0
- pyogrio/core.py +43 -44
- pyogrio/gdal_data/GDAL-targets-release.cmake +3 -3
- pyogrio/gdal_data/GDAL-targets.cmake +10 -6
- pyogrio/gdal_data/GDALConfigVersion.cmake +3 -3
- pyogrio/gdal_data/gdalinfo_output.schema.json +2 -0
- pyogrio/gdal_data/gdalvrt.xsd +163 -0
- pyogrio/gdal_data/ogrinfo_output.schema.json +12 -1
- pyogrio/gdal_data/vcpkg.spdx.json +22 -22
- pyogrio/gdal_data/vcpkg_abi_info.txt +27 -26
- pyogrio/geopandas.py +131 -30
- pyogrio/proj_data/ITRF2008 +2 -2
- pyogrio/proj_data/proj-config-version.cmake +2 -2
- pyogrio/proj_data/proj-config.cmake +2 -1
- pyogrio/proj_data/proj-targets.cmake +13 -13
- pyogrio/proj_data/proj.db +0 -0
- pyogrio/proj_data/proj4-targets.cmake +13 -13
- pyogrio/proj_data/vcpkg.spdx.json +19 -41
- pyogrio/proj_data/vcpkg_abi_info.txt +14 -15
- pyogrio/raw.py +438 -116
- pyogrio/tests/conftest.py +75 -6
- pyogrio/tests/test_arrow.py +841 -7
- pyogrio/tests/test_core.py +99 -7
- pyogrio/tests/test_geopandas_io.py +744 -119
- pyogrio/tests/test_path.py +22 -3
- pyogrio/tests/test_raw_io.py +276 -50
- pyogrio/util.py +41 -19
- {pyogrio-0.7.1.dist-info → pyogrio-0.8.0.dist-info}/METADATA +3 -2
- {pyogrio-0.7.1.dist-info → pyogrio-0.8.0.dist-info}/RECORD +46 -44
- {pyogrio-0.7.1.dist-info → pyogrio-0.8.0.dist-info}/WHEEL +1 -1
- pyogrio/tests/win32.py +0 -86
- {pyogrio-0.7.1.dist-info → pyogrio-0.8.0.dist-info}/LICENSE +0 -0
- {pyogrio-0.7.1.dist-info → pyogrio-0.8.0.dist-info}/top_level.txt +0 -0
pyogrio/gdal_data/gdalvrt.xsd
CHANGED
|
@@ -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
|
-
"
|
|
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-osx-dynamic-release-3.
|
|
7
|
-
"name": "gdal:arm64-osx-dynamic-release@3.
|
|
6
|
+
"documentNamespace": "https://spdx.org/spdxdocs/gdal-arm64-osx-dynamic-release-3.8.5-c884d0e7-c47f-47ec-9dc6-455efc2ba36c",
|
|
7
|
+
"name": "gdal:arm64-osx-dynamic-release@3.8.5 913b97e757119bc981c7b1e402d2cd3c4d5aa70801b31956c8f461587aa49f23",
|
|
8
8
|
"creationInfo": {
|
|
9
9
|
"creators": [
|
|
10
|
-
"Tool: vcpkg-
|
|
10
|
+
"Tool: vcpkg-710a3116bbd615864eef5f9010af178034cb9b44"
|
|
11
11
|
],
|
|
12
|
-
"created": "
|
|
12
|
+
"created": "2024-05-06T21:48:53Z"
|
|
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.
|
|
121
|
-
"downloadLocation": "git+https://github.com/Microsoft/vcpkg@
|
|
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-osx-dynamic-release",
|
|
131
131
|
"SPDXID": "SPDXRef-binary",
|
|
132
|
-
"versionInfo": "
|
|
132
|
+
"versionInfo": "913b97e757119bc981c7b1e402d2cd3c4d5aa70801b31956c8f461587aa49f23",
|
|
133
133
|
"downloadLocation": "NONE",
|
|
134
134
|
"licenseConcluded": "NOASSERTION",
|
|
135
135
|
"licenseDeclared": "NOASSERTION",
|
|
@@ -139,21 +139,21 @@
|
|
|
139
139
|
{
|
|
140
140
|
"SPDXID": "SPDXRef-resource-1",
|
|
141
141
|
"name": "OSGeo/gdal",
|
|
142
|
-
"downloadLocation": "git+https://github.com/OSGeo/gdal@v3.
|
|
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": "
|
|
149
|
+
"checksumValue": "5b155229225e904b3619628ec27efdd273d9f083c1ee4f6d94041897d5bc9c3133590b70885ad61fc8864da2f334a75cf32bafe7f776c40bbbc3673fe842c986"
|
|
150
150
|
}
|
|
151
151
|
]
|
|
152
152
|
}
|
|
153
153
|
],
|
|
154
154
|
"files": [
|
|
155
155
|
{
|
|
156
|
-
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/
|
|
156
|
+
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/libkml.patch",
|
|
157
157
|
"SPDXID": "SPDXRef-file-0",
|
|
158
158
|
"checksums": [
|
|
159
159
|
{
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"copyrightText": "NOASSERTION"
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
|
-
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/
|
|
168
|
+
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/usage",
|
|
169
169
|
"SPDXID": "SPDXRef-file-1",
|
|
170
170
|
"checksums": [
|
|
171
171
|
{
|
|
@@ -177,43 +177,43 @@
|
|
|
177
177
|
"copyrightText": "NOASSERTION"
|
|
178
178
|
},
|
|
179
179
|
{
|
|
180
|
-
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/
|
|
180
|
+
"fileName": ".//usr/local/share/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": "
|
|
185
|
+
"checksumValue": "7e5f1f6c6f1f420b994e149d8a31e1e31e23492a881ce29b3c30307ab28f2f92"
|
|
186
186
|
}
|
|
187
187
|
],
|
|
188
188
|
"licenseConcluded": "NOASSERTION",
|
|
189
189
|
"copyrightText": "NOASSERTION"
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
|
-
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/
|
|
192
|
+
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/vcpkg.json",
|
|
193
193
|
"SPDXID": "SPDXRef-file-3",
|
|
194
194
|
"checksums": [
|
|
195
195
|
{
|
|
196
196
|
"algorithm": "SHA256",
|
|
197
|
-
"checksumValue": "
|
|
197
|
+
"checksumValue": "15039815ee85e9996bda2f7cb66eb87de8b544bcafba85f2518ba1b3f28c9fd5"
|
|
198
198
|
}
|
|
199
199
|
],
|
|
200
200
|
"licenseConcluded": "NOASSERTION",
|
|
201
201
|
"copyrightText": "NOASSERTION"
|
|
202
202
|
},
|
|
203
203
|
{
|
|
204
|
-
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/
|
|
204
|
+
"fileName": ".//usr/local/share/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": "
|
|
209
|
+
"checksumValue": "6a369356c57860f97bd756d3604e7219774e2bfe5c74e5e0178496fad253900f"
|
|
210
210
|
}
|
|
211
211
|
],
|
|
212
212
|
"licenseConcluded": "NOASSERTION",
|
|
213
213
|
"copyrightText": "NOASSERTION"
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
|
-
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/
|
|
216
|
+
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/fix-gdal-target-interfaces.patch",
|
|
217
217
|
"SPDXID": "SPDXRef-file-5",
|
|
218
218
|
"checksums": [
|
|
219
219
|
{
|
|
@@ -225,7 +225,7 @@
|
|
|
225
225
|
"copyrightText": "NOASSERTION"
|
|
226
226
|
},
|
|
227
227
|
{
|
|
228
|
-
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/
|
|
228
|
+
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/vcpkg-cmake-wrapper.cmake",
|
|
229
229
|
"SPDXID": "SPDXRef-file-6",
|
|
230
230
|
"checksums": [
|
|
231
231
|
{
|
|
@@ -237,19 +237,19 @@
|
|
|
237
237
|
"copyrightText": "NOASSERTION"
|
|
238
238
|
},
|
|
239
239
|
{
|
|
240
|
-
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/
|
|
240
|
+
"fileName": ".//usr/local/share/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": "
|
|
245
|
+
"checksumValue": "60c0f79155c78ec0ec4ccdc77e00f4613ae4630c6697f51f884bf8f979a48593"
|
|
246
246
|
}
|
|
247
247
|
],
|
|
248
248
|
"licenseConcluded": "NOASSERTION",
|
|
249
249
|
"copyrightText": "NOASSERTION"
|
|
250
250
|
},
|
|
251
251
|
{
|
|
252
|
-
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/
|
|
252
|
+
"fileName": ".//usr/local/share/vcpkg/buildtrees/versioning_/versions/gdal/ea4d3f8cb9ab32d885ac60b974421a604fdbcc87/find-link-libraries.patch",
|
|
253
253
|
"SPDXID": "SPDXRef-file-8",
|
|
254
254
|
"checksums": [
|
|
255
255
|
{
|
|
@@ -1,40 +1,41 @@
|
|
|
1
|
-
cmake 3.
|
|
2
|
-
cmake-project-include.cmake
|
|
3
|
-
curl
|
|
4
|
-
expat
|
|
5
|
-
features core;curl;expat;geos;jpeg;lerc;png;qhull;recommended-features;sqlite3
|
|
1
|
+
cmake 3.29.0
|
|
2
|
+
cmake-project-include.cmake 60c0f79155c78ec0ec4ccdc77e00f4613ae4630c6697f51f884bf8f979a48593
|
|
3
|
+
curl 05c99c9ad5e9f7ec5c7b136500b2d0acab2eda1360610a899b8cbae8eaff4b63
|
|
4
|
+
expat 56068cfbd4b2e851d1ead13a4f83ba36ae43fe6d47f26500938cc7919ee08abd
|
|
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
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
libjpeg-turbo
|
|
8
|
+
geos 141b009d4af541c3bce70d1311c1358878b38af225cd79ebae08da8b899e3cd8
|
|
9
|
+
json-c 1b3c98cb4034d4d565fdb7749ce13f032c1af5c1d9275aa5b305f0ed9e05dd5c
|
|
10
|
+
lerc 8c58090a38f94bd20e7fff97f163254d1c9eb257109cb78c17cf7eafc0dd75c7
|
|
11
|
+
libgeotiff 8a75883bf552a8a58276600920034a22052cececbf83f2a9ebeff7c3b9e8cbbe
|
|
12
|
+
libiconv 801d2600e76451b1ffd677df5da0a27b472bc05fc1e48e495f032f68f14c4b68
|
|
13
|
+
libjpeg-turbo bb010e17bc640d29e021223a8fda56d293056261f78624896d47db3e764845af
|
|
14
14
|
libkml.patch fe888df8a7c9e468cdd87640c025f48f165d5264af1fa20604bd60859e6f000f
|
|
15
|
-
libpng
|
|
16
|
-
pkgconf
|
|
17
|
-
portfile.cmake
|
|
18
|
-
ports.cmake
|
|
15
|
+
libpng 567db2717bdad1bcc2a574d3b14b24c4bd4f30fa78de4be48dea498cc33adbfa
|
|
16
|
+
pkgconf 7520e1dd47455fdb0508a9aca87bf4b7c0d55fd040a5b1e4e308aa09efd40556
|
|
17
|
+
portfile.cmake 7e5f1f6c6f1f420b994e149d8a31e1e31e23492a881ce29b3c30307ab28f2f92
|
|
18
|
+
ports.cmake 0500e9e2422fe0084c99bdd0c9de4c7069b76da14c8b58228a7e95ebac43058a
|
|
19
19
|
post_build_checks 2
|
|
20
|
-
proj
|
|
21
|
-
qhull
|
|
22
|
-
sqlite3
|
|
23
|
-
|
|
20
|
+
proj ae315e03ec207af28b043c414cbeaeef6f4674e495ebabcedb1050d41ed50047
|
|
21
|
+
qhull 14ced730cf886de2c5a26b6cb41320b92ad1c7632b670501460a57cdc6515961
|
|
22
|
+
sqlite3 94ead4c0f2c47e5b2b7e2a37b8501f12836b4c997281759b6a08a1e09cc7a8b8
|
|
23
|
+
target-is-valid.patch 6a369356c57860f97bd756d3604e7219774e2bfe5c74e5e0178496fad253900f
|
|
24
|
+
tiff fa3effa93a67fbf00f177e8e5da39f1250f4908e485da9becfa23c404f24b445
|
|
24
25
|
triplet arm64-osx-dynamic-release
|
|
25
26
|
triplet_abi 7d6855d77bd4c445eb17b139dd8ddd74f95a06d0ea1d079ccef9256df98cd7af-a654e5c1a635cb784f3168426c422995eefe31912588726942497566a5bca495-c1d30f72952462506466f7d6fd75f7438b8a6a10
|
|
26
27
|
usage c85584261e2011a94b86f04c3a28dd2e165c9e6b47677a9bee26a3d387bc05f2
|
|
27
|
-
vcpkg-cmake
|
|
28
|
-
vcpkg-cmake-config
|
|
28
|
+
vcpkg-cmake 0a2d6d18e8953e1c2acd0af09144c74662331c1f06445428f03aa23ab3e93b09
|
|
29
|
+
vcpkg-cmake-config 95ba0954962e033d18bfe2400cbb5135be197460d56cc987fae1b3bc4e631a00
|
|
29
30
|
vcpkg-cmake-wrapper.cmake c507eaa077072e9877607fd5f70381eebf19900661e2e1fd099d84c4df1b8c24
|
|
30
|
-
vcpkg-pkgconfig-get-modules
|
|
31
|
-
vcpkg.json
|
|
31
|
+
vcpkg-pkgconfig-get-modules 5db6651370284b7d4be0d831fa5f16c92b7bc2204d2a594e86934be0df12fba4
|
|
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
|
|
36
|
-
vcpkg_from_git
|
|
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
|
|
41
|
+
zlib ef21ff56fdf049a19125c2ca6db7c45d8fa5a2a138afcd8a805f429bea3c36fa
|