commit fdb83e02e13ac05a933e199e40457c33441f5957e50c45d60a17c6063c8c879d Author: Marcus Rueckert Date: Tue May 3 11:43:39 2011 +0000 Accepting request 69291 from devel:languages:perl needed by perl-Moose OBS-URL: https://build.opensuse.org/request/show/69291 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Dist-CheckConflicts?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/Dist-CheckConflicts-0.02.tar.gz b/Dist-CheckConflicts-0.02.tar.gz new file mode 100644 index 0000000..6adce32 --- /dev/null +++ b/Dist-CheckConflicts-0.02.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a4c4c7c4c9cce5441d293a1a67631b6dbf94e5204372a06f04eabd819007d2 +size 15461 diff --git a/perl-Dist-CheckConflicts.changes b/perl-Dist-CheckConflicts.changes new file mode 100644 index 0000000..b5bf52c --- /dev/null +++ b/perl-Dist-CheckConflicts.changes @@ -0,0 +1,6 @@ +------------------------------------------------------------------- +Fri Apr 22 15:19:37 UTC 2011 - coolo@opensuse.org + +- initial package 0.02 + * created by cpanspec 1.78.04 + diff --git a/perl-Dist-CheckConflicts.spec b/perl-Dist-CheckConflicts.spec new file mode 100644 index 0000000..407ffc5 --- /dev/null +++ b/perl-Dist-CheckConflicts.spec @@ -0,0 +1,113 @@ +# +# spec file for package perl-Dist-CheckConflicts (Version 0.02) +# +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +Name: perl-Dist-CheckConflicts +Version: 0.02 +Release: 1 +License: GPL+ or Artistic +%define cpan_name Dist-CheckConflicts +Summary: declare version conflicts for your dist +Url: http://search.cpan.org/dist/Dist-CheckConflicts/ +Group: Development/Libraries/Perl +Source: http://www.cpan.org/authors/id/D/DO/DOY/%{cpan_name}-%{version}.tar.gz +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: perl +BuildRequires: perl-macros +BuildRequires: perl(ExtUtils::MakeMaker) +BuildRequires: perl(List::MoreUtils) >= 0.12 +BuildRequires: perl(Sub::Exporter) +BuildRequires: perl(Test::Fatal) +BuildRequires: perl(Test::More) >= 0.88 +Requires: perl(List::MoreUtils) >= 0.12 +Requires: perl(Sub::Exporter) +%{perl_requires} + +%description +One shortcoming of the CPAN clients that currently exist is that they have +no way of specifying conflicting downstream dependencies of modules. This +module 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. + +This module accepts a hash of options passed to its 'use' statement, with +these keys being valid: + +* -conflicts + + A hashref of conflict specifications, where keys are module names, and + values are the last broken version - any version greater than the + specified version should work. + +* -also + + Additional modules to get conflicts from (potentially recursively). This + should generally be a list of modules which use Dist::CheckConflicts, + which correspond to the dists that your dist depends on. (In an ideal + world, this would be intuited directly from your dependency list, but the + dependency list isn't available outside of build time). + +* -dist + + The name of the distribution, to make the error message from + check_conflicts more user-friendly. + +The methods listed below are exported by this module into the module that +uses it, so you should call these methods on your module, not +Dist::CheckConflicts. + +As an example, this command line can be used to update your modules, after +installing the 'Foo' dist (assuming that 'Foo::Conflicts' is the module in +the 'Foo' dist which uses Dist::CheckConflicts): + + perl -MFoo::Conflicts -e'print "$_\n" + for map { $_->{package} } Foo::Conflicts->calculate_conflicts' | cpanm + +%prep +%setup -q -n %{cpan_name}-%{version} + +%build +%{__perl} Makefile.PL INSTALLDIRS=vendor +%{__make} %{?_smp_mflags} + +%check +%{__make} test + +%install +%perl_make_install +%perl_process_packlist +%perl_gen_filelist + +%clean +%{__rm} -rf %{buildroot} + +%files -f %{name}.files +%defattr(-,root,root,755) +%doc Changes LICENSE README weaver.ini + +%changelog