Patch borrowed from nixpkgs. Works around warning message produced by the current version of Moose: "Passing a list of values to enum is deprecated. Enum values should be wrapped in an arrayref." --- Net-Amazon-S3-0.60/lib/Net/Amazon/S3/Client/Object.pm 2015-04-15 16:18:47.226410022 -0500 +++ Net-Amazon-S3-0.60/lib/Net/Amazon/S3/Client/Object.pm 2015-04-15 16:19:25.410408425 -0500 @@ -19,7 +19,7 @@ [ qw(private public-read public-read-write authenticated-read) ]; enum 'StorageClass' => - qw(standard reduced_redundancy); + [ qw(standard reduced_redundancy) ]; has 'client' => ( is => 'ro', isa => 'Net::Amazon::S3::Client', required => 1 ); his.form.submit();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/gexp.scm
AgeCommit message (Expand)Author
2020-05-25gexp: Fix expansion for (file-append (local-file ...) ...)....Ludovic Courtès
2020-05-25tests: Hide quoted (define-module ...) form from Geiser....Ludovic Courtès
2020-05-16gexp: Add 'let-system'....Ludovic Courtès
2020-03-12gexp: Add 'with-parameters'....Ludovic Courtès
2020-03-08gexp: Default to current target....Mathieu Othacehe
2020-01-04gexp: Add 'raw-derivation-file'....Ludovic Courtès
2019-12-18gexp: Allow character literals in GEXP->SEXP....Marius Bakke
2019-11-30gexp: 'local-file' properly resolves non-literal relative file names....Ludovic Courtès
2019-09-23gexp: Catch and report non-self-quoting gexp inputs....Ludovic Courtès
2019-07-26gexp: 'program-file' honors the current system and cross-compilation target....Ludovic Courtès
2019-07-15gexp: 'lowered-gexp-guile' now returns a <derivation-input>....Ludovic Courtès
2019-07-15gexp: <lowered-gexp> separates sources from derivation inputs....Ludovic Courtès
2019-07-04gexp: Add 'lower-gexp' and express 'gexp->derivation' in terms of it....Ludovic Courtès