Skip to content

Commit e7a245a

Browse files
authored
Add {fmt} 10.2.0 (#1245)
1 parent 48540bb commit e7a245a

File tree

6 files changed

+55
-1
lines changed

6 files changed

+55
-1
lines changed

modules/fmt/10.2.0/MODULE.bazel

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module(
2+
name = "fmt",
3+
version = "10.2.0",
4+
compatibility_level = 10,
5+
)
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
--- /dev/null
2+
+++ BUILD.bazel
3+
@@ -0,0 +1,15 @@
4+
+package(default_visibility = ["//visibility:public"])
5+
+
6+
+licenses(["notice"])
7+
+
8+
+cc_library(
9+
+ name = "fmt",
10+
+ srcs = [
11+
+ "src/format.cc",
12+
+ "src/os.cc",
13+
+ ],
14+
+ hdrs = glob([
15+
+ "include/fmt/*.h",
16+
+ ]),
17+
+ includes = ["include"],
18+
+)
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
--- MODULE.bazel
2+
+++ MODULE.bazel
3+
@@ -0,0 +1,5 @@
4+
+module(
5+
+ name = "fmt",
6+
+ version = "10.2.0",
7+
+ compatibility_level = 10,
8+
+)

modules/fmt/10.2.0/presubmit.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
build_targets: &build_targets
2+
- '@fmt//:fmt'
3+
4+
platforms:
5+
debian10:
6+
build_targets: *build_targets
7+
macos:
8+
build_targets: *build_targets
9+
ubuntu2004:
10+
build_targets: *build_targets
11+
windows:
12+
build_targets: *build_targets

modules/fmt/10.2.0/source.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"integrity": "sha256-ipQoYalPhGGigPgjBBzej2IKbYsOCqzJjBW7Wp3ZI5k=",
3+
"patch_strip": 0,
4+
"patches": {
5+
"add_build_file.patch": "sha256-bUYJz9G64DPC99/aSnVNx3JD1nStIA4zXK89OvIDmfY=",
6+
"module_dot_bazel.patch": "sha256-cxplHRbKmZJwT+UO/s/g6eXKjxBWgnLS3Ap9MFxuiw8="
7+
},
8+
"strip_prefix": "fmt-10.2.0",
9+
"url": "https://github.com/fmtlib/fmt/releases/download/10.2.0/fmt-10.2.0.zip"
10+
}

modules/fmt/metadata.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"9.1.0",
1616
"10.0.0",
1717
"10.1.0",
18-
"10.1.1"
18+
"10.1.1",
19+
"10.2.0"
1920
],
2021
"yanked_versions": {}
2122
}

0 commit comments

Comments
 (0)