Fix Perl module Module::Pluggable such that it can find plugins that live in symlinked directories. Patch borrowed/adapted from Nixpkgs. --- Module-Pluggable-5.2/lib/Module/Pluggable/Object.pm 2015-04-08 23:28:48.120164135 -0500 +++ Module-Pluggable-5.2/lib/Module/Pluggable/Object.pm 2015-04-08 23:30:27.032166704 -0500 @@ -164,7 +164,7 @@ my $sp = catdir($dir, (split /::/, $searchpath)); # if it doesn't exist or it's not a dir then skip it - next unless ( -e $sp && -d _ ); # Use the cached stat the second time + next unless ( -e $sp ); my @files = $self->find_files($sp); @@ -279,7 +279,7 @@ (my $path = $File::Find::name) =~ s#^\\./##; push @files, $path; } - }, $search_path ); + }, "$search_path/." ); } #chdir $cwd; return @files;d Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/django.scm
AgeCommit message (Expand)Author
2024-11-04gnu: python-django-4.2: Update to 4.2.16. [security fixes]...This fixes CVE-2024-24680, CVE-2024-41989, CVE-2024-41990, CVE-2024-41991, CVE-2024-42005, CVE-2024-45230, CVE-2024-45231, CVE-2023-43665 and CVE-2023-46695. * gnu/packages/django.scm (python-django-4.2): Update to 4.2.16. [properties]: Add lint-hidden-cve property. Nicolas Graves
2024-06-30gnu: python-django-4.2: Simpler unittest skip....* gnu/packages/django.scm (python-django-4.2): Simpler unittest skip. Signed-off-by: jgart <jgart@dismail.de> Nicolas Graves
2024-06-30gnu: python-django-4.2: Use pyproject-build-system....* gnu/packages/django.scm (python-django-4.2): [build-system] Use pyproject-build-system. Signed-off-by: jgart <jgart@dismail.de> Nicolas Graves
2024-06-30gnu: python-django-4.2: Add --failfast to test-flags....* gnu/packages/django.scm (python-django-4.2): Add --failfast to test-flags. Signed-off-by: jgart <jgart@dismail.de> Nicolas Graves
2024-06-30gnu: python-django-4.2: Comment formatting....* gnu/packages/django.scm (python-django-4.2): Comment formatting. Signed-off-by: jgart <jgart@dismail.de> Nicolas Graves
2024-06-30gnu: python-django-4.2: Use test-flags argument....* gnu/packages/django.scm (python-django-4.2): Use test-flags argument. Signed-off-by: jgart <jgart@dismail.de> Nicolas Graves