[DRE-maint] Bug#1008697: FTBFS: test suite failures

Florian Ernst florian_ernst at gmx.net
Wed Mar 30 20:36:45 BST 2022


Source: ruby-psych
Version: 3.3.2-1
Severity: serious
Tags: sid ftbfs
Justification: FTBFS

Hello there,

during a rebuild of the reverse b-d of libyaml I found that this package
failed to build on my amd64.

In addition, the test suite as used by autopkgtest-pkg-ruby also failed
on amd64, arm64, armhf, i386, and ppc64el in unstable, cf.
<https://ci.debian.net/packages/r/ruby-psych/>
where you will also find full logs.

The relevant part from my build log (hopefully, full log attached):

| ┌──────────────────────────────────────────────────────────────────────────────┐
| │ Run tests for ruby3.0 from debian/ruby-tests.rake                            │
| └──────────────────────────────────────────────────────────────────────────────┘
| 
| RUBYLIB=. GEM_PATH=/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0:/<<PKGBUILDDIR>>/debian/.debhelper/generated/_source/home/.local/share/gem/ruby/3.0.0:/var/lib/gems/3.0.0:/usr/local/lib/ruby/gems/3.0.0:/usr/lib/ruby/gems/3.0.0:/usr/lib/x86_64-linux-gnu/ruby/gems/3.0.0:/usr/share/rubygems-integration/3.0.0:/usr/share/rubygems-integration/all:/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0 ruby3.0 -S rake -f debian/ruby-tests.rake
| /usr/bin/ruby3.0 -w -I"test/lib:test" -rhelper /usr/share/rubygems-integration/all/gems/rake-13.0.6/lib/rake/rake_test_loader.rb "test/psych/handlers/test_recorder.rb" "test/psych/json/test_stream.rb" "test/psych/nodes/test_enumerable.rb" "test/psych/test_alias_and_anchor.rb" "test/psych/test_array.rb" "test/psych/test_boolean.rb" "test/psych/test_class.rb" "test/psych/test_coder.rb" "test/psych/test_date_time.rb" "test/psych/test_deprecated.rb" "test/psych/test_document.rb" "test/psych/test_emitter.rb" "test/psych/test_encoding.rb" "test/psych/test_exception.rb" "test/psych/test_hash.rb" "test/psych/test_json_tree.rb" "test/psych/test_marshalable.rb" "test/psych/test_merge_keys.rb" "test/psych/test_nil.rb" "test/psych/test_null.rb" "test/psych/test_numeric.rb" "test/psych/test_object.rb" "test/psych/test_object_references.rb" "test/psych/test_omap.rb" "test/psych/test_parser.rb" "test/psych/test_psych.rb" "test/psych/test_ractor.rb" "test/psych/test_safe_load.rb" "test/psych/test_scalar.rb" "test/psych/test_scalar_scanner.rb" "test/psych/test_serialize_subclasses.rb" "test/psych/test_set.rb" "test/psych/test_stream.rb" "test/psych/test_string.rb" "test/psych/test_struct.rb" "test/psych/test_symbol.rb" "test/psych/test_tree_builder.rb" "test/psych/test_yaml.rb" "test/psych/test_yaml_special_cases.rb" "test/psych/test_yamldbm.rb" "test/psych/test_yamlstore.rb" "test/psych/visitors/test_depth_first.rb" "test/psych/visitors/test_emitter.rb" "test/psych/visitors/test_to_ruby.rb" "test/psych/visitors/test_yaml_tree.rb" -v
| Loaded suite /usr/share/rubygems-integration/all/gems/rake-13.0.6/lib/rake/rake_test_loader
| Started
| Psych::TestCase: 
|   Psych::Handlers::TestRecorder: 
|     test_replay:					.: (0.000825)
|   Psych::JSON::TestStream: 
|     test_datetime:					.: (0.000489)
|     test_explicit_documents:				.: (0.000194)
|     test_float:						.: (0.000121)
|     test_hash:						.: (0.000135)
|     test_int:						.: (0.000109)
|     test_json_dump_exclude_tag:				F
| ===============================================================================
| Failure: test_json_dump_exclude_tag(Psych::JSON::TestStream):
|   <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
|   <"Foo"> was expected to be instance_of?
|   <Regexp> but was
|   <String>.
| /<<PKGBUILDDIR>>/test/psych/json/test_stream.rb:80:in `test_json_dump_exclude_tag'
|      77:       def test_json_dump_exclude_tag
|      78:         @stream << Foo.new
|      79:         json = @io.string
|   => 80:         refute_match('Foo', json)
|      81:       end
|      82: 
|      83:       class Bar
| ===============================================================================
| : (0.001764)
|     test_json_list_dump_exclude_tag:			F
| ===============================================================================
| Failure: test_json_list_dump_exclude_tag(Psych::JSON::TestStream):
|   <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
|   <"omg"> was expected to be instance_of?
|   <Regexp> but was
|   <String>.
| /<<PKGBUILDDIR>>/test/psych/json/test_stream.rb:92:in `test_json_list_dump_exclude_tag'
|      89:       def test_json_list_dump_exclude_tag
|      90:         @stream << Bar.new
|      91:         json = @io.string
|   => 92:         refute_match('omg', json)
|      93:       end
|      94: 
|      95:       def test_time
| ===============================================================================
| : (0.000905)
|     test_list_to_json:					.: (0.000253)
|     test_null:						.: (0.000110)
|     test_string:					.: (0.000086)
|     test_symbol:					.: (0.000089)
|     test_time:						.: (0.000185)
|   Psych::Nodes::TestEnumerable: 
|     test_alias:						.: (0.000371)
|     test_includes_enumerable:				.: (0.000134)
|     test_mapping:					.: (0.000160)
|     test_returns_enumerator:				.: (0.000125)
|     test_scalar:					.: (0.000098)
|     test_sequence:					.: (0.000104)
|   Psych::TestAliasAndAnchor: 
|     test_anchor_alias_round_trip:			.: (0.000604)
|     test_anchor_alias_round_trip_object_with_ivars:	.: (0.000455)
|     test_anchor_alias_round_trip_substring_with_ivars:	.: (0.000358)
|     test_mri_compatibility:				.: (0.000171)
|     test_mri_compatibility_object_with_ivars:		.: (0.000210)
|     test_mri_compatibility_substring_with_ivars:	.: (0.000191)
|   Psych::TestArray: 
|     test_another_subclass_with_attributes:		.: (0.001972)
|     test_backwards_with_syck:				.: (0.000122)
|     test_cycle:						.: (0.000607)
|     test_enumerator:					.: (0.000232)
|     test_self_referential:				.: (0.000582)
|     test_subclass:					.: (0.000193)
|     test_subclass_with_attributes:			.: (0.000301)
|   Psych::TestBoolean: 
|     test_FALSE:						.: (0.000339)
|     test_False:						.: (0.000092)
|     test_NO:						.: (0.000092)
|     test_No:						.: (0.000110)
|     test_OFF:						.: (0.000113)
|     test_ON:						.: (0.000114)
|     test_Off:						.: (0.000089)
|     test_On:						.: (0.000118)
|     test_TRUE:						.: (0.000146)
|     test_True:						.: (0.000107)
|     test_YES:						.: (0.000100)
|     test_Yes:						.: (0.000092)
|     test_false:						.: (0.000097)
|     test_n:						.: (0.000154)
|     test_no:						.: (0.000104)
|     test_off:						.: (0.000213)
|     test_on:						.: (0.000125)
|     test_true:						.: (0.000092)
|     test_y:						.: (0.000140)
|     test_yes:						.: (0.000094)
|   Psych::TestClass: 
|     test_cycle:						.: (0.000495)
|     test_cycle_anonymous_class:				.: (0.000127)
|     test_cycle_anonymous_module:			.: (0.000093)
|     test_cycle_module:					.: (0.000366)
|     test_dump:						.: (0.000101)
|     test_dump_module:					.: (0.000118)
|   Psych::TestCoder: 
|     test_coder_style_map_any:				.: (0.000247)
|     test_coder_style_map_block:				.: (0.000134)
|     test_coder_style_map_default:			.: (0.000144)
|     test_coder_style_map_flow:				.: (0.000131)
|     test_coder_style_scalar_any:			.: (0.000131)
|     test_coder_style_scalar_default:			.: (0.000121)
|     test_coder_style_scalar_double_quoted:		.: (0.000112)
|     test_coder_style_scalar_folded:			.: (0.000114)
|     test_coder_style_scalar_literal:			.: (0.000106)
|     test_coder_style_scalar_plain:			.: (0.000106)
|     test_coder_style_scalar_single_quoted:		.: (0.000110)
|     test_coder_style_seq_any:				.: (0.000126)
|     test_coder_style_seq_block:				.: (0.000180)
|     test_coder_style_seq_default:			.: (0.000122)
|     test_coder_style_seq_flow:				.: (0.000123)
|     test_dump_encode_with:				.: (0.000154)
|     test_dump_init_with:				.: (0.000254)
|     test_dump_with_tag:					.: (0.000348)
|     test_json_dump_exclude_tag:				F
| ===============================================================================
| Failure: test_json_dump_exclude_tag(Psych::TestCoder):
|   <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
|   <"TestCoder::InitApi"> was expected to be instance_of?
|   <Regexp> but was
|   <String>.
| /<<PKGBUILDDIR>>/test/psych/test_coder.rb:137:in `test_json_dump_exclude_tag'
|      134:     end
|      135: 
|      136:     def test_json_dump_exclude_tag
|   => 137:       refute_match('TestCoder::InitApi', Psych.to_json(InitApi.new))
|      138:     end
|      139: 
|      140:     def test_map_takes_block
| ===============================================================================
| : (0.005586)
|     test_load_dumped_tagging:				.: (0.000485)
|     test_map_takes_block:				.: (0.000090)
|     test_map_with_tag:					.: (0.000070)
|     test_map_with_tag_and_style:			.: (0.000073)
|     test_represent!:					.: (0.000226)
|     test_represent_map:					.: (0.000293)
|     test_represent_sequence:				.: (0.000214)
|     test_represent_with_init:				.: (0.000169)
|     test_represent_with_object:				.: (0.000174)
|     test_scalar_coder:					.: (0.000176)
|     test_self_referential:				.: (0.000323)
|   Psych::TestDateTime: 
|     test_alias_with_time:				.: (0.000535)
|     test_datetime_non_utc:				.: (0.000653)
|     test_datetime_timezone_offset:			.: (0.000292)
|     test_invalid_date:					.: (0.000422)
|     test_negative_year:					.: (0.000478)
|     test_new_datetime:					.: (0.000614)
|     test_non_utc:					.: (0.000444)
|     test_round_trip:					.: (0.000465)
|     test_string_tag:					.: (0.000162)
|     test_timezone_offset:				.: (0.000292)
|     test_usec:						.: (0.000411)
|   Psych::TestDeprecated: 
|     test_coder_scalar:					.: (0.000365)
|     test_recursive_quick_emit_encode_with:		.: (0.000328)
|     test_yaml_initialize_and_init_with:			.: (0.000325)
|   Psych::TestDocument: 
|     test_emit_bad_tag:					.: (0.000223)
|     test_emit_multitag:					.: (0.000185)
|     test_emit_tag:					.: (0.000141)
|     test_emit_version:					.: (0.000134)
|     test_parse_tag:					.: (0.000105)
|     test_parse_version:					.: (0.000079)
|   Psych::TestEmitter: 
|     test_emit_utf_8:					.: (0.000190)
|     test_indentation_set:				.: (0.000103)
|     test_line_width:					.: (0.000062)
|     test_resizing_tags:					.: (0.000085)
|     test_scalar_arg_error:				.: (0.000156)
|     test_set_canonical:					.: (0.000073)
|     test_start_doc_arg_error:				.: (0.000145)
|     test_start_sequence_arg_error:			.: (0.000089)
|     test_start_stream_arg_error:			.: (0.000070)
|   Psych::TestEncoding: 
|     test_alias:						.: (0.000304)
|     test_default_internal:				.: (0.000869)
|     test_doc_tag:					.: (0.000147)
|     test_doc_tag_encoding:				.: (0.000176)
|     test_dump_load_encoding_object:			.: (0.000669)
|     test_dump_non_ascii_string_to_file:			.: (0.000937)
|     test_emit_alias:					.: (0.000133)
|     test_emitter_encoding:				.: (0.000561)
|     test_io_shiftjis:					.: (0.000853)
|     test_io_utf16be:					.: (0.000619)
|     test_io_utf16le:					.: (0.000369)
|     test_io_utf8:					.: (0.000335)
|     test_io_utf8_read_as_binary:			.: (0.000330)
|     test_list_anchor:					.: (0.000341)
|     test_map_anchor:					.: (0.000223)
|     test_map_tag:					.: (0.000132)
|     test_scalar:					.: (0.000117)
|     test_start_mapping:					.: (0.000142)
|     test_start_sequence:				.: (0.000156)
|     test_to_yaml_is_valid:				.: (0.000274)
|     test_transcode_shiftjis:				.: (0.000156)
|     test_transcode_utf16be:				.: (0.000130)
|     test_transcode_utf16le:				.: (0.000150)
|   Psych::TestException: 
|     test_attributes:					.: (0.000242)
|     test_backtrace:					.: (0.000676)
|     test_convert:					.: (0.000359)
|     test_load_file_exception:				.: (0.000328)
|     test_load_stream_takes_file:			.: (0.000283)
|     test_load_takes_file:				.: (0.000286)
|     test_naming_exception:				.: (0.002734)
|     test_parse_file_exception:				.: (0.000359)
|     test_psych_parse_stream_takes_file:			.: (0.000222)
|     test_psych_parse_takes_file:			.: (0.000280)
|     test_psych_syntax_error:				.: (0.000346)
|     test_safe_load_file_exception:			.: (0.000333)
|   Psych::TestHash: 
|     test_custom_initialize_no_ivar:			.: (0.000682)
|     test_custom_initialized:				.: (0.001146)
|     test_cycles:					.: (0.000502)
|     test_empty_subclass:				.: (0.000317)
|     test_hash_subclass_with_ivars:			.: (0.000969)
|     test_hash_with_ivar:				.: (0.000991)
|     test_key_deduplication:				.: (0.000195)
|     test_load_with_class_syck_compatibility:		.: (0.000192)
|     test_map:						.: (0.000187)
|     test_ref_append:					.: (0.000193)
|     test_referenced_hash_with_ivar:			.: (0.000859)
|     test_self_referential:				.: (0.000621)
|   Psych::TestJSONTree: 
|     test_datetime:					.: (0.000329)
|     test_float:						.: (0.000142)
|     test_hash:						.: (0.000203)
|     test_int:						.: (0.000146)
|     test_json_list_dump_exclude_tag:			F
| ===============================================================================
| Failure: test_json_list_dump_exclude_tag(Psych::TestJSONTree):
|   <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
|   <"omg"> was expected to be instance_of?
|   <Regexp> but was
|   <String>.
| /<<PKGBUILDDIR>>/test/psych/test_json_tree.rb:43:in `test_json_list_dump_exclude_tag'
|      40: 
|      41:     def test_json_list_dump_exclude_tag
|      42:       json = Psych.to_json Bar.new
|   => 43:       refute_match('omg', json)
|      44:     end
|      45: 
|      46:     def test_list_to_json
| ===============================================================================
| : (0.001162)
|     test_list_to_json:					.: (0.000224)
|     test_nil:						.: (0.000146)
|     test_string:					.: (0.000121)
|     test_symbol:					.: (0.000119)
|     test_time:						.: (0.000154)
|   Psych::TestMarshalable: 
|     test_init_symbolize_names:				.: (0.000401)
|     test_init_with_takes_priority_over_marshal_methods:	.: (0.000278)
|     test_objects_defining_marshal_dump_and_marshal_load_can_be_dumped:	.: (0.000288)
|   Psych::TestMergeKeys: 
|     test_bad_seq_merge:					.: (0.001659)
|     test_explicit_string:				.: (0.000209)
|     test_merge_array:					.: (0.000190)
|     test_merge_is_not_partial:				.: (0.000362)
|     test_merge_key:					.: (0.000171)
|     test_merge_key_with_bare_hash:			.: (0.000177)
|     test_merge_key_with_bare_hash_symbolized_names:	.: (0.000166)
|     test_merge_nil:					.: (0.000157)
|     test_merge_seq_nil:					.: (0.000163)
|     test_mergekey_with_object:				.: (0.000263)
|     test_missing_merge_key:				.: (0.000173)
|     test_multiple_maps:					.: (0.000398)
|     test_override:					.: (0.000256)
|     test_roundtrip_with_chevron_key:			.: (0.000511)
|   Psych::TestNil: 
|     test_array_nil:					.: (0.000269)
|     test_nil:						.: (0.000160)
|   Psych::TestNull: 
|     test_null_list:					.: (0.000207)
|   Psych::TestNumeric: 
|     test_big_decimal_round_trip:			.: (0.000501)
|     test_big_decimal_tag:				.: (0.000279)
|     test_does_not_attempt_numeric:			.: (0.000161)
|     test_load_float_with_dot:				.: (0.000114)
|     test_non_float_with_0:				.: (0.000099)
|   Psych::TestObject: 
|     test_cyclic_references:				.: (0.000358)
|     test_dump_with_tag:					.: (0.000169)
|     test_tag_round_trip:				.: (0.000224)
|   Psych::TestObjectReferences: 
|     test_binary_references:				.: (0.000219)
|     test_class_has_references:				.: (0.000220)
|     test_complex_has_references:			.: (0.000451)
|     test_datetime_has_references:			.: (0.000306)
|     test_float_references:				.: (0.000158)
|     test_module_has_references:				.: (0.000212)
|     test_range_has_references:				.: (0.000335)
|     test_rational_has_references:			.: (0.000275)
|     test_regexp_references:				.: (0.000175)
|     test_struct_has_references:				.: (0.000323)
|   Psych::TestOmap: 
|     test_dump:						.: (0.000300)
|     test_keys:						.: (0.000084)
|     test_load:						.: (0.000173)
|     test_load_shorthand:				.: (0.000152)
|     test_order:						.: (0.000076)
|     test_parse_as_map:					.: (0.000180)
|     test_round_trip:					.: (0.000558)
|     test_self_referential:				.: (0.000256)
|     test_square:					.: (0.000086)
|   Psych::TestParser: 
|     test_alias:						.: (0.000310)
|     test_ast_roundtrip:					.: (0.000140)
|     test_bogus_io:					.: (0.000125)
|     test_bom:						.: (0.000224)
|     test_column_numbers:				.: (0.000154)
|     test_end_document_explicit:				.: (0.000147)
|     test_end_document_implicit:				.: (0.000149)
|     test_end_stream:					.: (0.000095)
|     test_event_location:				.: (0.000141)
|     test_exception_memory_leak:				.: (0.000730)
|     test_external_encoding:				.: (0.000123)
|     test_filename:					.: (0.000137)
|     test_index_numbers:					.: (0.000141)
|     test_line_numbers:					.: (0.000127)
|     test_literal_scalar:				.: (0.000149)
|     test_mapping_anchor:				.: (0.000166)
|     test_mapping_block:					.: (0.000148)
|     test_mapping_end:					.: (0.000102)
|     test_mapping_start:					.: (0.000156)
|     test_mapping_tag:					.: (0.000238)
|     test_multiparse:					.: (0.000104)
|     test_parse_io:					.: (0.000111)
|     test_scalar:					.: (0.000131)
|     test_scalar_plain_implicit:				.: (0.000131)
|     test_scalar_with_anchor:				.: (0.000126)
|     test_scalar_with_tag:				.: (0.000130)
|     test_sequence_end:					.: (0.000096)
|     test_sequence_start_anchor:				.: (0.000153)
|     test_sequence_start_block:				.: (0.000150)
|     test_sequence_start_flow:				.: (0.000264)
|     test_sequence_start_tag:				.: (0.000164)
|     test_start_document_tag:				.: (0.000147)
|     test_start_document_version:			.: (0.000136)
|     test_start_stream:					.: (0.000090)
|     test_syntax_error:					.: (0.000121)
|     test_syntax_error_has_path_for_io:			.: (0.000155)
|     test_syntax_error_has_path_for_string:		.: (0.000141)
|     test_syntax_error_twice:				.: (0.000144)
|   Psych::TestSafeLoad: 
|     test_anon_struct:					.: (0.000435)
|     test_basic_Array:					.: (0.000366)
|     test_basic_Float:					.: (0.000260)
|     test_basic_Hash:					.: (0.000241)
|     test_basic_Integer:					.: (0.000256)
|     test_basic_String:					.: (0.000264)
|     test_deprecated_anon_struct:			.: (0.000327)
|     test_explicit_recursion:				.: (0.000321)
|     test_foo:						.: (0.000585)
|     test_no_recursion:					.: (0.000213)
|     test_permitted_symbol:				.: (0.000299)
|     test_safe_load:					.: (0.000143)
|     test_safe_load_default_fallback:			.: (0.000092)
|     test_safe_load_raises_on_bad_input:			.: (0.000128)
|     test_struct_depends_on_sym:				.: (0.000521)
|     test_symbol:					.: (0.000779)
|   Psych::TestScalar: 
|     test_some_bytes:					.: (0.000601)
|     test_utf_8:						.: (0.000139)
|   Psych::TestScalarScanner: 
|     test_scan_bad_dates:				.: (0.000206)
|     test_scan_bad_edge_date:				.: (0.000186)
|     test_scan_bad_time:					.: (0.000209)
|     test_scan_date:					.: (0.000113)
|     test_scan_float:					.: (0.000067)
|     test_scan_float_with_exponent_but_no_fraction:	.: (0.000088)
|     test_scan_good_edge_date:				.: (0.000103)
|     test_scan_inf:					.: (0.000063)
|     test_scan_int_commas_and_underscores:		.: (0.000234)
|     test_scan_minus_inf:				.: (0.000060)
|     test_scan_nan:					.: (0.000195)
|     test_scan_not_sexagesimal:				.: (0.000099)
|     test_scan_null:					.: (0.000068)
|     test_scan_sexagesimal_float:			.: (0.000078)
|     test_scan_sexagesimal_int:				.: (0.000066)
|     test_scan_strings_starting_with_underscores:	.: (0.000058)
|     test_scan_symbol:					.: (0.000075)
|     test_scan_time:					.: (0.000232)
|     test_scan_true:					.: (0.000059)
|   Psych::TestSerializeSubclasses: 
|     test_some_object:					.: (0.000406)
|     test_struct_subclass:				.: (0.000428)
|   Psych::TestSet: 
|     test_dump:						.: (0.000273)
|     test_load_from_yaml:				.: (0.000161)
|     test_loaded_class:					.: (0.000226)
|     test_roundtrip:					.: (0.001691)
|     test_set_self_reference:				.: (0.000594)
|     test_set_shorthand:					.: (0.000141)
|   Psych::TestStream: 
|     test_explicit_documents:				.: (0.000258)
|     test_load_partial:					.: (0.000136)
|     test_load_stream_break:				.: (0.000125)
|     test_load_stream_yields_documents:			.: (0.000150)
|     test_no_backreferences:				.: (0.000207)
|     test_parse_partial:					.: (0.000166)
|     test_parse_stream_break:				.: (0.000159)
|     test_parse_stream_yields_documents:			.: (0.000131)
|     test_predicate_alias?:				.: (0.000160)
|     test_predicate_document?:				.: (0.000132)
|     test_predicate_mapping?:				.: (0.000130)
|     test_predicate_scalar?:				.: (0.000157)
|     test_predicate_sequence?:				.: (0.000165)
|     test_predicate_stream?:				.: (0.000164)
|     test_start_takes_block:				.: (0.000139)
|   Psych::TestString: 
|     test_another_subclass_with_attributes:		.: (0.000390)
|     test_ascii_only_8bit_string:			.: (0.000385)
|     test_ascii_only_binary_string:			.: (0.000228)
|     test_backwards_with_syck:				.: (0.000163)
|     test_binary:					.: (0.000393)
|     test_binary_string:					.: (0.000202)
|     test_binary_string_null:				.: (0.000166)
|     test_cycle_x:					.: (0.000474)
|     test_dash_dot:					.: (0.000602)
|     test_doublequotes_when_there_is_a_single:		.: (0.000171)
|     test_empty_character_subclass:			.: (0.000324)
|     test_empty_subclass:				.: (0.000271)
|     test_float_confusion:				.: (0.000374)
|     test_float_with_no_fractional_before_exponent:	.: (0.000381)
|     test_folded_strip_when_longer_than_line_width_and_no_newlines:	.: (0.000227)
|     test_folded_when_longer_than_line_width_and_with_final_line_break:	.: (0.000236)
|     test_literal_strip_when_inner_line_break_and_no_final_line_break:	.: (0.000319)
|     test_literal_when_inner_and_final_line_break:	.: (0.000290)
|     test_no_doublequotes_with_special_characters:	.: (0.000136)
|     test_no_quotes_when_start_with_non_ascii_character:	.: (0.000187)
|     test_nonascii_string_as_binary:			.: (0.000169)
|     test_plain_when_shorten_than_line_width_and_no_final_line_break:	.: (0.000181)
|     test_plain_when_shorten_than_line_width_and_with_final_line_break:	.: (0.000171)
|     test_self_referential_string:			.: (0.000174)
|     test_string_subclass_with_anchor:			.: (0.000177)
|     test_string_with_base_60:				.: (0.000194)
|     test_string_with_ivars:				.: (0.000160)
|     test_string_with_newline:				.: (0.000111)
|     test_subclass_with_attributes:			.: (0.000265)
|   Psych::TestStruct: 
|     test_load:						.: (0.000348)
|     test_roundtrip:					.: (0.000369)
|     test_self_referential_struct:			.: (0.000303)
|   Psych::TestSymbol: 
|     test_cycle:						.: (0.000467)
|     test_cycle_colon:					.: (0.000376)
|     test_cycle_empty:					.: (0.000352)
|     test_load_quoted:					.: (0.000124)
|     test_stringy:					.: (0.000448)
|   Psych::TestTreeBuilder: 
|     test_alias:						.: (0.000253)
|     test_documents:					.: (0.000173)
|     test_mapping:					.: (0.000141)
|     test_scalar:					.: (0.000178)
|     test_sequence:					.: (0.000165)
|     test_stream:					.: (0.000138)
|   Psych::TestYamlSpecialCases: 
|     test_0xC:						.: (0.000418)
|     test_8:						.: (0.000418)
|     test_NaN:						.: (0.000298)
|     test_arrows:					.: (0.000301)
|     test_arrows_hash:					.: (0.000384)
|     test_empty_string:					.: (0.000198)
|     test_false:						.: (0.000440)
|     test_inf:						.: (0.000292)
|     test_n:						.: (0.000301)
|     test_null:						.: (0.000297)
|     test_off:						.: (0.000301)
|     test_thousand:					.: (0.000467)
|   Psych::Visitors::TestDepthFirst: 
|     test_alias:						.: (0.000247)
|     test_mapping:					.: (0.000102)
|     test_scalar:					.: (0.000187)
|     test_sequence:					.: (0.000093)
|   Psych::Visitors::TestEmitter: 
|     test_alias:						.: (0.000208)
|     test_document:					.: (0.000109)
|     test_document_implicit_end:				.: (0.000153)
|     test_mapping:					.: (0.000113)
|     test_options:					.: (0.000131)
|     test_scalar:					.: (0.000110)
|     test_scalar_with_tag:				.: (0.000129)
|     test_sequence:					.: (0.000117)
|     test_stream:					.: (0.000073)
|   Psych::Visitors::TestToRuby: 
|     test_alias:						.: (0.000293)
|     test_anon_struct:					.: (0.000161)
|     test_anon_struct_legacy:				.: (0.000142)
|     test_binary:					.: (0.000172)
|     test_boolean_false:					.: (0.000341)
|     test_boolean_true:					.: (0.000374)
|     test_complex:					.: (0.000287)
|     test_complex_string:				.: (0.000127)
|     test_date:						.: (0.000151)
|     test_document:					.: (0.000095)
|     test_exception:					.: (0.000141)
|     test_exp_float:					.: (0.000126)
|     test_float:						.: (0.000315)
|     test_float_ignore:					.: (0.000236)
|     test_int_ignore:					.: (0.000199)
|     test_integer:					.: (0.000192)
|     test_legacy_struct:					.: (0.001998)
|     test_mapping:					.: (0.000102)
|     test_mapping_with_str_tag:				.: (0.000135)
|     test_object:					.: (0.000125)
|     test_range_string:					.: (0.000131)
|     test_range_string_triple:				.: (0.000129)
|     test_rational:					.: (0.000138)
|     test_rational_string:				.: (0.000096)
|     test_regexp:					.: (0.000193)
|     test_scalar:					.: (0.000104)
|     test_sequence:					.: (0.000146)
|     test_stream:					.: (0.000111)
|     test_struct:					.: (0.000199)
|     test_time:						.: (0.000232)
|     test_time_utc:					.: (0.000159)
|     test_time_utc_no_z:					.: (0.000134)
|     test_tz_00_00_loads_without_error:			.: (0.000175)
|   Psych::Visitors::TestYAMLTree: 
|     test_anon_class:					.: (0.000442)
|     test_binary_formatting:				.: (0.000126)
|     test_boolean:					.: (0.001030)
|     test_complex:					.: (0.000529)
|     test_date:						.: (0.000717)
|     test_delegator:					.: (0.000731)
|     test_exception:					.: (0.000307)
|     test_float:						.: (0.000842)
|     test_hash:						.: (0.000631)
|     test_int:						.: (0.001103)
|     test_list:						.: (0.000812)
|     test_nil:						.: (0.001475)
|     test_object_has_no_class:				.: (0.000184)
|     test_override_method:				.: (0.000254)
|     test_range_exclusive:				.: (0.000589)
|     test_range_inclusive:				.: (0.000708)
|     test_rational:					.: (0.000460)
|     test_regexp:					.: (0.000943)
|     test_scalar:					.: (0.001239)
|     test_simple_delegator:				.: (0.000724)
|     test_string:					.: (0.000396)
|     test_struct:					.: (0.000600)
|     test_struct_anon:					.: (0.000396)
|     test_struct_const:					.: (0.000798)
|     test_symbol:					.: (0.000531)
|     test_time:						.: (0.000291)
|     test_tree_can_be_called_twice:			.: (0.000155)
|     test_yaml_tree_can_take_an_emitter:			.: (0.000189)
|   Psych::YAMLDBMTest: 
|     test_delete:					.: (0.002070)
|     test_delete_if:					.: (0.002045)
|     test_fetch:						.: (0.001564)
|     test_has_value?:					.: (0.001576)
|     test_invert:					.: (0.001372)
|     test_key:						.: (0.001680)
|     test_reject:					.: (0.001773)
|     test_replace:					.: (0.001591)
|     test_selsct:					.: (0.001466)
|     test_selsct_with_block:				.: (0.001683)
|     test_shift:						.: (0.001598)
|     test_store:						.: (0.001495)
|     test_store_using_carret:				.: (0.001419)
|     test_to_a:						.: (0.001337)
|     test_to_hash:					.: (0.001395)
|     test_update:					.: (0.001637)
|     test_values:					.: (0.001352)
|     test_values_at:					.: (0.001322)
|   Psych::YAMLStoreTest: 
|     test_changes_after_commit_are_discarded:		.: (0.001117)
|     test_changes_are_not_written_on_abort:		.: (0.000697)
|     test_data_should_be_loaded_correctly_when_in_readonly_mode:	.: (0.000857)
|     test_data_should_be_loaded_correctly_when_in_readwrite_mode:.: (0.001084)
|     test_opening_new_file_in_readonly_mode_should_result_in_empty_values:	.: (0.000426)
|     test_opening_new_file_in_readwrite_mode_should_result_in_empty_values:	.: (0.000702)
|     test_writing_inside_readonly_transaction_raises_error:	.: (0.000497)
|   Psych_Unit_Tests: 
|     test_akira:						.: (0.003885)
|     test_ambiguous_comments:				.: (0.000514)
|     test_basic_map:					.: (0.000251)
|     test_basic_strings:					.: (0.001167)
|     test_circular_references:				.: (0.000186)
|     test_date_out_of_range:				.: (0.000142)
|     test_emitting_indicators:				.: (0.000486)
|     test_empty_map_key:					.: (0.000710)
|     test_multiline_regexp:				.: (0.000369)
|     test_multiline_string_uses_literal_style:		.: (0.000117)
|     test_normal_exit:					.: (0.000315)
|     test_numeric_cycle:					.: (0.001226)
|     test_object_id_collision:				.: (0.025770)
|     test_range_cycle:					.: (0.005377)
|     test_ranges:					.: (0.002237)
|     test_regexp_with_n:					.: (0.000390)
|     test_ruby_complex:					.: (0.001316)
|     test_ruby_rational:					.: (0.001066)
|     test_ruby_regexp:					.: (0.001451)
|     test_ruby_struct:					.: (0.004035)
|     test_spec_anchors_and_aliases:			.: (0.003096)
|     test_spec_application_family:			.: (0.000579)
|     test_spec_builtin_binary:				.: (0.000291)
|     test_spec_builtin_literal_blocks:			.: (0.000492)
|     test_spec_builtin_map:				.: (0.000753)
|     test_spec_builtin_seq:				.: (0.000341)
|     test_spec_builtin_time:				.: (0.000550)
|     test_spec_complex_invoice:				.: (0.000792)
|     test_spec_domain_prefix:				.: (0.000357)
|     test_spec_explicit_families:			.: (0.000298)
|     test_spec_float_explicit:				.: (0.000262)
|     test_spec_force_implicit:				.: (0.000266)
|     test_spec_indentation_determines_scope:		.: (0.000282)
|     test_spec_log_file:					.: (0.000573)
|     test_spec_mapping_between_sequences:		.: (0.000725)
|     test_spec_mapping_of_mappings:			.: (0.000320)
|     test_spec_multiline_scalars:			.: (0.000229)
|     test_spec_nested_comments:				.: (0.000282)
|     test_spec_oneline_docs:				.: (0.000196)
|     test_spec_override_anchor:				.: (0.000251)
|     test_spec_preserve_indent:				.: (0.000220)
|     test_spec_root_fold:				.: (0.000145)
|     test_spec_root_mapping:				.: (0.000218)
|     test_spec_sequence_in_sequence_shortcut:		.: (0.000238)
|     test_spec_sequence_key_shortcut:			.: (0.000449)
|     test_spec_sequence_of_sequences:			.: (0.000304)
|     test_spec_sequence_shortcuts:			.: (0.000352)
|     test_spec_simple_implicit_map:			.: (0.000794)
|     test_spec_simple_implicit_sequence:			.: (0.000579)
|     test_spec_simple_map_with_nested_sequences:		.: (0.000820)
|     test_spec_simple_sequence_with_nested_map:		.: (0.001040)
|     test_spec_single_folded:				.: (0.000209)
|     test_spec_single_literal:				.: (0.000162)
|     test_spec_span_double_quote:			.: (0.000269)
|     test_spec_span_single_quote:			.: (0.000248)
|     test_spec_throwaway:				.: (0.000181)
|     test_spec_type_float:				.: (0.000318)
|     test_spec_type_int:					.: (0.000527)
|     test_spec_type_misc:				.: (0.000239)
|     test_string_dump_starting_with_star:		F
| ===============================================================================
| Failure: test_string_dump_starting_with_star(Psych_Unit_Tests):
|   <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
|   <"!"> was expected to be instance_of?
|   <Regexp> but was
|   <String>.
| /<<PKGBUILDDIR>>/test/psych/test_yaml.rb:1292:in `test_string_dump_starting_with_star'
|      1289: 
|      1290:     def test_string_dump_starting_with_star
|      1291:       yaml = Psych.dump '*foo'
|   => 1292:       refute_match '!', yaml
|      1293:     end
|      1294: end
| ===============================================================================
| : (0.001936)
|     test_string_dump_with_colon:			F
| ===============================================================================
| Failure: test_string_dump_with_colon(Psych_Unit_Tests):
|   <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
|   <"!"> was expected to be instance_of?
|   <Regexp> but was
|   <String>.
| /<<PKGBUILDDIR>>/test/psych/test_yaml.rb:1287:in `test_string_dump_with_colon'
|      1284: 
|      1285:     def test_string_dump_with_colon
|      1286:       yaml = Psych.dump 'x: foo'
|   => 1287:       refute_match '!', yaml
|      1288:     end
|      1289: 
|      1290:     def test_string_dump_starting_with_star
| ===============================================================================
| : (0.002083)
|     test_string_starting_with_non_word_character_uses_double_quotes_without_exclamation_mark:	F
| ===============================================================================
| Failure: test_string_starting_with_non_word_character_uses_double_quotes_without_exclamation_mark(Psych_Unit_Tests):
|   <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
|   <"!"> was expected to be instance_of?
|   <Regexp> but was
|   <String>.
| /<<PKGBUILDDIR>>/test/psych/test_yaml.rb:1282:in `test_string_starting_with_non_word_character_uses_double_quotes_without_exclamation_mark'
|      1279: 
|      1280:     def test_string_starting_with_non_word_character_uses_double_quotes_without_exclamation_mark
|      1281:       yaml = Psych.dump("@123'abc")
|   => 1282:       refute_match("!", yaml)
|      1283:     end
|      1284: 
|      1285:     def test_string_dump_with_colon
| ===============================================================================
| : (0.001281)
|     test_syck_compat:					.: (0.000186)
|     test_symbol_cycle:					.: (0.000420)
|     test_time_now_cycle:				.: (0.002126)
|     test_y_method:					.: (0.000165)
|   TestPsych: 
|     test_add_builtin_type:				.: (0.000430)
|     test_callbacks:					.: (0.000156)
|     test_canonical:					.: (0.000197)
|     test_degenerate_strings:				.: (0.000153)
|     test_domain_types:					.: (0.000280)
|     test_dump_file:					.: (0.000562)
|     test_dump_io:					.: (0.000236)
|     test_dump_stream:					.: (0.000264)
|     test_header:					.: (0.000185)
|     test_indent:					.: (0.000242)
|     test_libyaml_version:				.: (0.000286)
|     test_line_width_invalid:				.: (0.000093)
|     test_line_width_limit:				.: (0.000205)
|     test_line_width_no_limit:				.: (0.000155)
|     test_load_argument_error:				.: (0.000093)
|     test_load_default_fallback:				.: (0.000082)
|     test_load_file:					.: (0.000404)
|     test_load_file_default_fallback:			.: (0.000244)
|     test_load_file_freeze:				.: (0.000330)
|     test_load_file_symbolize_names:			.: (0.000395)
|     test_load_file_with_fallback:			.: (0.000254)
|     test_load_file_with_fallback_for_false:		.: (0.000286)
|     test_load_file_with_fallback_for_nil:		.: (0.000274)
|     test_load_file_with_fallback_hash:			.: (0.000230)
|     test_load_file_with_fallback_nil_or_false:		.: (0.000515)
|     test_load_freeze:					.: (0.000222)
|     test_load_freeze_deduplication:			.: (0.000143)
|     test_load_stream:					.: (0.000155)
|     test_load_stream_default_fallback:			.: (0.000102)
|     test_load_stream_freeze:				.: (0.000189)
|     test_load_stream_raises_on_bad_input:		.: (0.000133)
|     test_load_stream_symbolize_names:			.: (0.000152)
|     test_load_with_fallback:				.: (0.000102)
|     test_load_with_fallback_for_false:			.: (0.000126)
|     test_load_with_fallback_for_nil:			.: (0.000117)
|     test_load_with_fallback_hash:			.: (0.000094)
|     test_load_with_fallback_nil_or_false:		.: (0.000119)
|     test_non_existing_class_on_deserialize:		.: (0.000245)
|     test_parse:						.: (0.000159)
|     test_parse_default_fallback:			.: (0.000093)
|     test_parse_file:					.: (0.000388)
|     test_parse_file_default_fallback:			.: (0.000334)
|     test_parse_raises_on_bad_input:			.: (0.000128)
|     test_parse_stream:					.: (0.000157)
|     test_parse_stream_default_fallback:			.: (0.000093)
|     test_parse_stream_raises_on_bad_input:		.: (0.000116)
|     test_parse_stream_with_block:			.: (0.000151)
|     test_parse_stream_with_block_default_fallback:	.: (0.000099)
|     test_parse_with_fallback:				.: (0.000094)
|     test_safe_load_file_with_permitted_classe:		.: (0.000627)
|     test_simple:					.: (0.000139)
|     test_symbolize_names:				.: (0.000652)
|     test_version_array:					.: (0.000210)
|     test_version_bool:					.: (0.000192)
|     test_version_string:				.: (0.000183)
| TestPsychRactor: 
|   test_not_shareable:					.: (0.110911)
|   test_ractor_config:					.: (0.106734)
|   test_ractor_constants:				.: (0.105505)
|   test_ractor_round_trip:				.: (0.117423)
| 
| Finished in 0.736241795 seconds.
| -------------------------------------------------------------------------------
| 598 tests, 1497 assertions, 7 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications
| 98.8294% passed
| -------------------------------------------------------------------------------
| 812.23 tests/s, 2033.30 assertions/s
| rake aborted!
| Command failed with status (1): [ruby -w -I"test/lib:test" -rhelper /usr/share/rubygems-integration/all/gems/rake-13.0.6/lib/rake/rake_test_loader.rb "test/psych/handlers/test_recorder.rb" "test/psych/json/test_stream.rb" "test/psych/nodes/test_enumerable.rb" "test/psych/test_alias_and_anchor.rb" "test/psych/test_array.rb" "test/psych/test_boolean.rb" "test/psych/test_class.rb" "test/psych/test_coder.rb" "test/psych/test_date_time.rb" "test/psych/test_deprecated.rb" "test/psych/test_document.rb" "test/psych/test_emitter.rb" "test/psych/test_encoding.rb" "test/psych/test_exception.rb" "test/psych/test_hash.rb" "test/psych/test_json_tree.rb" "test/psych/test_marshalable.rb" "test/psych/test_merge_keys.rb" "test/psych/test_nil.rb" "test/psych/test_null.rb" "test/psych/test_numeric.rb" "test/psych/test_object.rb" "test/psych/test_object_references.rb" "test/psych/test_omap.rb" "test/psych/test_parser.rb" "test/psych/test_psych.rb" "test/psych/test_ractor.rb" "test/psych/test_safe_load.rb" "test/psych/test_scalar.rb" "test/psych/test_scalar_scanner.rb" "test/psych/test_serialize_subclasses.rb" "test/psych/test_set.rb" "test/psych/test_stream.rb" "test/psych/test_string.rb" "test/psych/test_struct.rb" "test/psych/test_symbol.rb" "test/psych/test_tree_builder.rb" "test/psych/test_yaml.rb" "test/psych/test_yaml_special_cases.rb" "test/psych/test_yamldbm.rb" "test/psych/test_yamlstore.rb" "test/psych/visitors/test_depth_first.rb" "test/psych/visitors/test_emitter.rb" "test/psych/visitors/test_to_ruby.rb" "test/psych/visitors/test_yaml_tree.rb" -v]
| /usr/share/rubygems-integration/all/gems/rake-13.0.6/exe/rake:27:in `<top (required)>'
| Tasks: TOP => default
| (See full trace by running task with --trace)
| ERROR: Test "ruby3.0" failed. Exiting.
| dh_auto_install: error: dh_ruby --install /<<PKGBUILDDIR>>/debian/tmp returned exit code 1
| make: *** [debian/rules:11: binary] Error 25
| dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
| --------------------------------------------------------------------------------
| Build finished at 2022-03-30T19:33:06Z

Best regards,
Flo
-------------- next part --------------
sbuild (Debian sbuild) 0.81.2 (31 January 2021) on fernst.no-ip.org

+==============================================================================+
| ruby-psych (amd64)                           Wed, 30 Mar 2022 19:32:12 +0000 |
+==============================================================================+

Package: ruby-psych
Distribution: unstable
Machine Architecture: amd64
Host Architecture: amd64
Build Architecture: amd64
Build Type: full

I: NOTICE: Log filtering will replace 'var/run/schroot/mount/unstable-amd64-sbuild-60a69331-4251-4a38-ab33-5bf1f2a88f71' with '<<CHROOT>>'
I: NOTICE: Log filtering will replace 'build/ruby-psych-WAeV4q/resolver-EVAjoS' with '<<RESOLVERDIR>>'

+------------------------------------------------------------------------------+
| Update chroot                                                                |
+------------------------------------------------------------------------------+

Hit:1 http://127.0.0.1:3142/deb.debian.org/debian unstable InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

+------------------------------------------------------------------------------+
| Fetch source files                                                           |
+------------------------------------------------------------------------------+


Check APT
---------

Checking available source versions...

Download source files with APT
------------------------------

Reading package lists...
NOTICE: 'ruby-psych' packaging is maintained in the 'Git' version control system at:
https://salsa.debian.org/ruby-team/ruby-psych.git
Please use:
git clone https://salsa.debian.org/ruby-team/ruby-psych.git
to retrieve the latest (possibly unreleased) updates to the package.
Need to get 158 kB of source archives.
Get:1 http://127.0.0.1:3142/deb.debian.org/debian unstable/main ruby-psych 3.3.2-1 (dsc) [2251 B]
Get:2 http://127.0.0.1:3142/deb.debian.org/debian unstable/main ruby-psych 3.3.2-1 (tar) [146 kB]
Get:3 http://127.0.0.1:3142/deb.debian.org/debian unstable/main ruby-psych 3.3.2-1 (diff) [9536 B]
Fetched 158 kB in 0s (0 B/s)
Download complete and in download only mode
I: NOTICE: Log filtering will replace 'build/ruby-psych-WAeV4q/ruby-psych-3.3.2' with '<<PKGBUILDDIR>>'
I: NOTICE: Log filtering will replace 'build/ruby-psych-WAeV4q' with '<<BUILDDIR>>'

+------------------------------------------------------------------------------+
| Install package build dependencies                                           |
+------------------------------------------------------------------------------+


Setup apt archive
-----------------

Merged Build-Depends: debhelper-compat (= 13), default-jdk, gem2deb, javahelper, jruby (>= 9.1.6.0~), libbytelist-java, libjcodings-java, libyaml-dev, libyaml-snake-java (>= 1.23~), rake, rake-compiler, build-essential, fakeroot
Filtered Build-Depends: debhelper-compat (= 13), default-jdk, gem2deb, javahelper, jruby (>= 9.1.6.0~), libbytelist-java, libjcodings-java, libyaml-dev, libyaml-snake-java (>= 1.23~), rake, rake-compiler, build-essential, fakeroot
dpkg-deb: building package 'sbuild-build-depends-main-dummy' in '/<<RESOLVERDIR>>/apt_archive/sbuild-build-depends-main-dummy.deb'.
Ign:1 copy:/<<RESOLVERDIR>>/apt_archive ./ InRelease
Get:2 copy:/<<RESOLVERDIR>>/apt_archive ./ Release [957 B]
Ign:3 copy:/<<RESOLVERDIR>>/apt_archive ./ Release.gpg
Get:4 copy:/<<RESOLVERDIR>>/apt_archive ./ Sources [453 B]
Get:5 copy:/<<RESOLVERDIR>>/apt_archive ./ Packages [536 B]
Fetched 1946 B in 0s (111 kB/s)
Reading package lists...
Reading package lists...

Install main build dependencies (apt-based resolver)
----------------------------------------------------

Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
  ant autoconf automake autopoint autotools-dev bsdextrautils ca-certificates
  ca-certificates-java dctrl-tools debhelper default-jdk default-jdk-headless
  default-jre default-jre-headless devscripts dh-autoreconf
  dh-strip-nondeterminism dirmngr dwz file fontconfig-config fonts-dejavu-core
  gem2deb gem2deb-test-runner gettext gettext-base gnupg gnupg-l10n
  gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm
  groff-base intltool-debian java-common javahelper jruby junit4
  libarchive-zip-perl libasm-java libasound2 libasound2-data libassuan0
  libavahi-client3 libavahi-common-data libavahi-common3
  libb-hooks-op-check-perl libbrotli1 libbsd0 libbsf-java libbytelist-java
  libclass-method-modifiers-perl libclass-xsaccessor-perl libcups2 libdbus-1-3
  libdebhelper-perl libdevel-callchecker-perl libdirgra-java libdrm-amdgpu1
  libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2
  libdynaloader-functions-perl libedit2 libelf1 libencode-locale-perl
  libexpat1 libfile-dirlist-perl libfile-homedir-perl libfile-listing-perl
  libfile-stripnondeterminism-perl libfile-touch-perl libfile-which-perl
  libfontconfig1 libfreetype6 libgif7 libgl1 libgl1-mesa-dri libglapi-mesa
  libglib2.0-0 libglvnd0 libglx-mesa0 libglx0 libgmp-dev libgmpxx4ldbl
  libgraphite2-3 libhamcrest-java libharfbuzz0b libhawtjni-runtime-java
  libheadius-options-java libhtml-parser-perl libhtml-tagset-perl
  libhtml-tree-perl libhttp-cookies-perl libhttp-date-perl
  libhttp-message-perl libhttp-negotiate-perl libicu67 libimport-into-perl
  libinvokebinder-java libio-html-perl libio-pty-perl libio-socket-ssl-perl
  libipc-run-perl libjansi-java libjansi-native-java libjcodings-java
  libjffi-java libjffi-jni libjitescript-java libjna-java libjna-jni
  libjna-platform-java libjnr-constants-java libjnr-enxio-java libjnr-ffi-java
  libjnr-netdb-java libjnr-posix-java libjnr-unixsocket-java
  libjnr-x86asm-java libjoda-time-java libjpeg62-turbo libjruby-joni-java
  libjzlib-java libksba8 liblcms2-2 libldap-2.5-0 libllvm13
  liblwp-mediatypes-perl liblwp-protocol-https-perl libmagic-mgc libmagic1
  libmd0 libmodulator-java libmodule-runtime-perl libmoo-perl libmpdec3
  libncursesw6 libnet-http-perl libnet-ssleay-perl libnpth0 libnspr4 libnss3
  libosgi-annotation-java libosgi-core-java libparams-classify-perl
  libpciaccess0 libpcsclite1 libpipeline1 libpng16-16 libpsych-java
  libpython3-stdlib libpython3.10-minimal libpython3.10-stdlib libreadline8
  librole-tiny-perl libruby3.0 libsasl2-2 libsasl2-modules-db
  libsensors-config libsensors5 libsigsegv2 libsqlite3-0 libsub-override-perl
  libsub-quote-perl libtimedate-perl libtool libtry-tiny-perl libuchardet0
  libunsafe-fences-java libunsafe-mock-java liburi-perl libvulkan1 libwww-perl
  libwww-robotrules-perl libx11-6 libx11-data libx11-xcb1 libxau6
  libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-shm0
  libxcb-sync1 libxcb-xfixes0 libxcb1 libxdmcp6 libxext6 libxfixes3 libxi6
  libxml2 libxrender1 libxshmfence1 libxtst6 libxxf86vm1 libyaml-0-2
  libyaml-dev libyaml-snake-java libz3-4 m4 man-db media-types nailgun netbase
  openjdk-11-jdk openjdk-11-jdk-headless openjdk-11-jre
  openjdk-11-jre-headless openssl patchutils perl-openssl-defaults
  pinentry-curses po-debconf python3 python3-minimal python3.10
  python3.10-minimal rake rake-compiler readline-common ruby ruby-all-dev
  ruby-diff-lcs ruby-jar-dependencies ruby-net-telnet ruby-rspec
  ruby-rspec-core ruby-rspec-expectations ruby-rspec-mocks ruby-rspec-support
  ruby-rubygems ruby-xmlrpc ruby3.0 ruby3.0-dev rubygems-integration
  sensible-utils ucf wdiff x11-common
Suggested packages:
  ant-doc autoconf-archive gnu-standards autoconf-doc debtags dh-make adequate
  at autopkgtest bls-standalone bsd-mailx | mailx check-all-the-things
  cvs-buildpackage diffoscope disorderfs dose-extra duck elpa-devscripts
  faketime gnuplot how-can-i-help libauthen-sasl-perl libdbd-pg-perl
  libfile-desktopentry-perl libnet-smtps-perl libterm-size-perl
  libyaml-syck-perl mmdebstrap mozilla-devscripts mutt piuparts
  postgresql-client pristine-lfs quilt ratt reprotest ssh-client
  svn-buildpackage w3m dbus-user-session libpam-systemd pinentry-gnome3 tor
  git-buildpackage pristine-tar gettext-doc libasprintf-dev libgettextpo-dev
  parcimonie xloadimage scdaemon groff libasound2-plugins alsa-utils bsh
  libxalan2-java rhino cups-common gmp-doc libgmp10-doc libmpfr-dev
  libheadius-options-java-doc libdata-dump-perl libinvokebinder-java-doc
  libjna-java-doc libjnr-enxio-java-doc libjnr-ffi-java-doc
  libjnr-netdb-java-doc libjnr-posix-java-doc libjoda-convert-java
  libjoda-time-java-doc liblcms2-utils libcrypt-ssleay-perl
  libosgi-annotation-java-doc libosgi-core-java-doc libscalar-number-perl
  pciutils pcscd lm-sensors libtool-doc gfortran | fortran95-compiler gcj-jdk
  libsub-name-perl libbusiness-isbn-perl libauthen-ntlm-perl libyaml-doc
  m4-doc apparmor less www-browser openjdk-11-demo openjdk-11-source visualvm
  libnss-mdns fonts-dejavu-extra fonts-ipafont-gothic fonts-ipafont-mincho
  fonts-wqy-microhei | fonts-wqy-zenhei fonts-indic pinentry-doc
  libmail-box-perl python3-doc python3-tk python3-venv python3.10-venv
  python3.10-doc binfmt-support readline-doc ri ruby-dev bundler wdiff-doc
Recommended packages:
  ant-optional dput | dupload libdistro-info-perl libgit-wrapper-perl
  libgitlab-api-v4-perl liblist-compare-perl libstring-shellquote-perl
  licensecheck lintian python3-apt python3-debian python3-magic
  python3-requests python3-unidiff python3-xdg strace unzip wget | curl
  debian-keyring equivs libsoap-lite-perl pristine-tar gnupg apt-file curl
  | wget | lynx jruby-openssl ri alsa-ucm-conf alsa-topology-conf dbus
  libarchive-cpio-perl libglib2.0-data shared-mime-info xdg-user-dirs
  libhtml-format-perl libclone-perl libldap-common libnamespace-clean-perl
  libgpm2 libsasl2-modules libltdl-dev mesa-vulkan-drivers | vulkan-icd
  libdata-dump-perl libhtml-form-perl libhttp-daemon-perl libmailtools-perl
  libxt-dev libatk-wrapper-java-jni fonts-dejavu-extra libmail-sendmail-perl
  zip fonts-lato libjs-jquery ruby3.0-doc
The following NEW packages will be installed:
  ant autoconf automake autopoint autotools-dev bsdextrautils ca-certificates
  ca-certificates-java dctrl-tools debhelper default-jdk default-jdk-headless
  default-jre default-jre-headless devscripts dh-autoreconf
  dh-strip-nondeterminism dirmngr dwz file fontconfig-config fonts-dejavu-core
  gem2deb gem2deb-test-runner gettext gettext-base gnupg gnupg-l10n
  gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm
  groff-base intltool-debian java-common javahelper jruby junit4
  libarchive-zip-perl libasm-java libasound2 libasound2-data libassuan0
  libavahi-client3 libavahi-common-data libavahi-common3
  libb-hooks-op-check-perl libbrotli1 libbsd0 libbsf-java libbytelist-java
  libclass-method-modifiers-perl libclass-xsaccessor-perl libcups2 libdbus-1-3
  libdebhelper-perl libdevel-callchecker-perl libdirgra-java libdrm-amdgpu1
  libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2
  libdynaloader-functions-perl libedit2 libelf1 libencode-locale-perl
  libexpat1 libfile-dirlist-perl libfile-homedir-perl libfile-listing-perl
  libfile-stripnondeterminism-perl libfile-touch-perl libfile-which-perl
  libfontconfig1 libfreetype6 libgif7 libgl1 libgl1-mesa-dri libglapi-mesa
  libglib2.0-0 libglvnd0 libglx-mesa0 libglx0 libgmp-dev libgmpxx4ldbl
  libgraphite2-3 libhamcrest-java libharfbuzz0b libhawtjni-runtime-java
  libheadius-options-java libhtml-parser-perl libhtml-tagset-perl
  libhtml-tree-perl libhttp-cookies-perl libhttp-date-perl
  libhttp-message-perl libhttp-negotiate-perl libicu67 libimport-into-perl
  libinvokebinder-java libio-html-perl libio-pty-perl libio-socket-ssl-perl
  libipc-run-perl libjansi-java libjansi-native-java libjcodings-java
  libjffi-java libjffi-jni libjitescript-java libjna-java libjna-jni
  libjna-platform-java libjnr-constants-java libjnr-enxio-java libjnr-ffi-java
  libjnr-netdb-java libjnr-posix-java libjnr-unixsocket-java
  libjnr-x86asm-java libjoda-time-java libjpeg62-turbo libjruby-joni-java
  libjzlib-java libksba8 liblcms2-2 libldap-2.5-0 libllvm13
  liblwp-mediatypes-perl liblwp-protocol-https-perl libmagic-mgc libmagic1
  libmd0 libmodulator-java libmodule-runtime-perl libmoo-perl libmpdec3
  libncursesw6 libnet-http-perl libnet-ssleay-perl libnpth0 libnspr4 libnss3
  libosgi-annotation-java libosgi-core-java libparams-classify-perl
  libpciaccess0 libpcsclite1 libpipeline1 libpng16-16 libpsych-java
  libpython3-stdlib libpython3.10-minimal libpython3.10-stdlib libreadline8
  librole-tiny-perl libruby3.0 libsasl2-2 libsasl2-modules-db
  libsensors-config libsensors5 libsigsegv2 libsqlite3-0 libsub-override-perl
  libsub-quote-perl libtimedate-perl libtool libtry-tiny-perl libuchardet0
  libunsafe-fences-java libunsafe-mock-java liburi-perl libvulkan1 libwww-perl
  libwww-robotrules-perl libx11-6 libx11-data libx11-xcb1 libxau6
  libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-shm0
  libxcb-sync1 libxcb-xfixes0 libxcb1 libxdmcp6 libxext6 libxfixes3 libxi6
  libxml2 libxrender1 libxshmfence1 libxtst6 libxxf86vm1 libyaml-0-2
  libyaml-dev libyaml-snake-java libz3-4 m4 man-db media-types nailgun netbase
  openjdk-11-jdk openjdk-11-jdk-headless openjdk-11-jre
  openjdk-11-jre-headless openssl patchutils perl-openssl-defaults
  pinentry-curses po-debconf python3 python3-minimal python3.10
  python3.10-minimal rake rake-compiler readline-common ruby ruby-all-dev
  ruby-diff-lcs ruby-jar-dependencies ruby-net-telnet ruby-rspec
  ruby-rspec-core ruby-rspec-expectations ruby-rspec-mocks ruby-rspec-support
  ruby-rubygems ruby-xmlrpc ruby3.0 ruby3.0-dev rubygems-integration
  sbuild-build-depends-main-dummy sensible-utils ucf wdiff x11-common
0 upgraded, 246 newly installed, 0 to remove and 0 not upgraded.
Need to get 409 MB of archives.
After this operation, 826 MB of additional disk space will be used.
Get:1 copy:/<<RESOLVERDIR>>/apt_archive ./ sbuild-build-depends-main-dummy 0.invalid.0 [960 B]
Get:2 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libpython3.10-minimal amd64 3.10.4-1 [823 kB]
Get:3 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libexpat1 amd64 2.4.8-1 [109 kB]
Get:4 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 python3.10-minimal amd64 3.10.4-1 [1984 kB]
Get:5 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 python3-minimal amd64 3.10.4-1 [38.6 kB]
Get:6 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 media-types all 7.0.0 [32.9 kB]
Get:7 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libmpdec3 amd64 2.5.1-2 [87.8 kB]
Get:8 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libncursesw6 amd64 6.3-2 [133 kB]
Get:9 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 readline-common all 8.1.2-1 [73.8 kB]
Get:10 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libreadline8 amd64 8.1.2-1 [168 kB]
Get:11 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libsqlite3-0 amd64 3.38.2-1 [829 kB]
Get:12 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libpython3.10-stdlib amd64 3.10.4-1 [1704 kB]
Get:13 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 python3.10 amd64 3.10.4-1 [536 kB]
Get:14 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libpython3-stdlib amd64 3.10.4-1 [21.7 kB]
Get:15 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 python3 amd64 3.10.4-1 [38.1 kB]
Get:16 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 netbase all 6.3 [19.9 kB]
Get:17 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 sensible-utils all 0.0.17 [21.5 kB]
Get:18 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 openssl amd64 1.1.1n-1 [853 kB]
Get:19 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ca-certificates all 20211016 [156 kB]
Get:20 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libmagic-mgc amd64 1:5.41-3 [295 kB]
Get:21 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libmagic1 amd64 1:5.41-3 [130 kB]
Get:22 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 file amd64 1:5.41-3 [67.0 kB]
Get:23 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gettext-base amd64 0.21-6 [175 kB]
Get:24 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libuchardet0 amd64 0.0.7-1 [67.8 kB]
Get:25 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 groff-base amd64 1.22.4-8 [936 kB]
Get:26 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 bsdextrautils amd64 2.37.3-1+b1 [144 kB]
Get:27 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libpipeline1 amd64 1.5.5-1 [37.6 kB]
Get:28 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 man-db amd64 2.10.2-1 [1411 kB]
Get:29 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ucf all 3.0043 [74.0 kB]
Get:30 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libnspr4 amd64 2:4.32-3 [113 kB]
Get:31 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libnss3 amd64 2:3.75-1 [1325 kB]
Get:32 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ca-certificates-java all 20190909 [15.7 kB]
Get:33 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 java-common all 0.72 [14.5 kB]
Get:34 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libavahi-common-data amd64 0.8-5 [124 kB]
Get:35 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libavahi-common3 amd64 0.8-5 [58.4 kB]
Get:36 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libdbus-1-3 amd64 1.14.0-1 [235 kB]
Get:37 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libavahi-client3 amd64 0.8-5 [62.1 kB]
Get:38 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libcups2 amd64 2.4.1op1-2 [349 kB]
Get:39 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 liblcms2-2 amd64 2.12~rc1-2 [150 kB]
Get:40 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjpeg62-turbo amd64 1:2.1.2-1 [164 kB]
Get:41 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libbrotli1 amd64 1.0.9-2+b3 [276 kB]
Get:42 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB]
Get:43 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libfreetype6 amd64 2.11.1+dfsg-1 [400 kB]
Get:44 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB]
Get:45 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 fontconfig-config all 2.13.1-4.4 [281 kB]
Get:46 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libfontconfig1 amd64 2.13.1-4.4 [350 kB]
Get:47 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libasound2-data all 1.2.6.1-2 [38.8 kB]
Get:48 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libasound2 amd64 1.2.6.1-2+b1 [374 kB]
Get:49 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libglib2.0-0 amd64 2.72.0-1 [1427 kB]
Get:50 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB]
Get:51 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libharfbuzz0b amd64 2.7.4-1 [1471 kB]
Get:52 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libpcsclite1 amd64 1.9.5-3 [60.1 kB]
Get:53 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 openjdk-11-jre-headless amd64 11.0.14.1+1-1 [37.3 MB]
Get:54 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 default-jre-headless amd64 2:1.11-72 [10.9 kB]
Get:55 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ant all 1.10.12-1 [2123 kB]
Get:56 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libsigsegv2 amd64 2.14-1 [37.2 kB]
Get:57 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 m4 amd64 1.4.18-5 [204 kB]
Get:58 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 autoconf all 2.71-2 [343 kB]
Get:59 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 autotools-dev all 20220109.1 [51.6 kB]
Get:60 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 automake all 1:1.16.5-1.3 [823 kB]
Get:61 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 autopoint all 0.21-6 [510 kB]
Get:62 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 dctrl-tools amd64 2.24-3+b1 [104 kB]
Get:63 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libdebhelper-perl all 13.6 [193 kB]
Get:64 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libtool all 2.4.7-2 [526 kB]
Get:65 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 dh-autoreconf all 20 [17.1 kB]
Get:66 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libarchive-zip-perl all 1.68-1 [104 kB]
Get:67 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libsub-override-perl all 0.09-2 [10.2 kB]
Get:68 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libfile-stripnondeterminism-perl all 1.13.0-1 [26.6 kB]
Get:69 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 dh-strip-nondeterminism all 1.13.0-1 [15.8 kB]
Get:70 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libelf1 amd64 0.186-1 [179 kB]
Get:71 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 dwz amd64 0.14-1 [98.3 kB]
Get:72 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libicu67 amd64 67.1-7 [8622 kB]
Get:73 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxml2 amd64 2.9.13+dfsg-1 [709 kB]
Get:74 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gettext amd64 0.21-6 [1310 kB]
Get:75 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 intltool-debian all 0.35.0+20060710.5 [26.8 kB]
Get:76 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 po-debconf all 1.0.21+nmu1 [248 kB]
Get:77 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 debhelper all 13.6 [1054 kB]
Get:78 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libglvnd0 amd64 1.4.0-1 [51.0 kB]
Get:79 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxau6 amd64 1:1.0.9-1 [19.7 kB]
Get:80 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libmd0 amd64 1.0.4-1 [29.6 kB]
Get:81 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libbsd0 amd64 0.11.5-1+b1 [113 kB]
Get:82 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB]
Get:83 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxcb1 amd64 1.14-3 [140 kB]
Get:84 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libx11-data all 2:1.7.2-2 [311 kB]
Get:85 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libx11-6 amd64 2:1.7.2-2+b1 [772 kB]
Get:86 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libdrm-common all 2.4.110-1 [15.4 kB]
Get:87 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libdrm2 amd64 2.4.110-1 [44.7 kB]
Get:88 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libglapi-mesa amd64 21.3.7-1 [74.8 kB]
Get:89 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libx11-xcb1 amd64 2:1.7.2-2+b1 [203 kB]
Get:90 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxcb-dri2-0 amd64 1.14-3 [103 kB]
Get:91 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxcb-dri3-0 amd64 1.14-3 [102 kB]
Get:92 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxcb-glx0 amd64 1.14-3 [118 kB]
Get:93 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxcb-present0 amd64 1.14-3 [101 kB]
Get:94 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxcb-shm0 amd64 1.14-3 [101 kB]
Get:95 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxcb-sync1 amd64 1.14-3 [105 kB]
Get:96 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxcb-xfixes0 amd64 1.14-3 [105 kB]
Get:97 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxext6 amd64 2:1.3.4-1 [53.1 kB]
Get:98 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxfixes3 amd64 1:6.0.0-1 [22.4 kB]
Get:99 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxshmfence1 amd64 1.3-1 [8820 B]
Get:100 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB]
Get:101 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libdrm-amdgpu1 amd64 2.4.110-1 [29.3 kB]
Get:102 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libpciaccess0 amd64 0.16-3 [53.7 kB]
Get:103 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libdrm-intel1 amd64 2.4.110-1 [72.6 kB]
Get:104 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libdrm-nouveau2 amd64 2.4.110-1 [27.5 kB]
Get:105 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libdrm-radeon1 amd64 2.4.110-1 [30.9 kB]
Get:106 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libedit2 amd64 3.1-20210910-1 [97.5 kB]
Get:107 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libz3-4 amd64 4.8.12-1+b1 [6997 kB]
Get:108 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libllvm13 amd64 1:13.0.1-3+b2 [20.1 MB]
Get:109 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libsensors-config all 1:3.6.0-7 [32.3 kB]
Get:110 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libsensors5 amd64 1:3.6.0-7 [52.3 kB]
Get:111 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libvulkan1 amd64 1.3.204.1-2 [113 kB]
Get:112 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libgl1-mesa-dri amd64 21.3.7-1 [10.8 MB]
Get:113 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libglx-mesa0 amd64 21.3.7-1 [184 kB]
Get:114 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libglx0 amd64 1.4.0-1 [33.7 kB]
Get:115 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libgl1 amd64 1.4.0-1 [90.9 kB]
Get:116 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libgif7 amd64 5.1.9-2 [45.1 kB]
Get:117 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxi6 amd64 2:1.8-1 [84.0 kB]
Get:118 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxrender1 amd64 1:0.9.10-1 [33.0 kB]
Get:119 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 x11-common all 1:7.7+23 [252 kB]
Get:120 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB]
Get:121 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 openjdk-11-jre amd64 11.0.14.1+1-1 [175 kB]
Get:122 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 default-jre amd64 2:1.11-72 [1044 B]
Get:123 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 openjdk-11-jdk-headless amd64 11.0.14.1+1-1 [214 MB]
Get:124 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 default-jdk-headless amd64 2:1.11-72 [1100 B]
Get:125 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 openjdk-11-jdk amd64 11.0.14.1+1-1 [6995 kB]
Get:126 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 default-jdk amd64 2:1.11-72 [1056 B]
Get:127 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libassuan0 amd64 2.5.5-1 [51.8 kB]
Get:128 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gpgconf amd64 2.2.27-3+b1 [548 kB]
Get:129 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libksba8 amd64 1.6.0-2 [127 kB]
Get:130 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg-2+b1 [74.5 kB]
Get:131 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libsasl2-2 amd64 2.1.28+dfsg-2+b1 [111 kB]
Get:132 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libldap-2.5-0 amd64 2.5.11+dfsg-1 [226 kB]
Get:133 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libnpth0 amd64 1.6-3 [19.0 kB]
Get:134 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 dirmngr amd64 2.2.27-3+b1 [763 kB]
Get:135 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gnupg-l10n all 2.2.27-3 [1085 kB]
Get:136 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gnupg-utils amd64 2.2.27-3+b1 [905 kB]
Get:137 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gpg amd64 2.2.27-3+b1 [928 kB]
Get:138 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 pinentry-curses amd64 1.1.0-4 [64.9 kB]
Get:139 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gpg-agent amd64 2.2.27-3+b1 [669 kB]
Get:140 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gpg-wks-client amd64 2.2.27-3+b1 [524 kB]
Get:141 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gpg-wks-server amd64 2.2.27-3+b1 [516 kB]
Get:142 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gpgsm amd64 2.2.27-3+b1 [645 kB]
Get:143 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gnupg all 2.2.27-3 [825 kB]
Get:144 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libfile-dirlist-perl all 0.05-2 [7444 B]
Get:145 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libfile-which-perl all 1.23-1 [16.6 kB]
Get:146 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libfile-homedir-perl all 1.006-1 [43.8 kB]
Get:147 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libfile-touch-perl all 0.12-1 [10.5 kB]
Get:148 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libio-pty-perl amd64 1:1.15-2+b1 [37.2 kB]
Get:149 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libipc-run-perl all 20200505.0-1 [102 kB]
Get:150 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libclass-method-modifiers-perl all 2.13-1 [19.2 kB]
Get:151 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libclass-xsaccessor-perl amd64 1.19-3+b8 [37.7 kB]
Get:152 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libb-hooks-op-check-perl amd64 0.22-1+b4 [11.3 kB]
Get:153 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libdynaloader-functions-perl all 0.003-1.1 [12.7 kB]
Get:154 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libdevel-callchecker-perl amd64 0.008-1+b3 [16.0 kB]
Get:155 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libparams-classify-perl amd64 0.015-1+b4 [25.8 kB]
Get:156 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libmodule-runtime-perl all 0.016-1 [19.4 kB]
Get:157 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libimport-into-perl all 1.002005-1 [11.6 kB]
Get:158 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 librole-tiny-perl all 2.002004-1 [21.4 kB]
Get:159 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libsub-quote-perl all 2.006006-1 [21.0 kB]
Get:160 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libmoo-perl all 2.005004-3 [60.5 kB]
Get:161 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libencode-locale-perl all 1.05-1.1 [13.2 kB]
Get:162 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libtimedate-perl all 2.3300-2 [39.3 kB]
Get:163 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libhttp-date-perl all 6.05-1 [10.4 kB]
Get:164 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libfile-listing-perl all 6.14-1 [12.4 kB]
Get:165 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libhtml-tagset-perl all 3.20-4 [13.0 kB]
Get:166 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 liburi-perl all 5.10-1 [91.0 kB]
Get:167 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libhtml-parser-perl amd64 3.77-1 [105 kB]
Get:168 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libhtml-tree-perl all 5.07-2 [213 kB]
Get:169 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libio-html-perl all 1.004-2 [16.1 kB]
Get:170 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 liblwp-mediatypes-perl all 6.04-1 [19.9 kB]
Get:171 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libhttp-message-perl all 6.36-1 [80.6 kB]
Get:172 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libhttp-cookies-perl all 6.10-1 [19.6 kB]
Get:173 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libhttp-negotiate-perl all 6.01-1 [12.8 kB]
Get:174 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 perl-openssl-defaults amd64 5 [7360 B]
Get:175 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libnet-ssleay-perl amd64 1.92-1+b1 [341 kB]
Get:176 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libio-socket-ssl-perl all 2.074-2 [220 kB]
Get:177 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libnet-http-perl all 6.22-1 [25.3 kB]
Get:178 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 liblwp-protocol-https-perl all 6.10-1 [12.2 kB]
Get:179 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libtry-tiny-perl all 0.31-1 [24.2 kB]
Get:180 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libwww-robotrules-perl all 6.02-1 [12.9 kB]
Get:181 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libwww-perl all 6.61-1 [193 kB]
Get:182 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 patchutils amd64 0.4.2-1 [77.5 kB]
Get:183 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 wdiff amd64 1.2.2-2+b1 [122 kB]
Get:184 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 devscripts amd64 2.22.1 [1175 kB]
Get:185 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 rubygems-integration all 1.18 [6704 B]
Get:186 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby-net-telnet all 0.1.1-2 [12.5 kB]
Get:187 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby-xmlrpc all 0.3.2-1 [24.3 kB]
Get:188 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libyaml-0-2 amd64 0.2.2-1 [49.6 kB]
Get:189 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libruby3.0 amd64 3.0.3-1 [5385 kB]
Get:190 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby3.0 amd64 3.0.3-1 [670 kB]
Get:191 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby-rubygems all 3.3.5-2 [289 kB]
Get:192 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby amd64 1:3.0+1 [12.1 kB]
Get:193 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 rake all 13.0.6-3 [83.9 kB]
Get:194 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gem2deb-test-runner amd64 1.8 [27.2 kB]
Get:195 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libgmpxx4ldbl amd64 2:6.2.1+dfsg-3 [338 kB]
Get:196 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libgmp-dev amd64 2:6.2.1+dfsg-3 [640 kB]
Get:197 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby3.0-dev amd64 3.0.3-1 [855 kB]
Get:198 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby-all-dev amd64 1:3.0+1 [12.2 kB]
Get:199 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 gem2deb amd64 1.8 [63.1 kB]
Get:200 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 javahelper all 0.78 [97.2 kB]
Get:201 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libhamcrest-java all 1.3-9 [388 kB]
Get:202 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 junit4 all 4.13.2-1 [348 kB]
Get:203 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libasm-java all 9.2-1 [379 kB]
Get:204 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libbsf-java all 1:2.4.0-8 [76.3 kB]
Get:205 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjcodings-java all 1.0.56-1 [1463 kB]
Get:206 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libbytelist-java all 1.0.15-1 [17.5 kB]
Get:207 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libdirgra-java all 0.3-1.1 [20.7 kB]
Get:208 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libheadius-options-java all 1.4-2 [17.0 kB]
Get:209 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libinvokebinder-java all 1.7-2 [41.3 kB]
Get:210 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libhawtjni-runtime-java all 1.17-1 [35.3 kB]
Get:211 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjansi-native-java all 1.8-1 [26.0 kB]
Get:212 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjansi-java all 1.18-1 [66.6 kB]
Get:213 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjffi-jni amd64 1.2.7-11+b2 [26.3 kB]
Get:214 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjitescript-java all 0.4.1-3 [23.7 kB]
Get:215 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjoda-time-java all 2.10.10-1 [535 kB]
Get:216 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjnr-constants-java all 0.10.3-1 [1336 kB]
Get:217 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjffi-java all 1.2.7-11 [137 kB]
Get:218 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjnr-x86asm-java all 1.0.2-5.1 [207 kB]
Get:219 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjnr-ffi-java all 2.2.7-1 [604 kB]
Get:220 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjnr-enxio-java all 0.32.3-2 [31.9 kB]
Get:221 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjnr-netdb-java all 1.1.6-1.1 [58.8 kB]
Get:222 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjnr-posix-java all 3.1.10-1 [257 kB]
Get:223 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjnr-unixsocket-java all 0.18-4 [43.9 kB]
Get:224 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjruby-joni-java all 2.1.42-1 [211 kB]
Get:225 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjzlib-java all 1.1.3-2 [80.0 kB]
Get:226 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libmodulator-java all 1.0-3 [5696 B]
Get:227 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libosgi-annotation-java all 8.0.1-1 [10.5 kB]
Get:228 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libosgi-core-java all 7.0.0-2 [157 kB]
Get:229 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libyaml-snake-java all 1.29-1 [315 kB]
Get:230 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libpsych-java all 3.3.2-1 [29.9 kB]
Get:231 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libunsafe-fences-java all 1.0-1.1 [5040 B]
Get:232 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libunsafe-mock-java all 8.0-3 [8128 B]
Get:233 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjna-jni amd64 5.9.0-1 [63.5 kB]
Get:234 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjna-java all 5.9.0-1 [229 kB]
Get:235 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libjna-platform-java all 5.9.0-1 [1157 kB]
Get:236 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 nailgun amd64 0.9.3-3+b1 [68.5 kB]
Get:237 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby-jar-dependencies all 0.3.10-2 [16.1 kB]
Get:238 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 jruby all 9.1.17.0-3 [43.1 MB]
Get:239 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 libyaml-dev amd64 0.2.2-1 [60.1 kB]
Get:240 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby-rspec-support all 3.10.0c1e1m2s3-1 [31.5 kB]
Get:241 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby-rspec-core all 3.10.0c1e1m2s3-1 [165 kB]
Get:242 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby-diff-lcs all 1.4.4-1 [35.9 kB]
Get:243 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby-rspec-expectations all 3.10.0c1e1m2s3-1 [91.8 kB]
Get:244 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby-rspec-mocks all 3.10.0c1e1m2s3-1 [81.8 kB]
Get:245 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 ruby-rspec all 3.10.0c1e1m2s3-1 [8424 B]
Get:246 http://127.0.0.1:3142/deb.debian.org/debian unstable/main amd64 rake-compiler all 1.1.1-1 [29.2 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 409 MB in 3s (156 MB/s)
Selecting previously unselected package libpython3.10-minimal:amd64.
(Reading database ... 14466 files and directories currently installed.)
Preparing to unpack .../libpython3.10-minimal_3.10.4-1_amd64.deb ...
Unpacking libpython3.10-minimal:amd64 (3.10.4-1) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../libexpat1_2.4.8-1_amd64.deb ...
Unpacking libexpat1:amd64 (2.4.8-1) ...
Selecting previously unselected package python3.10-minimal.
Preparing to unpack .../python3.10-minimal_3.10.4-1_amd64.deb ...
Unpacking python3.10-minimal (3.10.4-1) ...
Setting up libpython3.10-minimal:amd64 (3.10.4-1) ...
Setting up libexpat1:amd64 (2.4.8-1) ...
Setting up python3.10-minimal (3.10.4-1) ...
Selecting previously unselected package python3-minimal.
(Reading database ... 14769 files and directories currently installed.)
Preparing to unpack .../0-python3-minimal_3.10.4-1_amd64.deb ...
Unpacking python3-minimal (3.10.4-1) ...
Selecting previously unselected package media-types.
Preparing to unpack .../1-media-types_7.0.0_all.deb ...
Unpacking media-types (7.0.0) ...
Selecting previously unselected package libmpdec3:amd64.
Preparing to unpack .../2-libmpdec3_2.5.1-2_amd64.deb ...
Unpacking libmpdec3:amd64 (2.5.1-2) ...
Selecting previously unselected package libncursesw6:amd64.
Preparing to unpack .../3-libncursesw6_6.3-2_amd64.deb ...
Unpacking libncursesw6:amd64 (6.3-2) ...
Selecting previously unselected package readline-common.
Preparing to unpack .../4-readline-common_8.1.2-1_all.deb ...
Unpacking readline-common (8.1.2-1) ...
Selecting previously unselected package libreadline8:amd64.
Preparing to unpack .../5-libreadline8_8.1.2-1_amd64.deb ...
Unpacking libreadline8:amd64 (8.1.2-1) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../6-libsqlite3-0_3.38.2-1_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.38.2-1) ...
Selecting previously unselected package libpython3.10-stdlib:amd64.
Preparing to unpack .../7-libpython3.10-stdlib_3.10.4-1_amd64.deb ...
Unpacking libpython3.10-stdlib:amd64 (3.10.4-1) ...
Selecting previously unselected package python3.10.
Preparing to unpack .../8-python3.10_3.10.4-1_amd64.deb ...
Unpacking python3.10 (3.10.4-1) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../9-libpython3-stdlib_3.10.4-1_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.10.4-1) ...
Setting up python3-minimal (3.10.4-1) ...
Selecting previously unselected package python3.
(Reading database ... 15212 files and directories currently installed.)
Preparing to unpack .../000-python3_3.10.4-1_amd64.deb ...
Unpacking python3 (3.10.4-1) ...
Selecting previously unselected package netbase.
Preparing to unpack .../001-netbase_6.3_all.deb ...
Unpacking netbase (6.3) ...
Selecting previously unselected package sensible-utils.
Preparing to unpack .../002-sensible-utils_0.0.17_all.deb ...
Unpacking sensible-utils (0.0.17) ...
Selecting previously unselected package openssl.
Preparing to unpack .../003-openssl_1.1.1n-1_amd64.deb ...
Unpacking openssl (1.1.1n-1) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../004-ca-certificates_20211016_all.deb ...
Unpacking ca-certificates (20211016) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../005-libmagic-mgc_1%3a5.41-3_amd64.deb ...
Unpacking libmagic-mgc (1:5.41-3) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../006-libmagic1_1%3a5.41-3_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.41-3) ...
Selecting previously unselected package file.
Preparing to unpack .../007-file_1%3a5.41-3_amd64.deb ...
Unpacking file (1:5.41-3) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../008-gettext-base_0.21-6_amd64.deb ...
Unpacking gettext-base (0.21-6) ...
Selecting previously unselected package libuchardet0:amd64.
Preparing to unpack .../009-libuchardet0_0.0.7-1_amd64.deb ...
Unpacking libuchardet0:amd64 (0.0.7-1) ...
Selecting previously unselected package groff-base.
Preparing to unpack .../010-groff-base_1.22.4-8_amd64.deb ...
Unpacking groff-base (1.22.4-8) ...
Selecting previously unselected package bsdextrautils.
Preparing to unpack .../011-bsdextrautils_2.37.3-1+b1_amd64.deb ...
Unpacking bsdextrautils (2.37.3-1+b1) ...
Selecting previously unselected package libpipeline1:amd64.
Preparing to unpack .../012-libpipeline1_1.5.5-1_amd64.deb ...
Unpacking libpipeline1:amd64 (1.5.5-1) ...
Selecting previously unselected package man-db.
Preparing to unpack .../013-man-db_2.10.2-1_amd64.deb ...
Unpacking man-db (2.10.2-1) ...
Selecting previously unselected package ucf.
Preparing to unpack .../014-ucf_3.0043_all.deb ...
Moving old data out of the way
Unpacking ucf (3.0043) ...
Selecting previously unselected package libnspr4:amd64.
Preparing to unpack .../015-libnspr4_2%3a4.32-3_amd64.deb ...
Unpacking libnspr4:amd64 (2:4.32-3) ...
Selecting previously unselected package libnss3:amd64.
Preparing to unpack .../016-libnss3_2%3a3.75-1_amd64.deb ...
Unpacking libnss3:amd64 (2:3.75-1) ...
Selecting previously unselected package ca-certificates-java.
Preparing to unpack .../017-ca-certificates-java_20190909_all.deb ...
Unpacking ca-certificates-java (20190909) ...
Selecting previously unselected package java-common.
Preparing to unpack .../018-java-common_0.72_all.deb ...
Unpacking java-common (0.72) ...
Selecting previously unselected package libavahi-common-data:amd64.
Preparing to unpack .../019-libavahi-common-data_0.8-5_amd64.deb ...
Unpacking libavahi-common-data:amd64 (0.8-5) ...
Selecting previously unselected package libavahi-common3:amd64.
Preparing to unpack .../020-libavahi-common3_0.8-5_amd64.deb ...
Unpacking libavahi-common3:amd64 (0.8-5) ...
Selecting previously unselected package libdbus-1-3:amd64.
Preparing to unpack .../021-libdbus-1-3_1.14.0-1_amd64.deb ...
Unpacking libdbus-1-3:amd64 (1.14.0-1) ...
Selecting previously unselected package libavahi-client3:amd64.
Preparing to unpack .../022-libavahi-client3_0.8-5_amd64.deb ...
Unpacking libavahi-client3:amd64 (0.8-5) ...
Selecting previously unselected package libcups2:amd64.
Preparing to unpack .../023-libcups2_2.4.1op1-2_amd64.deb ...
Unpacking libcups2:amd64 (2.4.1op1-2) ...
Selecting previously unselected package liblcms2-2:amd64.
Preparing to unpack .../024-liblcms2-2_2.12~rc1-2_amd64.deb ...
Unpacking liblcms2-2:amd64 (2.12~rc1-2) ...
Selecting previously unselected package libjpeg62-turbo:amd64.
Preparing to unpack .../025-libjpeg62-turbo_1%3a2.1.2-1_amd64.deb ...
Unpacking libjpeg62-turbo:amd64 (1:2.1.2-1) ...
Selecting previously unselected package libbrotli1:amd64.
Preparing to unpack .../026-libbrotli1_1.0.9-2+b3_amd64.deb ...
Unpacking libbrotli1:amd64 (1.0.9-2+b3) ...
Selecting previously unselected package libpng16-16:amd64.
Preparing to unpack .../027-libpng16-16_1.6.37-3_amd64.deb ...
Unpacking libpng16-16:amd64 (1.6.37-3) ...
Selecting previously unselected package libfreetype6:amd64.
Preparing to unpack .../028-libfreetype6_2.11.1+dfsg-1_amd64.deb ...
Unpacking libfreetype6:amd64 (2.11.1+dfsg-1) ...
Selecting previously unselected package fonts-dejavu-core.
Preparing to unpack .../029-fonts-dejavu-core_2.37-2_all.deb ...
Unpacking fonts-dejavu-core (2.37-2) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../030-fontconfig-config_2.13.1-4.4_all.deb ...
Unpacking fontconfig-config (2.13.1-4.4) ...
Selecting previously unselected package libfontconfig1:amd64.
Preparing to unpack .../031-libfontconfig1_2.13.1-4.4_amd64.deb ...
Unpacking libfontconfig1:amd64 (2.13.1-4.4) ...
Selecting previously unselected package libasound2-data.
Preparing to unpack .../032-libasound2-data_1.2.6.1-2_all.deb ...
Unpacking libasound2-data (1.2.6.1-2) ...
Selecting previously unselected package libasound2:amd64.
Preparing to unpack .../033-libasound2_1.2.6.1-2+b1_amd64.deb ...
Unpacking libasound2:amd64 (1.2.6.1-2+b1) ...
Selecting previously unselected package libglib2.0-0:amd64.
Preparing to unpack .../034-libglib2.0-0_2.72.0-1_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.72.0-1) ...
Selecting previously unselected package libgraphite2-3:amd64.
Preparing to unpack .../035-libgraphite2-3_1.3.14-1_amd64.deb ...
Unpacking libgraphite2-3:amd64 (1.3.14-1) ...
Selecting previously unselected package libharfbuzz0b:amd64.
Preparing to unpack .../036-libharfbuzz0b_2.7.4-1_amd64.deb ...
Unpacking libharfbuzz0b:amd64 (2.7.4-1) ...
Selecting previously unselected package libpcsclite1:amd64.
Preparing to unpack .../037-libpcsclite1_1.9.5-3_amd64.deb ...
Unpacking libpcsclite1:amd64 (1.9.5-3) ...
Selecting previously unselected package openjdk-11-jre-headless:amd64.
Preparing to unpack .../038-openjdk-11-jre-headless_11.0.14.1+1-1_amd64.deb ...
Unpacking openjdk-11-jre-headless:amd64 (11.0.14.1+1-1) ...
Selecting previously unselected package default-jre-headless.
Preparing to unpack .../039-default-jre-headless_2%3a1.11-72_amd64.deb ...
Unpacking default-jre-headless (2:1.11-72) ...
Selecting previously unselected package ant.
Preparing to unpack .../040-ant_1.10.12-1_all.deb ...
Unpacking ant (1.10.12-1) ...
Selecting previously unselected package libsigsegv2:amd64.
Preparing to unpack .../041-libsigsegv2_2.14-1_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.14-1) ...
Selecting previously unselected package m4.
Preparing to unpack .../042-m4_1.4.18-5_amd64.deb ...
Unpacking m4 (1.4.18-5) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../043-autoconf_2.71-2_all.deb ...
Unpacking autoconf (2.71-2) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../044-autotools-dev_20220109.1_all.deb ...
Unpacking autotools-dev (20220109.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../045-automake_1%3a1.16.5-1.3_all.deb ...
Unpacking automake (1:1.16.5-1.3) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../046-autopoint_0.21-6_all.deb ...
Unpacking autopoint (0.21-6) ...
Selecting previously unselected package dctrl-tools.
Preparing to unpack .../047-dctrl-tools_2.24-3+b1_amd64.deb ...
Unpacking dctrl-tools (2.24-3+b1) ...
Selecting previously unselected package libdebhelper-perl.
Preparing to unpack .../048-libdebhelper-perl_13.6_all.deb ...
Unpacking libdebhelper-perl (13.6) ...
Selecting previously unselected package libtool.
Preparing to unpack .../049-libtool_2.4.7-2_all.deb ...
Unpacking libtool (2.4.7-2) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../050-dh-autoreconf_20_all.deb ...
Unpacking dh-autoreconf (20) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../051-libarchive-zip-perl_1.68-1_all.deb ...
Unpacking libarchive-zip-perl (1.68-1) ...
Selecting previously unselected package libsub-override-perl.
Preparing to unpack .../052-libsub-override-perl_0.09-2_all.deb ...
Unpacking libsub-override-perl (0.09-2) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../053-libfile-stripnondeterminism-perl_1.13.0-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (1.13.0-1) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../054-dh-strip-nondeterminism_1.13.0-1_all.deb ...
Unpacking dh-strip-nondeterminism (1.13.0-1) ...
Selecting previously unselected package libelf1:amd64.
Preparing to unpack .../055-libelf1_0.186-1_amd64.deb ...
Unpacking libelf1:amd64 (0.186-1) ...
Selecting previously unselected package dwz.
Preparing to unpack .../056-dwz_0.14-1_amd64.deb ...
Unpacking dwz (0.14-1) ...
Selecting previously unselected package libicu67:amd64.
Preparing to unpack .../057-libicu67_67.1-7_amd64.deb ...
Unpacking libicu67:amd64 (67.1-7) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../058-libxml2_2.9.13+dfsg-1_amd64.deb ...
Unpacking libxml2:amd64 (2.9.13+dfsg-1) ...
Selecting previously unselected package gettext.
Preparing to unpack .../059-gettext_0.21-6_amd64.deb ...
Unpacking gettext (0.21-6) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../060-intltool-debian_0.35.0+20060710.5_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.5) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../061-po-debconf_1.0.21+nmu1_all.deb ...
Unpacking po-debconf (1.0.21+nmu1) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../062-debhelper_13.6_all.deb ...
Unpacking debhelper (13.6) ...
Selecting previously unselected package libglvnd0:amd64.
Preparing to unpack .../063-libglvnd0_1.4.0-1_amd64.deb ...
Unpacking libglvnd0:amd64 (1.4.0-1) ...
Selecting previously unselected package libxau6:amd64.
Preparing to unpack .../064-libxau6_1%3a1.0.9-1_amd64.deb ...
Unpacking libxau6:amd64 (1:1.0.9-1) ...
Selecting previously unselected package libmd0:amd64.
Preparing to unpack .../065-libmd0_1.0.4-1_amd64.deb ...
Unpacking libmd0:amd64 (1.0.4-1) ...
Selecting previously unselected package libbsd0:amd64.
Preparing to unpack .../066-libbsd0_0.11.5-1+b1_amd64.deb ...
Unpacking libbsd0:amd64 (0.11.5-1+b1) ...
Selecting previously unselected package libxdmcp6:amd64.
Preparing to unpack .../067-libxdmcp6_1%3a1.1.2-3_amd64.deb ...
Unpacking libxdmcp6:amd64 (1:1.1.2-3) ...
Selecting previously unselected package libxcb1:amd64.
Preparing to unpack .../068-libxcb1_1.14-3_amd64.deb ...
Unpacking libxcb1:amd64 (1.14-3) ...
Selecting previously unselected package libx11-data.
Preparing to unpack .../069-libx11-data_2%3a1.7.2-2_all.deb ...
Unpacking libx11-data (2:1.7.2-2) ...
Selecting previously unselected package libx11-6:amd64.
Preparing to unpack .../070-libx11-6_2%3a1.7.2-2+b1_amd64.deb ...
Unpacking libx11-6:amd64 (2:1.7.2-2+b1) ...
Selecting previously unselected package libdrm-common.
Preparing to unpack .../071-libdrm-common_2.4.110-1_all.deb ...
Unpacking libdrm-common (2.4.110-1) ...
Selecting previously unselected package libdrm2:amd64.
Preparing to unpack .../072-libdrm2_2.4.110-1_amd64.deb ...
Unpacking libdrm2:amd64 (2.4.110-1) ...
Selecting previously unselected package libglapi-mesa:amd64.
Preparing to unpack .../073-libglapi-mesa_21.3.7-1_amd64.deb ...
Unpacking libglapi-mesa:amd64 (21.3.7-1) ...
Selecting previously unselected package libx11-xcb1:amd64.
Preparing to unpack .../074-libx11-xcb1_2%3a1.7.2-2+b1_amd64.deb ...
Unpacking libx11-xcb1:amd64 (2:1.7.2-2+b1) ...
Selecting previously unselected package libxcb-dri2-0:amd64.
Preparing to unpack .../075-libxcb-dri2-0_1.14-3_amd64.deb ...
Unpacking libxcb-dri2-0:amd64 (1.14-3) ...
Selecting previously unselected package libxcb-dri3-0:amd64.
Preparing to unpack .../076-libxcb-dri3-0_1.14-3_amd64.deb ...
Unpacking libxcb-dri3-0:amd64 (1.14-3) ...
Selecting previously unselected package libxcb-glx0:amd64.
Preparing to unpack .../077-libxcb-glx0_1.14-3_amd64.deb ...
Unpacking libxcb-glx0:amd64 (1.14-3) ...
Selecting previously unselected package libxcb-present0:amd64.
Preparing to unpack .../078-libxcb-present0_1.14-3_amd64.deb ...
Unpacking libxcb-present0:amd64 (1.14-3) ...
Selecting previously unselected package libxcb-shm0:amd64.
Preparing to unpack .../079-libxcb-shm0_1.14-3_amd64.deb ...
Unpacking libxcb-shm0:amd64 (1.14-3) ...
Selecting previously unselected package libxcb-sync1:amd64.
Preparing to unpack .../080-libxcb-sync1_1.14-3_amd64.deb ...
Unpacking libxcb-sync1:amd64 (1.14-3) ...
Selecting previously unselected package libxcb-xfixes0:amd64.
Preparing to unpack .../081-libxcb-xfixes0_1.14-3_amd64.deb ...
Unpacking libxcb-xfixes0:amd64 (1.14-3) ...
Selecting previously unselected package libxext6:amd64.
Preparing to unpack .../082-libxext6_2%3a1.3.4-1_amd64.deb ...
Unpacking libxext6:amd64 (2:1.3.4-1) ...
Selecting previously unselected package libxfixes3:amd64.
Preparing to unpack .../083-libxfixes3_1%3a6.0.0-1_amd64.deb ...
Unpacking libxfixes3:amd64 (1:6.0.0-1) ...
Selecting previously unselected package libxshmfence1:amd64.
Preparing to unpack .../084-libxshmfence1_1.3-1_amd64.deb ...
Unpacking libxshmfence1:amd64 (1.3-1) ...
Selecting previously unselected package libxxf86vm1:amd64.
Preparing to unpack .../085-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ...
Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ...
Selecting previously unselected package libdrm-amdgpu1:amd64.
Preparing to unpack .../086-libdrm-amdgpu1_2.4.110-1_amd64.deb ...
Unpacking libdrm-amdgpu1:amd64 (2.4.110-1) ...
Selecting previously unselected package libpciaccess0:amd64.
Preparing to unpack .../087-libpciaccess0_0.16-3_amd64.deb ...
Unpacking libpciaccess0:amd64 (0.16-3) ...
Selecting previously unselected package libdrm-intel1:amd64.
Preparing to unpack .../088-libdrm-intel1_2.4.110-1_amd64.deb ...
Unpacking libdrm-intel1:amd64 (2.4.110-1) ...
Selecting previously unselected package libdrm-nouveau2:amd64.
Preparing to unpack .../089-libdrm-nouveau2_2.4.110-1_amd64.deb ...
Unpacking libdrm-nouveau2:amd64 (2.4.110-1) ...
Selecting previously unselected package libdrm-radeon1:amd64.
Preparing to unpack .../090-libdrm-radeon1_2.4.110-1_amd64.deb ...
Unpacking libdrm-radeon1:amd64 (2.4.110-1) ...
Selecting previously unselected package libedit2:amd64.
Preparing to unpack .../091-libedit2_3.1-20210910-1_amd64.deb ...
Unpacking libedit2:amd64 (3.1-20210910-1) ...
Selecting previously unselected package libz3-4:amd64.
Preparing to unpack .../092-libz3-4_4.8.12-1+b1_amd64.deb ...
Unpacking libz3-4:amd64 (4.8.12-1+b1) ...
Selecting previously unselected package libllvm13:amd64.
Preparing to unpack .../093-libllvm13_1%3a13.0.1-3+b2_amd64.deb ...
Unpacking libllvm13:amd64 (1:13.0.1-3+b2) ...
Selecting previously unselected package libsensors-config.
Preparing to unpack .../094-libsensors-config_1%3a3.6.0-7_all.deb ...
Unpacking libsensors-config (1:3.6.0-7) ...
Selecting previously unselected package libsensors5:amd64.
Preparing to unpack .../095-libsensors5_1%3a3.6.0-7_amd64.deb ...
Unpacking libsensors5:amd64 (1:3.6.0-7) ...
Selecting previously unselected package libvulkan1:amd64.
Preparing to unpack .../096-libvulkan1_1.3.204.1-2_amd64.deb ...
Unpacking libvulkan1:amd64 (1.3.204.1-2) ...
Selecting previously unselected package libgl1-mesa-dri:amd64.
Preparing to unpack .../097-libgl1-mesa-dri_21.3.7-1_amd64.deb ...
Unpacking libgl1-mesa-dri:amd64 (21.3.7-1) ...
Selecting previously unselected package libglx-mesa0:amd64.
Preparing to unpack .../098-libglx-mesa0_21.3.7-1_amd64.deb ...
Unpacking libglx-mesa0:amd64 (21.3.7-1) ...
Selecting previously unselected package libglx0:amd64.
Preparing to unpack .../099-libglx0_1.4.0-1_amd64.deb ...
Unpacking libglx0:amd64 (1.4.0-1) ...
Selecting previously unselected package libgl1:amd64.
Preparing to unpack .../100-libgl1_1.4.0-1_amd64.deb ...
Unpacking libgl1:amd64 (1.4.0-1) ...
Selecting previously unselected package libgif7:amd64.
Preparing to unpack .../101-libgif7_5.1.9-2_amd64.deb ...
Unpacking libgif7:amd64 (5.1.9-2) ...
Selecting previously unselected package libxi6:amd64.
Preparing to unpack .../102-libxi6_2%3a1.8-1_amd64.deb ...
Unpacking libxi6:amd64 (2:1.8-1) ...
Selecting previously unselected package libxrender1:amd64.
Preparing to unpack .../103-libxrender1_1%3a0.9.10-1_amd64.deb ...
Unpacking libxrender1:amd64 (1:0.9.10-1) ...
Selecting previously unselected package x11-common.
Preparing to unpack .../104-x11-common_1%3a7.7+23_all.deb ...
Unpacking x11-common (1:7.7+23) ...
Selecting previously unselected package libxtst6:amd64.
Preparing to unpack .../105-libxtst6_2%3a1.2.3-1_amd64.deb ...
Unpacking libxtst6:amd64 (2:1.2.3-1) ...
Selecting previously unselected package openjdk-11-jre:amd64.
Preparing to unpack .../106-openjdk-11-jre_11.0.14.1+1-1_amd64.deb ...
Unpacking openjdk-11-jre:amd64 (11.0.14.1+1-1) ...
Selecting previously unselected package default-jre.
Preparing to unpack .../107-default-jre_2%3a1.11-72_amd64.deb ...
Unpacking default-jre (2:1.11-72) ...
Selecting previously unselected package openjdk-11-jdk-headless:amd64.
Preparing to unpack .../108-openjdk-11-jdk-headless_11.0.14.1+1-1_amd64.deb ...
Unpacking openjdk-11-jdk-headless:amd64 (11.0.14.1+1-1) ...
Selecting previously unselected package default-jdk-headless.
Preparing to unpack .../109-default-jdk-headless_2%3a1.11-72_amd64.deb ...
Unpacking default-jdk-headless (2:1.11-72) ...
Selecting previously unselected package openjdk-11-jdk:amd64.
Preparing to unpack .../110-openjdk-11-jdk_11.0.14.1+1-1_amd64.deb ...
Unpacking openjdk-11-jdk:amd64 (11.0.14.1+1-1) ...
Selecting previously unselected package default-jdk.
Preparing to unpack .../111-default-jdk_2%3a1.11-72_amd64.deb ...
Unpacking default-jdk (2:1.11-72) ...
Selecting previously unselected package libassuan0:amd64.
Preparing to unpack .../112-libassuan0_2.5.5-1_amd64.deb ...
Unpacking libassuan0:amd64 (2.5.5-1) ...
Selecting previously unselected package gpgconf.
Preparing to unpack .../113-gpgconf_2.2.27-3+b1_amd64.deb ...
Unpacking gpgconf (2.2.27-3+b1) ...
Selecting previously unselected package libksba8:amd64.
Preparing to unpack .../114-libksba8_1.6.0-2_amd64.deb ...
Unpacking libksba8:amd64 (1.6.0-2) ...
Selecting previously unselected package libsasl2-modules-db:amd64.
Preparing to unpack .../115-libsasl2-modules-db_2.1.28+dfsg-2+b1_amd64.deb ...
Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg-2+b1) ...
Selecting previously unselected package libsasl2-2:amd64.
Preparing to unpack .../116-libsasl2-2_2.1.28+dfsg-2+b1_amd64.deb ...
Unpacking libsasl2-2:amd64 (2.1.28+dfsg-2+b1) ...
Selecting previously unselected package libldap-2.5-0:amd64.
Preparing to unpack .../117-libldap-2.5-0_2.5.11+dfsg-1_amd64.deb ...
Unpacking libldap-2.5-0:amd64 (2.5.11+dfsg-1) ...
Selecting previously unselected package libnpth0:amd64.
Preparing to unpack .../118-libnpth0_1.6-3_amd64.deb ...
Unpacking libnpth0:amd64 (1.6-3) ...
Selecting previously unselected package dirmngr.
Preparing to unpack .../119-dirmngr_2.2.27-3+b1_amd64.deb ...
Unpacking dirmngr (2.2.27-3+b1) ...
Selecting previously unselected package gnupg-l10n.
Preparing to unpack .../120-gnupg-l10n_2.2.27-3_all.deb ...
Unpacking gnupg-l10n (2.2.27-3) ...
Selecting previously unselected package gnupg-utils.
Preparing to unpack .../121-gnupg-utils_2.2.27-3+b1_amd64.deb ...
Unpacking gnupg-utils (2.2.27-3+b1) ...
Selecting previously unselected package gpg.
Preparing to unpack .../122-gpg_2.2.27-3+b1_amd64.deb ...
Unpacking gpg (2.2.27-3+b1) ...
Selecting previously unselected package pinentry-curses.
Preparing to unpack .../123-pinentry-curses_1.1.0-4_amd64.deb ...
Unpacking pinentry-curses (1.1.0-4) ...
Selecting previously unselected package gpg-agent.
Preparing to unpack .../124-gpg-agent_2.2.27-3+b1_amd64.deb ...
Unpacking gpg-agent (2.2.27-3+b1) ...
Selecting previously unselected package gpg-wks-client.
Preparing to unpack .../125-gpg-wks-client_2.2.27-3+b1_amd64.deb ...
Unpacking gpg-wks-client (2.2.27-3+b1) ...
Selecting previously unselected package gpg-wks-server.
Preparing to unpack .../126-gpg-wks-server_2.2.27-3+b1_amd64.deb ...
Unpacking gpg-wks-server (2.2.27-3+b1) ...
Selecting previously unselected package gpgsm.
Preparing to unpack .../127-gpgsm_2.2.27-3+b1_amd64.deb ...
Unpacking gpgsm (2.2.27-3+b1) ...
Selecting previously unselected package gnupg.
Preparing to unpack .../128-gnupg_2.2.27-3_all.deb ...
Unpacking gnupg (2.2.27-3) ...
Selecting previously unselected package libfile-dirlist-perl.
Preparing to unpack .../129-libfile-dirlist-perl_0.05-2_all.deb ...
Unpacking libfile-dirlist-perl (0.05-2) ...
Selecting previously unselected package libfile-which-perl.
Preparing to unpack .../130-libfile-which-perl_1.23-1_all.deb ...
Unpacking libfile-which-perl (1.23-1) ...
Selecting previously unselected package libfile-homedir-perl.
Preparing to unpack .../131-libfile-homedir-perl_1.006-1_all.deb ...
Unpacking libfile-homedir-perl (1.006-1) ...
Selecting previously unselected package libfile-touch-perl.
Preparing to unpack .../132-libfile-touch-perl_0.12-1_all.deb ...
Unpacking libfile-touch-perl (0.12-1) ...
Selecting previously unselected package libio-pty-perl.
Preparing to unpack .../133-libio-pty-perl_1%3a1.15-2+b1_amd64.deb ...
Unpacking libio-pty-perl (1:1.15-2+b1) ...
Selecting previously unselected package libipc-run-perl.
Preparing to unpack .../134-libipc-run-perl_20200505.0-1_all.deb ...
Unpacking libipc-run-perl (20200505.0-1) ...
Selecting previously unselected package libclass-method-modifiers-perl.
Preparing to unpack .../135-libclass-method-modifiers-perl_2.13-1_all.deb ...
Unpacking libclass-method-modifiers-perl (2.13-1) ...
Selecting previously unselected package libclass-xsaccessor-perl.
Preparing to unpack .../136-libclass-xsaccessor-perl_1.19-3+b8_amd64.deb ...
Unpacking libclass-xsaccessor-perl (1.19-3+b8) ...
Selecting previously unselected package libb-hooks-op-check-perl.
Preparing to unpack .../137-libb-hooks-op-check-perl_0.22-1+b4_amd64.deb ...
Unpacking libb-hooks-op-check-perl (0.22-1+b4) ...
Selecting previously unselected package libdynaloader-functions-perl.
Preparing to unpack .../138-libdynaloader-functions-perl_0.003-1.1_all.deb ...
Unpacking libdynaloader-functions-perl (0.003-1.1) ...
Selecting previously unselected package libdevel-callchecker-perl.
Preparing to unpack .../139-libdevel-callchecker-perl_0.008-1+b3_amd64.deb ...
Unpacking libdevel-callchecker-perl (0.008-1+b3) ...
Selecting previously unselected package libparams-classify-perl.
Preparing to unpack .../140-libparams-classify-perl_0.015-1+b4_amd64.deb ...
Unpacking libparams-classify-perl (0.015-1+b4) ...
Selecting previously unselected package libmodule-runtime-perl.
Preparing to unpack .../141-libmodule-runtime-perl_0.016-1_all.deb ...
Unpacking libmodule-runtime-perl (0.016-1) ...
Selecting previously unselected package libimport-into-perl.
Preparing to unpack .../142-libimport-into-perl_1.002005-1_all.deb ...
Unpacking libimport-into-perl (1.002005-1) ...
Selecting previously unselected package librole-tiny-perl.
Preparing to unpack .../143-librole-tiny-perl_2.002004-1_all.deb ...
Unpacking librole-tiny-perl (2.002004-1) ...
Selecting previously unselected package libsub-quote-perl.
Preparing to unpack .../144-libsub-quote-perl_2.006006-1_all.deb ...
Unpacking libsub-quote-perl (2.006006-1) ...
Selecting previously unselected package libmoo-perl.
Preparing to unpack .../145-libmoo-perl_2.005004-3_all.deb ...
Unpacking libmoo-perl (2.005004-3) ...
Selecting previously unselected package libencode-locale-perl.
Preparing to unpack .../146-libencode-locale-perl_1.05-1.1_all.deb ...
Unpacking libencode-locale-perl (1.05-1.1) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../147-libtimedate-perl_2.3300-2_all.deb ...
Unpacking libtimedate-perl (2.3300-2) ...
Selecting previously unselected package libhttp-date-perl.
Preparing to unpack .../148-libhttp-date-perl_6.05-1_all.deb ...
Unpacking libhttp-date-perl (6.05-1) ...
Selecting previously unselected package libfile-listing-perl.
Preparing to unpack .../149-libfile-listing-perl_6.14-1_all.deb ...
Unpacking libfile-listing-perl (6.14-1) ...
Selecting previously unselected package libhtml-tagset-perl.
Preparing to unpack .../150-libhtml-tagset-perl_3.20-4_all.deb ...
Unpacking libhtml-tagset-perl (3.20-4) ...
Selecting previously unselected package liburi-perl.
Preparing to unpack .../151-liburi-perl_5.10-1_all.deb ...
Unpacking liburi-perl (5.10-1) ...
Selecting previously unselected package libhtml-parser-perl:amd64.
Preparing to unpack .../152-libhtml-parser-perl_3.77-1_amd64.deb ...
Unpacking libhtml-parser-perl:amd64 (3.77-1) ...
Selecting previously unselected package libhtml-tree-perl.
Preparing to unpack .../153-libhtml-tree-perl_5.07-2_all.deb ...
Unpacking libhtml-tree-perl (5.07-2) ...
Selecting previously unselected package libio-html-perl.
Preparing to unpack .../154-libio-html-perl_1.004-2_all.deb ...
Unpacking libio-html-perl (1.004-2) ...
Selecting previously unselected package liblwp-mediatypes-perl.
Preparing to unpack .../155-liblwp-mediatypes-perl_6.04-1_all.deb ...
Unpacking liblwp-mediatypes-perl (6.04-1) ...
Selecting previously unselected package libhttp-message-perl.
Preparing to unpack .../156-libhttp-message-perl_6.36-1_all.deb ...
Unpacking libhttp-message-perl (6.36-1) ...
Selecting previously unselected package libhttp-cookies-perl.
Preparing to unpack .../157-libhttp-cookies-perl_6.10-1_all.deb ...
Unpacking libhttp-cookies-perl (6.10-1) ...
Selecting previously unselected package libhttp-negotiate-perl.
Preparing to unpack .../158-libhttp-negotiate-perl_6.01-1_all.deb ...
Unpacking libhttp-negotiate-perl (6.01-1) ...
Selecting previously unselected package perl-openssl-defaults:amd64.
Preparing to unpack .../159-perl-openssl-defaults_5_amd64.deb ...
Unpacking perl-openssl-defaults:amd64 (5) ...
Selecting previously unselected package libnet-ssleay-perl:amd64.
Preparing to unpack .../160-libnet-ssleay-perl_1.92-1+b1_amd64.deb ...
Unpacking libnet-ssleay-perl:amd64 (1.92-1+b1) ...
Selecting previously unselected package libio-socket-ssl-perl.
Preparing to unpack .../161-libio-socket-ssl-perl_2.074-2_all.deb ...
Unpacking libio-socket-ssl-perl (2.074-2) ...
Selecting previously unselected package libnet-http-perl.
Preparing to unpack .../162-libnet-http-perl_6.22-1_all.deb ...
Unpacking libnet-http-perl (6.22-1) ...
Selecting previously unselected package liblwp-protocol-https-perl.
Preparing to unpack .../163-liblwp-protocol-https-perl_6.10-1_all.deb ...
Unpacking liblwp-protocol-https-perl (6.10-1) ...
Selecting previously unselected package libtry-tiny-perl.
Preparing to unpack .../164-libtry-tiny-perl_0.31-1_all.deb ...
Unpacking libtry-tiny-perl (0.31-1) ...
Selecting previously unselected package libwww-robotrules-perl.
Preparing to unpack .../165-libwww-robotrules-perl_6.02-1_all.deb ...
Unpacking libwww-robotrules-perl (6.02-1) ...
Selecting previously unselected package libwww-perl.
Preparing to unpack .../166-libwww-perl_6.61-1_all.deb ...
Unpacking libwww-perl (6.61-1) ...
Selecting previously unselected package patchutils.
Preparing to unpack .../167-patchutils_0.4.2-1_amd64.deb ...
Unpacking patchutils (0.4.2-1) ...
Selecting previously unselected package wdiff.
Preparing to unpack .../168-wdiff_1.2.2-2+b1_amd64.deb ...
Unpacking wdiff (1.2.2-2+b1) ...
Selecting previously unselected package devscripts.
Preparing to unpack .../169-devscripts_2.22.1_amd64.deb ...
Unpacking devscripts (2.22.1) ...
Selecting previously unselected package rubygems-integration.
Preparing to unpack .../170-rubygems-integration_1.18_all.deb ...
Unpacking rubygems-integration (1.18) ...
Selecting previously unselected package ruby-net-telnet.
Preparing to unpack .../171-ruby-net-telnet_0.1.1-2_all.deb ...
Unpacking ruby-net-telnet (0.1.1-2) ...
Selecting previously unselected package ruby-xmlrpc.
Preparing to unpack .../172-ruby-xmlrpc_0.3.2-1_all.deb ...
Unpacking ruby-xmlrpc (0.3.2-1) ...
Selecting previously unselected package libyaml-0-2:amd64.
Preparing to unpack .../173-libyaml-0-2_0.2.2-1_amd64.deb ...
Unpacking libyaml-0-2:amd64 (0.2.2-1) ...
Selecting previously unselected package libruby3.0:amd64.
Preparing to unpack .../174-libruby3.0_3.0.3-1_amd64.deb ...
Unpacking libruby3.0:amd64 (3.0.3-1) ...
Selecting previously unselected package ruby3.0.
Preparing to unpack .../175-ruby3.0_3.0.3-1_amd64.deb ...
Unpacking ruby3.0 (3.0.3-1) ...
Selecting previously unselected package ruby-rubygems.
Preparing to unpack .../176-ruby-rubygems_3.3.5-2_all.deb ...
Unpacking ruby-rubygems (3.3.5-2) ...
Selecting previously unselected package ruby.
Preparing to unpack .../177-ruby_1%3a3.0+1_amd64.deb ...
Unpacking ruby (1:3.0+1) ...
Selecting previously unselected package rake.
Preparing to unpack .../178-rake_13.0.6-3_all.deb ...
Unpacking rake (13.0.6-3) ...
Selecting previously unselected package gem2deb-test-runner.
Preparing to unpack .../179-gem2deb-test-runner_1.8_amd64.deb ...
Unpacking gem2deb-test-runner (1.8) ...
Selecting previously unselected package libgmpxx4ldbl:amd64.
Preparing to unpack .../180-libgmpxx4ldbl_2%3a6.2.1+dfsg-3_amd64.deb ...
Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg-3) ...
Selecting previously unselected package libgmp-dev:amd64.
Preparing to unpack .../181-libgmp-dev_2%3a6.2.1+dfsg-3_amd64.deb ...
Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg-3) ...
Selecting previously unselected package ruby3.0-dev:amd64.
Preparing to unpack .../182-ruby3.0-dev_3.0.3-1_amd64.deb ...
Unpacking ruby3.0-dev:amd64 (3.0.3-1) ...
Selecting previously unselected package ruby-all-dev:amd64.
Preparing to unpack .../183-ruby-all-dev_1%3a3.0+1_amd64.deb ...
Unpacking ruby-all-dev:amd64 (1:3.0+1) ...
Selecting previously unselected package gem2deb.
Preparing to unpack .../184-gem2deb_1.8_amd64.deb ...
Unpacking gem2deb (1.8) ...
Selecting previously unselected package javahelper.
Preparing to unpack .../185-javahelper_0.78_all.deb ...
Unpacking javahelper (0.78) ...
Selecting previously unselected package libhamcrest-java.
Preparing to unpack .../186-libhamcrest-java_1.3-9_all.deb ...
Unpacking libhamcrest-java (1.3-9) ...
Selecting previously unselected package junit4.
Preparing to unpack .../187-junit4_4.13.2-1_all.deb ...
Unpacking junit4 (4.13.2-1) ...
Selecting previously unselected package libasm-java.
Preparing to unpack .../188-libasm-java_9.2-1_all.deb ...
Unpacking libasm-java (9.2-1) ...
Selecting previously unselected package libbsf-java.
Preparing to unpack .../189-libbsf-java_1%3a2.4.0-8_all.deb ...
Unpacking libbsf-java (1:2.4.0-8) ...
Selecting previously unselected package libjcodings-java.
Preparing to unpack .../190-libjcodings-java_1.0.56-1_all.deb ...
Unpacking libjcodings-java (1.0.56-1) ...
Selecting previously unselected package libbytelist-java.
Preparing to unpack .../191-libbytelist-java_1.0.15-1_all.deb ...
Unpacking libbytelist-java (1.0.15-1) ...
Selecting previously unselected package libdirgra-java.
Preparing to unpack .../192-libdirgra-java_0.3-1.1_all.deb ...
Unpacking libdirgra-java (0.3-1.1) ...
Selecting previously unselected package libheadius-options-java.
Preparing to unpack .../193-libheadius-options-java_1.4-2_all.deb ...
Unpacking libheadius-options-java (1.4-2) ...
Selecting previously unselected package libinvokebinder-java.
Preparing to unpack .../194-libinvokebinder-java_1.7-2_all.deb ...
Unpacking libinvokebinder-java (1.7-2) ...
Selecting previously unselected package libhawtjni-runtime-java.
Preparing to unpack .../195-libhawtjni-runtime-java_1.17-1_all.deb ...
Unpacking libhawtjni-runtime-java (1.17-1) ...
Selecting previously unselected package libjansi-native-java.
Preparing to unpack .../196-libjansi-native-java_1.8-1_all.deb ...
Unpacking libjansi-native-java (1.8-1) ...
Selecting previously unselected package libjansi-java.
Preparing to unpack .../197-libjansi-java_1.18-1_all.deb ...
Unpacking libjansi-java (1.18-1) ...
Selecting previously unselected package libjffi-jni:amd64.
Preparing to unpack .../198-libjffi-jni_1.2.7-11+b2_amd64.deb ...
Unpacking libjffi-jni:amd64 (1.2.7-11+b2) ...
Selecting previously unselected package libjitescript-java.
Preparing to unpack .../199-libjitescript-java_0.4.1-3_all.deb ...
Unpacking libjitescript-java (0.4.1-3) ...
Selecting previously unselected package libjoda-time-java.
Preparing to unpack .../200-libjoda-time-java_2.10.10-1_all.deb ...
Unpacking libjoda-time-java (2.10.10-1) ...
Selecting previously unselected package libjnr-constants-java.
Preparing to unpack .../201-libjnr-constants-java_0.10.3-1_all.deb ...
Unpacking libjnr-constants-java (0.10.3-1) ...
Selecting previously unselected package libjffi-java.
Preparing to unpack .../202-libjffi-java_1.2.7-11_all.deb ...
Unpacking libjffi-java (1.2.7-11) ...
Selecting previously unselected package libjnr-x86asm-java.
Preparing to unpack .../203-libjnr-x86asm-java_1.0.2-5.1_all.deb ...
Unpacking libjnr-x86asm-java (1.0.2-5.1) ...
Selecting previously unselected package libjnr-ffi-java.
Preparing to unpack .../204-libjnr-ffi-java_2.2.7-1_all.deb ...
Unpacking libjnr-ffi-java (2.2.7-1) ...
Selecting previously unselected package libjnr-enxio-java.
Preparing to unpack .../205-libjnr-enxio-java_0.32.3-2_all.deb ...
Unpacking libjnr-enxio-java (0.32.3-2) ...
Selecting previously unselected package libjnr-netdb-java.
Preparing to unpack .../206-libjnr-netdb-java_1.1.6-1.1_all.deb ...
Unpacking libjnr-netdb-java (1.1.6-1.1) ...
Selecting previously unselected package libjnr-posix-java.
Preparing to unpack .../207-libjnr-posix-java_3.1.10-1_all.deb ...
Unpacking libjnr-posix-java (3.1.10-1) ...
Selecting previously unselected package libjnr-unixsocket-java.
Preparing to unpack .../208-libjnr-unixsocket-java_0.18-4_all.deb ...
Unpacking libjnr-unixsocket-java (0.18-4) ...
Selecting previously unselected package libjruby-joni-java.
Preparing to unpack .../209-libjruby-joni-java_2.1.42-1_all.deb ...
Unpacking libjruby-joni-java (2.1.42-1) ...
Selecting previously unselected package libjzlib-java.
Preparing to unpack .../210-libjzlib-java_1.1.3-2_all.deb ...
Unpacking libjzlib-java (1.1.3-2) ...
Selecting previously unselected package libmodulator-java.
Preparing to unpack .../211-libmodulator-java_1.0-3_all.deb ...
Unpacking libmodulator-java (1.0-3) ...
Selecting previously unselected package libosgi-annotation-java.
Preparing to unpack .../212-libosgi-annotation-java_8.0.1-1_all.deb ...
Unpacking libosgi-annotation-java (8.0.1-1) ...
Selecting previously unselected package libosgi-core-java.
Preparing to unpack .../213-libosgi-core-java_7.0.0-2_all.deb ...
Unpacking libosgi-core-java (7.0.0-2) ...
Selecting previously unselected package libyaml-snake-java.
Preparing to unpack .../214-libyaml-snake-java_1.29-1_all.deb ...
Unpacking libyaml-snake-java (1.29-1) ...
Selecting previously unselected package libpsych-java.
Preparing to unpack .../215-libpsych-java_3.3.2-1_all.deb ...
Unpacking libpsych-java (3.3.2-1) ...
Selecting previously unselected package libunsafe-fences-java.
Preparing to unpack .../216-libunsafe-fences-java_1.0-1.1_all.deb ...
Unpacking libunsafe-fences-java (1.0-1.1) ...
Selecting previously unselected package libunsafe-mock-java.
Preparing to unpack .../217-libunsafe-mock-java_8.0-3_all.deb ...
Unpacking libunsafe-mock-java (8.0-3) ...
Selecting previously unselected package libjna-jni.
Preparing to unpack .../218-libjna-jni_5.9.0-1_amd64.deb ...
Unpacking libjna-jni (5.9.0-1) ...
Selecting previously unselected package libjna-java.
Preparing to unpack .../219-libjna-java_5.9.0-1_all.deb ...
Unpacking libjna-java (5.9.0-1) ...
Selecting previously unselected package libjna-platform-java.
Preparing to unpack .../220-libjna-platform-java_5.9.0-1_all.deb ...
Unpacking libjna-platform-java (5.9.0-1) ...
Selecting previously unselected package nailgun.
Preparing to unpack .../221-nailgun_0.9.3-3+b1_amd64.deb ...
Unpacking nailgun (0.9.3-3+b1) ...
Selecting previously unselected package ruby-jar-dependencies.
Preparing to unpack .../222-ruby-jar-dependencies_0.3.10-2_all.deb ...
Unpacking ruby-jar-dependencies (0.3.10-2) ...
Selecting previously unselected package jruby.
Preparing to unpack .../223-jruby_9.1.17.0-3_all.deb ...
Unpacking jruby (9.1.17.0-3) ...
Selecting previously unselected package libyaml-dev:amd64.
Preparing to unpack .../224-libyaml-dev_0.2.2-1_amd64.deb ...
Unpacking libyaml-dev:amd64 (0.2.2-1) ...
Selecting previously unselected package ruby-rspec-support.
Preparing to unpack .../225-ruby-rspec-support_3.10.0c1e1m2s3-1_all.deb ...
Unpacking ruby-rspec-support (3.10.0c1e1m2s3-1) ...
Selecting previously unselected package ruby-rspec-core.
Preparing to unpack .../226-ruby-rspec-core_3.10.0c1e1m2s3-1_all.deb ...
Unpacking ruby-rspec-core (3.10.0c1e1m2s3-1) ...
Selecting previously unselected package ruby-diff-lcs.
Preparing to unpack .../227-ruby-diff-lcs_1.4.4-1_all.deb ...
Unpacking ruby-diff-lcs (1.4.4-1) ...
Selecting previously unselected package ruby-rspec-expectations.
Preparing to unpack .../228-ruby-rspec-expectations_3.10.0c1e1m2s3-1_all.deb ...
Unpacking ruby-rspec-expectations (3.10.0c1e1m2s3-1) ...
Selecting previously unselected package ruby-rspec-mocks.
Preparing to unpack .../229-ruby-rspec-mocks_3.10.0c1e1m2s3-1_all.deb ...
Unpacking ruby-rspec-mocks (3.10.0c1e1m2s3-1) ...
Selecting previously unselected package ruby-rspec.
Preparing to unpack .../230-ruby-rspec_3.10.0c1e1m2s3-1_all.deb ...
Unpacking ruby-rspec (3.10.0c1e1m2s3-1) ...
Selecting previously unselected package rake-compiler.
Preparing to unpack .../231-rake-compiler_1.1.1-1_all.deb ...
Unpacking rake-compiler (1.1.1-1) ...
Selecting previously unselected package sbuild-build-depends-main-dummy.
Preparing to unpack .../232-sbuild-build-depends-main-dummy_0.invalid.0_amd64.deb ...
Unpacking sbuild-build-depends-main-dummy (0.invalid.0) ...
Setting up libksba8:amd64 (1.6.0-2) ...
Setting up media-types (7.0.0) ...
Setting up libpipeline1:amd64 (1.5.5-1) ...
Setting up libgraphite2-3:amd64 (1.3.14-1) ...
Setting up liblcms2-2:amd64 (2.12~rc1-2) ...
Setting up wdiff (1.2.2-2+b1) ...
Setting up libpciaccess0:amd64 (0.16-3) ...
Setting up libfile-which-perl (1.23-1) ...
Setting up libxau6:amd64 (1:1.0.9-1) ...
Setting up bsdextrautils (2.37.3-1+b1) ...
Setting up java-common (0.72) ...
Setting up libunsafe-mock-java (8.0-3) ...
Setting up libicu67:amd64 (67.1-7) ...
Setting up libdynaloader-functions-perl (0.003-1.1) ...
Setting up libclass-method-modifiers-perl (2.13-1) ...
Setting up libio-pty-perl (1:1.15-2+b1) ...
Setting up libmagic-mgc (1:5.41-3) ...
Setting up libarchive-zip-perl (1.68-1) ...
Setting up libyaml-0-2:amd64 (0.2.2-1) ...
Setting up libglib2.0-0:amd64 (2.72.0-1) ...
No schema files found: doing nothing.
Setting up libglvnd0:amd64 (1.4.0-1) ...
Setting up libhtml-tagset-perl (3.20-4) ...
Setting up libdebhelper-perl (13.6) ...
Setting up libbrotli1:amd64 (1.0.9-2+b3) ...
Setting up libsqlite3-0:amd64 (3.38.2-1) ...
Setting up liblwp-mediatypes-perl (6.04-1) ...
Setting up libasm-java (9.2-1) ...
Setting up libmodulator-java (1.0-3) ...
Setting up x11-common (1:7.7+23) ...
invoke-rc.d: could not determine current runlevel
All runlevel operations denied by policy
invoke-rc.d: policy-rc.d denied execution of restart.
Setting up libtry-tiny-perl (0.31-1) ...
Setting up libsensors-config (1:3.6.0-7) ...
Setting up libmagic1:amd64 (1:5.41-3) ...
Setting up perl-openssl-defaults:amd64 (5) ...
Setting up gettext-base (0.21-6) ...
Setting up libencode-locale-perl (1.05-1.1) ...
Setting up libnpth0:amd64 (1.6-3) ...
Setting up libheadius-options-java (1.4-2) ...
Setting up file (1:5.41-3) ...
Setting up libassuan0:amd64 (2.5.5-1) ...
Setting up libjnr-x86asm-java (1.0.2-5.1) ...
Setting up libjzlib-java (1.1.3-2) ...
Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg-2+b1) ...
Setting up libasound2-data (1.2.6.1-2) ...
Setting up libjitescript-java (0.4.1-3) ...
Setting up autotools-dev (20220109.1) ...
Setting up libz3-4:amd64 (4.8.12-1+b1) ...
Setting up libbsf-java (1:2.4.0-8) ...
Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg-3) ...
Setting up libosgi-annotation-java (8.0.1-1) ...
Setting up libjpeg62-turbo:amd64 (1:2.1.2-1) ...
Setting up libx11-data (2:1.7.2-2) ...
Setting up libnspr4:amd64 (2:4.32-3) ...
Setting up gnupg-l10n (2.2.27-3) ...
Setting up libavahi-common-data:amd64 (0.8-5) ...
Setting up libdbus-1-3:amd64 (1.14.0-1) ...
Setting up ruby-net-telnet (0.1.1-2) ...
Setting up libsigsegv2:amd64 (2.14-1) ...
Setting up libpng16-16:amd64 (1.6.37-3) ...
Setting up libio-html-perl (1.004-2) ...
Setting up libjna-jni (5.9.0-1) ...
Setting up autopoint (0.21-6) ...
Setting up libb-hooks-op-check-perl (0.22-1+b4) ...
Setting up fonts-dejavu-core (2.37-2) ...
Setting up libipc-run-perl (20200505.0-1) ...
Setting up libpcsclite1:amd64 (1.9.5-3) ...
Setting up libsensors5:amd64 (1:3.6.0-7) ...
Setting up libncursesw6:amd64 (6.3-2) ...
Setting up libhamcrest-java (1.3-9) ...
Setting up libglapi-mesa:amd64 (21.3.7-1) ...
Setting up libsasl2-2:amd64 (2.1.28+dfsg-2+b1) ...
Setting up libvulkan1:amd64 (1.3.204.1-2) ...
Setting up ruby-rspec-support (3.10.0c1e1m2s3-1) ...
Setting up libjoda-time-java (2.10.10-1) ...
Setting up libjcodings-java (1.0.56-1) ...
Setting up libtimedate-perl (2.3300-2) ...
Setting up libbytelist-java (1.0.15-1) ...
Setting up libgif7:amd64 (5.1.9-2) ...
Setting up libmd0:amd64 (1.0.4-1) ...
Setting up sensible-utils (0.0.17) ...
Setting up libxshmfence1:amd64 (1.3-1) ...
Setting up libuchardet0:amd64 (0.0.7-1) ...
Setting up libjna-java (5.9.0-1) ...
Setting up libasound2:amd64 (1.2.6.1-2+b1) ...
Setting up libmpdec3:amd64 (2.5.1-2) ...
Setting up librole-tiny-perl (2.002004-1) ...
Setting up libsub-override-perl (0.09-2) ...
Setting up netbase (6.3) ...
Setting up libsub-quote-perl (2.006006-1) ...
Setting up libinvokebinder-java (1.7-2) ...
Setting up libclass-xsaccessor-perl (1.19-3+b8) ...
Setting up libjffi-jni:amd64 (1.2.7-11+b2) ...
Setting up libunsafe-fences-java (1.0-1.1) ...
Setting up libfile-dirlist-perl (0.05-2) ...
Setting up libfile-homedir-perl (1.006-1) ...
Setting up libyaml-snake-java (1.29-1) ...
Setting up openssl (1.1.1n-1) ...
Setting up libbsd0:amd64 (0.11.5-1+b1) ...
Setting up libdrm-common (2.4.110-1) ...
Setting up libelf1:amd64 (0.186-1) ...
Setting up readline-common (8.1.2-1) ...
Setting up ruby-xmlrpc (0.3.2-1) ...
Setting up libhawtjni-runtime-java (1.17-1) ...
Setting up libxml2:amd64 (2.9.13+dfsg-1) ...
Setting up libdirgra-java (0.3-1.1) ...
Setting up liburi-perl (5.10-1) ...
Setting up libfile-touch-perl (0.12-1) ...
Setting up dctrl-tools (2.24-3+b1) ...
Setting up libjnr-constants-java (0.10.3-1) ...
Setting up libnet-ssleay-perl:amd64 (1.92-1+b1) ...
Setting up pinentry-curses (1.1.0-4) ...
Setting up libfile-stripnondeterminism-perl (1.13.0-1) ...
Setting up libjffi-java (1.2.7-11) ...
Setting up libosgi-core-java (7.0.0-2) ...
Setting up libhttp-date-perl (6.05-1) ...
Setting up libxdmcp6:amd64 (1:1.1.2-3) ...
Setting up libxcb1:amd64 (1.14-3) ...
Setting up gettext (0.21-6) ...
Setting up libgmp-dev:amd64 (2:6.2.1+dfsg-3) ...
Setting up libxcb-xfixes0:amd64 (1.14-3) ...
Setting up libfile-listing-perl (6.14-1) ...
Setting up libjruby-joni-java (2.1.42-1) ...
Setting up libyaml-dev:amd64 (0.2.2-1) ...
Setting up libtool (2.4.7-2) ...
Setting up libpsych-java (3.3.2-1) ...
Setting up libxcb-glx0:amd64 (1.14-3) ...
Setting up libedit2:amd64 (3.1-20210910-1) ...
Setting up libreadline8:amd64 (8.1.2-1) ...
Setting up libavahi-common3:amd64 (0.8-5) ...
Setting up libnet-http-perl (6.22-1) ...
Setting up m4 (1.4.18-5) ...
Setting up libjna-platform-java (5.9.0-1) ...
Setting up libnss3:amd64 (2:3.75-1) ...
Setting up libxcb-shm0:amd64 (1.14-3) ...
Setting up libdevel-callchecker-perl (0.008-1+b3) ...
Setting up libldap-2.5-0:amd64 (2.5.11+dfsg-1) ...
Setting up intltool-debian (0.35.0+20060710.5) ...
Setting up libxcb-present0:amd64 (1.14-3) ...
Setting up libpython3.10-stdlib:amd64 (3.10.4-1) ...
Setting up patchutils (0.4.2-1) ...
Setting up ca-certificates (20211016) ...
Updating certificates in /etc/ssl/certs...
127 added, 0 removed; done.
Setting up libfreetype6:amd64 (2.11.1+dfsg-1) ...
Setting up libxcb-sync1:amd64 (1.14-3) ...
Setting up libllvm13:amd64 (1:13.0.1-3+b2) ...
Setting up ucf (3.0043) ...
Setting up autoconf (2.71-2) ...
Setting up libxcb-dri2-0:amd64 (1.14-3) ...
Setting up dh-strip-nondeterminism (1.13.0-1) ...
Setting up libwww-robotrules-perl (6.02-1) ...
Setting up libdrm2:amd64 (2.4.110-1) ...
Setting up dwz (0.14-1) ...
Setting up libjansi-native-java (1.8-1) ...
Setting up groff-base (1.22.4-8) ...
Setting up libhtml-parser-perl:amd64 (3.77-1) ...
Setting up gpgconf (2.2.27-3+b1) ...
Setting up libx11-6:amd64 (2:1.7.2-2+b1) ...
Setting up libharfbuzz0b:amd64 (2.7.4-1) ...
Setting up libavahi-client3:amd64 (0.8-5) ...
Setting up libio-socket-ssl-perl (2.074-2) ...
Setting up gpg (2.2.27-3+b1) ...
Setting up libpython3-stdlib:amd64 (3.10.4-1) ...
Setting up gnupg-utils (2.2.27-3+b1) ...
Setting up libhttp-message-perl (6.36-1) ...
Setting up libdrm-amdgpu1:amd64 (2.4.110-1) ...
Setting up nailgun (0.9.3-3+b1) ...
Setting up libjnr-ffi-java (2.2.7-1) ...
Setting up automake (1:1.16.5-1.3) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
Setting up libxcb-dri3-0:amd64 (1.14-3) ...
Setting up libx11-xcb1:amd64 (2:1.7.2-2+b1) ...
Setting up libhttp-negotiate-perl (6.01-1) ...
Setting up libdrm-nouveau2:amd64 (2.4.110-1) ...
Setting up gpg-agent (2.2.27-3+b1) ...
Setting up python3.10 (3.10.4-1) ...
Setting up libxrender1:amd64 (1:0.9.10-1) ...
Setting up libhttp-cookies-perl (6.10-1) ...
Setting up libdrm-radeon1:amd64 (2.4.110-1) ...
Setting up fontconfig-config (2.13.1-4.4) ...
Setting up po-debconf (1.0.21+nmu1) ...
Setting up libhtml-tree-perl (5.07-2) ...
Setting up libparams-classify-perl (0.015-1+b4) ...
Setting up gpgsm (2.2.27-3+b1) ...
Setting up libdrm-intel1:amd64 (2.4.110-1) ...
Setting up libgl1-mesa-dri:amd64 (21.3.7-1) ...
Setting up libxext6:amd64 (2:1.3.4-1) ...
Setting up python3 (3.10.4-1) ...
Setting up rubygems-integration (1.18) ...
Setting up man-db (2.10.2-1) ...
Not building database; man-db/auto-update is not 'true'.
Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ...
Setting up dh-autoreconf (20) ...
Setting up dirmngr (2.2.27-3+b1) ...
Setting up libjnr-enxio-java (0.32.3-2) ...
Setting up libmodule-runtime-perl (0.016-1) ...
Setting up libxfixes3:amd64 (1:6.0.0-1) ...
Setting up libjansi-java (1.18-1) ...
Setting up gpg-wks-server (2.2.27-3+b1) ...
Setting up libcups2:amd64 (2.4.1op1-2) ...
Setting up libjnr-netdb-java (1.1.6-1.1) ...
Setting up libfontconfig1:amd64 (2.13.1-4.4) ...
Setting up libjnr-posix-java (3.1.10-1) ...
Setting up libglx-mesa0:amd64 (21.3.7-1) ...
Setting up libxi6:amd64 (2:1.8-1) ...
Setting up gpg-wks-client (2.2.27-3+b1) ...
Setting up libglx0:amd64 (1.4.0-1) ...
Setting up libimport-into-perl (1.002005-1) ...
Setting up libxtst6:amd64 (2:1.2.3-1) ...
Setting up libmoo-perl (2.005004-3) ...
Setting up debhelper (13.6) ...
Setting up libgl1:amd64 (1.4.0-1) ...
Setting up gnupg (2.2.27-3) ...
Setting up libjnr-unixsocket-java (0.18-4) ...
Setting up default-jre-headless (2:1.11-72) ...
Setting up libwww-perl (6.61-1) ...
Setting up openjdk-11-jre-headless:amd64 (11.0.14.1+1-1) ...
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/java to provide /usr/bin/java (java) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jjs to provide /usr/bin/jjs (jjs) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/rmid to provide /usr/bin/rmid (rmid) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/pack200 to provide /usr/bin/pack200 (pack200) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/unpack200 to provide /usr/bin/unpack200 (unpack200) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode
Setting up openjdk-11-jre:amd64 (11.0.14.1+1-1) ...
Setting up ruby-rubygems (3.3.5-2) ...
Setting up openjdk-11-jdk-headless:amd64 (11.0.14.1+1-1) ...
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jar to provide /usr/bin/jar (jar) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jarsigner to provide /usr/bin/jarsigner (jarsigner) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/javac to provide /usr/bin/javac (javac) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/javadoc to provide /usr/bin/javadoc (javadoc) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/javap to provide /usr/bin/javap (javap) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jcmd to provide /usr/bin/jcmd (jcmd) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jdb to provide /usr/bin/jdb (jdb) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jdeprscan to provide /usr/bin/jdeprscan (jdeprscan) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jdeps to provide /usr/bin/jdeps (jdeps) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jfr to provide /usr/bin/jfr (jfr) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jimage to provide /usr/bin/jimage (jimage) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jinfo to provide /usr/bin/jinfo (jinfo) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jlink to provide /usr/bin/jlink (jlink) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jmap to provide /usr/bin/jmap (jmap) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jmod to provide /usr/bin/jmod (jmod) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jps to provide /usr/bin/jps (jps) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jrunscript to provide /usr/bin/jrunscript (jrunscript) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jshell to provide /usr/bin/jshell (jshell) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jstack to provide /usr/bin/jstack (jstack) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jstat to provide /usr/bin/jstat (jstat) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jstatd to provide /usr/bin/jstatd (jstatd) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/rmic to provide /usr/bin/rmic (rmic) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/serialver to provide /usr/bin/serialver (serialver) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jaotc to provide /usr/bin/jaotc (jaotc) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jhsdb to provide /usr/bin/jhsdb (jhsdb) in auto mode
Setting up default-jre (2:1.11-72) ...
Setting up default-jdk-headless (2:1.11-72) ...
Setting up devscripts (2.22.1) ...
Setting up rake (13.0.6-3) ...
Setting up ant (1.10.12-1) ...
Setting up openjdk-11-jdk:amd64 (11.0.14.1+1-1) ...
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jconsole to provide /usr/bin/jconsole (jconsole) in auto mode
Setting up javahelper (0.78) ...
Setting up ca-certificates-java (20190909) ...
head: cannot open '/etc/ssl/certs/java/cacerts' for reading: No such file or directory
Adding debian:SwissSign_Silver_CA_-_G2.pem
Adding debian:GlobalSign_Root_CA_-_R3.pem
Adding debian:DigiCert_Assured_ID_Root_G3.pem
Adding debian:IdenTrust_Commercial_Root_CA_1.pem
Adding debian:Atos_TrustedRoot_2011.pem
Adding debian:EC-ACC.pem
Adding debian:Certum_Trusted_Root_CA.pem
Adding debian:TeliaSonera_Root_CA_v1.pem
Adding debian:QuoVadis_Root_CA_3.pem
Adding debian:CFCA_EV_ROOT.pem
Adding debian:IdenTrust_Public_Sector_Root_CA_1.pem
Adding debian:TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem
Adding debian:GlobalSign_ECC_Root_CA_-_R5.pem
Adding debian:ISRG_Root_X1.pem
Adding debian:Amazon_Root_CA_2.pem
Adding debian:SZAFIR_ROOT_CA2.pem
Adding debian:Certum_EC-384_CA.pem
Adding debian:Starfield_Class_2_CA.pem
Adding debian:emSign_ECC_Root_CA_-_G3.pem
Adding debian:GTS_Root_R2.pem
Adding debian:GDCA_TrustAUTH_R5_ROOT.pem
Adding debian:certSIGN_Root_CA_G2.pem
Adding debian:Cybertrust_Global_Root.pem
Adding debian:DigiCert_Global_Root_CA.pem
Adding debian:Baltimore_CyberTrust_Root.pem
Adding debian:TrustCor_ECA-1.pem
Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem
Adding debian:emSign_ECC_Root_CA_-_C3.pem
Adding debian:SSL.com_Root_Certification_Authority_ECC.pem
Adding debian:Microsec_e-Szigno_Root_CA_2009.pem
Adding debian:Amazon_Root_CA_3.pem
Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem
Adding debian:OISTE_WISeKey_Global_Root_GC_CA.pem
Adding debian:Trustwave_Global_ECC_P256_Certification_Authority.pem
Adding debian:CA_Disig_Root_R2.pem
Adding debian:QuoVadis_Root_CA_2_G3.pem
Adding debian:Amazon_Root_CA_4.pem
Adding debian:Trustwave_Global_Certification_Authority.pem
Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem
Adding debian:Security_Communication_Root_CA.pem
Adding debian:GlobalSign_ECC_Root_CA_-_R4.pem
Adding debian:USERTrust_ECC_Certification_Authority.pem
Adding debian:Entrust_Root_Certification_Authority.pem
Adding debian:COMODO_Certification_Authority.pem
Adding debian:QuoVadis_Root_CA_2.pem
Adding debian:DigiCert_Trusted_Root_G4.pem
Adding debian:TWCA_Global_Root_CA.pem
Adding debian:TWCA_Root_Certification_Authority.pem
Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem
Adding debian:AffirmTrust_Networking.pem
Adding debian:GlobalSign_Root_CA_-_R2.pem
Adding debian:certSIGN_ROOT_CA.pem
Adding debian:DigiCert_Assured_ID_Root_G2.pem
Adding debian:Certigna_Root_CA.pem
Adding debian:Trustwave_Global_ECC_P384_Certification_Authority.pem
Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem
Adding debian:COMODO_ECC_Certification_Authority.pem
Adding debian:AffirmTrust_Premium_ECC.pem
Adding debian:emSign_Root_CA_-_G1.pem
Adding debian:AC_RAIZ_FNMT-RCM.pem
Adding debian:UCA_Extended_Validation_Root.pem
Adding debian:Certum_Trusted_Network_CA_2.pem
Adding debian:Hongkong_Post_Root_CA_1.pem
Adding debian:TrustCor_RootCert_CA-1.pem
Adding debian:Buypass_Class_3_Root_CA.pem
Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem
Adding debian:SecureTrust_CA.pem
Adding debian:GTS_Root_R4.pem
Adding debian:emSign_Root_CA_-_C1.pem
Adding debian:GTS_Root_R3.pem
Adding debian:T-TeleSec_GlobalRoot_Class_3.pem
Adding debian:SSL.com_EV_Root_Certification_Authority_RSA_R2.pem
Adding debian:Secure_Global_CA.pem
Adding debian:Comodo_AAA_Services_root.pem
Adding debian:GlobalSign_Root_R46.pem
Adding debian:ePKI_Root_Certification_Authority.pem
Adding debian:TrustCor_RootCert_CA-2.pem
Adding debian:AffirmTrust_Premium.pem
Adding debian:GLOBALTRUST_2020.pem
Adding debian:Security_Communication_RootCA2.pem
Adding debian:COMODO_RSA_Certification_Authority.pem
Adding debian:AC_RAIZ_FNMT-RCM_SERVIDORES_SEGUROS.pem
Adding debian:Entrust_Root_Certification_Authority_-_G2.pem
Adding debian:Certum_Trusted_Network_CA.pem
Adding debian:OISTE_WISeKey_Global_Root_GB_CA.pem
Adding debian:QuoVadis_Root_CA_3_G3.pem
Adding debian:Microsoft_RSA_Root_Certificate_Authority_2017.pem
Adding debian:NAVER_Global_Root_Certification_Authority.pem
Adding debian:SSL.com_Root_Certification_Authority_RSA.pem
Adding debian:Buypass_Class_2_Root_CA.pem
Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem
Adding debian:USERTrust_RSA_Certification_Authority.pem
Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem
Adding debian:SSL.com_EV_Root_Certification_Authority_ECC.pem
Adding debian:DigiCert_Global_Root_G2.pem
Adding debian:QuoVadis_Root_CA_1_G3.pem
Adding debian:GlobalSign_Root_CA_-_R6.pem
Adding debian:XRamp_Global_CA_Root.pem
Adding debian:Entrust_Root_Certification_Authority_-_G4.pem
Adding debian:GTS_Root_R1.pem
Adding debian:AffirmTrust_Commercial.pem
Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem
Adding debian:DigiCert_Assured_ID_Root_CA.pem
Adding debian:Staat_der_Nederlanden_EV_Root_CA.pem
Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem
Adding debian:UCA_Global_G2_Root.pem
Adding debian:e-Szigno_Root_CA_2017.pem
Adding debian:ANF_Secure_Server_Root_CA.pem
Adding debian:Hongkong_Post_Root_CA_3.pem
Adding debian:GlobalSign_Root_CA.pem
Adding debian:Certigna.pem
Adding debian:Go_Daddy_Class_2_CA.pem
Adding debian:Izenpe.com.pem
Warning: there was a problem reading the certificate file /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F?tan?s?tv?ny.pem. Message:
  /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F?tan?s?tv?ny.pem (No such file or directory)
Adding debian:T-TeleSec_GlobalRoot_Class_2.pem
Adding debian:Actalis_Authentication_Root_CA.pem
Adding debian:ACCVRAIZ1.pem
Adding debian:DigiCert_Global_Root_G3.pem
Adding debian:Microsoft_ECC_Root_Certificate_Authority_2017.pem
Adding debian:E-Tugra_Certification_Authority.pem
Adding debian:Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem
Adding debian:SecureSign_RootCA11.pem
Adding debian:Network_Solutions_Certificate_Authority.pem
Adding debian:Amazon_Root_CA_1.pem
Adding debian:GlobalSign_Root_E46.pem
Adding debian:Entrust_Root_Certification_Authority_-_EC1.pem
Adding debian:SwissSign_Gold_CA_-_G2.pem
done.
Setting up junit4 (4.13.2-1) ...
Setting up liblwp-protocol-https-perl (6.10-1) ...
Setting up libruby3.0:amd64 (3.0.3-1) ...
Setting up default-jdk (2:1.11-72) ...
Setting up ruby3.0-dev:amd64 (3.0.3-1) ...
Setting up ruby3.0 (3.0.3-1) ...
Setting up ruby-all-dev:amd64 (1:3.0+1) ...
Setting up ruby (1:3.0+1) ...
Setting up ruby-rspec-core (3.10.0c1e1m2s3-1) ...
Setting up ruby-diff-lcs (1.4.4-1) ...
Setting up ruby-jar-dependencies (0.3.10-2) ...
Setting up jruby (9.1.17.0-3) ...
Setting up gem2deb-test-runner (1.8) ...
Setting up ruby-rspec-expectations (3.10.0c1e1m2s3-1) ...
Setting up ruby-rspec-mocks (3.10.0c1e1m2s3-1) ...
Setting up gem2deb (1.8) ...
Setting up ruby-rspec (3.10.0c1e1m2s3-1) ...
Setting up rake-compiler (1.1.1-1) ...
Setting up sbuild-build-depends-main-dummy (0.invalid.0) ...
Processing triggers for libc-bin (2.33-7) ...
Processing triggers for ca-certificates (20211016) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...

done.
done.

+------------------------------------------------------------------------------+
| Check architectures                                                          |
+------------------------------------------------------------------------------+

Arch check ok (amd64 included in any all)

+------------------------------------------------------------------------------+
| Build environment                                                            |
+------------------------------------------------------------------------------+

Kernel: Linux 5.10.0-13-amd64 #1 SMP Debian 5.10.106-1 (2022-03-17) amd64 (x86_64)
Toolchain package versions: binutils_2.38-3 dpkg-dev_1.21.6 g++-11_11.2.0-19 gcc-11_11.2.0-19 libc6-dev_2.33-7 libstdc++-11-dev_11.2.0-19 libstdc++6_12-20220319-1 linux-libc-dev_5.16.18-1
Package versions: adduser_3.121 ant_1.10.12-1 apt_2.4.3 autoconf_2.71-2 automake_1:1.16.5-1.3 autopoint_0.21-6 autotools-dev_20220109.1 base-files_12.2 base-passwd_3.5.52 bash_5.1-6 binutils_2.38-3 binutils-common_2.38-3 binutils-x86-64-linux-gnu_2.38-3 bsdextrautils_2.37.3-1+b1 bsdutils_1:2.37.3-1+b1 build-essential_12.9 bzip2_1.0.8-5 ca-certificates_20211016 ca-certificates-java_20190909 ccache_4.6-1 coreutils_8.32-4.1 cpp_4:11.2.0-2 cpp-11_11.2.0-19 dash_0.5.11+git20210903+057cd650a4ed-8 dctrl-tools_2.24-3+b1 debconf_1.5.79 debhelper_13.6 debian-archive-keyring_2021.1.1 debianutils_5.7-0.1 default-jdk_2:1.11-72 default-jdk-headless_2:1.11-72 default-jre_2:1.11-72 default-jre-headless_2:1.11-72 devscripts_2.22.1 dh-autoreconf_20 dh-strip-nondeterminism_1.13.0-1 diffutils_1:3.7-5 dirmngr_2.2.27-3+b1 dpkg_1.21.6 dpkg-dev_1.21.6 dwz_0.14-1 e2fsprogs_1.46.5-2 eatmydata_130-2 fakeroot_1.28-1 file_1:5.41-3 findutils_4.9.0-2 fontconfig-config_2.13.1-4.4 fonts-dejavu-core_2.37-2 g++_4:11.2.0-2 g++-11_11.2.0-19 gcc_4:11.2.0-2 gcc-10-base_10.3.0-15 gcc-11_11.2.0-19 gcc-11-base_11.2.0-19 gcc-12-base_12-20220319-1 gcc-9-base_9.4.0-5 gem2deb_1.8 gem2deb-test-runner_1.8 gettext_0.21-6 gettext-base_0.21-6 gnupg_2.2.27-3 gnupg-l10n_2.2.27-3 gnupg-utils_2.2.27-3+b1 gpg_2.2.27-3+b1 gpg-agent_2.2.27-3+b1 gpg-wks-client_2.2.27-3+b1 gpg-wks-server_2.2.27-3+b1 gpgconf_2.2.27-3+b1 gpgsm_2.2.27-3+b1 gpgv_2.2.27-3+b1 grep_3.7-1 groff-base_1.22.4-8 gzip_1.10-4 hostname_3.23 init-system-helpers_1.62 intltool-debian_0.35.0+20060710.5 java-common_0.72 javahelper_0.78 jruby_9.1.17.0-3 junit4_4.13.2-1 libacl1_2.3.1-1 libapt-pkg6.0_2.4.3 libarchive-zip-perl_1.68-1 libasan6_11.2.0-19 libasm-java_9.2-1 libasound2_1.2.6.1-2+b1 libasound2-data_1.2.6.1-2 libassuan0_2.5.5-1 libatomic1_12-20220319-1 libattr1_1:2.5.1-1 libaudit-common_1:3.0.7-1 libaudit1_1:3.0.7-1+b1 libavahi-client3_0.8-5 libavahi-common-data_0.8-5 libavahi-common3_0.8-5 libb-hooks-op-check-perl_0.22-1+b4 libbinutils_2.38-3 libblkid1_2.37.3-1+b1 libbrotli1_1.0.9-2+b3 libbsd0_0.11.5-1+b1 libbsf-java_1:2.4.0-8 libbytelist-java_1.0.15-1 libbz2-1.0_1.0.8-5 libc-bin_2.33-7 libc-dev-bin_2.33-7 libc6_2.33-7 libc6-dev_2.33-7 libcap-ng0_0.7.9-2.2+b2 libcap2_1:2.44-1 libcc1-0_12-20220319-1 libclass-method-modifiers-perl_2.13-1 libclass-xsaccessor-perl_1.19-3+b8 libcom-err2_1.46.5-2 libcrypt-dev_1:4.4.27-1.1 libcrypt1_1:4.4.27-1.1 libctf-nobfd0_2.38-3 libctf0_2.38-3 libcups2_2.4.1op1-2 libdb5.3_5.3.28+dfsg1-0.8 libdbus-1-3_1.14.0-1 libdebconfclient0_0.261 libdebhelper-perl_13.6 libdevel-callchecker-perl_0.008-1+b3 libdirgra-java_0.3-1.1 libdpkg-perl_1.21.6 libdrm-amdgpu1_2.4.110-1 libdrm-common_2.4.110-1 libdrm-intel1_2.4.110-1 libdrm-nouveau2_2.4.110-1 libdrm-radeon1_2.4.110-1 libdrm2_2.4.110-1 libdynaloader-functions-perl_0.003-1.1 libeatmydata1_130-2 libedit2_3.1-20210910-1 libelf1_0.186-1 libencode-locale-perl_1.05-1.1 libexpat1_2.4.8-1 libext2fs2_1.46.5-2 libfakeroot_1.28-1 libffi8_3.4.2-4 libfile-dirlist-perl_0.05-2 libfile-homedir-perl_1.006-1 libfile-listing-perl_6.14-1 libfile-stripnondeterminism-perl_1.13.0-1 libfile-touch-perl_0.12-1 libfile-which-perl_1.23-1 libfontconfig1_2.13.1-4.4 libfreetype6_2.11.1+dfsg-1 libgcc-11-dev_11.2.0-19 libgcc-s1_12-20220319-1 libgcrypt20_1.9.4-5 libgdbm-compat4_1.23-1 libgdbm6_1.23-1 libgif7_5.1.9-2 libgl1_1.4.0-1 libgl1-mesa-dri_21.3.7-1 libglapi-mesa_21.3.7-1 libglib2.0-0_2.72.0-1 libglvnd0_1.4.0-1 libglx-mesa0_21.3.7-1 libglx0_1.4.0-1 libgmp-dev_2:6.2.1+dfsg-3 libgmp10_2:6.2.1+dfsg-3 libgmpxx4ldbl_2:6.2.1+dfsg-3 libgnutls30_3.7.3-4+b1 libgomp1_12-20220319-1 libgpg-error0_1.43-3 libgraphite2-3_1.3.14-1 libgssapi-krb5-2_1.19.2-2+b1 libhamcrest-java_1.3-9 libharfbuzz0b_2.7.4-1 libhawtjni-runtime-java_1.17-1 libheadius-options-java_1.4-2 libhiredis0.14_0.14.1-2 libhogweed6_3.7.3-1 libhtml-parser-perl_3.77-1 libhtml-tagset-perl_3.20-4 libhtml-tree-perl_5.07-2 libhttp-cookies-perl_6.10-1 libhttp-date-perl_6.05-1 libhttp-message-perl_6.36-1 libhttp-negotiate-perl_6.01-1 libicu67_67.1-7 libidn2-0_2.3.2-2 libimport-into-perl_1.002005-1 libinvokebinder-java_1.7-2 libio-html-perl_1.004-2 libio-pty-perl_1:1.15-2+b1 libio-socket-ssl-perl_2.074-2 libipc-run-perl_20200505.0-1 libisl23_0.24-2 libitm1_12-20220319-1 libjansi-java_1.18-1 libjansi-native-java_1.8-1 libjcodings-java_1.0.56-1 libjffi-java_1.2.7-11 libjffi-jni_1.2.7-11+b2 libjitescript-java_0.4.1-3 libjna-java_5.9.0-1 libjna-jni_5.9.0-1 libjna-platform-java_5.9.0-1 libjnr-constants-java_0.10.3-1 libjnr-enxio-java_0.32.3-2 libjnr-ffi-java_2.2.7-1 libjnr-netdb-java_1.1.6-1.1 libjnr-posix-java_3.1.10-1 libjnr-unixsocket-java_0.18-4 libjnr-x86asm-java_1.0.2-5.1 libjoda-time-java_2.10.10-1 libjpeg62-turbo_1:2.1.2-1 libjruby-joni-java_2.1.42-1 libjzlib-java_1.1.3-2 libk5crypto3_1.19.2-2+b1 libkeyutils1_1.6.1-3 libkrb5-3_1.19.2-2+b1 libkrb5support0_1.19.2-2+b1 libksba8_1.6.0-2 liblcms2-2_2.12~rc1-2 libldap-2.5-0_2.5.11+dfsg-1 libllvm13_1:13.0.1-3+b2 liblsan0_12-20220319-1 liblwp-mediatypes-perl_6.04-1 liblwp-protocol-https-perl_6.10-1 liblz4-1_1.9.3-2 liblzma5_5.2.5-2 libmagic-mgc_1:5.41-3 libmagic1_1:5.41-3 libmd0_1.0.4-1 libmodulator-java_1.0-3 libmodule-runtime-perl_0.016-1 libmoo-perl_2.005004-3 libmount1_2.37.3-1+b1 libmpc3_1.2.1-2 libmpdec3_2.5.1-2 libmpfr6_4.1.0-3 libncursesw6_6.3-2 libnet-http-perl_6.22-1 libnet-ssleay-perl_1.92-1+b1 libnettle8_3.7.3-1 libnpth0_1.6-3 libnsl-dev_1.3.0-2 libnsl2_1.3.0-2 libnspr4_2:4.32-3 libnss3_2:3.75-1 libosgi-annotation-java_8.0.1-1 libosgi-core-java_7.0.0-2 libp11-kit0_0.24.0-6 libpam-modules_1.4.0-11 libpam-modules-bin_1.4.0-11 libpam-runtime_1.4.0-11 libpam0g_1.4.0-11 libparams-classify-perl_0.015-1+b4 libpciaccess0_0.16-3 libpcre2-8-0_10.39-3 libpcre3_2:8.39-13 libpcsclite1_1.9.5-3 libperl5.32_5.32.1-6 libperl5.34_5.34.0-3 libpipeline1_1.5.5-1 libpng16-16_1.6.37-3 libpsych-java_3.3.2-1 libpython3-stdlib_3.10.4-1 libpython3.10-minimal_3.10.4-1 libpython3.10-stdlib_3.10.4-1 libquadmath0_12-20220319-1 libreadline8_8.1.2-1 librole-tiny-perl_2.002004-1 libruby3.0_3.0.3-1 libsasl2-2_2.1.28+dfsg-2+b1 libsasl2-modules-db_2.1.28+dfsg-2+b1 libseccomp2_2.5.3-2 libselinux1_3.3-1+b2 libsemanage-common_3.3-1 libsemanage2_3.3-1+b2 libsensors-config_1:3.6.0-7 libsensors5_1:3.6.0-7 libsepol2_3.3-1 libsigsegv2_2.14-1 libsmartcols1_2.37.3-1+b1 libsqlite3-0_3.38.2-1 libss2_1.46.5-2 libssl1.1_1.1.1n-1 libstdc++-11-dev_11.2.0-19 libstdc++6_12-20220319-1 libsub-override-perl_0.09-2 libsub-quote-perl_2.006006-1 libsystemd0_250.4-1 libtasn1-6_4.18.0-4 libtimedate-perl_2.3300-2 libtinfo6_6.3-2 libtirpc-common_1.3.2-2 libtirpc-dev_1.3.2-2 libtirpc3_1.3.2-2 libtool_2.4.7-2 libtry-tiny-perl_0.31-1 libtsan0_11.2.0-19 libubsan1_12-20220319-1 libuchardet0_0.0.7-1 libudev1_250.4-1 libunistring2_1.0-1 libunsafe-fences-java_1.0-1.1 libunsafe-mock-java_8.0-3 liburi-perl_5.10-1 libuuid1_2.37.3-1+b1 libvulkan1_1.3.204.1-2 libwww-perl_6.61-1 libwww-robotrules-perl_6.02-1 libx11-6_2:1.7.2-2+b1 libx11-data_2:1.7.2-2 libx11-xcb1_2:1.7.2-2+b1 libxau6_1:1.0.9-1 libxcb-dri2-0_1.14-3 libxcb-dri3-0_1.14-3 libxcb-glx0_1.14-3 libxcb-present0_1.14-3 libxcb-shm0_1.14-3 libxcb-sync1_1.14-3 libxcb-xfixes0_1.14-3 libxcb1_1.14-3 libxdmcp6_1:1.1.2-3 libxext6_2:1.3.4-1 libxfixes3_1:6.0.0-1 libxi6_2:1.8-1 libxml2_2.9.13+dfsg-1 libxrender1_1:0.9.10-1 libxshmfence1_1.3-1 libxtst6_2:1.2.3-1 libxxf86vm1_1:1.1.4-1+b2 libxxhash0_0.8.1-1 libyaml-0-2_0.2.2-1 libyaml-dev_0.2.2-1 libyaml-snake-java_1.29-1 libz3-4_4.8.12-1+b1 libzstd1_1.4.9+dfsg-1 linux-libc-dev_5.16.18-1 login_1:4.11.1+dfsg1-2 logsave_1.46.5-2 lsb-base_11.1.0 m4_1.4.18-5 make_4.3-4.1 man-db_2.10.2-1 mawk_1.3.4.20200120-3+b1 media-types_7.0.0 mount_2.37.3-1+b1 nailgun_0.9.3-3+b1 ncurses-base_6.3-2 ncurses-bin_6.3-2 netbase_6.3 openjdk-11-jdk_11.0.14.1+1-1 openjdk-11-jdk-headless_11.0.14.1+1-1 openjdk-11-jre_11.0.14.1+1-1 openjdk-11-jre-headless_11.0.14.1+1-1 openssl_1.1.1n-1 passwd_1:4.11.1+dfsg1-2 patch_2.7.6-7 patchutils_0.4.2-1 perl_5.34.0-3 perl-base_5.34.0-3 perl-modules-5.32_5.32.1-6 perl-modules-5.34_5.34.0-3 perl-openssl-defaults_5 pinentry-curses_1.1.0-4 po-debconf_1.0.21+nmu1 python3_3.10.4-1 python3-minimal_3.10.4-1 python3.10_3.10.4-1 python3.10-minimal_3.10.4-1 rake_13.0.6-3 rake-compiler_1.1.1-1 readline-common_8.1.2-1 rpcsvc-proto_1.4.2-4 ruby_1:3.0+1 ruby-all-dev_1:3.0+1 ruby-diff-lcs_1.4.4-1 ruby-jar-dependencies_0.3.10-2 ruby-net-telnet_0.1.1-2 ruby-rspec_3.10.0c1e1m2s3-1 ruby-rspec-core_3.10.0c1e1m2s3-1 ruby-rspec-expectations_3.10.0c1e1m2s3-1 ruby-rspec-mocks_3.10.0c1e1m2s3-1 ruby-rspec-support_3.10.0c1e1m2s3-1 ruby-rubygems_3.3.5-2 ruby-xmlrpc_0.3.2-1 ruby3.0_3.0.3-1 ruby3.0-dev_3.0.3-1 rubygems-integration_1.18 sbuild-build-depends-main-dummy_0.invalid.0 sed_4.8-1 sensible-utils_0.0.17 sysvinit-utils_3.01-1 tar_1.34+dfsg-1 tzdata_2022a-1 ucf_3.0043 util-linux_2.37.3-1+b1 wdiff_1.2.2-2+b1 x11-common_1:7.7+23 xz-utils_5.2.5-2 zlib1g_1:1.2.11.dfsg-4

+------------------------------------------------------------------------------+
| Build                                                                        |
+------------------------------------------------------------------------------+


Unpack source
-------------

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 3.0 (quilt)
Source: ruby-psych
Binary: ruby-psych, libpsych-java
Architecture: any all
Version: 3.3.2-1
Maintainer: Debian Ruby Team <pkg-ruby-extras-maintainers at lists.alioth.debian.org>
Uploaders: Andrew Lee (李健秋) <andrew.lee at collabora.co.uk>, Miguel Landaeta <nomadium at debian.org>
Homepage: https://github.com/ruby/psych
Standards-Version: 4.6.0
Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-psych
Vcs-Git: https://salsa.debian.org/ruby-team/ruby-psych.git
Testsuite: autopkgtest-pkg-ruby
Build-Depends: debhelper-compat (= 13), default-jdk, gem2deb, javahelper, jruby (>= 9.1.6.0~), libbytelist-java, libjcodings-java, libyaml-dev, libyaml-snake-java (>= 1.23~), rake, rake-compiler
Package-List:
 libpsych-java deb java optional arch=all
 ruby-psych deb ruby optional arch=any
Checksums-Sha1:
 a31dec34722f5bcb7c4f3a295b051d33dcc20739 145989 ruby-psych_3.3.2.orig.tar.gz
 b27a8bc9d0a0065fd3afa23a2e6d0cc64222e1cd 9536 ruby-psych_3.3.2-1.debian.tar.xz
Checksums-Sha256:
 c3b7e1ebdb41c9b3f224293cfd3a7d2731917822672b92bde6e3b56d28018217 145989 ruby-psych_3.3.2.orig.tar.gz
 d602a174d43f35107bad9a651e02f16a7e2df25cb7e110ae6239aad235f57ce3 9536 ruby-psych_3.3.2-1.debian.tar.xz
Files:
 c565408da378d715cf56ff2338f73cec 145989 ruby-psych_3.3.2.orig.tar.gz
 f62709d0ce22d330c46c69c51e9be1af 9536 ruby-psych_3.3.2-1.debian.tar.xz
Ruby-Versions: all

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEvu1N7VVEpMA+KD3HS80FZ8KW0F0FAmGvrBgACgkQS80FZ8KW
0F0qyA/9EINjT4L/2n06ZDLxjkPtuFofkPNfRQtwoIFQ0suytHbb34aE9/Qd/fFs
bSyY4CZsuh/Di2TchiY8yH1652dAgA5izIDb0ZIJYlDVkkQ16O6iDXiMHfMqWfSm
J4Cbs7ekvr5+RwgVpmfK5f3Y33GfxyrUG8NMpwl3k6qip4XRzJ0UUdOG7FLon/eG
qKpy9uBAUbTZnKQ0L/aJxRkhshgg3Y+Yk2/rudMDQpSH+MKTy1gNDIx4dIZgq3P6
/eGHv80HnbbgQjsZ/S0r/QfcgbzX41nB5W/hcLLP8l2sfT+EASFpEQqCqzGw2CkQ
oiC8GFVOyZn7QAC7G1uN9GPua03EF8ixjwBWK0dxJkzGylKE+eeT8hfCdlWQTyYY
BmbFHX878+XFwfc2gOwRnZawXa1d3UATp4AnVaf/azafrVlLTgDZUkZ+XBkTYiXQ
nVqzykjSahzjuHqkbeW5vCGPqXlNcEetIwIU8EDlZ4f2QR8lfrl5IHdla0pQIQ3q
Y+U7+O8jqbTFoBWjqr8aRiHwOXShvhebcGjWSrV8qubVkty6KiBHggstcop426Bl
+PdbxWhLvfvCNJzq5IG6oW1XsrVehNG8znWRx6bLI8HmKuQbF+F3RQYMduMzyxyz
ba7l/tVqfzBb/3d38ZA01H+h+Vd1HjXhuhvhb3mqjwwDCe9rcRg=
=e8AT
-----END PGP SIGNATURE-----

gpgv: unknown type of key resource 'trustedkeys.kbx'
gpgv: keyblock resource '/tmp/dpkg-verify-sig.xccPrlEI/trustedkeys.kbx': General error
gpgv: Signature made Tue Dec  7 18:46:48 2021 UTC
gpgv:                using RSA key BEED4DED5544A4C03E283DC74BCD0567C296D05D
gpgv: Can't check signature: No public key
dpkg-source: warning: cannot verify signature ./ruby-psych_3.3.2-1.dsc
dpkg-source: info: extracting ruby-psych in /<<PKGBUILDDIR>>
dpkg-source: info: unpacking ruby-psych_3.3.2.orig.tar.gz
dpkg-source: info: unpacking ruby-psych_3.3.2-1.debian.tar.xz
dpkg-source: info: using patch list from debian/patches/series
dpkg-source: info: applying 02-Disable-rubygems-and-bundler-usage.patch
dpkg-source: info: applying 0002-Remove-snakeyaml-hardcoded-versions.patch
dpkg-source: info: applying 0003-Disable-ruby-maven.patch

Check disk space
----------------

Sufficient free space for build

User Environment
----------------

APT_CONFIG=/var/lib/sbuild/apt.conf
CCACHE_COMPRESS=1
CCACHE_DIR=/var/cache/pbuilder/ccache
CCACHE_UMASK=002
DEB_BUILD_OPTIONS=parallel=9
HOME=/sbuild-nonexistent
LANG=en_US.UTF-8
LC_ALL=C.UTF-8
LC_COLLATE=de_DE.UTF-8
LC_MEASUREMENT=de_DE.UTF-8
LC_MESSAGES=C
LC_MONETARY=de_DE.UTF-8
LC_NUMERIC=de_DE.UTF-8
LC_TIME=de_DE.UTF-8
LD_LIBRARY_PATH=/usr/lib/libeatmydata
LD_PRELOAD=libeatmydata.so
LOGNAME=fernst
PATH=/usr/lib/ccache:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
PWD=/<<PKGBUILDDIR>>
SCHROOT_ALIAS_NAME=unstable-amd64-sbuild
SCHROOT_CHROOT_NAME=unstable-amd64-sbuild
SCHROOT_COMMAND=env
SCHROOT_GID=1000
SCHROOT_GROUP=fernst
SCHROOT_SESSION_ID=unstable-amd64-sbuild-60a69331-4251-4a38-ab33-5bf1f2a88f71
SCHROOT_UID=1000
SCHROOT_USER=fernst
SHELL=/bin/sh
USER=fernst

dpkg-buildpackage
-----------------

Command: dpkg-buildpackage --sanitize-env -us -uc -rfakeroot
dpkg-buildpackage: info: source package ruby-psych
dpkg-buildpackage: info: source version 3.3.2-1
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Daniel Leidert <dleidert at debian.org>
 dpkg-source --before-build .
dpkg-buildpackage: info: host architecture amd64
 debian/rules clean
dh clean --buildsystem=ruby --with ruby,javahelper
   dh_auto_clean -O--buildsystem=ruby
	dh_ruby --clean
   dh_ruby --clean
   dh_autoreconf_clean -O--buildsystem=ruby
   jh_clean -O--buildsystem=ruby
   dh_clean -O--buildsystem=ruby
 dpkg-source -b .
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building ruby-psych using existing ./ruby-psych_3.3.2.orig.tar.gz
dpkg-source: info: using patch list from debian/patches/series
dpkg-source: info: building ruby-psych in ruby-psych_3.3.2-1.debian.tar.xz
dpkg-source: info: building ruby-psych in ruby-psych_3.3.2-1.dsc
 debian/rules binary
dh binary --buildsystem=ruby --with ruby,javahelper
   dh_update_autotools_config -O--buildsystem=ruby
   dh_autoreconf -O--buildsystem=ruby
   dh_auto_configure -O--buildsystem=ruby
	dh_ruby --configure
   jh_linkjars -O--buildsystem=ruby
   dh_auto_build -O--buildsystem=ruby
	dh_ruby --build
   dh_ruby --build
   jh_build -O--buildsystem=ruby
warning: [options] bootstrap class path not set in conjunction with -source 7
Note: ./ext/java/org/jruby/ext/psych/PsychLibrary.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
1 warning
Creating destination directory: "debian/_jh_build.javadoc/api/"
   debian/rules override_dh_auto_test-indep
make[1]: Entering directory '/<<PKGBUILDDIR>>'
# ignore failures with jruby, unfortunately upstream is failing in
# similar way and this is expected.
# (e.g. https://travis-ci.org/ruby/psych/jobs/208654321)
RUBYLIB=$RUBYLIB:$PWD/lib jruby -S rake test
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by jnr.posix.JavaLibCHelper$ReflectiveAccess to method sun.nio.ch.SelChImpl.getFD()
WARNING: Please consider reporting this to the maintainers of jnr.posix.JavaLibCHelper$ReflectiveAccess
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
NameError: undefined method `default_specifications_dir' for class `#<Class:0x3383649e>'
  singleton class at /usr/lib/ruby/vendor_ruby/rubygems/defaults/operating_system.rb:93
           <main> at /usr/lib/ruby/vendor_ruby/rubygems/defaults/operating_system.rb:67
          require at org/jruby/RubyKernel.java:956
           <main> at /usr/share/jruby/lib/ruby/stdlib/rubygems.rb:1
          require at org/jruby/RubyKernel.java:956
           <main> at /usr/share/jruby/lib/ruby/stdlib/rubygems.rb:1347
             load at org/jruby/RubyKernel.java:974
           <main> at uri:classloader:/jruby/kernel/gem_prelude.rb:1
make[1]: [debian/rules:23: override_dh_auto_test-indep] Error 1 (ignored)
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
   dh_auto_test -O--buildsystem=ruby -Nlibpsych-java
	dh_ruby --test
   create-stamp debian/debhelper-build-stamp
   dh_testroot -O--buildsystem=ruby
   dh_prep -O--buildsystem=ruby
   dh_auto_install -O--buildsystem=ruby
	dh_ruby --install /<<PKGBUILDDIR>>/debian/tmp
   dh_ruby --install
/usr/bin/ruby3.0 -S gem build --config-file /dev/null --verbose /tmp/d20220330-1222663-d8l7d7/gemspec
Failed to load /dev/null because it doesn't contain valid YAML hash
  Successfully built RubyGem
  Name: psych
  Version: 3.3.2
  File: psych-3.3.2.gem
/usr/bin/ruby3.0 -S gem install --config-file /dev/null --verbose --local --verbose --no-document --ignore-dependencies --install-dir debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0 /tmp/d20220330-1222663-d8l7d7/psych-3.3.2.gem
Failed to load /dev/null because it doesn't contain valid YAML hash
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/depend
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/extconf.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/psych.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/psych.h
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/psych_emitter.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/psych_emitter.h
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/psych_parser.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/psych_parser.h
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/psych_to_ruby.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/psych_to_ruby.h
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/psych_yaml_tree.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/psych_yaml_tree.h
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/yaml/LICENSE
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/yaml/api.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/yaml/config.h
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/yaml/dumper.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/yaml/emitter.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/yaml/loader.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/yaml/parser.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/yaml/reader.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/yaml/scanner.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/yaml/writer.c
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/yaml/yaml.h
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych/yaml/yaml_private.h
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/class_loader.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/coder.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/core_ext.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/exception.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/handler.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/handlers/document_stream.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/handlers/recorder.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/json/ruby_events.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/json/stream.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/json/tree_builder.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/json/yaml_events.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/nodes.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/nodes/alias.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/nodes/document.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/nodes/mapping.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/nodes/node.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/nodes/scalar.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/nodes/sequence.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/nodes/stream.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/omap.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/parser.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/scalar_scanner.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/set.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/stream.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/streaming.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/syntax_error.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/tree_builder.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/versions.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/visitors.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/visitors/depth_first.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/visitors/emitter.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/visitors/json_tree.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/visitors/to_ruby.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/visitors/visitor.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/visitors/yaml_tree.rb
/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/lib/psych/y.rb
Building native extensions. This could take a while...
current directory: /<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych
["/usr/bin/ruby3.0", "-I", "/usr/lib/ruby/vendor_ruby", "-r", "./siteconf20220330-1222666-15kxu8.rb", "extconf.rb"]
checking for yaml.h... yes
checking for yaml_get_version() in -lyaml... yes
creating Makefile
current directory: /<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych
["make", "V=1", "CC=gcc -fdebug-prefix-map=/<<PKGBUILDDIR>>=.", "CXX=g++ -fdebug-prefix-map=/<<PKGBUILDDIR>>=.", "DESTDIR=", "clean"]
make[1]: Entering directory '/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych'
rm -f 
rm -f psych.so  *.o  *.bak mkmf.log .*.time
make[1]: Leaving directory '/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych'
current directory: /<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych
["make", "V=1", "CC=gcc -fdebug-prefix-map=/<<PKGBUILDDIR>>=.", "CXX=g++ -fdebug-prefix-map=/<<PKGBUILDDIR>>=.", "DESTDIR="]
make[1]: Entering directory '/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych'
gcc -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -I. -I/usr/include/x86_64-linux-gnu/ruby-3.0.0 -I/usr/include/ruby-3.0.0/ruby/backward -I/usr/include/ruby-3.0.0 -I. -Wdate-time -D_FORTIFY_SOURCE=2   -fPIC -g -O2 -ffile-prefix-map=/build/ruby3.0-F3a9bL/ruby3.0-3.0.3=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC  -o psych.o -c psych.c
gcc -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -I. -I/usr/include/x86_64-linux-gnu/ruby-3.0.0 -I/usr/include/ruby-3.0.0/ruby/backward -I/usr/include/ruby-3.0.0 -I. -Wdate-time -D_FORTIFY_SOURCE=2   -fPIC -g -O2 -ffile-prefix-map=/build/ruby3.0-F3a9bL/ruby3.0-3.0.3=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC  -o psych_emitter.o -c psych_emitter.c
gcc -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -I. -I/usr/include/x86_64-linux-gnu/ruby-3.0.0 -I/usr/include/ruby-3.0.0/ruby/backward -I/usr/include/ruby-3.0.0 -I. -Wdate-time -D_FORTIFY_SOURCE=2   -fPIC -g -O2 -ffile-prefix-map=/build/ruby3.0-F3a9bL/ruby3.0-3.0.3=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC  -o psych_parser.o -c psych_parser.c
gcc -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -I. -I/usr/include/x86_64-linux-gnu/ruby-3.0.0 -I/usr/include/ruby-3.0.0/ruby/backward -I/usr/include/ruby-3.0.0 -I. -Wdate-time -D_FORTIFY_SOURCE=2   -fPIC -g -O2 -ffile-prefix-map=/build/ruby3.0-F3a9bL/ruby3.0-3.0.3=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC  -o psych_to_ruby.o -c psych_to_ruby.c
gcc -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -I. -I/usr/include/x86_64-linux-gnu/ruby-3.0.0 -I/usr/include/ruby-3.0.0/ruby/backward -I/usr/include/ruby-3.0.0 -I. -Wdate-time -D_FORTIFY_SOURCE=2   -fPIC -g -O2 -ffile-prefix-map=/build/ruby3.0-F3a9bL/ruby3.0-3.0.3=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC  -o psych_yaml_tree.o -c psych_yaml_tree.c
rm -f psych.so
gcc -fdebug-prefix-map=/<<PKGBUILDDIR>>=. -shared -o psych.so psych.o psych_emitter.o psych_parser.o psych_to_ruby.o psych_yaml_tree.o -L. -L/usr/lib/x86_64-linux-gnu -L. -Wl,-z,relro -Wl,-z,now -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-z,relro -Wl,-z,now    -lruby-3.0 -lyaml  -lm   -lc
make[1]: Leaving directory '/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych'
current directory: /<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych
["make", "V=1", "CC=gcc -fdebug-prefix-map=/<<PKGBUILDDIR>>=.", "CXX=g++ -fdebug-prefix-map=/<<PKGBUILDDIR>>=.", "DESTDIR=", "install"]
make[1]: Entering directory '/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych'
/bin/mkdir -p . ./.gem.20220330-1222666-d0tpib
exit > .sitearchdir.time
/usr/bin/install -c -m 0755 psych.so ./.gem.20220330-1222666-d0tpib
make[1]: Leaving directory '/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych'
current directory: /<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych
/usr/bin/ruby3.0 -I /usr/lib/ruby/vendor_ruby -r ./siteconf20220330-1222666-15kxu8.rb extconf.rb
current directory: /<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych
make V\=1 CC\=gcc\ -fdebug-prefix-map\=/<<PKGBUILDDIR>>\=. CXX\=g++\ -fdebug-prefix-map\=/<<PKGBUILDDIR>>\=. DESTDIR\= clean
current directory: /<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych
make V\=1 CC\=gcc\ -fdebug-prefix-map\=/<<PKGBUILDDIR>>\=. CXX\=g++\ -fdebug-prefix-map\=/<<PKGBUILDDIR>>\=. DESTDIR\=
current directory: /<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0/gems/psych-3.3.2/ext/psych
make V\=1 CC\=gcc\ -fdebug-prefix-map\=/<<PKGBUILDDIR>>\=. CXX\=g++\ -fdebug-prefix-map\=/<<PKGBUILDDIR>>\=. DESTDIR\= install
Successfully installed psych-3.3.2
1 gem installed
cd debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0
rm -rf bin
rm -rf build_info
rm -rf cache
rm -rf doc
find extensions -name mkmf.log -delete
find extensions -name gem_make.out -delete
rmdir plugins
cd gems/psych-3.3.2
rm -rf ext/psych
rm -f lib/psych.so
chmod 644 lib/psych/class_loader.rb lib/psych/coder.rb lib/psych/core_ext.rb lib/psych/exception.rb lib/psych/handler.rb lib/psych/handlers/document_stream.rb lib/psych/handlers/recorder.rb lib/psych/json/ruby_events.rb lib/psych/json/stream.rb lib/psych/json/tree_builder.rb lib/psych/json/yaml_events.rb lib/psych/nodes/alias.rb lib/psych/nodes/document.rb lib/psych/nodes/mapping.rb lib/psych/nodes/node.rb lib/psych/nodes/scalar.rb lib/psych/nodes/sequence.rb lib/psych/nodes/stream.rb lib/psych/nodes.rb lib/psych/omap.rb lib/psych/parser.rb lib/psych/scalar_scanner.rb lib/psych/set.rb lib/psych/stream.rb lib/psych/streaming.rb lib/psych/syntax_error.rb lib/psych/tree_builder.rb lib/psych/versions.rb lib/psych/visitors/depth_first.rb lib/psych/visitors/emitter.rb lib/psych/visitors/json_tree.rb lib/psych/visitors/to_ruby.rb lib/psych/visitors/visitor.rb lib/psych/visitors/yaml_tree.rb lib/psych/visitors.rb lib/psych/y.rb lib/psych.rb
find lib/ -type d -empty -delete
find ext/ -type d -empty -delete
cd -
cd -
/usr/bin/ruby3.0 /usr/bin/gem2deb-test-runner

┌──────────────────────────────────────────────────────────────────────────────┐
│ Checking Rubygems dependency resolution on ruby3.0                           │
└──────────────────────────────────────────────────────────────────────────────┘

GEM_PATH=/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0:/<<PKGBUILDDIR>>/debian/.debhelper/generated/_source/home/.local/share/gem/ruby/3.0.0:/var/lib/gems/3.0.0:/usr/local/lib/ruby/gems/3.0.0:/usr/lib/ruby/gems/3.0.0:/usr/lib/x86_64-linux-gnu/ruby/gems/3.0.0:/usr/share/rubygems-integration/3.0.0:/usr/share/rubygems-integration/all:/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0 ruby3.0 -e gem\ \"psych\"

┌──────────────────────────────────────────────────────────────────────────────┐
│ Run tests for ruby3.0 from debian/ruby-tests.rake                            │
└──────────────────────────────────────────────────────────────────────────────┘

RUBYLIB=. GEM_PATH=/<<PKGBUILDDIR>>/debian/ruby-psych/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0:/<<PKGBUILDDIR>>/debian/.debhelper/generated/_source/home/.local/share/gem/ruby/3.0.0:/var/lib/gems/3.0.0:/usr/local/lib/ruby/gems/3.0.0:/usr/lib/ruby/gems/3.0.0:/usr/lib/x86_64-linux-gnu/ruby/gems/3.0.0:/usr/share/rubygems-integration/3.0.0:/usr/share/rubygems-integration/all:/usr/lib/x86_64-linux-gnu/rubygems-integration/3.0.0 ruby3.0 -S rake -f debian/ruby-tests.rake
/usr/bin/ruby3.0 -w -I"test/lib:test" -rhelper /usr/share/rubygems-integration/all/gems/rake-13.0.6/lib/rake/rake_test_loader.rb "test/psych/handlers/test_recorder.rb" "test/psych/json/test_stream.rb" "test/psych/nodes/test_enumerable.rb" "test/psych/test_alias_and_anchor.rb" "test/psych/test_array.rb" "test/psych/test_boolean.rb" "test/psych/test_class.rb" "test/psych/test_coder.rb" "test/psych/test_date_time.rb" "test/psych/test_deprecated.rb" "test/psych/test_document.rb" "test/psych/test_emitter.rb" "test/psych/test_encoding.rb" "test/psych/test_exception.rb" "test/psych/test_hash.rb" "test/psych/test_json_tree.rb" "test/psych/test_marshalable.rb" "test/psych/test_merge_keys.rb" "test/psych/test_nil.rb" "test/psych/test_null.rb" "test/psych/test_numeric.rb" "test/psych/test_object.rb" "test/psych/test_object_references.rb" "test/psych/test_omap.rb" "test/psych/test_parser.rb" "test/psych/test_psych.rb" "test/psych/test_ractor.rb" "test/psych/test_safe_load.rb" "test/psych/test_scalar.rb" "test/psych/test_scalar_scanner.rb" "test/psych/test_serialize_subclasses.rb" "test/psych/test_set.rb" "test/psych/test_stream.rb" "test/psych/test_string.rb" "test/psych/test_struct.rb" "test/psych/test_symbol.rb" "test/psych/test_tree_builder.rb" "test/psych/test_yaml.rb" "test/psych/test_yaml_special_cases.rb" "test/psych/test_yamldbm.rb" "test/psych/test_yamlstore.rb" "test/psych/visitors/test_depth_first.rb" "test/psych/visitors/test_emitter.rb" "test/psych/visitors/test_to_ruby.rb" "test/psych/visitors/test_yaml_tree.rb" -v
Loaded suite /usr/share/rubygems-integration/all/gems/rake-13.0.6/lib/rake/rake_test_loader
Started
Psych::TestCase: 
  Psych::Handlers::TestRecorder: 
    test_replay:					.: (0.000825)
  Psych::JSON::TestStream: 
    test_datetime:					.: (0.000489)
    test_explicit_documents:				.: (0.000194)
    test_float:						.: (0.000121)
    test_hash:						.: (0.000135)
    test_int:						.: (0.000109)
    test_json_dump_exclude_tag:				F
===============================================================================
Failure: test_json_dump_exclude_tag(Psych::JSON::TestStream):
  <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
  <"Foo"> was expected to be instance_of?
  <Regexp> but was
  <String>.
/<<PKGBUILDDIR>>/test/psych/json/test_stream.rb:80:in `test_json_dump_exclude_tag'
     77:       def test_json_dump_exclude_tag
     78:         @stream << Foo.new
     79:         json = @io.string
  => 80:         refute_match('Foo', json)
     81:       end
     82: 
     83:       class Bar
===============================================================================
: (0.001764)
    test_json_list_dump_exclude_tag:			F
===============================================================================
Failure: test_json_list_dump_exclude_tag(Psych::JSON::TestStream):
  <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
  <"omg"> was expected to be instance_of?
  <Regexp> but was
  <String>.
/<<PKGBUILDDIR>>/test/psych/json/test_stream.rb:92:in `test_json_list_dump_exclude_tag'
     89:       def test_json_list_dump_exclude_tag
     90:         @stream << Bar.new
     91:         json = @io.string
  => 92:         refute_match('omg', json)
     93:       end
     94: 
     95:       def test_time
===============================================================================
: (0.000905)
    test_list_to_json:					.: (0.000253)
    test_null:						.: (0.000110)
    test_string:					.: (0.000086)
    test_symbol:					.: (0.000089)
    test_time:						.: (0.000185)
  Psych::Nodes::TestEnumerable: 
    test_alias:						.: (0.000371)
    test_includes_enumerable:				.: (0.000134)
    test_mapping:					.: (0.000160)
    test_returns_enumerator:				.: (0.000125)
    test_scalar:					.: (0.000098)
    test_sequence:					.: (0.000104)
  Psych::TestAliasAndAnchor: 
    test_anchor_alias_round_trip:			.: (0.000604)
    test_anchor_alias_round_trip_object_with_ivars:	.: (0.000455)
    test_anchor_alias_round_trip_substring_with_ivars:	.: (0.000358)
    test_mri_compatibility:				.: (0.000171)
    test_mri_compatibility_object_with_ivars:		.: (0.000210)
    test_mri_compatibility_substring_with_ivars:	.: (0.000191)
  Psych::TestArray: 
    test_another_subclass_with_attributes:		.: (0.001972)
    test_backwards_with_syck:				.: (0.000122)
    test_cycle:						.: (0.000607)
    test_enumerator:					.: (0.000232)
    test_self_referential:				.: (0.000582)
    test_subclass:					.: (0.000193)
    test_subclass_with_attributes:			.: (0.000301)
  Psych::TestBoolean: 
    test_FALSE:						.: (0.000339)
    test_False:						.: (0.000092)
    test_NO:						.: (0.000092)
    test_No:						.: (0.000110)
    test_OFF:						.: (0.000113)
    test_ON:						.: (0.000114)
    test_Off:						.: (0.000089)
    test_On:						.: (0.000118)
    test_TRUE:						.: (0.000146)
    test_True:						.: (0.000107)
    test_YES:						.: (0.000100)
    test_Yes:						.: (0.000092)
    test_false:						.: (0.000097)
    test_n:						.: (0.000154)
    test_no:						.: (0.000104)
    test_off:						.: (0.000213)
    test_on:						.: (0.000125)
    test_true:						.: (0.000092)
    test_y:						.: (0.000140)
    test_yes:						.: (0.000094)
  Psych::TestClass: 
    test_cycle:						.: (0.000495)
    test_cycle_anonymous_class:				.: (0.000127)
    test_cycle_anonymous_module:			.: (0.000093)
    test_cycle_module:					.: (0.000366)
    test_dump:						.: (0.000101)
    test_dump_module:					.: (0.000118)
  Psych::TestCoder: 
    test_coder_style_map_any:				.: (0.000247)
    test_coder_style_map_block:				.: (0.000134)
    test_coder_style_map_default:			.: (0.000144)
    test_coder_style_map_flow:				.: (0.000131)
    test_coder_style_scalar_any:			.: (0.000131)
    test_coder_style_scalar_default:			.: (0.000121)
    test_coder_style_scalar_double_quoted:		.: (0.000112)
    test_coder_style_scalar_folded:			.: (0.000114)
    test_coder_style_scalar_literal:			.: (0.000106)
    test_coder_style_scalar_plain:			.: (0.000106)
    test_coder_style_scalar_single_quoted:		.: (0.000110)
    test_coder_style_seq_any:				.: (0.000126)
    test_coder_style_seq_block:				.: (0.000180)
    test_coder_style_seq_default:			.: (0.000122)
    test_coder_style_seq_flow:				.: (0.000123)
    test_dump_encode_with:				.: (0.000154)
    test_dump_init_with:				.: (0.000254)
    test_dump_with_tag:					.: (0.000348)
    test_json_dump_exclude_tag:				F
===============================================================================
Failure: test_json_dump_exclude_tag(Psych::TestCoder):
  <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
  <"TestCoder::InitApi"> was expected to be instance_of?
  <Regexp> but was
  <String>.
/<<PKGBUILDDIR>>/test/psych/test_coder.rb:137:in `test_json_dump_exclude_tag'
     134:     end
     135: 
     136:     def test_json_dump_exclude_tag
  => 137:       refute_match('TestCoder::InitApi', Psych.to_json(InitApi.new))
     138:     end
     139: 
     140:     def test_map_takes_block
===============================================================================
: (0.005586)
    test_load_dumped_tagging:				.: (0.000485)
    test_map_takes_block:				.: (0.000090)
    test_map_with_tag:					.: (0.000070)
    test_map_with_tag_and_style:			.: (0.000073)
    test_represent!:					.: (0.000226)
    test_represent_map:					.: (0.000293)
    test_represent_sequence:				.: (0.000214)
    test_represent_with_init:				.: (0.000169)
    test_represent_with_object:				.: (0.000174)
    test_scalar_coder:					.: (0.000176)
    test_self_referential:				.: (0.000323)
  Psych::TestDateTime: 
    test_alias_with_time:				.: (0.000535)
    test_datetime_non_utc:				.: (0.000653)
    test_datetime_timezone_offset:			.: (0.000292)
    test_invalid_date:					.: (0.000422)
    test_negative_year:					.: (0.000478)
    test_new_datetime:					.: (0.000614)
    test_non_utc:					.: (0.000444)
    test_round_trip:					.: (0.000465)
    test_string_tag:					.: (0.000162)
    test_timezone_offset:				.: (0.000292)
    test_usec:						.: (0.000411)
  Psych::TestDeprecated: 
    test_coder_scalar:					.: (0.000365)
    test_recursive_quick_emit_encode_with:		.: (0.000328)
    test_yaml_initialize_and_init_with:			.: (0.000325)
  Psych::TestDocument: 
    test_emit_bad_tag:					.: (0.000223)
    test_emit_multitag:					.: (0.000185)
    test_emit_tag:					.: (0.000141)
    test_emit_version:					.: (0.000134)
    test_parse_tag:					.: (0.000105)
    test_parse_version:					.: (0.000079)
  Psych::TestEmitter: 
    test_emit_utf_8:					.: (0.000190)
    test_indentation_set:				.: (0.000103)
    test_line_width:					.: (0.000062)
    test_resizing_tags:					.: (0.000085)
    test_scalar_arg_error:				.: (0.000156)
    test_set_canonical:					.: (0.000073)
    test_start_doc_arg_error:				.: (0.000145)
    test_start_sequence_arg_error:			.: (0.000089)
    test_start_stream_arg_error:			.: (0.000070)
  Psych::TestEncoding: 
    test_alias:						.: (0.000304)
    test_default_internal:				.: (0.000869)
    test_doc_tag:					.: (0.000147)
    test_doc_tag_encoding:				.: (0.000176)
    test_dump_load_encoding_object:			.: (0.000669)
    test_dump_non_ascii_string_to_file:			.: (0.000937)
    test_emit_alias:					.: (0.000133)
    test_emitter_encoding:				.: (0.000561)
    test_io_shiftjis:					.: (0.000853)
    test_io_utf16be:					.: (0.000619)
    test_io_utf16le:					.: (0.000369)
    test_io_utf8:					.: (0.000335)
    test_io_utf8_read_as_binary:			.: (0.000330)
    test_list_anchor:					.: (0.000341)
    test_map_anchor:					.: (0.000223)
    test_map_tag:					.: (0.000132)
    test_scalar:					.: (0.000117)
    test_start_mapping:					.: (0.000142)
    test_start_sequence:				.: (0.000156)
    test_to_yaml_is_valid:				.: (0.000274)
    test_transcode_shiftjis:				.: (0.000156)
    test_transcode_utf16be:				.: (0.000130)
    test_transcode_utf16le:				.: (0.000150)
  Psych::TestException: 
    test_attributes:					.: (0.000242)
    test_backtrace:					.: (0.000676)
    test_convert:					.: (0.000359)
    test_load_file_exception:				.: (0.000328)
    test_load_stream_takes_file:			.: (0.000283)
    test_load_takes_file:				.: (0.000286)
    test_naming_exception:				.: (0.002734)
    test_parse_file_exception:				.: (0.000359)
    test_psych_parse_stream_takes_file:			.: (0.000222)
    test_psych_parse_takes_file:			.: (0.000280)
    test_psych_syntax_error:				.: (0.000346)
    test_safe_load_file_exception:			.: (0.000333)
  Psych::TestHash: 
    test_custom_initialize_no_ivar:			.: (0.000682)
    test_custom_initialized:				.: (0.001146)
    test_cycles:					.: (0.000502)
    test_empty_subclass:				.: (0.000317)
    test_hash_subclass_with_ivars:			.: (0.000969)
    test_hash_with_ivar:				.: (0.000991)
    test_key_deduplication:				.: (0.000195)
    test_load_with_class_syck_compatibility:		.: (0.000192)
    test_map:						.: (0.000187)
    test_ref_append:					.: (0.000193)
    test_referenced_hash_with_ivar:			.: (0.000859)
    test_self_referential:				.: (0.000621)
  Psych::TestJSONTree: 
    test_datetime:					.: (0.000329)
    test_float:						.: (0.000142)
    test_hash:						.: (0.000203)
    test_int:						.: (0.000146)
    test_json_list_dump_exclude_tag:			F
===============================================================================
Failure: test_json_list_dump_exclude_tag(Psych::TestJSONTree):
  <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
  <"omg"> was expected to be instance_of?
  <Regexp> but was
  <String>.
/<<PKGBUILDDIR>>/test/psych/test_json_tree.rb:43:in `test_json_list_dump_exclude_tag'
     40: 
     41:     def test_json_list_dump_exclude_tag
     42:       json = Psych.to_json Bar.new
  => 43:       refute_match('omg', json)
     44:     end
     45: 
     46:     def test_list_to_json
===============================================================================
: (0.001162)
    test_list_to_json:					.: (0.000224)
    test_nil:						.: (0.000146)
    test_string:					.: (0.000121)
    test_symbol:					.: (0.000119)
    test_time:						.: (0.000154)
  Psych::TestMarshalable: 
    test_init_symbolize_names:				.: (0.000401)
    test_init_with_takes_priority_over_marshal_methods:	.: (0.000278)
    test_objects_defining_marshal_dump_and_marshal_load_can_be_dumped:	.: (0.000288)
  Psych::TestMergeKeys: 
    test_bad_seq_merge:					.: (0.001659)
    test_explicit_string:				.: (0.000209)
    test_merge_array:					.: (0.000190)
    test_merge_is_not_partial:				.: (0.000362)
    test_merge_key:					.: (0.000171)
    test_merge_key_with_bare_hash:			.: (0.000177)
    test_merge_key_with_bare_hash_symbolized_names:	.: (0.000166)
    test_merge_nil:					.: (0.000157)
    test_merge_seq_nil:					.: (0.000163)
    test_mergekey_with_object:				.: (0.000263)
    test_missing_merge_key:				.: (0.000173)
    test_multiple_maps:					.: (0.000398)
    test_override:					.: (0.000256)
    test_roundtrip_with_chevron_key:			.: (0.000511)
  Psych::TestNil: 
    test_array_nil:					.: (0.000269)
    test_nil:						.: (0.000160)
  Psych::TestNull: 
    test_null_list:					.: (0.000207)
  Psych::TestNumeric: 
    test_big_decimal_round_trip:			.: (0.000501)
    test_big_decimal_tag:				.: (0.000279)
    test_does_not_attempt_numeric:			.: (0.000161)
    test_load_float_with_dot:				.: (0.000114)
    test_non_float_with_0:				.: (0.000099)
  Psych::TestObject: 
    test_cyclic_references:				.: (0.000358)
    test_dump_with_tag:					.: (0.000169)
    test_tag_round_trip:				.: (0.000224)
  Psych::TestObjectReferences: 
    test_binary_references:				.: (0.000219)
    test_class_has_references:				.: (0.000220)
    test_complex_has_references:			.: (0.000451)
    test_datetime_has_references:			.: (0.000306)
    test_float_references:				.: (0.000158)
    test_module_has_references:				.: (0.000212)
    test_range_has_references:				.: (0.000335)
    test_rational_has_references:			.: (0.000275)
    test_regexp_references:				.: (0.000175)
    test_struct_has_references:				.: (0.000323)
  Psych::TestOmap: 
    test_dump:						.: (0.000300)
    test_keys:						.: (0.000084)
    test_load:						.: (0.000173)
    test_load_shorthand:				.: (0.000152)
    test_order:						.: (0.000076)
    test_parse_as_map:					.: (0.000180)
    test_round_trip:					.: (0.000558)
    test_self_referential:				.: (0.000256)
    test_square:					.: (0.000086)
  Psych::TestParser: 
    test_alias:						.: (0.000310)
    test_ast_roundtrip:					.: (0.000140)
    test_bogus_io:					.: (0.000125)
    test_bom:						.: (0.000224)
    test_column_numbers:				.: (0.000154)
    test_end_document_explicit:				.: (0.000147)
    test_end_document_implicit:				.: (0.000149)
    test_end_stream:					.: (0.000095)
    test_event_location:				.: (0.000141)
    test_exception_memory_leak:				.: (0.000730)
    test_external_encoding:				.: (0.000123)
    test_filename:					.: (0.000137)
    test_index_numbers:					.: (0.000141)
    test_line_numbers:					.: (0.000127)
    test_literal_scalar:				.: (0.000149)
    test_mapping_anchor:				.: (0.000166)
    test_mapping_block:					.: (0.000148)
    test_mapping_end:					.: (0.000102)
    test_mapping_start:					.: (0.000156)
    test_mapping_tag:					.: (0.000238)
    test_multiparse:					.: (0.000104)
    test_parse_io:					.: (0.000111)
    test_scalar:					.: (0.000131)
    test_scalar_plain_implicit:				.: (0.000131)
    test_scalar_with_anchor:				.: (0.000126)
    test_scalar_with_tag:				.: (0.000130)
    test_sequence_end:					.: (0.000096)
    test_sequence_start_anchor:				.: (0.000153)
    test_sequence_start_block:				.: (0.000150)
    test_sequence_start_flow:				.: (0.000264)
    test_sequence_start_tag:				.: (0.000164)
    test_start_document_tag:				.: (0.000147)
    test_start_document_version:			.: (0.000136)
    test_start_stream:					.: (0.000090)
    test_syntax_error:					.: (0.000121)
    test_syntax_error_has_path_for_io:			.: (0.000155)
    test_syntax_error_has_path_for_string:		.: (0.000141)
    test_syntax_error_twice:				.: (0.000144)
  Psych::TestSafeLoad: 
    test_anon_struct:					.: (0.000435)
    test_basic_Array:					.: (0.000366)
    test_basic_Float:					.: (0.000260)
    test_basic_Hash:					.: (0.000241)
    test_basic_Integer:					.: (0.000256)
    test_basic_String:					.: (0.000264)
    test_deprecated_anon_struct:			.: (0.000327)
    test_explicit_recursion:				.: (0.000321)
    test_foo:						.: (0.000585)
    test_no_recursion:					.: (0.000213)
    test_permitted_symbol:				.: (0.000299)
    test_safe_load:					.: (0.000143)
    test_safe_load_default_fallback:			.: (0.000092)
    test_safe_load_raises_on_bad_input:			.: (0.000128)
    test_struct_depends_on_sym:				.: (0.000521)
    test_symbol:					.: (0.000779)
  Psych::TestScalar: 
    test_some_bytes:					.: (0.000601)
    test_utf_8:						.: (0.000139)
  Psych::TestScalarScanner: 
    test_scan_bad_dates:				.: (0.000206)
    test_scan_bad_edge_date:				.: (0.000186)
    test_scan_bad_time:					.: (0.000209)
    test_scan_date:					.: (0.000113)
    test_scan_float:					.: (0.000067)
    test_scan_float_with_exponent_but_no_fraction:	.: (0.000088)
    test_scan_good_edge_date:				.: (0.000103)
    test_scan_inf:					.: (0.000063)
    test_scan_int_commas_and_underscores:		.: (0.000234)
    test_scan_minus_inf:				.: (0.000060)
    test_scan_nan:					.: (0.000195)
    test_scan_not_sexagesimal:				.: (0.000099)
    test_scan_null:					.: (0.000068)
    test_scan_sexagesimal_float:			.: (0.000078)
    test_scan_sexagesimal_int:				.: (0.000066)
    test_scan_strings_starting_with_underscores:	.: (0.000058)
    test_scan_symbol:					.: (0.000075)
    test_scan_time:					.: (0.000232)
    test_scan_true:					.: (0.000059)
  Psych::TestSerializeSubclasses: 
    test_some_object:					.: (0.000406)
    test_struct_subclass:				.: (0.000428)
  Psych::TestSet: 
    test_dump:						.: (0.000273)
    test_load_from_yaml:				.: (0.000161)
    test_loaded_class:					.: (0.000226)
    test_roundtrip:					.: (0.001691)
    test_set_self_reference:				.: (0.000594)
    test_set_shorthand:					.: (0.000141)
  Psych::TestStream: 
    test_explicit_documents:				.: (0.000258)
    test_load_partial:					.: (0.000136)
    test_load_stream_break:				.: (0.000125)
    test_load_stream_yields_documents:			.: (0.000150)
    test_no_backreferences:				.: (0.000207)
    test_parse_partial:					.: (0.000166)
    test_parse_stream_break:				.: (0.000159)
    test_parse_stream_yields_documents:			.: (0.000131)
    test_predicate_alias?:				.: (0.000160)
    test_predicate_document?:				.: (0.000132)
    test_predicate_mapping?:				.: (0.000130)
    test_predicate_scalar?:				.: (0.000157)
    test_predicate_sequence?:				.: (0.000165)
    test_predicate_stream?:				.: (0.000164)
    test_start_takes_block:				.: (0.000139)
  Psych::TestString: 
    test_another_subclass_with_attributes:		.: (0.000390)
    test_ascii_only_8bit_string:			.: (0.000385)
    test_ascii_only_binary_string:			.: (0.000228)
    test_backwards_with_syck:				.: (0.000163)
    test_binary:					.: (0.000393)
    test_binary_string:					.: (0.000202)
    test_binary_string_null:				.: (0.000166)
    test_cycle_x:					.: (0.000474)
    test_dash_dot:					.: (0.000602)
    test_doublequotes_when_there_is_a_single:		.: (0.000171)
    test_empty_character_subclass:			.: (0.000324)
    test_empty_subclass:				.: (0.000271)
    test_float_confusion:				.: (0.000374)
    test_float_with_no_fractional_before_exponent:	.: (0.000381)
    test_folded_strip_when_longer_than_line_width_and_no_newlines:	.: (0.000227)
    test_folded_when_longer_than_line_width_and_with_final_line_break:	.: (0.000236)
    test_literal_strip_when_inner_line_break_and_no_final_line_break:	.: (0.000319)
    test_literal_when_inner_and_final_line_break:	.: (0.000290)
    test_no_doublequotes_with_special_characters:	.: (0.000136)
    test_no_quotes_when_start_with_non_ascii_character:	.: (0.000187)
    test_nonascii_string_as_binary:			.: (0.000169)
    test_plain_when_shorten_than_line_width_and_no_final_line_break:	.: (0.000181)
    test_plain_when_shorten_than_line_width_and_with_final_line_break:	.: (0.000171)
    test_self_referential_string:			.: (0.000174)
    test_string_subclass_with_anchor:			.: (0.000177)
    test_string_with_base_60:				.: (0.000194)
    test_string_with_ivars:				.: (0.000160)
    test_string_with_newline:				.: (0.000111)
    test_subclass_with_attributes:			.: (0.000265)
  Psych::TestStruct: 
    test_load:						.: (0.000348)
    test_roundtrip:					.: (0.000369)
    test_self_referential_struct:			.: (0.000303)
  Psych::TestSymbol: 
    test_cycle:						.: (0.000467)
    test_cycle_colon:					.: (0.000376)
    test_cycle_empty:					.: (0.000352)
    test_load_quoted:					.: (0.000124)
    test_stringy:					.: (0.000448)
  Psych::TestTreeBuilder: 
    test_alias:						.: (0.000253)
    test_documents:					.: (0.000173)
    test_mapping:					.: (0.000141)
    test_scalar:					.: (0.000178)
    test_sequence:					.: (0.000165)
    test_stream:					.: (0.000138)
  Psych::TestYamlSpecialCases: 
    test_0xC:						.: (0.000418)
    test_8:						.: (0.000418)
    test_NaN:						.: (0.000298)
    test_arrows:					.: (0.000301)
    test_arrows_hash:					.: (0.000384)
    test_empty_string:					.: (0.000198)
    test_false:						.: (0.000440)
    test_inf:						.: (0.000292)
    test_n:						.: (0.000301)
    test_null:						.: (0.000297)
    test_off:						.: (0.000301)
    test_thousand:					.: (0.000467)
  Psych::Visitors::TestDepthFirst: 
    test_alias:						.: (0.000247)
    test_mapping:					.: (0.000102)
    test_scalar:					.: (0.000187)
    test_sequence:					.: (0.000093)
  Psych::Visitors::TestEmitter: 
    test_alias:						.: (0.000208)
    test_document:					.: (0.000109)
    test_document_implicit_end:				.: (0.000153)
    test_mapping:					.: (0.000113)
    test_options:					.: (0.000131)
    test_scalar:					.: (0.000110)
    test_scalar_with_tag:				.: (0.000129)
    test_sequence:					.: (0.000117)
    test_stream:					.: (0.000073)
  Psych::Visitors::TestToRuby: 
    test_alias:						.: (0.000293)
    test_anon_struct:					.: (0.000161)
    test_anon_struct_legacy:				.: (0.000142)
    test_binary:					.: (0.000172)
    test_boolean_false:					.: (0.000341)
    test_boolean_true:					.: (0.000374)
    test_complex:					.: (0.000287)
    test_complex_string:				.: (0.000127)
    test_date:						.: (0.000151)
    test_document:					.: (0.000095)
    test_exception:					.: (0.000141)
    test_exp_float:					.: (0.000126)
    test_float:						.: (0.000315)
    test_float_ignore:					.: (0.000236)
    test_int_ignore:					.: (0.000199)
    test_integer:					.: (0.000192)
    test_legacy_struct:					.: (0.001998)
    test_mapping:					.: (0.000102)
    test_mapping_with_str_tag:				.: (0.000135)
    test_object:					.: (0.000125)
    test_range_string:					.: (0.000131)
    test_range_string_triple:				.: (0.000129)
    test_rational:					.: (0.000138)
    test_rational_string:				.: (0.000096)
    test_regexp:					.: (0.000193)
    test_scalar:					.: (0.000104)
    test_sequence:					.: (0.000146)
    test_stream:					.: (0.000111)
    test_struct:					.: (0.000199)
    test_time:						.: (0.000232)
    test_time_utc:					.: (0.000159)
    test_time_utc_no_z:					.: (0.000134)
    test_tz_00_00_loads_without_error:			.: (0.000175)
  Psych::Visitors::TestYAMLTree: 
    test_anon_class:					.: (0.000442)
    test_binary_formatting:				.: (0.000126)
    test_boolean:					.: (0.001030)
    test_complex:					.: (0.000529)
    test_date:						.: (0.000717)
    test_delegator:					.: (0.000731)
    test_exception:					.: (0.000307)
    test_float:						.: (0.000842)
    test_hash:						.: (0.000631)
    test_int:						.: (0.001103)
    test_list:						.: (0.000812)
    test_nil:						.: (0.001475)
    test_object_has_no_class:				.: (0.000184)
    test_override_method:				.: (0.000254)
    test_range_exclusive:				.: (0.000589)
    test_range_inclusive:				.: (0.000708)
    test_rational:					.: (0.000460)
    test_regexp:					.: (0.000943)
    test_scalar:					.: (0.001239)
    test_simple_delegator:				.: (0.000724)
    test_string:					.: (0.000396)
    test_struct:					.: (0.000600)
    test_struct_anon:					.: (0.000396)
    test_struct_const:					.: (0.000798)
    test_symbol:					.: (0.000531)
    test_time:						.: (0.000291)
    test_tree_can_be_called_twice:			.: (0.000155)
    test_yaml_tree_can_take_an_emitter:			.: (0.000189)
  Psych::YAMLDBMTest: 
    test_delete:					.: (0.002070)
    test_delete_if:					.: (0.002045)
    test_fetch:						.: (0.001564)
    test_has_value?:					.: (0.001576)
    test_invert:					.: (0.001372)
    test_key:						.: (0.001680)
    test_reject:					.: (0.001773)
    test_replace:					.: (0.001591)
    test_selsct:					.: (0.001466)
    test_selsct_with_block:				.: (0.001683)
    test_shift:						.: (0.001598)
    test_store:						.: (0.001495)
    test_store_using_carret:				.: (0.001419)
    test_to_a:						.: (0.001337)
    test_to_hash:					.: (0.001395)
    test_update:					.: (0.001637)
    test_values:					.: (0.001352)
    test_values_at:					.: (0.001322)
  Psych::YAMLStoreTest: 
    test_changes_after_commit_are_discarded:		.: (0.001117)
    test_changes_are_not_written_on_abort:		.: (0.000697)
    test_data_should_be_loaded_correctly_when_in_readonly_mode:	.: (0.000857)
    test_data_should_be_loaded_correctly_when_in_readwrite_mode:.: (0.001084)
    test_opening_new_file_in_readonly_mode_should_result_in_empty_values:	.: (0.000426)
    test_opening_new_file_in_readwrite_mode_should_result_in_empty_values:	.: (0.000702)
    test_writing_inside_readonly_transaction_raises_error:	.: (0.000497)
  Psych_Unit_Tests: 
    test_akira:						.: (0.003885)
    test_ambiguous_comments:				.: (0.000514)
    test_basic_map:					.: (0.000251)
    test_basic_strings:					.: (0.001167)
    test_circular_references:				.: (0.000186)
    test_date_out_of_range:				.: (0.000142)
    test_emitting_indicators:				.: (0.000486)
    test_empty_map_key:					.: (0.000710)
    test_multiline_regexp:				.: (0.000369)
    test_multiline_string_uses_literal_style:		.: (0.000117)
    test_normal_exit:					.: (0.000315)
    test_numeric_cycle:					.: (0.001226)
    test_object_id_collision:				.: (0.025770)
    test_range_cycle:					.: (0.005377)
    test_ranges:					.: (0.002237)
    test_regexp_with_n:					.: (0.000390)
    test_ruby_complex:					.: (0.001316)
    test_ruby_rational:					.: (0.001066)
    test_ruby_regexp:					.: (0.001451)
    test_ruby_struct:					.: (0.004035)
    test_spec_anchors_and_aliases:			.: (0.003096)
    test_spec_application_family:			.: (0.000579)
    test_spec_builtin_binary:				.: (0.000291)
    test_spec_builtin_literal_blocks:			.: (0.000492)
    test_spec_builtin_map:				.: (0.000753)
    test_spec_builtin_seq:				.: (0.000341)
    test_spec_builtin_time:				.: (0.000550)
    test_spec_complex_invoice:				.: (0.000792)
    test_spec_domain_prefix:				.: (0.000357)
    test_spec_explicit_families:			.: (0.000298)
    test_spec_float_explicit:				.: (0.000262)
    test_spec_force_implicit:				.: (0.000266)
    test_spec_indentation_determines_scope:		.: (0.000282)
    test_spec_log_file:					.: (0.000573)
    test_spec_mapping_between_sequences:		.: (0.000725)
    test_spec_mapping_of_mappings:			.: (0.000320)
    test_spec_multiline_scalars:			.: (0.000229)
    test_spec_nested_comments:				.: (0.000282)
    test_spec_oneline_docs:				.: (0.000196)
    test_spec_override_anchor:				.: (0.000251)
    test_spec_preserve_indent:				.: (0.000220)
    test_spec_root_fold:				.: (0.000145)
    test_spec_root_mapping:				.: (0.000218)
    test_spec_sequence_in_sequence_shortcut:		.: (0.000238)
    test_spec_sequence_key_shortcut:			.: (0.000449)
    test_spec_sequence_of_sequences:			.: (0.000304)
    test_spec_sequence_shortcuts:			.: (0.000352)
    test_spec_simple_implicit_map:			.: (0.000794)
    test_spec_simple_implicit_sequence:			.: (0.000579)
    test_spec_simple_map_with_nested_sequences:		.: (0.000820)
    test_spec_simple_sequence_with_nested_map:		.: (0.001040)
    test_spec_single_folded:				.: (0.000209)
    test_spec_single_literal:				.: (0.000162)
    test_spec_span_double_quote:			.: (0.000269)
    test_spec_span_single_quote:			.: (0.000248)
    test_spec_throwaway:				.: (0.000181)
    test_spec_type_float:				.: (0.000318)
    test_spec_type_int:					.: (0.000527)
    test_spec_type_misc:				.: (0.000239)
    test_string_dump_starting_with_star:		F
===============================================================================
Failure: test_string_dump_starting_with_star(Psych_Unit_Tests):
  <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
  <"!"> was expected to be instance_of?
  <Regexp> but was
  <String>.
/<<PKGBUILDDIR>>/test/psych/test_yaml.rb:1292:in `test_string_dump_starting_with_star'
     1289: 
     1290:     def test_string_dump_starting_with_star
     1291:       yaml = Psych.dump '*foo'
  => 1292:       refute_match '!', yaml
     1293:     end
     1294: end
===============================================================================
: (0.001936)
    test_string_dump_with_colon:			F
===============================================================================
Failure: test_string_dump_with_colon(Psych_Unit_Tests):
  <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
  <"!"> was expected to be instance_of?
  <Regexp> but was
  <String>.
/<<PKGBUILDDIR>>/test/psych/test_yaml.rb:1287:in `test_string_dump_with_colon'
     1284: 
     1285:     def test_string_dump_with_colon
     1286:       yaml = Psych.dump 'x: foo'
  => 1287:       refute_match '!', yaml
     1288:     end
     1289: 
     1290:     def test_string_dump_starting_with_star
===============================================================================
: (0.002083)
    test_string_starting_with_non_word_character_uses_double_quotes_without_exclamation_mark:	F
===============================================================================
Failure: test_string_starting_with_non_word_character_uses_double_quotes_without_exclamation_mark(Psych_Unit_Tests):
  <REGEXP> in assert_not_match(<REGEXP>, ...) should be a Regexp.
  <"!"> was expected to be instance_of?
  <Regexp> but was
  <String>.
/<<PKGBUILDDIR>>/test/psych/test_yaml.rb:1282:in `test_string_starting_with_non_word_character_uses_double_quotes_without_exclamation_mark'
     1279: 
     1280:     def test_string_starting_with_non_word_character_uses_double_quotes_without_exclamation_mark
     1281:       yaml = Psych.dump("@123'abc")
  => 1282:       refute_match("!", yaml)
     1283:     end
     1284: 
     1285:     def test_string_dump_with_colon
===============================================================================
: (0.001281)
    test_syck_compat:					.: (0.000186)
    test_symbol_cycle:					.: (0.000420)
    test_time_now_cycle:				.: (0.002126)
    test_y_method:					.: (0.000165)
  TestPsych: 
    test_add_builtin_type:				.: (0.000430)
    test_callbacks:					.: (0.000156)
    test_canonical:					.: (0.000197)
    test_degenerate_strings:				.: (0.000153)
    test_domain_types:					.: (0.000280)
    test_dump_file:					.: (0.000562)
    test_dump_io:					.: (0.000236)
    test_dump_stream:					.: (0.000264)
    test_header:					.: (0.000185)
    test_indent:					.: (0.000242)
    test_libyaml_version:				.: (0.000286)
    test_line_width_invalid:				.: (0.000093)
    test_line_width_limit:				.: (0.000205)
    test_line_width_no_limit:				.: (0.000155)
    test_load_argument_error:				.: (0.000093)
    test_load_default_fallback:				.: (0.000082)
    test_load_file:					.: (0.000404)
    test_load_file_default_fallback:			.: (0.000244)
    test_load_file_freeze:				.: (0.000330)
    test_load_file_symbolize_names:			.: (0.000395)
    test_load_file_with_fallback:			.: (0.000254)
    test_load_file_with_fallback_for_false:		.: (0.000286)
    test_load_file_with_fallback_for_nil:		.: (0.000274)
    test_load_file_with_fallback_hash:			.: (0.000230)
    test_load_file_with_fallback_nil_or_false:		.: (0.000515)
    test_load_freeze:					.: (0.000222)
    test_load_freeze_deduplication:			.: (0.000143)
    test_load_stream:					.: (0.000155)
    test_load_stream_default_fallback:			.: (0.000102)
    test_load_stream_freeze:				.: (0.000189)
    test_load_stream_raises_on_bad_input:		.: (0.000133)
    test_load_stream_symbolize_names:			.: (0.000152)
    test_load_with_fallback:				.: (0.000102)
    test_load_with_fallback_for_false:			.: (0.000126)
    test_load_with_fallback_for_nil:			.: (0.000117)
    test_load_with_fallback_hash:			.: (0.000094)
    test_load_with_fallback_nil_or_false:		.: (0.000119)
    test_non_existing_class_on_deserialize:		.: (0.000245)
    test_parse:						.: (0.000159)
    test_parse_default_fallback:			.: (0.000093)
    test_parse_file:					.: (0.000388)
    test_parse_file_default_fallback:			.: (0.000334)
    test_parse_raises_on_bad_input:			.: (0.000128)
    test_parse_stream:					.: (0.000157)
    test_parse_stream_default_fallback:			.: (0.000093)
    test_parse_stream_raises_on_bad_input:		.: (0.000116)
    test_parse_stream_with_block:			.: (0.000151)
    test_parse_stream_with_block_default_fallback:	.: (0.000099)
    test_parse_with_fallback:				.: (0.000094)
    test_safe_load_file_with_permitted_classe:		.: (0.000627)
    test_simple:					.: (0.000139)
    test_symbolize_names:				.: (0.000652)
    test_version_array:					.: (0.000210)
    test_version_bool:					.: (0.000192)
    test_version_string:				.: (0.000183)
TestPsychRactor: 
  test_not_shareable:					.: (0.110911)
  test_ractor_config:					.: (0.106734)
  test_ractor_constants:				.: (0.105505)
  test_ractor_round_trip:				.: (0.117423)

Finished in 0.736241795 seconds.
-------------------------------------------------------------------------------
598 tests, 1497 assertions, 7 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications
98.8294% passed
-------------------------------------------------------------------------------
812.23 tests/s, 2033.30 assertions/s
rake aborted!
Command failed with status (1): [ruby -w -I"test/lib:test" -rhelper /usr/share/rubygems-integration/all/gems/rake-13.0.6/lib/rake/rake_test_loader.rb "test/psych/handlers/test_recorder.rb" "test/psych/json/test_stream.rb" "test/psych/nodes/test_enumerable.rb" "test/psych/test_alias_and_anchor.rb" "test/psych/test_array.rb" "test/psych/test_boolean.rb" "test/psych/test_class.rb" "test/psych/test_coder.rb" "test/psych/test_date_time.rb" "test/psych/test_deprecated.rb" "test/psych/test_document.rb" "test/psych/test_emitter.rb" "test/psych/test_encoding.rb" "test/psych/test_exception.rb" "test/psych/test_hash.rb" "test/psych/test_json_tree.rb" "test/psych/test_marshalable.rb" "test/psych/test_merge_keys.rb" "test/psych/test_nil.rb" "test/psych/test_null.rb" "test/psych/test_numeric.rb" "test/psych/test_object.rb" "test/psych/test_object_references.rb" "test/psych/test_omap.rb" "test/psych/test_parser.rb" "test/psych/test_psych.rb" "test/psych/test_ractor.rb" "test/psych/test_safe_load.rb" "test/psych/test_scalar.rb" "test/psych/test_scalar_scanner.rb" "test/psych/test_serialize_subclasses.rb" "test/psych/test_set.rb" "test/psych/test_stream.rb" "test/psych/test_string.rb" "test/psych/test_struct.rb" "test/psych/test_symbol.rb" "test/psych/test_tree_builder.rb" "test/psych/test_yaml.rb" "test/psych/test_yaml_special_cases.rb" "test/psych/test_yamldbm.rb" "test/psych/test_yamlstore.rb" "test/psych/visitors/test_depth_first.rb" "test/psych/visitors/test_emitter.rb" "test/psych/visitors/test_to_ruby.rb" "test/psych/visitors/test_yaml_tree.rb" -v]
/usr/share/rubygems-integration/all/gems/rake-13.0.6/exe/rake:27:in `<top (required)>'
Tasks: TOP => default
(See full trace by running task with --trace)
ERROR: Test "ruby3.0" failed. Exiting.
dh_auto_install: error: dh_ruby --install /<<PKGBUILDDIR>>/debian/tmp returned exit code 1
make: *** [debian/rules:11: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------
Build finished at 2022-03-30T19:33:06Z

Finished
--------


+------------------------------------------------------------------------------+
| Cleanup                                                                      |
+------------------------------------------------------------------------------+

Purging /<<BUILDDIR>>
Not cleaning session: cloned chroot in use
E: Build failure (dpkg-buildpackage died)

+------------------------------------------------------------------------------+
| Summary                                                                      |
+------------------------------------------------------------------------------+

Build Architecture: amd64
Build Type: full
Build-Space: 2106
Build-Time: 10
Distribution: unstable
Fail-Stage: build
Host Architecture: amd64
Install-Time: 41
Job: ruby-psych
Machine Architecture: amd64
Package: ruby-psych
Package-Time: 54
Source-Version: 3.3.2-1
Space: 2106
Status: attempted
Version: 3.3.2-1
--------------------------------------------------------------------------------
Finished at 2022-03-30T19:33:06Z
Build needed 00:00:54, 2106k disk space
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://alioth-lists.debian.net/pipermail/pkg-ruby-extras-maintainers/attachments/20220330/5af9d64d/attachment-0001.sig>


More information about the Pkg-ruby-extras-maintainers mailing list