Skip Menu |

This queue is for tickets about the Clipboard CPAN distribution.

Report information
The Basics
Id: 43241
Status: resolved
Worked: 2 hours (120 min)
Priority: 0/
Queue: Clipboard

People
Owner: KING [...] cpan.org
Requestors: CHORNY [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.09
Fixed in: (no value)



Subject: [patch] support for Windows
Corrected regexp that checked for Windows + other features. Requires upgrading Module::Install. Also attached is distribution that is ready for upload to PAUSE. -- Alexandr Ciornii, http://chorny.net
Subject: Clipboard-0.10.zip
Download Clipboard-0.10.zip
application/x-zip-compressed 34.7k

Message body not shown because it is not plain text.

Subject: Makefile.PL.patch
--- Makefile.PL.dist 2005-10-21 00:01:37.000000000 +0300 +++ Makefile.PL 2009-02-12 21:19:15.500000000 +0200 @@ -3,12 +3,10 @@ author('Ryan King <rking@sharpsaw.org'); abstract('Cliboard - Copy and Paste with any OS'); license('perl'); -version_from('lib/Clipboard.pm'); -requires(qw(Spiffy 0)); -# This conditional requires is kind of wacky. It works from the command-line -# "perl Makefile.PL" invocation just fine, but I am afeard that there's some -# automated script out there that won't like it - cpan/cpanp? We'll find out. -requires('Win32::Clipboard') if $^O =~ /^win|cygwin/i; +version_from 'lib/Clipboard.pm'; +perl_version 5.006; +requires 'Spiffy'; +requires 'Win32::Clipboard' if $^O =~ /mswin|cygwin/i; install_script("scripts/clip$_") for qw'join edit browse accumulate filter'; check_nmake(); WriteAll();
Should be good. Look for the Clipboard-0.10 on CPAN. Sorry for the massive delay. I've been extraorbital.
(Please let me know if you have any troubles)