Skip to content

Commit

Permalink
subprojects: update fmt to 11.0.2-1
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKellermann committed Sep 25, 2024
1 parent 83c05df commit ec277d8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion libcommon
Submodule libcommon updated 56 files
+4 −0 demo/was/BadRequest.cxx
+4 −0 demo/was/CoMirror.cxx
+4 −0 demo/was/CoSleepMirror.cxx
+4 −0 demo/was/Json.cxx
+4 −0 demo/was/Mirror.cxx
+1 −0 src/io/DirectoryReader.hxx
+15 −0 src/io/FileDescriptor.cxx
+16 −0 src/io/FileDescriptor.hxx
+1 −1 src/io/MakeDirectory.cxx
+10 −13 src/lib/cap/State.hxx
+8 −0 src/lib/fmt/meson.build
+7 −0 src/net/AddressInfo.hxx
+2 −3 src/net/Resolver.cxx
+1 −1 src/net/SocketError.hxx
+10 −0 src/pluggable/DefaultFifoBuffer.hxx
+20 −0 src/spawn/ChildOptions.cxx
+16 −0 src/spawn/ChildOptions.hxx
+5 −0 src/spawn/Client.cxx
+21 −0 src/spawn/Direct.cxx
+3 −0 src/spawn/IProtocol.hxx
+5 −1 src/spawn/PidfdEvent.cxx
+8 −0 src/spawn/Prepared.hxx
+15 −5 src/spawn/ScopeProcess.cxx
+6 −0 src/spawn/Server.cxx
+30 −8 src/stock/MultiStock.cxx
+11 −1 src/stock/MultiStock.hxx
+17 −3 src/translation/Parser.cxx
+6 −0 src/translation/Protocol.hxx
+5 −0 src/translation/server/Response.hxx
+1 −1 src/util/DeleteDisposer.hxx
+13 −0 src/util/DisposablePointer.hxx
+278 −0 src/util/IntrusiveCache.hxx
+17 −2 src/util/IntrusiveHashArrayTrie.hxx
+16 −1 src/util/IntrusiveHashSet.hxx
+2 −2 src/was/async/Control.cxx
+5 −1 src/was/async/Control.hxx
+1 −1 src/was/async/MultiClient.cxx
+8 −0 src/was/async/MultiClient.hxx
+325 −0 src/was/async/SimpleClient.cxx
+110 −0 src/was/async/SimpleClient.hxx
+8 −2 src/was/async/SimpleInput.cxx
+6 −0 src/was/async/SimpleInput.hxx
+5 −0 src/was/async/SimpleOutput.hxx
+1 −0 src/was/async/SimpleRun.cxx
+19 −2 src/was/async/SimpleServer.cxx
+10 −2 src/was/async/SimpleServer.hxx
+2 −2 src/was/async/Socket.cxx
+2 −0 src/was/async/meson.build
+9 −9 subprojects/fmt.wrap
+6 −5 subprojects/nlohmann_json.wrap
+1 −0 test/meson.build
+142 −0 test/stock/TestMultiStock.cxx
+254 −0 test/util/TestIntrusiveCache.cxx
+1 −0 test/util/meson.build
+313 −0 test/was/TestSimpleServer.cxx
+16 −0 test/was/meson.build
18 changes: 9 additions & 9 deletions subprojects/fmt.wrap
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[wrap-file]
directory = fmt-11.0.1
source_url = https://github.com/fmtlib/fmt/archive/11.0.1.tar.gz
source_filename = fmt-11.0.1.tar.gz
source_hash = 7d009f7f89ac84c0a83f79ed602463d092fbf66763766a907c97fd02b100f5e9
patch_filename = fmt_11.0.1-1_patch.zip
patch_url = https://wrapdb.mesonbuild.com/v2/fmt_11.0.1-1/get_patch
patch_hash = 0a8b93d1ee6d84a82d3872a9bfb4c3977d8a53f7f484d42d1f7ed63ed496d549
source_fallback_url = https://github.com/mesonbuild/wrapdb/releases/download/fmt_11.0.1-1/fmt-11.0.1.tar.gz
wrapdb_version = 11.0.1-1
directory = fmt-11.0.2
source_url = https://github.com/fmtlib/fmt/archive/11.0.2.tar.gz
source_filename = fmt-11.0.2.tar.gz
source_hash = 6cb1e6d37bdcb756dbbe59be438790db409cdb4868c66e888d5df9f13f7c027f
patch_filename = fmt_11.0.2-1_patch.zip
patch_url = https://wrapdb.mesonbuild.com/v2/fmt_11.0.2-1/get_patch
patch_hash = 90c9e3b8e8f29713d40ca949f6f93ad115d78d7fb921064112bc6179e6427c5e
source_fallback_url = https://github.com/mesonbuild/wrapdb/releases/download/fmt_11.0.2-1/fmt-11.0.2.tar.gz
wrapdb_version = 11.0.2-1

[provide]
fmt = fmt_dep

0 comments on commit ec277d8

Please sign in to comment.