about summary refs log tree commit diff
path: root/pkgs/development/perl-modules
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2018-11-27 08:10:55 +0000
committervolth <volth@volth.com>2018-11-27 08:11:10 +0000
commite45acd6b817642a6a882dc4861e5a41a5cf01126 (patch)
treefd4bc3c3ffb9bee460e2791c4bd041f7cc5bb7df /pkgs/development/perl-modules
parentf12bd000b9a7f72965c726012fd0d6cca6d4c629 (diff)
downloadnixlib-e45acd6b817642a6a882dc4861e5a41a5cf01126.tar
nixlib-e45acd6b817642a6a882dc4861e5a41a5cf01126.tar.gz
nixlib-e45acd6b817642a6a882dc4861e5a41a5cf01126.tar.bz2
nixlib-e45acd6b817642a6a882dc4861e5a41a5cf01126.tar.lz
nixlib-e45acd6b817642a6a882dc4861e5a41a5cf01126.tar.xz
nixlib-e45acd6b817642a6a882dc4861e5a41a5cf01126.tar.zst
nixlib-e45acd6b817642a6a882dc4861e5a41a5cf01126.zip
perlPackages: remove old broken packets
Remove packets which marked 'broken' because they target old versions of Perl which are unsupported in nixpkgs.
The most recent releases of those packages are dated 2003-2013
Diffstat (limited to 'pkgs/development/perl-modules')
-rw-r--r--pkgs/development/perl-modules/catalyst-fix-chunked-encoding.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/development/perl-modules/catalyst-fix-chunked-encoding.patch b/pkgs/development/perl-modules/catalyst-fix-chunked-encoding.patch
deleted file mode 100644
index 7822128f8467..000000000000
--- a/pkgs/development/perl-modules/catalyst-fix-chunked-encoding.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -rc Catalyst-Engine-HTTP-Prefork-0.50-orig/lib/Catalyst/Engine/HTTP/Prefork/Handler.pm Catalyst-Engine-HTTP-Prefork-0.50/lib/Catalyst/Engine/HTTP/Prefork/Handler.pm
-*** Catalyst-Engine-HTTP-Prefork-0.50-orig/lib/Catalyst/Engine/HTTP/Prefork/Handler.pm	2008-03-14 18:23:47.000000000 +0100
---- Catalyst-Engine-HTTP-Prefork-0.50/lib/Catalyst/Engine/HTTP/Prefork/Handler.pm	2009-03-11 14:18:40.000000000 +0100
-***************
-*** 199,206 ****
-      
-      if ( $self->{_chunked_res} ) {
-          if ( !$self->{_chunked_done} ) {
-!             # Write the final '0' chunk
-!             syswrite STDOUT, "0$CRLF";
-          }
-          
-          delete $self->{_chunked_res};
---- 199,207 ----
-      
-      if ( $self->{_chunked_res} ) {
-          if ( !$self->{_chunked_done} ) {
-!             # Write the final '0' chunk and the CRLF that terminates
-!             # the chunked body.
-!             syswrite STDOUT, "0$CRLF$CRLF";
-          }
-          
-          delete $self->{_chunked_res};