chore(3p/sources): bump channels & overlays (2024-12-31)
Last one of the year! С наступающим)
Fixes:
* users/wpcarro: remove use-package from emacs packages (it has been built-in
for a while now)
* users/sterni: the same thing
* users/aspen: remove `coz`, forwardport `gdmap` from stable
* users/flokli: dropped corneish_zen firmware from CI
This firmware depends on a non-reproducible FOD which, when updated, causes
build failures. We have worked around this repeatedly, but it needs to be
fixed properly.
* tvix: regenerate Go protobufs
* tvix: address new clippy lints
* tvix/{castore,store,build}-go: update grpc/protobuf libraries
* tvix/eval: formatting fixes
* 3p/overlays/tvl: work around GCC 14 -Werrors
Change-Id: Ice5948ca7780192fb7d2abc6a48971fb875f03c9
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12933
Reviewed-by: tazjin <tazjin@tvl.su>
Reviewed-by: sterni <sternenseemann@systemli.org>
Reviewed-by: aspen <root@gws.fyi>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
This commit is contained in:
parent
bd73dff0bf
commit
54f72afcda
44 changed files with 516 additions and 578 deletions
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// versions:
|
||||
// protoc-gen-go v1.35.2
|
||||
// protoc-gen-go v1.36.0
|
||||
// protoc (unknown)
|
||||
// source: tvix/store/protos/rpc_pathinfo.proto
|
||||
|
||||
|
|
@ -27,14 +27,13 @@ const (
|
|||
// The parameters that can be used to lookup a (single) PathInfo object.
|
||||
// Currently, only a lookup by output hash is supported.
|
||||
type GetPathInfoRequest struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
// Types that are assignable to ByWhat:
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
// Types that are valid to be assigned to ByWhat:
|
||||
//
|
||||
// *GetPathInfoRequest_ByOutputHash
|
||||
ByWhat isGetPathInfoRequest_ByWhat `protobuf_oneof:"by_what"`
|
||||
ByWhat isGetPathInfoRequest_ByWhat `protobuf_oneof:"by_what"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *GetPathInfoRequest) Reset() {
|
||||
|
|
@ -67,16 +66,18 @@ func (*GetPathInfoRequest) Descriptor() ([]byte, []int) {
|
|||
return file_tvix_store_protos_rpc_pathinfo_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (m *GetPathInfoRequest) GetByWhat() isGetPathInfoRequest_ByWhat {
|
||||
if m != nil {
|
||||
return m.ByWhat
|
||||
func (x *GetPathInfoRequest) GetByWhat() isGetPathInfoRequest_ByWhat {
|
||||
if x != nil {
|
||||
return x.ByWhat
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (x *GetPathInfoRequest) GetByOutputHash() []byte {
|
||||
if x, ok := x.GetByWhat().(*GetPathInfoRequest_ByOutputHash); ok {
|
||||
return x.ByOutputHash
|
||||
if x != nil {
|
||||
if x, ok := x.ByWhat.(*GetPathInfoRequest_ByOutputHash); ok {
|
||||
return x.ByOutputHash
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
@ -98,9 +99,9 @@ func (*GetPathInfoRequest_ByOutputHash) isGetPathInfoRequest_ByWhat() {}
|
|||
// The parameters that can be used to lookup (multiple) PathInfo objects.
|
||||
// Currently no filtering is possible, all objects are returned.
|
||||
type ListPathInfoRequest struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *ListPathInfoRequest) Reset() {
|
||||
|
|
@ -138,14 +139,13 @@ func (*ListPathInfoRequest) Descriptor() ([]byte, []int) {
|
|||
// It contains the size of the NAR representation (in bytes), and the sha56
|
||||
// digest.
|
||||
type CalculateNARResponse struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
// This size of the NAR file, in bytes.
|
||||
NarSize uint64 `protobuf:"varint,1,opt,name=nar_size,json=narSize,proto3" json:"nar_size,omitempty"`
|
||||
// The sha256 of the NAR file representation.
|
||||
NarSha256 []byte `protobuf:"bytes,2,opt,name=nar_sha256,json=narSha256,proto3" json:"nar_sha256,omitempty"`
|
||||
NarSha256 []byte `protobuf:"bytes,2,opt,name=nar_sha256,json=narSha256,proto3" json:"nar_sha256,omitempty"`
|
||||
unknownFields protoimpl.UnknownFields
|
||||
sizeCache protoimpl.SizeCache
|
||||
}
|
||||
|
||||
func (x *CalculateNARResponse) Reset() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue