Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: rakudo | Distribution: openSUSE Tumbleweed |
Version: 2024.04 | Vendor: openSUSE |
Release: 1.1 | Build date: Thu May 23 14:35:38 2024 |
Group: Development/Languages/Other | Build host: reproducible |
Size: 59529562 | Source RPM: rakudo-2024.04-1.1.src.rpm |
Packager: http://bugs.opensuse.org | |
Url: https://rakudo.org/ | |
Summary: Raku (formerly Perl 6) implemenation that runs on MoarVM |
The most mature, production-ready implementation of the Raku language.
Artistic-2.0
* Thu May 23 2024 Martin Schreiner <martin.schreiner@suse.com> - Update to 2024.04. - New in 2024.04: * Improvements: * Make X::Syntax::Number::LiteralType a subclass of X::TypeCheck::Assignment * Make Rakudo up to 2x as fast on the JVM backend by using fastutil * Additions: * Add Allomorph.narrow * Add dispatch disambiguation via 'is item' parameter trait * Fixes: * Fix "No exception handler located for catch" trying to report method-not-found * Fix naming of anonymous classes * Increase JVM max heap * Fix reporting of X::Role::Initialization errors * Fix race condition in lazy deserialization on MoarVM backend * Fix obscure pattern bug in regex engine on MoarVM backend - New in 2024.03: * Fixes: * Add Parameter.of method * Unbreak the JVM build * Unbreak t/harness - Apply spec-cleaner. - Set "Source" to GitHub's URL, so the source tarball may be downloaded through the appropriate OBS service. - Use "%{version}" to declare the related MoarVM dependency, rather than hardcoding MoarVM's version. * Wed Mar 27 2024 nine@detonation.org - update to version 2024.02 Too many changes to even summarize given the large version step. Please see docs/ChangeLog in the rakudo repository for the list. - Remove rakudo-fix-module-installation.diff as the fix is included upstream. * Fri Feb 23 2024 Dominique Leuenberger <dimstar@opensuse.org> - Use %autosetup macro. Allows to eliminate the usage of deprecated %patchN. * Sun Oct 02 2022 Stefan Seifert <nine@detonation.org> - Final fix for module packaging issues. This follows upstream in completely reverting an offending change. * Sun Oct 02 2022 Stefan Seifert <nine@detonation.org> - Backport yet another fix for module packaging issues (included in the same file) * Sat Oct 01 2022 Stefan Seifert <nine@detonation.org> - Update backported fix to the real fix (see GitHub for explanation of this weird sequence) * Sat Oct 01 2022 Stefan Seifert <nine@detonation.org> - Backport fix for module packaging in rakudo-fix-module-installation.diff Details in https://github.com/rakudo/rakudo/issues/4907 To be removed for the next release * Sat Oct 01 2022 nine@detonation.org - update to version 2022.07 + Make previous values in REPL accessible with `$*N` + Add an `IO::Path.dir-with-entries` method, returning a `Bool` + Implement `will complain` trait + Allow optional : on LHS of signature binding declaration + Make &[max] and &[min] return RHS for ties + Make handles on attribute of type object more natural + Allow :from<Raku> in identities + Reconsider the way `$*PERL` is deprecated + Allow setting ThreadPoolScheduler's max_threads to semi-infinite value + Re-imagine DateTime.new(Str) / Str.DateTime + Make sort() a runtime error + Implement coercion via new-disp and re-consider return typechecking dispatcher + Make Iterable.hyper|race take Any as a default for :batch and :degree + Categorize exceptions thrown by role appliers + Add :real named argument to DateTime.posix + Introduce (Exception|Cool).Failure coercer + Implement fallback support for MRO + Add IO::Path inode, dev, and devtype methods + Add sub version of .head / .skip / .tail + Implement Haskell's "span" as "snip" in 6.e + Remove the $?COMPILATION-ID constant as it was not documented and not tested + Many bugfixes and performance improvements * Sun Apr 03 2022 nine@detonation.org - update to version 2022.03 + Expose the .file and .line methods on Label objects + Allow Date / DateTime *day* parameter to be a Callable / Whatever + Make error on Date.later(:hour|minute|second) more awesome + Give .chomp the possibility to specify a needle + Improve error message for invalid arguments passed to traits + Un =my= X::Comp::Group + Turn junctions into value objects + Fix classification and categorization over junctions and gist over Junction keys + Fix typo'd missing : in .nominal_type signature + Decrement # of calls in a block if any are optimized away + Fix IO::Path.parent + Fix multi-method candidates lost when 6.e role is applied + Workaround for cases where .ACCEPTS may return non-Raku object + Fix issue with native array.splice + Fix issue with Net::Curl + Make DateTime.new(Allomorph:D) work + Restore given / when optimization for Numeric cases + Fix/test Pod::To::Text rendering of =defn elements + Fix resources of the parent repo not found when using Staging + Optimize more cases of p6decontrv ops + Use new native unsigned integer NQP ops where applicable + Use --/++$i instead of $i = nqp::add/sub_i($i,1) for readability + Make Complex multiplication factor constant + Streamline Complex -> Real coercion + Simplify creating a Complex object + Enable num->str coercion in native.repeated/unique + Remove unneeded/confusing can('prec') checks + Remove some unnecessary trys * Sun Mar 27 2022 Stefan Seifert <nine@detonation.org> - Fix build on RHEL7 which contains no fdupes package Also perl core packages are not installed by default * Mon Feb 21 2022 nine@detonation.org - update to version 2022.02 + Introduce a new generalized dispatch mechanism. It results in a more uniform architecture for all kinds of dispatch, delivering better performance on a range of langauge features. For more information see https://6guts.wordpress.com/2021/09/29/the-new-moarvm-dispatch-mechanism-is-here/ + Native unsigned integers are now first class citizens + The $*PERL variable usage will warn starting from `6.e` language release, using $*RAKU is preferred now + Remove RESTRICTED setting (#3965) + Add support for $RAKUDO_OPT environment variable + Introducing RAKUDO_PRECOMPILATION_PROGRESS environment variable + Quite a few smaller additions + Numerous bug fixes and performance improvements. Far too many to even summarize here. * Sun Aug 22 2021 nine@detonation.org - update to version 2021.08 + Enable rendering of nested blocks in the Pod::To::Text module + Raise priority of let and temp operators compared to .=, . and auto-increment, making let $foo .= &{ Nil } work more intuitively compared to (let $foo) .= &{ Nil } as was necessary before + Change the Scalar.WHICH method implementation, fixing the semantics to reflect that Scalar is not a value object + Make the &&, || and // operators about 2x as fast for the +@a candidates + Improve performance of smartmatching between two Signature objects + Fix some occurrences of hash-related concurrency issues + Fix the List.reduce method when used with &infix:<&&> + Fix matching of native types against roles Numeric, Real and Stringy + Make Pointer.Numeric and Pointer.Int methods return 0 instead of resulting in an error + Fix a race in the ClassHOW.new_type method + Make checking for Windows cheaper + Simplify Rakudo::Iterator::While iterator code + Fix location of the Proc.status deprecation message * Sat Jul 24 2021 nine@detonation.org - update to version 2021.07 + Make cmp routine work properly on Iterator, Seq, Uni, native arrays and empty Lists + Add the ACCEPTS(Uni) method on Uni candidate + Implement last and next with a value for 6.e language revision + Properly support nearly all HTML5 entities in Pod E<> formatting code + Allow Ctrl-C to stop entry in REPL + Add ⩶ and ⩵ as Unicode synonyms for === and == + Deprecate the status method on Proc in place of exitcode and signal methods + Allow add method on IO::Path to take multiple values (e.g. "foo".IO.add(<bar baz>)) + Optimize calls to map + Optimize loops without phasers for one and two arguments case + Make for / map with 2+ arguments up to 2x as fast + Make List cmp List about 25% faster + Reduce overhead of loops with phasers by at least 5% + Make the grep(Callable) method about 3% faster + Clean up sockets created by IO::Socket::INET.new on error + Fix freezes caused by concurrently produced iterators + Fix unimatch for non-base properties * Sat Jul 10 2021 nine@detonation.org - update to version 2021.06 + Support generics with consumption and inheritance in roles + Introduce done foo syntax as a shortcut for emit foo; done + Implement pick method on Any taking HyperWhatever as an argument (.pick(**)) + Add a repl sub to enter the REPL from within a program + Add Buf and Blob coercers to Blob and Buf roles + Tweak worker addition for many small tasks + Make .grep(Regex) and .first(Regex) about 40% faster + Speed up setup of NativeCall subs and reduce memory usage + Micro-optimize levenshtein sub used to suggest alternatives in error messages + Fix bogus "emit without supply or react" error when using hyper to process arrays + Fix some edge cases with (+), (.), (&) and (|) set operators + Make signature destructuring with a Junction an error + Make Mu eqv Mu work * Mon May 24 2021 nine@detonation.org - update to version 2021.05 + Make methods keys, values, kv, pairs, antipairs, invert work on Enum + Make uniname and uniparse method work on all Cool values such as Num or Match + Add the user and group methods to IO::Path + Add new methods day-fraction, modified-julian-date and julian-date to DateTime + Add support for ∊ and ∍ as aliases for ∈ and ∋ + Deprecate Cool.path method in favor of Cool.IO and NQP operators time_i and time_n in favor of time + Rename deterministic method on Iterator introduced in 2020.12 into is-deterministic + Calling ord method on Str:U now throws an exception instead of silently returning Nil + Make Int.chr and Int.unival handling of negative values consistent + Faster now, Str.wordcase, Str.uniparse, lines, words, my %h is QuantHash =, Int.unival, Str.unival, Str.ords, List.sum, Any.sum, chrs for native int arrays, uninames, Str.univals, Datish.daycount, uniprop, uniprops, Baggy.AT-KEY, infix (elem), DateTime.posix + Fix a regression in command line arguments parser + Fix compilation failure with EVAL in precompiled module's mainline + Fix an edge case of sub-signature handling, making say :([]) eqv :(@); properly result in False + Make signal handler setup synchronous to avoid race conditions + Fix race condition in ThreadPoolScheduler + Fix a potential issue on subclassing from NQP classes or consuming NQP roles + Fix Int.uniname to handle big negative and big positive integers + Fix handling of holes in raku method for native str arrays + Fix resource leak when iterating files using dir method on IO::Path + Fix an exception when grab was called on an empty SetHash that had contained entries before + Fix DateTime equivalence check with eqv relying on raku representation + Fix methods substr, substr-rw, chop, chomp, pred, succ, comb, lines, words, wordcase, trans, indent, uc, lc, tc, fc, tclc, flip, split, trim, trim-leading, trim-trailing, samemark, samespace, samecase, subst, subst-mutate when called on a Str subclass + Make Allomorph methods comb, chop, chomp, lc, uc, tc, tclc, fc, flip, substr, substr-rw return Str + Make sure trim, trim-leading, trim-trailing, split, samecase, samemark, samespace methods handle Allomorph values + Fix copying of empty shaped array * Sun Mar 21 2021 nine@detonation.org - update to version 2021.03 + Implement space-delimited command line interface arguments + Add a predicated wait for Lock::ConditionVariable + The Pod::To::Text module's output supports rendering of multi-level lists now + Remove utf32 from encodings lists for MoarVM, it was never supported before + Make printf directive error more descriptive + Make sorting and related infix operators about 2x as fast + Optimize coercive parameter typechecking + Make >>. construct faster + Make BagHash.add a few percent faster + Make xx on a constant value about 5% faster + Fix single item assignment at List creation (my @l is List = 'foo' now produces a correct result) + Kernel.signals no longer returns unwanted extraneous data + Fixed .of method on type objects + Set up proper precedence info for a number of infix operators + Fix hypering on Map and when using next + Fix containerization on hypering * Thu Feb 25 2021 nine@detonation.org - update to version 2021.02.1 + Fix a regression of the 2021.02 release where a lazy iterable usage could suddenly lead to a hang + Fix calling list and iterator methods on Map and Array type objects + Fix a minor memory leak in Rakudo runner - Remove fix-flapping-tests.diff fixed upstream * Sun Feb 21 2021 nine@detonation.org - update to version 2021.02 + Introduce new coertion semantics. + Add new method deterministic to Iterator role + Introduce %*SUB-MAIN-OPTS<coerce-allomorphs-to> setting + Implement MAIN parameter bundling via the %*SUB-MAIN-OPTS<bundling> option + Add a new candidate to spurt routine and method. + Add :emit-on-empty, :emit-timed and :emit-once-on-empty methods to Supply.batch method + Make is DEPRECATED trait introspectable on Routine instances + Implement the prefix:<||> operator in postcircumfixes for 6.e and later + Add a flag to symlink allowing creation of relative symlinks + Implement binding of array- and hash-slices + Give raku -v a pure ASCII version + Introduce is test-assertion trait for routines + Make Whatever slice work on 1-dim native shaped arrays + Handle :exists and :delete on 1-dim native shaped arrays with int index + Introducing the Allomorph class + Add cmp candidates for Code + Add parameterizer methods for Metamodel::Primitives + Set equality operators: (==) Unicode ≡ and ≢ + Add support for Supply.tail(*), Supply.tail(*-3) and .tail(Inf) + Make Supply.head(*-3) consistent with List.head(*-3) + Add IO::Path::Parts class + Add support for printf($format, Junction) + Add IO::Handle.do-not-close-automatically, Supply.rotate and Capture.EXISTS-POS methods + Add RAKU_REPL_OUTPUT_METHOD environment variable + Add :chomp named argument to Str.lines similar to the same named argument of IO::Handle.new + Lots and lots of bug fixes and speedups - Backport fix-flapping-tests.diff - Get output of failing tests via rakudo-test-log.diff
/usr/bin/perl6 /usr/bin/perl6-debug /usr/bin/perl6-debug-m /usr/bin/perl6-gdb-m /usr/bin/perl6-lldb-m /usr/bin/perl6-m /usr/bin/perl6-valgrind-m /usr/bin/raku /usr/bin/raku-debug /usr/bin/rakudo /usr/bin/rakudo-debug /usr/bin/rakudo-debug-m /usr/bin/rakudo-gdb-m /usr/bin/rakudo-lldb-m /usr/bin/rakudo-m /usr/bin/rakudo-valgrind-m /usr/share/doc/packages/rakudo /usr/share/doc/packages/rakudo/CREDITS /usr/share/licenses/rakudo /usr/share/licenses/rakudo/LICENSE /usr/share/perl6 /usr/share/perl6/bin /usr/share/perl6/bin/install-perl6-dist /usr/share/perl6/core /usr/share/perl6/core/bin /usr/share/perl6/core/dist /usr/share/perl6/core/dist/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/precomp /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/06 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/06/0625E3602EE153F1FBE64E90FE926793F1037277 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/06/0625E3602EE153F1FBE64E90FE926793F1037277.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/06/0625E3602EE153F1FBE64E90FE926793F1037277.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/0D /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/0D/0D51BCED33ECB9018BE4B353DD05AFFA047AD869 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/0D/0D51BCED33ECB9018BE4B353DD05AFFA047AD869.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/0D/0D51BCED33ECB9018BE4B353DD05AFFA047AD869.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/28 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/28/28790AA8C1819C3C896694C0CDCB174ECC7F2369 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/28/28790AA8C1819C3C896694C0CDCB174ECC7F2369.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/28/28790AA8C1819C3C896694C0CDCB174ECC7F2369.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/32 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/32/327AAC374422D5472F4353E5CEC724E0EA82670F /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/32/327AAC374422D5472F4353E5CEC724E0EA82670F.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/32/327AAC374422D5472F4353E5CEC724E0EA82670F.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/38 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/38/384866ADF43AE82D570A6FD03729700CBAB92879 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/38/384866ADF43AE82D570A6FD03729700CBAB92879.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/38/384866ADF43AE82D570A6FD03729700CBAB92879.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/3A /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/3A/3AD4E883184E5B78DE662926A7FECA1ADE23F4FE /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/3A/3AD4E883184E5B78DE662926A7FECA1ADE23F4FE.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/3A/3AD4E883184E5B78DE662926A7FECA1ADE23F4FE.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/3E /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/3E/3EA1A887632D8A680689246D79666CD2BB56460A /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/3E/3EA1A887632D8A680689246D79666CD2BB56460A.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/3E/3EA1A887632D8A680689246D79666CD2BB56460A.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/40 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/40/40C1FAC5477A34641D962E7774A01D4263C66CFF /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/40/40C1FAC5477A34641D962E7774A01D4263C66CFF.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/40/40C1FAC5477A34641D962E7774A01D4263C66CFF.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/4B /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/4B/4B4300D1320F41238561ECFA93E1560F5F479CC0 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/4B/4B4300D1320F41238561ECFA93E1560F5F479CC0.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/4B/4B4300D1320F41238561ECFA93E1560F5F479CC0.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/93 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/93/93443CF381AB3D5E7BE654956EE46942B7A4EFBE /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/93/93443CF381AB3D5E7BE654956EE46942B7A4EFBE.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/93/93443CF381AB3D5E7BE654956EE46942B7A4EFBE.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/99 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/99/99318F9CA7957A7455341E4BD21C7FEFEC7522F5 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/99/99318F9CA7957A7455341E4BD21C7FEFEC7522F5.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/99/99318F9CA7957A7455341E4BD21C7FEFEC7522F5.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/9A /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/9A/9AAF565A8DD12C462CE650830F4BAA716DC691C2 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/9A/9AAF565A8DD12C462CE650830F4BAA716DC691C2.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/9A/9AAF565A8DD12C462CE650830F4BAA716DC691C2.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/A5 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/A5/A59A9CF4C570266DB0FEE3FBB5142E7221AC1B43 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/A5/A59A9CF4C570266DB0FEE3FBB5142E7221AC1B43.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/A5/A59A9CF4C570266DB0FEE3FBB5142E7221AC1B43.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/A9 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/A9/A91BD90C4E24D294F988610DB167E53E7520105D /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/A9/A91BD90C4E24D294F988610DB167E53E7520105D.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/A9/A91BD90C4E24D294F988610DB167E53E7520105D.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/B3 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/B3/B34F40BA1B617680A3D69A22691E641C1CAE2092 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/B3/B34F40BA1B617680A3D69A22691E641C1CAE2092.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/B3/B34F40BA1B617680A3D69A22691E641C1CAE2092.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/B5 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/B5/B52A050D6222234175628E65916867D1BF153612 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/B5/B52A050D6222234175628E65916867D1BF153612.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/B5/B52A050D6222234175628E65916867D1BF153612.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C1 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C1/C1E5CF5C79E8E44CCCCBA307209C466FB26DF83E /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C1/C1E5CF5C79E8E44CCCCBA307209C466FB26DF83E.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C1/C1E5CF5C79E8E44CCCCBA307209C466FB26DF83E.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C5 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C5/C57C53384743B27CD7D2391EEAB1E70992F21152 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C5/C57C53384743B27CD7D2391EEAB1E70992F21152.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C5/C57C53384743B27CD7D2391EEAB1E70992F21152.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C5/C57EA722CD02B9994E155E05C34F0644771F2F2B /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C5/C57EA722CD02B9994E155E05C34F0644771F2F2B.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C5/C57EA722CD02B9994E155E05C34F0644771F2F2B.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C8 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C8/C8F58698A176D4E9672BF89D1CBD4D0F12F6A3C0 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C8/C8F58698A176D4E9672BF89D1CBD4D0F12F6A3C0.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/C8/C8F58698A176D4E9672BF89D1CBD4D0F12F6A3C0.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/E7 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/E7/E7A8071980AC15989165AD1FF0C3DCF580657E74 /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/E7/E7A8071980AC15989165AD1FF0C3DCF580657E74.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/E7/E7A8071980AC15989165AD1FF0C3DCF580657E74.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/ED /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/ED/EDF03F703AA81C84C33F2B0C6910D3BB48DBF0FE /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/ED/EDF03F703AA81C84C33F2B0C6910D3BB48DBF0FE.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/ED/EDF03F703AA81C84C33F2B0C6910D3BB48DBF0FE.repo-id /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/FB /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/FB/FBEBF31DD90797A0324C182118B16813B1E2C36B /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/FB/FBEBF31DD90797A0324C182118B16813B1E2C36B.lock /usr/share/perl6/core/precomp/B9193EE26C9121189C03A4F3FE6DE3B63123D651/FB/FBEBF31DD90797A0324C182118B16813B1E2C36B.repo-id /usr/share/perl6/core/repo.lock /usr/share/perl6/core/resources /usr/share/perl6/core/short /usr/share/perl6/core/short/0D7FDBBC72083980348BED148BF46BD198D51DE8 /usr/share/perl6/core/short/0D7FDBBC72083980348BED148BF46BD198D51DE8/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/2216470A6AACB2EDEC4887E9EADEC834847AFC5D /usr/share/perl6/core/short/2216470A6AACB2EDEC4887E9EADEC834847AFC5D/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/2BA1EE66FDCF4E625DB5EF9D6FEE9FDB3625D60A /usr/share/perl6/core/short/2BA1EE66FDCF4E625DB5EF9D6FEE9FDB3625D60A/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/33A52796DB3EBB40BEF94B7696A1B0AB7A29B5C5 /usr/share/perl6/core/short/33A52796DB3EBB40BEF94B7696A1B0AB7A29B5C5/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/38673F0433DE95B90DD16424ED7B5B6520D383C5 /usr/share/perl6/core/short/38673F0433DE95B90DD16424ED7B5B6520D383C5/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/3BE64EE0EF742F80B8FE4C0C2B1C061EAA3B4B5A /usr/share/perl6/core/short/3BE64EE0EF742F80B8FE4C0C2B1C061EAA3B4B5A/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/4572C95D8CF876588C349264F7E943A1F258045B /usr/share/perl6/core/short/4572C95D8CF876588C349264F7E943A1F258045B/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/5C64D4D594EFA6C5343DC4B7A7F5FE423DAB3B23 /usr/share/perl6/core/short/5C64D4D594EFA6C5343DC4B7A7F5FE423DAB3B23/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/640AB2BAE07BEDC4C163F679A746F7AB7FB5D1FA /usr/share/perl6/core/short/640AB2BAE07BEDC4C163F679A746F7AB7FB5D1FA/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/6B7A1AECF02807F30DDAD99C02C34440CA036AF6 /usr/share/perl6/core/short/6B7A1AECF02807F30DDAD99C02C34440CA036AF6/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/6DD4FE806EB6AA488B589ABD5DAAA57F324F6077 /usr/share/perl6/core/short/6DD4FE806EB6AA488B589ABD5DAAA57F324F6077/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/7B0F8CAB4CD25DB9B23C6F385F07D6A8128A124E /usr/share/perl6/core/short/7B0F8CAB4CD25DB9B23C6F385F07D6A8128A124E/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/89677CAD3796FF5930AE8E82C7F21D827A14F9EB /usr/share/perl6/core/short/89677CAD3796FF5930AE8E82C7F21D827A14F9EB/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/91D1F4AFADA887C669BEF2560A5B0D03793F37CC /usr/share/perl6/core/short/91D1F4AFADA887C669BEF2560A5B0D03793F37CC/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/9938EA7FBD24E15BFC1DBC1C0C05E6334D5A27CF /usr/share/perl6/core/short/9938EA7FBD24E15BFC1DBC1C0C05E6334D5A27CF/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/A4B2DCF23211FC6A4E31811837DDAB9882B7AD0F /usr/share/perl6/core/short/A4B2DCF23211FC6A4E31811837DDAB9882B7AD0F/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/A7BEDED1F1E6D7B79807BF5661696F687C21E51F /usr/share/perl6/core/short/A7BEDED1F1E6D7B79807BF5661696F687C21E51F/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/AA6BD3F20D89C0C763C948A41AC54C604C5C9B7A /usr/share/perl6/core/short/AA6BD3F20D89C0C763C948A41AC54C604C5C9B7A/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/AB1077C0C942BA12C447F03F50C117BA2972199D /usr/share/perl6/core/short/AB1077C0C942BA12C447F03F50C117BA2972199D/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/B1B49A477F5975E36B2CEB81543FA9C3CAB302CA /usr/share/perl6/core/short/B1B49A477F5975E36B2CEB81543FA9C3CAB302CA/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/B879776A8AE66092E34488CFD4956F8700BDB9DD /usr/share/perl6/core/short/B879776A8AE66092E34488CFD4956F8700BDB9DD/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/C83945A1D6A2C7185BB85AE1FE752036022D1405 /usr/share/perl6/core/short/C83945A1D6A2C7185BB85AE1FE752036022D1405/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/E1ECE27093E3B30D542CD539B86657DE0E1C51F3 /usr/share/perl6/core/short/E1ECE27093E3B30D542CD539B86657DE0E1C51F3/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/short/F6FD7A4346B3BB0E3124991926D729836808DA54 /usr/share/perl6/core/short/F6FD7A4346B3BB0E3124991926D729836808DA54/ED0E53DAD0B8D29A69003C5D79840666008314A2 /usr/share/perl6/core/sources /usr/share/perl6/core/sources/0625E3602EE153F1FBE64E90FE926793F1037277 /usr/share/perl6/core/sources/0D51BCED33ECB9018BE4B353DD05AFFA047AD869 /usr/share/perl6/core/sources/28790AA8C1819C3C896694C0CDCB174ECC7F2369 /usr/share/perl6/core/sources/327AAC374422D5472F4353E5CEC724E0EA82670F /usr/share/perl6/core/sources/384866ADF43AE82D570A6FD03729700CBAB92879 /usr/share/perl6/core/sources/3AD4E883184E5B78DE662926A7FECA1ADE23F4FE /usr/share/perl6/core/sources/3EA1A887632D8A680689246D79666CD2BB56460A /usr/share/perl6/core/sources/40C1FAC5477A34641D962E7774A01D4263C66CFF /usr/share/perl6/core/sources/4B4300D1320F41238561ECFA93E1560F5F479CC0 /usr/share/perl6/core/sources/93443CF381AB3D5E7BE654956EE46942B7A4EFBE /usr/share/perl6/core/sources/99318F9CA7957A7455341E4BD21C7FEFEC7522F5 /usr/share/perl6/core/sources/9AAF565A8DD12C462CE650830F4BAA716DC691C2 /usr/share/perl6/core/sources/A59A9CF4C570266DB0FEE3FBB5142E7221AC1B43 /usr/share/perl6/core/sources/A91BD90C4E24D294F988610DB167E53E7520105D /usr/share/perl6/core/sources/B34F40BA1B617680A3D69A22691E641C1CAE2092 /usr/share/perl6/core/sources/B52A050D6222234175628E65916867D1BF153612 /usr/share/perl6/core/sources/C1E5CF5C79E8E44CCCCBA307209C466FB26DF83E /usr/share/perl6/core/sources/C57C53384743B27CD7D2391EEAB1E70992F21152 /usr/share/perl6/core/sources/C57EA722CD02B9994E155E05C34F0644771F2F2B /usr/share/perl6/core/sources/C8F58698A176D4E9672BF89D1CBD4D0F12F6A3C0 /usr/share/perl6/core/sources/E7A8071980AC15989165AD1FF0C3DCF580657E74 /usr/share/perl6/core/sources/EDF03F703AA81C84C33F2B0C6910D3BB48DBF0FE /usr/share/perl6/core/sources/FBEBF31DD90797A0324C182118B16813B1E2C36B /usr/share/perl6/core/version /usr/share/perl6/lib /usr/share/perl6/lib/Perl6 /usr/share/perl6/lib/Perl6/Actions.moarvm /usr/share/perl6/lib/Perl6/BOOTSTRAP /usr/share/perl6/lib/Perl6/BOOTSTRAP/v6c.moarvm /usr/share/perl6/lib/Perl6/BOOTSTRAP/v6d.moarvm /usr/share/perl6/lib/Perl6/BOOTSTRAP/v6e.moarvm /usr/share/perl6/lib/Perl6/Compiler.moarvm /usr/share/perl6/lib/Perl6/Grammar.moarvm /usr/share/perl6/lib/Perl6/Metamodel.moarvm /usr/share/perl6/lib/Perl6/ModuleLoader.moarvm /usr/share/perl6/lib/Perl6/Ops.moarvm /usr/share/perl6/lib/Perl6/Optimizer.moarvm /usr/share/perl6/lib/Perl6/Pod.moarvm /usr/share/perl6/lib/Perl6/SysConfig.moarvm /usr/share/perl6/lib/Perl6/World.moarvm /usr/share/perl6/lib/Raku /usr/share/perl6/lib/Raku/Actions.moarvm /usr/share/perl6/lib/Raku/Grammar.moarvm /usr/share/perl6/runtime /usr/share/perl6/runtime/CORE.c.setting.moarvm /usr/share/perl6/runtime/CORE.d.setting.moarvm /usr/share/perl6/runtime/CORE.e.setting.moarvm /usr/share/perl6/runtime/dynext /usr/share/perl6/runtime/dynext/libperl6_ops_moar.so /usr/share/perl6/runtime/perl6-debug.moarvm /usr/share/perl6/runtime/perl6.moarvm /usr/share/perl6/runtime/rakudo-debug.moarvm /usr/share/perl6/runtime/rakudo.moarvm /usr/share/perl6/site /usr/share/perl6/site/bin /usr/share/perl6/site/dist /usr/share/perl6/site/precomp /usr/share/perl6/site/resources /usr/share/perl6/site/short /usr/share/perl6/site/sources /usr/share/perl6/site/version /usr/share/perl6/vendor /usr/share/perl6/vendor/bin /usr/share/perl6/vendor/dist /usr/share/perl6/vendor/precomp /usr/share/perl6/vendor/resources /usr/share/perl6/vendor/short /usr/share/perl6/vendor/sources /usr/share/perl6/vendor/version
Generated by rpm2html 1.8.1
Fabrice Bellet, Thu Nov 14 00:43:26 2024