I am looking for someone to take over this module. I no longer have time to support it and haven't coded any Perl in years. I have posted this message to other bugs in the CPAN RT instance indicating the same. I hope someone can pick it up and provide great service!
On Tue Oct 27 08:24:08 2015, mathieu.simon@simweb.ch wrote:
Show quoted text> Hi
>
> This attached fix that nice but was tortured with a couple of version
> combinations to see if it was correct about for released and future CUPS
> versions.
>
> This only fixes the version check 0.6.1, there are other known issues
> such as reported in #78583 that require applying patches for more modern
> CUPS versions.
>
> -- Mathieu
>
> --- Makefile.PL.orig 2015-10-27 12:05:43 UTC
> +++ Makefile.PL
> @@ -31,8 +31,10 @@ else
>
> my @version_parts = split( /\./, $version );
>
> -if( ( $version_parts[1] < 2 ) ||
> - ( ( $version_parts[1] == 2 ) && ( $version_parts[2] < 2 ) ) )
> +if(
> + ( $version_parts[0] < 1 ) ||
> + ( ( $version_parts[0] == 1 ) && ( $version_parts[1] < 2 ) ) ||
> + ( ( $version_parts[0] == 1 ) && ( $version_parts[1] == 2 ) && (
> $version_parts[2] < 2 ) ) )
> {
> print "The version of the Common Unix Printing System installed\n";
> print "on your system is too old for this module to work properly.\n";
>