Description: make build reproducible by sorting hash keys cf. https://reproducible.debian.net/dbd/unstable/amd64/libclass-methodmaker-perl_2.21-1.debbindiff.html Origin: vendor Bug-Debian: https://bugs.debian.org/778979 Author: Chris Lamb Reviewed-by: gregor herrmann Last-Update: 2015-05-02 Forwarded: https://rt.cpan.org/Ticket/Display.html?id=104163 Bug: https://rt.cpan.org/Ticket/Display.html?id=104163 --- a/lib/Class/MethodMaker/OptExt.pm +++ b/lib/Class/MethodMaker/OptExt.pm @@ -357,7 +357,7 @@ # ------------------------------------- -sub option_names { grep $_ ne 'DEFAULT', keys %{OPTEXT()} } +sub option_names { grep $_ ne 'DEFAULT', sort keys %{OPTEXT()} } sub optcode { my $class = shift; ion> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-12-22tests: Move keys into ./tests/keys/ and add a third ed25519 key....The third key will be used in an upcoming commit. Rename public keys to .pub. * guix/tests/gnupg.scm (%ed25519-3-public-key-file): New variable. (%ed25519-3-secret-key-file): New variable. (%ed25519-2-public-key-file): Renamed from %ed25519bis-public-key-file. (%ed25519-2-secret-key-file): Renamed from %ed25519bis-secret-key-file. * tests/keys/ed25519-3.key: New file. * tests/keys/ed25519-3.sec: New file. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Attila Lendvai