libdist-checkconflicts-perl 0.02-1 source package in Ubuntu

Changelog

libdist-checkconflicts-perl (0.02-1) unstable; urgency=low


  * Initial Release. (Closes: #609025)

 -- Nuno Carvalho <email address hidden>  Mon, 6 Aug 2012 16:11:09 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Raring: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libdist-checkconflicts-perl_0.02-1.dsc 2.2 KiB a9758e96c7d77f4c5bbf40955d7f633de95b15b00cf0b66ffb0db47c7fc8c298
libdist-checkconflicts-perl_0.02.orig.tar.gz 15.1 KiB b2a4c4c7c4c9cce5441d293a1a67631b6dbf94e5204372a06f04eabd819007d2
libdist-checkconflicts-perl_0.02-1.debian.tar.gz 1.8 KiB ea3f3728d3aad74767b81f3a1120837d0f0051a2183fc365264f216d12e7ab33

No changes file available.

Binary packages built by this source

libdist-checkconflicts-perl: module for declaring version conflicts for a distribution

 One shortcoming of the CPAN clients that currently exist is that they have no
 way of specifying conflicting downstream dependencies of modules.
 Dist::CheckConflicts attempts to work around this issue by allowing you to
 specify conflicting versions of modules separately, and deal with them after
 the module is done installing.
 .
 For instance, say you have a module Foo, and some other module Bar uses Foo.
 If Foo were to change its API in a non-backwards-compatible way, this would
 cause Bar to break until it is updated to use the new API. Foo can't just
 depend on the fixed version of Bar, because this will cause a circular
 dependency (because Bar is already depending on Foo), and this doesn't
 express intent properly anyway - Foo doesn't use Bar at all. The ideal
 solution would be for there to be a way to specify conflicting versions of
 modules in a way that would let CPAN clients update conflicting modules
 automatically after an existing module is upgraded, but until that happens,
 this module will allow users to do this manually.