Skip to content

Commit 61b62a3

Browse files
committed
License and formatter fixup
1 parent b97beb3 commit 61b62a3

File tree

5 files changed

+48
-5
lines changed

5 files changed

+48
-5
lines changed

meson.options

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,10 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
option('rest', type: 'feature', description: 'Build rest catalog client', value: 'enabled')
18+
option(
19+
'rest',
20+
type: 'feature',
21+
description: 'Build rest catalog client',
22+
value: 'enabled',
23+
)
1924
option('tests', type: 'feature', description: 'Build tests', value: 'enabled')

src/iceberg/meson.build

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,13 @@ nlohmann_json_dep = dependency('nlohmann_json')
8989
spdlog_dep = dependency('spdlog')
9090
zlib_dep = dependency('zlib')
9191

92-
iceberg_deps = [croaring_dep, nanoarrow_dep, nlohmann_json_dep, spdlog_dep, zlib_dep]
92+
iceberg_deps = [
93+
croaring_dep,
94+
nanoarrow_dep,
95+
nlohmann_json_dep,
96+
spdlog_dep,
97+
zlib_dep,
98+
]
9399

94100
iceberg_lib = library(
95101
'iceberg',

subprojects/cpr.wrap

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
118
[wrap-file]
219
directory = cpr-1.12.0
320
source_url = https://github.com/libcpr/cpr/archive/1.12.0.tar.gz

subprojects/curl.wrap

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
118
[wrap-file]
219
directory = curl-8.10.1
320
source_url = https://github.com/curl/curl/releases/download/curl-8_10_1/curl-8.10.1.tar.xz

test/meson.build

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ iceberg_tests = {
6262
'string_util_test.cc',
6363
'visit_type_test.cc',
6464
),
65-
'roaring_test': files(
66-
'roaring_test.cc',
67-
)
65+
'roaring_test': files('roaring_test.cc'),
6866
}
6967

7068
foreach test_name, sources : iceberg_tests

0 commit comments

Comments
 (0)